@useloops/design-system 1.4.428 → 1.4.430
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.
- package/dist/esm/index.js +1 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1960,7 +1960,7 @@ interface CommentCardProps {
|
|
|
1960
1960
|
isStarred?: boolean;
|
|
1961
1961
|
isActive?: boolean;
|
|
1962
1962
|
moreMenuItems?: MenuProps['menuItems'];
|
|
1963
|
-
moreMenuState
|
|
1963
|
+
moreMenuState?: MenuProps['state'];
|
|
1964
1964
|
onFavouritePress?: () => void;
|
|
1965
1965
|
onCopyPress?: (element: HTMLElement) => void;
|
|
1966
1966
|
onMorePress?: () => void;
|
|
@@ -2070,6 +2070,7 @@ interface FilterPyramidGraphBarProps {
|
|
|
2070
2070
|
center?: Omit<FilterPyramidGraphBarSide, 'label'>;
|
|
2071
2071
|
right: FilterPyramidGraphBarSide;
|
|
2072
2072
|
maxValue: number;
|
|
2073
|
+
maxCount: number;
|
|
2073
2074
|
}
|
|
2074
2075
|
declare const FilterPyramidGraphBar: FunctionComponent<FilterPyramidGraphBarProps>;
|
|
2075
2076
|
|
|
@@ -2390,6 +2391,7 @@ interface SearchInputProps {
|
|
|
2390
2391
|
onFocus?: (event: react__default.FocusEvent<HTMLInputElement>) => void;
|
|
2391
2392
|
onClear?: () => void;
|
|
2392
2393
|
placeholder?: string;
|
|
2394
|
+
sx?: SxProps<Theme>;
|
|
2393
2395
|
}
|
|
2394
2396
|
declare const SearchInput: FunctionComponent<SearchInputProps>;
|
|
2395
2397
|
|