design-system-silkhaus 2.1.0-beta.travel-list.6 → 2.1.0-beta.travel-list.8
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 +6 -2
- package/dist/index.js +4180 -4145
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -63,7 +63,7 @@ export declare interface AlertDialogProps {
|
|
|
63
63
|
export declare const AnimatedModal: ForwardRefExoticComponent<AnimatedModalProps & RefAttributes<HTMLDivElement>>;
|
|
64
64
|
|
|
65
65
|
export declare interface AnimatedModalProps extends HTMLAttributes<HTMLDivElement> {
|
|
66
|
-
show
|
|
66
|
+
show?: boolean;
|
|
67
67
|
handleClose?: () => void;
|
|
68
68
|
animation?: 'slideUp' | 'slideDown' | 'fadeIn';
|
|
69
69
|
/**
|
|
@@ -240,6 +240,8 @@ export declare const DeleteIcon: FC<{
|
|
|
240
240
|
className?: string;
|
|
241
241
|
}>;
|
|
242
242
|
|
|
243
|
+
export declare const desktopMinWidth: number;
|
|
244
|
+
|
|
243
245
|
export declare const DesktopTooltip: FC<PropsWithChildren<TooltipProps>>;
|
|
244
246
|
|
|
245
247
|
export declare const Dialog: ForwardRefExoticComponent<DialogProps & RefAttributes<HTMLDivElement>>;
|
|
@@ -499,7 +501,7 @@ export declare type ScreenSize = 'mobile' | 'tablet' | 'desktop';
|
|
|
499
501
|
export declare const SelectPopover: ForwardRefExoticComponent<SelectPopoverProps & RefAttributes<HTMLDivElement>>;
|
|
500
502
|
|
|
501
503
|
export declare interface SelectPopoverProps {
|
|
502
|
-
showPopup
|
|
504
|
+
showPopup?: boolean;
|
|
503
505
|
mobileContainerClassname?: string;
|
|
504
506
|
desktopContainerClassname?: string;
|
|
505
507
|
maxWidth?: string;
|
|
@@ -563,6 +565,8 @@ export declare interface SwitchProps {
|
|
|
563
565
|
htmlId?: string;
|
|
564
566
|
}
|
|
565
567
|
|
|
568
|
+
export declare const tabletMinWidth: number;
|
|
569
|
+
|
|
566
570
|
declare type TagProps = {
|
|
567
571
|
icon: default_2.ReactNode;
|
|
568
572
|
label: string;
|