@sunggang/ui-lib 0.1.39 → 0.1.40
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/package.json
CHANGED
|
@@ -11,7 +11,7 @@ interface DatesType {
|
|
|
11
11
|
endDate: Date;
|
|
12
12
|
key?: string | undefined;
|
|
13
13
|
}
|
|
14
|
-
|
|
14
|
+
interface ReactDateRangeProps {
|
|
15
15
|
className?: string;
|
|
16
16
|
item: ItemType;
|
|
17
17
|
onChange: (value: any) => void;
|
|
@@ -19,4 +19,4 @@ export interface ReactDateRangeProps {
|
|
|
19
19
|
date?: Date;
|
|
20
20
|
}
|
|
21
21
|
export declare const ReactDateRange: React.FC<ReactDateRangeProps>;
|
|
22
|
-
export
|
|
22
|
+
export default ReactDateRange;
|