design-system-silkhaus 2.3.0-beta.travel-list.16 → 2.3.0-beta.travel-list.17
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 +324 -93
- package/dist/index.d.ts +20 -0
- package/dist/index.js +61312 -26125
- 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
|
}>;
|