maru_design2 2.11.1 → 2.12.0
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 +13 -0
- package/dist/components/atoms/icon/iconmap.d.ts +1 -0
- package/dist/components/molecules/table/Table.d.ts +1 -1
- package/dist/components/molecules/table/body/TBody.d.ts +9 -2
- package/dist/components/molecules/table/types.d.ts +8 -0
- package/dist/index.js +31 -7
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [2.12.0](https://github.com/42maru-ai/maru-design2/compare/v2.11.1...v2.12.0) (2024-07-15)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* :sparkles: Table - ADD highlightRows [#202](https://github.com/42maru-ai/maru-design2/issues/202) ([f618e67](https://github.com/42maru-ai/maru-design2/commit/f618e67f31e68497e90534352103848d52dec3b5))
|
|
9
|
+
* :sparkles: Table - ADD show option to Kebab [#203](https://github.com/42maru-ai/maru-design2/issues/203) ([be8512b](https://github.com/42maru-ai/maru-design2/commit/be8512b590462650eaa33240c0fe69c3d15c00d3))
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
* :bento: Icon - ADD edit 14 icon [#201](https://github.com/42maru-ai/maru-design2/issues/201) ([bbd732a](https://github.com/42maru-ai/maru-design2/commit/bbd732a58f03253cf8fe3fe0a445ec056eb9512d))
|
|
15
|
+
|
|
3
16
|
## [2.11.1](https://github.com/42maru-ai/maru-design2/compare/v2.11.0...v2.11.1) (2024-07-11)
|
|
4
17
|
|
|
5
18
|
|
|
@@ -119,6 +119,7 @@ export declare const ICONS: {
|
|
|
119
119
|
readonly Downstream_s14: "Downstream_s14";
|
|
120
120
|
readonly Downstream_s24: "Downstream_s24";
|
|
121
121
|
readonly DragSelect_s1613: "DragSelect_s1613";
|
|
122
|
+
readonly Edit03_s1413: "Edit03_s1413";
|
|
122
123
|
readonly Edit03_s1613: "Edit03_s1613";
|
|
123
124
|
readonly Expand_s1815: "Expand_s1815";
|
|
124
125
|
readonly EyeOff_s16: "EyeOff_s16";
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { TableProps } from './types';
|
|
2
2
|
import './table.scss';
|
|
3
|
-
export declare function Table({ rowIdKey, data, formats, sort, onSort, checkedIds, onCheck, filter, kebabMenu, binButton, onRowClick, selectedRow, className, id, tableBodyMaxHeight, noData, loading, emptyContentHeight, }: TableProps): import("react/jsx-runtime").JSX.Element;
|
|
3
|
+
export declare function Table({ rowIdKey, data, formats, sort, onSort, checkedIds, onCheck, filter, kebabMenu, binButton, onRowClick, selectedRow, highlightRows, className, id, tableBodyMaxHeight, noData, loading, emptyContentHeight, }: TableProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -7,7 +7,10 @@ interface Props {
|
|
|
7
7
|
checkedIds?: string[];
|
|
8
8
|
onCheck?: (ids: string[]) => void;
|
|
9
9
|
hasActionCol: boolean;
|
|
10
|
-
|
|
10
|
+
kebabMenu?: {
|
|
11
|
+
show?: (rowId?: string) => TShow;
|
|
12
|
+
content: (rowId: string, onClose: () => void) => React.ReactNode;
|
|
13
|
+
};
|
|
11
14
|
binButton?: {
|
|
12
15
|
show: (rowId?: string) => TShow;
|
|
13
16
|
onClick: (rowId: string) => void;
|
|
@@ -17,6 +20,10 @@ interface Props {
|
|
|
17
20
|
rowId: string;
|
|
18
21
|
className?: string;
|
|
19
22
|
};
|
|
23
|
+
highlightRows?: {
|
|
24
|
+
rowIds: string[];
|
|
25
|
+
className?: string;
|
|
26
|
+
};
|
|
20
27
|
noData?: {
|
|
21
28
|
isNoData: boolean;
|
|
22
29
|
message: string;
|
|
@@ -27,5 +34,5 @@ interface Props {
|
|
|
27
34
|
};
|
|
28
35
|
emptyContentHeight?: number;
|
|
29
36
|
}
|
|
30
|
-
declare function TBody({ rowIdKey, formats, data, checkedIds, onCheck, hasActionCol,
|
|
37
|
+
declare function TBody({ rowIdKey, formats, data, checkedIds, onCheck, hasActionCol, kebabMenu, binButton, onRowClick, selectedRow, highlightRows, noData, loading, emptyContentHeight, }: Props): import("react/jsx-runtime").JSX.Element;
|
|
31
38
|
export default TBody;
|
|
@@ -50,6 +50,7 @@ export interface TableProps {
|
|
|
50
50
|
* 최우측 컬럼 바디의 더보기 메뉴. binButton과 같이 쓸 수 없음. { content, width } (@v1 hamberger)
|
|
51
51
|
*/
|
|
52
52
|
kebabMenu?: {
|
|
53
|
+
show?: (rowId?: string) => TShow;
|
|
53
54
|
content: (rowId: string, onClose: () => void) => React.ReactNode;
|
|
54
55
|
};
|
|
55
56
|
/**
|
|
@@ -70,6 +71,13 @@ export interface TableProps {
|
|
|
70
71
|
rowId: string;
|
|
71
72
|
className?: string;
|
|
72
73
|
};
|
|
74
|
+
/**
|
|
75
|
+
* 하이라이팅할 행과 스타일 지정
|
|
76
|
+
*/
|
|
77
|
+
highlightRows?: {
|
|
78
|
+
rowIds: string[];
|
|
79
|
+
className?: string;
|
|
80
|
+
};
|
|
73
81
|
className?: string;
|
|
74
82
|
id?: string;
|
|
75
83
|
/**
|
package/dist/index.js
CHANGED
|
@@ -1728,6 +1728,21 @@ var iconmap = {
|
|
|
1728
1728
|
"circles": [],
|
|
1729
1729
|
"rects": []
|
|
1730
1730
|
},
|
|
1731
|
+
"Edit03_s1413": {
|
|
1732
|
+
"width": "14",
|
|
1733
|
+
"height": "14",
|
|
1734
|
+
"viewBox": "0 0 14 14",
|
|
1735
|
+
"fill": "none",
|
|
1736
|
+
"paths": [{
|
|
1737
|
+
"d": "M7.24998 12.4874H12.5M2 12.4874H2.97682C3.26217 12.4874 3.40485 12.4874 3.53912 12.4552C3.65816 12.4266 3.77196 12.3795 3.87635 12.3155C3.99408 12.2434 4.09497 12.1425 4.29675 11.9407L11.625 4.61244C12.1083 4.12919 12.1083 3.34569 11.625 2.86244C11.1418 2.37919 10.3583 2.37919 9.87501 2.86244L2.54674 10.1907C2.34496 10.3925 2.24407 10.4934 2.17192 10.6111C2.10795 10.7155 2.06081 10.8293 2.03224 10.9483C2 11.0826 2 11.2253 2 11.5106V12.4874Z",
|
|
1738
|
+
"stroke": "#5C5C5C",
|
|
1739
|
+
"strokeWidth": "1.3",
|
|
1740
|
+
"strokeLinecap": "round",
|
|
1741
|
+
"strokeLinejoin": "round"
|
|
1742
|
+
}],
|
|
1743
|
+
"circles": [],
|
|
1744
|
+
"rects": []
|
|
1745
|
+
},
|
|
1731
1746
|
"Edit03_s1613": {
|
|
1732
1747
|
"width": "16",
|
|
1733
1748
|
"height": "16",
|
|
@@ -3606,6 +3621,7 @@ var ICONS = {
|
|
|
3606
3621
|
"Downstream_s14": "Downstream_s14",
|
|
3607
3622
|
"Downstream_s24": "Downstream_s24",
|
|
3608
3623
|
"DragSelect_s1613": "DragSelect_s1613",
|
|
3624
|
+
"Edit03_s1413": "Edit03_s1413",
|
|
3609
3625
|
"Edit03_s1613": "Edit03_s1613",
|
|
3610
3626
|
"Expand_s1815": "Expand_s1815",
|
|
3611
3627
|
"EyeOff_s16": "EyeOff_s16",
|
|
@@ -24036,10 +24052,12 @@ function TBody(_a) {
|
|
|
24036
24052
|
checkedIds = _a.checkedIds,
|
|
24037
24053
|
onCheck = _a.onCheck,
|
|
24038
24054
|
hasActionCol = _a.hasActionCol,
|
|
24039
|
-
|
|
24055
|
+
// kebabContent,
|
|
24056
|
+
kebabMenu = _a.kebabMenu,
|
|
24040
24057
|
binButton = _a.binButton,
|
|
24041
24058
|
onRowClick = _a.onRowClick,
|
|
24042
24059
|
selectedRow = _a.selectedRow,
|
|
24060
|
+
highlightRows = _a.highlightRows,
|
|
24043
24061
|
noData = _a.noData,
|
|
24044
24062
|
loading = _a.loading,
|
|
24045
24063
|
emptyContentHeight = _a.emptyContentHeight;
|
|
@@ -24087,6 +24105,7 @@ function TBody(_a) {
|
|
|
24087
24105
|
loading: loading,
|
|
24088
24106
|
emptyContentHeight: emptyContentHeight
|
|
24089
24107
|
}) : data.map(function (row) {
|
|
24108
|
+
var _a, _b;
|
|
24090
24109
|
return jsx(React__default.Fragment, {
|
|
24091
24110
|
children: jsxs("tr", __assign({
|
|
24092
24111
|
onClick: handleRowClick(row[rowIdKey]),
|
|
@@ -24094,8 +24113,9 @@ function TBody(_a) {
|
|
|
24094
24113
|
onMouseLeave: handleRowLeave(),
|
|
24095
24114
|
className: classNames({
|
|
24096
24115
|
'clickable-row': onRowClick,
|
|
24097
|
-
'selected-row': selectedRow && (selectedRow === null || selectedRow === void 0 ? void 0 : selectedRow.rowId) === row[rowIdKey] || hoveredRowId === row[rowIdKey]
|
|
24098
|
-
|
|
24116
|
+
'selected-row': selectedRow && (selectedRow === null || selectedRow === void 0 ? void 0 : selectedRow.rowId) === row[rowIdKey] || hoveredRowId === row[rowIdKey],
|
|
24117
|
+
'highlight-row': highlightRows && (highlightRows === null || highlightRows === void 0 ? void 0 : highlightRows.rowIds.includes(row[rowIdKey]))
|
|
24118
|
+
}, selectedRow && (selectedRow === null || selectedRow === void 0 ? void 0 : selectedRow.className), highlightRows && (highlightRows === null || highlightRows === void 0 ? void 0 : highlightRows.className))
|
|
24099
24119
|
}, {
|
|
24100
24120
|
children: [checkedIds != null && jsx(CheckboxTd, {
|
|
24101
24121
|
rowId: row[rowIdKey],
|
|
@@ -24107,9 +24127,11 @@ function TBody(_a) {
|
|
|
24107
24127
|
return jsx("td", {
|
|
24108
24128
|
children: format.customColumn ? format.customColumn(row[format.columnIdKey], row[rowIdKey]) : row[format.columnIdKey]
|
|
24109
24129
|
}, "cell-".concat(row[format.columnIdKey], "-").concat(cellHashId));
|
|
24110
|
-
}),
|
|
24130
|
+
}), ((_a = kebabMenu === null || kebabMenu === void 0 ? void 0 : kebabMenu.show) === null || _a === void 0 ? void 0 : _a.call(kebabMenu, row[rowIdKey])) === 'always' || ((_b = kebabMenu === null || kebabMenu === void 0 ? void 0 : kebabMenu.show) === null || _b === void 0 ? void 0 : _b.call(kebabMenu, row[rowIdKey])) === 'hover' && hoveredRowId === row[rowIdKey] ?
|
|
24131
|
+
// eslint-disable-next-line react/jsx-indent
|
|
24132
|
+
jsx(KebabMenuTd, {
|
|
24111
24133
|
rowId: row[rowIdKey],
|
|
24112
|
-
kebabContent:
|
|
24134
|
+
kebabContent: kebabMenu.content
|
|
24113
24135
|
}) : (binButton === null || binButton === void 0 ? void 0 : binButton.show(row[rowIdKey])) === 'always' || (binButton === null || binButton === void 0 ? void 0 : binButton.show(row[rowIdKey])) === 'hover' && hoveredRowId === row[rowIdKey] ?
|
|
24114
24136
|
// eslint-disable-next-line jsx-a11y/control-has-associated-label, react/jsx-indent
|
|
24115
24137
|
jsx("td", {
|
|
@@ -24306,7 +24328,7 @@ function Colgroup(_a) {
|
|
|
24306
24328
|
});
|
|
24307
24329
|
}
|
|
24308
24330
|
|
|
24309
|
-
var css_248z$1 = "@-webkit-keyframes rotate {\n from {\n transform: rotate(0deg);\n }\n to {\n transform: rotate(360deg);\n }\n}\n@keyframes rotate {\n from {\n transform: rotate(0deg);\n }\n to {\n transform: rotate(360deg);\n }\n}\n@-webkit-keyframes blink {\n 0% {\n opacity: 0.6;\n }\n 20% {\n opacity: 1;\n }\n 50% {\n opacity: 0;\n }\n 100% {\n opacity: 0.6;\n }\n}\n@keyframes blink {\n 0% {\n opacity: 0.6;\n }\n 20% {\n opacity: 1;\n }\n 50% {\n opacity: 0;\n }\n 100% {\n opacity: 0.6;\n }\n}\n@-webkit-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n@keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n.maru-table-wrapper {\n width: 100%;\n background-color: white;\n box-shadow: 0px 0px 6px 0px #e4e4e4;\n border-radius: 10px;\n}\n.maru-table-wrapper .maru-table-header-wrapper,\n.maru-table-wrapper .maru-table-body-wrapper {\n width: 100%;\n}\n.maru-table-wrapper tr {\n height: 54px;\n}\n.maru-table-wrapper th,\n.maru-table-wrapper td {\n text-align: start;\n vertical-align: middle;\n padding: 16.5px 15px;\n word-break: break-word;\n color: #5c5c5c;\n}\n.maru-table-wrapper th:first-of-type,\n.maru-table-wrapper td:first-of-type {\n padding: 16.5px 25px;\n}\n.maru-table-wrapper .checkbox-td {\n padding: 18px 15px 18px 25px !important;\n}\n.maru-table-wrapper .maru-table-header tr {\n border-bottom: 1px solid #e4e4e4;\n}\n.maru-table-wrapper .maru-table-header tr th {\n font-family: Pretendard;\n font-style: normal;\n line-height: 150%;\n font-size: 14px;\n letter-spacing: -0.56px;\n font-weight: 700;\n}\n.maru-table-wrapper .maru-table-header .filter-th {\n display: flex;\n flex-direction: column;\n align-items: flex-start;\n gap: 16.5px;\n}\n.maru-table-wrapper .maru-table-header .filter-th > div {\n width: 100%;\n height: 33px;\n}\n.maru-table-wrapper .maru-table-header .filter-buttons-th {\n display: flex;\n flex-direction: column;\n gap: 26px;\n}\n.maru-table-wrapper .maru-table-header .maru-table-header-sortable {\n padding: unset;\n margin: unset;\n color: #5c5c5c;\n font-family: Pretendard;\n font-style: normal;\n line-height: 150%;\n font-size: 14px;\n letter-spacing: -0.56px;\n font-weight: 700;\n}\n.maru-table-wrapper .maru-table-body-scroll-wrapper {\n overflow-y: auto;\n}\n.maru-table-wrapper .maru-table-body-scroll-wrapper .maru-table-scroll {\n overflow-y: auto;\n}\n.maru-table-wrapper .maru-table-body tr:not(:last-of-type) {\n border-bottom: 1px solid #fafafa;\n}\n.maru-table-wrapper .maru-table-body tr:hover,\n.maru-table-wrapper .maru-table-body .clickable-row:hover,\n.maru-table-wrapper .maru-table-body .selected-row {\n background-color: var(--p-05);\n}\n.maru-table-wrapper .maru-table-body td {\n font-family: Pretendard;\n font-style: normal;\n line-height: 150%;\n font-size: 14px;\n letter-spacing: -0.56px;\n font-weight: 500;\n}\n.maru-table-wrapper .maru-table-body tr:last-of-type td:first-of-type {\n border-bottom-left-radius: 10px;\n}\n.maru-table-wrapper .maru-table-body tr:last-of-type td:last-of-type {\n border-bottom-right-radius: 10px;\n}\n.maru-table-wrapper .maru-table-body .clickable-row {\n cursor: pointer;\n}\n.maru-table-wrapper .maru-table-body-kebab-wrapper {\n text-align: center;\n}\n.maru-table-wrapper .maru-table-body-kebab {\n margin: unset;\n padding: unset;\n height: auto;\n}\n.maru-table-wrapper .maru-table-body-empty-tr > td {\n width: 100%;\n vertical-align: middle;\n text-align: center;\n}\n.maru-table-wrapper .maru-table-body-empty-tr > td p {\n margin-top: 20px;\n font-family: Pretendard;\n font-style: normal;\n line-height: 150%;\n font-size: 14px;\n letter-spacing: -0.56px;\n font-weight: 500;\n color: #bdbdbd;\n}\n.maru-table-wrapper .maru-table-body-empty-tr:hover {\n background-color: inherit !important;\n}\n.maru-table-wrapper .maru-table-body-empty-tr .loading-wrapper {\n -webkit-animation: blink 1s infinite;\n animation: blink 1s infinite;\n}";
|
|
24331
|
+
var css_248z$1 = "@-webkit-keyframes rotate {\n from {\n transform: rotate(0deg);\n }\n to {\n transform: rotate(360deg);\n }\n}\n@keyframes rotate {\n from {\n transform: rotate(0deg);\n }\n to {\n transform: rotate(360deg);\n }\n}\n@-webkit-keyframes blink {\n 0% {\n opacity: 0.6;\n }\n 20% {\n opacity: 1;\n }\n 50% {\n opacity: 0;\n }\n 100% {\n opacity: 0.6;\n }\n}\n@keyframes blink {\n 0% {\n opacity: 0.6;\n }\n 20% {\n opacity: 1;\n }\n 50% {\n opacity: 0;\n }\n 100% {\n opacity: 0.6;\n }\n}\n@-webkit-keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n@keyframes fadein {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n.maru-table-wrapper {\n width: 100%;\n background-color: white;\n box-shadow: 0px 0px 6px 0px #e4e4e4;\n border-radius: 10px;\n}\n.maru-table-wrapper .maru-table-header-wrapper,\n.maru-table-wrapper .maru-table-body-wrapper {\n width: 100%;\n}\n.maru-table-wrapper tr {\n height: 54px;\n}\n.maru-table-wrapper th,\n.maru-table-wrapper td {\n text-align: start;\n vertical-align: middle;\n padding: 16.5px 15px;\n word-break: break-word;\n color: #5c5c5c;\n}\n.maru-table-wrapper th:first-of-type,\n.maru-table-wrapper td:first-of-type {\n padding: 16.5px 25px;\n}\n.maru-table-wrapper .checkbox-td {\n padding: 18px 15px 18px 25px !important;\n}\n.maru-table-wrapper .maru-table-header tr {\n border-bottom: 1px solid #e4e4e4;\n}\n.maru-table-wrapper .maru-table-header tr th {\n font-family: Pretendard;\n font-style: normal;\n line-height: 150%;\n font-size: 14px;\n letter-spacing: -0.56px;\n font-weight: 700;\n}\n.maru-table-wrapper .maru-table-header .filter-th {\n display: flex;\n flex-direction: column;\n align-items: flex-start;\n gap: 16.5px;\n}\n.maru-table-wrapper .maru-table-header .filter-th > div {\n width: 100%;\n height: 33px;\n}\n.maru-table-wrapper .maru-table-header .filter-buttons-th {\n display: flex;\n flex-direction: column;\n gap: 26px;\n}\n.maru-table-wrapper .maru-table-header .maru-table-header-sortable {\n padding: unset;\n margin: unset;\n color: #5c5c5c;\n font-family: Pretendard;\n font-style: normal;\n line-height: 150%;\n font-size: 14px;\n letter-spacing: -0.56px;\n font-weight: 700;\n}\n.maru-table-wrapper .maru-table-body-scroll-wrapper {\n overflow-y: auto;\n}\n.maru-table-wrapper .maru-table-body-scroll-wrapper .maru-table-scroll {\n overflow-y: auto;\n}\n.maru-table-wrapper .maru-table-body tr:not(:last-of-type) {\n border-bottom: 1px solid #fafafa;\n}\n.maru-table-wrapper .maru-table-body tr:hover,\n.maru-table-wrapper .maru-table-body .clickable-row:hover,\n.maru-table-wrapper .maru-table-body .selected-row {\n background-color: var(--p-05);\n}\n.maru-table-wrapper .maru-table-body .highlight-row {\n background-color: var(--p-20);\n}\n.maru-table-wrapper .maru-table-body td {\n font-family: Pretendard;\n font-style: normal;\n line-height: 150%;\n font-size: 14px;\n letter-spacing: -0.56px;\n font-weight: 500;\n}\n.maru-table-wrapper .maru-table-body tr:last-of-type td:first-of-type {\n border-bottom-left-radius: 10px;\n}\n.maru-table-wrapper .maru-table-body tr:last-of-type td:last-of-type {\n border-bottom-right-radius: 10px;\n}\n.maru-table-wrapper .maru-table-body .clickable-row {\n cursor: pointer;\n}\n.maru-table-wrapper .maru-table-body-kebab-wrapper {\n text-align: center;\n}\n.maru-table-wrapper .maru-table-body-kebab {\n margin: unset;\n padding: unset;\n height: auto;\n}\n.maru-table-wrapper .maru-table-body-empty-tr > td {\n width: 100%;\n vertical-align: middle;\n text-align: center;\n}\n.maru-table-wrapper .maru-table-body-empty-tr > td p {\n margin-top: 20px;\n font-family: Pretendard;\n font-style: normal;\n line-height: 150%;\n font-size: 14px;\n letter-spacing: -0.56px;\n font-weight: 500;\n color: #bdbdbd;\n}\n.maru-table-wrapper .maru-table-body-empty-tr:hover {\n background-color: inherit !important;\n}\n.maru-table-wrapper .maru-table-body-empty-tr .loading-wrapper {\n -webkit-animation: blink 1s infinite;\n animation: blink 1s infinite;\n}";
|
|
24310
24332
|
styleInject(css_248z$1);
|
|
24311
24333
|
|
|
24312
24334
|
// eslint-disable-next-line import/prefer-default-export
|
|
@@ -24323,6 +24345,7 @@ function Table(_a) {
|
|
|
24323
24345
|
binButton = _a.binButton,
|
|
24324
24346
|
onRowClick = _a.onRowClick,
|
|
24325
24347
|
selectedRow = _a.selectedRow,
|
|
24348
|
+
highlightRows = _a.highlightRows,
|
|
24326
24349
|
className = _a.className,
|
|
24327
24350
|
id = _a.id,
|
|
24328
24351
|
tableBodyMaxHeight = _a.tableBodyMaxHeight,
|
|
@@ -24469,10 +24492,11 @@ function Table(_a) {
|
|
|
24469
24492
|
checkedIds: checkedIds,
|
|
24470
24493
|
onCheck: onCheck,
|
|
24471
24494
|
hasActionCol: hasActionCol,
|
|
24472
|
-
|
|
24495
|
+
kebabMenu: kebabMenu,
|
|
24473
24496
|
binButton: binButton,
|
|
24474
24497
|
onRowClick: onRowClick,
|
|
24475
24498
|
selectedRow: selectedRow,
|
|
24499
|
+
highlightRows: highlightRows,
|
|
24476
24500
|
noData: noData,
|
|
24477
24501
|
loading: loading,
|
|
24478
24502
|
emptyContentHeight: emptyContentHeight
|