@useloops/design-system 1.4.430 → 1.4.432

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
@@ -2397,11 +2397,11 @@ declare const SearchInput: FunctionComponent<SearchInputProps>;
2397
2397
 
2398
2398
  interface FilterCountProps extends PropsWithChildren {
2399
2399
  buttonText?: string;
2400
- end: string;
2400
+ end?: string;
2401
2401
  filteredCount?: number;
2402
- hasButton?: boolean;
2402
+ loading?: boolean;
2403
2403
  onButtonPress?: () => void;
2404
- start: string;
2404
+ start?: string;
2405
2405
  totalCount: number;
2406
2406
  }
2407
2407
  declare const FilterCount: FunctionComponent<FilterCountProps>;