wargerm 0.5.35 → 0.5.37
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/Calendar/index.d.ts +1 -0
- package/dist/components/DatePicker/index.d.ts +6 -1
- package/dist/components/Radio/index.d.ts +1 -0
- package/dist/components/WDatePicker/index.d.ts +1 -0
- package/dist/index.css +12736 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.esm.css +12736 -0
- package/dist/index.esm.js +5162 -4882
- package/dist/index.js +5171 -4888
- package/package.json +2 -2
@@ -1,7 +1,12 @@
|
|
1
1
|
import React from 'react';
|
2
2
|
import { DatePickerProps, RangePickerProps } from 'antd/lib/date-picker';
|
3
|
+
import 'moment/locale/zh-cn';
|
4
|
+
export declare type IRangePickerProps = RangePickerProps & {
|
5
|
+
getRangePickerValue?: (value: any) => void;
|
6
|
+
panelType?: string;
|
7
|
+
};
|
3
8
|
export declare type IndexComponent = React.FC<DatePickerProps> & {
|
4
|
-
RangePicker: React.FC<
|
9
|
+
RangePicker: React.FC<IRangePickerProps>;
|
5
10
|
};
|
6
11
|
declare const Index: IndexComponent;
|
7
12
|
export default Index;
|
@@ -1,5 +1,6 @@
|
|
1
1
|
import React from 'react';
|
2
2
|
import { DatePickerProps, RangePickerProps } from 'antd/lib/date-picker';
|
3
|
+
import 'moment/locale/zh-cn';
|
3
4
|
export declare type IndexComponent = React.FC<DatePickerProps> & {
|
4
5
|
RangePicker: React.FC<RangePickerProps>;
|
5
6
|
showTime: Object | boolean;
|