@ctlyst.id/internal-ui 1.0.3 → 1.0.4-canary.1
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/components/datepicker/components/datepicker-month/datepicker-month.d.ts +9 -0
- package/dist/components/datepicker/components/datepicker-month/index.d.ts +4 -0
- package/dist/components/datepicker/components/datepicker-month/multi-datepicker-month.d.ts +9 -0
- package/dist/components/datepicker/components/datepicker.stories.d.ts +2 -1
- package/dist/components/datepicker/index.d.ts +1 -0
- package/dist/components/navigation/components/navigation.d.ts +1 -0
- package/dist/internal-ui.cjs.development.js +1093 -987
- package/dist/internal-ui.cjs.development.js.map +1 -1
- package/dist/internal-ui.cjs.production.min.js +32 -4
- package/dist/internal-ui.cjs.production.min.js.map +1 -1
- package/dist/internal-ui.esm.js +1093 -989
- package/dist/internal-ui.esm.js.map +1 -1
- package/package.json +2 -2
@@ -0,0 +1,9 @@
|
|
1
|
+
import type { FC } from 'react';
|
2
|
+
export interface DatePickerMonthProps {
|
3
|
+
onChange: (date: string) => void;
|
4
|
+
'data-test-id'?: string;
|
5
|
+
min: string;
|
6
|
+
max: string;
|
7
|
+
}
|
8
|
+
declare const DatePickerMonth: FC<DatePickerMonthProps>;
|
9
|
+
export default DatePickerMonth;
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import type { FC } from 'react';
|
2
|
+
export interface MultiDatePickerMonthProps {
|
3
|
+
onChange: (startDate: string | null, endDate: string | null) => void;
|
4
|
+
min?: string;
|
5
|
+
max?: string;
|
6
|
+
isError?: boolean;
|
7
|
+
}
|
8
|
+
declare const MultiDatePickerMonth: FC<MultiDatePickerMonthProps>;
|
9
|
+
export default MultiDatePickerMonth;
|
@@ -8,8 +8,9 @@ declare const _default: {
|
|
8
8
|
};
|
9
9
|
export default _default;
|
10
10
|
export declare const DatePickerDefault: () => JSX.Element;
|
11
|
-
export declare const
|
11
|
+
export declare const DatePickerMonthExample: () => JSX.Element;
|
12
12
|
export declare const DatePickerWithYearMonthDropdown: () => JSX.Element;
|
13
13
|
export declare const DatePickerWithTime: () => JSX.Element;
|
14
14
|
export declare const DatePickerWithDateRange: () => JSX.Element;
|
15
15
|
export declare const DatePickerWithNumberOfMonthRange: () => JSX.Element;
|
16
|
+
export declare const DefaulMultiDatePickerMonth: () => JSX.Element;
|