@teamix/pro 1.4.10 → 1.4.13

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 (49) hide show
  1. package/dist/pro.css +1 -1
  2. package/dist/pro.js +319 -112
  3. package/dist/pro.min.css +1 -1
  4. package/dist/pro.min.js +1 -1
  5. package/es/actions/index.scss +1 -1
  6. package/es/form/ProForm/index.scss +5 -0
  7. package/es/form/SchemaForm/index.js +12 -4
  8. package/es/form/SchemaForm/initializeDataSource.d.ts +3 -0
  9. package/es/form/SchemaForm/initializeDataSource.js +7 -0
  10. package/es/form/SchemaForm/initializeFormButton.js +4 -5
  11. package/es/index.d.ts +1 -1
  12. package/es/index.js +1 -1
  13. package/es/info/components/ProInfoItem/index.js +33 -4
  14. package/es/info/components/ProInfoItem/index.scss +18 -11
  15. package/es/info/components/baseInfo/index.js +4 -1
  16. package/es/info/components/baseInfo/index.scss +4 -1
  17. package/es/info/components/headerInfo/index.js +4 -1
  18. package/es/info/components/headerInfo/index.scss +3 -0
  19. package/es/info/components/tableInfo/index.js +2 -1
  20. package/es/info/index.js +6 -3
  21. package/es/info/typing.d.ts +3 -1
  22. package/es/table/components/Layout/index.js +5 -3
  23. package/es/table/index.js +95 -50
  24. package/es/table/index.scss +5 -0
  25. package/es/table/typing.d.ts +3 -1
  26. package/es/table/utils/columnRender.js +2 -1
  27. package/lib/actions/index.scss +1 -1
  28. package/lib/form/ProForm/index.scss +5 -0
  29. package/lib/form/SchemaForm/index.js +11 -3
  30. package/lib/form/SchemaForm/initializeDataSource.d.ts +3 -0
  31. package/lib/form/SchemaForm/initializeDataSource.js +10 -2
  32. package/lib/form/SchemaForm/initializeFormButton.js +3 -4
  33. package/lib/index.d.ts +1 -1
  34. package/lib/index.js +1 -1
  35. package/lib/info/components/ProInfoItem/index.js +33 -4
  36. package/lib/info/components/ProInfoItem/index.scss +18 -11
  37. package/lib/info/components/baseInfo/index.js +4 -1
  38. package/lib/info/components/baseInfo/index.scss +4 -1
  39. package/lib/info/components/headerInfo/index.js +4 -1
  40. package/lib/info/components/headerInfo/index.scss +3 -0
  41. package/lib/info/components/tableInfo/index.js +3 -1
  42. package/lib/info/index.js +5 -2
  43. package/lib/info/typing.d.ts +3 -1
  44. package/lib/table/components/Layout/index.js +5 -3
  45. package/lib/table/index.js +95 -49
  46. package/lib/table/index.scss +5 -0
  47. package/lib/table/typing.d.ts +3 -1
  48. package/lib/table/utils/columnRender.js +2 -1
  49. package/package.json +1 -1
package/es/table/index.js CHANGED
@@ -36,7 +36,7 @@ import React, { useState, useEffect, useRef } from 'react';
36
36
  import { Table, Checkbox } from '@alicloudfe/components';
37
37
  import Pagination from './components/Pagination';
38
38
  import genProColumnToColumn from './utils/genProColumnToColumn';
39
- import { getGlobalConfig, useRequest, request as utilResquest, getDeepValue, getMessage, pickProps, usePrefixCls } from '@teamix/utils';
39
+ import { getGlobalConfig, useRequest, request as utilResquest, getDeepValue, getMessage, pickProps, usePrefixCls, getTestRequestData, getTestRequestParams } from '@teamix/utils';
40
40
  import { ProSkeletonRaw as Skeleton } from '../skeleton';
41
41
  import './index.scss';
42
42
  import Layout from './components/Layout';
@@ -49,6 +49,7 @@ import EmptyContent from './components/EmptyContent';
49
49
  import { ProActionGroup } from '../actions';
50
50
  import classNames from 'classnames';
51
51
  import ProPageContainer from '../page-container';
52
+ import debounce from 'lodash.debounce';
52
53
  export * from './typing';
53
54
  var cls = usePrefixCls('teamix-pro-table');
54
55
  /**
@@ -214,7 +215,7 @@ var ProTable = function ProTable(props) {
214
215
  var skeletonDataSource = new Array(skeletonSize).fill({});
215
216
  var requestDataKey = method.toLowerCase() === 'get' ? 'params' : 'data'; // 如果使用 customRequest 的话,内置 loading
216
217
 
217
- var _useState13 = useState(true),
218
+ var _useState13 = useState(requestWhenMount),
218
219
  _useState14 = _slicedToArray(_useState13, 2),
219
220
  customTableLoading = _useState14[0],
220
221
  setCustomTableLoading = _useState14[1];
@@ -258,21 +259,45 @@ var ProTable = function ProTable(props) {
258
259
  var autoRefreshTimerRef = useRef();
259
260
  var onResize = null;
260
261
  useEffect(function () {
262
+ var _propsDataFilter$sche, _propsDataFilter$sche2;
263
+
261
264
  getHeaderHeight(fullscreenState);
265
+ getFooterSuctionState();
262
266
 
263
267
  if (window.onresize) {
264
268
  onResize = window.onresize;
265
-
266
- window.onresize = function () {
269
+ window.onresize = debounce(function () {
267
270
  var _onResize;
268
271
 
269
272
  (_onResize = onResize) === null || _onResize === void 0 ? void 0 : _onResize();
270
- getHeaderHeight(fullscreenState);
271
- };
273
+
274
+ if (footerSuction) {
275
+ getFooterSuctionState();
276
+ }
277
+
278
+ if (fixedTableBody) {
279
+ getHeaderHeight(fullscreenState);
280
+ }
281
+ }, 500);
272
282
  } else {
273
- window.onresize = function () {
274
- getHeaderHeight(fullscreenState);
275
- };
283
+ window.onresize = debounce(function () {
284
+ if (footerSuction) {
285
+ getFooterSuctionState();
286
+ }
287
+
288
+ if (fixedTableBody) {
289
+ getHeaderHeight(fullscreenState);
290
+ }
291
+ }, 500);
292
+ } // 如果不传 dataFilter,则在这里初始化请求
293
+
294
+
295
+ var hasDataFilter = (propsDataFilter === null || propsDataFilter === void 0 ? void 0 : (_propsDataFilter$sche = propsDataFilter.schema) === null || _propsDataFilter$sche === void 0 ? void 0 : _propsDataFilter$sche.length) && (propsDataFilter === null || propsDataFilter === void 0 ? void 0 : (_propsDataFilter$sche2 = propsDataFilter.schema) === null || _propsDataFilter$sche2 === void 0 ? void 0 : _propsDataFilter$sche2.length) > 0;
296
+
297
+ if (requestWhenMount && !hasDataFilter) {
298
+ processDefaultFilter(propsColumns, actionRef, defaultFilterParams);
299
+
300
+ _request();
276
301
  }
277
302
 
278
303
  return function () {
@@ -281,6 +306,12 @@ var ProTable = function ProTable(props) {
281
306
  } else {
282
307
  window.onresize = null;
283
308
  }
309
+
310
+ if (autoRefreshTimerRef.current) {
311
+ clearTimeout(autoRefreshTimerRef.current);
312
+ }
313
+
314
+ actionRef.current = undefined;
284
315
  };
285
316
  }, []); // 获取header高度,用作全屏吸底吸底高度计算以及固定body高度计算(滚动条在底部)
286
317
 
@@ -296,6 +327,8 @@ var ProTable = function ProTable(props) {
296
327
  var pageContainerDom = document.querySelector('.teamix-pro-page-container-header');
297
328
  var teamixNavDom = document.querySelector('.teamix-nav-console');
298
329
  var footerRowSelectionDom = document.querySelector('.teamix-pro-page-container-footer');
330
+ var tableBodyDom = document.querySelector('.next-table-body');
331
+ var headerFixedTopSectionDom = document.querySelector('.teamix-pro-page-container-fixed-top');
299
332
  setTimeout(function () {
300
333
  var _headerDom$offsetHeig, _tableHeaderDom$offse;
301
334
 
@@ -309,11 +342,32 @@ var ProTable = function ProTable(props) {
309
342
 
310
343
  // 16px 为 padding
311
344
  var pageHeaderHeight = ((_pageContainerDom$off = pageContainerDom === null || pageContainerDom === void 0 ? void 0 : pageContainerDom.offsetHeight) !== null && _pageContainerDom$off !== void 0 ? _pageContainerDom$off : 0) + 16;
312
- var teamixNavHeight = (_teamixNavDom$offsetH = teamixNavDom === null || teamixNavDom === void 0 ? void 0 : teamixNavDom.offsetHeight) !== null && _teamixNavDom$offsetH !== void 0 ? _teamixNavDom$offsetH : 0;
313
- setHeaderHeight(headerHeight + tableHeaderHeight + pageHeaderHeight + teamixNavHeight + footerRowSelectionHeight + 16 + (offset !== null && offset !== void 0 ? offset : 0));
345
+ var teamixNavHeight = (_teamixNavDom$offsetH = teamixNavDom === null || teamixNavDom === void 0 ? void 0 : teamixNavDom.offsetHeight) !== null && _teamixNavDom$offsetH !== void 0 ? _teamixNavDom$offsetH : 0; // 1 为预留值,js无法取出精确高度,会被四舍五入
346
+
347
+ var offsetHeaderHeight = headerHeight + tableHeaderHeight + pageHeaderHeight + teamixNavHeight + footerRowSelectionHeight + 16 + (offset !== null && offset !== void 0 ? offset : 0) + 1;
348
+ var clientTableBodyHeight = document.body.clientHeight - offsetHeaderHeight;
349
+
350
+ if (tableBodyDom.clientHeight < clientTableBodyHeight) {
351
+ setFooterSuctionState(true);
352
+ } else {
353
+ setFooterSuctionState(false);
354
+ } // 如果有切换区tab,那么重新计算
355
+
356
+
357
+ if (headerFixedTopSectionDom.clientHeight) {
358
+ var _headerFixedTopSectio;
359
+
360
+ var headerFixedTopSectionHeight = (_headerFixedTopSectio = headerFixedTopSectionDom.clientHeight) !== null && _headerFixedTopSectio !== void 0 ? _headerFixedTopSectio : 0; // const clientTableBodyHeight =
361
+ // document.body.clientHeight - offsetHeaderHeight;
362
+
363
+ setHeaderHeight(headerFixedTopSectionHeight + teamixNavHeight + footerRowSelectionHeight + tableHeaderHeight + 1);
364
+ return;
365
+ }
366
+
367
+ setHeaderHeight(offsetHeaderHeight);
314
368
  } else {
315
369
  // 24px 为 padding
316
- setHeaderHeight(headerHeight + tableHeaderHeight + footerRowSelectionHeight + 24 + (offset !== null && offset !== void 0 ? offset : 0));
370
+ setHeaderHeight(headerHeight + tableHeaderHeight + footerRowSelectionHeight + 24 + (offset !== null && offset !== void 0 ? offset : 0) + 1);
317
371
  }
318
372
  }, 50);
319
373
  }; // header 区域高度。用作全屏计算吸顶吸底高度。默认不做计算
@@ -652,6 +706,10 @@ var ProTable = function ProTable(props) {
652
706
  if (footerSuction) {
653
707
  getFooterSuctionState();
654
708
  }
709
+
710
+ if (fixedTableBody) {
711
+ getHeaderHeight(fullscreenState);
712
+ }
655
713
  },
656
714
  onError: function onError(error) {
657
715
  setShowSkeleton(false);
@@ -665,6 +723,10 @@ var ProTable = function ProTable(props) {
665
723
  if (footerSuction) {
666
724
  getFooterSuctionState();
667
725
  }
726
+
727
+ if (fixedTableBody) {
728
+ getHeaderHeight(fullscreenState);
729
+ }
668
730
  }
669
731
  }); // 请求函数
670
732
 
@@ -730,6 +792,20 @@ var ProTable = function ProTable(props) {
730
792
  if (footerSuction) {
731
793
  getFooterSuctionState();
732
794
  }
795
+
796
+ if (fixedTableBody) {
797
+ getHeaderHeight(fullscreenState);
798
+ } // customRequest 中支持 autoRefresh
799
+
800
+
801
+ var time = autoRefresh ? autoRefresh(data) : false;
802
+
803
+ if (Number.isInteger(time) && time >= 1000) {
804
+ autoRefreshTimerRef.current = setTimeout(function () {
805
+ // 自动刷新不显示 loading
806
+ _request({}, true);
807
+ }, Number(time));
808
+ }
733
809
  });
734
810
  } else {
735
811
  getData.run(requestData);
@@ -737,40 +813,6 @@ var ProTable = function ProTable(props) {
737
813
  }
738
814
  }
739
815
 
740
- useEffect(function () {
741
- var _propsDataFilter$sche, _propsDataFilter$sche2;
742
-
743
- // 监听 浏览器变化 更吸底状态
744
- if (footerSuction) {
745
- getFooterSuctionState();
746
-
747
- window.onresize = function () {
748
- getFooterSuctionState();
749
- };
750
- } // 如果不传 dataFilter,则在这里初始化请求
751
-
752
-
753
- var hasDataFilter = (propsDataFilter === null || propsDataFilter === void 0 ? void 0 : (_propsDataFilter$sche = propsDataFilter.schema) === null || _propsDataFilter$sche === void 0 ? void 0 : _propsDataFilter$sche.length) && (propsDataFilter === null || propsDataFilter === void 0 ? void 0 : (_propsDataFilter$sche2 = propsDataFilter.schema) === null || _propsDataFilter$sche2 === void 0 ? void 0 : _propsDataFilter$sche2.length) > 0;
754
-
755
- if (requestWhenMount && !hasDataFilter) {
756
- processDefaultFilter(propsColumns, actionRef, defaultFilterParams);
757
-
758
- _request();
759
- }
760
-
761
- return function () {
762
- if (autoRefreshTimerRef.current) {
763
- clearTimeout(autoRefreshTimerRef.current);
764
- }
765
-
766
- if (window.onresize) {
767
- window.onresize = null;
768
- }
769
-
770
- actionRef.current = undefined;
771
- };
772
- }, []);
773
-
774
816
  function onSort(dataIndex, order) {
775
817
  var nextSort = _defineProperty({}, dataIndex, order);
776
818
 
@@ -836,7 +878,10 @@ var ProTable = function ProTable(props) {
836
878
  var renderTable = function renderTable(isFullScreen) {
837
879
  if (propsColumns) {
838
880
  return /*#__PURE__*/React.createElement("div", {
839
- className: classNames('teamix-pro-table-container', className)
881
+ className: classNames('teamix-pro-table-container', className, 'teamix-test-request'),
882
+ "data-teamix-test-request": "url=".concat(url, "&formatResult=").concat(!!formatResult),
883
+ "data-teamix-test-params": getTestRequestParams(propsParams),
884
+ "data-teamix-test-data": getTestRequestData(propsColumns)
840
885
  }, /*#__PURE__*/React.createElement(Layout, {
841
886
  header: header,
842
887
  mainAction: mainAction,
@@ -962,7 +1007,7 @@ var ProTable = function ProTable(props) {
962
1007
  })
963
1008
  }, renderRowSelection(), /*#__PURE__*/React.createElement("div", {
964
1009
  className: cls('footer-right-wrapper')
965
- }, showSkeleton ? /*#__PURE__*/React.createElement(Skeleton.Footer.Pagination, null) : /*#__PURE__*/React.createElement(Pagination, _objectSpread({
1010
+ }, showSkeleton ? /*#__PURE__*/React.createElement(Skeleton.Footer.Pagination, null) : /*#__PURE__*/React.createElement(React.Fragment, null, data.length > 0 && /*#__PURE__*/React.createElement(Pagination, _objectSpread({
966
1011
  className: cls('pagination'),
967
1012
  onChange: function onChange(number) {
968
1013
  return onChangePagination(number);
@@ -984,7 +1029,7 @@ var ProTable = function ProTable(props) {
984
1029
  onPageSizeChange: function onPageSizeChange(number) {
985
1030
  return onChangePaginationSize(number);
986
1031
  }
987
- }, props.paginationProps))));
1032
+ }, props.paginationProps)))));
988
1033
  } else if (!showPagination) {
989
1034
  return /*#__PURE__*/React.createElement("div", {
990
1035
  className: cls('footer', {
@@ -1007,7 +1052,7 @@ var ProTable = function ProTable(props) {
1007
1052
 
1008
1053
  }),
1009
1054
  ref: tableRef
1010
- }, renderTable(isFullScreen), (footerSuctionState && footerSuction && !fullscreenState || fixedTableBody) && /*#__PURE__*/React.createElement(ProPageContainer.FixedFooter, null, renderFooter()), !(footerSuctionState && footerSuction) && !fullscreenState && !fixedTableBody && renderFooter(), fullscreenState && renderFooter());
1055
+ }, renderTable(isFullScreen), footerSuctionState && !fullscreenState && /*#__PURE__*/React.createElement(ProPageContainer.FixedFooter, null, renderFooter()), !(footerSuctionState && !fullscreenState) && renderFooter(), fullscreenState && renderFooter());
1011
1056
  });
1012
1057
  };
1013
1058
 
@@ -32,6 +32,11 @@ $fullscreenPadding: 24px;
32
32
  display: flex;
33
33
  justify-content: flex-end;
34
34
  width: 100%;
35
+ & > span {
36
+ display: flex;
37
+ justify-content: flex-end;
38
+ width: 100%;
39
+ }
35
40
  }
36
41
  &-footer-action {
37
42
  margin-left: 16px;
@@ -69,7 +69,9 @@ export declare type ProTableProps = {
69
69
  /** 请求方法 */
70
70
  method?: Method;
71
71
  /** 请求参数 */
72
- params?: object;
72
+ params?: {
73
+ [propName: string]: any;
74
+ };
73
75
  /** sort 排序请求参数处理函数 */
74
76
  formatSort?: (sort: object) => object;
75
77
  /** 如需自定义调用参数格式,则可以设定此值在请求前对 params 进行自定义,如果返回false则可以阻止请求 */
@@ -39,8 +39,9 @@ import Filter from '../components/Filter';
39
39
  export var renderColumnsTitle = function renderColumnsTitle(item, actionRef) {
40
40
  var filterMode = item.filterMode,
41
41
  filters = item.filters,
42
+ dataSource = item.dataSource,
42
43
  dataIndex = item.dataIndex,
43
- dataSource = item.dataSource; // 为列过滤添加状态标题
44
+ valueType = item.valueType; // 为列过滤添加状态标题
44
45
 
45
46
  var getItemLabel = function getItemLabel() {
46
47
  if (filters && filterMode !== 'multiple') {
@@ -114,7 +114,7 @@
114
114
  margin-top: 10px;
115
115
  padding-bottom: 10px;
116
116
  .next-col.next-col-24:last-child {
117
- .teamix-pro-field-info-form-item:last-child {
117
+ .teamix-pro-info-item:last-child {
118
118
  padding-bottom: 0px;
119
119
  }
120
120
  }
@@ -236,6 +236,11 @@
236
236
  }
237
237
 
238
238
  // 按钮样式
239
+ .teamix-button-group-item.#{$form-item-cls}-layout-vertical {
240
+ > .#{$css-prefix}formily-item-label {
241
+ display: none;
242
+ }
243
+ }
239
244
  .#{$css-prefix}formily-button-group {
240
245
  margin-top: var(--form-element-medium-height, 32px);
241
246
  }
@@ -55,7 +55,7 @@ var _utils2 = require("../utils");
55
55
 
56
56
  var _warning = _interopRequireDefault(require("../warning"));
57
57
 
58
- var _excluded = ["component", "type", "name", "decorator", "decoratorProps", "dataSource", "reactions", "rules", "children", "items", "tooltip", "request", "data"];
58
+ var _excluded = ["type", "name", "component", "props", "decorator", "decoratorProps", "dataSource", "reactions", "rules", "children", "items", "tooltip", "request", "data"];
59
59
 
60
60
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
61
61
 
@@ -173,9 +173,10 @@ var _default = /*#__PURE__*/(0, _react.memo)(function (_ref) {
173
173
  }
174
174
 
175
175
  var _newItem2 = newItem,
176
- component = _newItem2.component,
177
176
  type = _newItem2.type,
178
177
  name = _newItem2.name,
178
+ component = _newItem2.component,
179
+ props = _newItem2.props,
179
180
  decorator = _newItem2.decorator,
180
181
  decoratorProps = _newItem2.decoratorProps,
181
182
  dataSource = _newItem2.dataSource,
@@ -211,7 +212,8 @@ var _default = /*#__PURE__*/(0, _react.memo)(function (_ref) {
211
212
  defaultDataSource = _initializeDataSource.dataSource,
212
213
  dataSourceReactions = _initializeDataSource.reactions,
213
214
  dataSourceScope = _initializeDataSource.scope,
214
- dataSourceData = _initializeDataSource.data; // 初始化rules validator
215
+ dataSourceData = _initializeDataSource.data,
216
+ dataSourceProps = _initializeDataSource.props; // 初始化rules validator
215
217
 
216
218
 
217
219
  var _initializeRules = (0, _initializeRules2.default)(rules, "".concat(suffix, "v")),
@@ -227,10 +229,16 @@ var _default = /*#__PURE__*/(0, _react.memo)(function (_ref) {
227
229
  v = _ref3[1];
228
230
 
229
231
  schemaScopeRef.current[k] = v;
232
+ }); // 合并字段属性
233
+
234
+ var defaultProps = _objectSpread(_objectSpread(_objectSpread({}, props), dataSourceProps), {}, {
235
+ className: (0, _utils.cls)(props === null || props === void 0 ? void 0 : props.className, dataSourceProps === null || dataSourceProps === void 0 ? void 0 : dataSourceProps.className)
230
236
  });
237
+
231
238
  var formatParam = (0, _utils2.mapSchemaName)(_objectSpread(_objectSpread({}, otherProps), {}, {
232
239
  type: defaultType,
233
240
  component: component,
241
+ props: defaultProps,
234
242
  decorator: defaultDecorator,
235
243
  decoratorProps: defaultDecoratorProps,
236
244
  rules: defaultRules,
@@ -6,6 +6,9 @@ interface IInitializeDataSource {
6
6
  [x: string]: any;
7
7
  };
8
8
  data?: any;
9
+ props?: {
10
+ [x: string]: any;
11
+ };
9
12
  };
10
13
  }
11
14
  declare const initializeDataSource: IInitializeDataSource;
@@ -5,12 +5,14 @@ Object.defineProperty(exports, "__esModule", {
5
5
  });
6
6
  exports.default = void 0;
7
7
 
8
- var _utils = require("../utils");
8
+ var _utils = require("@teamix/utils");
9
+
10
+ var _utils2 = require("../utils");
9
11
 
10
12
  var initializeDataSource = function initializeDataSource(dataSource, suffix) {
11
13
  var _dataSource$extraConf;
12
14
 
13
- var _initializeRequestExp = (0, _utils.initializeRequestExpression)(dataSource, '$dataSource', suffix),
15
+ var _initializeRequestExp = (0, _utils2.initializeRequestExpression)(dataSource, '$dataSource', suffix),
14
16
  expression = _initializeRequestExp.expression,
15
17
  scope = _initializeRequestExp.scope;
16
18
 
@@ -19,6 +21,12 @@ var initializeDataSource = function initializeDataSource(dataSource, suffix) {
19
21
  scope: scope,
20
22
  data: {
21
23
  readOnlyOnLoading: (dataSource === null || dataSource === void 0 ? void 0 : (_dataSource$extraConf = dataSource.extraConfig) === null || _dataSource$extraConf === void 0 ? void 0 : _dataSource$extraConf.readOnly) !== false
24
+ },
25
+ props: {
26
+ className: 'teamix-test-request',
27
+ 'data-teamix-test-request': "url=".concat(dataSource === null || dataSource === void 0 ? void 0 : dataSource.url, "&formatResult=").concat(!!(dataSource === null || dataSource === void 0 ? void 0 : dataSource.formatResult)),
28
+ 'data-teamix-test-params': (0, _utils.getTestRequestParams)(dataSource === null || dataSource === void 0 ? void 0 : dataSource.params),
29
+ 'data-teamix-test-data': (0, _utils.getTestRequestData)('dataSource')
22
30
  }
23
31
  } : {
24
32
  reactions: [],
@@ -52,15 +52,14 @@ var initialize = function initialize(item) {
52
52
  return initializeButton(item);
53
53
  }
54
54
 
55
- var commonMode = _objectSpread(_objectSpread({
56
- title: ' '
57
- }, item), {}, {
55
+ var commonMode = _objectSpread(_objectSpread({}, item), {}, {
58
56
  component: component,
59
57
  props: otherProps,
60
58
  decorator: 'FormButtonGroup.FormItem',
61
59
  decoratorProps: _objectSpread({
62
60
  inset: false,
63
- fullness: true
61
+ fullness: true,
62
+ className: (0, _utils.cls)('teamix-button-group-item', decoratorProps === null || decoratorProps === void 0 ? void 0 : decoratorProps.className)
64
63
  }, decoratorProps)
65
64
  }); // 吸底模式
66
65
 
package/lib/index.d.ts CHANGED
@@ -28,5 +28,5 @@ export * from './table';
28
28
  export * from './sidebar';
29
29
  export * from './utils';
30
30
  export * from './timeline';
31
- declare const version = "1.4.10";
31
+ declare const version = "1.4.13";
32
32
  export { version, ProAction, ProCard, ProField, ProForm, ProInfo, ProPageContainer, ProPageHeader, ProSkeleton, ProTable, ProSidebar, ProTimeline, TeamixIcon, hooks, nocode, templates, utils, };
package/lib/index.js CHANGED
@@ -317,5 +317,5 @@ if (!((_window = window) === null || _window === void 0 ? void 0 : _window.TEAMI
317
317
  _icon.default.setConfig(_utils.default.getTeamixIconConfig());
318
318
  }
319
319
 
320
- var version = '1.4.10';
320
+ var version = '1.4.13';
321
321
  exports.version = version;
@@ -19,7 +19,7 @@ require("./index.scss");
19
19
 
20
20
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
21
21
 
22
- var cls = (0, _utils.usePrefixCls)('teamix-pro-field-info-form-item');
22
+ var cls = (0, _utils.usePrefixCls)('teamix-pro-info-item');
23
23
  var Row = _components.Grid.Row,
24
24
  Col = _components.Grid.Col;
25
25
 
@@ -30,7 +30,26 @@ var ProInfoItem = function ProInfoItem(prop) {
30
30
  headerInfoLayout = prop.headerInfoLayout,
31
31
  loading = prop.loading,
32
32
  tooltip = prop.tooltip,
33
- tooltipIcon = prop.tooltipIcon;
33
+ tooltipIcon = prop.tooltipIcon,
34
+ valueType = prop.valueType,
35
+ render = prop.render,
36
+ alignItems = prop.alignItems; // 判断是否需要居中
37
+
38
+ var isAlignItemsCenter = function isAlignItemsCenter() {
39
+ if (typeof render !== 'function') {
40
+ var type = render === null || render === void 0 ? void 0 : render.type;
41
+
42
+ if (valueType === 'selectGroup') {
43
+ return true;
44
+ }
45
+
46
+ if (type === 'tag' || type === 'statusIconTag' || type === 'eventLevelTag' || type === 'warningLevelTag') {
47
+ return true;
48
+ }
49
+ }
50
+
51
+ return false;
52
+ };
34
53
 
35
54
  if (baseInfoLayout) {
36
55
  var labelCol = baseInfoLayout.labelCol,
@@ -39,7 +58,13 @@ var ProInfoItem = function ProInfoItem(prop) {
39
58
  className: cls('')
40
59
  }, /*#__PURE__*/_react.default.createElement(Row, {
41
60
  gutter: 10,
42
- className: cls('base-row')
61
+ className: cls({
62
+ 'base-row': true,
63
+ 'base-row-center': isAlignItemsCenter()
64
+ }),
65
+ style: alignItems ? {
66
+ alignItems: alignItems
67
+ } : {}
43
68
  }, /*#__PURE__*/_react.default.createElement(Col, {
44
69
  span: labelCol === null || labelCol === void 0 ? void 0 : labelCol.span,
45
70
  className: cls('label')
@@ -63,7 +88,11 @@ var ProInfoItem = function ProInfoItem(prop) {
63
88
  return /*#__PURE__*/_react.default.createElement("div", {
64
89
  className: cls()
65
90
  }, /*#__PURE__*/_react.default.createElement(Row, {
66
- className: cls('header-row')
91
+ className: cls({
92
+ 'header-row': true,
93
+ 'header-row-center': isAlignItemsCenter()
94
+ }),
95
+ style: {}
67
96
  }, /*#__PURE__*/_react.default.createElement("div", {
68
97
  className: cls('header-label')
69
98
  }, /*#__PURE__*/_react.default.createElement(_field.LabelIconTip, {
@@ -14,43 +14,50 @@ $header-text-size: var(--font-size-body-1, 12px);
14
14
 
15
15
  $item-padding-bottom: 8px;
16
16
 
17
- .teamix-pro-field-info-form-item {
17
+ .teamix-pro-info-item {
18
18
  width: 100%;
19
19
  padding-bottom: $item-padding-bottom;
20
20
  &-header-row {
21
21
  display: flex;
22
- align-items: center;
22
+ align-items: flex-start;
23
+
24
+ &-center {
25
+ align-items: center;
26
+ }
23
27
  }
24
28
  &-base-row {
25
29
  display: flex;
26
- align-items: center;
30
+ align-items: flex-start;
31
+ &-center {
32
+ align-items: center;
33
+ }
27
34
  }
28
35
  }
29
36
 
30
- .teamix-pro-field-info-form-item-label {
37
+ .teamix-pro-info-item-label {
31
38
  color: $label-color;
32
39
  font-size: $label-size;
33
40
  // font-weight: $label-weight;
34
41
  display: unset;
35
42
  }
36
43
 
37
- .teamix-pro-field-info-form-item-value {
44
+ .teamix-pro-info-item-value {
38
45
  color: $text-color;
39
46
  font-size: $text-size;
40
- display: unset;
47
+ //display: unset;
41
48
  width: 100%;
42
49
  padding-right: 20px;
43
50
  }
44
51
 
45
- .teamix-pro-field-info-form-item-header-label {
52
+ .teamix-pro-info-item-header-label {
46
53
  color: $header-label-color;
47
54
  font-size: $header-label-size;
48
55
  // font-weight: $header-label-weight;
49
56
  display: inline-block;
50
- white-space:nowrap;
57
+ white-space: nowrap;
51
58
  }
52
59
 
53
- .teamix-pro-field-info-form-item-header-value {
60
+ .teamix-pro-info-item-header-value {
54
61
  color: $header-text-color;
55
62
  font-size: $header-text-size;
56
63
  display: inline-block;
@@ -58,9 +65,9 @@ $item-padding-bottom: 8px;
58
65
  padding-right: 20px;
59
66
  }
60
67
 
61
- .teamix-pro-field-info-form-item-base-skeleton-box {
68
+ .teamix-pro-info-item-base-skeleton-box {
62
69
  width: 100%;
63
- height: 100%;
70
+ height: 18px;
64
71
  display: flex;
65
72
  align-items: center;
66
73
  span {
@@ -97,7 +97,10 @@ var ProBaseInfo = function ProBaseInfo(props) {
97
97
  }),
98
98
  baseInfoLayout: getFormItemLayout((_item$colSpan = item === null || item === void 0 ? void 0 : item.colSpan) !== null && _item$colSpan !== void 0 ? _item$colSpan : 0),
99
99
  tooltip: item.tooltip,
100
- tooltipIcon: item.tooltipIcon
100
+ tooltipIcon: item.tooltipIcon,
101
+ render: item.render,
102
+ valueType: item.valueType,
103
+ alignItems: item.alignItems
101
104
  }));
102
105
  });
103
106
  };
@@ -1,3 +1,6 @@
1
1
  .teamix-pro-info {
2
2
  width: 100%;
3
- }
3
+ }
4
+ .teamix-pro-info-content-row {
5
+ align-items: flex-start;
6
+ }
@@ -73,7 +73,10 @@ var ProHeaderInfo = function ProHeaderInfo(props) {
73
73
  }),
74
74
  headerInfoLayout: layout !== null && layout !== void 0 ? layout : defaultLayout,
75
75
  tooltip: item.tooltip,
76
- tooltipIcon: item.tooltipIcon
76
+ tooltipIcon: item.tooltipIcon,
77
+ render: item.render,
78
+ valueType: item.valueType,
79
+ alignItems: item.alignItems
77
80
  }));
78
81
  });
79
82
  };
@@ -0,0 +1,3 @@
1
+ .teamix-pro-info-content-row {
2
+ align-items: flex-start;
3
+ }
@@ -21,6 +21,8 @@ var _2 = require("../../..");
21
21
 
22
22
  var _utils = require("../../utils");
23
23
 
24
+ var _lodash = _interopRequireDefault(require("lodash.clonedeep"));
25
+
24
26
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
25
27
 
26
28
  function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
@@ -92,7 +94,7 @@ var ProTableInfo = function ProTableInfo(props) {
92
94
 
93
95
  var newDataSource = (0, _react.useMemo)(function () {
94
96
  var nResult = [];
95
- var columnsCopy = JSON.parse(JSON.stringify(columns)); // 取当前行的数据。直到取完
97
+ var columnsCopy = (0, _lodash.default)(columns); // 取当前行的数据。直到取完
96
98
 
97
99
  while (columnsCopy.length > 0) {
98
100
  var filterColumns = [];
package/lib/info/index.js CHANGED
@@ -199,8 +199,11 @@ var ProInfo = function ProInfo(props) {
199
199
 
200
200
  return /*#__PURE__*/_react.default.createElement("div", {
201
201
  ref: ref,
202
- className: "teamix-pro-info ".concat(className !== null && className !== void 0 ? className : ''),
203
- style: style
202
+ style: style,
203
+ className: (0, _utils2.cls)('teamix-pro-info', className, 'teamix-test-request'),
204
+ "data-teamix-test-request": "url=".concat(url, "&formatResult=").concat(!!formatResult),
205
+ "data-teamix-test-params": (0, _utils2.getTestRequestParams)(params),
206
+ "data-teamix-test-data": (0, _utils2.getTestRequestData)(columns)
204
207
  }, /*#__PURE__*/_react.default.createElement(_.ProCard, _objectSpread(_objectSpread(_objectSpread({
205
208
  compacted: true,
206
209
  hoveredShadow: false,