design-system-silkhaus 2.4.1 → 2.4.3
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 +31 -31
- package/dist/index.d.ts +10 -0
- package/dist/index.js +2593 -2532
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -484,8 +484,10 @@ export declare interface PaymentRadioInputProps {
|
|
|
484
484
|
label: string | default_2.ReactNode;
|
|
485
485
|
price: string | default_2.ReactNode;
|
|
486
486
|
description?: string | default_2.ReactNode;
|
|
487
|
+
descriptionRight?: string | default_2.ReactNode;
|
|
487
488
|
checked?: boolean;
|
|
488
489
|
selectionContent?: default_2.ReactNode;
|
|
490
|
+
showDescription?: boolean;
|
|
489
491
|
className?: string;
|
|
490
492
|
onChange: (id: string) => void;
|
|
491
493
|
}
|
|
@@ -547,6 +549,10 @@ export declare type PaymentScheduleProps = {
|
|
|
547
549
|
paymentItems: PaymentScheduleItemProps[];
|
|
548
550
|
};
|
|
549
551
|
|
|
552
|
+
export declare const PinIcon: FC<{
|
|
553
|
+
className?: string;
|
|
554
|
+
}>;
|
|
555
|
+
|
|
550
556
|
export declare const PriceRangeSlider: default_2.FC<PriceRangeSliderProps>;
|
|
551
557
|
|
|
552
558
|
export declare interface PriceRangeSliderProps {
|
|
@@ -650,6 +656,10 @@ export declare const SotringIcon: FC<{
|
|
|
650
656
|
className?: string;
|
|
651
657
|
}>;
|
|
652
658
|
|
|
659
|
+
export declare const SparkleIcon: FC<{
|
|
660
|
+
className?: string;
|
|
661
|
+
}>;
|
|
662
|
+
|
|
653
663
|
export declare const StarLineIcon: FC<{
|
|
654
664
|
className?: string;
|
|
655
665
|
}>;
|