@hi-ui/table 4.1.0-beta.2 → 4.1.0-beta.4
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.
- package/CHANGELOG.md +16 -0
- package/lib/cjs/Table.js +3 -1
- package/lib/cjs/TableBody.js +9 -3
- package/lib/cjs/TableSettingMenu.js +8 -3
- package/lib/cjs/hooks/use-col-width.js +50 -39
- package/lib/cjs/styles/index.scss.js +1 -1
- package/lib/cjs/use-table.js +2 -2
- package/lib/esm/Table.js +3 -1
- package/lib/esm/TableBody.js +9 -3
- package/lib/esm/TableSettingMenu.js +8 -3
- package/lib/esm/hooks/use-col-width.js +51 -40
- package/lib/esm/styles/index.scss.js +1 -1
- package/lib/esm/use-table.js +2 -2
- package/lib/types/SettingDrawer.d.ts +17 -0
- package/lib/types/Table.d.ts +4 -0
- package/lib/types/TableSettingMenu.d.ts +1 -0
- package/lib/types/context.d.ts +2 -2
- package/lib/types/hooks/use-col-width.d.ts +2 -1
- package/lib/types/use-table.d.ts +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @hi-ui/table
|
|
2
2
|
|
|
3
|
+
## 4.1.0-beta.4
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 0bed8c060: feat: data 增加 disabled 配置,用于是否禁用列设置操作
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 32a738272: fix: 数据排序样式不对
|
|
12
|
+
|
|
13
|
+
## 4.1.0-beta.3
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- 优化大数据表格
|
|
18
|
+
|
|
3
19
|
## 4.1.0-beta.2
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
package/lib/cjs/Table.js
CHANGED
|
@@ -100,6 +100,7 @@ var Table = /*#__PURE__*/React.forwardRef(function (_a, ref) {
|
|
|
100
100
|
onHiddenColKeysChange = _a.onHiddenColKeysChange,
|
|
101
101
|
sortedColKeysPropBeforeVerify = _a.sortedColKeys,
|
|
102
102
|
onSortedColKeysChange = _a.onSortedColKeysChange,
|
|
103
|
+
checkDisabledColKeys = _a.checkDisabledColKeys,
|
|
103
104
|
onSetColKeysChange = _a.onSetColKeysChange,
|
|
104
105
|
rowSelection = _a.rowSelection,
|
|
105
106
|
_a$fieldKey = _a.fieldKey,
|
|
@@ -108,7 +109,7 @@ var Table = /*#__PURE__*/React.forwardRef(function (_a, ref) {
|
|
|
108
109
|
_a$data = _a.data,
|
|
109
110
|
data = _a$data === void 0 ? DEFAULT_DATA : _a$data,
|
|
110
111
|
virtual = _a.virtual,
|
|
111
|
-
rest = tslib.__rest(_a, ["prefixCls", "standard", "loading", "dataSource", "pagination", "uniqueId", "columns", "hiddenColKeys", "onHiddenColKeysChange", "sortedColKeys", "onSortedColKeysChange", "onSetColKeysChange", "rowSelection", "fieldKey", "extra", "data", "virtual"]);
|
|
112
|
+
rest = tslib.__rest(_a, ["prefixCls", "standard", "loading", "dataSource", "pagination", "uniqueId", "columns", "hiddenColKeys", "onHiddenColKeysChange", "sortedColKeys", "onSortedColKeysChange", "checkDisabledColKeys", "onSetColKeysChange", "rowSelection", "fieldKey", "extra", "data", "virtual"]);
|
|
112
113
|
|
|
113
114
|
var tableProps = reactUtils.withDefaultProps(rest, standard ? STANDARD_PRESET : undefined);
|
|
114
115
|
|
|
@@ -333,6 +334,7 @@ var Table = /*#__PURE__*/React.forwardRef(function (_a, ref) {
|
|
|
333
334
|
setHiddenColKeys: setHiddenColKeys,
|
|
334
335
|
cacheHiddenColKeys: cacheHiddenColKeys,
|
|
335
336
|
setCacheHiddenColKeys: setCacheHiddenColKeys,
|
|
337
|
+
checkDisabledColKeys: checkDisabledColKeys,
|
|
336
338
|
onSetColKeysChange: onSetColKeysChange
|
|
337
339
|
}) : null,
|
|
338
340
|
footer: dataSource || !hiddenPagination ? /*#__PURE__*/React__default["default"].createElement(Pagination__default["default"], Object.assign({
|
package/lib/cjs/TableBody.js
CHANGED
|
@@ -57,7 +57,7 @@ var TableBody = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
|
57
57
|
var _useTableContext = context.useTableContext(),
|
|
58
58
|
columns = _useTableContext.columns,
|
|
59
59
|
leafColumns = _useTableContext.leafColumns,
|
|
60
|
-
|
|
60
|
+
setMeasureRowElement = _useTableContext.setMeasureRowElement,
|
|
61
61
|
isExpandTreeRows = _useTableContext.isExpandTreeRows,
|
|
62
62
|
transitionData = _useTableContext.transitionData,
|
|
63
63
|
getColgroupProps = _useTableContext.getColgroupProps,
|
|
@@ -122,7 +122,9 @@ var TableBody = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
|
122
122
|
overflowX: canScroll ? 'scroll' : undefined
|
|
123
123
|
}
|
|
124
124
|
}, /*#__PURE__*/React__default["default"].createElement("div", {
|
|
125
|
-
ref:
|
|
125
|
+
ref: function ref(domElement) {
|
|
126
|
+
setMeasureRowElement(domElement);
|
|
127
|
+
},
|
|
126
128
|
style: {
|
|
127
129
|
height: 1,
|
|
128
130
|
background: 'transparent'
|
|
@@ -187,7 +189,11 @@ var TableBody = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
|
187
189
|
}, getColgroupProps(col, idx)));
|
|
188
190
|
})), /*#__PURE__*/React__default["default"].createElement("tbody", null, typeAssertion.isArrayNonEmpty(transitionData) ? /*#__PURE__*/React__default["default"].createElement(React__default["default"].Fragment, null, transitionData.map(function (row, index) {
|
|
189
191
|
return /*#__PURE__*/React__default["default"].createElement(TableRow.TableRow, Object.assign({
|
|
190
|
-
ref:
|
|
192
|
+
ref: function ref(dom) {
|
|
193
|
+
if (index === 0) {
|
|
194
|
+
setMeasureRowElement(dom);
|
|
195
|
+
}
|
|
196
|
+
},
|
|
191
197
|
// key={depth + index}
|
|
192
198
|
key: row.id,
|
|
193
199
|
// @ts-ignore
|
|
@@ -72,7 +72,9 @@ var TableSettingMenu = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
|
72
72
|
setHiddenColKeys = _ref.setHiddenColKeys,
|
|
73
73
|
cacheHiddenColKeys = _ref.cacheHiddenColKeys,
|
|
74
74
|
setCacheHiddenColKeys = _ref.setCacheHiddenColKeys,
|
|
75
|
-
onSetColKeysChange = _ref.onSetColKeysChange
|
|
75
|
+
onSetColKeysChange = _ref.onSetColKeysChange,
|
|
76
|
+
_ref$checkDisabledCol = _ref.checkDisabledColKeys,
|
|
77
|
+
checkDisabledColKeys = _ref$checkDisabledCol === void 0 ? [] : _ref$checkDisabledCol;
|
|
76
78
|
var i18n = core.useLocaleContext();
|
|
77
79
|
var dropProps = useDragSorter.useDrop({
|
|
78
80
|
draggable: true,
|
|
@@ -168,7 +170,8 @@ var TableSettingMenu = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
|
168
170
|
index: index,
|
|
169
171
|
dropProps: dropProps,
|
|
170
172
|
cacheHiddenColKeys: cacheHiddenColKeys,
|
|
171
|
-
setCacheHiddenColKeys: setCacheHiddenColKeys
|
|
173
|
+
setCacheHiddenColKeys: setCacheHiddenColKeys,
|
|
174
|
+
checkDisabled: checkDisabledColKeys.includes(col.dataKey)
|
|
172
175
|
});
|
|
173
176
|
}))));
|
|
174
177
|
});
|
|
@@ -183,7 +186,8 @@ function TableSettingMenuItem(_ref2) {
|
|
|
183
186
|
cacheHiddenColKeys = _ref2.cacheHiddenColKeys,
|
|
184
187
|
setCacheHiddenColKeys = _ref2.setCacheHiddenColKeys,
|
|
185
188
|
dropProps = _ref2.dropProps,
|
|
186
|
-
index = _ref2.index
|
|
189
|
+
index = _ref2.index,
|
|
190
|
+
checkDisabled = _ref2.checkDisabled;
|
|
187
191
|
var dataKey = column.dataKey,
|
|
188
192
|
title = column.title;
|
|
189
193
|
|
|
@@ -203,6 +207,7 @@ function TableSettingMenuItem(_ref2) {
|
|
|
203
207
|
}, getDragTriggerProps(), getDropTriggerProps()), /*#__PURE__*/React__default["default"].createElement("div", {
|
|
204
208
|
className: prefixCls + "-item__wrap"
|
|
205
209
|
}, /*#__PURE__*/React__default["default"].createElement(Checkbox.Checkbox, {
|
|
210
|
+
disabled: checkDisabled,
|
|
206
211
|
checked: !cacheHiddenColKeys.includes(dataKey),
|
|
207
212
|
onChange: function onChange(evt) {
|
|
208
213
|
var shouldChecked = evt.target.checked;
|
|
@@ -32,52 +32,62 @@ var React__default = /*#__PURE__*/_interopDefaultLegacy(React);
|
|
|
32
32
|
var useColWidth = function useColWidth(_ref) {
|
|
33
33
|
var columns = _ref.columns,
|
|
34
34
|
virtual = _ref.virtual;
|
|
35
|
-
var measureRowElementRef = React.useRef(null);
|
|
36
35
|
|
|
37
|
-
var _React$useState = React__default["default"].useState(
|
|
36
|
+
var _React$useState = React__default["default"].useState(null),
|
|
37
|
+
measureRowElement = _React$useState[0],
|
|
38
|
+
setMeasureRowElement = _React$useState[1];
|
|
39
|
+
|
|
40
|
+
var _React$useState2 = React__default["default"].useState(function () {
|
|
38
41
|
return index.getGroupItemWidth(columns);
|
|
39
42
|
}),
|
|
40
|
-
colWidths = _React$
|
|
41
|
-
setColWidths = _React$
|
|
43
|
+
colWidths = _React$useState2[0],
|
|
44
|
+
setColWidths = _React$useState2[1];
|
|
42
45
|
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
46
|
+
var getVirtualWidths = React.useCallback(function () {
|
|
47
|
+
if (!measureRowElement) {
|
|
48
|
+
return index.getGroupItemWidth(columns);
|
|
49
|
+
}
|
|
50
|
+
/** 虚拟滚动时,内容宽度不能用以前table自动渲染的方式获取,需要手动计算 */
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
var columnDefaultWidth = 200;
|
|
54
|
+
var containerWidth = measureRowElement.clientWidth;
|
|
55
|
+
var totalWidth = 0;
|
|
56
|
+
/** 虚拟滚动,需要根据collist的虚拟宽度来计算宽度 */
|
|
57
|
+
|
|
58
|
+
columns.forEach(function (columnItem) {
|
|
59
|
+
totalWidth += columnItem.width || columnDefaultWidth;
|
|
60
|
+
});
|
|
61
|
+
|
|
62
|
+
if (totalWidth < containerWidth) {
|
|
63
|
+
// 容器宽度大于设置的宽度总和时,col宽度等比分分配占满容器。
|
|
64
|
+
return columns.map(function (columnItem) {
|
|
65
|
+
return (columnItem.width || columnDefaultWidth) * containerWidth / totalWidth;
|
|
66
|
+
});
|
|
67
|
+
} else {
|
|
68
|
+
// 容器宽度小于设置的宽度总和时,col宽度等于设置/默认宽度。
|
|
69
|
+
return columns.map(function (columnItem) {
|
|
70
|
+
return columnItem.width || columnDefaultWidth;
|
|
71
|
+
});
|
|
72
|
+
}
|
|
73
|
+
}, [measureRowElement, columns]);
|
|
47
74
|
useUpdateEffect.useUpdateEffect(function () {
|
|
48
|
-
|
|
49
|
-
|
|
75
|
+
if (virtual) {
|
|
76
|
+
// 虚拟滚动的计算需要根据容器来做分配,不能使用没有witdh默认设置为0的方式来做表格平均分配
|
|
77
|
+
setColWidths(getVirtualWidths());
|
|
78
|
+
} else {
|
|
79
|
+
setColWidths(index.getGroupItemWidth(columns));
|
|
80
|
+
}
|
|
81
|
+
}, [columns, getVirtualWidths, virtual]);
|
|
50
82
|
/**
|
|
51
83
|
* 根据实际内容区(table 的第一行)渲染,再次精确收集并设置每列宽度
|
|
52
84
|
*/
|
|
53
85
|
|
|
54
86
|
React__default["default"].useEffect(function () {
|
|
55
|
-
var measureRowElement = measureRowElementRef.current;
|
|
56
|
-
|
|
57
87
|
if (measureRowElement) {
|
|
58
88
|
var _resizeObserver = new ResizeObserver(function () {
|
|
59
89
|
if (virtual) {
|
|
60
|
-
|
|
61
|
-
var columnDefaultWidth = 200;
|
|
62
|
-
var containerWidth = measureRowElement.clientWidth;
|
|
63
|
-
var totalWidth = 0;
|
|
64
|
-
/** 虚拟滚动,需要根据collist的虚拟宽度来计算宽度 */
|
|
65
|
-
|
|
66
|
-
columns.forEach(function (columnItem) {
|
|
67
|
-
totalWidth += columnItem.width || columnDefaultWidth;
|
|
68
|
-
});
|
|
69
|
-
|
|
70
|
-
if (totalWidth < containerWidth) {
|
|
71
|
-
// 容器宽度大于设置的宽度总和时,col宽度等比分分配占满容器。
|
|
72
|
-
setColWidths(columns.map(function (columnItem) {
|
|
73
|
-
return (columnItem.width || columnDefaultWidth) * containerWidth / totalWidth;
|
|
74
|
-
}));
|
|
75
|
-
} else {
|
|
76
|
-
// 容器宽度小于设置的宽度总和时,col宽度等于设置/默认宽度。
|
|
77
|
-
setColWidths(columns.map(function (columnItem) {
|
|
78
|
-
return columnItem.width || columnDefaultWidth;
|
|
79
|
-
}));
|
|
80
|
-
}
|
|
90
|
+
setColWidths(getVirtualWidths());
|
|
81
91
|
} else {
|
|
82
92
|
if (measureRowElement.childNodes) {
|
|
83
93
|
var _realColumnsWidth = Array.from(measureRowElement.childNodes).map(function (node) {
|
|
@@ -96,12 +106,12 @@ var useColWidth = function useColWidth(_ref) {
|
|
|
96
106
|
_resizeObserver.observe(measureRowElement);
|
|
97
107
|
}
|
|
98
108
|
|
|
99
|
-
return function () {};
|
|
100
|
-
}, []);
|
|
109
|
+
return function () {}; // 测量元素在内容列为空时会是空,切换会使测量元素变化,导致后续的resize时间无法响应,此处测量元素变化时需要重新绑定
|
|
110
|
+
}, [measureRowElement, virtual]);
|
|
101
111
|
|
|
102
|
-
var _React$
|
|
103
|
-
headerTableElement = _React$
|
|
104
|
-
setHeaderTableElement = _React$
|
|
112
|
+
var _React$useState3 = React__default["default"].useState(null),
|
|
113
|
+
headerTableElement = _React$useState3[0],
|
|
114
|
+
setHeaderTableElement = _React$useState3[1];
|
|
105
115
|
/**
|
|
106
116
|
* 控制列最小可调整宽度
|
|
107
117
|
*/
|
|
@@ -155,7 +165,8 @@ var useColWidth = function useColWidth(_ref) {
|
|
|
155
165
|
};
|
|
156
166
|
}, [colWidths]);
|
|
157
167
|
return {
|
|
158
|
-
|
|
168
|
+
measureRowElement: measureRowElement,
|
|
169
|
+
setMeasureRowElement: setMeasureRowElement,
|
|
159
170
|
onColumnResizable: onColumnResizable,
|
|
160
171
|
getColgroupProps: getColgroupProps,
|
|
161
172
|
setHeaderTableElement: setHeaderTableElement,
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
Object.defineProperty(exports, '__esModule', {
|
|
13
13
|
value: true
|
|
14
14
|
});
|
|
15
|
-
var css_248z = ".hi-v4-table {-webkit-box-sizing: border-box;box-sizing: border-box;font-size: 14px;position: relative; }.hi-v4-table table {width: 100%;text-align: left;background-color: var(--hi-v4-color-static-white, #fff);border-radius: 2px 2px 0 0;border-spacing: 0;border-collapse: separate;display: table;table-layout: fixed; }.hi-v4-table__wrapper {position: relative;z-index: 0; }.hi-v4-table__switcher.hi-v4-icon-button {color: var(--hi-v4-color-gray-500, #929aa6); }.hi-v4-table__switcher--expanded.hi-v4-icon-button {color: var(--hi-v4-color-primary-400, var(--hi-v4-color-brandblue-400, #4a9eff)); }.hi-v4-table--size-md table tbody > tr:not(.hi-v4-table-empty-content) > td {padding: var(--hi-v4-spacing-7, 14px); }.hi-v4-table--size-md table thead > tr > th {padding: var(--hi-v4-spacing-7, 14px); }.hi-v4-table--size-sm table tbody > tr:not(.hi-v4-table-empty-content) > td {padding: var(--hi-v4-spacing-5, 10px); }.hi-v4-table--size-sm table thead > tr > th {padding: var(--hi-v4-spacing-5, 10px); }.hi-v4-table--size-lg table tbody > tr:not(.hi-v4-table-empty-content) > td {padding: var(--hi-v4-spacing-9, 18px); }.hi-v4-table--size-lg table thead > tr > th {padding: var(--hi-v4-spacing-9, 18px); }.hi-v4-table--bordered table thead > tr > th {border-right: var(--hi-v4-border-size-normal, 1px solid) var(--hi-v4-color-gray-200, #ebedf0); }.hi-v4-table--bordered table td {border-right: var(--hi-v4-border-size-normal, 1px solid) var(--hi-v4-color-gray-200, #ebedf0); }.hi-v4-table--bordered .hi-v4-table-header {border-top: var(--hi-v4-border-size-normal, 1px solid) var(--hi-v4-color-gray-200, #ebedf0);border-left: var(--hi-v4-border-size-normal, 1px solid) var(--hi-v4-color-gray-200, #ebedf0); }.hi-v4-table--bordered .hi-v4-table-body {border-left: var(--hi-v4-border-size-normal, 1px solid) var(--hi-v4-color-gray-200, #ebedf0); }.hi-v4-table--sticky {position: -webkit-sticky;position: sticky;top: 0; }.hi-v4-table--virtual {width: 100%;overflow: hidden; }.hi-v4-table--virtual .hi-v4-table-cell {-webkit-box-sizing: border-box;box-sizing: border-box; }.hi-v4-table-header {position: relative;-webkit-box-sizing: border-box;box-sizing: border-box;overflow: hidden; }.hi-v4-table-header__resizable {position: relative;background-clip: padding-box; }.hi-v4-table-header__resizable-handle {-webkit-box-sizing: content-box;box-sizing: content-box;position: absolute;width: 2px;height: 100%;bottom: 0;right: 0;border-left: 2px solid var(--hi-v4-color-gray-50, #f5f7fa);cursor: col-resize;z-index: 1; }.hi-v4-table-header__resizable:hover .hi-v4-table-header__resizable-handle {background-color: var(--hi-v4-color-primary-500, var(--hi-v4-color-brandblue-500, #237ffa)); }.hi-v4-table-header-cell {background-color: var(--hi-v4-color-gray-50, #f5f7fa); }.hi-v4-table-header-cell.hi-v4-table-header-cell__col--highlight, .hi-v4-table-header-cell.hi-v4-table-header-cell__col--hovered-highlight, .hi-v4-table-header-cell.hi-v4-table-header-cell__col--active {background-color: var(--hi-v4-color-gray-100, #f2f4f7); }.hi-v4-table-header-cell.hi-v4-table-header-cell__col--highlight[data-sticky], .hi-v4-table-header-cell.hi-v4-table-header-cell__col--hovered-highlight[data-sticky], .hi-v4-table-header-cell.hi-v4-table-header-cell__col--active[data-sticky] {background-color: var(--hi-v4-color-gray-100, #f2f4f7); }.hi-v4-table-row--hover:hover > .hi-v4-table-cell {background-color: var(--hi-v4-color-primary-50, var(--hi-v4-color-brandblue-50, #e2f3fe)); }.hi-v4-table-row--striped > .hi-v4-table-cell {background-color: var(--hi-v4-color-gray-50, #f5f7fa); }.hi-v4-table-row--expanded > .hi-v4-table-cell {color: var(--hi-v4-color-gray-800, #1f2937); }.hi-v4-table-row--error > .hi-v4-table-cell {color: var(--hi-v4-color-danger-500, var(--hi-v4-color-red-500, #ff5959)); }.hi-v4-table-row--highlight > .hi-v4-table-cell {background-color: var(--hi-v4-color-primary-50, var(--hi-v4-color-brandblue-50, #e2f3fe)); }.hi-v4-table-row--dragging > .hi-v4-table-cell {background-color: var(--hi-v4-color-primary-50, var(--hi-v4-color-brandblue-50, #e2f3fe)); }.hi-v4-table-row--drag-top > .hi-v4-table-cell {border-top: 2px dashed var(--hi-v4-color-primary-500, var(--hi-v4-color-brandblue-500, #237ffa)); }.hi-v4-table-row--drag-bottom > .hi-v4-table-cell {border-bottom: 2px dashed var(--hi-v4-color-primary-500, var(--hi-v4-color-brandblue-500, #237ffa)); }.hi-v4-table-row--avg > .hi-v4-table-cell, .hi-v4-table-row--total > .hi-v4-table-cell {background-color: var(--hi-v4-color-gray-50, #f5f7fa); }.hi-v4-table-row--avg:hover > .hi-v4-table-cell, .hi-v4-table-row--total:hover > .hi-v4-table-cell {background-color: var(--hi-v4-color-gray-50, #f5f7fa); }.hi-v4-table-row--virtual {display: -webkit-box;display: -ms-flexbox;display: flex; }.hi-v4-table-header .hi-v4-table-header-col, .hi-v4-table-header .hi-v4-table-col {background-color: var(--hi-v4-color-gray-50, #f5f7fa); }.hi-v4-table-body .hi-v4-table-header-col[data-hover-highlight], .hi-v4-table-body .hi-v4-table-col[data-hover-highlight] {background-color: var(--hi-v4-color-primary-50, var(--hi-v4-color-brandblue-50, #e2f3fe)); }.hi-v4-table-header .hi-v4-table-header-col[data-hover-highlight], .hi-v4-table-header .hi-v4-table-col[data-hover-highlight] {background-color: var(--hi-v4-color-gray-100, #f2f4f7); }.hi-v4-table-body {position: relative;overflow: auto; }.hi-v4-table-header-cell {color: var(--hi-v4-color-gray-700, #1f2733);font-size: var(--hi-v4-text-size-md, 0.875rem);font-weight: var(--hi-v4-text-weight-medium, 500);line-height: var(--hi-v4-text-lineheight-sm, 1.25rem);padding: var(--hi-v4-spacing-7, 14px) var(--hi-v4-spacing-8, 16px);border-bottom: var(--hi-v4-border-size-normal, 1px solid) var(--hi-v4-color-gray-300, #dfe2e8); }.hi-v4-table-header-cell.hi-v4-table__embed-col, .hi-v4-table-header-cell.hi-v4-table__selection-col {padding: var(--hi-v4-spacing-7, 14px) var(--hi-v4-spacing-5, 10px); }.hi-v4-table-cell {word-break: break-word;border-bottom: var(--hi-v4-border-size-normal, 1px solid) var(--hi-v4-color-gray-300, #dfe2e8);font-size: var(--hi-v4-text-size-md, 0.875rem);font-weight: var(--hi-v4-text-weight-normal, 400);color: var(--hi-v4-color-gray-700, #1f2733);line-height: var(--hi-v4-text-lineheight-sm, 1.25rem);padding: var(--hi-v4-spacing-7, 14px) var(--hi-v4-spacing-8, 16px);background-color: var(--hi-v4-color-static-white, #fff); }.hi-v4-table-cell__indent {display: inline-block;width: 14px;height: 100%;margin-right: var(--hi-v4-spacing-1, 2px); }.hi-v4-table-cell__switcher.hi-v4-icon-button {margin-right: var(--hi-v4-spacing-1, 2px);color: var(--hi-v4-color-gray-500, #929aa6); }.hi-v4-table-cell.hi-v4-table__embed-col, .hi-v4-table-cell.hi-v4-table__selection-col {padding: var(--hi-v4-spacing-7, 14px) var(--hi-v4-spacing-5, 10px); }.hi-v4-table-cell.hi-v4-table-cell__col--highlight {background-color: var(--hi-v4-color-primary-50, var(--hi-v4-color-brandblue-50, #e2f3fe)); }.hi-v4-table-cell.hi-v4-table-cell__col--hovered-highlight {background-color: var(--hi-v4-color-primary-50, var(--hi-v4-color-brandblue-50, #e2f3fe)); }.hi-v4-table-freeze-shadow {position: absolute;top: 0;bottom: 0;z-index: 20;pointer-events: none;overflow: hidden;height: 100%;width: 200px; }.hi-v4-table-freeze-shadow--left {margin-right: 10px;left: 0;-webkit-box-shadow: 6px 0 6px -4px rgba(0, 0, 0, 0.15);box-shadow: 6px 0 6px -4px rgba(0, 0, 0, 0.15); }.hi-v4-table-freeze-shadow--right {margin-left: 10px;right: 0;-webkit-box-shadow: -6px 0 6px -4px rgba(0, 0, 0, 0.15);box-shadow: -6px 0 6px -4px rgba(0, 0, 0, 0.15); }.hi-v4-table-header-filter-dropdown__trigger.hi-v4-icon-button {margin-left: 4px; }.hi-v4-table-header-filter-dropdown__content {width: 124px;padding: var(--hi-v4-spacing-6, 12px) var(--hi-v4-spacing-4, 8px);font-weight: var(--hi-v4-text-weight-normal, 400); }.hi-v4-table-header-filter-dropdown__item {margin-top: var(--hi-v4-spacing-4, 8px);padding: var(--hi-v4-spacing-3, 6px) var(--hi-v4-spacing-4, 8px);border-radius: var(--hi-v4-border-radius-md, 4px);display: -webkit-box;display: -ms-flexbox;display: flex;-webkit-box-pack: justify;-ms-flex-pack: justify;justify-content: space-between;-webkit-box-align: center;-ms-flex-align: center;align-items: center;cursor: pointer;color: var(--hi-v4-color-gray-700, #1f2733);font-size: var(--hi-v4-text-size-md, 0.875rem); }.hi-v4-table-header-filter-dropdown__item:first-child {margin-top: 0; }.hi-v4-table-header-filter-dropdown__item:hover {background-color: var(--hi-v4-color-gray-50, #f5f7fa); }.hi-v4-table-header-filter-dropdown__item--active {background-color: var(--hi-v4-color-primary-50, var(--hi-v4-color-brandblue-50, #e2f3fe)); }.hi-v4-table-header-filter-dropdown__item--active:hover {background-color: var(--hi-v4-color-primary-50, var(--hi-v4-color-brandblue-50, #e2f3fe)); }.hi-v4-table-header-filter-sorter {display: -webkit-inline-box;display: -ms-inline-flexbox;display: inline-flex;-webkit-box-orient: vertical;-webkit-box-direction: normal;-ms-flex-direction: column;flex-direction: column;height: 20px;margin-top: 2px;margin-left: 6px; }.hi-v4-table-header-filter-sorter__icon {display: inline-block;height: 8px;cursor: pointer;overflow: hidden;font-weight: var(--hi-v4-text-weight-normal, 400);color: var(--hi-v4-color-gray-500, #929aa6); }.hi-v4-table-header-filter-sorter__icon svg {position: relative;top: -5px; }.hi-v4-table-header-filter-sorter__icon--active {color: var(--hi-v4-color-primary-500, var(--hi-v4-color-brandblue-500, #237ffa)); }.hi-v4-table-header-filter-custom__trigger {margin-left: 6px;color: var(--hi-v4-color-gray-500, #929aa6);cursor: pointer; }.hi-v4-table-header-filter-custom__content {padding: 12px 8px; }.hi-v4-table-embed-row {position: relative;z-index: 0; }.hi-v4-table-embed-row > td {background-color: var(--hi-v4-color-gray-200, #ebedf0);padding: var(--hi-v4-spacing-10, 20px); }.hi-v4-table-setting {position: absolute;height: 100%;z-index: 11;-webkit-box-sizing: border-box;box-sizing: border-box;right: 0;display: -webkit-box;display: -ms-flexbox;display: flex;-webkit-box-align: center;-ms-flex-align: center;align-items: center;border-left: var(--hi-v4-border-size-normal, 1px solid) var(--hi-v4-color-gray-300, #dfe2e8);border-bottom: none;border-top: none;color: var(--hi-v4-color-gray-500, #929aa6);cursor: pointer;font-size: var(--hi-v4-text-size-sm, 0.75rem);width: 18px;background: var(--hi-v4-color-gray-50, #f5f7fa); }.hi-v4-table-setting__btn-group {display: -webkit-box;display: -ms-flexbox;display: flex;-webkit-box-align: center;-ms-flex-align: center;align-items: center;-webkit-box-pack: end;-ms-flex-pack: end;justify-content: flex-end; }.hi-v4-table-setting-item {position: relative;padding-top: var(--hi-v4-spacing-1, 2px);padding-bottom: var(--hi-v4-spacing-1, 2px);-webkit-box-sizing: border-box;box-sizing: border-box; }.hi-v4-table-setting-item__wrap {-webkit-user-select: none;-moz-user-select: none;-ms-user-select: none;user-select: none;cursor: move;display: -webkit-box;display: -ms-flexbox;display: flex;-webkit-box-pack: justify;-ms-flex-pack: justify;justify-content: space-between;-webkit-box-align: center;-ms-flex-align: center;align-items: center;-webkit-box-orient: horizontal;-webkit-box-direction: normal;-ms-flex-direction: row;flex-direction: row;padding: var(--hi-v4-spacing-3, 6px) var(--hi-v4-spacing-4, 8px);line-height: var(--hi-v4-text-lineheight-sm, 1.25rem);border-radius: var(--hi-v4-border-radius-md, 4px); }.hi-v4-table-setting-item__wrap:hover {background-color: var(--hi-v4-color-primary-50, var(--hi-v4-color-brandblue-50, #e2f3fe)); }.hi-v4-table-setting-item--dragging .hi-v4-table-setting-item__wrap {opacity: 0.6; }.hi-v4-table-setting-item::before {position: absolute;left: 0;z-index: 9999;display: none;-webkit-box-sizing: border-box;box-sizing: border-box;width: 8px;height: 8px;content: '';background-color: var(--hi-v4-color-static-white, #fff);border: 1px solid var(--hi-v4-color-primary-500, var(--hi-v4-color-brandblue-500, #237ffa));border-radius: 100%; }.hi-v4-table-setting-item::after {position: absolute;content: '';z-index: 9998;display: block;-webkit-box-sizing: border-box;box-sizing: border-box;border-bottom-width: 0;border-bottom-style: solid;border-bottom-color: var(--hi-v4-color-primary-500, var(--hi-v4-color-brandblue-500, #237ffa));left: 0;width: 100%; }.hi-v4-table-setting-item::before, .hi-v4-table-setting-item::after {margin-left: -10px;margin-right: -10px; }.hi-v4-table-setting-item--direction-before::before {display: block;top: -0.5px;-webkit-transform: translateY(-4px);transform: translateY(-4px); }.hi-v4-table-setting-item--direction-before::after {top: -0.5px;border-bottom-width: 1px; }.hi-v4-table-setting-item--direction-after::before {display: block;bottom: 0.5px;-webkit-transform: translateY(4px);transform: translateY(4px); }.hi-v4-table-setting-item--direction-after::after {bottom: 0.5px;border-bottom-width: 1px; }.hi-v4-table-pagination {display: -webkit-box;display: -ms-flexbox;display: flex;-ms-flex-wrap: wrap;flex-wrap: wrap;row-gap: 8px;padding: var(--hi-v4-spacing-6, 12px) 0;background-color: var(--hi-v4-color-static-white, #fff); }.hi-v4-table-pagination--placement-left {-webkit-box-pack: start;-ms-flex-pack: start;justify-content: flex-start; }.hi-v4-table-pagination--placement-right {-webkit-box-pack: end;-ms-flex-pack: end;justify-content: flex-end; }.hi-v4-table-pagination--placement-middle {-webkit-box-pack: center;-ms-flex-pack: center;justify-content: center; }.hi-v4-table-empty-content td {text-align: center;padding: var(--hi-v4-spacing-12, 24px) 0; }.hi-v4-table--bordered .hi-v4-table-empty-content td {border-bottom: var(--hi-v4-border-size-normal, 1px solid) var(--hi-v4-color-gray-300, #dfe2e8); }";
|
|
15
|
+
var css_248z = ".hi-v4-table {-webkit-box-sizing: border-box;box-sizing: border-box;font-size: 14px;position: relative; }.hi-v4-table table {width: 100%;text-align: left;background-color: var(--hi-v4-color-static-white, #fff);border-radius: 2px 2px 0 0;border-spacing: 0;border-collapse: separate;display: table;table-layout: fixed; }.hi-v4-table__wrapper {position: relative;z-index: 0; }.hi-v4-table__switcher.hi-v4-icon-button {color: var(--hi-v4-color-gray-500, #929aa6); }.hi-v4-table__switcher--expanded.hi-v4-icon-button {color: var(--hi-v4-color-primary-400, var(--hi-v4-color-brandblue-400, #4a9eff)); }.hi-v4-table--size-md table tbody > tr:not(.hi-v4-table-empty-content) > td {padding: var(--hi-v4-spacing-7, 14px); }.hi-v4-table--size-md table thead > tr > th {padding: var(--hi-v4-spacing-7, 14px); }.hi-v4-table--size-sm table tbody > tr:not(.hi-v4-table-empty-content) > td {padding: var(--hi-v4-spacing-5, 10px); }.hi-v4-table--size-sm table thead > tr > th {padding: var(--hi-v4-spacing-5, 10px); }.hi-v4-table--size-lg table tbody > tr:not(.hi-v4-table-empty-content) > td {padding: var(--hi-v4-spacing-9, 18px); }.hi-v4-table--size-lg table thead > tr > th {padding: var(--hi-v4-spacing-9, 18px); }.hi-v4-table--bordered table thead > tr > th {border-right: var(--hi-v4-border-size-normal, 1px solid) var(--hi-v4-color-gray-200, #ebedf0); }.hi-v4-table--bordered table td {border-right: var(--hi-v4-border-size-normal, 1px solid) var(--hi-v4-color-gray-200, #ebedf0); }.hi-v4-table--bordered .hi-v4-table-header {border-top: var(--hi-v4-border-size-normal, 1px solid) var(--hi-v4-color-gray-200, #ebedf0);border-left: var(--hi-v4-border-size-normal, 1px solid) var(--hi-v4-color-gray-200, #ebedf0); }.hi-v4-table--bordered .hi-v4-table-body {border-left: var(--hi-v4-border-size-normal, 1px solid) var(--hi-v4-color-gray-200, #ebedf0); }.hi-v4-table--sticky {position: -webkit-sticky;position: sticky;top: 0; }.hi-v4-table--virtual {width: 100%;overflow: hidden; }.hi-v4-table--virtual .hi-v4-table-cell {-webkit-box-sizing: border-box;box-sizing: border-box; }.hi-v4-table-header {position: relative;-webkit-box-sizing: border-box;box-sizing: border-box;overflow: hidden; }.hi-v4-table-header__resizable {position: relative;background-clip: padding-box; }.hi-v4-table-header__resizable-handle {-webkit-box-sizing: content-box;box-sizing: content-box;position: absolute;width: 2px;height: 100%;bottom: 0;right: 0;border-left: 2px solid var(--hi-v4-color-gray-50, #f5f7fa);cursor: col-resize;z-index: 1; }.hi-v4-table-header__resizable:hover .hi-v4-table-header__resizable-handle {background-color: var(--hi-v4-color-primary-500, var(--hi-v4-color-brandblue-500, #237ffa)); }.hi-v4-table-header-cell {background-color: var(--hi-v4-color-gray-50, #f5f7fa); }.hi-v4-table-header-cell.hi-v4-table-header-cell__col--highlight, .hi-v4-table-header-cell.hi-v4-table-header-cell__col--hovered-highlight, .hi-v4-table-header-cell.hi-v4-table-header-cell__col--active {background-color: var(--hi-v4-color-gray-100, #f2f4f7); }.hi-v4-table-header-cell.hi-v4-table-header-cell__col--highlight[data-sticky], .hi-v4-table-header-cell.hi-v4-table-header-cell__col--hovered-highlight[data-sticky], .hi-v4-table-header-cell.hi-v4-table-header-cell__col--active[data-sticky] {background-color: var(--hi-v4-color-gray-100, #f2f4f7); }.hi-v4-table-row--hover:hover > .hi-v4-table-cell {background-color: var(--hi-v4-color-primary-50, var(--hi-v4-color-brandblue-50, #e2f3fe)); }.hi-v4-table-row--striped > .hi-v4-table-cell {background-color: var(--hi-v4-color-gray-50, #f5f7fa); }.hi-v4-table-row--expanded > .hi-v4-table-cell {color: var(--hi-v4-color-gray-800, #1f2937); }.hi-v4-table-row--error > .hi-v4-table-cell {color: var(--hi-v4-color-danger-500, var(--hi-v4-color-red-500, #ff5959)); }.hi-v4-table-row--highlight > .hi-v4-table-cell {background-color: var(--hi-v4-color-primary-50, var(--hi-v4-color-brandblue-50, #e2f3fe)); }.hi-v4-table-row--dragging > .hi-v4-table-cell {background-color: var(--hi-v4-color-primary-50, var(--hi-v4-color-brandblue-50, #e2f3fe)); }.hi-v4-table-row--drag-top > .hi-v4-table-cell {border-top: 2px dashed var(--hi-v4-color-primary-500, var(--hi-v4-color-brandblue-500, #237ffa)); }.hi-v4-table-row--drag-bottom > .hi-v4-table-cell {border-bottom: 2px dashed var(--hi-v4-color-primary-500, var(--hi-v4-color-brandblue-500, #237ffa)); }.hi-v4-table-row--avg > .hi-v4-table-cell, .hi-v4-table-row--total > .hi-v4-table-cell {background-color: var(--hi-v4-color-gray-50, #f5f7fa); }.hi-v4-table-row--avg:hover > .hi-v4-table-cell, .hi-v4-table-row--total:hover > .hi-v4-table-cell {background-color: var(--hi-v4-color-gray-50, #f5f7fa); }.hi-v4-table-row--virtual {display: -webkit-box;display: -ms-flexbox;display: flex; }.hi-v4-table-header .hi-v4-table-header-col, .hi-v4-table-header .hi-v4-table-col {background-color: var(--hi-v4-color-gray-50, #f5f7fa); }.hi-v4-table-body .hi-v4-table-header-col[data-hover-highlight], .hi-v4-table-body .hi-v4-table-col[data-hover-highlight] {background-color: var(--hi-v4-color-primary-50, var(--hi-v4-color-brandblue-50, #e2f3fe)); }.hi-v4-table-header .hi-v4-table-header-col[data-hover-highlight], .hi-v4-table-header .hi-v4-table-col[data-hover-highlight] {background-color: var(--hi-v4-color-gray-100, #f2f4f7); }.hi-v4-table-body {position: relative;overflow: auto; }.hi-v4-table-header-cell {color: var(--hi-v4-color-gray-700, #1f2733);font-size: var(--hi-v4-text-size-md, 0.875rem);font-weight: var(--hi-v4-text-weight-medium, 500);line-height: var(--hi-v4-text-lineheight-sm, 1.25rem);padding: var(--hi-v4-spacing-7, 14px) var(--hi-v4-spacing-8, 16px);border-bottom: var(--hi-v4-border-size-normal, 1px solid) var(--hi-v4-color-gray-300, #dfe2e8); }.hi-v4-table-header-cell.hi-v4-table__embed-col, .hi-v4-table-header-cell.hi-v4-table__selection-col {padding: var(--hi-v4-spacing-7, 14px) var(--hi-v4-spacing-5, 10px); }.hi-v4-table-cell {word-break: break-word;border-bottom: var(--hi-v4-border-size-normal, 1px solid) var(--hi-v4-color-gray-300, #dfe2e8);font-size: var(--hi-v4-text-size-md, 0.875rem);font-weight: var(--hi-v4-text-weight-normal, 400);color: var(--hi-v4-color-gray-700, #1f2733);line-height: var(--hi-v4-text-lineheight-sm, 1.25rem);padding: var(--hi-v4-spacing-7, 14px) var(--hi-v4-spacing-8, 16px);background-color: var(--hi-v4-color-static-white, #fff); }.hi-v4-table-cell__indent {display: inline-block;width: 14px;height: 100%;margin-right: var(--hi-v4-spacing-1, 2px); }.hi-v4-table-cell__switcher.hi-v4-icon-button {margin-right: var(--hi-v4-spacing-1, 2px);color: var(--hi-v4-color-gray-500, #929aa6); }.hi-v4-table-cell.hi-v4-table__embed-col, .hi-v4-table-cell.hi-v4-table__selection-col {padding: var(--hi-v4-spacing-7, 14px) var(--hi-v4-spacing-5, 10px); }.hi-v4-table-cell.hi-v4-table-cell__col--highlight {background-color: var(--hi-v4-color-primary-50, var(--hi-v4-color-brandblue-50, #e2f3fe)); }.hi-v4-table-cell.hi-v4-table-cell__col--hovered-highlight {background-color: var(--hi-v4-color-primary-50, var(--hi-v4-color-brandblue-50, #e2f3fe)); }.hi-v4-table-freeze-shadow {position: absolute;top: 0;bottom: 0;z-index: 20;pointer-events: none;overflow: hidden;height: 100%;width: 200px; }.hi-v4-table-freeze-shadow--left {margin-right: 10px;left: 0;-webkit-box-shadow: 6px 0 6px -4px rgba(0, 0, 0, 0.15);box-shadow: 6px 0 6px -4px rgba(0, 0, 0, 0.15); }.hi-v4-table-freeze-shadow--right {margin-left: 10px;right: 0;-webkit-box-shadow: -6px 0 6px -4px rgba(0, 0, 0, 0.15);box-shadow: -6px 0 6px -4px rgba(0, 0, 0, 0.15); }.hi-v4-table-header-filter-dropdown__trigger.hi-v4-icon-button {margin-left: 4px; }.hi-v4-table-header-filter-dropdown__content {width: 124px;padding: var(--hi-v4-spacing-6, 12px) var(--hi-v4-spacing-4, 8px);font-weight: var(--hi-v4-text-weight-normal, 400); }.hi-v4-table-header-filter-dropdown__item {margin-top: var(--hi-v4-spacing-4, 8px);padding: var(--hi-v4-spacing-3, 6px) var(--hi-v4-spacing-4, 8px);border-radius: var(--hi-v4-border-radius-md, 4px);display: -webkit-box;display: -ms-flexbox;display: flex;-webkit-box-pack: justify;-ms-flex-pack: justify;justify-content: space-between;-webkit-box-align: center;-ms-flex-align: center;align-items: center;cursor: pointer;color: var(--hi-v4-color-gray-700, #1f2733);font-size: var(--hi-v4-text-size-md, 0.875rem); }.hi-v4-table-header-filter-dropdown__item:first-child {margin-top: 0; }.hi-v4-table-header-filter-dropdown__item:hover {background-color: var(--hi-v4-color-gray-50, #f5f7fa); }.hi-v4-table-header-filter-dropdown__item--active {background-color: var(--hi-v4-color-primary-50, var(--hi-v4-color-brandblue-50, #e2f3fe)); }.hi-v4-table-header-filter-dropdown__item--active:hover {background-color: var(--hi-v4-color-primary-50, var(--hi-v4-color-brandblue-50, #e2f3fe)); }.hi-v4-table-header-filter-sorter {display: -webkit-inline-box;display: -ms-inline-flexbox;display: inline-flex;-webkit-box-orient: vertical;-webkit-box-direction: normal;-ms-flex-direction: column;flex-direction: column;height: 20px;vertical-align: middle;margin-left: 6px; }.hi-v4-table-header-filter-sorter__icon {display: inline-block;height: 8px;cursor: pointer;overflow: hidden;font-weight: var(--hi-v4-text-weight-normal, 400);color: var(--hi-v4-color-gray-500, #929aa6); }.hi-v4-table-header-filter-sorter__icon svg {position: relative;top: -5px; }.hi-v4-table-header-filter-sorter__icon--active {color: var(--hi-v4-color-primary-500, var(--hi-v4-color-brandblue-500, #237ffa)); }.hi-v4-table-header-filter-custom__trigger {margin-left: 6px;color: var(--hi-v4-color-gray-500, #929aa6);cursor: pointer; }.hi-v4-table-header-filter-custom__content {padding: 12px 8px; }.hi-v4-table-embed-row {position: relative;z-index: 0; }.hi-v4-table-embed-row > td {background-color: var(--hi-v4-color-gray-200, #ebedf0);padding: var(--hi-v4-spacing-10, 20px); }.hi-v4-table-setting {position: absolute;height: 100%;z-index: 11;-webkit-box-sizing: border-box;box-sizing: border-box;right: 0;display: -webkit-box;display: -ms-flexbox;display: flex;-webkit-box-align: center;-ms-flex-align: center;align-items: center;border-left: var(--hi-v4-border-size-normal, 1px solid) var(--hi-v4-color-gray-300, #dfe2e8);border-bottom: none;border-top: none;color: var(--hi-v4-color-gray-500, #929aa6);cursor: pointer;font-size: var(--hi-v4-text-size-sm, 0.75rem);width: 18px;background: var(--hi-v4-color-gray-50, #f5f7fa); }.hi-v4-table-setting__btn-group {display: -webkit-box;display: -ms-flexbox;display: flex;-webkit-box-align: center;-ms-flex-align: center;align-items: center;-webkit-box-pack: end;-ms-flex-pack: end;justify-content: flex-end; }.hi-v4-table-setting-item {position: relative;padding-top: var(--hi-v4-spacing-1, 2px);padding-bottom: var(--hi-v4-spacing-1, 2px);-webkit-box-sizing: border-box;box-sizing: border-box; }.hi-v4-table-setting-item__wrap {-webkit-user-select: none;-moz-user-select: none;-ms-user-select: none;user-select: none;cursor: move;display: -webkit-box;display: -ms-flexbox;display: flex;-webkit-box-pack: justify;-ms-flex-pack: justify;justify-content: space-between;-webkit-box-align: center;-ms-flex-align: center;align-items: center;-webkit-box-orient: horizontal;-webkit-box-direction: normal;-ms-flex-direction: row;flex-direction: row;padding: var(--hi-v4-spacing-3, 6px) var(--hi-v4-spacing-4, 8px);line-height: var(--hi-v4-text-lineheight-sm, 1.25rem);border-radius: var(--hi-v4-border-radius-md, 4px); }.hi-v4-table-setting-item__wrap:hover {background-color: var(--hi-v4-color-primary-50, var(--hi-v4-color-brandblue-50, #e2f3fe)); }.hi-v4-table-setting-item--dragging .hi-v4-table-setting-item__wrap {opacity: 0.6; }.hi-v4-table-setting-item::before {position: absolute;left: 0;z-index: 9999;display: none;-webkit-box-sizing: border-box;box-sizing: border-box;width: 8px;height: 8px;content: '';background-color: var(--hi-v4-color-static-white, #fff);border: 1px solid var(--hi-v4-color-primary-500, var(--hi-v4-color-brandblue-500, #237ffa));border-radius: 100%; }.hi-v4-table-setting-item::after {position: absolute;content: '';z-index: 9998;display: block;-webkit-box-sizing: border-box;box-sizing: border-box;border-bottom-width: 0;border-bottom-style: solid;border-bottom-color: var(--hi-v4-color-primary-500, var(--hi-v4-color-brandblue-500, #237ffa));left: 0;width: 100%; }.hi-v4-table-setting-item::before, .hi-v4-table-setting-item::after {margin-left: -10px;margin-right: -10px; }.hi-v4-table-setting-item--direction-before::before {display: block;top: -0.5px;-webkit-transform: translateY(-4px);transform: translateY(-4px); }.hi-v4-table-setting-item--direction-before::after {top: -0.5px;border-bottom-width: 1px; }.hi-v4-table-setting-item--direction-after::before {display: block;bottom: 0.5px;-webkit-transform: translateY(4px);transform: translateY(4px); }.hi-v4-table-setting-item--direction-after::after {bottom: 0.5px;border-bottom-width: 1px; }.hi-v4-table-pagination {display: -webkit-box;display: -ms-flexbox;display: flex;-ms-flex-wrap: wrap;flex-wrap: wrap;row-gap: 8px;padding: var(--hi-v4-spacing-6, 12px) 0;background-color: var(--hi-v4-color-static-white, #fff); }.hi-v4-table-pagination--placement-left {-webkit-box-pack: start;-ms-flex-pack: start;justify-content: flex-start; }.hi-v4-table-pagination--placement-right {-webkit-box-pack: end;-ms-flex-pack: end;justify-content: flex-end; }.hi-v4-table-pagination--placement-middle {-webkit-box-pack: center;-ms-flex-pack: center;justify-content: center; }.hi-v4-table-empty-content td {text-align: center;padding: var(--hi-v4-spacing-12, 24px) 0; }.hi-v4-table--bordered .hi-v4-table-empty-content td {border-bottom: var(--hi-v4-border-size-normal, 1px solid) var(--hi-v4-color-gray-300, #dfe2e8); }";
|
|
16
16
|
|
|
17
17
|
var __styleInject__ = require('inject-head-style')["default"];
|
|
18
18
|
|
package/lib/cjs/use-table.js
CHANGED
|
@@ -215,7 +215,7 @@ var useTable = function useTable(_a) {
|
|
|
215
215
|
resizable: resizable,
|
|
216
216
|
virtual: virtual
|
|
217
217
|
}),
|
|
218
|
-
|
|
218
|
+
setMeasureRowElement = _useColWidth.setMeasureRowElement,
|
|
219
219
|
getColgroupProps = _useColWidth.getColgroupProps,
|
|
220
220
|
onColumnResizable = _useColWidth.onColumnResizable,
|
|
221
221
|
colWidths = _useColWidth.colWidths; // ************************ 列冻结 ************************ //
|
|
@@ -565,7 +565,7 @@ var useTable = function useTable(_a) {
|
|
|
565
565
|
// 行多选
|
|
566
566
|
rowSelection: rowSelection,
|
|
567
567
|
cacheData: cacheData,
|
|
568
|
-
|
|
568
|
+
setMeasureRowElement: setMeasureRowElement,
|
|
569
569
|
leafColumns: leafColumns,
|
|
570
570
|
// ui
|
|
571
571
|
// 有表头分组那么也要 bordered
|
package/lib/esm/Table.js
CHANGED
|
@@ -61,6 +61,7 @@ var Table = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
|
61
61
|
onHiddenColKeysChange = _a.onHiddenColKeysChange,
|
|
62
62
|
sortedColKeysPropBeforeVerify = _a.sortedColKeys,
|
|
63
63
|
onSortedColKeysChange = _a.onSortedColKeysChange,
|
|
64
|
+
checkDisabledColKeys = _a.checkDisabledColKeys,
|
|
64
65
|
onSetColKeysChange = _a.onSetColKeysChange,
|
|
65
66
|
rowSelection = _a.rowSelection,
|
|
66
67
|
_a$fieldKey = _a.fieldKey,
|
|
@@ -69,7 +70,7 @@ var Table = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
|
69
70
|
_a$data = _a.data,
|
|
70
71
|
data = _a$data === void 0 ? DEFAULT_DATA : _a$data,
|
|
71
72
|
virtual = _a.virtual,
|
|
72
|
-
rest = __rest(_a, ["prefixCls", "standard", "loading", "dataSource", "pagination", "uniqueId", "columns", "hiddenColKeys", "onHiddenColKeysChange", "sortedColKeys", "onSortedColKeysChange", "onSetColKeysChange", "rowSelection", "fieldKey", "extra", "data", "virtual"]);
|
|
73
|
+
rest = __rest(_a, ["prefixCls", "standard", "loading", "dataSource", "pagination", "uniqueId", "columns", "hiddenColKeys", "onHiddenColKeysChange", "sortedColKeys", "onSortedColKeysChange", "checkDisabledColKeys", "onSetColKeysChange", "rowSelection", "fieldKey", "extra", "data", "virtual"]);
|
|
73
74
|
|
|
74
75
|
var tableProps = withDefaultProps(rest, standard ? STANDARD_PRESET : undefined);
|
|
75
76
|
|
|
@@ -294,6 +295,7 @@ var Table = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
|
294
295
|
setHiddenColKeys: setHiddenColKeys,
|
|
295
296
|
cacheHiddenColKeys: cacheHiddenColKeys,
|
|
296
297
|
setCacheHiddenColKeys: setCacheHiddenColKeys,
|
|
298
|
+
checkDisabledColKeys: checkDisabledColKeys,
|
|
297
299
|
onSetColKeysChange: onSetColKeysChange
|
|
298
300
|
}) : null,
|
|
299
301
|
footer: dataSource || !hiddenPagination ? /*#__PURE__*/React__default.createElement(Pagination, Object.assign({
|
package/lib/esm/TableBody.js
CHANGED
|
@@ -32,7 +32,7 @@ var TableBody = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
|
32
32
|
var _useTableContext = useTableContext(),
|
|
33
33
|
columns = _useTableContext.columns,
|
|
34
34
|
leafColumns = _useTableContext.leafColumns,
|
|
35
|
-
|
|
35
|
+
setMeasureRowElement = _useTableContext.setMeasureRowElement,
|
|
36
36
|
isExpandTreeRows = _useTableContext.isExpandTreeRows,
|
|
37
37
|
transitionData = _useTableContext.transitionData,
|
|
38
38
|
getColgroupProps = _useTableContext.getColgroupProps,
|
|
@@ -97,7 +97,9 @@ var TableBody = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
|
97
97
|
overflowX: canScroll ? 'scroll' : undefined
|
|
98
98
|
}
|
|
99
99
|
}, /*#__PURE__*/React__default.createElement("div", {
|
|
100
|
-
ref:
|
|
100
|
+
ref: function ref(domElement) {
|
|
101
|
+
setMeasureRowElement(domElement);
|
|
102
|
+
},
|
|
101
103
|
style: {
|
|
102
104
|
height: 1,
|
|
103
105
|
background: 'transparent'
|
|
@@ -162,7 +164,11 @@ var TableBody = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
|
162
164
|
}, getColgroupProps(col, idx)));
|
|
163
165
|
})), /*#__PURE__*/React__default.createElement("tbody", null, isArrayNonEmpty(transitionData) ? /*#__PURE__*/React__default.createElement(React__default.Fragment, null, transitionData.map(function (row, index) {
|
|
164
166
|
return /*#__PURE__*/React__default.createElement(TableRow, Object.assign({
|
|
165
|
-
ref:
|
|
167
|
+
ref: function ref(dom) {
|
|
168
|
+
if (index === 0) {
|
|
169
|
+
setMeasureRowElement(dom);
|
|
170
|
+
}
|
|
171
|
+
},
|
|
166
172
|
// key={depth + index}
|
|
167
173
|
key: row.id,
|
|
168
174
|
// @ts-ignore
|
|
@@ -40,7 +40,9 @@ var TableSettingMenu = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
|
40
40
|
setHiddenColKeys = _ref.setHiddenColKeys,
|
|
41
41
|
cacheHiddenColKeys = _ref.cacheHiddenColKeys,
|
|
42
42
|
setCacheHiddenColKeys = _ref.setCacheHiddenColKeys,
|
|
43
|
-
onSetColKeysChange = _ref.onSetColKeysChange
|
|
43
|
+
onSetColKeysChange = _ref.onSetColKeysChange,
|
|
44
|
+
_ref$checkDisabledCol = _ref.checkDisabledColKeys,
|
|
45
|
+
checkDisabledColKeys = _ref$checkDisabledCol === void 0 ? [] : _ref$checkDisabledCol;
|
|
44
46
|
var i18n = useLocaleContext();
|
|
45
47
|
var dropProps = useDrop({
|
|
46
48
|
draggable: true,
|
|
@@ -136,7 +138,8 @@ var TableSettingMenu = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
|
136
138
|
index: index,
|
|
137
139
|
dropProps: dropProps,
|
|
138
140
|
cacheHiddenColKeys: cacheHiddenColKeys,
|
|
139
|
-
setCacheHiddenColKeys: setCacheHiddenColKeys
|
|
141
|
+
setCacheHiddenColKeys: setCacheHiddenColKeys,
|
|
142
|
+
checkDisabled: checkDisabledColKeys.includes(col.dataKey)
|
|
140
143
|
});
|
|
141
144
|
}))));
|
|
142
145
|
});
|
|
@@ -151,7 +154,8 @@ function TableSettingMenuItem(_ref2) {
|
|
|
151
154
|
cacheHiddenColKeys = _ref2.cacheHiddenColKeys,
|
|
152
155
|
setCacheHiddenColKeys = _ref2.setCacheHiddenColKeys,
|
|
153
156
|
dropProps = _ref2.dropProps,
|
|
154
|
-
index = _ref2.index
|
|
157
|
+
index = _ref2.index,
|
|
158
|
+
checkDisabled = _ref2.checkDisabled;
|
|
155
159
|
var dataKey = column.dataKey,
|
|
156
160
|
title = column.title;
|
|
157
161
|
|
|
@@ -171,6 +175,7 @@ function TableSettingMenuItem(_ref2) {
|
|
|
171
175
|
}, getDragTriggerProps(), getDropTriggerProps()), /*#__PURE__*/React__default.createElement("div", {
|
|
172
176
|
className: prefixCls + "-item__wrap"
|
|
173
177
|
}, /*#__PURE__*/React__default.createElement(Checkbox, {
|
|
178
|
+
disabled: checkDisabled,
|
|
174
179
|
checked: !cacheHiddenColKeys.includes(dataKey),
|
|
175
180
|
onChange: function onChange(evt) {
|
|
176
181
|
var shouldChecked = evt.target.checked;
|
|
@@ -7,59 +7,69 @@
|
|
|
7
7
|
* This source code is licensed under the MIT license found in the
|
|
8
8
|
* LICENSE file in the root directory of this source tree.
|
|
9
9
|
*/
|
|
10
|
-
import React__default, {
|
|
10
|
+
import React__default, { useCallback } from 'react';
|
|
11
11
|
import { getGroupItemWidth } from '../utils/index.js';
|
|
12
12
|
import { useUpdateEffect } from '@hi-ui/use-update-effect';
|
|
13
13
|
|
|
14
14
|
var useColWidth = function useColWidth(_ref) {
|
|
15
15
|
var columns = _ref.columns,
|
|
16
16
|
virtual = _ref.virtual;
|
|
17
|
-
var measureRowElementRef = useRef(null);
|
|
18
17
|
|
|
19
|
-
var _React$useState = React__default.useState(
|
|
18
|
+
var _React$useState = React__default.useState(null),
|
|
19
|
+
measureRowElement = _React$useState[0],
|
|
20
|
+
setMeasureRowElement = _React$useState[1];
|
|
21
|
+
|
|
22
|
+
var _React$useState2 = React__default.useState(function () {
|
|
20
23
|
return getGroupItemWidth(columns);
|
|
21
24
|
}),
|
|
22
|
-
colWidths = _React$
|
|
23
|
-
setColWidths = _React$
|
|
25
|
+
colWidths = _React$useState2[0],
|
|
26
|
+
setColWidths = _React$useState2[1];
|
|
24
27
|
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
28
|
+
var getVirtualWidths = useCallback(function () {
|
|
29
|
+
if (!measureRowElement) {
|
|
30
|
+
return getGroupItemWidth(columns);
|
|
31
|
+
}
|
|
32
|
+
/** 虚拟滚动时,内容宽度不能用以前table自动渲染的方式获取,需要手动计算 */
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
var columnDefaultWidth = 200;
|
|
36
|
+
var containerWidth = measureRowElement.clientWidth;
|
|
37
|
+
var totalWidth = 0;
|
|
38
|
+
/** 虚拟滚动,需要根据collist的虚拟宽度来计算宽度 */
|
|
39
|
+
|
|
40
|
+
columns.forEach(function (columnItem) {
|
|
41
|
+
totalWidth += columnItem.width || columnDefaultWidth;
|
|
42
|
+
});
|
|
43
|
+
|
|
44
|
+
if (totalWidth < containerWidth) {
|
|
45
|
+
// 容器宽度大于设置的宽度总和时,col宽度等比分分配占满容器。
|
|
46
|
+
return columns.map(function (columnItem) {
|
|
47
|
+
return (columnItem.width || columnDefaultWidth) * containerWidth / totalWidth;
|
|
48
|
+
});
|
|
49
|
+
} else {
|
|
50
|
+
// 容器宽度小于设置的宽度总和时,col宽度等于设置/默认宽度。
|
|
51
|
+
return columns.map(function (columnItem) {
|
|
52
|
+
return columnItem.width || columnDefaultWidth;
|
|
53
|
+
});
|
|
54
|
+
}
|
|
55
|
+
}, [measureRowElement, columns]);
|
|
29
56
|
useUpdateEffect(function () {
|
|
30
|
-
|
|
31
|
-
|
|
57
|
+
if (virtual) {
|
|
58
|
+
// 虚拟滚动的计算需要根据容器来做分配,不能使用没有witdh默认设置为0的方式来做表格平均分配
|
|
59
|
+
setColWidths(getVirtualWidths());
|
|
60
|
+
} else {
|
|
61
|
+
setColWidths(getGroupItemWidth(columns));
|
|
62
|
+
}
|
|
63
|
+
}, [columns, getVirtualWidths, virtual]);
|
|
32
64
|
/**
|
|
33
65
|
* 根据实际内容区(table 的第一行)渲染,再次精确收集并设置每列宽度
|
|
34
66
|
*/
|
|
35
67
|
|
|
36
68
|
React__default.useEffect(function () {
|
|
37
|
-
var measureRowElement = measureRowElementRef.current;
|
|
38
|
-
|
|
39
69
|
if (measureRowElement) {
|
|
40
70
|
var _resizeObserver = new ResizeObserver(function () {
|
|
41
71
|
if (virtual) {
|
|
42
|
-
|
|
43
|
-
var columnDefaultWidth = 200;
|
|
44
|
-
var containerWidth = measureRowElement.clientWidth;
|
|
45
|
-
var totalWidth = 0;
|
|
46
|
-
/** 虚拟滚动,需要根据collist的虚拟宽度来计算宽度 */
|
|
47
|
-
|
|
48
|
-
columns.forEach(function (columnItem) {
|
|
49
|
-
totalWidth += columnItem.width || columnDefaultWidth;
|
|
50
|
-
});
|
|
51
|
-
|
|
52
|
-
if (totalWidth < containerWidth) {
|
|
53
|
-
// 容器宽度大于设置的宽度总和时,col宽度等比分分配占满容器。
|
|
54
|
-
setColWidths(columns.map(function (columnItem) {
|
|
55
|
-
return (columnItem.width || columnDefaultWidth) * containerWidth / totalWidth;
|
|
56
|
-
}));
|
|
57
|
-
} else {
|
|
58
|
-
// 容器宽度小于设置的宽度总和时,col宽度等于设置/默认宽度。
|
|
59
|
-
setColWidths(columns.map(function (columnItem) {
|
|
60
|
-
return columnItem.width || columnDefaultWidth;
|
|
61
|
-
}));
|
|
62
|
-
}
|
|
72
|
+
setColWidths(getVirtualWidths());
|
|
63
73
|
} else {
|
|
64
74
|
if (measureRowElement.childNodes) {
|
|
65
75
|
var _realColumnsWidth = Array.from(measureRowElement.childNodes).map(function (node) {
|
|
@@ -78,12 +88,12 @@ var useColWidth = function useColWidth(_ref) {
|
|
|
78
88
|
_resizeObserver.observe(measureRowElement);
|
|
79
89
|
}
|
|
80
90
|
|
|
81
|
-
return function () {};
|
|
82
|
-
}, []);
|
|
91
|
+
return function () {}; // 测量元素在内容列为空时会是空,切换会使测量元素变化,导致后续的resize时间无法响应,此处测量元素变化时需要重新绑定
|
|
92
|
+
}, [measureRowElement, virtual]);
|
|
83
93
|
|
|
84
|
-
var _React$
|
|
85
|
-
headerTableElement = _React$
|
|
86
|
-
setHeaderTableElement = _React$
|
|
94
|
+
var _React$useState3 = React__default.useState(null),
|
|
95
|
+
headerTableElement = _React$useState3[0],
|
|
96
|
+
setHeaderTableElement = _React$useState3[1];
|
|
87
97
|
/**
|
|
88
98
|
* 控制列最小可调整宽度
|
|
89
99
|
*/
|
|
@@ -137,7 +147,8 @@ var useColWidth = function useColWidth(_ref) {
|
|
|
137
147
|
};
|
|
138
148
|
}, [colWidths]);
|
|
139
149
|
return {
|
|
140
|
-
|
|
150
|
+
measureRowElement: measureRowElement,
|
|
151
|
+
setMeasureRowElement: setMeasureRowElement,
|
|
141
152
|
onColumnResizable: onColumnResizable,
|
|
142
153
|
getColgroupProps: getColgroupProps,
|
|
143
154
|
setHeaderTableElement: setHeaderTableElement,
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
* LICENSE file in the root directory of this source tree.
|
|
9
9
|
*/
|
|
10
10
|
import __styleInject__ from 'inject-head-style';
|
|
11
|
-
var css_248z = ".hi-v4-table {-webkit-box-sizing: border-box;box-sizing: border-box;font-size: 14px;position: relative; }.hi-v4-table table {width: 100%;text-align: left;background-color: var(--hi-v4-color-static-white, #fff);border-radius: 2px 2px 0 0;border-spacing: 0;border-collapse: separate;display: table;table-layout: fixed; }.hi-v4-table__wrapper {position: relative;z-index: 0; }.hi-v4-table__switcher.hi-v4-icon-button {color: var(--hi-v4-color-gray-500, #929aa6); }.hi-v4-table__switcher--expanded.hi-v4-icon-button {color: var(--hi-v4-color-primary-400, var(--hi-v4-color-brandblue-400, #4a9eff)); }.hi-v4-table--size-md table tbody > tr:not(.hi-v4-table-empty-content) > td {padding: var(--hi-v4-spacing-7, 14px); }.hi-v4-table--size-md table thead > tr > th {padding: var(--hi-v4-spacing-7, 14px); }.hi-v4-table--size-sm table tbody > tr:not(.hi-v4-table-empty-content) > td {padding: var(--hi-v4-spacing-5, 10px); }.hi-v4-table--size-sm table thead > tr > th {padding: var(--hi-v4-spacing-5, 10px); }.hi-v4-table--size-lg table tbody > tr:not(.hi-v4-table-empty-content) > td {padding: var(--hi-v4-spacing-9, 18px); }.hi-v4-table--size-lg table thead > tr > th {padding: var(--hi-v4-spacing-9, 18px); }.hi-v4-table--bordered table thead > tr > th {border-right: var(--hi-v4-border-size-normal, 1px solid) var(--hi-v4-color-gray-200, #ebedf0); }.hi-v4-table--bordered table td {border-right: var(--hi-v4-border-size-normal, 1px solid) var(--hi-v4-color-gray-200, #ebedf0); }.hi-v4-table--bordered .hi-v4-table-header {border-top: var(--hi-v4-border-size-normal, 1px solid) var(--hi-v4-color-gray-200, #ebedf0);border-left: var(--hi-v4-border-size-normal, 1px solid) var(--hi-v4-color-gray-200, #ebedf0); }.hi-v4-table--bordered .hi-v4-table-body {border-left: var(--hi-v4-border-size-normal, 1px solid) var(--hi-v4-color-gray-200, #ebedf0); }.hi-v4-table--sticky {position: -webkit-sticky;position: sticky;top: 0; }.hi-v4-table--virtual {width: 100%;overflow: hidden; }.hi-v4-table--virtual .hi-v4-table-cell {-webkit-box-sizing: border-box;box-sizing: border-box; }.hi-v4-table-header {position: relative;-webkit-box-sizing: border-box;box-sizing: border-box;overflow: hidden; }.hi-v4-table-header__resizable {position: relative;background-clip: padding-box; }.hi-v4-table-header__resizable-handle {-webkit-box-sizing: content-box;box-sizing: content-box;position: absolute;width: 2px;height: 100%;bottom: 0;right: 0;border-left: 2px solid var(--hi-v4-color-gray-50, #f5f7fa);cursor: col-resize;z-index: 1; }.hi-v4-table-header__resizable:hover .hi-v4-table-header__resizable-handle {background-color: var(--hi-v4-color-primary-500, var(--hi-v4-color-brandblue-500, #237ffa)); }.hi-v4-table-header-cell {background-color: var(--hi-v4-color-gray-50, #f5f7fa); }.hi-v4-table-header-cell.hi-v4-table-header-cell__col--highlight, .hi-v4-table-header-cell.hi-v4-table-header-cell__col--hovered-highlight, .hi-v4-table-header-cell.hi-v4-table-header-cell__col--active {background-color: var(--hi-v4-color-gray-100, #f2f4f7); }.hi-v4-table-header-cell.hi-v4-table-header-cell__col--highlight[data-sticky], .hi-v4-table-header-cell.hi-v4-table-header-cell__col--hovered-highlight[data-sticky], .hi-v4-table-header-cell.hi-v4-table-header-cell__col--active[data-sticky] {background-color: var(--hi-v4-color-gray-100, #f2f4f7); }.hi-v4-table-row--hover:hover > .hi-v4-table-cell {background-color: var(--hi-v4-color-primary-50, var(--hi-v4-color-brandblue-50, #e2f3fe)); }.hi-v4-table-row--striped > .hi-v4-table-cell {background-color: var(--hi-v4-color-gray-50, #f5f7fa); }.hi-v4-table-row--expanded > .hi-v4-table-cell {color: var(--hi-v4-color-gray-800, #1f2937); }.hi-v4-table-row--error > .hi-v4-table-cell {color: var(--hi-v4-color-danger-500, var(--hi-v4-color-red-500, #ff5959)); }.hi-v4-table-row--highlight > .hi-v4-table-cell {background-color: var(--hi-v4-color-primary-50, var(--hi-v4-color-brandblue-50, #e2f3fe)); }.hi-v4-table-row--dragging > .hi-v4-table-cell {background-color: var(--hi-v4-color-primary-50, var(--hi-v4-color-brandblue-50, #e2f3fe)); }.hi-v4-table-row--drag-top > .hi-v4-table-cell {border-top: 2px dashed var(--hi-v4-color-primary-500, var(--hi-v4-color-brandblue-500, #237ffa)); }.hi-v4-table-row--drag-bottom > .hi-v4-table-cell {border-bottom: 2px dashed var(--hi-v4-color-primary-500, var(--hi-v4-color-brandblue-500, #237ffa)); }.hi-v4-table-row--avg > .hi-v4-table-cell, .hi-v4-table-row--total > .hi-v4-table-cell {background-color: var(--hi-v4-color-gray-50, #f5f7fa); }.hi-v4-table-row--avg:hover > .hi-v4-table-cell, .hi-v4-table-row--total:hover > .hi-v4-table-cell {background-color: var(--hi-v4-color-gray-50, #f5f7fa); }.hi-v4-table-row--virtual {display: -webkit-box;display: -ms-flexbox;display: flex; }.hi-v4-table-header .hi-v4-table-header-col, .hi-v4-table-header .hi-v4-table-col {background-color: var(--hi-v4-color-gray-50, #f5f7fa); }.hi-v4-table-body .hi-v4-table-header-col[data-hover-highlight], .hi-v4-table-body .hi-v4-table-col[data-hover-highlight] {background-color: var(--hi-v4-color-primary-50, var(--hi-v4-color-brandblue-50, #e2f3fe)); }.hi-v4-table-header .hi-v4-table-header-col[data-hover-highlight], .hi-v4-table-header .hi-v4-table-col[data-hover-highlight] {background-color: var(--hi-v4-color-gray-100, #f2f4f7); }.hi-v4-table-body {position: relative;overflow: auto; }.hi-v4-table-header-cell {color: var(--hi-v4-color-gray-700, #1f2733);font-size: var(--hi-v4-text-size-md, 0.875rem);font-weight: var(--hi-v4-text-weight-medium, 500);line-height: var(--hi-v4-text-lineheight-sm, 1.25rem);padding: var(--hi-v4-spacing-7, 14px) var(--hi-v4-spacing-8, 16px);border-bottom: var(--hi-v4-border-size-normal, 1px solid) var(--hi-v4-color-gray-300, #dfe2e8); }.hi-v4-table-header-cell.hi-v4-table__embed-col, .hi-v4-table-header-cell.hi-v4-table__selection-col {padding: var(--hi-v4-spacing-7, 14px) var(--hi-v4-spacing-5, 10px); }.hi-v4-table-cell {word-break: break-word;border-bottom: var(--hi-v4-border-size-normal, 1px solid) var(--hi-v4-color-gray-300, #dfe2e8);font-size: var(--hi-v4-text-size-md, 0.875rem);font-weight: var(--hi-v4-text-weight-normal, 400);color: var(--hi-v4-color-gray-700, #1f2733);line-height: var(--hi-v4-text-lineheight-sm, 1.25rem);padding: var(--hi-v4-spacing-7, 14px) var(--hi-v4-spacing-8, 16px);background-color: var(--hi-v4-color-static-white, #fff); }.hi-v4-table-cell__indent {display: inline-block;width: 14px;height: 100%;margin-right: var(--hi-v4-spacing-1, 2px); }.hi-v4-table-cell__switcher.hi-v4-icon-button {margin-right: var(--hi-v4-spacing-1, 2px);color: var(--hi-v4-color-gray-500, #929aa6); }.hi-v4-table-cell.hi-v4-table__embed-col, .hi-v4-table-cell.hi-v4-table__selection-col {padding: var(--hi-v4-spacing-7, 14px) var(--hi-v4-spacing-5, 10px); }.hi-v4-table-cell.hi-v4-table-cell__col--highlight {background-color: var(--hi-v4-color-primary-50, var(--hi-v4-color-brandblue-50, #e2f3fe)); }.hi-v4-table-cell.hi-v4-table-cell__col--hovered-highlight {background-color: var(--hi-v4-color-primary-50, var(--hi-v4-color-brandblue-50, #e2f3fe)); }.hi-v4-table-freeze-shadow {position: absolute;top: 0;bottom: 0;z-index: 20;pointer-events: none;overflow: hidden;height: 100%;width: 200px; }.hi-v4-table-freeze-shadow--left {margin-right: 10px;left: 0;-webkit-box-shadow: 6px 0 6px -4px rgba(0, 0, 0, 0.15);box-shadow: 6px 0 6px -4px rgba(0, 0, 0, 0.15); }.hi-v4-table-freeze-shadow--right {margin-left: 10px;right: 0;-webkit-box-shadow: -6px 0 6px -4px rgba(0, 0, 0, 0.15);box-shadow: -6px 0 6px -4px rgba(0, 0, 0, 0.15); }.hi-v4-table-header-filter-dropdown__trigger.hi-v4-icon-button {margin-left: 4px; }.hi-v4-table-header-filter-dropdown__content {width: 124px;padding: var(--hi-v4-spacing-6, 12px) var(--hi-v4-spacing-4, 8px);font-weight: var(--hi-v4-text-weight-normal, 400); }.hi-v4-table-header-filter-dropdown__item {margin-top: var(--hi-v4-spacing-4, 8px);padding: var(--hi-v4-spacing-3, 6px) var(--hi-v4-spacing-4, 8px);border-radius: var(--hi-v4-border-radius-md, 4px);display: -webkit-box;display: -ms-flexbox;display: flex;-webkit-box-pack: justify;-ms-flex-pack: justify;justify-content: space-between;-webkit-box-align: center;-ms-flex-align: center;align-items: center;cursor: pointer;color: var(--hi-v4-color-gray-700, #1f2733);font-size: var(--hi-v4-text-size-md, 0.875rem); }.hi-v4-table-header-filter-dropdown__item:first-child {margin-top: 0; }.hi-v4-table-header-filter-dropdown__item:hover {background-color: var(--hi-v4-color-gray-50, #f5f7fa); }.hi-v4-table-header-filter-dropdown__item--active {background-color: var(--hi-v4-color-primary-50, var(--hi-v4-color-brandblue-50, #e2f3fe)); }.hi-v4-table-header-filter-dropdown__item--active:hover {background-color: var(--hi-v4-color-primary-50, var(--hi-v4-color-brandblue-50, #e2f3fe)); }.hi-v4-table-header-filter-sorter {display: -webkit-inline-box;display: -ms-inline-flexbox;display: inline-flex;-webkit-box-orient: vertical;-webkit-box-direction: normal;-ms-flex-direction: column;flex-direction: column;height: 20px;margin-top: 2px;margin-left: 6px; }.hi-v4-table-header-filter-sorter__icon {display: inline-block;height: 8px;cursor: pointer;overflow: hidden;font-weight: var(--hi-v4-text-weight-normal, 400);color: var(--hi-v4-color-gray-500, #929aa6); }.hi-v4-table-header-filter-sorter__icon svg {position: relative;top: -5px; }.hi-v4-table-header-filter-sorter__icon--active {color: var(--hi-v4-color-primary-500, var(--hi-v4-color-brandblue-500, #237ffa)); }.hi-v4-table-header-filter-custom__trigger {margin-left: 6px;color: var(--hi-v4-color-gray-500, #929aa6);cursor: pointer; }.hi-v4-table-header-filter-custom__content {padding: 12px 8px; }.hi-v4-table-embed-row {position: relative;z-index: 0; }.hi-v4-table-embed-row > td {background-color: var(--hi-v4-color-gray-200, #ebedf0);padding: var(--hi-v4-spacing-10, 20px); }.hi-v4-table-setting {position: absolute;height: 100%;z-index: 11;-webkit-box-sizing: border-box;box-sizing: border-box;right: 0;display: -webkit-box;display: -ms-flexbox;display: flex;-webkit-box-align: center;-ms-flex-align: center;align-items: center;border-left: var(--hi-v4-border-size-normal, 1px solid) var(--hi-v4-color-gray-300, #dfe2e8);border-bottom: none;border-top: none;color: var(--hi-v4-color-gray-500, #929aa6);cursor: pointer;font-size: var(--hi-v4-text-size-sm, 0.75rem);width: 18px;background: var(--hi-v4-color-gray-50, #f5f7fa); }.hi-v4-table-setting__btn-group {display: -webkit-box;display: -ms-flexbox;display: flex;-webkit-box-align: center;-ms-flex-align: center;align-items: center;-webkit-box-pack: end;-ms-flex-pack: end;justify-content: flex-end; }.hi-v4-table-setting-item {position: relative;padding-top: var(--hi-v4-spacing-1, 2px);padding-bottom: var(--hi-v4-spacing-1, 2px);-webkit-box-sizing: border-box;box-sizing: border-box; }.hi-v4-table-setting-item__wrap {-webkit-user-select: none;-moz-user-select: none;-ms-user-select: none;user-select: none;cursor: move;display: -webkit-box;display: -ms-flexbox;display: flex;-webkit-box-pack: justify;-ms-flex-pack: justify;justify-content: space-between;-webkit-box-align: center;-ms-flex-align: center;align-items: center;-webkit-box-orient: horizontal;-webkit-box-direction: normal;-ms-flex-direction: row;flex-direction: row;padding: var(--hi-v4-spacing-3, 6px) var(--hi-v4-spacing-4, 8px);line-height: var(--hi-v4-text-lineheight-sm, 1.25rem);border-radius: var(--hi-v4-border-radius-md, 4px); }.hi-v4-table-setting-item__wrap:hover {background-color: var(--hi-v4-color-primary-50, var(--hi-v4-color-brandblue-50, #e2f3fe)); }.hi-v4-table-setting-item--dragging .hi-v4-table-setting-item__wrap {opacity: 0.6; }.hi-v4-table-setting-item::before {position: absolute;left: 0;z-index: 9999;display: none;-webkit-box-sizing: border-box;box-sizing: border-box;width: 8px;height: 8px;content: '';background-color: var(--hi-v4-color-static-white, #fff);border: 1px solid var(--hi-v4-color-primary-500, var(--hi-v4-color-brandblue-500, #237ffa));border-radius: 100%; }.hi-v4-table-setting-item::after {position: absolute;content: '';z-index: 9998;display: block;-webkit-box-sizing: border-box;box-sizing: border-box;border-bottom-width: 0;border-bottom-style: solid;border-bottom-color: var(--hi-v4-color-primary-500, var(--hi-v4-color-brandblue-500, #237ffa));left: 0;width: 100%; }.hi-v4-table-setting-item::before, .hi-v4-table-setting-item::after {margin-left: -10px;margin-right: -10px; }.hi-v4-table-setting-item--direction-before::before {display: block;top: -0.5px;-webkit-transform: translateY(-4px);transform: translateY(-4px); }.hi-v4-table-setting-item--direction-before::after {top: -0.5px;border-bottom-width: 1px; }.hi-v4-table-setting-item--direction-after::before {display: block;bottom: 0.5px;-webkit-transform: translateY(4px);transform: translateY(4px); }.hi-v4-table-setting-item--direction-after::after {bottom: 0.5px;border-bottom-width: 1px; }.hi-v4-table-pagination {display: -webkit-box;display: -ms-flexbox;display: flex;-ms-flex-wrap: wrap;flex-wrap: wrap;row-gap: 8px;padding: var(--hi-v4-spacing-6, 12px) 0;background-color: var(--hi-v4-color-static-white, #fff); }.hi-v4-table-pagination--placement-left {-webkit-box-pack: start;-ms-flex-pack: start;justify-content: flex-start; }.hi-v4-table-pagination--placement-right {-webkit-box-pack: end;-ms-flex-pack: end;justify-content: flex-end; }.hi-v4-table-pagination--placement-middle {-webkit-box-pack: center;-ms-flex-pack: center;justify-content: center; }.hi-v4-table-empty-content td {text-align: center;padding: var(--hi-v4-spacing-12, 24px) 0; }.hi-v4-table--bordered .hi-v4-table-empty-content td {border-bottom: var(--hi-v4-border-size-normal, 1px solid) var(--hi-v4-color-gray-300, #dfe2e8); }";
|
|
11
|
+
var css_248z = ".hi-v4-table {-webkit-box-sizing: border-box;box-sizing: border-box;font-size: 14px;position: relative; }.hi-v4-table table {width: 100%;text-align: left;background-color: var(--hi-v4-color-static-white, #fff);border-radius: 2px 2px 0 0;border-spacing: 0;border-collapse: separate;display: table;table-layout: fixed; }.hi-v4-table__wrapper {position: relative;z-index: 0; }.hi-v4-table__switcher.hi-v4-icon-button {color: var(--hi-v4-color-gray-500, #929aa6); }.hi-v4-table__switcher--expanded.hi-v4-icon-button {color: var(--hi-v4-color-primary-400, var(--hi-v4-color-brandblue-400, #4a9eff)); }.hi-v4-table--size-md table tbody > tr:not(.hi-v4-table-empty-content) > td {padding: var(--hi-v4-spacing-7, 14px); }.hi-v4-table--size-md table thead > tr > th {padding: var(--hi-v4-spacing-7, 14px); }.hi-v4-table--size-sm table tbody > tr:not(.hi-v4-table-empty-content) > td {padding: var(--hi-v4-spacing-5, 10px); }.hi-v4-table--size-sm table thead > tr > th {padding: var(--hi-v4-spacing-5, 10px); }.hi-v4-table--size-lg table tbody > tr:not(.hi-v4-table-empty-content) > td {padding: var(--hi-v4-spacing-9, 18px); }.hi-v4-table--size-lg table thead > tr > th {padding: var(--hi-v4-spacing-9, 18px); }.hi-v4-table--bordered table thead > tr > th {border-right: var(--hi-v4-border-size-normal, 1px solid) var(--hi-v4-color-gray-200, #ebedf0); }.hi-v4-table--bordered table td {border-right: var(--hi-v4-border-size-normal, 1px solid) var(--hi-v4-color-gray-200, #ebedf0); }.hi-v4-table--bordered .hi-v4-table-header {border-top: var(--hi-v4-border-size-normal, 1px solid) var(--hi-v4-color-gray-200, #ebedf0);border-left: var(--hi-v4-border-size-normal, 1px solid) var(--hi-v4-color-gray-200, #ebedf0); }.hi-v4-table--bordered .hi-v4-table-body {border-left: var(--hi-v4-border-size-normal, 1px solid) var(--hi-v4-color-gray-200, #ebedf0); }.hi-v4-table--sticky {position: -webkit-sticky;position: sticky;top: 0; }.hi-v4-table--virtual {width: 100%;overflow: hidden; }.hi-v4-table--virtual .hi-v4-table-cell {-webkit-box-sizing: border-box;box-sizing: border-box; }.hi-v4-table-header {position: relative;-webkit-box-sizing: border-box;box-sizing: border-box;overflow: hidden; }.hi-v4-table-header__resizable {position: relative;background-clip: padding-box; }.hi-v4-table-header__resizable-handle {-webkit-box-sizing: content-box;box-sizing: content-box;position: absolute;width: 2px;height: 100%;bottom: 0;right: 0;border-left: 2px solid var(--hi-v4-color-gray-50, #f5f7fa);cursor: col-resize;z-index: 1; }.hi-v4-table-header__resizable:hover .hi-v4-table-header__resizable-handle {background-color: var(--hi-v4-color-primary-500, var(--hi-v4-color-brandblue-500, #237ffa)); }.hi-v4-table-header-cell {background-color: var(--hi-v4-color-gray-50, #f5f7fa); }.hi-v4-table-header-cell.hi-v4-table-header-cell__col--highlight, .hi-v4-table-header-cell.hi-v4-table-header-cell__col--hovered-highlight, .hi-v4-table-header-cell.hi-v4-table-header-cell__col--active {background-color: var(--hi-v4-color-gray-100, #f2f4f7); }.hi-v4-table-header-cell.hi-v4-table-header-cell__col--highlight[data-sticky], .hi-v4-table-header-cell.hi-v4-table-header-cell__col--hovered-highlight[data-sticky], .hi-v4-table-header-cell.hi-v4-table-header-cell__col--active[data-sticky] {background-color: var(--hi-v4-color-gray-100, #f2f4f7); }.hi-v4-table-row--hover:hover > .hi-v4-table-cell {background-color: var(--hi-v4-color-primary-50, var(--hi-v4-color-brandblue-50, #e2f3fe)); }.hi-v4-table-row--striped > .hi-v4-table-cell {background-color: var(--hi-v4-color-gray-50, #f5f7fa); }.hi-v4-table-row--expanded > .hi-v4-table-cell {color: var(--hi-v4-color-gray-800, #1f2937); }.hi-v4-table-row--error > .hi-v4-table-cell {color: var(--hi-v4-color-danger-500, var(--hi-v4-color-red-500, #ff5959)); }.hi-v4-table-row--highlight > .hi-v4-table-cell {background-color: var(--hi-v4-color-primary-50, var(--hi-v4-color-brandblue-50, #e2f3fe)); }.hi-v4-table-row--dragging > .hi-v4-table-cell {background-color: var(--hi-v4-color-primary-50, var(--hi-v4-color-brandblue-50, #e2f3fe)); }.hi-v4-table-row--drag-top > .hi-v4-table-cell {border-top: 2px dashed var(--hi-v4-color-primary-500, var(--hi-v4-color-brandblue-500, #237ffa)); }.hi-v4-table-row--drag-bottom > .hi-v4-table-cell {border-bottom: 2px dashed var(--hi-v4-color-primary-500, var(--hi-v4-color-brandblue-500, #237ffa)); }.hi-v4-table-row--avg > .hi-v4-table-cell, .hi-v4-table-row--total > .hi-v4-table-cell {background-color: var(--hi-v4-color-gray-50, #f5f7fa); }.hi-v4-table-row--avg:hover > .hi-v4-table-cell, .hi-v4-table-row--total:hover > .hi-v4-table-cell {background-color: var(--hi-v4-color-gray-50, #f5f7fa); }.hi-v4-table-row--virtual {display: -webkit-box;display: -ms-flexbox;display: flex; }.hi-v4-table-header .hi-v4-table-header-col, .hi-v4-table-header .hi-v4-table-col {background-color: var(--hi-v4-color-gray-50, #f5f7fa); }.hi-v4-table-body .hi-v4-table-header-col[data-hover-highlight], .hi-v4-table-body .hi-v4-table-col[data-hover-highlight] {background-color: var(--hi-v4-color-primary-50, var(--hi-v4-color-brandblue-50, #e2f3fe)); }.hi-v4-table-header .hi-v4-table-header-col[data-hover-highlight], .hi-v4-table-header .hi-v4-table-col[data-hover-highlight] {background-color: var(--hi-v4-color-gray-100, #f2f4f7); }.hi-v4-table-body {position: relative;overflow: auto; }.hi-v4-table-header-cell {color: var(--hi-v4-color-gray-700, #1f2733);font-size: var(--hi-v4-text-size-md, 0.875rem);font-weight: var(--hi-v4-text-weight-medium, 500);line-height: var(--hi-v4-text-lineheight-sm, 1.25rem);padding: var(--hi-v4-spacing-7, 14px) var(--hi-v4-spacing-8, 16px);border-bottom: var(--hi-v4-border-size-normal, 1px solid) var(--hi-v4-color-gray-300, #dfe2e8); }.hi-v4-table-header-cell.hi-v4-table__embed-col, .hi-v4-table-header-cell.hi-v4-table__selection-col {padding: var(--hi-v4-spacing-7, 14px) var(--hi-v4-spacing-5, 10px); }.hi-v4-table-cell {word-break: break-word;border-bottom: var(--hi-v4-border-size-normal, 1px solid) var(--hi-v4-color-gray-300, #dfe2e8);font-size: var(--hi-v4-text-size-md, 0.875rem);font-weight: var(--hi-v4-text-weight-normal, 400);color: var(--hi-v4-color-gray-700, #1f2733);line-height: var(--hi-v4-text-lineheight-sm, 1.25rem);padding: var(--hi-v4-spacing-7, 14px) var(--hi-v4-spacing-8, 16px);background-color: var(--hi-v4-color-static-white, #fff); }.hi-v4-table-cell__indent {display: inline-block;width: 14px;height: 100%;margin-right: var(--hi-v4-spacing-1, 2px); }.hi-v4-table-cell__switcher.hi-v4-icon-button {margin-right: var(--hi-v4-spacing-1, 2px);color: var(--hi-v4-color-gray-500, #929aa6); }.hi-v4-table-cell.hi-v4-table__embed-col, .hi-v4-table-cell.hi-v4-table__selection-col {padding: var(--hi-v4-spacing-7, 14px) var(--hi-v4-spacing-5, 10px); }.hi-v4-table-cell.hi-v4-table-cell__col--highlight {background-color: var(--hi-v4-color-primary-50, var(--hi-v4-color-brandblue-50, #e2f3fe)); }.hi-v4-table-cell.hi-v4-table-cell__col--hovered-highlight {background-color: var(--hi-v4-color-primary-50, var(--hi-v4-color-brandblue-50, #e2f3fe)); }.hi-v4-table-freeze-shadow {position: absolute;top: 0;bottom: 0;z-index: 20;pointer-events: none;overflow: hidden;height: 100%;width: 200px; }.hi-v4-table-freeze-shadow--left {margin-right: 10px;left: 0;-webkit-box-shadow: 6px 0 6px -4px rgba(0, 0, 0, 0.15);box-shadow: 6px 0 6px -4px rgba(0, 0, 0, 0.15); }.hi-v4-table-freeze-shadow--right {margin-left: 10px;right: 0;-webkit-box-shadow: -6px 0 6px -4px rgba(0, 0, 0, 0.15);box-shadow: -6px 0 6px -4px rgba(0, 0, 0, 0.15); }.hi-v4-table-header-filter-dropdown__trigger.hi-v4-icon-button {margin-left: 4px; }.hi-v4-table-header-filter-dropdown__content {width: 124px;padding: var(--hi-v4-spacing-6, 12px) var(--hi-v4-spacing-4, 8px);font-weight: var(--hi-v4-text-weight-normal, 400); }.hi-v4-table-header-filter-dropdown__item {margin-top: var(--hi-v4-spacing-4, 8px);padding: var(--hi-v4-spacing-3, 6px) var(--hi-v4-spacing-4, 8px);border-radius: var(--hi-v4-border-radius-md, 4px);display: -webkit-box;display: -ms-flexbox;display: flex;-webkit-box-pack: justify;-ms-flex-pack: justify;justify-content: space-between;-webkit-box-align: center;-ms-flex-align: center;align-items: center;cursor: pointer;color: var(--hi-v4-color-gray-700, #1f2733);font-size: var(--hi-v4-text-size-md, 0.875rem); }.hi-v4-table-header-filter-dropdown__item:first-child {margin-top: 0; }.hi-v4-table-header-filter-dropdown__item:hover {background-color: var(--hi-v4-color-gray-50, #f5f7fa); }.hi-v4-table-header-filter-dropdown__item--active {background-color: var(--hi-v4-color-primary-50, var(--hi-v4-color-brandblue-50, #e2f3fe)); }.hi-v4-table-header-filter-dropdown__item--active:hover {background-color: var(--hi-v4-color-primary-50, var(--hi-v4-color-brandblue-50, #e2f3fe)); }.hi-v4-table-header-filter-sorter {display: -webkit-inline-box;display: -ms-inline-flexbox;display: inline-flex;-webkit-box-orient: vertical;-webkit-box-direction: normal;-ms-flex-direction: column;flex-direction: column;height: 20px;vertical-align: middle;margin-left: 6px; }.hi-v4-table-header-filter-sorter__icon {display: inline-block;height: 8px;cursor: pointer;overflow: hidden;font-weight: var(--hi-v4-text-weight-normal, 400);color: var(--hi-v4-color-gray-500, #929aa6); }.hi-v4-table-header-filter-sorter__icon svg {position: relative;top: -5px; }.hi-v4-table-header-filter-sorter__icon--active {color: var(--hi-v4-color-primary-500, var(--hi-v4-color-brandblue-500, #237ffa)); }.hi-v4-table-header-filter-custom__trigger {margin-left: 6px;color: var(--hi-v4-color-gray-500, #929aa6);cursor: pointer; }.hi-v4-table-header-filter-custom__content {padding: 12px 8px; }.hi-v4-table-embed-row {position: relative;z-index: 0; }.hi-v4-table-embed-row > td {background-color: var(--hi-v4-color-gray-200, #ebedf0);padding: var(--hi-v4-spacing-10, 20px); }.hi-v4-table-setting {position: absolute;height: 100%;z-index: 11;-webkit-box-sizing: border-box;box-sizing: border-box;right: 0;display: -webkit-box;display: -ms-flexbox;display: flex;-webkit-box-align: center;-ms-flex-align: center;align-items: center;border-left: var(--hi-v4-border-size-normal, 1px solid) var(--hi-v4-color-gray-300, #dfe2e8);border-bottom: none;border-top: none;color: var(--hi-v4-color-gray-500, #929aa6);cursor: pointer;font-size: var(--hi-v4-text-size-sm, 0.75rem);width: 18px;background: var(--hi-v4-color-gray-50, #f5f7fa); }.hi-v4-table-setting__btn-group {display: -webkit-box;display: -ms-flexbox;display: flex;-webkit-box-align: center;-ms-flex-align: center;align-items: center;-webkit-box-pack: end;-ms-flex-pack: end;justify-content: flex-end; }.hi-v4-table-setting-item {position: relative;padding-top: var(--hi-v4-spacing-1, 2px);padding-bottom: var(--hi-v4-spacing-1, 2px);-webkit-box-sizing: border-box;box-sizing: border-box; }.hi-v4-table-setting-item__wrap {-webkit-user-select: none;-moz-user-select: none;-ms-user-select: none;user-select: none;cursor: move;display: -webkit-box;display: -ms-flexbox;display: flex;-webkit-box-pack: justify;-ms-flex-pack: justify;justify-content: space-between;-webkit-box-align: center;-ms-flex-align: center;align-items: center;-webkit-box-orient: horizontal;-webkit-box-direction: normal;-ms-flex-direction: row;flex-direction: row;padding: var(--hi-v4-spacing-3, 6px) var(--hi-v4-spacing-4, 8px);line-height: var(--hi-v4-text-lineheight-sm, 1.25rem);border-radius: var(--hi-v4-border-radius-md, 4px); }.hi-v4-table-setting-item__wrap:hover {background-color: var(--hi-v4-color-primary-50, var(--hi-v4-color-brandblue-50, #e2f3fe)); }.hi-v4-table-setting-item--dragging .hi-v4-table-setting-item__wrap {opacity: 0.6; }.hi-v4-table-setting-item::before {position: absolute;left: 0;z-index: 9999;display: none;-webkit-box-sizing: border-box;box-sizing: border-box;width: 8px;height: 8px;content: '';background-color: var(--hi-v4-color-static-white, #fff);border: 1px solid var(--hi-v4-color-primary-500, var(--hi-v4-color-brandblue-500, #237ffa));border-radius: 100%; }.hi-v4-table-setting-item::after {position: absolute;content: '';z-index: 9998;display: block;-webkit-box-sizing: border-box;box-sizing: border-box;border-bottom-width: 0;border-bottom-style: solid;border-bottom-color: var(--hi-v4-color-primary-500, var(--hi-v4-color-brandblue-500, #237ffa));left: 0;width: 100%; }.hi-v4-table-setting-item::before, .hi-v4-table-setting-item::after {margin-left: -10px;margin-right: -10px; }.hi-v4-table-setting-item--direction-before::before {display: block;top: -0.5px;-webkit-transform: translateY(-4px);transform: translateY(-4px); }.hi-v4-table-setting-item--direction-before::after {top: -0.5px;border-bottom-width: 1px; }.hi-v4-table-setting-item--direction-after::before {display: block;bottom: 0.5px;-webkit-transform: translateY(4px);transform: translateY(4px); }.hi-v4-table-setting-item--direction-after::after {bottom: 0.5px;border-bottom-width: 1px; }.hi-v4-table-pagination {display: -webkit-box;display: -ms-flexbox;display: flex;-ms-flex-wrap: wrap;flex-wrap: wrap;row-gap: 8px;padding: var(--hi-v4-spacing-6, 12px) 0;background-color: var(--hi-v4-color-static-white, #fff); }.hi-v4-table-pagination--placement-left {-webkit-box-pack: start;-ms-flex-pack: start;justify-content: flex-start; }.hi-v4-table-pagination--placement-right {-webkit-box-pack: end;-ms-flex-pack: end;justify-content: flex-end; }.hi-v4-table-pagination--placement-middle {-webkit-box-pack: center;-ms-flex-pack: center;justify-content: center; }.hi-v4-table-empty-content td {text-align: center;padding: var(--hi-v4-spacing-12, 24px) 0; }.hi-v4-table--bordered .hi-v4-table-empty-content td {border-bottom: var(--hi-v4-border-size-normal, 1px solid) var(--hi-v4-color-gray-300, #dfe2e8); }";
|
|
12
12
|
|
|
13
13
|
__styleInject__(css_248z);
|
|
14
14
|
|
package/lib/esm/use-table.js
CHANGED
|
@@ -183,7 +183,7 @@ var useTable = function useTable(_a) {
|
|
|
183
183
|
resizable: resizable,
|
|
184
184
|
virtual: virtual
|
|
185
185
|
}),
|
|
186
|
-
|
|
186
|
+
setMeasureRowElement = _useColWidth.setMeasureRowElement,
|
|
187
187
|
getColgroupProps = _useColWidth.getColgroupProps,
|
|
188
188
|
onColumnResizable = _useColWidth.onColumnResizable,
|
|
189
189
|
colWidths = _useColWidth.colWidths; // ************************ 列冻结 ************************ //
|
|
@@ -533,7 +533,7 @@ var useTable = function useTable(_a) {
|
|
|
533
533
|
// 行多选
|
|
534
534
|
rowSelection: rowSelection,
|
|
535
535
|
cacheData: cacheData,
|
|
536
|
-
|
|
536
|
+
setMeasureRowElement: setMeasureRowElement,
|
|
537
537
|
leafColumns: leafColumns,
|
|
538
538
|
// ui
|
|
539
539
|
// 有表头分组那么也要 bordered
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { UseTableProps } from './use-table';
|
|
3
|
+
/**
|
|
4
|
+
* 表头右侧高级设置菜单(抽屉式)
|
|
5
|
+
*/
|
|
6
|
+
export declare const TableSettingMenuDrawer: React.ForwardRefExoticComponent<TableColumnMenuProps & React.RefAttributes<HTMLDivElement | null>>;
|
|
7
|
+
export interface TableColumnMenuProps extends UseTableProps {
|
|
8
|
+
prefixCls?: string;
|
|
9
|
+
visible?: boolean;
|
|
10
|
+
onClose?: () => void;
|
|
11
|
+
checkDisabledColKeys?: string[];
|
|
12
|
+
onSetColKeysChange?: (sortedColKeys: string[], hiddenColKeys: string[]) => void;
|
|
13
|
+
hiddenColKeys?: string[];
|
|
14
|
+
onHiddenColKeysChange?: (hiddenColKeys: string[]) => void;
|
|
15
|
+
sortedColKeys?: string[];
|
|
16
|
+
onSortedColKeysChange?: (sortedColKeys: string[]) => void;
|
|
17
|
+
}
|
package/lib/types/Table.d.ts
CHANGED
|
@@ -8,5 +8,6 @@ import { UseColHiddenReturn } from './hooks/use-col-hidden';
|
|
|
8
8
|
export declare const TableSettingMenu: React.ForwardRefExoticComponent<TableColumnMenuProps & React.RefAttributes<HTMLDivElement | null>>;
|
|
9
9
|
export interface TableColumnMenuProps extends UseTableProps, UseColSorterReturn, Omit<UseColHiddenReturn, 'visibleCols'> {
|
|
10
10
|
prefixCls?: string;
|
|
11
|
+
checkDisabledColKeys?: string[];
|
|
11
12
|
onSetColKeysChange?: (sortedColKeys: string[], hiddenColKeys: string[]) => void;
|
|
12
13
|
}
|
package/lib/types/context.d.ts
CHANGED
|
@@ -69,7 +69,7 @@ export declare const TableProvider: import("react").Provider<(Omit<{
|
|
|
69
69
|
flattedColumnsWithoutChildren: import("./types").FlattedTableColumnItemData[];
|
|
70
70
|
rowSelection: import("./types").TableRowSelection | undefined;
|
|
71
71
|
cacheData: object[];
|
|
72
|
-
|
|
72
|
+
setMeasureRowElement: import("react").Dispatch<import("react").SetStateAction<Element | null>>;
|
|
73
73
|
leafColumns: import("packages/utils/tree-utils/lib/types/types").BaseFlattedTreeNodeData<any, any>[];
|
|
74
74
|
bordered: boolean;
|
|
75
75
|
scrollHeaderElementRef: import("react").RefObject<HTMLTableElement>;
|
|
@@ -174,7 +174,7 @@ export declare const useTableContext: () => Omit<{
|
|
|
174
174
|
flattedColumnsWithoutChildren: import("./types").FlattedTableColumnItemData[];
|
|
175
175
|
rowSelection: import("./types").TableRowSelection | undefined;
|
|
176
176
|
cacheData: object[];
|
|
177
|
-
|
|
177
|
+
setMeasureRowElement: import("react").Dispatch<import("react").SetStateAction<Element | null>>;
|
|
178
178
|
leafColumns: import("packages/utils/tree-utils/lib/types/types").BaseFlattedTreeNodeData<any, any>[];
|
|
179
179
|
bordered: boolean;
|
|
180
180
|
scrollHeaderElementRef: import("react").RefObject<HTMLTableElement>;
|
|
@@ -6,7 +6,8 @@ export declare const useColWidth: ({ resizable, data, columns, virtual, }: {
|
|
|
6
6
|
columns: TableColumnItem[];
|
|
7
7
|
virtual?: boolean | undefined;
|
|
8
8
|
}) => {
|
|
9
|
-
|
|
9
|
+
measureRowElement: Element | null;
|
|
10
|
+
setMeasureRowElement: React.Dispatch<React.SetStateAction<Element | null>>;
|
|
10
11
|
onColumnResizable: (_: any, { size }: any, index: number) => void;
|
|
11
12
|
getColgroupProps: (column: FlattedTableColumnItemData, index: number) => {
|
|
12
13
|
style: {
|
package/lib/types/use-table.d.ts
CHANGED
|
@@ -85,7 +85,7 @@ export declare const useTable: ({ data, columns: columnsProp, defaultFixedToColu
|
|
|
85
85
|
flattedColumnsWithoutChildren: FlattedTableColumnItemData[];
|
|
86
86
|
rowSelection: TableRowSelection | undefined;
|
|
87
87
|
cacheData: object[];
|
|
88
|
-
|
|
88
|
+
setMeasureRowElement: React.Dispatch<React.SetStateAction<Element | null>>;
|
|
89
89
|
leafColumns: import("packages/utils/tree-utils/lib/types/types").BaseFlattedTreeNodeData<any, any>[];
|
|
90
90
|
bordered: boolean;
|
|
91
91
|
scrollHeaderElementRef: React.RefObject<HTMLTableElement>;
|