@jswork/antd-components 1.0.81 → 1.0.83

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/main.d.mts CHANGED
@@ -302,10 +302,9 @@ declare class AcDatePicker extends React.Component<Props$l> {
302
302
  static displayName: string;
303
303
  static formSchema: string;
304
304
  static defaultProps: Props$l;
305
- get values(): {};
306
- handleChange: (inEvent: any) => void;
307
- parse: (inValue: any) => any;
308
- stringify: (inValue: any) => any;
305
+ get valueFormat(): any;
306
+ get value(): any;
307
+ handleChange: (value: Date) => void;
309
308
  render(): React.JSX.Element;
310
309
  }
311
310
 
package/dist/main.d.ts CHANGED
@@ -302,10 +302,9 @@ declare class AcDatePicker extends React.Component<Props$l> {
302
302
  static displayName: string;
303
303
  static formSchema: string;
304
304
  static defaultProps: Props$l;
305
- get values(): {};
306
- handleChange: (inEvent: any) => void;
307
- parse: (inValue: any) => any;
308
- stringify: (inValue: any) => any;
305
+ get valueFormat(): any;
306
+ get value(): any;
307
+ handleChange: (value: Date) => void;
309
308
  render(): React.JSX.Element;
310
309
  }
311
310