@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.
@@ -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,4 @@
1
+ export * from './datepicker-month';
2
+ export { default as DatePickerMonth } from './datepicker-month';
3
+ export * from './multi-datepicker-month';
4
+ export { default as MultiDatePickerMonth } from './multi-datepicker-month';
@@ -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;
@@ -1,2 +1,3 @@
1
1
  export { default as Datepicker } from './components/datepicker';
2
2
  export * from './components/datepicker';
3
+ export * from './components/datepicker-month';
@@ -5,6 +5,7 @@ export declare type NavigationProps = BoxProps & {
5
5
  navigations?: NavigationLink[];
6
6
  activePath: string;
7
7
  as?: As;
8
+ host?: string;
8
9
  };
9
10
  declare const Navigation: React.FC<NavigationProps>;
10
11
  export default Navigation;