design-system-silkhaus 3.12.0-beta.month-range-picker.3 → 3.12.0
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/app/index.js +1 -1
- package/dist/{index-xY5AZ_GX.js → index-DoJhqBt6.js} +408 -404
- package/dist/index.d.ts +10 -7
- package/dist/index.js +673 -669
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -42,6 +42,13 @@ export declare interface AccordionProps {
|
|
|
42
42
|
onStateChange?: (state: boolean) => void;
|
|
43
43
|
}
|
|
44
44
|
|
|
45
|
+
export declare const ActionBar: ({ applyLabel, cancelLabel, onApply, onCancel, }: {
|
|
46
|
+
applyLabel: string;
|
|
47
|
+
cancelLabel: string;
|
|
48
|
+
onApply?: () => void;
|
|
49
|
+
onCancel?: () => void;
|
|
50
|
+
}) => JSX_2.Element;
|
|
51
|
+
|
|
45
52
|
declare type ActionButtonProps = {
|
|
46
53
|
label: string;
|
|
47
54
|
} & ButtonProps;
|
|
@@ -500,13 +507,6 @@ export declare const DeleteIcon: FC<{
|
|
|
500
507
|
className?: string;
|
|
501
508
|
}>;
|
|
502
509
|
|
|
503
|
-
export declare const DesktopActionBar: ({ applyLabel, cancelLabel, onApply, onCancel, }: {
|
|
504
|
-
applyLabel: string;
|
|
505
|
-
cancelLabel: string;
|
|
506
|
-
onApply?: () => void;
|
|
507
|
-
onCancel?: () => void;
|
|
508
|
-
}) => JSX_2.Element;
|
|
509
|
-
|
|
510
510
|
export declare const desktopMinWidth: number;
|
|
511
511
|
|
|
512
512
|
export declare const DesktopMonthRangePicker: FC<PropsWithChildren<MonthRangePickerProps>>;
|
|
@@ -2275,6 +2275,9 @@ export declare const useDocumentSize: () => {
|
|
|
2275
2275
|
documentWidth: number;
|
|
2276
2276
|
documentHeight: number;
|
|
2277
2277
|
screenSize: "mobile" | "tablet" | "desktop";
|
|
2278
|
+
isMobile: boolean;
|
|
2279
|
+
isTablet: boolean;
|
|
2280
|
+
isDesktop: boolean;
|
|
2278
2281
|
};
|
|
2279
2282
|
|
|
2280
2283
|
export declare const WarningHollowIcon: FC<{
|