@useloops/design-system 1.4.456 → 1.4.457
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 +2 -2
- package/dist/index.d.ts +8 -7
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2069,13 +2069,15 @@ interface TopNumber {
|
|
|
2069
2069
|
}
|
|
2070
2070
|
|
|
2071
2071
|
interface ExtendedTestStatusProps {
|
|
2072
|
-
|
|
2073
|
-
segments: TopNumber[];
|
|
2072
|
+
animated?: boolean;
|
|
2074
2073
|
loading?: boolean;
|
|
2074
|
+
segments: TopNumber[];
|
|
2075
|
+
status: TestStatusProps['status'];
|
|
2075
2076
|
}
|
|
2076
2077
|
declare const ExtendedTestStatus: FunctionComponent<ExtendedTestStatusProps>;
|
|
2077
2078
|
|
|
2078
2079
|
interface FilterCountProps {
|
|
2080
|
+
animated?: boolean;
|
|
2079
2081
|
buttonText?: string;
|
|
2080
2082
|
end?: string;
|
|
2081
2083
|
filteredCount?: number;
|
|
@@ -2159,6 +2161,7 @@ interface GraphBarProps {
|
|
|
2159
2161
|
hideCheckbox?: boolean;
|
|
2160
2162
|
hideUnitColumn1?: boolean;
|
|
2161
2163
|
hideUnitColumn2?: boolean;
|
|
2164
|
+
animated?: boolean;
|
|
2162
2165
|
checked?: boolean;
|
|
2163
2166
|
disabled?: boolean;
|
|
2164
2167
|
onChange?: (checked: boolean) => void;
|
|
@@ -2343,11 +2346,7 @@ interface SearchInputProps {
|
|
|
2343
2346
|
sx?: SxProps<Theme>;
|
|
2344
2347
|
value?: string;
|
|
2345
2348
|
}
|
|
2346
|
-
|
|
2347
|
-
clear: () => void;
|
|
2348
|
-
focus: () => void;
|
|
2349
|
-
}
|
|
2350
|
-
declare const SearchInput: react__default.ForwardRefExoticComponent<SearchInputProps & react__default.RefAttributes<SearchInputHandle>>;
|
|
2349
|
+
declare const SearchInput: react__default.ForwardRefExoticComponent<SearchInputProps & react__default.RefAttributes<HTMLInputElement>>;
|
|
2351
2350
|
|
|
2352
2351
|
interface SectionHeaderProps {
|
|
2353
2352
|
buttons?: ReactNode;
|
|
@@ -2358,6 +2357,7 @@ interface SectionHeaderProps {
|
|
|
2358
2357
|
declare const SectionHeader: FunctionComponent<SectionHeaderProps>;
|
|
2359
2358
|
|
|
2360
2359
|
interface TestItemProps extends SurfaceProps {
|
|
2360
|
+
animated?: boolean;
|
|
2361
2361
|
status: TestStatusProps['status'];
|
|
2362
2362
|
menuItems?: MenuProps['menuItems'];
|
|
2363
2363
|
title: string;
|
|
@@ -2445,6 +2445,7 @@ declare const _default: react.MemoExoticComponent<react.ForwardRefExoticComponen
|
|
|
2445
2445
|
|
|
2446
2446
|
interface TabProps {
|
|
2447
2447
|
active?: boolean;
|
|
2448
|
+
animated?: boolean;
|
|
2448
2449
|
title: string;
|
|
2449
2450
|
label?: string;
|
|
2450
2451
|
stat?: number;
|