design-system-silkhaus 2.3.0-beta.monthly-payment.1 → 2.3.0-beta.monthly-payment.2
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 +35 -35
- package/dist/index.d.ts +9 -9
- package/dist/index.js +5483 -5461
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -488,16 +488,11 @@ export declare type PaymentScheduleItemProps = {
|
|
|
488
488
|
positionInSchedule?: 'first' | 'last' | 'in-between';
|
|
489
489
|
};
|
|
490
490
|
|
|
491
|
-
export declare
|
|
492
|
-
className?: string;
|
|
493
|
-
paymentItems: PaymentScheduleItemProps[];
|
|
494
|
-
};
|
|
495
|
-
|
|
496
|
-
export declare const PaymentTimeline: default_2.FC<PaymentTimelineProps>;
|
|
491
|
+
export declare const PaymentSchedulePreview: default_2.FC<PaymentSchedulePreviewProps>;
|
|
497
492
|
|
|
498
|
-
export declare const
|
|
493
|
+
export declare const PaymentSchedulePreviewItem: default_2.FC<PaymentSchedulePreviewItemProps>;
|
|
499
494
|
|
|
500
|
-
export declare interface
|
|
495
|
+
export declare interface PaymentSchedulePreviewItemProps {
|
|
501
496
|
keyId: typeof DUE_TODAY | typeof SECURITY_DEPOSIT_REFUND | typeof INSTALLMENT;
|
|
502
497
|
displayName: string | default_2.ReactNode;
|
|
503
498
|
subText?: string | default_2.ReactNode;
|
|
@@ -506,7 +501,7 @@ export declare interface PaymentTimelineItemProps {
|
|
|
506
501
|
currency: string;
|
|
507
502
|
}
|
|
508
503
|
|
|
509
|
-
export declare interface
|
|
504
|
+
export declare interface PaymentSchedulePreviewProps {
|
|
510
505
|
className?: string;
|
|
511
506
|
totalAmount: number;
|
|
512
507
|
currency: string;
|
|
@@ -527,6 +522,11 @@ export declare interface PaymentTimelineProps {
|
|
|
527
522
|
showDetailsModalTitle?: string;
|
|
528
523
|
}
|
|
529
524
|
|
|
525
|
+
export declare type PaymentScheduleProps = {
|
|
526
|
+
className?: string;
|
|
527
|
+
paymentItems: PaymentScheduleItemProps[];
|
|
528
|
+
};
|
|
529
|
+
|
|
530
530
|
export declare const PriceRangeSlider: default_2.FC<PriceRangeSliderProps>;
|
|
531
531
|
|
|
532
532
|
export declare interface PriceRangeSliderProps {
|