@hw-component/form 0.0.5-beta-v4 → 0.0.5-beta-v6

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.
Files changed (91) hide show
  1. package/es/CheckboxGroup/hooks.js +9 -2
  2. package/es/CheckboxGroup/index.js +10 -1
  3. package/es/DialogForm/DrawerForm/index.js +11 -4
  4. package/es/DialogForm/ModalForm.js +11 -4
  5. package/es/DialogForm/hooks.js +11 -4
  6. package/es/Form/Context/FormConfigProvider.js +9 -2
  7. package/es/Form/FormItem/BasicItem.js +9 -2
  8. package/es/Form/FormItem/RegularFormItem.js +8 -1
  9. package/es/Form/FormItem/UpFormItem.js +9 -2
  10. package/es/Form/FormItem/index.js +8 -1
  11. package/es/Form/HFormConnect.js +9 -1
  12. package/es/Form/hooks/index.js +10 -3
  13. package/es/Form/hooks/useDefaultRender.js +9 -2
  14. package/es/Form/hooks/useHForm.js +15 -3
  15. package/es/Form/hooks/useInitConfigData.js +11 -2
  16. package/es/Form/index.js +10 -2
  17. package/es/Input/ButtonInput.js +11 -4
  18. package/es/Input/ColorInput/index.js +29 -5
  19. package/es/Input/InputNumber.js +9 -2
  20. package/es/Input/SelectInput.js +11 -2
  21. package/es/Input/index.js +10 -2
  22. package/es/RadioGroup/index.js +11 -3
  23. package/es/Select/components/AllSelect.js +1 -0
  24. package/es/Select/defaultConfig.js +1 -0
  25. package/es/Select/hooks/changeHooks.js +12 -3
  26. package/es/Select/hooks/norHooks.js +7 -3
  27. package/es/Select/index.js +10 -2
  28. package/es/Select/utils.js +10 -2
  29. package/es/Submit/index.js +9 -2
  30. package/es/Switch/index.js +9 -2
  31. package/es/TDPicker/RangePicker.js +12 -2
  32. package/es/TDPicker/TimePicker.js +9 -2
  33. package/es/TDPicker/hooks.js +3 -1
  34. package/es/TDPicker/index.js +9 -2
  35. package/es/TextArea/index.js +9 -2
  36. package/es/Upload/UrlUpload/index.js +17 -4
  37. package/es/Upload/hooks/change.js +10 -3
  38. package/es/Upload/hooks/customRequest.js +11 -3
  39. package/es/Upload/hooks/propsMaker.js +8 -1
  40. package/es/Upload/index.js +13 -3
  41. package/es/Upload/util.js +4 -0
  42. package/es/config.d.ts +4 -0
  43. package/es/config.js +2 -2
  44. package/es/hooks/index.js +17 -3
  45. package/lib/CheckboxGroup/hooks.js +9 -2
  46. package/lib/CheckboxGroup/index.js +10 -1
  47. package/lib/DialogForm/DrawerForm/index.js +11 -4
  48. package/lib/DialogForm/ModalForm.js +11 -4
  49. package/lib/DialogForm/hooks.js +11 -4
  50. package/lib/Form/Context/FormConfigProvider.js +9 -2
  51. package/lib/Form/FormItem/BasicItem.js +9 -2
  52. package/lib/Form/FormItem/RegularFormItem.js +8 -1
  53. package/lib/Form/FormItem/UpFormItem.js +9 -2
  54. package/lib/Form/FormItem/index.js +8 -1
  55. package/lib/Form/HFormConnect.js +9 -1
  56. package/lib/Form/hooks/index.js +10 -3
  57. package/lib/Form/hooks/useDefaultRender.js +9 -2
  58. package/lib/Form/hooks/useHForm.js +15 -3
  59. package/lib/Form/hooks/useInitConfigData.js +11 -2
  60. package/lib/Form/index.js +10 -2
  61. package/lib/Input/ButtonInput.js +11 -4
  62. package/lib/Input/ColorInput/index.js +29 -5
  63. package/lib/Input/InputNumber.js +9 -2
  64. package/lib/Input/SelectInput.js +11 -2
  65. package/lib/Input/index.js +10 -2
  66. package/lib/RadioGroup/index.js +11 -3
  67. package/lib/Select/components/AllSelect.js +1 -0
  68. package/lib/Select/defaultConfig.js +1 -0
  69. package/lib/Select/hooks/changeHooks.js +12 -3
  70. package/lib/Select/hooks/norHooks.js +7 -3
  71. package/lib/Select/index.js +10 -2
  72. package/lib/Select/utils.js +10 -2
  73. package/lib/Submit/index.js +9 -2
  74. package/lib/Switch/index.js +9 -2
  75. package/lib/TDPicker/RangePicker.js +12 -2
  76. package/lib/TDPicker/TimePicker.js +9 -2
  77. package/lib/TDPicker/hooks.js +3 -1
  78. package/lib/TDPicker/index.js +9 -2
  79. package/lib/TextArea/index.js +9 -2
  80. package/lib/Upload/UrlUpload/index.js +17 -4
  81. package/lib/Upload/hooks/change.js +10 -3
  82. package/lib/Upload/hooks/customRequest.js +11 -3
  83. package/lib/Upload/hooks/propsMaker.js +8 -1
  84. package/lib/Upload/index.js +13 -3
  85. package/lib/Upload/util.js +4 -0
  86. package/lib/config.d.ts +4 -0
  87. package/lib/config.js +2 -2
  88. package/lib/hooks/index.js +17 -3
  89. package/package.json +8 -2
  90. package/scripts/rollup.config.js +11 -14
  91. package/src/components/config.ts +4 -0
@@ -1,6 +1,13 @@
1
1
  // welcome to hoo hoo hoo
2
- import _slicedToArray from '@babel/runtime/helpers/slicedToArray';
3
- import _defineProperty from '@babel/runtime/helpers/defineProperty';
2
+ import 'core-js/modules/es.symbol.js';
3
+ import 'core-js/modules/es.object.get-own-property-descriptor.js';
4
+ import 'core-js/modules/es.object.get-own-property-descriptors.js';
5
+ import _slicedToArray from '@babel/runtime-corejs3/helpers/slicedToArray';
6
+ import _defineProperty from '@babel/runtime-corejs3/helpers/defineProperty';
7
+ import 'core-js/modules/es.object.to-string.js';
8
+ import 'core-js/modules/web.dom-collections.for-each.js';
9
+ import 'core-js/modules/es.object.keys.js';
10
+ import 'core-js/modules/es.array.filter.js';
4
11
  import { useState, useMemo, useEffect } from 'react';
5
12
 
6
13
  function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
@@ -1,5 +1,14 @@
1
1
  // welcome to hoo hoo hoo
2
- import _defineProperty from '@babel/runtime/helpers/defineProperty';
2
+ import _defineProperty from '@babel/runtime-corejs3/helpers/defineProperty';
3
+ import 'core-js/modules/es.function.name.js';
4
+ import 'core-js/modules/es.array.map.js';
5
+ import 'core-js/modules/es.object.to-string.js';
6
+ import 'core-js/modules/web.dom-collections.for-each.js';
7
+ import 'core-js/modules/es.object.keys.js';
8
+ import 'core-js/modules/es.symbol.js';
9
+ import 'core-js/modules/es.array.filter.js';
10
+ import 'core-js/modules/es.object.get-own-property-descriptor.js';
11
+ import 'core-js/modules/es.object.get-own-property-descriptors.js';
3
12
  import { jsx } from 'react/jsx-runtime';
4
13
  import { Space } from 'antd';
5
14
  import { useValueProvider } from './hooks.js';
@@ -1,8 +1,15 @@
1
1
  // welcome to hoo hoo hoo
2
- import _asyncToGenerator from '@babel/runtime/helpers/asyncToGenerator';
3
- import _defineProperty from '@babel/runtime/helpers/defineProperty';
4
- import _objectWithoutProperties from '@babel/runtime/helpers/objectWithoutProperties';
5
- import _regeneratorRuntime from '@babel/runtime/regenerator';
2
+ import 'core-js/modules/es.object.keys.js';
3
+ import 'core-js/modules/es.symbol.js';
4
+ import 'core-js/modules/es.array.filter.js';
5
+ import 'core-js/modules/es.object.to-string.js';
6
+ import 'core-js/modules/es.object.get-own-property-descriptor.js';
7
+ import 'core-js/modules/web.dom-collections.for-each.js';
8
+ import 'core-js/modules/es.object.get-own-property-descriptors.js';
9
+ import _asyncToGenerator from '@babel/runtime-corejs3/helpers/asyncToGenerator';
10
+ import _defineProperty from '@babel/runtime-corejs3/helpers/defineProperty';
11
+ import _objectWithoutProperties from '@babel/runtime-corejs3/helpers/objectWithoutProperties';
12
+ import _regeneratorRuntime from '@babel/runtime-corejs3/regenerator';
6
13
  import { jsx } from 'react/jsx-runtime';
7
14
  import { Drawer } from 'antd';
8
15
  import { useCurrentForm, useModifyProps, useSub } from '../hooks.js';
@@ -1,8 +1,15 @@
1
1
  // welcome to hoo hoo hoo
2
- import _asyncToGenerator from '@babel/runtime/helpers/asyncToGenerator';
3
- import _defineProperty from '@babel/runtime/helpers/defineProperty';
4
- import _objectWithoutProperties from '@babel/runtime/helpers/objectWithoutProperties';
5
- import _regeneratorRuntime from '@babel/runtime/regenerator';
2
+ import 'core-js/modules/es.object.keys.js';
3
+ import 'core-js/modules/es.symbol.js';
4
+ import 'core-js/modules/es.array.filter.js';
5
+ import 'core-js/modules/es.object.to-string.js';
6
+ import 'core-js/modules/es.object.get-own-property-descriptor.js';
7
+ import 'core-js/modules/web.dom-collections.for-each.js';
8
+ import 'core-js/modules/es.object.get-own-property-descriptors.js';
9
+ import _asyncToGenerator from '@babel/runtime-corejs3/helpers/asyncToGenerator';
10
+ import _defineProperty from '@babel/runtime-corejs3/helpers/defineProperty';
11
+ import _objectWithoutProperties from '@babel/runtime-corejs3/helpers/objectWithoutProperties';
12
+ import _regeneratorRuntime from '@babel/runtime-corejs3/regenerator';
6
13
  import { jsx } from 'react/jsx-runtime';
7
14
  import { Modal } from 'antd';
8
15
  import HForm from '../Form/index.js';
@@ -1,8 +1,15 @@
1
1
  // welcome to hoo hoo hoo
2
- import _asyncToGenerator from '@babel/runtime/helpers/asyncToGenerator';
3
- import _defineProperty from '@babel/runtime/helpers/defineProperty';
4
- import _slicedToArray from '@babel/runtime/helpers/slicedToArray';
5
- import _regeneratorRuntime from '@babel/runtime/regenerator';
2
+ import 'core-js/modules/es.object.keys.js';
3
+ import 'core-js/modules/es.symbol.js';
4
+ import 'core-js/modules/es.array.filter.js';
5
+ import 'core-js/modules/es.object.to-string.js';
6
+ import 'core-js/modules/es.object.get-own-property-descriptor.js';
7
+ import 'core-js/modules/web.dom-collections.for-each.js';
8
+ import 'core-js/modules/es.object.get-own-property-descriptors.js';
9
+ import _asyncToGenerator from '@babel/runtime-corejs3/helpers/asyncToGenerator';
10
+ import _defineProperty from '@babel/runtime-corejs3/helpers/defineProperty';
11
+ import _slicedToArray from '@babel/runtime-corejs3/helpers/slicedToArray';
12
+ import _regeneratorRuntime from '@babel/runtime-corejs3/regenerator';
6
13
  import { useMemo, useState, useEffect } from 'react';
7
14
  import useHForm from '../Form/hooks/useHForm.js';
8
15
  import { useRequest } from 'ahooks';
@@ -1,6 +1,13 @@
1
1
  // welcome to hoo hoo hoo
2
- import _objectWithoutProperties from '@babel/runtime/helpers/objectWithoutProperties';
3
- import _defineProperty from '@babel/runtime/helpers/defineProperty';
2
+ import 'core-js/modules/es.symbol.js';
3
+ import 'core-js/modules/es.array.filter.js';
4
+ import 'core-js/modules/es.object.get-own-property-descriptor.js';
5
+ import 'core-js/modules/es.object.get-own-property-descriptors.js';
6
+ import _objectWithoutProperties from '@babel/runtime-corejs3/helpers/objectWithoutProperties';
7
+ import _defineProperty from '@babel/runtime-corejs3/helpers/defineProperty';
8
+ import 'core-js/modules/es.object.keys.js';
9
+ import 'core-js/modules/es.object.to-string.js';
10
+ import 'core-js/modules/web.dom-collections.for-each.js';
4
11
  import { jsx } from 'react/jsx-runtime';
5
12
  import { FormConfigContext } from './index.js';
6
13
  import { useContext } from 'react';
@@ -1,6 +1,13 @@
1
1
  // welcome to hoo hoo hoo
2
- import _defineProperty from '@babel/runtime/helpers/defineProperty';
3
- import _objectWithoutProperties from '@babel/runtime/helpers/objectWithoutProperties';
2
+ import 'core-js/modules/es.object.keys.js';
3
+ import 'core-js/modules/es.symbol.js';
4
+ import 'core-js/modules/es.array.filter.js';
5
+ import 'core-js/modules/es.object.to-string.js';
6
+ import 'core-js/modules/es.object.get-own-property-descriptor.js';
7
+ import 'core-js/modules/web.dom-collections.for-each.js';
8
+ import 'core-js/modules/es.object.get-own-property-descriptors.js';
9
+ import _defineProperty from '@babel/runtime-corejs3/helpers/defineProperty';
10
+ import _objectWithoutProperties from '@babel/runtime-corejs3/helpers/objectWithoutProperties';
4
11
  import { jsx, jsxs } from 'react/jsx-runtime';
5
12
  import Index$1 from '../Label.js';
6
13
  import { Form, Space } from 'antd';
@@ -1,5 +1,12 @@
1
1
  // welcome to hoo hoo hoo
2
- import _defineProperty from '@babel/runtime/helpers/defineProperty';
2
+ import 'core-js/modules/es.object.keys.js';
3
+ import 'core-js/modules/es.symbol.js';
4
+ import 'core-js/modules/es.array.filter.js';
5
+ import 'core-js/modules/es.object.to-string.js';
6
+ import 'core-js/modules/es.object.get-own-property-descriptor.js';
7
+ import 'core-js/modules/web.dom-collections.for-each.js';
8
+ import 'core-js/modules/es.object.get-own-property-descriptors.js';
9
+ import _defineProperty from '@babel/runtime-corejs3/helpers/defineProperty';
3
10
  import { jsx } from 'react/jsx-runtime';
4
11
  import Index from './BasicItem.js';
5
12
 
@@ -1,6 +1,13 @@
1
1
  // welcome to hoo hoo hoo
2
- import _defineProperty from '@babel/runtime/helpers/defineProperty';
3
- import _objectWithoutProperties from '@babel/runtime/helpers/objectWithoutProperties';
2
+ import 'core-js/modules/es.object.keys.js';
3
+ import 'core-js/modules/es.symbol.js';
4
+ import 'core-js/modules/es.array.filter.js';
5
+ import 'core-js/modules/es.object.to-string.js';
6
+ import 'core-js/modules/es.object.get-own-property-descriptor.js';
7
+ import 'core-js/modules/web.dom-collections.for-each.js';
8
+ import 'core-js/modules/es.object.get-own-property-descriptors.js';
9
+ import _defineProperty from '@babel/runtime-corejs3/helpers/defineProperty';
10
+ import _objectWithoutProperties from '@babel/runtime-corejs3/helpers/objectWithoutProperties';
4
11
  import { jsx } from 'react/jsx-runtime';
5
12
  import { Form } from 'antd';
6
13
  import Index from './BasicItem.js';
@@ -1,5 +1,12 @@
1
1
  // welcome to hoo hoo hoo
2
- import _defineProperty from '@babel/runtime/helpers/defineProperty';
2
+ import 'core-js/modules/es.object.keys.js';
3
+ import 'core-js/modules/es.symbol.js';
4
+ import 'core-js/modules/es.array.filter.js';
5
+ import 'core-js/modules/es.object.to-string.js';
6
+ import 'core-js/modules/es.object.get-own-property-descriptor.js';
7
+ import 'core-js/modules/web.dom-collections.for-each.js';
8
+ import 'core-js/modules/es.object.get-own-property-descriptors.js';
9
+ import _defineProperty from '@babel/runtime-corejs3/helpers/defineProperty';
3
10
  import { jsx } from 'react/jsx-runtime';
4
11
  import { useFormItemDomControl } from './hooks.js';
5
12
 
@@ -1,5 +1,13 @@
1
1
  // welcome to hoo hoo hoo
2
- import _defineProperty from '@babel/runtime/helpers/defineProperty';
2
+ import 'core-js/modules/es.object.keys.js';
3
+ import 'core-js/modules/es.symbol.js';
4
+ import 'core-js/modules/es.array.filter.js';
5
+ import 'core-js/modules/es.object.to-string.js';
6
+ import 'core-js/modules/es.object.get-own-property-descriptor.js';
7
+ import 'core-js/modules/web.dom-collections.for-each.js';
8
+ import 'core-js/modules/es.object.get-own-property-descriptors.js';
9
+ import _defineProperty from '@babel/runtime-corejs3/helpers/defineProperty';
10
+ import 'core-js/modules/es.function.name.js';
3
11
  import { jsx } from 'react/jsx-runtime';
4
12
  import { useFormContext } from './Context/index.js';
5
13
  import React, { useEffect } from 'react';
@@ -1,7 +1,14 @@
1
1
  // welcome to hoo hoo hoo
2
- import _defineProperty from '@babel/runtime/helpers/defineProperty';
3
- import _asyncToGenerator from '@babel/runtime/helpers/asyncToGenerator';
4
- import _regeneratorRuntime from '@babel/runtime/regenerator';
2
+ import 'core-js/modules/es.symbol.js';
3
+ import 'core-js/modules/es.array.filter.js';
4
+ import 'core-js/modules/es.object.get-own-property-descriptor.js';
5
+ import 'core-js/modules/es.object.get-own-property-descriptors.js';
6
+ import _defineProperty from '@babel/runtime-corejs3/helpers/defineProperty';
7
+ import _asyncToGenerator from '@babel/runtime-corejs3/helpers/asyncToGenerator';
8
+ import 'core-js/modules/es.object.keys.js';
9
+ import 'core-js/modules/es.object.to-string.js';
10
+ import 'core-js/modules/web.dom-collections.for-each.js';
11
+ import _regeneratorRuntime from '@babel/runtime-corejs3/regenerator';
5
12
  import { useRequest } from 'ahooks';
6
13
  import useHForm from './useHForm.js';
7
14
  import { useMemo, useEffect } from 'react';
@@ -1,6 +1,13 @@
1
1
  // welcome to hoo hoo hoo
2
- import _defineProperty from '@babel/runtime/helpers/defineProperty';
3
- import _objectWithoutProperties from '@babel/runtime/helpers/objectWithoutProperties';
2
+ import 'core-js/modules/es.object.keys.js';
3
+ import 'core-js/modules/es.symbol.js';
4
+ import 'core-js/modules/es.array.filter.js';
5
+ import 'core-js/modules/es.object.to-string.js';
6
+ import 'core-js/modules/es.object.get-own-property-descriptor.js';
7
+ import 'core-js/modules/web.dom-collections.for-each.js';
8
+ import 'core-js/modules/es.object.get-own-property-descriptors.js';
9
+ import _defineProperty from '@babel/runtime-corejs3/helpers/defineProperty';
10
+ import _objectWithoutProperties from '@babel/runtime-corejs3/helpers/objectWithoutProperties';
4
11
  import { jsx } from 'react/jsx-runtime';
5
12
  import componentConfig from '../config.js';
6
13
  import React from 'react';
@@ -1,7 +1,19 @@
1
1
  // welcome to hoo hoo hoo
2
- import _toConsumableArray from '@babel/runtime/helpers/toConsumableArray';
3
- import _defineProperty from '@babel/runtime/helpers/defineProperty';
4
- import _slicedToArray from '@babel/runtime/helpers/slicedToArray';
2
+ import 'core-js/modules/es.symbol.js';
3
+ import 'core-js/modules/es.array.filter.js';
4
+ import 'core-js/modules/es.object.get-own-property-descriptor.js';
5
+ import 'core-js/modules/es.object.get-own-property-descriptors.js';
6
+ import _toConsumableArray from '@babel/runtime-corejs3/helpers/toConsumableArray';
7
+ import _defineProperty from '@babel/runtime-corejs3/helpers/defineProperty';
8
+ import _slicedToArray from '@babel/runtime-corejs3/helpers/slicedToArray';
9
+ import 'core-js/modules/es.object.to-string.js';
10
+ import 'core-js/modules/es.promise.js';
11
+ import 'core-js/modules/es.object.keys.js';
12
+ import 'core-js/modules/web.dom-collections.for-each.js';
13
+ import 'core-js/modules/es.reflect.delete-property.js';
14
+ import 'core-js/modules/es.function.name.js';
15
+ import 'core-js/modules/es.array.concat.js';
16
+ import 'core-js/modules/es.array.map.js';
5
17
  import { useMemo } from 'react';
6
18
  import { Form } from 'antd';
7
19
 
@@ -1,6 +1,15 @@
1
1
  // welcome to hoo hoo hoo
2
- import _objectWithoutProperties from '@babel/runtime/helpers/objectWithoutProperties';
3
- import _defineProperty from '@babel/runtime/helpers/defineProperty';
2
+ import 'core-js/modules/es.object.keys.js';
3
+ import 'core-js/modules/es.symbol.js';
4
+ import 'core-js/modules/es.array.filter.js';
5
+ import 'core-js/modules/es.object.get-own-property-descriptor.js';
6
+ import 'core-js/modules/es.object.get-own-property-descriptors.js';
7
+ import _objectWithoutProperties from '@babel/runtime-corejs3/helpers/objectWithoutProperties';
8
+ import _defineProperty from '@babel/runtime-corejs3/helpers/defineProperty';
9
+ import 'core-js/modules/es.array.map.js';
10
+ import 'core-js/modules/es.function.name.js';
11
+ import 'core-js/modules/es.object.to-string.js';
12
+ import 'core-js/modules/web.dom-collections.for-each.js';
4
13
  import { useMemo } from 'react';
5
14
  import { placeholderConfig } from '../config.js';
6
15
  import { useDefaultComponents } from './index.js';
package/es/Form/index.js CHANGED
@@ -1,6 +1,14 @@
1
1
  // welcome to hoo hoo hoo
2
- import _defineProperty from '@babel/runtime/helpers/defineProperty';
3
- import _objectWithoutProperties from '@babel/runtime/helpers/objectWithoutProperties';
2
+ import 'core-js/modules/es.object.keys.js';
3
+ import 'core-js/modules/es.symbol.js';
4
+ import 'core-js/modules/es.array.filter.js';
5
+ import 'core-js/modules/es.object.to-string.js';
6
+ import 'core-js/modules/es.object.get-own-property-descriptor.js';
7
+ import 'core-js/modules/web.dom-collections.for-each.js';
8
+ import 'core-js/modules/es.object.get-own-property-descriptors.js';
9
+ import _defineProperty from '@babel/runtime-corejs3/helpers/defineProperty';
10
+ import _objectWithoutProperties from '@babel/runtime-corejs3/helpers/objectWithoutProperties';
11
+ import 'core-js/modules/es.array.map.js';
4
12
  import { jsx, jsxs } from 'react/jsx-runtime';
5
13
  import { useEffect, createElement } from 'react';
6
14
  import { Form } from 'antd';
@@ -1,8 +1,15 @@
1
1
  // welcome to hoo hoo hoo
2
- import _defineProperty from '@babel/runtime/helpers/defineProperty';
3
- import _asyncToGenerator from '@babel/runtime/helpers/asyncToGenerator';
4
- import _objectWithoutProperties from '@babel/runtime/helpers/objectWithoutProperties';
5
- import _regeneratorRuntime from '@babel/runtime/regenerator';
2
+ import 'core-js/modules/es.object.keys.js';
3
+ import 'core-js/modules/es.symbol.js';
4
+ import 'core-js/modules/es.array.filter.js';
5
+ import 'core-js/modules/es.object.to-string.js';
6
+ import 'core-js/modules/es.object.get-own-property-descriptor.js';
7
+ import 'core-js/modules/web.dom-collections.for-each.js';
8
+ import 'core-js/modules/es.object.get-own-property-descriptors.js';
9
+ import _defineProperty from '@babel/runtime-corejs3/helpers/defineProperty';
10
+ import _asyncToGenerator from '@babel/runtime-corejs3/helpers/asyncToGenerator';
11
+ import _objectWithoutProperties from '@babel/runtime-corejs3/helpers/objectWithoutProperties';
12
+ import _regeneratorRuntime from '@babel/runtime-corejs3/regenerator';
6
13
  import { jsxs, jsx } from 'react/jsx-runtime';
7
14
  import { Input, Button } from 'antd';
8
15
  import { useRequest } from 'ahooks';
@@ -1,9 +1,33 @@
1
1
  // welcome to hoo hoo hoo
2
- import _typeof from '@babel/runtime/helpers/typeof';
3
- import _defineProperty from '@babel/runtime/helpers/defineProperty';
4
- import _inherits from '@babel/runtime/helpers/inherits';
5
- import _setPrototypeOf from '@babel/runtime/helpers/setPrototypeOf';
6
- import _objectWithoutProperties from '@babel/runtime/helpers/objectWithoutProperties';
2
+ import 'core-js/modules/es.regexp.constructor.js';
3
+ import 'core-js/modules/es.regexp.to-string.js';
4
+ import 'core-js/modules/es.array.iterator.js';
5
+ import 'core-js/modules/es.object.to-string.js';
6
+ import 'core-js/modules/es.string.iterator.js';
7
+ import 'core-js/modules/es.weak-map.js';
8
+ import 'core-js/modules/web.dom-collections.iterator.js';
9
+ import 'core-js/modules/es.array.reduce.js';
10
+ import 'core-js/modules/es.object.keys.js';
11
+ import 'core-js/modules/es.symbol.replace.js';
12
+ import 'core-js/modules/es.string.replace.js';
13
+ import 'core-js/modules/es.symbol.js';
14
+ import 'core-js/modules/es.symbol.description.js';
15
+ import 'core-js/modules/es.array.join.js';
16
+ import 'core-js/modules/es.array.slice.js';
17
+ import 'core-js/modules/es.array.filter.js';
18
+ import 'core-js/modules/es.object.get-own-property-descriptor.js';
19
+ import 'core-js/modules/web.dom-collections.for-each.js';
20
+ import 'core-js/modules/es.object.get-own-property-descriptors.js';
21
+ import _typeof from '@babel/runtime-corejs3/helpers/typeof';
22
+ import _defineProperty from '@babel/runtime-corejs3/helpers/defineProperty';
23
+ import _inherits from '@babel/runtime-corejs3/helpers/inherits';
24
+ import _setPrototypeOf from '@babel/runtime-corejs3/helpers/setPrototypeOf';
25
+ import _objectWithoutProperties from '@babel/runtime-corejs3/helpers/objectWithoutProperties';
26
+ import 'core-js/modules/es.string.starts-with.js';
27
+ import 'core-js/modules/es.regexp.exec.js';
28
+ import 'core-js/modules/es.string.match.js';
29
+ import 'core-js/modules/es.number.constructor.js';
30
+ import 'core-js/modules/es.array.concat.js';
7
31
  import { jsx } from 'react/jsx-runtime';
8
32
  import { Input, Popover } from 'antd';
9
33
  import Picker from './Picker.js';
@@ -1,6 +1,13 @@
1
1
  // welcome to hoo hoo hoo
2
- import _defineProperty from '@babel/runtime/helpers/defineProperty';
3
- import _objectWithoutProperties from '@babel/runtime/helpers/objectWithoutProperties';
2
+ import 'core-js/modules/es.object.keys.js';
3
+ import 'core-js/modules/es.symbol.js';
4
+ import 'core-js/modules/es.array.filter.js';
5
+ import 'core-js/modules/es.object.to-string.js';
6
+ import 'core-js/modules/es.object.get-own-property-descriptor.js';
7
+ import 'core-js/modules/web.dom-collections.for-each.js';
8
+ import 'core-js/modules/es.object.get-own-property-descriptors.js';
9
+ import _defineProperty from '@babel/runtime-corejs3/helpers/defineProperty';
10
+ import _objectWithoutProperties from '@babel/runtime-corejs3/helpers/objectWithoutProperties';
4
11
  import { jsx } from 'react/jsx-runtime';
5
12
  import { InputNumber } from 'antd';
6
13
 
@@ -1,6 +1,15 @@
1
1
  // welcome to hoo hoo hoo
2
- import _defineProperty from '@babel/runtime/helpers/defineProperty';
3
- import _objectWithoutProperties from '@babel/runtime/helpers/objectWithoutProperties';
2
+ import 'core-js/modules/es.object.keys.js';
3
+ import 'core-js/modules/es.symbol.js';
4
+ import 'core-js/modules/es.array.filter.js';
5
+ import 'core-js/modules/es.object.get-own-property-descriptor.js';
6
+ import 'core-js/modules/es.object.get-own-property-descriptors.js';
7
+ import _defineProperty from '@babel/runtime-corejs3/helpers/defineProperty';
8
+ import _objectWithoutProperties from '@babel/runtime-corejs3/helpers/objectWithoutProperties';
9
+ import 'core-js/modules/es.function.name.js';
10
+ import 'core-js/modules/es.object.to-string.js';
11
+ import 'core-js/modules/web.dom-collections.for-each.js';
12
+ import 'core-js/modules/es.object.values.js';
4
13
  import { jsx } from 'react/jsx-runtime';
5
14
  import { Input } from 'antd';
6
15
  import HSelect from '../Select/index.js';
package/es/Input/index.js CHANGED
@@ -1,6 +1,14 @@
1
1
  // welcome to hoo hoo hoo
2
- import _defineProperty from '@babel/runtime/helpers/defineProperty';
3
- import _objectDestructuringEmpty from '@babel/runtime/helpers/objectDestructuringEmpty';
2
+ import _defineProperty from '@babel/runtime-corejs3/helpers/defineProperty';
3
+ import _objectDestructuringEmpty from '@babel/runtime-corejs3/helpers/objectDestructuringEmpty';
4
+ import 'core-js/modules/es.object.assign.js';
5
+ import 'core-js/modules/es.object.keys.js';
6
+ import 'core-js/modules/es.symbol.js';
7
+ import 'core-js/modules/es.array.filter.js';
8
+ import 'core-js/modules/es.object.to-string.js';
9
+ import 'core-js/modules/es.object.get-own-property-descriptor.js';
10
+ import 'core-js/modules/web.dom-collections.for-each.js';
11
+ import 'core-js/modules/es.object.get-own-property-descriptors.js';
4
12
  import { jsx } from 'react/jsx-runtime';
5
13
  import { Input } from 'antd';
6
14
 
@@ -1,7 +1,15 @@
1
1
  // welcome to hoo hoo hoo
2
- import _defineProperty from '@babel/runtime/helpers/defineProperty';
3
- import _typeof from '@babel/runtime/helpers/typeof';
4
- import _objectWithoutProperties from '@babel/runtime/helpers/objectWithoutProperties';
2
+ import _defineProperty from '@babel/runtime-corejs3/helpers/defineProperty';
3
+ import _typeof from '@babel/runtime-corejs3/helpers/typeof';
4
+ import _objectWithoutProperties from '@babel/runtime-corejs3/helpers/objectWithoutProperties';
5
+ import 'core-js/modules/es.array.map.js';
6
+ import 'core-js/modules/es.object.keys.js';
7
+ import 'core-js/modules/es.symbol.js';
8
+ import 'core-js/modules/es.array.filter.js';
9
+ import 'core-js/modules/es.object.to-string.js';
10
+ import 'core-js/modules/es.object.get-own-property-descriptor.js';
11
+ import 'core-js/modules/web.dom-collections.for-each.js';
12
+ import 'core-js/modules/es.object.get-own-property-descriptors.js';
5
13
  import { jsx } from 'react/jsx-runtime';
6
14
  import { Radio } from 'antd';
7
15
  import { useMemo } from 'react';
@@ -1,4 +1,5 @@
1
1
  // welcome to hoo hoo hoo
2
+ import 'core-js/modules/es.array.concat.js';
2
3
  import { jsx, Fragment, jsxs } from 'react/jsx-runtime';
3
4
  import { Space, Checkbox } from 'antd';
4
5
  import { itemOpProvider } from '../utils.js';
@@ -1,4 +1,5 @@
1
1
  // welcome to hoo hoo hoo
2
+ import 'core-js/modules/es.array.map.js';
2
3
  import { jsx } from 'react/jsx-runtime';
3
4
  import CheckBoxOption from './components/CheckBoxOption.js';
4
5
  import NoFindItem from './components/NoFindItem.js';
@@ -1,7 +1,16 @@
1
1
  // welcome to hoo hoo hoo
2
- import _slicedToArray from '@babel/runtime/helpers/slicedToArray';
3
- import _objectWithoutProperties from '@babel/runtime/helpers/objectWithoutProperties';
4
- import _defineProperty from '@babel/runtime/helpers/defineProperty';
2
+ import 'core-js/modules/es.object.keys.js';
3
+ import 'core-js/modules/es.symbol.js';
4
+ import 'core-js/modules/es.array.filter.js';
5
+ import 'core-js/modules/es.object.get-own-property-descriptor.js';
6
+ import 'core-js/modules/es.object.get-own-property-descriptors.js';
7
+ import _slicedToArray from '@babel/runtime-corejs3/helpers/slicedToArray';
8
+ import _objectWithoutProperties from '@babel/runtime-corejs3/helpers/objectWithoutProperties';
9
+ import _defineProperty from '@babel/runtime-corejs3/helpers/defineProperty';
10
+ import 'core-js/modules/es.array.find-index.js';
11
+ import 'core-js/modules/es.object.to-string.js';
12
+ import 'core-js/modules/web.dom-collections.for-each.js';
13
+ import 'core-js/modules/es.array.map.js';
5
14
  import { useState, useEffect } from 'react';
6
15
  import { itemOpProvider } from '../utils.js';
7
16
 
@@ -1,7 +1,11 @@
1
1
  // welcome to hoo hoo hoo
2
- import _asyncToGenerator from '@babel/runtime/helpers/asyncToGenerator';
3
- import _slicedToArray from '@babel/runtime/helpers/slicedToArray';
4
- import _regeneratorRuntime from '@babel/runtime/regenerator';
2
+ import _asyncToGenerator from '@babel/runtime-corejs3/helpers/asyncToGenerator';
3
+ import _slicedToArray from '@babel/runtime-corejs3/helpers/slicedToArray';
4
+ import _regeneratorRuntime from '@babel/runtime-corejs3/regenerator';
5
+ import 'core-js/modules/es.array.iterator.js';
6
+ import 'core-js/modules/es.object.to-string.js';
7
+ import 'core-js/modules/web.dom-collections.iterator.js';
8
+ import 'core-js/modules/es.promise.js';
5
9
  import { useState, useEffect } from 'react';
6
10
  import { useRequest } from 'ahooks';
7
11
  import { useFormContext } from '../../Form/Context/index.js';
@@ -1,6 +1,14 @@
1
1
  // welcome to hoo hoo hoo
2
- import _defineProperty from '@babel/runtime/helpers/defineProperty';
3
- import _objectWithoutProperties from '@babel/runtime/helpers/objectWithoutProperties';
2
+ import 'core-js/modules/es.object.keys.js';
3
+ import 'core-js/modules/es.symbol.js';
4
+ import 'core-js/modules/es.array.filter.js';
5
+ import 'core-js/modules/es.object.to-string.js';
6
+ import 'core-js/modules/es.object.get-own-property-descriptor.js';
7
+ import 'core-js/modules/web.dom-collections.for-each.js';
8
+ import 'core-js/modules/es.object.get-own-property-descriptors.js';
9
+ import _defineProperty from '@babel/runtime-corejs3/helpers/defineProperty';
10
+ import _objectWithoutProperties from '@babel/runtime-corejs3/helpers/objectWithoutProperties';
11
+ import 'core-js/modules/es.array.map.js';
4
12
  import { jsx } from 'react/jsx-runtime';
5
13
  import { Select } from 'antd';
6
14
  import { useFilterOption, useOptionReq } from './hooks/norHooks.js';
@@ -1,6 +1,14 @@
1
1
  // welcome to hoo hoo hoo
2
- import _defineProperty from '@babel/runtime/helpers/defineProperty';
3
- import _objectWithoutProperties from '@babel/runtime/helpers/objectWithoutProperties';
2
+ import 'core-js/modules/es.object.keys.js';
3
+ import 'core-js/modules/es.symbol.js';
4
+ import 'core-js/modules/es.array.filter.js';
5
+ import 'core-js/modules/es.object.to-string.js';
6
+ import 'core-js/modules/es.object.get-own-property-descriptor.js';
7
+ import 'core-js/modules/web.dom-collections.for-each.js';
8
+ import 'core-js/modules/es.object.get-own-property-descriptors.js';
9
+ import _defineProperty from '@babel/runtime-corejs3/helpers/defineProperty';
10
+ import _objectWithoutProperties from '@babel/runtime-corejs3/helpers/objectWithoutProperties';
11
+ import 'core-js/modules/es.array.map.js';
4
12
 
5
13
  var _excluded = ["label", "value"];
6
14
  function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
@@ -1,6 +1,13 @@
1
1
  // welcome to hoo hoo hoo
2
- import _defineProperty from '@babel/runtime/helpers/defineProperty';
3
- import _objectWithoutProperties from '@babel/runtime/helpers/objectWithoutProperties';
2
+ import 'core-js/modules/es.object.keys.js';
3
+ import 'core-js/modules/es.symbol.js';
4
+ import 'core-js/modules/es.array.filter.js';
5
+ import 'core-js/modules/es.object.to-string.js';
6
+ import 'core-js/modules/es.object.get-own-property-descriptor.js';
7
+ import 'core-js/modules/web.dom-collections.for-each.js';
8
+ import 'core-js/modules/es.object.get-own-property-descriptors.js';
9
+ import _defineProperty from '@babel/runtime-corejs3/helpers/defineProperty';
10
+ import _objectWithoutProperties from '@babel/runtime-corejs3/helpers/objectWithoutProperties';
4
11
  import { jsx, jsxs } from 'react/jsx-runtime';
5
12
  import { Row, Space, Button } from 'antd';
6
13
  import { useFormContext } from '../Form/Context/index.js';
@@ -1,6 +1,13 @@
1
1
  // welcome to hoo hoo hoo
2
- import _defineProperty from '@babel/runtime/helpers/defineProperty';
3
- import _objectWithoutProperties from '@babel/runtime/helpers/objectWithoutProperties';
2
+ import 'core-js/modules/es.object.keys.js';
3
+ import 'core-js/modules/es.symbol.js';
4
+ import 'core-js/modules/es.array.filter.js';
5
+ import 'core-js/modules/es.object.to-string.js';
6
+ import 'core-js/modules/es.object.get-own-property-descriptor.js';
7
+ import 'core-js/modules/web.dom-collections.for-each.js';
8
+ import 'core-js/modules/es.object.get-own-property-descriptors.js';
9
+ import _defineProperty from '@babel/runtime-corejs3/helpers/defineProperty';
10
+ import _objectWithoutProperties from '@babel/runtime-corejs3/helpers/objectWithoutProperties';
4
11
  import { jsxs, jsx } from 'react/jsx-runtime';
5
12
  import { Space, Switch } from 'antd';
6
13
  import { useMemo } from 'react';
@@ -1,6 +1,16 @@
1
1
  // welcome to hoo hoo hoo
2
- import _defineProperty from '@babel/runtime/helpers/defineProperty';
3
- import _objectWithoutProperties from '@babel/runtime/helpers/objectWithoutProperties';
2
+ import 'core-js/modules/es.symbol.js';
3
+ import 'core-js/modules/es.array.filter.js';
4
+ import 'core-js/modules/es.object.get-own-property-descriptor.js';
5
+ import 'core-js/modules/es.object.get-own-property-descriptors.js';
6
+ import _defineProperty from '@babel/runtime-corejs3/helpers/defineProperty';
7
+ import _objectWithoutProperties from '@babel/runtime-corejs3/helpers/objectWithoutProperties';
8
+ import 'core-js/modules/es.function.name.js';
9
+ import 'core-js/modules/es.object.to-string.js';
10
+ import 'core-js/modules/web.dom-collections.for-each.js';
11
+ import 'core-js/modules/es.object.values.js';
12
+ import 'core-js/modules/es.object.keys.js';
13
+ import 'core-js/modules/es.array.map.js';
4
14
  import { jsx } from 'react/jsx-runtime';
5
15
  import { DatePicker } from 'antd';
6
16
  import { useGetTimeKey, useRangeValueProvider, useRangePickerTimeVal } from './hooks.js';
@@ -1,6 +1,13 @@
1
1
  // welcome to hoo hoo hoo
2
- import _defineProperty from '@babel/runtime/helpers/defineProperty';
3
- import _objectWithoutProperties from '@babel/runtime/helpers/objectWithoutProperties';
2
+ import 'core-js/modules/es.object.keys.js';
3
+ import 'core-js/modules/es.symbol.js';
4
+ import 'core-js/modules/es.array.filter.js';
5
+ import 'core-js/modules/es.object.to-string.js';
6
+ import 'core-js/modules/es.object.get-own-property-descriptor.js';
7
+ import 'core-js/modules/web.dom-collections.for-each.js';
8
+ import 'core-js/modules/es.object.get-own-property-descriptors.js';
9
+ import _defineProperty from '@babel/runtime-corejs3/helpers/defineProperty';
10
+ import _objectWithoutProperties from '@babel/runtime-corejs3/helpers/objectWithoutProperties';
4
11
  import { jsx } from 'react/jsx-runtime';
5
12
  import { TimePicker } from 'antd';
6
13
  import { useTimePickerValue, useTimePickerChange } from './hooks.js';
@@ -1,5 +1,7 @@
1
1
  // welcome to hoo hoo hoo
2
- import _defineProperty from '@babel/runtime/helpers/defineProperty';
2
+ import _defineProperty from '@babel/runtime-corejs3/helpers/defineProperty';
3
+ import 'core-js/modules/es.function.name.js';
4
+ import 'core-js/modules/es.array.map.js';
3
5
  import { useMemo, useCallback } from 'react';
4
6
  import moment from 'moment';
5
7