@useloops/design-system 1.4.456 → 1.4.458

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/index.d.ts CHANGED
@@ -2069,13 +2069,15 @@ interface TopNumber {
2069
2069
  }
2070
2070
 
2071
2071
  interface ExtendedTestStatusProps {
2072
- status: TestStatusProps['status'];
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;
@@ -2338,16 +2341,13 @@ declare const QuestionBlock: FunctionComponent<QuestionBlockProps>;
2338
2341
 
2339
2342
  interface SearchInputProps {
2340
2343
  onChange?: (event: react__default.ChangeEvent<HTMLInputElement>) => void;
2344
+ onFocus?: () => void;
2341
2345
  onClear?: () => void;
2342
2346
  placeholder?: string;
2343
2347
  sx?: SxProps<Theme>;
2344
2348
  value?: string;
2345
2349
  }
2346
- interface SearchInputHandle {
2347
- clear: () => void;
2348
- focus: () => void;
2349
- }
2350
- declare const SearchInput: react__default.ForwardRefExoticComponent<SearchInputProps & react__default.RefAttributes<SearchInputHandle>>;
2350
+ declare const SearchInput: react__default.ForwardRefExoticComponent<SearchInputProps & react__default.RefAttributes<HTMLInputElement>>;
2351
2351
 
2352
2352
  interface SectionHeaderProps {
2353
2353
  buttons?: ReactNode;
@@ -2358,6 +2358,7 @@ interface SectionHeaderProps {
2358
2358
  declare const SectionHeader: FunctionComponent<SectionHeaderProps>;
2359
2359
 
2360
2360
  interface TestItemProps extends SurfaceProps {
2361
+ animated?: boolean;
2361
2362
  status: TestStatusProps['status'];
2362
2363
  menuItems?: MenuProps['menuItems'];
2363
2364
  title: string;
@@ -2445,6 +2446,7 @@ declare const _default: react.MemoExoticComponent<react.ForwardRefExoticComponen
2445
2446
 
2446
2447
  interface TabProps {
2447
2448
  active?: boolean;
2449
+ animated?: boolean;
2448
2450
  title: string;
2449
2451
  label?: string;
2450
2452
  stat?: number;