@useloops/design-system 1.4.57 → 1.4.59
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 +5 -5
- package/dist/index.d.ts +3 -1
- package/dist/index.js +3 -3
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -453,6 +453,8 @@ interface PillProps {
|
|
|
453
453
|
body: string;
|
|
454
454
|
variation?: 'default' | 'peach' | 'peachDark' | 'purple';
|
|
455
455
|
weight?: 'heavy' | 'light';
|
|
456
|
+
icon?: ReactElement;
|
|
457
|
+
avatar?: ReactElement;
|
|
456
458
|
}
|
|
457
459
|
declare const Pill: FunctionComponent<PillProps>;
|
|
458
460
|
|
|
@@ -543,7 +545,7 @@ interface SliderProps {
|
|
|
543
545
|
max?: number;
|
|
544
546
|
onChange?: (event: Event, value: number | number[], activeThumb: number) => void;
|
|
545
547
|
step?: number;
|
|
546
|
-
value?: number;
|
|
548
|
+
value?: number | number[];
|
|
547
549
|
}
|
|
548
550
|
declare const Slider: FunctionComponent<SliderProps>;
|
|
549
551
|
|