@hw-component/form 0.0.4 → 0.0.5-beta-v1
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/CheckboxGroup/CheckBox/index.d.ts +2 -5
- package/es/CheckboxGroup/CheckBox/index.js +15 -9
- package/es/CheckboxGroup/hooks.d.ts +1 -1
- package/es/CheckboxGroup/hooks.js +18 -19
- package/es/CheckboxGroup/index.d.ts +2 -3
- package/es/CheckboxGroup/index.js +70 -26
- package/es/CheckboxGroup/modal.d.ts +13 -0
- package/es/DialogForm/DrawerForm/Footer.d.ts +7 -0
- package/es/DialogForm/DrawerForm/Footer.js +27 -0
- package/es/DialogForm/DrawerForm/Title.d.ts +3 -0
- package/es/DialogForm/DrawerForm/Title.js +21 -0
- package/es/DialogForm/DrawerForm/index.d.ts +3 -0
- package/es/DialogForm/DrawerForm/index.js +138 -0
- package/es/DialogForm/ModalForm.d.ts +3 -0
- package/es/DialogForm/ModalForm.js +119 -0
- package/es/DialogForm/hooks.d.ts +16 -0
- package/es/DialogForm/hooks.js +150 -0
- package/es/DialogForm/modal.d.ts +33 -0
- package/es/Form/Context/FormConfigProvider.d.ts +5 -0
- package/es/Form/Context/FormConfigProvider.js +49 -0
- package/es/Form/Context/index.d.ts +5 -0
- package/es/Form/Context/index.js +11 -0
- package/es/Form/FormItem/BasicItem.d.ts +4 -0
- package/es/Form/FormItem/BasicItem.js +93 -0
- package/es/Form/FormItem/Helper.d.ts +7 -0
- package/es/Form/FormItem/Helper.js +26 -0
- package/es/Form/FormItem/RegularFormItem.d.ts +3 -0
- package/es/Form/FormItem/RegularFormItem.js +25 -0
- package/es/Form/FormItem/UpFormItem.d.ts +3 -0
- package/es/Form/FormItem/UpFormItem.js +43 -0
- package/es/Form/FormItem/hooks.d.ts +8 -0
- package/es/Form/FormItem/hooks.js +38 -0
- package/es/Form/FormItem/index.d.ts +3 -0
- package/es/Form/FormItem/index.js +22 -0
- package/es/Form/HFormConnect.d.ts +5 -0
- package/es/Form/HFormConnect.js +68 -0
- package/es/Form/InitSet.d.ts +2 -0
- package/es/Form/InitSet.js +16 -0
- package/es/Form/Label.d.ts +10 -0
- package/es/Form/Label.js +49 -0
- package/es/Form/config.d.ts +29 -0
- package/es/Form/config.js +45 -0
- package/es/Form/hooks/index.d.ts +16 -0
- package/es/Form/hooks/index.js +158 -0
- package/es/Form/hooks/useDefaultRender.d.ts +3 -0
- package/es/Form/hooks/useDefaultRender.js +49 -0
- package/es/Form/hooks/useHForm.d.ts +3 -0
- package/es/Form/hooks/useHForm.js +194 -0
- package/es/Form/hooks/useInitConfigData.d.ts +8 -0
- package/es/Form/hooks/useInitConfigData.js +172 -0
- package/es/Form/index.d.ts +3 -0
- package/es/Form/index.js +103 -0
- package/es/Form/modal.d.ts +123 -0
- package/es/Input/ButtonInput.d.ts +2 -2
- package/es/Input/ButtonInput.js +34 -19
- package/es/Input/ColorInput/Picker.d.ts +3 -0
- package/es/Input/ColorInput/Picker.js +22 -0
- package/es/Input/ColorInput/data.d.ts +1 -0
- package/es/Input/ColorInput/data.js +5 -0
- package/es/Input/ColorInput/index.d.ts +3 -0
- package/es/Input/ColorInput/index.js +87 -0
- package/es/Input/InputNumber.d.ts +0 -1
- package/es/Input/InputNumber.js +18 -8
- package/es/Input/SelectInput.d.ts +2 -1
- package/es/Input/SelectInput.js +43 -14
- package/es/Input/defaultConfig.js +2 -2
- package/es/Input/index.d.ts +0 -1
- package/es/Input/index.js +17 -6
- package/es/Input/modal.d.ts +30 -0
- package/es/PageHandler/ErrorComponent.d.ts +3 -0
- package/es/PageHandler/ErrorComponent.js +38 -0
- package/es/PageHandler/LoadingComponent.d.ts +2 -0
- package/es/PageHandler/LoadingComponent.js +19 -0
- package/es/PageHandler/index.d.ts +4 -0
- package/es/PageHandler/index.js +26 -0
- package/es/PageHandler/modal.d.ts +6 -0
- package/es/RadioGroup/index.d.ts +2 -3
- package/es/RadioGroup/index.js +25 -10
- package/es/Select/components/AllSelect.d.ts +3 -4
- package/es/Select/components/AllSelect.js +36 -18
- package/es/Select/components/CheckBoxOption.js +8 -6
- package/es/Select/components/DropdownComponent.js +18 -13
- package/es/Select/components/NoFindItem.d.ts +0 -1
- package/es/Select/components/NoFindItem.js +7 -6
- package/es/Select/components/NotFoundContent.d.ts +0 -1
- package/es/Select/components/NotFoundContent.js +25 -22
- package/es/Select/defaultConfig.d.ts +0 -1
- package/es/Select/defaultConfig.js +5 -5
- package/es/Select/hooks/changeHooks.js +7 -4
- package/es/Select/hooks/norHooks.d.ts +10 -3
- package/es/Select/hooks/norHooks.js +53 -17
- package/es/Select/index.d.ts +2 -3
- package/es/Select/index.js +65 -36
- package/es/Select/modal.d.ts +9 -1
- package/es/Select/utils.js +2 -2
- package/es/Submit/index.d.ts +9 -0
- package/es/Submit/index.js +55 -0
- package/es/Switch/index.d.ts +4 -3
- package/es/Switch/index.js +37 -18
- package/es/TDPicker/RangePicker.d.ts +8 -0
- package/es/TDPicker/RangePicker.js +126 -0
- package/es/TDPicker/TimePicker.d.ts +3 -0
- package/es/TDPicker/TimePicker.js +45 -0
- package/es/TDPicker/hooks.d.ts +33 -0
- package/es/TDPicker/hooks.js +132 -0
- package/es/TDPicker/index.d.ts +4 -0
- package/es/TDPicker/index.js +48 -0
- package/es/TDPicker/modal.d.ts +35 -0
- package/es/TextArea/index.d.ts +3 -0
- package/es/TextArea/index.js +31 -0
- package/es/Upload/Btn.d.ts +3 -0
- package/es/Upload/Btn.js +36 -0
- package/es/Upload/MediaTypeEle/TypeEle.d.ts +9 -0
- package/es/Upload/MediaTypeEle/TypeEle.js +42 -0
- package/es/Upload/MediaTypeEle/index.d.ts +3 -0
- package/es/Upload/MediaTypeEle/index.js +37 -0
- package/es/Upload/Preview/index.d.ts +5 -0
- package/es/Upload/Preview/index.js +22 -0
- package/es/Upload/UrlUpload/index.d.ts +3 -0
- package/es/Upload/UrlUpload/index.js +132 -0
- package/es/Upload/enums.d.ts +5 -0
- package/es/Upload/enums.js +10 -0
- package/es/Upload/hooks/change.d.ts +3 -0
- package/es/Upload/hooks/change.js +109 -0
- package/es/Upload/hooks/customRequest.d.ts +3 -0
- package/es/Upload/hooks/customRequest.js +132 -0
- package/es/Upload/hooks/propsMaker.d.ts +2 -0
- package/es/Upload/hooks/propsMaker.js +37 -0
- package/es/Upload/index.d.ts +3 -0
- package/es/Upload/index.js +144 -0
- package/es/Upload/modal.d.ts +30 -0
- package/es/Upload/util.d.ts +5 -0
- package/es/Upload/util.js +34 -0
- package/es/config.d.ts +2 -14
- package/es/config.js +57 -10
- package/{lib/hooks/useChangeOptions.d.ts → es/hooks/index.d.ts} +3 -0
- package/es/hooks/index.js +75 -0
- package/es/index.css +42 -1
- package/es/index.d.ts +26 -11
- package/es/index.js +33 -13
- package/es/modal.d.ts +16 -0
- package/lib/CheckboxGroup/CheckBox/index.d.ts +2 -5
- package/lib/CheckboxGroup/CheckBox/index.js +12 -6
- package/lib/CheckboxGroup/hooks.d.ts +1 -1
- package/lib/CheckboxGroup/hooks.js +16 -17
- package/lib/CheckboxGroup/index.d.ts +2 -3
- package/lib/CheckboxGroup/index.js +68 -24
- package/lib/CheckboxGroup/modal.d.ts +13 -0
- package/lib/DialogForm/DrawerForm/Footer.d.ts +7 -0
- package/lib/DialogForm/DrawerForm/Footer.js +30 -0
- package/lib/DialogForm/DrawerForm/Title.d.ts +3 -0
- package/lib/DialogForm/DrawerForm/Title.js +24 -0
- package/lib/DialogForm/DrawerForm/index.d.ts +3 -0
- package/lib/DialogForm/DrawerForm/index.js +141 -0
- package/lib/DialogForm/ModalForm.d.ts +3 -0
- package/lib/DialogForm/ModalForm.js +122 -0
- package/lib/DialogForm/hooks.d.ts +16 -0
- package/lib/DialogForm/hooks.js +154 -0
- package/lib/DialogForm/modal.d.ts +33 -0
- package/lib/Form/Context/FormConfigProvider.d.ts +5 -0
- package/lib/Form/Context/FormConfigProvider.js +53 -0
- package/lib/Form/Context/index.d.ts +5 -0
- package/lib/Form/Context/index.js +14 -0
- package/lib/Form/FormItem/BasicItem.d.ts +4 -0
- package/lib/Form/FormItem/BasicItem.js +96 -0
- package/lib/Form/FormItem/Helper.d.ts +7 -0
- package/lib/Form/FormItem/Helper.js +29 -0
- package/lib/Form/FormItem/RegularFormItem.d.ts +3 -0
- package/lib/Form/FormItem/RegularFormItem.js +28 -0
- package/lib/Form/FormItem/UpFormItem.d.ts +3 -0
- package/lib/Form/FormItem/UpFormItem.js +46 -0
- package/lib/Form/FormItem/hooks.d.ts +8 -0
- package/lib/Form/FormItem/hooks.js +41 -0
- package/lib/Form/FormItem/index.d.ts +3 -0
- package/lib/Form/FormItem/index.js +25 -0
- package/lib/Form/HFormConnect.d.ts +5 -0
- package/lib/Form/HFormConnect.js +71 -0
- package/lib/Form/InitSet.d.ts +2 -0
- package/lib/Form/InitSet.js +19 -0
- package/lib/Form/Label.d.ts +10 -0
- package/lib/Form/Label.js +52 -0
- package/lib/Form/config.d.ts +29 -0
- package/lib/Form/config.js +49 -0
- package/lib/Form/hooks/index.d.ts +16 -0
- package/lib/Form/hooks/index.js +162 -0
- package/lib/Form/hooks/useDefaultRender.d.ts +3 -0
- package/lib/Form/hooks/useDefaultRender.js +50 -0
- package/lib/Form/hooks/useHForm.d.ts +3 -0
- package/lib/Form/hooks/useHForm.js +197 -0
- package/lib/Form/hooks/useInitConfigData.d.ts +8 -0
- package/lib/Form/hooks/useInitConfigData.js +175 -0
- package/lib/Form/index.d.ts +3 -0
- package/lib/Form/index.js +106 -0
- package/lib/Form/modal.d.ts +123 -0
- package/lib/Input/ButtonInput.d.ts +2 -2
- package/lib/Input/ButtonInput.js +32 -17
- package/lib/Input/ColorInput/Picker.d.ts +3 -0
- package/lib/Input/ColorInput/Picker.js +25 -0
- package/lib/Input/ColorInput/data.d.ts +1 -0
- package/lib/Input/ColorInput/data.js +6 -0
- package/lib/Input/ColorInput/index.d.ts +3 -0
- package/lib/Input/ColorInput/index.js +90 -0
- package/lib/Input/InputNumber.d.ts +0 -1
- package/lib/Input/InputNumber.js +15 -5
- package/lib/Input/SelectInput.d.ts +2 -1
- package/lib/Input/SelectInput.js +42 -12
- package/lib/Input/index.d.ts +0 -1
- package/lib/Input/index.js +15 -4
- package/lib/Input/modal.d.ts +30 -0
- package/lib/PageHandler/ErrorComponent.d.ts +3 -0
- package/lib/PageHandler/ErrorComponent.js +41 -0
- package/lib/PageHandler/LoadingComponent.d.ts +2 -0
- package/lib/PageHandler/LoadingComponent.js +22 -0
- package/lib/PageHandler/index.d.ts +4 -0
- package/lib/PageHandler/index.js +29 -0
- package/lib/PageHandler/modal.d.ts +6 -0
- package/lib/RadioGroup/index.d.ts +2 -3
- package/lib/RadioGroup/index.js +23 -8
- package/lib/Select/components/AllSelect.d.ts +3 -4
- package/lib/Select/components/AllSelect.js +34 -16
- package/lib/Select/components/CheckBoxOption.js +6 -4
- package/lib/Select/components/DropdownComponent.js +16 -11
- package/lib/Select/components/NoFindItem.d.ts +0 -1
- package/lib/Select/components/NoFindItem.js +5 -4
- package/lib/Select/components/NotFoundContent.d.ts +0 -1
- package/lib/Select/components/NotFoundContent.js +23 -20
- package/lib/Select/defaultConfig.d.ts +0 -1
- package/lib/Select/defaultConfig.js +3 -3
- package/lib/Select/hooks/changeHooks.js +5 -2
- package/lib/Select/hooks/norHooks.d.ts +10 -3
- package/lib/Select/hooks/norHooks.js +50 -14
- package/lib/Select/index.d.ts +2 -3
- package/lib/Select/index.js +62 -33
- package/lib/Select/modal.d.ts +9 -1
- package/lib/Submit/index.d.ts +9 -0
- package/lib/Submit/index.js +58 -0
- package/lib/Switch/index.d.ts +4 -3
- package/lib/Switch/index.js +34 -15
- package/lib/TDPicker/RangePicker.d.ts +8 -0
- package/lib/TDPicker/RangePicker.js +129 -0
- package/lib/TDPicker/TimePicker.d.ts +3 -0
- package/lib/TDPicker/TimePicker.js +48 -0
- package/lib/TDPicker/hooks.d.ts +33 -0
- package/lib/TDPicker/hooks.js +139 -0
- package/lib/TDPicker/index.d.ts +4 -0
- package/lib/TDPicker/index.js +51 -0
- package/lib/TDPicker/modal.d.ts +35 -0
- package/lib/TextArea/index.d.ts +3 -0
- package/lib/TextArea/index.js +34 -0
- package/lib/Upload/Btn.d.ts +3 -0
- package/lib/Upload/Btn.js +39 -0
- package/lib/Upload/MediaTypeEle/TypeEle.d.ts +9 -0
- package/lib/Upload/MediaTypeEle/TypeEle.js +45 -0
- package/lib/Upload/MediaTypeEle/index.d.ts +3 -0
- package/lib/Upload/MediaTypeEle/index.js +40 -0
- package/lib/Upload/Preview/index.d.ts +5 -0
- package/lib/Upload/Preview/index.js +25 -0
- package/lib/Upload/UrlUpload/index.d.ts +3 -0
- package/lib/Upload/UrlUpload/index.js +135 -0
- package/lib/Upload/enums.d.ts +5 -0
- package/lib/Upload/enums.js +9 -0
- package/lib/Upload/hooks/change.d.ts +3 -0
- package/lib/Upload/hooks/change.js +110 -0
- package/lib/Upload/hooks/customRequest.d.ts +3 -0
- package/lib/Upload/hooks/customRequest.js +133 -0
- package/lib/Upload/hooks/propsMaker.d.ts +2 -0
- package/lib/Upload/hooks/propsMaker.js +38 -0
- package/lib/Upload/index.d.ts +3 -0
- package/lib/Upload/index.js +147 -0
- package/lib/Upload/modal.d.ts +30 -0
- package/lib/Upload/util.d.ts +5 -0
- package/lib/Upload/util.js +38 -0
- package/lib/config.d.ts +2 -14
- package/lib/config.js +55 -8
- package/{es/hooks/useChangeOptions.d.ts → lib/hooks/index.d.ts} +3 -0
- package/lib/hooks/index.js +78 -0
- package/lib/index.css +42 -1
- package/lib/index.d.ts +26 -11
- package/lib/index.js +52 -23
- package/lib/modal.d.ts +16 -0
- package/package.json +7 -4
- package/scripts/rollup.config.js +2 -4
- package/scripts/webpack.config.js +5 -8
- package/src/Layout.tsx +4 -4
- package/src/components/CheckboxGroup/CheckBox/index.tsx +7 -7
- package/src/components/CheckboxGroup/hooks.ts +12 -13
- package/src/components/CheckboxGroup/index.tsx +40 -7
- package/src/components/CheckboxGroup/{modal.d.ts → modal.ts} +4 -1
- package/src/components/DialogForm/DrawerForm/Footer.tsx +20 -0
- package/src/components/DialogForm/DrawerForm/Title.tsx +12 -0
- package/src/components/DialogForm/DrawerForm/index.tsx +95 -0
- package/src/components/DialogForm/ModalForm.tsx +77 -0
- package/src/components/DialogForm/hooks.ts +109 -0
- package/src/components/DialogForm/modal.ts +36 -0
- package/src/components/Form/Context/FormConfigProvider.tsx +38 -0
- package/src/components/Form/Context/index.tsx +14 -0
- package/src/components/Form/FormItem/BasicItem.tsx +76 -0
- package/src/components/Form/FormItem/Helper.tsx +25 -0
- package/src/components/Form/FormItem/RegularFormItem.tsx +7 -0
- package/src/components/Form/FormItem/UpFormItem.tsx +20 -0
- package/src/components/Form/FormItem/hooks.tsx +40 -0
- package/src/components/Form/FormItem/index.tsx +8 -0
- package/src/components/Form/HFormConnect.tsx +67 -0
- package/src/components/Form/InitSet.tsx +10 -0
- package/src/components/Form/Label.tsx +50 -0
- package/src/components/Form/config.ts +43 -0
- package/src/components/Form/hooks/index.ts +111 -0
- package/src/components/Form/hooks/useDefaultRender.tsx +42 -0
- package/src/components/Form/hooks/useHForm.ts +164 -0
- package/src/components/Form/hooks/useInitConfigData.tsx +194 -0
- package/src/components/Form/index.less +22 -0
- package/src/components/Form/index.tsx +85 -0
- package/src/components/Form/modal.ts +179 -0
- package/src/components/Input/ButtonInput.tsx +11 -5
- package/src/components/Input/ColorInput/Picker.tsx +18 -0
- package/src/components/Input/ColorInput/data.ts +102 -0
- package/src/components/Input/ColorInput/index.less +10 -0
- package/src/components/Input/ColorInput/index.tsx +48 -0
- package/src/components/Input/SelectInput.tsx +33 -3
- package/src/components/Input/modal.ts +36 -0
- package/src/components/PageHandler/ErrorComponent.tsx +20 -0
- package/src/components/PageHandler/LoadingComponent.tsx +9 -0
- package/src/components/PageHandler/index.tsx +14 -0
- package/src/components/PageHandler/modal.ts +6 -0
- package/src/components/RadioGroup/index.tsx +8 -4
- package/src/components/Select/components/AllSelect.tsx +28 -17
- package/src/components/Select/components/DropdownComponent.tsx +1 -0
- package/src/components/Select/components/NotFoundContent.tsx +1 -1
- package/src/components/Select/hooks/changeHooks.tsx +6 -2
- package/src/components/Select/hooks/norHooks.ts +33 -6
- package/src/components/Select/index.less +20 -4
- package/src/components/Select/index.tsx +25 -11
- package/src/components/Select/modal.ts +17 -8
- package/src/components/Submit/index.tsx +46 -0
- package/src/components/Switch/index.tsx +14 -9
- package/src/components/TDPicker/RangePicker.tsx +109 -0
- package/src/components/TDPicker/TimePicker.tsx +25 -0
- package/src/components/TDPicker/hooks.ts +150 -0
- package/src/components/TDPicker/index.tsx +28 -0
- package/src/components/TDPicker/modal.ts +46 -0
- package/src/components/TextArea/index.tsx +8 -0
- package/src/components/Upload/Btn.tsx +24 -0
- package/src/components/Upload/MediaTypeEle/TypeEle.tsx +26 -0
- package/src/components/Upload/MediaTypeEle/index.tsx +34 -0
- package/src/components/Upload/Preview/index.tsx +14 -0
- package/src/components/Upload/UrlUpload/index.tsx +91 -0
- package/src/components/Upload/enums.ts +5 -0
- package/src/components/Upload/hooks/change.ts +79 -0
- package/src/components/Upload/hooks/customRequest.ts +87 -0
- package/src/components/Upload/hooks/propsMaker.ts +20 -0
- package/src/components/Upload/index.tsx +119 -0
- package/src/components/Upload/modal.ts +33 -0
- package/src/components/Upload/util.ts +27 -0
- package/src/components/config.ts +35 -8
- package/src/components/hooks/index.ts +53 -0
- package/src/components/index.tsx +30 -11
- package/src/components/modal.ts +20 -0
- package/src/components/styles/index.less +3 -0
- package/src/components/styles/local.less +1 -1
- package/src/components/typings.d.ts +0 -5
- package/src/pages/Checkbox/index.tsx +4 -5
- package/src/pages/DatePicker/index.tsx +20 -2
- package/src/pages/DrawerForm/index.tsx +127 -0
- package/src/pages/Form/index.tsx +203 -0
- package/src/pages/Input/index.tsx +2 -0
- package/src/pages/ModalForm/index.tsx +147 -0
- package/src/pages/Select/index.tsx +6 -3
- package/src/pages/Switch/index.tsx +1 -1
- package/src/pages/Upload/index.tsx +14 -0
- package/src/routes.tsx +24 -0
- package/tsconfig.json +1 -1
- package/es/DatePicker/RangePicker.d.ts +0 -4
- package/es/DatePicker/RangePicker.js +0 -23
- package/es/DatePicker/index.d.ts +0 -4
- package/es/DatePicker/index.js +0 -39
- package/es/TimePicker/index.d.ts +0 -2
- package/es/hooks/useChangeOptions.js +0 -25
- package/es/hooks/useClassName.d.ts +0 -1
- package/es/hooks/useClassName.js +0 -15
- package/lib/DatePicker/RangePicker.d.ts +0 -4
- package/lib/DatePicker/RangePicker.js +0 -26
- package/lib/DatePicker/index.d.ts +0 -4
- package/lib/DatePicker/index.js +0 -42
- package/lib/TimePicker/index.d.ts +0 -2
- package/lib/hooks/useChangeOptions.js +0 -26
- package/lib/hooks/useClassName.d.ts +0 -1
- package/lib/hooks/useClassName.js +0 -16
- package/src/components/DatePicker/RangePicker.tsx +0 -19
- package/src/components/DatePicker/index.tsx +0 -38
- package/src/components/DatePicker/modal.d.ts +0 -17
- package/src/components/Input/modal.d.ts +0 -26
- package/src/components/TimePicker/index.tsx +0 -1
- package/src/components/hooks/useChangeOptions.ts +0 -22
- package/src/components/hooks/useClassName.ts +0 -9
package/es/Switch/index.js
CHANGED
|
@@ -1,16 +1,26 @@
|
|
|
1
|
-
// welcome to
|
|
2
|
-
import
|
|
1
|
+
// welcome to hoo hoo hoo
|
|
2
|
+
import _Object$keys from '@babel/runtime-corejs3/core-js/object/keys';
|
|
3
|
+
import _Object$getOwnPropertySymbols from '@babel/runtime-corejs3/core-js/object/get-own-property-symbols';
|
|
4
|
+
import _filterInstanceProperty from '@babel/runtime-corejs3/core-js/instance/filter';
|
|
5
|
+
import _Object$getOwnPropertyDescriptor from '@babel/runtime-corejs3/core-js/object/get-own-property-descriptor';
|
|
6
|
+
import _forEachInstanceProperty from '@babel/runtime-corejs3/core-js/instance/for-each';
|
|
7
|
+
import _Object$getOwnPropertyDescriptors from '@babel/runtime-corejs3/core-js/object/get-own-property-descriptors';
|
|
8
|
+
import _Object$defineProperties from '@babel/runtime-corejs3/core-js/object/define-properties';
|
|
9
|
+
import _Object$defineProperty from '@babel/runtime-corejs3/core-js/object/define-property';
|
|
10
|
+
import _defineProperty from '@babel/runtime-corejs3/helpers/defineProperty';
|
|
3
11
|
import _objectWithoutProperties from '@babel/runtime-corejs3/helpers/objectWithoutProperties';
|
|
12
|
+
import { jsxs, jsx } from 'react/jsx-runtime';
|
|
4
13
|
import { Space, Switch } from 'antd';
|
|
5
|
-
import
|
|
6
|
-
import {
|
|
14
|
+
import { useMemo } from 'react';
|
|
15
|
+
import { useMatchConfigProps } from '../hooks/index.js';
|
|
7
16
|
|
|
8
|
-
var _excluded = ["value", "onChange", "
|
|
17
|
+
var _excluded = ["value", "onChange", "valueMap", "children", "unCheckedChildren", "checkedChildren", "beforeText"];
|
|
18
|
+
function ownKeys(object, enumerableOnly) { var keys = _Object$keys(object); if (_Object$getOwnPropertySymbols) { var symbols = _Object$getOwnPropertySymbols(object); enumerableOnly && (symbols = _filterInstanceProperty(symbols).call(symbols, function (sym) { return _Object$getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
19
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var _context, _context2; var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? _forEachInstanceProperty(_context = ownKeys(Object(source), !0)).call(_context, function (key) { _defineProperty(target, key, source[key]); }) : _Object$getOwnPropertyDescriptors ? _Object$defineProperties(target, _Object$getOwnPropertyDescriptors(source)) : _forEachInstanceProperty(_context2 = ownKeys(Object(source))).call(_context2, function (key) { _Object$defineProperty(target, key, _Object$getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
9
20
|
var Index = function Index(_ref) {
|
|
10
21
|
var value = _ref.value,
|
|
11
22
|
onChange = _ref.onChange,
|
|
12
|
-
|
|
13
|
-
valueCheckMap = _ref$valueCheckMap === void 0 ? baseConfig.defaultValueSwitchMap : _ref$valueCheckMap,
|
|
23
|
+
propsValueSwitchMap = _ref.valueMap,
|
|
14
24
|
children = _ref.children,
|
|
15
25
|
_ref$unCheckedChildre = _ref.unCheckedChildren,
|
|
16
26
|
unCheckedChildren = _ref$unCheckedChildre === void 0 ? "关闭" : _ref$unCheckedChildre,
|
|
@@ -18,24 +28,33 @@ var Index = function Index(_ref) {
|
|
|
18
28
|
checkedChildren = _ref$checkedChildren === void 0 ? "开启" : _ref$checkedChildren,
|
|
19
29
|
beforeText = _ref.beforeText,
|
|
20
30
|
props = _objectWithoutProperties(_ref, _excluded);
|
|
31
|
+
var _useMatchConfigProps = useMatchConfigProps({
|
|
32
|
+
valueSwitchMap: propsValueSwitchMap
|
|
33
|
+
}),
|
|
34
|
+
_useMatchConfigProps$ = _useMatchConfigProps.valueSwitchMap,
|
|
35
|
+
valueSwitchMap = _useMatchConfigProps$ === void 0 ? {} : _useMatchConfigProps$;
|
|
21
36
|
var swChecked = useMemo(function () {
|
|
22
|
-
var
|
|
23
|
-
return value ===
|
|
37
|
+
var open = valueSwitchMap.open;
|
|
38
|
+
return value === open;
|
|
24
39
|
}, [value]);
|
|
25
40
|
var change = function change(checked) {
|
|
26
|
-
var subVal =
|
|
41
|
+
var subVal = valueSwitchMap.close;
|
|
27
42
|
if (checked) {
|
|
28
|
-
subVal =
|
|
43
|
+
subVal = valueSwitchMap.open;
|
|
29
44
|
}
|
|
30
45
|
onChange === null || onChange === void 0 ? void 0 : onChange(subVal);
|
|
31
46
|
};
|
|
32
|
-
return
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
47
|
+
return jsxs(Space, {
|
|
48
|
+
children: [beforeText, jsx(Switch, _objectSpread({
|
|
49
|
+
checked: swChecked,
|
|
50
|
+
checkedChildren: checkedChildren,
|
|
51
|
+
unCheckedChildren: unCheckedChildren,
|
|
52
|
+
onChange: change
|
|
53
|
+
}, props)), jsx("span", {
|
|
54
|
+
children: children
|
|
55
|
+
})]
|
|
56
|
+
});
|
|
38
57
|
};
|
|
39
58
|
|
|
40
59
|
export { Index as default };
|
|
41
|
-
// powered by
|
|
60
|
+
// powered by hdj
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import type { HItemProps } from "../Form/modal";
|
|
3
|
+
declare const _default: {
|
|
4
|
+
Component: React.ForwardRefExoticComponent<import("../Form/modal").HFormItemProps & React.RefAttributes<any>>;
|
|
5
|
+
placeholder: ({ label }: HItemProps) => string[];
|
|
6
|
+
requiredErrMsg: ({ label }: HItemProps) => string;
|
|
7
|
+
};
|
|
8
|
+
export default _default;
|
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
// welcome to hoo hoo hoo
|
|
2
|
+
import _Object$getOwnPropertySymbols from '@babel/runtime-corejs3/core-js/object/get-own-property-symbols';
|
|
3
|
+
import _filterInstanceProperty from '@babel/runtime-corejs3/core-js/instance/filter';
|
|
4
|
+
import _Object$getOwnPropertyDescriptor from '@babel/runtime-corejs3/core-js/object/get-own-property-descriptor';
|
|
5
|
+
import _Object$getOwnPropertyDescriptors from '@babel/runtime-corejs3/core-js/object/get-own-property-descriptors';
|
|
6
|
+
import _Object$defineProperties from '@babel/runtime-corejs3/core-js/object/define-properties';
|
|
7
|
+
import _Object$defineProperty from '@babel/runtime-corejs3/core-js/object/define-property';
|
|
8
|
+
import _defineProperty from '@babel/runtime-corejs3/helpers/defineProperty';
|
|
9
|
+
import _objectWithoutProperties from '@babel/runtime-corejs3/helpers/objectWithoutProperties';
|
|
10
|
+
import _forEachInstanceProperty from '@babel/runtime-corejs3/core-js/instance/for-each';
|
|
11
|
+
import _Object$values from '@babel/runtime-corejs3/core-js/object/values';
|
|
12
|
+
import _Object$keys from '@babel/runtime-corejs3/core-js/object/keys';
|
|
13
|
+
import _mapInstanceProperty from '@babel/runtime-corejs3/core-js/instance/map';
|
|
14
|
+
import { jsx } from 'react/jsx-runtime';
|
|
15
|
+
import { DatePicker } from 'antd';
|
|
16
|
+
import { useGetTimeKey, useRangeValueProvider, useRangePickerTimeVal } from './hooks.js';
|
|
17
|
+
import { useMemo } from 'react';
|
|
18
|
+
import { useMatchConfigProps } from '../hooks/index.js';
|
|
19
|
+
import HFormConnect from '../Form/HFormConnect.js';
|
|
20
|
+
|
|
21
|
+
var _excluded = ["value", "onChange", "showTime", "format", "valueMap", "ranges", "name", "addFormat", "disabledDate"];
|
|
22
|
+
function ownKeys(object, enumerableOnly) { var keys = _Object$keys(object); if (_Object$getOwnPropertySymbols) { var symbols = _Object$getOwnPropertySymbols(object); enumerableOnly && (symbols = _filterInstanceProperty(symbols).call(symbols, function (sym) { return _Object$getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
23
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var _context2, _context3; var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? _forEachInstanceProperty(_context2 = ownKeys(Object(source), !0)).call(_context2, function (key) { _defineProperty(target, key, source[key]); }) : _Object$getOwnPropertyDescriptors ? _Object$defineProperties(target, _Object$getOwnPropertyDescriptors(source)) : _forEachInstanceProperty(_context3 = ownKeys(Object(source))).call(_context3, function (key) { _Object$defineProperty(target, key, _Object$getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
24
|
+
var RangePicker = DatePicker.RangePicker;
|
|
25
|
+
var HRangePicker = function HRangePicker(_ref) {
|
|
26
|
+
var value = _ref.value,
|
|
27
|
+
onChange = _ref.onChange,
|
|
28
|
+
_ref$showTime = _ref.showTime,
|
|
29
|
+
showTime = _ref$showTime === void 0 ? true : _ref$showTime,
|
|
30
|
+
_ref$format = _ref.format,
|
|
31
|
+
format = _ref$format === void 0 ? "X" : _ref$format,
|
|
32
|
+
valueMap = _ref.valueMap,
|
|
33
|
+
_ref$ranges = _ref.ranges,
|
|
34
|
+
ranges = _ref$ranges === void 0 ? true : _ref$ranges,
|
|
35
|
+
name = _ref.name,
|
|
36
|
+
addFormat = _ref.addFormat,
|
|
37
|
+
_disabledDate = _ref.disabledDate,
|
|
38
|
+
props = _objectWithoutProperties(_ref, _excluded);
|
|
39
|
+
var _useMatchConfigProps = useMatchConfigProps({
|
|
40
|
+
valueRangePickerValueMap: valueMap,
|
|
41
|
+
dateRanges: undefined
|
|
42
|
+
}),
|
|
43
|
+
_useMatchConfigProps$ = _useMatchConfigProps.valueRangePickerValueMap,
|
|
44
|
+
valueRangePickerValueMap = _useMatchConfigProps$ === void 0 ? {} : _useMatchConfigProps$,
|
|
45
|
+
dateRanges = _useMatchConfigProps.dateRanges;
|
|
46
|
+
var dateMapKeys = useGetTimeKey({
|
|
47
|
+
valueMap: valueRangePickerValueMap,
|
|
48
|
+
name: name
|
|
49
|
+
});
|
|
50
|
+
var paramsProvider = useRangeValueProvider({
|
|
51
|
+
valueMap: dateMapKeys
|
|
52
|
+
});
|
|
53
|
+
var timeVal = useRangePickerTimeVal({
|
|
54
|
+
value: value,
|
|
55
|
+
format: format,
|
|
56
|
+
valueMap: dateMapKeys
|
|
57
|
+
});
|
|
58
|
+
var defaultRanges = useMemo(function () {
|
|
59
|
+
if (!ranges) {
|
|
60
|
+
return null;
|
|
61
|
+
}
|
|
62
|
+
if (ranges === true) {
|
|
63
|
+
return dateRanges;
|
|
64
|
+
}
|
|
65
|
+
return ranges;
|
|
66
|
+
}, [ranges]);
|
|
67
|
+
addFormat === null || addFormat === void 0 ? void 0 : addFormat({
|
|
68
|
+
"float": {
|
|
69
|
+
inputValue: function inputValue(item, initValue) {
|
|
70
|
+
var _context;
|
|
71
|
+
var _item$name = item.name,
|
|
72
|
+
valueName = _item$name === void 0 ? "" : _item$name;
|
|
73
|
+
var resultObj = {};
|
|
74
|
+
_forEachInstanceProperty(_context = _Object$values(dateMapKeys)).call(_context, function (key) {
|
|
75
|
+
if (initValue[key]) {
|
|
76
|
+
resultObj[key] = initValue[key];
|
|
77
|
+
}
|
|
78
|
+
});
|
|
79
|
+
var hasKeys = _Object$keys(resultObj).length !== 0;
|
|
80
|
+
return _defineProperty({}, valueName, hasKeys ? resultObj : null);
|
|
81
|
+
},
|
|
82
|
+
outputValue: function outputValue(item, _outputValue) {
|
|
83
|
+
var _item$name2 = item.name,
|
|
84
|
+
valueName = _item$name2 === void 0 ? "" : _item$name2;
|
|
85
|
+
var _outputValue$valueNam = _outputValue[valueName],
|
|
86
|
+
itemVal = _outputValue$valueNam === void 0 ? {} : _outputValue$valueNam;
|
|
87
|
+
return _objectSpread({}, itemVal);
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
});
|
|
91
|
+
var change = function change(val) {
|
|
92
|
+
if (!format || !val) {
|
|
93
|
+
onChange === null || onChange === void 0 ? void 0 : onChange(val);
|
|
94
|
+
return;
|
|
95
|
+
}
|
|
96
|
+
var subVal = _mapInstanceProperty(val).call(val, function (item) {
|
|
97
|
+
return (item === null || item === void 0 ? void 0 : item.format(format)) || null;
|
|
98
|
+
});
|
|
99
|
+
onChange === null || onChange === void 0 ? void 0 : onChange(paramsProvider(subVal));
|
|
100
|
+
};
|
|
101
|
+
return jsx(RangePicker, _objectSpread({
|
|
102
|
+
value: timeVal,
|
|
103
|
+
onChange: change,
|
|
104
|
+
showTime: showTime,
|
|
105
|
+
onCalendarChange: change,
|
|
106
|
+
ranges: defaultRanges,
|
|
107
|
+
disabledDate: function disabledDate(currentDate) {
|
|
108
|
+
return !!(_disabledDate !== null && _disabledDate !== void 0 && _disabledDate(currentDate, timeVal));
|
|
109
|
+
}
|
|
110
|
+
}, props));
|
|
111
|
+
};
|
|
112
|
+
var Index = HFormConnect(HRangePicker);
|
|
113
|
+
var HRangePicker$1 = {
|
|
114
|
+
Component: Index,
|
|
115
|
+
placeholder: function placeholder(_ref3) {
|
|
116
|
+
var label = _ref3.label;
|
|
117
|
+
return ["\u8BF7\u9009\u62E9\u5F00\u59CB".concat(label), "\u8BF7\u9009\u62E9\u7ED3\u675F".concat(label)];
|
|
118
|
+
},
|
|
119
|
+
requiredErrMsg: function requiredErrMsg(_ref4) {
|
|
120
|
+
var label = _ref4.label;
|
|
121
|
+
return "\u8BF7\u9009\u62E9".concat(label);
|
|
122
|
+
}
|
|
123
|
+
};
|
|
124
|
+
|
|
125
|
+
export { HRangePicker$1 as default };
|
|
126
|
+
// powered by hdj
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
// welcome to hoo hoo hoo
|
|
2
|
+
import _Object$keys from '@babel/runtime-corejs3/core-js/object/keys';
|
|
3
|
+
import _Object$getOwnPropertySymbols from '@babel/runtime-corejs3/core-js/object/get-own-property-symbols';
|
|
4
|
+
import _filterInstanceProperty from '@babel/runtime-corejs3/core-js/instance/filter';
|
|
5
|
+
import _Object$getOwnPropertyDescriptor from '@babel/runtime-corejs3/core-js/object/get-own-property-descriptor';
|
|
6
|
+
import _forEachInstanceProperty from '@babel/runtime-corejs3/core-js/instance/for-each';
|
|
7
|
+
import _Object$getOwnPropertyDescriptors from '@babel/runtime-corejs3/core-js/object/get-own-property-descriptors';
|
|
8
|
+
import _Object$defineProperties from '@babel/runtime-corejs3/core-js/object/define-properties';
|
|
9
|
+
import _Object$defineProperty from '@babel/runtime-corejs3/core-js/object/define-property';
|
|
10
|
+
import _defineProperty from '@babel/runtime-corejs3/helpers/defineProperty';
|
|
11
|
+
import _objectWithoutProperties from '@babel/runtime-corejs3/helpers/objectWithoutProperties';
|
|
12
|
+
import { jsx } from 'react/jsx-runtime';
|
|
13
|
+
import { TimePicker } from 'antd';
|
|
14
|
+
import { useTimePickerValue, useTimePickerChange } from './hooks.js';
|
|
15
|
+
|
|
16
|
+
var _excluded = ["value", "format", "onChange", "disabledDate"];
|
|
17
|
+
function ownKeys(object, enumerableOnly) { var keys = _Object$keys(object); if (_Object$getOwnPropertySymbols) { var symbols = _Object$getOwnPropertySymbols(object); enumerableOnly && (symbols = _filterInstanceProperty(symbols).call(symbols, function (sym) { return _Object$getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
18
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var _context, _context2; var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? _forEachInstanceProperty(_context = ownKeys(Object(source), !0)).call(_context, function (key) { _defineProperty(target, key, source[key]); }) : _Object$getOwnPropertyDescriptors ? _Object$defineProperties(target, _Object$getOwnPropertyDescriptors(source)) : _forEachInstanceProperty(_context2 = ownKeys(Object(source))).call(_context2, function (key) { _Object$defineProperty(target, key, _Object$getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
19
|
+
var HTimePicker = (function (_ref) {
|
|
20
|
+
var value = _ref.value,
|
|
21
|
+
_ref$format = _ref.format,
|
|
22
|
+
format = _ref$format === void 0 ? "X" : _ref$format,
|
|
23
|
+
onChange = _ref.onChange,
|
|
24
|
+
_disabledDate = _ref.disabledDate,
|
|
25
|
+
props = _objectWithoutProperties(_ref, _excluded);
|
|
26
|
+
var timeVal = useTimePickerValue({
|
|
27
|
+
value: value,
|
|
28
|
+
format: format
|
|
29
|
+
});
|
|
30
|
+
var change = useTimePickerChange({
|
|
31
|
+
value: value,
|
|
32
|
+
format: format,
|
|
33
|
+
onChange: onChange
|
|
34
|
+
});
|
|
35
|
+
return jsx(TimePicker, _objectSpread({
|
|
36
|
+
value: timeVal,
|
|
37
|
+
onChange: change,
|
|
38
|
+
disabledDate: function disabledDate(currentDate) {
|
|
39
|
+
return !!(_disabledDate !== null && _disabledDate !== void 0 && _disabledDate(currentDate, timeVal));
|
|
40
|
+
}
|
|
41
|
+
}, props));
|
|
42
|
+
});
|
|
43
|
+
|
|
44
|
+
export { HTimePicker as default };
|
|
45
|
+
// powered by hdj
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import type { Moment, DurationInputArg2 } from "moment";
|
|
2
|
+
import type { HRangePickerProps } from "./modal";
|
|
3
|
+
import type { DateRangePickerValueMapModal } from "../modal";
|
|
4
|
+
interface UseTimeValParams {
|
|
5
|
+
value?: any | [any, any];
|
|
6
|
+
format?: string;
|
|
7
|
+
valueMap?: DateRangePickerValueMapModal;
|
|
8
|
+
}
|
|
9
|
+
interface UseTimePickerValParams {
|
|
10
|
+
value?: any;
|
|
11
|
+
format?: string | DurationInputArg2;
|
|
12
|
+
}
|
|
13
|
+
interface UseTimeChangeParams {
|
|
14
|
+
format?: string;
|
|
15
|
+
onChange?: (time?: Moment | string | number) => void;
|
|
16
|
+
value?: any;
|
|
17
|
+
}
|
|
18
|
+
export declare const useTimeVal: ({ value, format }: UseTimeValParams) => any;
|
|
19
|
+
export declare const useGetTimeKey: ({ valueMap, name, }: HRangePickerProps) => {
|
|
20
|
+
start?: undefined;
|
|
21
|
+
end?: undefined;
|
|
22
|
+
} | {
|
|
23
|
+
start: string;
|
|
24
|
+
end: string;
|
|
25
|
+
};
|
|
26
|
+
export declare const useTimeChange: ({ format, onChange }: UseTimeChangeParams) => (value: any) => void;
|
|
27
|
+
export declare const useTimePickerValue: ({ value, format, }: UseTimePickerValParams) => any;
|
|
28
|
+
export declare const useTimePickerChange: ({ value, format, onChange, }: UseTimeChangeParams) => (val: any) => void;
|
|
29
|
+
export declare const useRangeValueProvider: ({ valueMap }: HRangePickerProps) => (val: any[]) => any[] | {
|
|
30
|
+
[x: string]: any;
|
|
31
|
+
};
|
|
32
|
+
export declare const useRangePickerTimeVal: ({ value, format, valueMap, }: UseTimeValParams) => any;
|
|
33
|
+
export {};
|
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
// welcome to hoo hoo hoo
|
|
2
|
+
import _defineProperty from '@babel/runtime-corejs3/helpers/defineProperty';
|
|
3
|
+
import _Array$isArray from '@babel/runtime-corejs3/core-js/array/is-array';
|
|
4
|
+
import _mapInstanceProperty from '@babel/runtime-corejs3/core-js/instance/map';
|
|
5
|
+
import { useMemo, useCallback } from 'react';
|
|
6
|
+
import moment from 'moment';
|
|
7
|
+
|
|
8
|
+
var useTimeVal = function useTimeVal(_ref) {
|
|
9
|
+
var value = _ref.value,
|
|
10
|
+
format = _ref.format;
|
|
11
|
+
return useMemo(function () {
|
|
12
|
+
if (!value || !format) {
|
|
13
|
+
return value;
|
|
14
|
+
}
|
|
15
|
+
return moment(value, format);
|
|
16
|
+
}, [value, format]);
|
|
17
|
+
};
|
|
18
|
+
var useGetTimeKey = function useGetTimeKey(_ref2) {
|
|
19
|
+
var _ref2$valueMap = _ref2.valueMap,
|
|
20
|
+
valueMap = _ref2$valueMap === void 0 ? {} : _ref2$valueMap,
|
|
21
|
+
_ref2$name = _ref2.name,
|
|
22
|
+
name = _ref2$name === void 0 ? "" : _ref2$name;
|
|
23
|
+
var start = valueMap.start,
|
|
24
|
+
end = valueMap.end;
|
|
25
|
+
if (!start || !end) {
|
|
26
|
+
return {};
|
|
27
|
+
}
|
|
28
|
+
var startKey = typeof start === "string" ? start : start(name);
|
|
29
|
+
var endKey = typeof end === "string" ? end : end(name);
|
|
30
|
+
return {
|
|
31
|
+
start: startKey,
|
|
32
|
+
end: endKey
|
|
33
|
+
};
|
|
34
|
+
};
|
|
35
|
+
var useTimeChange = function useTimeChange(_ref3) {
|
|
36
|
+
var format = _ref3.format,
|
|
37
|
+
onChange = _ref3.onChange;
|
|
38
|
+
return useCallback(function (value) {
|
|
39
|
+
if (!format) {
|
|
40
|
+
onChange === null || onChange === void 0 ? void 0 : onChange(value);
|
|
41
|
+
return;
|
|
42
|
+
}
|
|
43
|
+
var subVal = value === null || value === void 0 ? void 0 : value.format(format);
|
|
44
|
+
onChange === null || onChange === void 0 ? void 0 : onChange(subVal);
|
|
45
|
+
}, [format, onChange]);
|
|
46
|
+
};
|
|
47
|
+
var formatMap = {
|
|
48
|
+
X: "s",
|
|
49
|
+
x: "ms"
|
|
50
|
+
};
|
|
51
|
+
var useTimePickerValue = function useTimePickerValue(_ref4) {
|
|
52
|
+
var value = _ref4.value,
|
|
53
|
+
format = _ref4.format;
|
|
54
|
+
return useMemo(function () {
|
|
55
|
+
if (!value || !format) {
|
|
56
|
+
return value;
|
|
57
|
+
}
|
|
58
|
+
if (formatMap[format]) {
|
|
59
|
+
var timeStr = moment().startOf("days").add(value, formatMap[format]).format("HH:mm:ss");
|
|
60
|
+
return moment(timeStr, "HH:mm:ss");
|
|
61
|
+
}
|
|
62
|
+
return moment(value, format);
|
|
63
|
+
}, [value, format]);
|
|
64
|
+
};
|
|
65
|
+
var useTimePickerChange = function useTimePickerChange(_ref5) {
|
|
66
|
+
var value = _ref5.value,
|
|
67
|
+
format = _ref5.format,
|
|
68
|
+
onChange = _ref5.onChange;
|
|
69
|
+
return useCallback(function (val) {
|
|
70
|
+
if (!format || !val) {
|
|
71
|
+
onChange === null || onChange === void 0 ? void 0 : onChange(val);
|
|
72
|
+
return;
|
|
73
|
+
}
|
|
74
|
+
if (formatMap[format]) {
|
|
75
|
+
var startTime = moment().startOf("days").format(format);
|
|
76
|
+
var nowTime = val.format(format);
|
|
77
|
+
onChange === null || onChange === void 0 ? void 0 : onChange(nowTime - startTime);
|
|
78
|
+
return;
|
|
79
|
+
}
|
|
80
|
+
var subVal = val === null || val === void 0 ? void 0 : val.format(format);
|
|
81
|
+
onChange === null || onChange === void 0 ? void 0 : onChange(subVal);
|
|
82
|
+
}, [format, onChange, value]);
|
|
83
|
+
};
|
|
84
|
+
var useRangeValueProvider = function useRangeValueProvider(_ref6) {
|
|
85
|
+
var _ref6$valueMap = _ref6.valueMap,
|
|
86
|
+
valueMap = _ref6$valueMap === void 0 ? {} : _ref6$valueMap;
|
|
87
|
+
return function (val) {
|
|
88
|
+
var _ref7;
|
|
89
|
+
var start = valueMap.start,
|
|
90
|
+
end = valueMap.end;
|
|
91
|
+
if (!start || !end) {
|
|
92
|
+
return val;
|
|
93
|
+
}
|
|
94
|
+
return _ref7 = {}, _defineProperty(_ref7, start, val[0]), _defineProperty(_ref7, end, val[1]), _ref7;
|
|
95
|
+
};
|
|
96
|
+
};
|
|
97
|
+
var useRangePickerTimeVal = function useRangePickerTimeVal(_ref8) {
|
|
98
|
+
var value = _ref8.value,
|
|
99
|
+
format = _ref8.format,
|
|
100
|
+
_ref8$valueMap = _ref8.valueMap,
|
|
101
|
+
valueMap = _ref8$valueMap === void 0 ? {} : _ref8$valueMap;
|
|
102
|
+
return useMemo(function () {
|
|
103
|
+
if (!value || !format) {
|
|
104
|
+
return value;
|
|
105
|
+
}
|
|
106
|
+
if (!_Array$isArray(value)) {
|
|
107
|
+
var start = valueMap.start,
|
|
108
|
+
end = valueMap.end;
|
|
109
|
+
if (!start || !end) {
|
|
110
|
+
console.error("日期value格式错误!");
|
|
111
|
+
return;
|
|
112
|
+
}
|
|
113
|
+
var startTime = value[start],
|
|
114
|
+
endTime = value[end];
|
|
115
|
+
if (!startTime && !endTime) {
|
|
116
|
+
return [];
|
|
117
|
+
}
|
|
118
|
+
var startMoment = startTime && moment(startTime, format);
|
|
119
|
+
var endMoment = endTime && moment(endTime, format);
|
|
120
|
+
return [startMoment, endMoment];
|
|
121
|
+
}
|
|
122
|
+
return _mapInstanceProperty(value).call(value, function (item) {
|
|
123
|
+
if (!item) {
|
|
124
|
+
return item;
|
|
125
|
+
}
|
|
126
|
+
return moment(item, format);
|
|
127
|
+
});
|
|
128
|
+
}, [value, format, valueMap]);
|
|
129
|
+
};
|
|
130
|
+
|
|
131
|
+
export { useGetTimeKey, useRangePickerTimeVal, useRangeValueProvider, useTimeChange, useTimePickerChange, useTimePickerValue, useTimeVal };
|
|
132
|
+
// powered by hdj
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
// welcome to hoo hoo hoo
|
|
2
|
+
import _Object$keys from '@babel/runtime-corejs3/core-js/object/keys';
|
|
3
|
+
import _Object$getOwnPropertySymbols from '@babel/runtime-corejs3/core-js/object/get-own-property-symbols';
|
|
4
|
+
import _filterInstanceProperty from '@babel/runtime-corejs3/core-js/instance/filter';
|
|
5
|
+
import _Object$getOwnPropertyDescriptor from '@babel/runtime-corejs3/core-js/object/get-own-property-descriptor';
|
|
6
|
+
import _forEachInstanceProperty from '@babel/runtime-corejs3/core-js/instance/for-each';
|
|
7
|
+
import _Object$getOwnPropertyDescriptors from '@babel/runtime-corejs3/core-js/object/get-own-property-descriptors';
|
|
8
|
+
import _Object$defineProperties from '@babel/runtime-corejs3/core-js/object/define-properties';
|
|
9
|
+
import _Object$defineProperty from '@babel/runtime-corejs3/core-js/object/define-property';
|
|
10
|
+
import _defineProperty from '@babel/runtime-corejs3/helpers/defineProperty';
|
|
11
|
+
import _objectWithoutProperties from '@babel/runtime-corejs3/helpers/objectWithoutProperties';
|
|
12
|
+
import { jsx } from 'react/jsx-runtime';
|
|
13
|
+
import { DatePicker } from 'antd';
|
|
14
|
+
import { useTimeVal, useTimeChange } from './hooks.js';
|
|
15
|
+
|
|
16
|
+
var _excluded = ["value", "onChange", "showTime", "format", "disabledDate"];
|
|
17
|
+
function ownKeys(object, enumerableOnly) { var keys = _Object$keys(object); if (_Object$getOwnPropertySymbols) { var symbols = _Object$getOwnPropertySymbols(object); enumerableOnly && (symbols = _filterInstanceProperty(symbols).call(symbols, function (sym) { return _Object$getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
18
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var _context, _context2; var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? _forEachInstanceProperty(_context = ownKeys(Object(source), !0)).call(_context, function (key) { _defineProperty(target, key, source[key]); }) : _Object$getOwnPropertyDescriptors ? _Object$defineProperties(target, _Object$getOwnPropertyDescriptors(source)) : _forEachInstanceProperty(_context2 = ownKeys(Object(source))).call(_context2, function (key) { _Object$defineProperty(target, key, _Object$getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
19
|
+
var Picker = DatePicker;
|
|
20
|
+
var Index = function Index(_ref) {
|
|
21
|
+
var value = _ref.value,
|
|
22
|
+
onChange = _ref.onChange,
|
|
23
|
+
_ref$showTime = _ref.showTime,
|
|
24
|
+
showTime = _ref$showTime === void 0 ? true : _ref$showTime,
|
|
25
|
+
_ref$format = _ref.format,
|
|
26
|
+
format = _ref$format === void 0 ? "X" : _ref$format,
|
|
27
|
+
_disabledDate = _ref.disabledDate,
|
|
28
|
+
props = _objectWithoutProperties(_ref, _excluded);
|
|
29
|
+
var timeVal = useTimeVal({
|
|
30
|
+
value: value,
|
|
31
|
+
format: format
|
|
32
|
+
});
|
|
33
|
+
var change = useTimeChange({
|
|
34
|
+
format: format,
|
|
35
|
+
onChange: onChange
|
|
36
|
+
});
|
|
37
|
+
return jsx(Picker, _objectSpread({
|
|
38
|
+
value: timeVal,
|
|
39
|
+
onChange: change,
|
|
40
|
+
showTime: showTime,
|
|
41
|
+
disabledDate: function disabledDate(currentDate) {
|
|
42
|
+
return !!(_disabledDate !== null && _disabledDate !== void 0 && _disabledDate(currentDate, timeVal));
|
|
43
|
+
}
|
|
44
|
+
}, props));
|
|
45
|
+
};
|
|
46
|
+
|
|
47
|
+
export { Index as default };
|
|
48
|
+
// powered by hdj
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import type { RangePickerProps } from "antd/es/date-picker";
|
|
2
|
+
import type { SharedTimeProps } from "rc-picker/lib/panels/TimePanel";
|
|
3
|
+
import type { Moment } from "moment";
|
|
4
|
+
import type { DatePickerProps } from "antd";
|
|
5
|
+
import type { TimePickerProps } from "antd";
|
|
6
|
+
import type { DurationInputArg2 } from "moment";
|
|
7
|
+
import type { DateRangePickerValueMapModal } from "../modal";
|
|
8
|
+
import type { addFormatItemModal } from "@/components/Form/modal";
|
|
9
|
+
interface DisabledDateFnModal<T = Moment | undefined> {
|
|
10
|
+
(currentDate: Moment, value: T): boolean;
|
|
11
|
+
}
|
|
12
|
+
export interface HDatePickerProps extends Omit<DatePickerProps, "onChange" | "format" | "ranges" | "disabledDate"> {
|
|
13
|
+
onChange?: (time?: Moment | string | number) => void;
|
|
14
|
+
format?: string;
|
|
15
|
+
showTime?: boolean | SharedTimeProps<Moment>;
|
|
16
|
+
disabledDate?: DisabledDateFnModal;
|
|
17
|
+
}
|
|
18
|
+
export interface HRangePickerProps extends Omit<RangePickerProps, "onChange" | "format" | "ranges" | "value" | "disabledDate"> {
|
|
19
|
+
value?: [any, any] | Record<string, any>;
|
|
20
|
+
onChange?: (val: any) => void;
|
|
21
|
+
showTime?: boolean | {
|
|
22
|
+
defaultValue?: Moment[];
|
|
23
|
+
};
|
|
24
|
+
format?: string;
|
|
25
|
+
valueMap?: DateRangePickerValueMapModal;
|
|
26
|
+
ranges?: RangePickerProps["ranges"] | boolean;
|
|
27
|
+
addFormat?: (config: Record<string, addFormatItemModal>) => void;
|
|
28
|
+
disabledDate?: DisabledDateFnModal<Moment[] | undefined>;
|
|
29
|
+
}
|
|
30
|
+
export interface HTimePickerProps extends Omit<TimePickerProps, "onChange" | "format" | "ranges" | "disabledDate"> {
|
|
31
|
+
onChange?: (time?: Moment | string | number) => void;
|
|
32
|
+
format?: DurationInputArg2 | string;
|
|
33
|
+
disabledDate?: DisabledDateFnModal;
|
|
34
|
+
}
|
|
35
|
+
export {};
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
// welcome to hoo hoo hoo
|
|
2
|
+
import _Object$keys from '@babel/runtime-corejs3/core-js/object/keys';
|
|
3
|
+
import _Object$getOwnPropertySymbols from '@babel/runtime-corejs3/core-js/object/get-own-property-symbols';
|
|
4
|
+
import _filterInstanceProperty from '@babel/runtime-corejs3/core-js/instance/filter';
|
|
5
|
+
import _Object$getOwnPropertyDescriptor from '@babel/runtime-corejs3/core-js/object/get-own-property-descriptor';
|
|
6
|
+
import _forEachInstanceProperty from '@babel/runtime-corejs3/core-js/instance/for-each';
|
|
7
|
+
import _Object$getOwnPropertyDescriptors from '@babel/runtime-corejs3/core-js/object/get-own-property-descriptors';
|
|
8
|
+
import _Object$defineProperties from '@babel/runtime-corejs3/core-js/object/define-properties';
|
|
9
|
+
import _Object$defineProperty from '@babel/runtime-corejs3/core-js/object/define-property';
|
|
10
|
+
import _defineProperty from '@babel/runtime-corejs3/helpers/defineProperty';
|
|
11
|
+
import _objectWithoutProperties from '@babel/runtime-corejs3/helpers/objectWithoutProperties';
|
|
12
|
+
import { jsx } from 'react/jsx-runtime';
|
|
13
|
+
import { Input } from 'antd';
|
|
14
|
+
|
|
15
|
+
var _excluded = ["autoSize"];
|
|
16
|
+
function ownKeys(object, enumerableOnly) { var keys = _Object$keys(object); if (_Object$getOwnPropertySymbols) { var symbols = _Object$getOwnPropertySymbols(object); enumerableOnly && (symbols = _filterInstanceProperty(symbols).call(symbols, function (sym) { return _Object$getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
17
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var _context, _context2; var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? _forEachInstanceProperty(_context = ownKeys(Object(source), !0)).call(_context, function (key) { _defineProperty(target, key, source[key]); }) : _Object$getOwnPropertyDescriptors ? _Object$defineProperties(target, _Object$getOwnPropertyDescriptors(source)) : _forEachInstanceProperty(_context2 = ownKeys(Object(source))).call(_context2, function (key) { _Object$defineProperty(target, key, _Object$getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
18
|
+
var TextArea = (function (_ref) {
|
|
19
|
+
var _ref$autoSize = _ref.autoSize,
|
|
20
|
+
autoSize = _ref$autoSize === void 0 ? {
|
|
21
|
+
minRows: 4,
|
|
22
|
+
maxRows: 4
|
|
23
|
+
} : _ref$autoSize,
|
|
24
|
+
props = _objectWithoutProperties(_ref, _excluded);
|
|
25
|
+
return jsx(Input.TextArea, _objectSpread({
|
|
26
|
+
autoSize: autoSize
|
|
27
|
+
}, props));
|
|
28
|
+
});
|
|
29
|
+
|
|
30
|
+
export { TextArea as default };
|
|
31
|
+
// powered by hdj
|
package/es/Upload/Btn.js
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
// welcome to hoo hoo hoo
|
|
2
|
+
import { jsxs, jsx } from 'react/jsx-runtime';
|
|
3
|
+
import { PlusOutlined, UploadOutlined } from '@ant-design/icons';
|
|
4
|
+
import { useMemo } from 'react';
|
|
5
|
+
import { Button } from 'antd';
|
|
6
|
+
|
|
7
|
+
var Btn = (function (_ref) {
|
|
8
|
+
var value = _ref.value,
|
|
9
|
+
_ref$maxCount = _ref.maxCount,
|
|
10
|
+
maxCount = _ref$maxCount === void 0 ? 1 : _ref$maxCount,
|
|
11
|
+
listType = _ref.listType;
|
|
12
|
+
var len = (value === null || value === void 0 ? void 0 : value.length) || 0;
|
|
13
|
+
var text = useMemo(function () {
|
|
14
|
+
if (len === maxCount) {
|
|
15
|
+
return "更新";
|
|
16
|
+
}
|
|
17
|
+
return "上传";
|
|
18
|
+
}, [len, maxCount]);
|
|
19
|
+
if (listType === "picture-card") {
|
|
20
|
+
return jsxs("div", {
|
|
21
|
+
children: [jsx(PlusOutlined, {}), jsx("div", {
|
|
22
|
+
style: {
|
|
23
|
+
marginTop: 8
|
|
24
|
+
},
|
|
25
|
+
children: text
|
|
26
|
+
})]
|
|
27
|
+
});
|
|
28
|
+
}
|
|
29
|
+
return jsx(Button, {
|
|
30
|
+
icon: jsx(UploadOutlined, {}),
|
|
31
|
+
children: text
|
|
32
|
+
});
|
|
33
|
+
});
|
|
34
|
+
|
|
35
|
+
export { Btn as default };
|
|
36
|
+
// powered by hdj
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { MediaTypeEnum } from "../enums";
|
|
2
|
+
interface TypeEleProps {
|
|
3
|
+
mediaType?: MediaTypeEnum;
|
|
4
|
+
url?: string;
|
|
5
|
+
onReady?: VoidFunction;
|
|
6
|
+
onError?: VoidFunction;
|
|
7
|
+
}
|
|
8
|
+
declare const _default: ({ mediaType, url, onReady, onError }: TypeEleProps) => JSX.Element;
|
|
9
|
+
export default _default;
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
// welcome to hoo hoo hoo
|
|
2
|
+
import { jsx } from 'react/jsx-runtime';
|
|
3
|
+
import { MediaTypeEnum } from '../enums.js';
|
|
4
|
+
|
|
5
|
+
var TypeEle = (function (_ref) {
|
|
6
|
+
var mediaType = _ref.mediaType,
|
|
7
|
+
url = _ref.url,
|
|
8
|
+
onReady = _ref.onReady,
|
|
9
|
+
onError = _ref.onError;
|
|
10
|
+
if (mediaType === MediaTypeEnum.video) {
|
|
11
|
+
return jsx("video", {
|
|
12
|
+
autoPlay: true,
|
|
13
|
+
width: "100%",
|
|
14
|
+
controls: true,
|
|
15
|
+
onPlay: onReady,
|
|
16
|
+
onError: onError,
|
|
17
|
+
children: jsx("source", {
|
|
18
|
+
src: url
|
|
19
|
+
})
|
|
20
|
+
});
|
|
21
|
+
}
|
|
22
|
+
if (mediaType === MediaTypeEnum.audio) {
|
|
23
|
+
return jsx("audio", {
|
|
24
|
+
autoPlay: true,
|
|
25
|
+
controls: true,
|
|
26
|
+
onPlay: onReady,
|
|
27
|
+
onError: onError,
|
|
28
|
+
children: jsx("source", {
|
|
29
|
+
src: url
|
|
30
|
+
})
|
|
31
|
+
});
|
|
32
|
+
}
|
|
33
|
+
return jsx("img", {
|
|
34
|
+
src: url,
|
|
35
|
+
width: "100%",
|
|
36
|
+
onLoad: onReady,
|
|
37
|
+
onError: onError
|
|
38
|
+
});
|
|
39
|
+
});
|
|
40
|
+
|
|
41
|
+
export { TypeEle as default };
|
|
42
|
+
// powered by hdj
|