@semcore/data-table 16.0.0-prerelease.2 → 16.0.0-prerelease.21
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 +25 -1
- package/lib/cjs/components/Body/Body.js +439 -0
- package/lib/cjs/components/Body/Body.js.map +1 -0
- package/lib/cjs/components/Body/Body.types.js +2 -0
- package/lib/cjs/components/Body/Body.types.js.map +1 -0
- package/lib/cjs/components/Body/Cell.js +195 -0
- package/lib/cjs/components/Body/Cell.js.map +1 -0
- package/lib/cjs/components/Body/Cell.types.js +2 -0
- package/lib/cjs/components/Body/Cell.types.js.map +1 -0
- package/lib/cjs/components/Body/MergedCells.js +29 -0
- package/lib/cjs/components/Body/MergedCells.js.map +1 -0
- package/lib/cjs/components/Body/Row.js +252 -0
- package/lib/cjs/components/Body/Row.js.map +1 -0
- package/lib/cjs/components/Body/Row.types.js +4 -0
- package/lib/cjs/components/Body/Row.types.js.map +1 -0
- package/lib/cjs/components/Body/style.shadow.css +263 -0
- package/lib/cjs/components/DataTable/DataTable.js +1025 -0
- package/lib/cjs/components/DataTable/DataTable.js.map +1 -0
- package/lib/cjs/{types.js → components/DataTable/DataTable.types.js} +1 -1
- package/lib/cjs/components/DataTable/DataTable.types.js.map +1 -0
- package/lib/cjs/components/DataTable/dataTable.shadow.css +17 -0
- package/lib/cjs/components/Head/Column.js +311 -0
- package/lib/cjs/components/Head/Column.js.map +1 -0
- package/lib/cjs/components/Head/Column.types.js +2 -0
- package/lib/cjs/components/Head/Column.types.js.map +1 -0
- package/lib/cjs/components/Head/Group.js +116 -0
- package/lib/cjs/components/Head/Group.js.map +1 -0
- package/lib/cjs/components/Head/Group.type.js +2 -0
- package/lib/cjs/components/Head/Group.type.js.map +1 -0
- package/lib/cjs/components/Head/Head.js +207 -0
- package/lib/cjs/components/Head/Head.js.map +1 -0
- package/lib/cjs/components/Head/Head.types.js +2 -0
- package/lib/cjs/components/Head/Head.types.js.map +1 -0
- package/lib/cjs/components/Head/style.shadow.css +180 -0
- package/lib/cjs/index.js +25 -15
- package/lib/cjs/index.js.map +1 -1
- package/lib/cjs/style/scroll-shadows.shadow.css +45 -5
- package/lib/cjs/translations/en.json +6 -1
- package/lib/es6/components/Body/Body.js +432 -0
- package/lib/es6/components/Body/Body.js.map +1 -0
- package/lib/es6/components/Body/Body.types.js +2 -0
- package/lib/es6/components/Body/Body.types.js.map +1 -0
- package/lib/es6/components/Body/Cell.js +188 -0
- package/lib/es6/components/Body/Cell.js.map +1 -0
- package/lib/es6/components/Body/Cell.types.js +2 -0
- package/lib/es6/components/Body/Cell.types.js.map +1 -0
- package/lib/es6/components/Body/MergedCells.js +20 -0
- package/lib/es6/components/Body/MergedCells.js.map +1 -0
- package/lib/es6/components/Body/Row.js +245 -0
- package/lib/es6/components/Body/Row.js.map +1 -0
- package/lib/es6/components/Body/Row.types.js +2 -0
- package/lib/es6/components/Body/Row.types.js.map +1 -0
- package/lib/es6/components/Body/style.shadow.css +263 -0
- package/lib/es6/components/DataTable/DataTable.js +1013 -0
- package/lib/es6/components/DataTable/DataTable.js.map +1 -0
- package/lib/es6/components/DataTable/DataTable.types.js +2 -0
- package/lib/es6/components/DataTable/DataTable.types.js.map +1 -0
- package/lib/es6/components/DataTable/dataTable.shadow.css +17 -0
- package/lib/es6/components/Head/Column.js +304 -0
- package/lib/es6/components/Head/Column.js.map +1 -0
- package/lib/es6/components/Head/Column.types.js +2 -0
- package/lib/es6/components/Head/Column.types.js.map +1 -0
- package/lib/es6/components/Head/Group.js +109 -0
- package/lib/es6/components/Head/Group.js.map +1 -0
- package/lib/es6/components/Head/Group.type.js +2 -0
- package/lib/es6/components/Head/Group.type.js.map +1 -0
- package/lib/es6/components/Head/Head.js +201 -0
- package/lib/es6/components/Head/Head.js.map +1 -0
- package/lib/es6/components/Head/Head.types.js +2 -0
- package/lib/es6/components/Head/Head.types.js.map +1 -0
- package/lib/es6/components/Head/style.shadow.css +180 -0
- package/lib/es6/index.js +5 -2
- package/lib/es6/index.js.map +1 -1
- package/lib/es6/style/scroll-shadows.shadow.css +45 -5
- package/lib/es6/translations/en.json +6 -1
- package/lib/esm/components/Body/Body.mjs +394 -0
- package/lib/esm/components/Body/Cell.mjs +186 -0
- package/lib/esm/components/Body/MergedCells.mjs +23 -0
- package/lib/esm/components/Body/Row.mjs +224 -0
- package/lib/esm/components/Body/style.shadow.css +263 -0
- package/lib/esm/components/DataTable/DataTable.mjs +944 -0
- package/lib/esm/components/DataTable/dataTable.shadow.css +17 -0
- package/lib/esm/components/Head/Column.mjs +296 -0
- package/lib/esm/components/Head/Group.mjs +103 -0
- package/lib/esm/components/Head/Head.mjs +181 -0
- package/lib/esm/components/Head/style.shadow.css +180 -0
- package/lib/esm/index.mjs +9 -6
- package/lib/esm/style/scroll-shadows.shadow.css +47 -0
- package/lib/esm/translations/__intergalactic-dynamic-locales.mjs +30 -30
- package/lib/esm/translations/de.json.mjs +5 -4
- package/lib/esm/translations/en.json.mjs +10 -4
- package/lib/esm/translations/es.json.mjs +5 -4
- package/lib/esm/translations/fr.json.mjs +5 -4
- package/lib/esm/translations/it.json.mjs +5 -4
- package/lib/esm/translations/ja.json.mjs +5 -4
- package/lib/esm/translations/ko.json.mjs +5 -4
- package/lib/esm/translations/nl.json.mjs +5 -4
- package/lib/esm/translations/pl.json.mjs +5 -4
- package/lib/esm/translations/pt.json.mjs +5 -4
- package/lib/esm/translations/sv.json.mjs +5 -4
- package/lib/esm/translations/tr.json.mjs +5 -4
- package/lib/esm/translations/vi.json.mjs +5 -4
- package/lib/esm/translations/zh.json.mjs +5 -4
- package/lib/types/components/Body/Body.d.ts +8 -0
- package/lib/types/components/Body/Body.types.d.ts +57 -0
- package/lib/types/components/Body/Cell.d.ts +3 -0
- package/lib/types/components/Body/Cell.types.d.ts +20 -0
- package/lib/types/components/Body/MergedCells.d.ts +14 -0
- package/lib/types/components/Body/Row.d.ts +3 -0
- package/lib/types/components/Body/Row.types.d.ts +43 -0
- package/lib/types/components/DataTable/DataTable.d.ts +13 -0
- package/lib/types/components/DataTable/DataTable.types.d.ts +125 -0
- package/lib/types/components/Head/Column.d.ts +30 -0
- package/lib/types/components/Head/Column.types.d.ts +71 -0
- package/lib/types/components/Head/Group.d.ts +15 -0
- package/lib/types/components/Head/Group.type.d.ts +16 -0
- package/lib/types/components/Head/Head.d.ts +98 -0
- package/lib/types/components/Head/Head.types.d.ts +40 -0
- package/lib/types/index.d.ts +10 -2
- package/lib/types/translations/__intergalactic-dynamic-locales.d.ts +5 -0
- package/package.json +11 -6
- package/vite.config.ts +0 -3
- package/lib/cjs/Body.js +0 -475
- package/lib/cjs/Body.js.map +0 -1
- package/lib/cjs/DataTable.js +0 -622
- package/lib/cjs/DataTable.js.map +0 -1
- package/lib/cjs/Head.js +0 -399
- package/lib/cjs/Head.js.map +0 -1
- package/lib/cjs/style/data-table.shadow.css +0 -394
- package/lib/cjs/types.js.map +0 -1
- package/lib/cjs/utils.js +0 -57
- package/lib/cjs/utils.js.map +0 -1
- package/lib/es6/Body.js +0 -468
- package/lib/es6/Body.js.map +0 -1
- package/lib/es6/DataTable.js +0 -614
- package/lib/es6/DataTable.js.map +0 -1
- package/lib/es6/Head.js +0 -391
- package/lib/es6/Head.js.map +0 -1
- package/lib/es6/style/data-table.shadow.css +0 -394
- package/lib/es6/types.js +0 -2
- package/lib/es6/types.js.map +0 -1
- package/lib/es6/utils.js +0 -48
- package/lib/es6/utils.js.map +0 -1
- package/lib/esm/Body.mjs +0 -320
- package/lib/esm/DataTable.mjs +0 -439
- package/lib/esm/Head.mjs +0 -258
- package/lib/esm/utils.mjs +0 -37
- package/lib/types/Body.d.ts +0 -61
- package/lib/types/DataTable.d.ts +0 -205
- package/lib/types/Head.d.ts +0 -45
- package/lib/types/types.d.ts +0 -73
- package/lib/types/utils.d.ts +0 -4
package/lib/esm/DataTable.mjs
DELETED
|
@@ -1,439 +0,0 @@
|
|
|
1
|
-
import T from "@babel/runtime/helpers/esm/objectSpread2";
|
|
2
|
-
import B from "@babel/runtime/helpers/esm/objectWithoutProperties";
|
|
3
|
-
import E from "@babel/runtime/helpers/esm/createForOfIteratorHelper";
|
|
4
|
-
import L from "@babel/runtime/helpers/esm/classCallCheck";
|
|
5
|
-
import U from "@babel/runtime/helpers/esm/createClass";
|
|
6
|
-
import u from "@babel/runtime/helpers/esm/assertThisInitialized";
|
|
7
|
-
import O from "@babel/runtime/helpers/esm/inherits";
|
|
8
|
-
import K from "@babel/runtime/helpers/esm/createSuper";
|
|
9
|
-
import h from "@babel/runtime/helpers/esm/defineProperty";
|
|
10
|
-
import { sstyled as q, createComponent as J, lastInteraction as G, assignProps as N, Component as Q } from "@semcore/core";
|
|
11
|
-
import k from "react";
|
|
12
|
-
import { Box as X } from "@semcore/flex-box";
|
|
13
|
-
import Y from "@semcore/core/lib/utils/syncScroll";
|
|
14
|
-
import { callAllEventHandlers as Z } from "@semcore/core/lib/utils/assignProps";
|
|
15
|
-
import __ from "@semcore/core/lib/utils/fire";
|
|
16
|
-
import { flattenColumns as V } from "./utils.mjs";
|
|
17
|
-
import e_ from "./Head.mjs";
|
|
18
|
-
import o_ from "./Body.mjs";
|
|
19
|
-
import r_ from "@semcore/core/lib/utils/uniqueID";
|
|
20
|
-
import { localizedMessages as i_ } from "./translations/__intergalactic-dynamic-locales.mjs";
|
|
21
|
-
import t_ from "@semcore/core/lib/utils/enhances/i18nEnhance";
|
|
22
|
-
import { hasFocusableIn as a_, isFocusInside as $ } from "@semcore/core/lib/utils/use/useFocusLock";
|
|
23
|
-
var l_ = ["children", "name", "fixed", "resizable", "sortable", "flex", "vBorders", "active"], n_ = ["name", "children"], g_ = (
|
|
24
|
-
/*__reshadow_css_start__*/
|
|
25
|
-
(q.insert(
|
|
26
|
-
/*__inner_css_start__*/
|
|
27
|
-
'.___SDataTable_zohi4_gg_,.___SHeadWrapper_zohi4_gg_{position:relative}.___SDataTable_zohi4_gg_.__compact_zohi4_gg_ .___SCell_zohi4_gg_,.___SDataTable_zohi4_gg_.__compact_zohi4_gg_ .___SColumn_zohi4_gg_{padding:var(--intergalactic-spacing-3x, 12px) var(--intergalactic-spacing-2x, 8px)}.___SHeadWrapper_zohi4_gg_.__animationsDisabled_zohi4_gg_ .___SColumn_zohi4_gg_{transition:none}.___SHeadWrapper_zohi4_gg_.__sticky_zohi4_gg_{position:sticky;top:0;z-index:2}.___SHead_zohi4_gg_{display:flex;position:relative;flex-direction:row;min-width:-moz-fit-content;min-width:fit-content;z-index:0}.___SColumn_zohi4_gg_{display:flex;align-items:flex-start;flex-grow:1;font-size:var(--intergalactic-fs-100, 12px);line-height:var(--intergalactic-lh-100, 133%);color:var(--intergalactic-text-primary, #191b23);box-sizing:border-box;position:relative;transition:width calc(var(--intergalactic-duration-extra-fast, 100)*1ms) ease-in-out,min-width calc(var(--intergalactic-duration-extra-fast, 100)*1ms) ease-in-out,max-width calc(var(--intergalactic-duration-extra-fast, 100)*1ms) ease-in-out}.___SColumn_zohi4_gg_.__hidden_zohi4_gg_{position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border-width:0!important}.___SColumn_zohi4_gg_._use_primary_zohi4_gg_{padding:var(--intergalactic-spacing-3x, 12px);border-bottom:1px solid var(--intergalactic-border-secondary, #e0e1e9);background-color:var(--intergalactic-table-th-primary-cell, #f4f5f9)}.___SColumn_zohi4_gg_._use_secondary_zohi4_gg_{padding:var(--intergalactic-spacing-2x, 8px);border-bottom:1px solid var(--intergalactic-border-table-accent, #a9abb6);background-color:var(--intergalactic-table-th-secondary-cell, #ffffff)}.___SColumn_zohi4_gg_.__group_zohi4_gg_.__use_zohi4_gg_{display:flex;flex-wrap:wrap;flex-direction:column;align-items:normal;border-bottom:none;padding:0}.___SColumn_zohi4_gg_.__groupHead_zohi4_gg_{justify-content:center;z-index:1;border-bottom:none}.___SColumn_zohi4_gg_.__sortable_zohi4_gg_{cursor:pointer}.___SColumn_zohi4_gg_.__sortable_zohi4_gg_._use_primary_zohi4_gg_:focus{background-color:var(--intergalactic-table-th-primary-cell-hover, #e0e1e9)}@media (hover:hover){.___SColumn_zohi4_gg_.__sortable_zohi4_gg_._use_primary_zohi4_gg_:hover{background-color:var(--intergalactic-table-th-primary-cell-hover, #e0e1e9)}}.___SColumn_zohi4_gg_.__sortable_zohi4_gg_._justifyContent_right_zohi4_gg_:focus .___SSortWrapper_zohi4_gg_{position:absolute;flex-basis:0;right:var(--intergalactic-spacing-3x, 12px)}@media (hover:hover){.___SColumn_zohi4_gg_.__sortable_zohi4_gg_._justifyContent_right_zohi4_gg_:hover .___SSortWrapper_zohi4_gg_{position:absolute;flex-basis:0;right:var(--intergalactic-spacing-3x, 12px)}}.___SColumn_zohi4_gg_.__sortable_zohi4_gg_._justifyContent_right_zohi4_gg_.__active_zohi4_gg_ .___SSortWrapper_zohi4_gg_{position:relative;flex-basis:inherit;right:0}.___SColumn_zohi4_gg_.__sortable_zohi4_gg_.__active_zohi4_gg_ .___SSortWrapper_zohi4_gg_,.___SColumn_zohi4_gg_.__sortable_zohi4_gg_:focus .___SSortWrapper_zohi4_gg_{flex-basis:calc(var(--intergalactic-spacing-1x, 4px) + 16px);opacity:1}@media (hover:hover){.___SColumn_zohi4_gg_.__sortable_zohi4_gg_:hover .___SSortWrapper_zohi4_gg_{flex-basis:calc(var(--intergalactic-spacing-1x, 4px) + 16px);opacity:1}}.___SColumn_zohi4_gg_.__sortable_zohi4_gg_.__active_zohi4_gg_ .___SSortWrapper_zohi4_gg_:before,.___SColumn_zohi4_gg_.__sortable_zohi4_gg_:focus .___SSortIcon_zohi4_gg_,.___SColumn_zohi4_gg_.__sortable_zohi4_gg_:focus .___SSortWrapper_zohi4_gg_:before{display:block;opacity:1}@media (hover:hover){.___SColumn_zohi4_gg_.__sortable_zohi4_gg_:hover .___SSortWrapper_zohi4_gg_:before{display:block;opacity:1}}@media (hover:hover){.___SColumn_zohi4_gg_.__sortable_zohi4_gg_:hover .___SSortIcon_zohi4_gg_{display:block;opacity:1}}.___SColumn_zohi4_gg_._use_primary_zohi4_gg_.__active_zohi4_gg_{background-color:var(--intergalactic-table-th-primary-cell-active, #e0e1e9);width:100%}.___SColumn_zohi4_gg_.__active_zohi4_gg_ .___SSortIcon_zohi4_gg_{display:block;opacity:1}.___SColumn_zohi4_gg_.__resizable_zohi4_gg_{border-right:1px solid transparent}@media (hover:hover){.___SColumn_zohi4_gg_.__resizable_zohi4_gg_:hover:after{border-right-color:var(--intergalactic-border-table-accent, #a9abb6)}}.___SColumn_zohi4_gg_.__resizable_zohi4_gg_:after{content:"";position:absolute;bottom:0;right:-1px;height:100%;width:5px;background:0 0;cursor:col-resize;border-right:1px solid transparent}.___SColumn_zohi4_gg_.__fixed_zohi4_gg_{position:sticky;z-index:2}.___SCell_zohi4_gg_.__borderLeft_zohi4_gg_,.___SColumn_zohi4_gg_.__borderLeft_zohi4_gg_{border-left:1px solid var(--intergalactic-border-secondary, #e0e1e9)}.___SCell_zohi4_gg_.__borderRight_zohi4_gg_,.___SColumn_zohi4_gg_.__borderRight_zohi4_gg_{border-right:1px solid var(--intergalactic-border-secondary, #e0e1e9)}.___SSortWrapper_zohi4_gg_{flex-shrink:1;position:relative;flex-basis:0;min-height:16px;opacity:0;transition:all calc(var(--intergalactic-duration-extra-fast, 100)*1ms) ease-in-out}.___SSortIcon_zohi4_gg_,.___SSortWrapper_zohi4_gg_:before{display:none;position:absolute;right:0;opacity:0;transition:opacity .3s ease}.___SSortWrapper_zohi4_gg_:before{content:"";top:0;width:20px;height:100%}.___SSortIcon_zohi4_gg_{fill:var(--intergalactic-icon-secondary-neutral-hover-active, #878992);top:calc(1em*1.25 - 16px);margin-left:var(--intergalactic-spacing-1x, 4px)}.___SColumn_zohi4_gg_._use_primary_zohi4_gg_ .___SSortWrapper_zohi4_gg_:before{background:linear-gradient(270deg,var(--intergalactic-table-th-primary-cell-hover, #e0e1e9) 67.5%,rgba(224,225,233,0) 105%)}.___SColumn_zohi4_gg_._use_secondary_zohi4_gg_ .___SSortWrapper_zohi4_gg_:before{background:linear-gradient(270deg,var(--intergalactic-table-th-secondary-cell, #ffffff) 67.5%,rgba(255,255,255,0) 105%)}.___SBodyWrapper_zohi4_gg_{position:relative}.___SBody_zohi4_gg_{display:flex;flex-direction:column;position:relative;min-width:-moz-fit-content;min-width:fit-content}.___SRow_zohi4_gg_{display:flex;flex-direction:row;position:relative}.___SRow_zohi4_gg_.__active_zohi4_gg_>.___SCell_zohi4_gg_:not(.__theme_zohi4_gg_),.___SRow_zohi4_gg_._theme_muted_zohi4_gg_.__active_zohi4_gg_>.___SCell_zohi4_gg_:not(.__theme_zohi4_gg_){background-color:var(--intergalactic-table-td-cell-active, #e6e7ed)}@media (hover:hover){.___SRow_zohi4_gg_ .___SCell_zohi4_gg_:hover+.___SGroupCell_zohi4_gg_ .___SCell_zohi4_gg_:not(.__theme_zohi4_gg_),.___SRow_zohi4_gg_:hover>.___SCell_zohi4_gg_:not(.__theme_zohi4_gg_){background-color:var(--intergalactic-table-td-cell-hover, #f0f0f4)}}.___SRow_zohi4_gg_._theme_muted_zohi4_gg_ .___SCell_zohi4_gg_:not(.__theme_zohi4_gg_){background-color:var(--intergalactic-table-td-cell-unread, #f4f5f9)}@media (hover:hover){.___SRow_zohi4_gg_._theme_muted_zohi4_gg_ .___SCell_zohi4_gg_:hover+.___SGroupCell_zohi4_gg_ .___SCell_zohi4_gg_:not(.__theme_zohi4_gg_),.___SRow_zohi4_gg_._theme_muted_zohi4_gg_:hover>.___SCell_zohi4_gg_:not(.__theme_zohi4_gg_),.___SRow_zohi4_gg_:hover>.___SCell_zohi4_gg_._theme_muted_zohi4_gg_{background-color:var(--intergalactic-table-td-cell-hover, #f0f0f4)}}.___SRow_zohi4_gg_._theme_info_zohi4_gg_ .___SCell_zohi4_gg_:not(.__theme_zohi4_gg_){background-color:var(--intergalactic-table-td-cell-selected, #e9f7ff)}.___SRow_zohi4_gg_._theme_info_zohi4_gg_.__active_zohi4_gg_>.___SCell_zohi4_gg_:not(.__theme_zohi4_gg_){background-color:var(--intergalactic-table-td-cell-selected-active, #c4e5fe)}@media (hover:hover){.___SRow_zohi4_gg_._theme_info_zohi4_gg_ .___SCell_zohi4_gg_:hover+.___SGroupCell_zohi4_gg_ .___SCell_zohi4_gg_:not(.__theme_zohi4_gg_),.___SRow_zohi4_gg_._theme_info_zohi4_gg_:hover>.___SCell_zohi4_gg_:not(.__theme_zohi4_gg_),.___SRow_zohi4_gg_:hover>.___SCell_zohi4_gg_._theme_info_zohi4_gg_{background-color:var(--intergalactic-table-td-cell-selected-hover, #c4e5fe)}}.___SRow_zohi4_gg_._theme_success_zohi4_gg_ .___SCell_zohi4_gg_:not(.__theme_zohi4_gg_){background-color:var(--intergalactic-table-td-cell-new, #dbfee8)}.___SRow_zohi4_gg_._theme_success_zohi4_gg_.__active_zohi4_gg_>.___SCell_zohi4_gg_:not(.__theme_zohi4_gg_){background-color:var(--intergalactic-table-td-cell-new-active, #9ef2c9)}@media (hover:hover){.___SRow_zohi4_gg_._theme_success_zohi4_gg_ .___SCell_zohi4_gg_:hover+.___SGroupCell_zohi4_gg_ .___SCell_zohi4_gg_:not(.__theme_zohi4_gg_),.___SRow_zohi4_gg_._theme_success_zohi4_gg_:hover>.___SCell_zohi4_gg_:not(.__theme_zohi4_gg_),.___SRow_zohi4_gg_:hover>.___SCell_zohi4_gg_._theme_success_zohi4_gg_{background-color:var(--intergalactic-table-td-cell-new-hover, #9ef2c9)}}.___SRow_zohi4_gg_._theme_warning_zohi4_gg_ .___SCell_zohi4_gg_:not(.__theme_zohi4_gg_){background-color:var(--intergalactic-table-td-cell-warning, #fff3d9)}.___SRow_zohi4_gg_._theme_warning_zohi4_gg_.__active_zohi4_gg_>.___SCell_zohi4_gg_:not(.__theme_zohi4_gg_){background-color:var(--intergalactic-table-td-cell-warning-active, #ffdca2)}@media (hover:hover){.___SRow_zohi4_gg_._theme_warning_zohi4_gg_ .___SCell_zohi4_gg_:hover+.___SGroupCell_zohi4_gg_ .___SCell_zohi4_gg_:not(.__theme_zohi4_gg_),.___SRow_zohi4_gg_._theme_warning_zohi4_gg_:hover>.___SCell_zohi4_gg_:not(.__theme_zohi4_gg_),.___SRow_zohi4_gg_:hover>.___SCell_zohi4_gg_._theme_warning_zohi4_gg_{background-color:var(--intergalactic-table-td-cell-warning-hover, #ffdca2)}}.___SRow_zohi4_gg_._theme_danger_zohi4_gg_ .___SCell_zohi4_gg_:not(.__theme_zohi4_gg_){background-color:var(--intergalactic-table-td-cell-critical, #fff0f7)}.___SRow_zohi4_gg_._theme_danger_zohi4_gg_.__active_zohi4_gg_>.___SCell_zohi4_gg_:not(.__theme_zohi4_gg_){background-color:var(--intergalactic-table-td-cell-critical-active, #ffd7df)}@media (hover:hover){.___SRow_zohi4_gg_._theme_danger_zohi4_gg_ .___SCell_zohi4_gg_:hover+.___SGroupCell_zohi4_gg_ .___SCell_zohi4_gg_:not(.__theme_zohi4_gg_),.___SRow_zohi4_gg_._theme_danger_zohi4_gg_:hover>.___SCell_zohi4_gg_:not(.__theme_zohi4_gg_),.___SRow_zohi4_gg_:hover>.___SCell_zohi4_gg_._theme_danger_zohi4_gg_{background-color:var(--intergalactic-table-td-cell-critical-hover, #ffd7df)}}.___SRow_zohi4_gg_.__positioned_zohi4_gg_{position:absolute}.___SBody_zohi4_gg_.__animationsDisabled_zohi4_gg_ .___SCell_zohi4_gg_{transition:none}.___SCell_zohi4_gg_{display:flex;flex:1;flex-basis:auto;font-size:var(--intergalactic-fs-200, 14px);line-height:var(--intergalactic-lh-200, 142%);color:var(--intergalactic-text-primary, #191b23);box-sizing:border-box;border-bottom:1px solid var(--intergalactic-border-secondary, #e0e1e9);overflow:hidden;white-space:nowrap;font-feature-settings:"tnum";font-variant-numeric:tabular-nums;transition:width calc(var(--intergalactic-duration-extra-fast, 100)*1ms) ease-in-out;outline:0}.___SCell_zohi4_gg_._use_primary_zohi4_gg_{padding:var(--intergalactic-spacing-3x, 12px);min-height:45px;background-color:var(--intergalactic-bg-primary-neutral, #ffffff)}.___SCell_zohi4_gg_._use_secondary_zohi4_gg_{padding:var(--intergalactic-spacing-2x, 8px);min-height:37px;background-color:var(--intergalactic-bg-primary-neutral, #ffffff)}.___SCell_zohi4_gg_.__fixed_zohi4_gg_{position:sticky;z-index:1}.___SCell_zohi4_gg_._theme_muted_zohi4_gg_{background-color:var(--intergalactic-table-td-cell-unread, #f4f5f9)}.___SCell_zohi4_gg_._theme_info_zohi4_gg_{background-color:var(--intergalactic-table-td-cell-selected, #e9f7ff)}.___SCell_zohi4_gg_._theme_success_zohi4_gg_{background-color:var(--intergalactic-table-td-cell-new, #dbfee8)}.___SCell_zohi4_gg_._theme_warning_zohi4_gg_{background-color:var(--intergalactic-table-td-cell-warning, #fff3d9)}.___SCell_zohi4_gg_._theme_danger_zohi4_gg_{background-color:var(--intergalactic-table-td-cell-critical, #fff0f7)}.___SHeightHold_zohi4_gg_{position:absolute;top:0;width:100%;pointer-events:none;z-index:-1}',
|
|
28
|
-
"zohi4_gg_"
|
|
29
|
-
), {
|
|
30
|
-
__SDataTable: "___SDataTable_zohi4_gg_",
|
|
31
|
-
__SHeadWrapper: "___SHeadWrapper_zohi4_gg_",
|
|
32
|
-
_sticky: "__sticky_zohi4_gg_",
|
|
33
|
-
__SHead: "___SHead_zohi4_gg_",
|
|
34
|
-
__SColumn: "___SColumn_zohi4_gg_",
|
|
35
|
-
_hidden: "__hidden_zohi4_gg_",
|
|
36
|
-
_use_primary: "_use_primary_zohi4_gg_",
|
|
37
|
-
_use_secondary: "_use_secondary_zohi4_gg_",
|
|
38
|
-
_group: "__group_zohi4_gg_",
|
|
39
|
-
_use: "__use_zohi4_gg_",
|
|
40
|
-
_groupHead: "__groupHead_zohi4_gg_",
|
|
41
|
-
_active: "__active_zohi4_gg_",
|
|
42
|
-
__SSortIcon: "___SSortIcon_zohi4_gg_",
|
|
43
|
-
_fixed: "__fixed_zohi4_gg_",
|
|
44
|
-
_borderLeft: "__borderLeft_zohi4_gg_",
|
|
45
|
-
__SCell: "___SCell_zohi4_gg_",
|
|
46
|
-
_borderRight: "__borderRight_zohi4_gg_",
|
|
47
|
-
__SSortWrapper: "___SSortWrapper_zohi4_gg_",
|
|
48
|
-
__SBodyWrapper: "___SBodyWrapper_zohi4_gg_",
|
|
49
|
-
__SBody: "___SBody_zohi4_gg_",
|
|
50
|
-
__SRow: "___SRow_zohi4_gg_",
|
|
51
|
-
_theme: "__theme_zohi4_gg_",
|
|
52
|
-
__SGroupCell: "___SGroupCell_zohi4_gg_",
|
|
53
|
-
_theme_muted: "_theme_muted_zohi4_gg_",
|
|
54
|
-
_theme_info: "_theme_info_zohi4_gg_",
|
|
55
|
-
_theme_success: "_theme_success_zohi4_gg_",
|
|
56
|
-
_theme_warning: "_theme_warning_zohi4_gg_",
|
|
57
|
-
_theme_danger: "_theme_danger_zohi4_gg_",
|
|
58
|
-
_positioned: "__positioned_zohi4_gg_",
|
|
59
|
-
_animationsDisabled: "__animationsDisabled_zohi4_gg_",
|
|
60
|
-
__SHeightHold: "___SHeightHold_zohi4_gg_",
|
|
61
|
-
_compact: "__compact_zohi4_gg_",
|
|
62
|
-
_sortable: "__sortable_zohi4_gg_",
|
|
63
|
-
_justifyContent_right: "_justifyContent_right_zohi4_gg_",
|
|
64
|
-
_resizable: "__resizable_zohi4_gg_"
|
|
65
|
-
})
|
|
66
|
-
), h_ = {
|
|
67
|
-
desc: "asc",
|
|
68
|
-
asc: "desc"
|
|
69
|
-
}, c_ = "desc", s_ = Symbol("ROW_GROUP"), d_ = /[:;\W]/g, M = function(z) {
|
|
70
|
-
return "--".concat(z.replace(d_, "_"), "_width");
|
|
71
|
-
};
|
|
72
|
-
function F(D, z) {
|
|
73
|
-
var x = D[0], f = D[D.length - 1];
|
|
74
|
-
x && (!z || z === "left") && (x.borderLeft = !0, x.columns && F(x.columns, "left")), f && (!z || z === "right") && (f.borderRight = !0, f.columns && F(f.columns, "right"));
|
|
75
|
-
}
|
|
76
|
-
var P = /* @__PURE__ */ function(D) {
|
|
77
|
-
O(x, D);
|
|
78
|
-
var z = K(x);
|
|
79
|
-
function x(f) {
|
|
80
|
-
var _;
|
|
81
|
-
L(this, x), _ = z.call(this, f), h(u(_), "focusedCell", [-1, -1]), h(u(_), "columns", []), h(u(_), "tableRef", /* @__PURE__ */ k.createRef()), h(u(_), "scrollBodyRef", null), h(u(_), "scrollHeadRef", null), h(u(_), "handlerSortClick", function(e, r) {
|
|
82
|
-
var o = _.columns.find(function(a) {
|
|
83
|
-
return a.name === e;
|
|
84
|
-
});
|
|
85
|
-
return __(u(_), "onSortChange", [o.name, o.active ? h_[o.sortDirection] : o.sortDirection], r);
|
|
86
|
-
}), h(u(_), "handlerResize", function() {
|
|
87
|
-
_.forceUpdate();
|
|
88
|
-
}), h(u(_), "scrollToUp", function() {
|
|
89
|
-
var e, r;
|
|
90
|
-
(e = _.tableRef) === null || e === void 0 || (r = e.current) === null || r === void 0 || r.scrollIntoView({
|
|
91
|
-
block: "nearest",
|
|
92
|
-
inline: "nearest",
|
|
93
|
-
behavior: "smooth"
|
|
94
|
-
});
|
|
95
|
-
}), h(u(_), "hasFocusableInHeader", function() {
|
|
96
|
-
var e = _.columns.some(function(r) {
|
|
97
|
-
var o = r.props.ref.current;
|
|
98
|
-
return r.sortable || o && a_(o);
|
|
99
|
-
});
|
|
100
|
-
return e;
|
|
101
|
-
}), h(u(_), "changeFocusCell", function(e, r) {
|
|
102
|
-
var o, a, n = _.hasFocusableInHeader(), l = _.columns.length - 1, d = _.totalRows, g = (o = _.tableRef.current) === null || o === void 0 ? void 0 : o.querySelector('[aria-rowindex="'.concat(_.focusedCell[0] + 1, '"]')), w = (a = _.tableRef.current) === null || a === void 0 ? void 0 : a.querySelector('[aria-rowindex="1"]'), c = w == null ? void 0 : w.querySelectorAll("[role=columnheader]"), s = g == null ? void 0 : g.querySelectorAll("[role=gridcell]").item(_.focusedCell[1]), m = c == null ? void 0 : c.item(_.focusedCell[1]), R = !0, b = _.focusedCell[0] + e, v = _.focusedCell[1] + r;
|
|
103
|
-
if ((n && b < 0 || !n && b < 1 || b > d) && b !== _.focusedCell[0] && (R = !1), (v < 0 || v > l) && v !== _.focusedCell[1] && (R = !1), !!R) {
|
|
104
|
-
_.focusedCell = [b, v];
|
|
105
|
-
var W = _.getRow(b), p = W == null ? void 0 : W.querySelectorAll("[role=gridcell], [role=columnheader]").item(v);
|
|
106
|
-
if (p instanceof HTMLElement && s !== p) {
|
|
107
|
-
s == null || s.setAttribute("inert", ""), s !== m && (s == null || s.removeAttribute("aria-describedby"));
|
|
108
|
-
var i = c == null ? void 0 : c.item(v), S = i == null ? void 0 : i.getAttribute("aria-describedby");
|
|
109
|
-
if (p.removeAttribute("inert"), i !== p && S && p.setAttribute("aria-describedby", S), p == null || p.focus(), b !== 0) {
|
|
110
|
-
m == null || m.setAttribute("inert", "");
|
|
111
|
-
var C = c == null ? void 0 : c.item(v);
|
|
112
|
-
C == null || C.removeAttribute("inert");
|
|
113
|
-
}
|
|
114
|
-
} else s === p && _.changeFocusCell(e, r);
|
|
115
|
-
}
|
|
116
|
-
}), h(u(_), "handleKeyDown", function(e) {
|
|
117
|
-
switch (e.key) {
|
|
118
|
-
case "Tab": {
|
|
119
|
-
_.setInert(!0);
|
|
120
|
-
break;
|
|
121
|
-
}
|
|
122
|
-
case "ArrowLeft": {
|
|
123
|
-
e.preventDefault(), _.changeFocusCell(0, -1);
|
|
124
|
-
break;
|
|
125
|
-
}
|
|
126
|
-
case "ArrowRight": {
|
|
127
|
-
e.preventDefault(), _.changeFocusCell(0, 1);
|
|
128
|
-
break;
|
|
129
|
-
}
|
|
130
|
-
case "ArrowUp": {
|
|
131
|
-
e.preventDefault(), _.changeFocusCell(-1, 0);
|
|
132
|
-
break;
|
|
133
|
-
}
|
|
134
|
-
case "ArrowDown": {
|
|
135
|
-
e.preventDefault(), _.changeFocusCell(1, 0);
|
|
136
|
-
break;
|
|
137
|
-
}
|
|
138
|
-
}
|
|
139
|
-
}), h(u(_), "initFocusableCell", function() {
|
|
140
|
-
var e = _.hasFocusableInHeader();
|
|
141
|
-
e ? _.focusedCell = [0, 0] : _.focusedCell = [1, 0];
|
|
142
|
-
}), h(u(_), "getRow", function(e) {
|
|
143
|
-
var r, o;
|
|
144
|
-
return e === 0 ? (r = _.tableRef.current) === null || r === void 0 ? void 0 : r.querySelector("[role=row]") : (o = _.tableRef.current) === null || o === void 0 ? void 0 : o.querySelector('[aria-rowindex="'.concat(e + 1, '"]'));
|
|
145
|
-
}), h(u(_), "handleFocus", function(e) {
|
|
146
|
-
if ((!e.relatedTarget || !$(e.currentTarget, e.relatedTarget)) && G.isKeyboard()) {
|
|
147
|
-
var r;
|
|
148
|
-
_.focusedCell[0] === -1 && _.focusedCell[1] === -1 && _.initFocusableCell(), _.setInert(!0);
|
|
149
|
-
var o = _.getRow(_.focusedCell[0]);
|
|
150
|
-
o || (_.initFocusableCell(), o = _.getRow(_.focusedCell[0]));
|
|
151
|
-
var a = (r = o) === null || r === void 0 ? void 0 : r.querySelectorAll("[role=gridcell], [role=columnheader]").item(_.focusedCell[1]);
|
|
152
|
-
a == null || a.removeAttribute("inert"), a instanceof HTMLElement && a.focus(), e.currentTarget.setAttribute("tabIndex", "-1");
|
|
153
|
-
}
|
|
154
|
-
}), h(u(_), "handleBlur", function(e) {
|
|
155
|
-
var r = e.relatedTarget, o = _.tableRef.current;
|
|
156
|
-
o && (!r || !$(o, r) || !G.isKeyboard()) && (_.setInert(!1), o.setAttribute("tabIndex", "0"));
|
|
157
|
-
}), h(u(_), "handleMouseMove", function() {
|
|
158
|
-
_.setInert(!1);
|
|
159
|
-
});
|
|
160
|
-
var t = Y();
|
|
161
|
-
return _.scrollBodyRef = t("body"), _.scrollHeadRef = t("head"), _;
|
|
162
|
-
}
|
|
163
|
-
return U(x, [{
|
|
164
|
-
key: "setVarStyle",
|
|
165
|
-
value: function(_) {
|
|
166
|
-
var t = this, e = _.flatMap(function(o) {
|
|
167
|
-
var a, n;
|
|
168
|
-
return (a = o.props.ref.current) === null || a === void 0 || (n = a.getAnimations) === null || n === void 0 ? void 0 : n.call(a);
|
|
169
|
-
}).filter(function(o) {
|
|
170
|
-
return o !== void 0;
|
|
171
|
-
}), r = Promise.resolve();
|
|
172
|
-
e.length > 0 && (r = Promise.all(e.map(function(o) {
|
|
173
|
-
return o.finished;
|
|
174
|
-
}))), r.then(function() {
|
|
175
|
-
var o = E(_), a;
|
|
176
|
-
try {
|
|
177
|
-
for (o.s(); !(a = o.n()).done; ) {
|
|
178
|
-
var n = a.value;
|
|
179
|
-
if (n.setVar) {
|
|
180
|
-
var l;
|
|
181
|
-
(l = t.tableRef.current) === null || l === void 0 || l.style.setProperty(n.varWidth, "".concat(n.width, "px"));
|
|
182
|
-
}
|
|
183
|
-
}
|
|
184
|
-
} catch (d) {
|
|
185
|
-
o.e(d);
|
|
186
|
-
} finally {
|
|
187
|
-
o.f();
|
|
188
|
-
}
|
|
189
|
-
}).catch(function(o) {
|
|
190
|
-
console.error(o);
|
|
191
|
-
});
|
|
192
|
-
}
|
|
193
|
-
}, {
|
|
194
|
-
key: "childrenToColumns",
|
|
195
|
-
value: function(_) {
|
|
196
|
-
var t = this, e = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {
|
|
197
|
-
fixed: void 0
|
|
198
|
-
}, r = this.asProps.sort, o = [];
|
|
199
|
-
return k.Children.forEach(_, function(a) {
|
|
200
|
-
var n;
|
|
201
|
-
if (/* @__PURE__ */ k.isValidElement(a) && a.type === I.Column) {
|
|
202
|
-
var l = a.props, d = l.children, g = l.name, w = l.fixed, c = w === void 0 ? e.fixed : w, s = l.resizable, m = l.sortable, R = l.flex, b = l.vBorders, v = l.active, W = B(l, l_), p = o[o.length - 1], i = !g, S;
|
|
203
|
-
if (i) {
|
|
204
|
-
if (S = t.childrenToColumns(d, {
|
|
205
|
-
fixed: c
|
|
206
|
-
}), v = typeof v == "boolean" ? v : S.some(function(y) {
|
|
207
|
-
return y.active;
|
|
208
|
-
}), b && F(S), g = V(S).map(function(y) {
|
|
209
|
-
var j = y.name;
|
|
210
|
-
return j;
|
|
211
|
-
}).join("/"), !S.length) return;
|
|
212
|
-
d = k.Children.toArray(d).filter(function(y) {
|
|
213
|
-
return !(/* @__PURE__ */ k.isValidElement(y) && y.type === I.Column);
|
|
214
|
-
});
|
|
215
|
-
}
|
|
216
|
-
var C = t.columns.find(function(y) {
|
|
217
|
-
return y.name === g;
|
|
218
|
-
}), H = {
|
|
219
|
-
get width() {
|
|
220
|
-
var y;
|
|
221
|
-
return ((y = this.props.ref.current) === null || y === void 0 ? void 0 : y.getBoundingClientRect().width) || 0;
|
|
222
|
-
},
|
|
223
|
-
name: g,
|
|
224
|
-
varWidth: M(g),
|
|
225
|
-
setVar: R !== "inherit",
|
|
226
|
-
fixed: c,
|
|
227
|
-
resizable: s,
|
|
228
|
-
active: typeof v == "boolean" ? v : r[0] === g,
|
|
229
|
-
sortable: m,
|
|
230
|
-
borderLeft: (p == null ? void 0 : p.borderRight) === !0 ? !1 : b,
|
|
231
|
-
borderRight: b,
|
|
232
|
-
sortDirection: r[0] === g ? r[1] : (C == null ? void 0 : C.sortDirection) || (typeof m == "string" ? m : c_),
|
|
233
|
-
props: T(T({
|
|
234
|
-
name: g,
|
|
235
|
-
flex: R === "inherit" ? void 0 : R
|
|
236
|
-
}, W), {}, {
|
|
237
|
-
// @ts-ignore
|
|
238
|
-
forwardRef: a.ref,
|
|
239
|
-
children: d,
|
|
240
|
-
ref: (C == null || (n = C.props) === null || n === void 0 ? void 0 : n.ref) || /* @__PURE__ */ k.createRef()
|
|
241
|
-
}),
|
|
242
|
-
parentColumns: []
|
|
243
|
-
};
|
|
244
|
-
S && (H.columns = S, S.forEach(function(y) {
|
|
245
|
-
return y.parentColumns.unshift(H);
|
|
246
|
-
})), o.push(H);
|
|
247
|
-
}
|
|
248
|
-
}), o;
|
|
249
|
-
}
|
|
250
|
-
}, {
|
|
251
|
-
key: "getHeadProps",
|
|
252
|
-
value: function(_) {
|
|
253
|
-
var t = this.asProps, e = t.use, r = t.uid, o = t.getI18nText, a = this.childrenToColumns(_.children);
|
|
254
|
-
return this.columns = V(a), {
|
|
255
|
-
$onSortClick: Z(this.handlerSortClick, this.scrollToUp),
|
|
256
|
-
columnsChildren: a,
|
|
257
|
-
use: e,
|
|
258
|
-
onResize: this.handlerResize,
|
|
259
|
-
$scrollRef: this.scrollHeadRef,
|
|
260
|
-
uid: r,
|
|
261
|
-
getI18nText: o
|
|
262
|
-
};
|
|
263
|
-
}
|
|
264
|
-
}, {
|
|
265
|
-
key: "getBodyProps",
|
|
266
|
-
value: function(_) {
|
|
267
|
-
var t = this.asProps, e = t.data, r = t.use, o = t.uniqueKey, a = t.uid, n = {}, l = [];
|
|
268
|
-
return k.Children.forEach(_.children, function(d) {
|
|
269
|
-
if (/* @__PURE__ */ k.isValidElement(d)) {
|
|
270
|
-
var g = d.props, w = g.name, c = g.children, s = B(g, n_);
|
|
271
|
-
d.type === I.Cell && w && w.split("/").forEach(function(m) {
|
|
272
|
-
n[m] = n[m] || [], n[m].push(T(T({}, s), {}, {
|
|
273
|
-
childrenPropsGetter: c
|
|
274
|
-
}));
|
|
275
|
-
}), d.type === I.Row && l.push(T(T({}, s), {}, {
|
|
276
|
-
childrenPropsGetter: c
|
|
277
|
-
}));
|
|
278
|
-
}
|
|
279
|
-
}), {
|
|
280
|
-
columns: this.columns,
|
|
281
|
-
rows: this.dataToRows(e, n),
|
|
282
|
-
uniqueKey: o,
|
|
283
|
-
use: r,
|
|
284
|
-
rowPropsLayers: l,
|
|
285
|
-
$scrollRef: this.scrollBodyRef,
|
|
286
|
-
uid: a
|
|
287
|
-
};
|
|
288
|
-
}
|
|
289
|
-
}, {
|
|
290
|
-
key: "dataToRows",
|
|
291
|
-
value: function(_, t) {
|
|
292
|
-
var e = this, r = function o(a, n) {
|
|
293
|
-
return a.map(function(l) {
|
|
294
|
-
var d = {}, g = {};
|
|
295
|
-
for (var w in l) {
|
|
296
|
-
var c = w.split("/");
|
|
297
|
-
if (c.length >= 2) {
|
|
298
|
-
var s = E(c), m;
|
|
299
|
-
try {
|
|
300
|
-
for (s.s(); !(m = s.n()).done; ) {
|
|
301
|
-
var R = m.value;
|
|
302
|
-
d[R] = {
|
|
303
|
-
groupedColumns: c,
|
|
304
|
-
groupData: l[w]
|
|
305
|
-
}, g[R] = !0;
|
|
306
|
-
}
|
|
307
|
-
} catch (i) {
|
|
308
|
-
s.e(i);
|
|
309
|
-
} finally {
|
|
310
|
-
s.f();
|
|
311
|
-
}
|
|
312
|
-
} else
|
|
313
|
-
g[w] = !0;
|
|
314
|
-
}
|
|
315
|
-
var b = l[s_] || [], v = Object.fromEntries(b.flatMap(function(i) {
|
|
316
|
-
return Object.keys(i);
|
|
317
|
-
}).flatMap(function(i) {
|
|
318
|
-
return i.split("/");
|
|
319
|
-
}).map(function(i) {
|
|
320
|
-
return [i, !0];
|
|
321
|
-
})), W = !1, p = e.columns.map(function(i) {
|
|
322
|
-
if (d[i.name]) {
|
|
323
|
-
var S = d[i.name], C = S.groupedColumns, H = S.groupData;
|
|
324
|
-
if (C[0] === i.name)
|
|
325
|
-
return {
|
|
326
|
-
name: C.join("/"),
|
|
327
|
-
cssVar: C.map(M),
|
|
328
|
-
fixed: i.fixed,
|
|
329
|
-
data: H,
|
|
330
|
-
cellPropsLayers: t[i.name] || []
|
|
331
|
-
};
|
|
332
|
-
} else {
|
|
333
|
-
if (i.name in l)
|
|
334
|
-
return {
|
|
335
|
-
name: i.name,
|
|
336
|
-
cssVar: i.varWidth,
|
|
337
|
-
fixed: i.fixed,
|
|
338
|
-
data: l[i.name],
|
|
339
|
-
cellPropsLayers: t[i.name] || []
|
|
340
|
-
};
|
|
341
|
-
if (!W && v[i.name])
|
|
342
|
-
return W = !0, o(b, T(T({}, n), g));
|
|
343
|
-
if (!n[i.name] && !v[i.name])
|
|
344
|
-
return {
|
|
345
|
-
name: i.name,
|
|
346
|
-
cssVar: i.varWidth,
|
|
347
|
-
fixed: i.fixed,
|
|
348
|
-
data: null,
|
|
349
|
-
cellPropsLayers: t[i.name] || []
|
|
350
|
-
};
|
|
351
|
-
}
|
|
352
|
-
}).filter(function(i) {
|
|
353
|
-
return i;
|
|
354
|
-
}).map(function(i) {
|
|
355
|
-
return i;
|
|
356
|
-
});
|
|
357
|
-
return p.flatRowData = l, p;
|
|
358
|
-
});
|
|
359
|
-
};
|
|
360
|
-
return r(_, {});
|
|
361
|
-
}
|
|
362
|
-
}, {
|
|
363
|
-
key: "componentDidMount",
|
|
364
|
-
value: function() {
|
|
365
|
-
this.setVarStyle(this.columns);
|
|
366
|
-
}
|
|
367
|
-
}, {
|
|
368
|
-
key: "componentDidUpdate",
|
|
369
|
-
value: function(_) {
|
|
370
|
-
if (this.setVarStyle(this.columns), _.data !== this.props.data) {
|
|
371
|
-
var t = this.focusedCell[0], e = t === 0 && this.hasFocusableInHeader();
|
|
372
|
-
this.tableRef.current && !$(this.tableRef.current) && !e && (this.focusedCell = [-1, -1]);
|
|
373
|
-
}
|
|
374
|
-
}
|
|
375
|
-
}, {
|
|
376
|
-
key: "totalRows",
|
|
377
|
-
get: function() {
|
|
378
|
-
var _ = this.asProps, t = _.data, e = _.totalRows;
|
|
379
|
-
return e ?? (t ?? []).length;
|
|
380
|
-
}
|
|
381
|
-
}, {
|
|
382
|
-
key: "setInert",
|
|
383
|
-
value: function(_) {
|
|
384
|
-
var t, e = (t = this.tableRef.current) === null || t === void 0 ? void 0 : t.querySelectorAll("[role=gridcell], [role=columnheader]");
|
|
385
|
-
e == null || e.forEach(function(r) {
|
|
386
|
-
_ === !0 ? r.setAttribute("inert", "") : r.removeAttribute("inert");
|
|
387
|
-
});
|
|
388
|
-
}
|
|
389
|
-
}, {
|
|
390
|
-
key: "render",
|
|
391
|
-
value: function() {
|
|
392
|
-
var _ = this.asProps, t, e = X, r = this.asProps, o = r.Children, a = r.styles;
|
|
393
|
-
return t = q(a), /* @__PURE__ */ k.createElement(e, t.cn("SDataTable", T({}, N({
|
|
394
|
-
__excludeProps: ["data"],
|
|
395
|
-
ref: this.tableRef,
|
|
396
|
-
role: "grid",
|
|
397
|
-
onKeyDown: this.handleKeyDown,
|
|
398
|
-
onMouseMove: this.handleMouseMove,
|
|
399
|
-
tabIndex: 0,
|
|
400
|
-
onFocus: this.handleFocus,
|
|
401
|
-
onBlur: this.handleBlur,
|
|
402
|
-
"aria-rowcount": this.totalRows,
|
|
403
|
-
"aria-colcount": this.columns.length
|
|
404
|
-
}, _))), /* @__PURE__ */ k.createElement(o, t.cn("Children", {})));
|
|
405
|
-
}
|
|
406
|
-
}]), x;
|
|
407
|
-
}(Q);
|
|
408
|
-
h(P, "displayName", "DefinitionTable");
|
|
409
|
-
h(P, "style", g_);
|
|
410
|
-
h(P, "enhance", [r_(), t_(i_)]);
|
|
411
|
-
h(P, "defaultProps", {
|
|
412
|
-
use: "primary",
|
|
413
|
-
uniqueKey: "id",
|
|
414
|
-
sort: [],
|
|
415
|
-
data: []
|
|
416
|
-
});
|
|
417
|
-
function A() {
|
|
418
|
-
return null;
|
|
419
|
-
}
|
|
420
|
-
var I = J(P, {
|
|
421
|
-
Head: e_,
|
|
422
|
-
Body: o_,
|
|
423
|
-
Column: A,
|
|
424
|
-
Cell: A,
|
|
425
|
-
Row: A
|
|
426
|
-
}, {}), F_ = function(z) {
|
|
427
|
-
return z;
|
|
428
|
-
}, B_ = function(z) {
|
|
429
|
-
return z;
|
|
430
|
-
}, E_ = function(z) {
|
|
431
|
-
return z;
|
|
432
|
-
};
|
|
433
|
-
export {
|
|
434
|
-
s_ as ROW_GROUP,
|
|
435
|
-
I as default,
|
|
436
|
-
F_ as wrapDataTable,
|
|
437
|
-
E_ as wrapDataTableCell,
|
|
438
|
-
B_ as wrapDataTableRow
|
|
439
|
-
};
|