@ctlyst.id/internal-ui 1.0.2 → 1.0.4-canary.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/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 +3 -0
- 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 +1097 -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 +1097 -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,6 +8,9 @@ declare const _default: {
|
|
8
8
|
};
|
9
9
|
export default _default;
|
10
10
|
export declare const DatePickerDefault: () => JSX.Element;
|
11
|
+
export declare const DatePickerMonthExample: () => JSX.Element;
|
12
|
+
export declare const DatePickerWithYearMonthDropdown: () => JSX.Element;
|
11
13
|
export declare const DatePickerWithTime: () => JSX.Element;
|
12
14
|
export declare const DatePickerWithDateRange: () => JSX.Element;
|
13
15
|
export declare const DatePickerWithNumberOfMonthRange: () => JSX.Element;
|
16
|
+
export declare const DefaulMultiDatePickerMonth: () => JSX.Element;
|