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.
@@ -1,3 +1,4 @@
1
1
  import React from 'react';
2
+ import 'moment/locale/zh-cn';
2
3
  declare const _default: React.MemoExoticComponent<React.ForwardRefExoticComponent<Pick<any, string | number | symbol> & React.RefAttributes<unknown>>>;
3
4
  export default _default;
@@ -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<RangePickerProps>;
9
+ RangePicker: React.FC<IRangePickerProps>;
5
10
  };
6
11
  declare const Index: IndexComponent;
7
12
  export default Index;
@@ -1,6 +1,7 @@
1
1
  import React from 'react';
2
2
  import { RadioProps, RadioGroupProps } from 'antd/lib/Radio';
3
3
  export interface IRadio extends RadioProps {
4
+ sideButtonStyle?: string;
4
5
  }
5
6
  export declare type IndexComponent = React.FC<IRadio> & {
6
7
  Group: React.FC<RadioGroupProps>;
@@ -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;