@jswork/antd-components 1.0.83 → 1.0.85

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
@@ -287,15 +287,13 @@ declare class AcConfirmButton extends Component<AcConfirmButtonProps> {
287
287
 
288
288
  type StdEventTarget$k = {
289
289
  target: {
290
- value: any;
290
+ value: string;
291
291
  };
292
292
  };
293
293
  type StdCallback$k = (inEvent: StdEventTarget$k) => void;
294
294
  type Props$l = {
295
295
  className?: string;
296
296
  value?: any;
297
- dayjs?: any;
298
- defaultValue?: any;
299
297
  onChange?: StdCallback$k;
300
298
  } & DatePickerProps;
301
299
  declare class AcDatePicker extends React.Component<Props$l> {
@@ -304,7 +302,7 @@ declare class AcDatePicker extends React.Component<Props$l> {
304
302
  static defaultProps: Props$l;
305
303
  get valueFormat(): any;
306
304
  get value(): any;
307
- handleChange: (value: Date) => void;
305
+ handleChange: (value: any) => void;
308
306
  render(): React.JSX.Element;
309
307
  }
310
308
 
package/dist/main.d.ts CHANGED
@@ -287,15 +287,13 @@ declare class AcConfirmButton extends Component<AcConfirmButtonProps> {
287
287
 
288
288
  type StdEventTarget$k = {
289
289
  target: {
290
- value: any;
290
+ value: string;
291
291
  };
292
292
  };
293
293
  type StdCallback$k = (inEvent: StdEventTarget$k) => void;
294
294
  type Props$l = {
295
295
  className?: string;
296
296
  value?: any;
297
- dayjs?: any;
298
- defaultValue?: any;
299
297
  onChange?: StdCallback$k;
300
298
  } & DatePickerProps;
301
299
  declare class AcDatePicker extends React.Component<Props$l> {
@@ -304,7 +302,7 @@ declare class AcDatePicker extends React.Component<Props$l> {
304
302
  static defaultProps: Props$l;
305
303
  get valueFormat(): any;
306
304
  get value(): any;
307
- handleChange: (value: Date) => void;
305
+ handleChange: (value: any) => void;
308
306
  render(): React.JSX.Element;
309
307
  }
310
308