@hw-component/form 1.10.10 → 1.10.11

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/es/index.d.ts CHANGED
@@ -32,8 +32,4 @@ export declare const HTrimInput: import("react").ForwardRefExoticComponent<impor
32
32
  export declare const HTrimTextArea: import("react").ForwardRefExoticComponent<import("./Form/modal").HFormItemProps & import("react").RefAttributes<any>>;
33
33
  export declare const HInputNumberGroup: import("react").ForwardRefExoticComponent<import("./Form/modal").HFormItemProps & import("react").RefAttributes<any>>;
34
34
  export declare const HTagSelect: import("react").ForwardRefExoticComponent<import("./Form/modal").HFormItemProps & import("react").RefAttributes<any>>;
35
- export declare const HTimeRangePicker: {
36
- Component: import("react").ForwardRefExoticComponent<import("./Form/modal").HFormItemProps & import("react").RefAttributes<any>>;
37
- placeholder: ({ label }: import("./Form/modal").HItemProps) => string[];
38
- requiredErrMsg: ({ label }: import("./Form/modal").HItemProps) => string;
39
- };
35
+ export declare const HTimeRangePicker: import("react").ForwardRefExoticComponent<import("./Form/modal").HFormItemProps & import("react").RefAttributes<any>>;
package/es/index.js CHANGED
@@ -37,7 +37,7 @@ var HTrimInput = componentConfig.trimInput;
37
37
  var HTrimTextArea = componentConfig.trimTextArea;
38
38
  var HInputNumberGroup = componentConfig.inputNumberGroup.Component;
39
39
  var HTagSelect = componentConfig.tagSelect;
40
- var HTimeRangePicker = componentConfig.timeRangePicker;
40
+ var HTimeRangePicker = componentConfig.timeRangePicker.Component;
41
41
 
42
42
  export { HButtonInput, HCascader, HCheckBox, HCheckboxGroup, HColorInput, HDatePicker, HDrawerForm, HInput, HInputNumber, HInputNumberGroup, HModalForm, HPageHandler, HRadioGroup, HRangePicker, HRichEditor, HSelect, HSelectInput, HSwitch, HTagSelect, HTextArea, HTimePicker, HTimeRangePicker, HTrimInput, HTrimTextArea, HUpload, HUrlUpload, HVerificationCodeInput };
43
43
  // powered by hdj
package/lib/index.d.ts CHANGED
@@ -32,8 +32,4 @@ export declare const HTrimInput: import("react").ForwardRefExoticComponent<impor
32
32
  export declare const HTrimTextArea: import("react").ForwardRefExoticComponent<import("./Form/modal").HFormItemProps & import("react").RefAttributes<any>>;
33
33
  export declare const HInputNumberGroup: import("react").ForwardRefExoticComponent<import("./Form/modal").HFormItemProps & import("react").RefAttributes<any>>;
34
34
  export declare const HTagSelect: import("react").ForwardRefExoticComponent<import("./Form/modal").HFormItemProps & import("react").RefAttributes<any>>;
35
- export declare const HTimeRangePicker: {
36
- Component: import("react").ForwardRefExoticComponent<import("./Form/modal").HFormItemProps & import("react").RefAttributes<any>>;
37
- placeholder: ({ label }: import("./Form/modal").HItemProps) => string[];
38
- requiredErrMsg: ({ label }: import("./Form/modal").HItemProps) => string;
39
- };
35
+ export declare const HTimeRangePicker: import("react").ForwardRefExoticComponent<import("./Form/modal").HFormItemProps & import("react").RefAttributes<any>>;
package/lib/index.js CHANGED
@@ -38,7 +38,7 @@ var HTrimInput = config.default.trimInput;
38
38
  var HTrimTextArea = config.default.trimTextArea;
39
39
  var HInputNumberGroup = config.default.inputNumberGroup.Component;
40
40
  var HTagSelect = config.default.tagSelect;
41
- var HTimeRangePicker = config.default.timeRangePicker;
41
+ var HTimeRangePicker = config.default.timeRangePicker.Component;
42
42
 
43
43
  exports.HForm = index.default;
44
44
  exports.useHForm = useHForm.default;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hw-component/form",
3
- "version": "1.10.10",
3
+ "version": "1.10.11",
4
4
  "description": "基于antd二次开发",
5
5
  "repository": {
6
6
  "type": "git",
@@ -43,4 +43,4 @@ export const HInputNumberGroup = FormConfig.inputNumberGroup.Component;
43
43
 
44
44
  export const HTagSelect = FormConfig.tagSelect;
45
45
 
46
- export const HTimeRangePicker = FormConfig.timeRangePicker;
46
+ export const HTimeRangePicker = FormConfig.timeRangePicker.Component;