design-system-silkhaus 0.0.86-beta.4 → 0.0.87-beta.1

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
@@ -1,6 +1,8 @@
1
+ import { CalendarDayShape } from 'react-dates';
1
2
  import { ClassProp } from 'class-variance-authority/types';
2
3
  import { default as default_2 } from 'react';
3
4
  import { HTMLAttributes } from 'react';
5
+ import { ModifiersShape } from 'react-dates';
4
6
  import { Moment } from 'moment';
5
7
  import * as React_2 from 'react';
6
8
  import { ReactNode } from 'react';
@@ -32,7 +34,6 @@ export declare interface ActionFooterProps {
32
34
  primaryBtnTxt: string | default_2.ReactNode;
33
35
  secondaryBtnTxt?: string | default_2.ReactNode;
34
36
  thirdColumn?: default_2.ReactNode;
35
- relevance: 'primary' | 'secondary';
36
37
  }
37
38
 
38
39
  export declare const AlertDialog: default_2.ForwardRefExoticComponent<AlertDialogProps & default_2.RefAttributes<HTMLDivElement>>;
@@ -137,10 +138,18 @@ declare interface DateRangePickerProps {
137
138
  lTBannerTitle?: string | default_2.ReactNode;
138
139
  lTBannerDesc?: string | default_2.ReactNode;
139
140
  lTBannerBgColor?: string;
140
- onMobileCloseClick?: () => void;
141
- onOutsideClick?: (e: any) => void;
142
- onPrevMonthClick?: (e: any) => void;
143
- onNextMonthClick?: (e: any) => void;
141
+ thirdColumn?: string | default_2.ReactNode;
142
+ onMobileCloseClick: () => void;
143
+ onOutsideClick?: (e: unknown) => void;
144
+ onPrevMonthClick?: (e: unknown) => void;
145
+ onNextMonthClick?: (e: unknown) => void;
146
+ renderCalendarDay?: (props: CalendarDayShape) => default_2.ReactNode | undefined;
147
+ isDayBlocked?: ((day: Moment) => boolean) | undefined;
148
+ renderDayContents?: (day: Moment, modifiers: ModifiersShape) => default_2.ReactNode | null | undefined;
149
+ renderCalendarInfo?: () => default_2.ReactNode | null | undefined;
150
+ _daySize?: number;
151
+ _mobileDaySize?: number;
152
+ mobileBreakPoint?: number;
144
153
  }
145
154
 
146
155
  export declare const Dialog: default_2.ForwardRefExoticComponent<DialogProps & default_2.RefAttributes<HTMLDivElement>>;