@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
@@ -0,0 +1,5 @@
1
+ {
2
+ "recommendations": [
3
+ "kisstkondoros.vscode-codemetrics"
4
+ ]
5
+ }
@@ -57,7 +57,7 @@
57
57
  <template id="filterTemplate">
58
58
  <div class="quiet">
59
59
  Filter:
60
- <input oninput="onInput()" type="search" id="fileSearch">
60
+ <input type="search" id="fileSearch">
61
61
  </div>
62
62
  </template>
63
63
  </div>
@@ -226,7 +226,7 @@ export const __mfsu = <span class="cstat-no" title="statement not covered" >1;</
226
226
  <div class='footer quiet pad2 space-top1 center small'>
227
227
  Code coverage generated by
228
228
  <a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
229
- at 2024-01-24T02:49:50.075Z
229
+ at 2025-03-20T08:06:24.920Z
230
230
  </div>
231
231
  <script src="../../../prettify.js"></script>
232
232
  <script>
@@ -57,7 +57,7 @@
57
57
  <template id="filterTemplate">
58
58
  <div class="quiet">
59
59
  Filter:
60
- <input oninput="onInput()" type="search" id="fileSearch">
60
+ <input type="search" id="fileSearch">
61
61
  </div>
62
62
  </template>
63
63
  </div>
@@ -106,7 +106,7 @@
106
106
  <span class="cline-any cline-neutral">&nbsp;</span>
107
107
  <span class="cline-any cline-neutral">&nbsp;</span>
108
108
  <span class="cline-any cline-neutral">&nbsp;</span></td><td class="text"><pre class="prettyprint lang-js">// @ts-nocheck
109
- import { createBrowserHistory, History } from '/Users/zakj/Desktop/pro/za-material-warehouse/node_modules/@umijs/runtime';
109
+ import { createBrowserHistory, History } from '/Users/zakj/site/zakj/za-material-warehouse/node_modules/umi/node_modules/@umijs/runtime';
110
110
  &nbsp;
111
111
  let options = <span class="cstat-no" title="statement not covered" >{</span>
112
112
  "basename": "/"
@@ -133,7 +133,7 @@ export { history };
133
133
  <div class='footer quiet pad2 space-top1 center small'>
134
134
  Code coverage generated by
135
135
  <a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
136
- at 2024-01-24T02:49:50.075Z
136
+ at 2025-03-20T08:06:24.920Z
137
137
  </div>
138
138
  <script src="../../../prettify.js"></script>
139
139
  <script>
@@ -25,7 +25,7 @@
25
25
  <div class='fl pad1y space-right2'>
26
26
  <span class="strong">0% </span>
27
27
  <span class="quiet">Statements</span>
28
- <span class='fraction'>0/171</span>
28
+ <span class='fraction'>0/173</span>
29
29
  </div>
30
30
 
31
31
 
@@ -39,14 +39,14 @@
39
39
  <div class='fl pad1y space-right2'>
40
40
  <span class="strong">0% </span>
41
41
  <span class="quiet">Functions</span>
42
- <span class='fraction'>0/132</span>
42
+ <span class='fraction'>0/134</span>
43
43
  </div>
44
44
 
45
45
 
46
46
  <div class='fl pad1y space-right2'>
47
47
  <span class="strong">0% </span>
48
48
  <span class="quiet">Lines</span>
49
- <span class='fraction'>0/170</span>
49
+ <span class='fraction'>0/172</span>
50
50
  </div>
51
51
 
52
52
 
@@ -57,7 +57,7 @@
57
57
  <template id="filterTemplate">
58
58
  <div class="quiet">
59
59
  Filter:
60
- <input oninput="onInput()" type="search" id="fileSearch">
60
+ <input type="search" id="fileSearch">
61
61
  </div>
62
62
  </template>
63
63
  </div>
@@ -159,13 +159,13 @@
159
159
  <div class="chart"><div class="cover-fill" style="width: 0%"></div><div class="cover-empty" style="width: 100%"></div></div>
160
160
  </td>
161
161
  <td data-value="0" class="pct low">0%</td>
162
- <td data-value="139" class="abs low">0/139</td>
162
+ <td data-value="141" class="abs low">0/141</td>
163
163
  <td data-value="0" class="pct low">0%</td>
164
164
  <td data-value="3" class="abs low">0/3</td>
165
165
  <td data-value="0" class="pct low">0%</td>
166
- <td data-value="126" class="abs low">0/126</td>
166
+ <td data-value="128" class="abs low">0/128</td>
167
167
  <td data-value="0" class="pct low">0%</td>
168
- <td data-value="138" class="abs low">0/138</td>
168
+ <td data-value="140" class="abs low">0/140</td>
169
169
  </tr>
170
170
 
171
171
  <tr>
@@ -191,7 +191,7 @@
191
191
  <div class='footer quiet pad2 space-top1 center small'>
192
192
  Code coverage generated by
193
193
  <a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
194
- at 2024-01-24T02:49:50.075Z
194
+ at 2025-03-20T08:06:24.920Z
195
195
  </div>
196
196
  <script src="../../../prettify.js"></script>
197
197
  <script>
@@ -57,7 +57,7 @@
57
57
  <template id="filterTemplate">
58
58
  <div class="quiet">
59
59
  Filter:
60
- <input oninput="onInput()" type="search" id="fileSearch">
60
+ <input type="search" id="fileSearch">
61
61
  </div>
62
62
  </template>
63
63
  </div>
@@ -80,7 +80,7 @@
80
80
  <span class="cline-any cline-neutral">&nbsp;</span>
81
81
  <span class="cline-any cline-neutral">&nbsp;</span>
82
82
  <span class="cline-any cline-neutral">&nbsp;</span></td><td class="text"><pre class="prettyprint lang-js">// @ts-nocheck
83
- import { Plugin } from '/Users/zakj/Desktop/pro/za-material-warehouse/node_modules/@umijs/runtime';
83
+ import { Plugin } from '/Users/zakj/site/zakj/za-material-warehouse/node_modules/umi/node_modules/@umijs/runtime';
84
84
  &nbsp;
85
85
  const plugin = <span class="cstat-no" title="statement not covered" >new Plugin({</span>
86
86
  validKeys: ['modifyClientRenderOpts','patchRoutes','rootContainer','render','onRouteChange','__mfsu','antd','getInitialState','initialStateConfig','locale','request',],
@@ -94,7 +94,7 @@ export { plugin };
94
94
  <div class='footer quiet pad2 space-top1 center small'>
95
95
  Code coverage generated by
96
96
  <a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
97
- at 2024-01-24T02:49:50.075Z
97
+ at 2025-03-20T08:06:24.920Z
98
98
  </div>
99
99
  <script src="../../../prettify.js"></script>
100
100
  <script>
@@ -57,7 +57,7 @@
57
57
  <template id="filterTemplate">
58
58
  <div class="quiet">
59
59
  Filter:
60
- <input oninput="onInput()" type="search" id="fileSearch">
60
+ <input type="search" id="fileSearch">
61
61
  </div>
62
62
  </template>
63
63
  </div>
@@ -115,14 +115,14 @@
115
115
  <span class="cline-any cline-no">&nbsp;</span>
116
116
  <span class="cline-any cline-neutral">&nbsp;</span></td><td class="text"><pre class="prettyprint lang-js">// @ts-nocheck
117
117
  import { plugin } from './plugin';
118
- import * as Plugin_0 from '/Users/zakj/Desktop/pro/za-material-warehouse/src/.umi/plugin-antd/runtime.tsx';
118
+ import * as Plugin_0 from '/Users/zakj/site/zakj/za-material-warehouse/src/.umi/plugin-antd/runtime.tsx';
119
119
  import * as Plugin_1 from '../plugin-initial-state/runtime';
120
- import * as Plugin_2 from '/Users/zakj/Desktop/pro/za-material-warehouse/src/.umi/plugin-locale/runtime.tsx';
120
+ import * as Plugin_2 from '/Users/zakj/site/zakj/za-material-warehouse/src/.umi/plugin-locale/runtime.tsx';
121
121
  import * as Plugin_3 from '../plugin-model/runtime';
122
122
  &nbsp;
123
123
  <span class="cstat-no" title="statement not covered" > plugin.register({</span>
124
124
  apply: Plugin_0,
125
- path: '/Users/zakj/Desktop/pro/za-material-warehouse/src/.umi/plugin-antd/runtime.tsx',
125
+ path: '/Users/zakj/site/zakj/za-material-warehouse/src/.umi/plugin-antd/runtime.tsx',
126
126
  });
127
127
  <span class="cstat-no" title="statement not covered" > plugin.register({</span>
128
128
  apply: Plugin_1,
@@ -130,7 +130,7 @@ import * as Plugin_3 from '../plugin-model/runtime';
130
130
  });
131
131
  <span class="cstat-no" title="statement not covered" > plugin.register({</span>
132
132
  apply: Plugin_2,
133
- path: '/Users/zakj/Desktop/pro/za-material-warehouse/src/.umi/plugin-locale/runtime.tsx',
133
+ path: '/Users/zakj/site/zakj/za-material-warehouse/src/.umi/plugin-locale/runtime.tsx',
134
134
  });
135
135
  <span class="cstat-no" title="statement not covered" > plugin.register({</span>
136
136
  apply: Plugin_3,
@@ -145,7 +145,7 @@ export const __mfsu = <span class="cstat-no" title="statement not covered" >1;</
145
145
  <div class='footer quiet pad2 space-top1 center small'>
146
146
  Code coverage generated by
147
147
  <a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
148
- at 2024-01-24T02:49:50.075Z
148
+ at 2025-03-20T08:06:24.920Z
149
149
  </div>
150
150
  <script src="../../../prettify.js"></script>
151
151
  <script>
@@ -57,7 +57,7 @@
57
57
  <template id="filterTemplate">
58
58
  <div class="quiet">
59
59
  Filter:
60
- <input oninput="onInput()" type="search" id="fileSearch">
60
+ <input type="search" id="fileSearch">
61
61
  </div>
62
62
  </template>
63
63
  </div>
@@ -82,7 +82,7 @@ export {};
82
82
  <div class='footer quiet pad2 space-top1 center small'>
83
83
  Code coverage generated by
84
84
  <a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
85
- at 2024-01-24T02:49:50.075Z
85
+ at 2025-03-20T08:06:24.920Z
86
86
  </div>
87
87
  <script src="../../../prettify.js"></script>
88
88
  <script>