Skip to content

Commit d213601

Browse files
layoutdmatticbot
authored andcommitted
Premium Analytics: split CSV download components (#50569)
* Premium Analytics: simplify CSV report downloads * Premium Analytics: avoid filename regex backtracking * Premium Analytics: harden CSV report downloads * Premium Analytics: refine CSV export controls * Premium Analytics: move CSV exports to widget footers * Premium Analytics: disable CSV actions during delivery * Premium Analytics: hide empty widget footers * Premium Analytics: use button loading states * Premium Analytics: keep CSV errors local * Premium Analytics: preserve export date type * Premium Analytics: cover export date type schema * Premium Analytics: split CSV download components * Premium Analytics: support CSV action presentation * Premium Analytics: align CSV download component names * Premium Analytics: fix CSV refactor changelog format * Premium Analytics: use the button icon component * Premium Analytics: show CSV errors in snackbars * Premium Analytics: avoid a new notices dependency * Premium Analytics: fix DataViews styles in Storybook Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/29619911560 Upstream-Ref: Automattic/jetpack@3f5e3b8
1 parent 2244855 commit d213601

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

dist/index.d.cts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -946,7 +946,7 @@ declare const BarListChartResponsive: ({
946946
width,
947947
height,
948948
...chartProps
949-
}: Omit<BarListChartProps, "size" | "width" | "height"> & {
949+
}: Omit<BarListChartProps, "width" | "height" | "size"> & {
950950
width?: number;
951951
height?: number;
952952
size?: number;
@@ -1100,7 +1100,7 @@ declare const GeoChartResponsive: ({
11001100
width,
11011101
height,
11021102
...chartProps
1103-
}: Omit<GeoChartProps, "size" | "width" | "height"> & {
1103+
}: Omit<GeoChartProps, "width" | "height" | "size"> & {
11041104
width?: number;
11051105
height?: number;
11061106
size?: number;
@@ -1257,7 +1257,7 @@ declare const LeaderboardChartResponsive: (({
12571257
width,
12581258
height,
12591259
...chartProps
1260-
}: Omit<LeaderboardChartProps, "size" | "width" | "height"> & {
1260+
}: Omit<LeaderboardChartProps, "width" | "height" | "size"> & {
12611261
width?: number;
12621262
height?: number;
12631263
size?: number;
@@ -1790,7 +1790,7 @@ declare const Sparkline: ({
17901790
width,
17911791
height,
17921792
...chartProps
1793-
}: Omit<SparklineProps, "size" | "width" | "height"> & {
1793+
}: Omit<SparklineProps, "width" | "height" | "size"> & {
17941794
width?: number;
17951795
height?: number;
17961796
size?: number;

dist/index.d.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -946,7 +946,7 @@ declare const BarListChartResponsive: ({
946946
width,
947947
height,
948948
...chartProps
949-
}: Omit<BarListChartProps, "size" | "width" | "height"> & {
949+
}: Omit<BarListChartProps, "width" | "height" | "size"> & {
950950
width?: number;
951951
height?: number;
952952
size?: number;
@@ -1100,7 +1100,7 @@ declare const GeoChartResponsive: ({
11001100
width,
11011101
height,
11021102
...chartProps
1103-
}: Omit<GeoChartProps, "size" | "width" | "height"> & {
1103+
}: Omit<GeoChartProps, "width" | "height" | "size"> & {
11041104
width?: number;
11051105
height?: number;
11061106
size?: number;
@@ -1257,7 +1257,7 @@ declare const LeaderboardChartResponsive: (({
12571257
width,
12581258
height,
12591259
...chartProps
1260-
}: Omit<LeaderboardChartProps, "size" | "width" | "height"> & {
1260+
}: Omit<LeaderboardChartProps, "width" | "height" | "size"> & {
12611261
width?: number;
12621262
height?: number;
12631263
size?: number;
@@ -1790,7 +1790,7 @@ declare const Sparkline: ({
17901790
width,
17911791
height,
17921792
...chartProps
1793-
}: Omit<SparklineProps, "size" | "width" | "height"> & {
1793+
}: Omit<SparklineProps, "width" | "height" | "size"> & {
17941794
width?: number;
17951795
height?: number;
17961796
size?: number;

0 commit comments

Comments
 (0)