design-system-silkhaus 2.3.0-beta.travel-list.16 → 2.3.0-beta.travel-list.18
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 +555 -93
- package/dist/index.d.ts +39 -0
- package/dist/index.js +96593 -26252
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -30,6 +30,10 @@ export declare interface AccordionProps {
|
|
|
30
30
|
isExpanded?: boolean;
|
|
31
31
|
}
|
|
32
32
|
|
|
33
|
+
declare type ActionButtonProps = {
|
|
34
|
+
label: string;
|
|
35
|
+
} & ButtonProps;
|
|
36
|
+
|
|
33
37
|
export declare const ActionFooter: default_2.ForwardRefExoticComponent<ActionFooterProps & default_2.RefAttributes<HTMLDivElement>>;
|
|
34
38
|
|
|
35
39
|
export declare interface ActionFooterProps {
|
|
@@ -284,6 +288,22 @@ export declare interface DialogProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
284
288
|
open: boolean;
|
|
285
289
|
}
|
|
286
290
|
|
|
291
|
+
export declare const DialogV2: FC<DialogV2Props>;
|
|
292
|
+
|
|
293
|
+
export declare type DialogV2Props = {
|
|
294
|
+
className?: string;
|
|
295
|
+
title: string;
|
|
296
|
+
subTitle?: string;
|
|
297
|
+
dialogContainerClassname?: string;
|
|
298
|
+
dialogHeaderClassname?: string;
|
|
299
|
+
dialogBodyClassname?: string;
|
|
300
|
+
dialogFooterClassname?: string;
|
|
301
|
+
dialogBody: ReactNode;
|
|
302
|
+
show: boolean;
|
|
303
|
+
onClose?: () => void;
|
|
304
|
+
actionButtons?: ActionButtonProps[];
|
|
305
|
+
};
|
|
306
|
+
|
|
287
307
|
export declare const FilterIcon: FC<{
|
|
288
308
|
className?: string;
|
|
289
309
|
}>;
|
|
@@ -639,6 +659,25 @@ export declare interface StepperProps {
|
|
|
639
659
|
outerMobileDivClass?: string;
|
|
640
660
|
}
|
|
641
661
|
|
|
662
|
+
export declare const StepsList: FC<StepsListProps>;
|
|
663
|
+
|
|
664
|
+
export declare const StepsListItem: FC<StepsListItemProps>;
|
|
665
|
+
|
|
666
|
+
export declare type StepsListItemProps = {
|
|
667
|
+
title: string;
|
|
668
|
+
description: string;
|
|
669
|
+
IconComponent: FC<{
|
|
670
|
+
className?: string;
|
|
671
|
+
}>;
|
|
672
|
+
iconClassName?: string;
|
|
673
|
+
className?: string;
|
|
674
|
+
};
|
|
675
|
+
|
|
676
|
+
export declare type StepsListProps = {
|
|
677
|
+
steps: StepsListItemProps[];
|
|
678
|
+
className?: string;
|
|
679
|
+
};
|
|
680
|
+
|
|
642
681
|
export declare const Switch: default_2.ForwardRefExoticComponent<SwitchProps & default_2.RefAttributes<HTMLInputElement>>;
|
|
643
682
|
|
|
644
683
|
export declare interface SwitchProps {
|