@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
@@ -14,7 +14,8 @@ var _reactLazyload = _interopRequireWildcard(require("react-lazyload"));
14
14
  var _lodash = require("lodash");
15
15
  var _index = require("../../index");
16
16
  var _ProCollapse = _interopRequireDefault(require("../../../ProLayout/components/ProCollapse"));
17
- var _excluded = ["id", "title", "collapse", "children", "lazyLoad"];
17
+ var _excluded = ["id", "title", "collapse", "children", "lazyLoad", "order"];
18
+ // 默认的懒加载配置
18
19
  var defaultLazyLoadConfig = {
19
20
  height: 200,
20
21
  offset: 100,
@@ -27,6 +28,8 @@ var ProStepItem = function ProStepItem(_ref) {
27
28
  collapseItem = _ref$collapse === void 0 ? true : _ref$collapse,
28
29
  children = _ref.children,
29
30
  stepLazyLoad = _ref.lazyLoad,
31
+ _ref$order = _ref.order,
32
+ order = _ref$order === void 0 ? 0 : _ref$order,
30
33
  restProps = (0, _objectWithoutProperties2.default)(_ref, _excluded);
31
34
  var _useStep = (0, _index.useStep)(),
32
35
  register = _useStep.register,
@@ -39,13 +42,14 @@ var ProStepItem = function ProStepItem(_ref) {
39
42
  register === null || register === void 0 ? void 0 : register((0, _objectSpread2.default)({
40
43
  id: id,
41
44
  title: title,
45
+ order: order,
42
46
  lazyLoad: lazyLoad
43
47
  }, restProps));
44
48
  }, 0);
45
49
  return function () {
46
50
  clearTimeout(timeoutId);
47
51
  };
48
- }, [id, title, lazyLoad, restProps, register]);
52
+ }, [id, title, order, lazyLoad, restProps, register]);
49
53
  var renderChildren = function renderChildren() {
50
54
  if (lazyLoad) {
51
55
  var lazyLoadProps = (0, _lodash.isBoolean)(lazyLoad) ? defaultLazyLoadConfig : lazyLoad;
@@ -1,3 +1,4 @@
1
- import React from 'react';
2
- declare const _default: ({ children, delayTime, excludes, ...props }: any) => React.DetailedReactHTMLElement<any, HTMLElement>;
3
- export default _default;
1
+ import { ReactElement } from 'react';
2
+ import type { ListenerProps } from '../../propsType';
3
+ declare const Listener: ({ children, delayTime, excludes, ...props }: ListenerProps) => ReactElement;
4
+ export default Listener;
@@ -15,6 +15,11 @@ var _reactLazyload = require("react-lazyload");
15
15
  var _index = require("../../index");
16
16
  var _utils = require("../../utils");
17
17
  var _excluded = ["children", "delayTime", "excludes"];
18
+ /**
19
+ * 检查错误列表并返回第一个错误项
20
+ * @param arr DOM元素数组
21
+ * @returns 错误元素信息
22
+ */
18
23
  var checkErrorList = function checkErrorList(arr) {
19
24
  for (var i = 0; i < arr.length; i++) {
20
25
  if (arr[i].className.includes('errored')) {
@@ -26,8 +31,12 @@ var checkErrorList = function checkErrorList(arr) {
26
31
  }
27
32
  return null;
28
33
  };
34
+ /**
35
+ * 查找第一个错误的DOM元素
36
+ * @returns 错误元素信息
37
+ */
29
38
  var findFirstErrorDom = function findFirstErrorDom() {
30
- var errorList = document.querySelectorAll('.pro-step-com-menu-item') || [];
39
+ var errorList = document.querySelectorAll('.pro-step-com-menu-item');
31
40
  var hasErrorItem = document.querySelectorAll('.pro-step-com-menu-item .errored');
32
41
  var hasFormError = document.querySelector('.ant-form-item-explain-error');
33
42
  if ((hasErrorItem === null || hasErrorItem === void 0 ? void 0 : hasErrorItem.length) && !hasFormError) {
@@ -35,13 +44,17 @@ var findFirstErrorDom = function findFirstErrorDom() {
35
44
  }
36
45
  return null;
37
46
  };
38
- // Function to check if all modules are loaded
47
+ /**
48
+ * 检查所有模块是否已加载完成
49
+ * @param data 模块加载数据
50
+ * @returns 是否所有模块都已加载
51
+ */
39
52
  var areAllModulesLoaded = function areAllModulesLoaded(data) {
40
53
  return data.every(function (item) {
41
54
  return (item === null || item === void 0 ? void 0 : item.loaded) === true;
42
55
  });
43
56
  };
44
- var _default = exports.default = function _default(_ref) {
57
+ var Listener = function Listener(_ref) {
45
58
  var children = _ref.children,
46
59
  delayTime = _ref.delayTime,
47
60
  excludes = _ref.excludes,
@@ -95,4 +108,5 @@ var _default = exports.default = function _default(_ref) {
95
108
  }, _callee);
96
109
  })), 3000)
97
110
  }));
98
- };
111
+ };
112
+ var _default = exports.default = Listener;
@@ -1,12 +1,12 @@
1
1
  /// <reference types="react" />
2
- import { ProStepType } from './propsType';
2
+ import { ProStepType, ProStepContextType } from './propsType';
3
3
  import './style/index.less';
4
- export declare const ProStepContext: import("react").Context<any>;
5
- export declare const useStep: () => any;
4
+ export declare const ProStepContext: import("react").Context<ProStepContextType>;
5
+ export declare const useStep: () => Partial<ProStepContextType>;
6
6
  declare const ProStep: {
7
- ({ children, ...resetProps }: ProStepType): import("react/jsx-runtime").JSX.Element;
8
- useStep: () => any;
9
- Item: ({ id, title, collapse: collapseItem, children, lazyLoad: stepLazyLoad, ...restProps }: import("./propsType").ProStepItemPropsType) => import("react/jsx-runtime").JSX.Element;
10
- Listener: ({ children, delayTime, excludes, ...props }: any) => import("react").DetailedReactHTMLElement<any, HTMLElement>;
7
+ ({ children, ...resetProps }: ProStepType): JSX.Element;
8
+ useStep: () => Partial<ProStepContextType>;
9
+ Item: ({ id, title, collapse: collapseItem, children, lazyLoad: stepLazyLoad, order, ...restProps }: import("./propsType").ProStepItemPropsType) => JSX.Element;
10
+ Listener: ({ children, delayTime, excludes, ...props }: import("./propsType").ListenerProps) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
11
11
  };
12
12
  export default ProStep;
@@ -19,7 +19,9 @@ var _Step = _interopRequireDefault(require("./components/Step"));
19
19
  var _Item = _interopRequireDefault(require("./components/Item"));
20
20
  var _Listener = _interopRequireDefault(require("./components/Listener"));
21
21
  require("./style/index.less");
22
- var _excluded = ["children"];
22
+ var _excluded = ["children"],
23
+ _excluded2 = ["id", "form", "title", "validator", "order", "disabled", "lazyLoad"];
24
+ // 创建上下文并提供类型
23
25
  var ProStepContext = exports.ProStepContext = /*#__PURE__*/(0, _react.createContext)(null);
24
26
  var useStep = exports.useStep = function useStep() {
25
27
  return (0, _react.useContext)(ProStepContext) || {};
@@ -82,7 +84,9 @@ var ProStep = function ProStep(_ref) {
82
84
  title = _ref4.title,
83
85
  validator = _ref4.validator,
84
86
  order = _ref4.order,
85
- disabled = _ref4.disabled;
87
+ disabled = _ref4.disabled,
88
+ lazyLoad = _ref4.lazyLoad,
89
+ rest = (0, _objectWithoutProperties2.default)(_ref4, _excluded2);
86
90
  var record = {};
87
91
  record.id = id;
88
92
  record.title = title;
@@ -92,7 +96,7 @@ var ProStep = function ProStep(_ref) {
92
96
  }
93
97
  if (disabled) {
94
98
  registerMap.current[id] = record;
95
- return null;
99
+ return;
96
100
  }
97
101
  var subEvent = /*#__PURE__*/function () {
98
102
  var _ref5 = (0, _asyncToGenerator2.default)(/*#__PURE__*/(0, _regeneratorRuntime2.default)().mark(function _callee() {
@@ -57,11 +57,6 @@ export interface ProStepPropsType {
57
57
  */
58
58
  lazyLoad?: boolean | LazyLoadProps;
59
59
  }
60
- /**
61
- * ProStep 组件基础类型
62
- * @type ProStepType
63
- */
64
- export type ProStepType = ProStepPropsType;
65
60
  /**
66
61
  * ProStep 子项组件属性类型
67
62
  * @interface ProStepItemPropsType
@@ -88,3 +83,148 @@ export interface ProStepItemPropsType {
88
83
  * @type ProStepItemType
89
84
  */
90
85
  export type ProStepItemType = ProStepItemPropsType;
86
+ /**
87
+ * ProStep组件上下文类型
88
+ * @interface ProStepContextType
89
+ */
90
+ export interface ProStepContextType {
91
+ /** 注册映射引用 */
92
+ registerMap: React.MutableRefObject<Record<string, RegisterMapItem>>;
93
+ /** 是否折叠 */
94
+ collapse?: boolean;
95
+ /** 注册函数 */
96
+ register: (params: RegisterParams) => void;
97
+ /** 通知函数 */
98
+ notify: (params?: NotifyParams) => Promise<any[]>;
99
+ /** 触发特定项的函数 */
100
+ triggerTo: (keys: string[]) => Promise<any[]>;
101
+ /** 处理滚动的函数 */
102
+ handleScroll: (id: string, options?: ScrollOptions) => void;
103
+ /** 懒加载配置 */
104
+ lazyLoad?: boolean | any;
105
+ /** 取消注册函数 */
106
+ unNotify: (keys: string | string[]) => void;
107
+ }
108
+ /**
109
+ * 注册参数类型
110
+ * @interface RegisterParams
111
+ */
112
+ export interface RegisterParams {
113
+ /** 唯一标识符 */
114
+ id: string;
115
+ /** 表单实例 */
116
+ form?: any;
117
+ /** 标题 */
118
+ title: string;
119
+ /** 自定义验证器 */
120
+ validator?: () => Promise<any>;
121
+ /** 排序值 */
122
+ order: number;
123
+ /** 是否禁用 */
124
+ disabled?: boolean;
125
+ /** 懒加载配置 */
126
+ lazyLoad?: boolean | any;
127
+ /** 允许其他任意属性 */
128
+ [key: string]: any;
129
+ }
130
+ /**
131
+ * 注册映射项类型
132
+ * @interface RegisterMapItem
133
+ */
134
+ export interface RegisterMapItem {
135
+ /** 唯一标识符 */
136
+ id: string;
137
+ /** 标题 */
138
+ title: string;
139
+ /** 排序值 */
140
+ order: number;
141
+ /** 提交事件 */
142
+ subEvent?: () => Promise<any>;
143
+ /** 允许其他任意属性 */
144
+ [key: string]: any;
145
+ }
146
+ /**
147
+ * 通知参数类型
148
+ * @interface NotifyParams
149
+ */
150
+ export interface NotifyParams {
151
+ /** 排除项 */
152
+ excludes?: string[];
153
+ }
154
+ /**
155
+ * 滚动选项类型
156
+ * @interface ScrollOptions
157
+ */
158
+ export interface ScrollOptions {
159
+ /** 目标偏移量 */
160
+ targetOffset?: number;
161
+ /** 是否滚动到错误位置 */
162
+ scrollToError?: boolean;
163
+ }
164
+ /**
165
+ * ProStep监听器属性类型
166
+ * @interface ListenerProps
167
+ */
168
+ export interface ListenerProps {
169
+ /** 子元素 */
170
+ children: React.ReactElement;
171
+ /** 延迟时间 */
172
+ delayTime?: number;
173
+ /** 排除项 */
174
+ excludes?: string[];
175
+ /** 允许其他任意属性 */
176
+ [key: string]: any;
177
+ }
178
+ /**
179
+ * 错误结果类型
180
+ * @interface ErrorResult
181
+ */
182
+ export interface ErrorResult {
183
+ /** 错误DOM元素 */
184
+ errorDom: HTMLElement | null;
185
+ /** 索引 */
186
+ index: number;
187
+ }
188
+ /**
189
+ * 锚点SVG属性类型
190
+ * @interface AnchorSvgProps
191
+ */
192
+ export interface AnchorSvgProps {
193
+ /** 颜色 */
194
+ color?: string;
195
+ }
196
+ /**
197
+ * 菜单项属性类型
198
+ * @interface MenuItemProps
199
+ */
200
+ export interface MenuItemProps {
201
+ /** 名称 */
202
+ name: string;
203
+ /** 编码 */
204
+ code: string;
205
+ /** 是否开启 */
206
+ onOff: boolean;
207
+ /** 是否是开始项 */
208
+ isStart?: boolean;
209
+ /** 是否是结束项 */
210
+ isEnd?: boolean;
211
+ /** 是否禁用 */
212
+ isDisabled?: boolean;
213
+ /** 是否是当前步骤 */
214
+ isCurrentStep?: boolean;
215
+ /** 是否已检查 */
216
+ isChecked?: boolean;
217
+ /** 错误数量 */
218
+ errorNum?: number;
219
+ /** 当前数量 */
220
+ currentNum?: number;
221
+ /** 目标偏移量 */
222
+ targetOffset?: number;
223
+ /** 是否滚动到错误位置 */
224
+ scrollToError?: boolean;
225
+ }
226
+ /**
227
+ * ProStep 组件基础类型
228
+ * @type ProStepType
229
+ */
230
+ export type ProStepType = ProStepPropsType;
@@ -1,5 +1,18 @@
1
+ import React from 'react';
1
2
  import type { LoadedMapType } from '../propsType';
2
- export declare const handleScroll: (id: any, options: any) => void;
3
- /** 获取加载模块数据信息 */
4
- export declare const getLoadedMap: (registerMap: any) => LoadedMapType[];
3
+ /**
4
+ * 处理滚动到指定元素位置
5
+ * @param id 目标元素的ID
6
+ * @param options 滚动选项
7
+ */
8
+ export declare const handleScroll: (id: string, options?: {
9
+ targetOffset?: number;
10
+ scrollToError?: boolean;
11
+ }) => void;
12
+ /**
13
+ * 获取加载模块数据信息
14
+ * @param registerMap 注册映射对象
15
+ * @returns 模块加载状态列表
16
+ */
17
+ export declare const getLoadedMap: (registerMap: React.MutableRefObject<Record<string, any>>) => LoadedMapType[];
5
18
  export default handleScroll;
@@ -7,6 +7,11 @@ Object.defineProperty(exports, "__esModule", {
7
7
  exports.handleScroll = exports.getLoadedMap = exports.default = void 0;
8
8
  var _objectSpread2 = _interopRequireDefault(require("@babel/runtime/helpers/objectSpread2"));
9
9
  var _lodash = require("lodash");
10
+ /**
11
+ * 处理滚动到指定元素位置
12
+ * @param id 目标元素的ID
13
+ * @param options 滚动选项
14
+ */
10
15
  var handleScroll = exports.handleScroll = function handleScroll(id, options) {
11
16
  var _ref = options || {},
12
17
  _ref$targetOffset = _ref.targetOffset,
@@ -23,10 +28,14 @@ var handleScroll = exports.handleScroll = function handleScroll(id, options) {
23
28
  }, 100), 0);
24
29
  }
25
30
  };
26
- /** 获取加载模块数据信息 */
31
+ /**
32
+ * 获取加载模块数据信息
33
+ * @param registerMap 注册映射对象
34
+ * @returns 模块加载状态列表
35
+ */
27
36
  var getLoadedMap = exports.getLoadedMap = function getLoadedMap(registerMap) {
28
37
  if (!(registerMap === null || registerMap === void 0 ? void 0 : registerMap.current)) {
29
- return undefined;
38
+ return [];
30
39
  }
31
40
  var stepList = Object.values(registerMap === null || registerMap === void 0 ? void 0 : registerMap.current).map(function (item) {
32
41
  return (0, _objectSpread2.default)((0, _objectSpread2.default)({}, (0, _lodash.pick)(item, ['id', 'order', 'title'])), {}, {
@@ -119,9 +119,6 @@ var formatColumn = exports.formatColumn = function formatColumn(_ref2) {
119
119
  }
120
120
  };
121
121
  if (column === null || column === void 0 ? void 0 : column.render) {
122
- // if (!originalObj && Object.keys(originalObj ?? {}).length === 0 && !onDiff) {
123
- // return;
124
- // }
125
122
  var originalRender = column.render; // 保存原始的 render 方法
126
123
  // 自定义render 手动重载下
127
124
  column.render = function (value, record, index) {
@@ -219,7 +216,8 @@ var formatColumn = exports.formatColumn = function formatColumn(_ref2) {
219
216
  if (ellipsis) {
220
217
  column.ellipsis = false;
221
218
  }
222
- var valueTypePrecision = precision;
219
+ var valueTypePrecision = precision !== null && precision !== void 0 ? precision : 0;
220
+ // 千分位、千分位带CNY前缀, 百分比、千分比保留小数点2位
223
221
  if (['percentage', 'permillage', 'thousandth', 'thousandthCNY'].includes(valueType)) {
224
222
  valueTypePrecision = precision !== null && precision !== void 0 ? precision : 2;
225
223
  }
@@ -3,6 +3,7 @@ import { TableProps } from 'antd/es/table/Table';
3
3
  import { ColumnType, GetRowKey, RowSelectionType } from 'antd/es/table/interface';
4
4
  import { FormInstance } from 'antd';
5
5
  import type { TooltipProps } from 'antd';
6
+ import type { TabsProps } from 'antd/es/tabs';
6
7
  /**
7
8
  * 合计栏的每列配置参数
8
9
  */
@@ -323,6 +324,17 @@ export interface ProTableType<T = any> extends Omit<TableProps<any>, 'summary' |
323
324
  * @default undefined
324
325
  */
325
326
  tableId?: string;
327
+ /**
328
+ * 表格 tabs查询 配置
329
+ * @description 用于配置表格的 tabs 选项
330
+ * @default undefined
331
+ */
332
+ tabs?: {
333
+ code: string;
334
+ dataSource: any[];
335
+ transformResponse?: (res: any) => any[];
336
+ tabsProps?: TabsProps;
337
+ };
326
338
  /**
327
339
  * 表格行 key 的取值
328
340
  * @description 表格行数据的唯一标识字段
@@ -647,7 +659,7 @@ export type ProTableServiceType<Req, Res> = (params?: ProTableParamsType<Req>) =
647
659
  /**
648
660
  * useAntdTable 状态
649
661
  */
650
- export interface ProTableUseAntdTableStateType<I, R> {
662
+ export interface ProTableUseAntdTableType<I, R> {
651
663
  /**
652
664
  * 表格数据
653
665
  * @description 当前表格显示的数据
@@ -694,23 +706,5 @@ export interface ProTableUseAntdTableStateType<I, R> {
694
706
  export type ProTableProps<T = any> = ProTableType<T>;
695
707
  export type ProTableColumn = ProTableColumnType;
696
708
  export type ProTableSummaryProps = ProTableSummaryType;
697
- export type PaginationProps = ProTablePaginationType;
698
- export type PaginationType = ProTablePaginationType;
699
- export type DragStartGuardProps = ProTableDragStartGuardType;
700
- export type DragEndGuardProps = ProTableDragEndGuardType;
701
- export type DragCommonGuardProps<T> = ProTableDragCommonGuardType<T>;
702
- export type DragStartGuardType = ProTableDragStartGuardType;
703
- export type DragEndGuardType = ProTableDragEndGuardType;
704
- export type DragCommonGuardType<T> = ProTableDragCommonGuardType<T>;
705
- export type RequestOptions<T, R> = ProTableRequestOptionsType<T, R>;
706
- export type RequestOptionsType<T, R> = ProTableRequestOptionsType<T, R>;
707
- export type UseAntdTableState<I, R> = ProTableUseAntdTableStateType<I, R>;
708
- export type UseAntdTableStateType<I, R> = ProTableUseAntdTableStateType<I, R>;
709
- export type Response<T = any> = ProTableResponseType<T>;
710
- export type List<T> = ProTableListType<T>;
711
- export type ListResponse<T> = ProTableListResponseType<T>;
712
- export type Params<T = any> = ProTableParamsType<T>;
713
- export type Service<Req, Res> = ProTableServiceType<Req, Res>;
714
- export type TableDiffConfigType = ProTableDiffConfigType;
715
- export type CreateTreeFromArrayOptions = ProTableCreateTreeFromArrayType;
709
+ export type UseAntdTableState<I, R> = ProTableUseAntdTableType<I, R>;
716
710
  export {};
@@ -56,7 +56,4 @@ export type ProTooltipTriggerNodeType = HTMLElement & {
56
56
  /** 父节点元素 */
57
57
  parentNode: HTMLElement;
58
58
  };
59
- export type ProTooltipPropsType = ProTooltipType;
60
59
  export type ProTooltipProps = ProTooltipType;
61
- export type RefObjectPropsType<T> = ProTooltipRefObjectType<T>;
62
- export type ProtooltipTriggerNodeType = ProTooltipTriggerNodeType;
@@ -437,12 +437,5 @@ export interface ProTreeSelectResponseDataType {
437
437
  */
438
438
  code?: number;
439
439
  }
440
- export type DataProps = ProTreeSelectDataType;
441
- export type DataOption = ProTreeSelectDataOptionType;
442
- export type BaseOptionType = ProTreeSelectBaseOptionType;
443
- export type DefaultOptionType = ProTreeSelectDefaultOptionType;
444
440
  export type PropTreeSelectProps = ProTreeSelectType;
445
441
  export type ProSelectAction = ProTreeSelectActionType;
446
- export type TreeNodeData = ProTreeSelectNodeDataType;
447
- export type TreeSelectFormProps = ProTreeSelectFormType;
448
- export type ResponseData = ProTreeSelectResponseDataType;
@@ -809,17 +809,6 @@ export interface ProTreeResponseDataType {
809
809
  */
810
810
  code?: number;
811
811
  }
812
- export type AllValueType = ProTreeValueType;
813
- export type Key = ProTreeKeyType;
814
- export type TreeDataProps = ProTreeDataType;
815
812
  export type ProTreeProps = ProTreeType;
816
- export type DataProps = ProTreeDataPropsType;
817
- export type DataOption = ProTreeDataOptionType;
818
- export type BaseOptionType = ProTreeBaseOptionType;
819
- export type DefaultOptionType = ProTreeDefaultOptionType;
820
813
  export type PropTreeSelectProps = ProTreeSelectType;
821
- export type ProSelectAction = ProTreeSelectActionType;
822
- export type TreeNodeData = ProTreeNodeDataType;
823
- export type TreeSelectFormProps = ProTreeSelectFormType;
824
- export type ResponseData = ProTreeResponseDataType;
825
814
  export {};
@@ -296,7 +296,5 @@ export interface ProTreeModalType {
296
296
  */
297
297
  openChange?: (open: boolean) => void;
298
298
  }
299
- export type TreeModalMode = ProTreeModalModeType;
300
- export type AppointProps = ProTreeModalAppointType;
301
299
  export type ProTreeModalProps = ProTreeModalType;
302
300
  export type ProTreeModalAction = ProTreeModalActionType;
package/lib/index.d.ts CHANGED
@@ -9,7 +9,7 @@ export { default as ProEditTable } from './ProEditTable';
9
9
  export { default as ProDrawerForm } from './ProDrawerForm';
10
10
  export { default as ProEditLabel } from './ProEditLabel';
11
11
  export { default as ProForm } from './ProForm';
12
- export * from './ProForm';
12
+ export { ProFormProvider } from './ProForm';
13
13
  export * from './ProForm/components';
14
14
  export { default as ProSelect } from './ProSelect';
15
15
  export { default as ProEnum } from './ProEnum';
@@ -26,14 +26,18 @@ export * from './locale';
26
26
  export { default as ProBackBtn } from './ProLayout/components/ProHeader/components/ProBackBtn';
27
27
  export { default as ProEditableTable } from './old/ProEditableTable';
28
28
  export { default as ProCertValidity } from './old/ProCertValidity';
29
- export * from './ProForm/propsType';
30
- export * from './ProTable/propsType';
31
- export * from './ProEditTable/propsType';
32
- export * from './ProUpload/propsType';
33
- export * from './ProTabs/propType';
34
- export * from './ProLayout/components/ProHeader/PropTypes';
35
- export * from './ProTooltip/propsType';
36
- export * from './ProIcon/propsTypes';
37
- export * from './ProTree/propsType';
38
- export * from './ProTreeModal/propsType';
29
+ export type { ProFormType, ProColumnProps, ProFormColumnType } from './ProForm/propsType';
30
+ export type { ProFormComponentType } from './ProForm/components/index.d';
31
+ export type { ProTableType, ProTableColumnType, ProTableSummaryType, ProTableUseAntdTableType, ProTableProps, ProTableSummaryProps, ProTableColumn, UseAntdTableState } from './ProTable/propsType';
32
+ export type { ProUploadType, ProUploadProps } from './ProUpload/propsType';
33
+ export type { ProTabsType, ProTabsItemType, ProTabsProps, ProTabsItemsProps } from './ProTabs/propType';
34
+ export type { BreadcrumbColumnType, SubDescribeColumnType, DescribeColumnType, ProHeaderType, ProHeaderProps, BreadcrumbColumnsProps, SubDescribeColumnsProps, DescribeColumnsProps } from './ProLayout/components/ProHeader/PropTypes';
35
+ export type { ProTooltipType, ProTooltipProps } from './ProTooltip/propsType';
36
+ export type { ProIconType, ProIconProps } from './ProIcon/propsTypes';
37
+ export type { ProTreeType, ProTreeSelectType, ProTreeProps, PropTreeSelectProps } from './ProTree/propsType';
38
+ export type { ProTreeModalType, ProTreeModalActionType, ProTreeModalProps, ProTreeModalAction } from './ProTreeModal/propsType';
39
+ export type { ProEditTableType, ProEditTableColumnType, ProEditTableSummaryColumnType, ProEditTableSummaryConfigType, ProEditTableActionType, ProEditTableProps, ProEditTableColumnsProps, SummaryProps, SummaryColumnProps, BaseActionProps } from './ProEditTable/propsType';
40
+ export type { ProStepType, ProStepContextType, ProStepItemType, ProStepPropsType, ProStepItemPropsType } from './ProStep/propsType';
41
+ export type { ProDrawerFormType, ProDrawerFormPropsType } from './ProDrawerForm/propsType';
42
+ export type { ProModalSelectType, ProModalSelectConfigType, ProModalSelectPropsType } from './ProForm/components/combination/ProModalSelect/propsType';
39
43
  export * from './tokens';