design-system-silkhaus 2.5.0 → 2.6.0
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.cjs +75 -75
- package/dist/index.d.ts +23 -0
- package/dist/index.js +10219 -10138
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -417,6 +417,18 @@ export declare interface InputProps extends default_2.InputHTMLAttributes<HTMLIn
|
|
|
417
417
|
* While `onChange` will you give what the user enters, `onNumberUpdate` will give the final modified value
|
|
418
418
|
*/
|
|
419
419
|
onNumberUpdate?: (val: number | '') => void;
|
|
420
|
+
/**
|
|
421
|
+
* Controls whether we need to show tooltip or not
|
|
422
|
+
*/
|
|
423
|
+
showTooltip?: boolean;
|
|
424
|
+
/**
|
|
425
|
+
* Provide option to overide default tooltip icon
|
|
426
|
+
*/
|
|
427
|
+
tooltipIcon?: default_2.ReactNode;
|
|
428
|
+
/**
|
|
429
|
+
* Optional tooltip props without trigger
|
|
430
|
+
*/
|
|
431
|
+
tooltipProps?: Omit<TooltipProps, 'trigger'>;
|
|
420
432
|
}
|
|
421
433
|
|
|
422
434
|
export declare const INSTALLMENT = "installment";
|
|
@@ -679,6 +691,17 @@ export declare interface PriceRangeSliderProps {
|
|
|
679
691
|
disabled?: boolean;
|
|
680
692
|
}
|
|
681
693
|
|
|
694
|
+
export declare const Progressbar: default_2.FC<ProgressbarProps>;
|
|
695
|
+
|
|
696
|
+
export declare interface ProgressbarProps {
|
|
697
|
+
className?: string;
|
|
698
|
+
label: default_2.ReactNode;
|
|
699
|
+
percentage?: default_2.ReactNode;
|
|
700
|
+
total?: number;
|
|
701
|
+
value: number;
|
|
702
|
+
height?: string;
|
|
703
|
+
}
|
|
704
|
+
|
|
682
705
|
export declare const PromoDialog: default_2.ForwardRefExoticComponent<PromoDialogProps & default_2.RefAttributes<HTMLDivElement>>;
|
|
683
706
|
|
|
684
707
|
export declare interface PromoDialogProps {
|