design-system-silkhaus 3.12.0-beta.month-range-picker.2 → 3.12.0-beta.month-range-picker.4

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.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>>;
@@ -959,6 +959,8 @@ export declare interface MobileFilterMenuProps extends HTMLAttributes<HTMLDivEle
959
959
  rtl?: boolean;
960
960
  }
961
961
 
962
+ export declare const MobileMonthRangePicker: FC<PropsWithChildren<MonthRangePickerProps>>;
963
+
962
964
  export declare const MobileMultiSelectFilterDropDown: ForwardRefExoticComponent<MobileMultiSelectFilterDropDownProps & RefAttributes<HTMLDivElement>>;
963
965
 
964
966
  export declare interface MobileMultiSelectFilterDropDownProps extends HTMLAttributes<HTMLDivElement> {
@@ -1025,7 +1027,7 @@ export declare type MonthRangePickerProps = {
1025
1027
  minDate: MonthYear;
1026
1028
  maxDate: MonthYear;
1027
1029
  value?: MonthRange;
1028
- onChange?: (value: MonthRange) => void;
1030
+ onChange?: (value: MonthRange, shortcut: ShortcutsKey) => void;
1029
1031
  trigger?: ReactNode;
1030
1032
  triggerContainerClassName?: string;
1031
1033
  disabled?: boolean;