We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da30de8 commit cd18a99Copy full SHA for cd18a99
src/lib/index.ts
@@ -1,2 +1,4 @@
1
export { CalendarInline as Calendar } from './styled/inline';
2
export { DatePicker } from './styled/popup';
3
+export type { CalendarInlineProps } from './styled/inline';
4
+export type { DatePickerProps } from './styled/popup';
src/lib/styled/popup.tsx
@@ -5,7 +5,7 @@ import { Calendar } from './icons';
5
import { CalendarInline, type CalendarInlineProps } from './inline';
6
import styles from './style.css?inline';
7
8
-interface DatePickerProps extends CalendarInlineProps {
+export interface DatePickerProps extends CalendarInlineProps {
9
mode?: 'inline' | 'popup';
10
// trigger stuffs
11
triggerProps?: PropsOf<'button'>;
0 commit comments