@razorpay/blade 12.31.2 → 12.31.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -26518,7 +26518,7 @@ type ListViewCommonProps = {
|
|
|
26518
26518
|
};
|
|
26519
26519
|
type ListViewProps = ListViewCommonProps & TestID & DataAnalyticsAttribute;
|
|
26520
26520
|
type ListViewFilterProps = {
|
|
26521
|
-
children
|
|
26521
|
+
children?: React__default.ReactNode;
|
|
26522
26522
|
/**
|
|
26523
26523
|
* Quick Filters Component
|
|
26524
26524
|
*/
|
|
@@ -26560,7 +26560,7 @@ type ListViewFilterProps = {
|
|
|
26560
26560
|
* you only need this if quick filters are controlled.
|
|
26561
26561
|
*/
|
|
26562
26562
|
selectedFiltersCount?: number;
|
|
26563
|
-
} & TestID & DataAnalyticsAttribute
|
|
26563
|
+
} & TestID & DataAnalyticsAttribute;
|
|
26564
26564
|
|
|
26565
26565
|
declare const ListView: ({ testID, children, ...rest }: ListViewProps) => React.ReactElement;
|
|
26566
26566
|
|
|
@@ -15811,7 +15811,7 @@ type ListViewCommonProps = {
|
|
|
15811
15811
|
};
|
|
15812
15812
|
type ListViewProps = ListViewCommonProps & TestID & DataAnalyticsAttribute;
|
|
15813
15813
|
type ListViewFilterProps = {
|
|
15814
|
-
children
|
|
15814
|
+
children?: React__default.ReactNode;
|
|
15815
15815
|
/**
|
|
15816
15816
|
* Quick Filters Component
|
|
15817
15817
|
*/
|
|
@@ -15853,7 +15853,7 @@ type ListViewFilterProps = {
|
|
|
15853
15853
|
* you only need this if quick filters are controlled.
|
|
15854
15854
|
*/
|
|
15855
15855
|
selectedFiltersCount?: number;
|
|
15856
|
-
} & TestID & DataAnalyticsAttribute
|
|
15856
|
+
} & TestID & DataAnalyticsAttribute;
|
|
15857
15857
|
|
|
15858
15858
|
declare const ListView: (_prop: ListViewProps) => React__default.ReactElement;
|
|
15859
15859
|
|