naria-ui 0.5.10 → 0.5.12
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/Modal/Modal.d.ts +2 -2
- package/dist/components/TimePicker/TimePicker.d.ts +2 -2
- package/dist/components/index.d.ts +1 -0
- package/dist/naria-ui.cjs.js +11 -11
- package/dist/naria-ui.css +1 -1
- package/dist/naria-ui.es.js +2293 -1982
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { FC } from 'react';
|
|
2
|
-
export interface
|
|
2
|
+
export interface ModalProps {
|
|
3
3
|
isOpen: boolean;
|
|
4
4
|
title?: string;
|
|
5
5
|
children?: React.ReactNode;
|
|
@@ -19,4 +19,4 @@ export interface LibModalProps {
|
|
|
19
19
|
closeIcon?: string;
|
|
20
20
|
};
|
|
21
21
|
}
|
|
22
|
-
export declare const Modal: FC<
|
|
22
|
+
export declare const Modal: FC<ModalProps>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { FC, ReactNode } from 'react';
|
|
2
|
-
export interface
|
|
2
|
+
export interface TimePickerProps {
|
|
3
3
|
mode?: "12" | "24";
|
|
4
4
|
value?: {
|
|
5
5
|
hour: number;
|
|
@@ -49,4 +49,4 @@ export interface Props {
|
|
|
49
49
|
initialPart?: "hour" | "minute" | "second";
|
|
50
50
|
isToggleLabelEnable?: boolean;
|
|
51
51
|
}
|
|
52
|
-
export declare const TimePicker: FC<
|
|
52
|
+
export declare const TimePicker: FC<TimePickerProps>;
|