@zat-design/sisyphus-react 3.11.14-beta.11 → 3.11.14-beta.12

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 (145) hide show
  1. package/.vscode/extensions.json +5 -0
  2. package/coverage/lcov-report/src/.umi/core/devScripts.ts.html +2 -2
  3. package/coverage/lcov-report/src/.umi/core/history.ts.html +3 -3
  4. package/coverage/lcov-report/src/.umi/core/index.html +8 -8
  5. package/coverage/lcov-report/src/.umi/core/plugin.ts.html +3 -3
  6. package/coverage/lcov-report/src/.umi/core/pluginRegister.ts.html +6 -6
  7. package/coverage/lcov-report/src/.umi/core/polyfill.ts.html +2 -2
  8. package/coverage/lcov-report/src/.umi/core/routes.ts.html +3723 -624
  9. package/coverage/lcov-report/src/.umi/core/umiExports.ts.html +2 -2
  10. package/coverage/lcov-report/src/.umi/dumi/index.html +2 -2
  11. package/coverage/lcov-report/src/.umi/dumi/layout.tsx.html +3 -3
  12. package/coverage/lcov-report/src/.umi/index.html +2 -2
  13. package/coverage/lcov-report/src/.umi/plugin-antd/index.html +2 -2
  14. package/coverage/lcov-report/src/.umi/plugin-antd/runtime.tsx.html +2 -2
  15. package/coverage/lcov-report/src/.umi/plugin-helmet/exports.ts.html +3 -3
  16. package/coverage/lcov-report/src/.umi/plugin-helmet/index.html +2 -2
  17. package/coverage/lcov-report/src/.umi/plugin-initial-state/Provider.tsx.html +2 -2
  18. package/coverage/lcov-report/src/.umi/plugin-initial-state/exports.ts.html +2 -2
  19. package/coverage/lcov-report/src/.umi/plugin-initial-state/index.html +2 -2
  20. package/coverage/lcov-report/src/.umi/plugin-initial-state/models/index.html +2 -2
  21. package/coverage/lcov-report/src/.umi/plugin-initial-state/models/initialState.ts.html +2 -2
  22. package/coverage/lcov-report/src/.umi/plugin-initial-state/runtime.tsx.html +2 -2
  23. package/coverage/lcov-report/src/.umi/plugin-locale/SelectLang.tsx.html +2 -2
  24. package/coverage/lcov-report/src/.umi/plugin-locale/index.html +2 -2
  25. package/coverage/lcov-report/src/.umi/plugin-locale/locale.tsx.html +2 -2
  26. package/coverage/lcov-report/src/.umi/plugin-locale/localeExports.ts.html +5 -5
  27. package/coverage/lcov-report/src/.umi/plugin-locale/runtime.tsx.html +2 -2
  28. package/coverage/lcov-report/src/.umi/plugin-model/Provider.tsx.html +3 -3
  29. package/coverage/lcov-report/src/.umi/plugin-model/helpers/constant.tsx.html +2 -2
  30. package/coverage/lcov-report/src/.umi/plugin-model/helpers/dispatcher.tsx.html +2 -2
  31. package/coverage/lcov-report/src/.umi/plugin-model/helpers/executor.tsx.html +2 -2
  32. package/coverage/lcov-report/src/.umi/plugin-model/helpers/index.html +2 -2
  33. package/coverage/lcov-report/src/.umi/plugin-model/index.html +2 -2
  34. package/coverage/lcov-report/src/.umi/plugin-model/runtime.tsx.html +2 -2
  35. package/coverage/lcov-report/src/.umi/plugin-model/useModel.tsx.html +3 -3
  36. package/coverage/lcov-report/src/.umi/plugin-request/index.html +2 -2
  37. package/coverage/lcov-report/src/.umi/plugin-request/request.ts.html +6 -6
  38. package/coverage/lcov-report/src/.umi/umi.ts.html +6 -6
  39. package/coverage/src/.umi/core/devScripts.ts.html +241 -0
  40. package/coverage/src/.umi/core/history.ts.html +148 -0
  41. package/coverage/src/.umi/core/index.html +206 -0
  42. package/coverage/src/.umi/core/plugin.ts.html +109 -0
  43. package/coverage/src/.umi/core/pluginRegister.ts.html +160 -0
  44. package/coverage/src/.umi/core/polyfill.ts.html +97 -0
  45. package/coverage/src/.umi/core/routes.ts.html +29149 -0
  46. package/coverage/src/.umi/core/umiExports.ts.html +112 -0
  47. package/coverage/src/.umi/dumi/index.html +116 -0
  48. package/coverage/src/.umi/dumi/layout.tsx.html +109 -0
  49. package/coverage/src/.umi/index.html +116 -0
  50. package/coverage/src/.umi/plugin-antd/index.html +116 -0
  51. package/coverage/src/.umi/plugin-antd/runtime.tsx.html +172 -0
  52. package/coverage/src/.umi/plugin-helmet/exports.ts.html +94 -0
  53. package/coverage/src/.umi/plugin-helmet/index.html +116 -0
  54. package/coverage/src/.umi/plugin-initial-state/Provider.tsx.html +196 -0
  55. package/coverage/src/.umi/plugin-initial-state/exports.ts.html +106 -0
  56. package/coverage/src/.umi/plugin-initial-state/index.html +146 -0
  57. package/coverage/{lcov-report/src/.umi/dumi/demos → src/.umi/plugin-initial-state/models}/index.html +15 -15
  58. package/coverage/src/.umi/plugin-initial-state/models/initialState.ts.html +88 -0
  59. package/coverage/src/.umi/plugin-initial-state/runtime.tsx.html +124 -0
  60. package/coverage/src/.umi/plugin-locale/SelectLang.tsx.html +1246 -0
  61. package/coverage/src/.umi/plugin-locale/index.html +161 -0
  62. package/coverage/src/.umi/plugin-locale/locale.tsx.html +268 -0
  63. package/coverage/src/.umi/plugin-locale/localeExports.ts.html +778 -0
  64. package/coverage/src/.umi/plugin-locale/runtime.tsx.html +115 -0
  65. package/coverage/src/.umi/plugin-model/Provider.tsx.html +202 -0
  66. package/coverage/src/.umi/plugin-model/helpers/constant.tsx.html +97 -0
  67. package/coverage/src/.umi/plugin-model/helpers/dispatcher.tsx.html +142 -0
  68. package/coverage/src/.umi/plugin-model/helpers/executor.tsx.html +334 -0
  69. package/coverage/src/.umi/plugin-model/helpers/index.html +146 -0
  70. package/coverage/src/.umi/plugin-model/index.html +146 -0
  71. package/coverage/src/.umi/plugin-model/runtime.tsx.html +121 -0
  72. package/coverage/src/.umi/plugin-model/useModel.tsx.html +298 -0
  73. package/coverage/src/.umi/plugin-request/index.html +116 -0
  74. package/coverage/src/.umi/plugin-request/request.ts.html +919 -0
  75. package/coverage/src/.umi/umi.ts.html +268 -0
  76. package/es/ProEditTable/components/Summary/index.d.ts +2 -2
  77. package/es/ProEditTable/index.js +12 -8
  78. package/es/ProEditTable/propsType.d.ts +39 -41
  79. package/es/ProEditTable/utils/index.d.ts +1 -1
  80. package/es/ProEditTable/utils/index.js +6 -4
  81. package/es/ProEditTable/utils/tools.d.ts +57 -22
  82. package/es/ProEditTable/utils/tools.js +47 -21
  83. package/es/ProEnum/propsType.d.ts +1 -1
  84. package/es/ProForm/components/combination/Group/propsType.d.ts +1 -1
  85. package/es/ProForm/components/combination/ProModalSelect/propsType.d.ts +2 -2
  86. package/es/ProForm/components/render/propsType.d.ts +3 -6
  87. package/es/ProForm/propsType.d.ts +5 -3
  88. package/es/ProForm/propsType.js +0 -1
  89. package/es/ProForm/utils/useForm.d.ts +1 -1
  90. package/es/ProForm/utils/useRules.d.ts +1 -1
  91. package/es/ProIcon/propsTypes.d.ts +0 -4
  92. package/es/ProStep/components/Anchor/index.d.ts +2 -1
  93. package/es/ProStep/components/Item/index.d.ts +1 -1
  94. package/es/ProStep/components/Item/index.js +6 -2
  95. package/es/ProStep/components/Listener/index.d.ts +4 -3
  96. package/es/ProStep/components/Listener/index.js +18 -4
  97. package/es/ProStep/index.d.ts +7 -7
  98. package/es/ProStep/index.js +7 -3
  99. package/es/ProStep/propsType.d.ts +145 -5
  100. package/es/ProStep/utils/index.d.ts +16 -3
  101. package/es/ProStep/utils/index.js +11 -2
  102. package/es/ProTable/components/FormatColumn/index.js +2 -4
  103. package/es/ProTable/propsType.d.ts +14 -20
  104. package/es/ProTooltip/propsType.d.ts +0 -3
  105. package/es/ProTree/components/ProTreeSelect/propsType.d.ts +0 -7
  106. package/es/ProTree/propsType.d.ts +0 -11
  107. package/es/ProTreeModal/propsType.d.ts +0 -2
  108. package/es/index.d.ts +15 -11
  109. package/es/index.js +1 -12
  110. package/lib/ProEditTable/components/Summary/index.d.ts +2 -2
  111. package/lib/ProEditTable/index.js +12 -8
  112. package/lib/ProEditTable/propsType.d.ts +39 -41
  113. package/lib/ProEditTable/utils/index.d.ts +1 -1
  114. package/lib/ProEditTable/utils/index.js +6 -4
  115. package/lib/ProEditTable/utils/tools.d.ts +57 -22
  116. package/lib/ProEditTable/utils/tools.js +47 -21
  117. package/lib/ProEnum/propsType.d.ts +1 -1
  118. package/lib/ProForm/components/combination/Group/propsType.d.ts +1 -1
  119. package/lib/ProForm/components/combination/ProModalSelect/propsType.d.ts +2 -2
  120. package/lib/ProForm/components/render/propsType.d.ts +3 -6
  121. package/lib/ProForm/propsType.d.ts +5 -3
  122. package/lib/ProForm/propsType.js +0 -15
  123. package/lib/ProForm/utils/useForm.d.ts +1 -1
  124. package/lib/ProForm/utils/useRules.d.ts +1 -1
  125. package/lib/ProIcon/propsTypes.d.ts +0 -4
  126. package/lib/ProStep/components/Anchor/index.d.ts +2 -1
  127. package/lib/ProStep/components/Item/index.d.ts +1 -1
  128. package/lib/ProStep/components/Item/index.js +6 -2
  129. package/lib/ProStep/components/Listener/index.d.ts +4 -3
  130. package/lib/ProStep/components/Listener/index.js +18 -4
  131. package/lib/ProStep/index.d.ts +7 -7
  132. package/lib/ProStep/index.js +7 -3
  133. package/lib/ProStep/propsType.d.ts +145 -5
  134. package/lib/ProStep/utils/index.d.ts +16 -3
  135. package/lib/ProStep/utils/index.js +11 -2
  136. package/lib/ProTable/components/FormatColumn/index.js +2 -4
  137. package/lib/ProTable/propsType.d.ts +14 -20
  138. package/lib/ProTooltip/propsType.d.ts +0 -3
  139. package/lib/ProTree/components/ProTreeSelect/propsType.d.ts +0 -7
  140. package/lib/ProTree/propsType.d.ts +0 -11
  141. package/lib/ProTreeModal/propsType.d.ts +0 -2
  142. package/lib/index.d.ts +15 -11
  143. package/lib/index.js +7 -131
  144. package/package.json +1 -1
  145. package/coverage/lcov-report/src/.umi/dumi/demos/index.ts.html +0 -6340
package/lib/index.js CHANGED
@@ -16,6 +16,7 @@ var _exportNames = {
16
16
  ProDrawerForm: true,
17
17
  ProEditLabel: true,
18
18
  ProForm: true,
19
+ ProFormProvider: true,
19
20
  ProSelect: true,
20
21
  ProEnum: true,
21
22
  ProIcon: true,
@@ -102,6 +103,12 @@ Object.defineProperty(exports, "ProForm", {
102
103
  return _ProForm.default;
103
104
  }
104
105
  });
106
+ Object.defineProperty(exports, "ProFormProvider", {
107
+ enumerable: true,
108
+ get: function get() {
109
+ return _ProForm.ProFormProvider;
110
+ }
111
+ });
105
112
  Object.defineProperty(exports, "ProIcon", {
106
113
  enumerable: true,
107
114
  get: function get() {
@@ -178,17 +185,6 @@ var _ProEditTable = _interopRequireDefault(require("./ProEditTable"));
178
185
  var _ProDrawerForm = _interopRequireDefault(require("./ProDrawerForm"));
179
186
  var _ProEditLabel = _interopRequireDefault(require("./ProEditLabel"));
180
187
  var _ProForm = _interopRequireWildcard(require("./ProForm"));
181
- Object.keys(_ProForm).forEach(function (key) {
182
- if (key === "default" || key === "__esModule") return;
183
- if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
184
- if (key in exports && exports[key] === _ProForm[key]) return;
185
- Object.defineProperty(exports, key, {
186
- enumerable: true,
187
- get: function get() {
188
- return _ProForm[key];
189
- }
190
- });
191
- });
192
188
  var _components = require("./ProForm/components");
193
189
  Object.keys(_components).forEach(function (key) {
194
190
  if (key === "default" || key === "__esModule") return;
@@ -237,126 +233,6 @@ Object.keys(_locale).forEach(function (key) {
237
233
  var _ProBackBtn = _interopRequireDefault(require("./ProLayout/components/ProHeader/components/ProBackBtn"));
238
234
  var _ProEditableTable = _interopRequireDefault(require("./old/ProEditableTable"));
239
235
  var _ProCertValidity = _interopRequireDefault(require("./old/ProCertValidity"));
240
- var _propsType = require("./ProForm/propsType");
241
- Object.keys(_propsType).forEach(function (key) {
242
- if (key === "default" || key === "__esModule") return;
243
- if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
244
- if (key in exports && exports[key] === _propsType[key]) return;
245
- Object.defineProperty(exports, key, {
246
- enumerable: true,
247
- get: function get() {
248
- return _propsType[key];
249
- }
250
- });
251
- });
252
- var _propsType2 = require("./ProTable/propsType");
253
- Object.keys(_propsType2).forEach(function (key) {
254
- if (key === "default" || key === "__esModule") return;
255
- if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
256
- if (key in exports && exports[key] === _propsType2[key]) return;
257
- Object.defineProperty(exports, key, {
258
- enumerable: true,
259
- get: function get() {
260
- return _propsType2[key];
261
- }
262
- });
263
- });
264
- var _propsType3 = require("./ProEditTable/propsType");
265
- Object.keys(_propsType3).forEach(function (key) {
266
- if (key === "default" || key === "__esModule") return;
267
- if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
268
- if (key in exports && exports[key] === _propsType3[key]) return;
269
- Object.defineProperty(exports, key, {
270
- enumerable: true,
271
- get: function get() {
272
- return _propsType3[key];
273
- }
274
- });
275
- });
276
- var _propsType4 = require("./ProUpload/propsType");
277
- Object.keys(_propsType4).forEach(function (key) {
278
- if (key === "default" || key === "__esModule") return;
279
- if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
280
- if (key in exports && exports[key] === _propsType4[key]) return;
281
- Object.defineProperty(exports, key, {
282
- enumerable: true,
283
- get: function get() {
284
- return _propsType4[key];
285
- }
286
- });
287
- });
288
- var _propType = require("./ProTabs/propType");
289
- Object.keys(_propType).forEach(function (key) {
290
- if (key === "default" || key === "__esModule") return;
291
- if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
292
- if (key in exports && exports[key] === _propType[key]) return;
293
- Object.defineProperty(exports, key, {
294
- enumerable: true,
295
- get: function get() {
296
- return _propType[key];
297
- }
298
- });
299
- });
300
- var _PropTypes = require("./ProLayout/components/ProHeader/PropTypes");
301
- Object.keys(_PropTypes).forEach(function (key) {
302
- if (key === "default" || key === "__esModule") return;
303
- if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
304
- if (key in exports && exports[key] === _PropTypes[key]) return;
305
- Object.defineProperty(exports, key, {
306
- enumerable: true,
307
- get: function get() {
308
- return _PropTypes[key];
309
- }
310
- });
311
- });
312
- var _propsType5 = require("./ProTooltip/propsType");
313
- Object.keys(_propsType5).forEach(function (key) {
314
- if (key === "default" || key === "__esModule") return;
315
- if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
316
- if (key in exports && exports[key] === _propsType5[key]) return;
317
- Object.defineProperty(exports, key, {
318
- enumerable: true,
319
- get: function get() {
320
- return _propsType5[key];
321
- }
322
- });
323
- });
324
- var _propsTypes = require("./ProIcon/propsTypes");
325
- Object.keys(_propsTypes).forEach(function (key) {
326
- if (key === "default" || key === "__esModule") return;
327
- if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
328
- if (key in exports && exports[key] === _propsTypes[key]) return;
329
- Object.defineProperty(exports, key, {
330
- enumerable: true,
331
- get: function get() {
332
- return _propsTypes[key];
333
- }
334
- });
335
- });
336
- var _propsType6 = require("./ProTree/propsType");
337
- Object.keys(_propsType6).forEach(function (key) {
338
- if (key === "default" || key === "__esModule") return;
339
- if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
340
- if (key in exports && exports[key] === _propsType6[key]) return;
341
- Object.defineProperty(exports, key, {
342
- enumerable: true,
343
- get: function get() {
344
- return _propsType6[key];
345
- }
346
- });
347
- });
348
- var _propsType7 = require("./ProTreeModal/propsType");
349
- Object.keys(_propsType7).forEach(function (key) {
350
- if (key === "default" || key === "__esModule") return;
351
- if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
352
- if (key in exports && exports[key] === _propsType7[key]) return;
353
- Object.defineProperty(exports, key, {
354
- enumerable: true,
355
- get: function get() {
356
- return _propsType7[key];
357
- }
358
- });
359
- });
360
236
  var _tokens = require("./tokens");
361
237
  Object.keys(_tokens).forEach(function (key) {
362
238
  if (key === "default" || key === "__esModule") return;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zat-design/sisyphus-react",
3
- "version": "3.11.14-beta.11",
3
+ "version": "3.11.14-beta.12",
4
4
  "license": "MIT",
5
5
  "main": "lib/index.js",
6
6
  "module": "es/index.js",