@semcore/data-table 16.3.2 → 16.4.0-prerelease.3
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 +14 -0
- package/lib/cjs/components/Body/Body.js +58 -53
- package/lib/cjs/components/Body/Body.js.map +1 -1
- package/lib/cjs/components/Body/Body.types.js.map +1 -1
- package/lib/cjs/components/Body/Cell.js +62 -107
- package/lib/cjs/components/Body/Cell.js.map +1 -1
- package/lib/cjs/components/Body/LimitOverlay.js +190 -0
- package/lib/cjs/components/Body/LimitOverlay.js.map +1 -0
- package/lib/cjs/components/Body/Row.js +161 -109
- package/lib/cjs/components/Body/Row.js.map +1 -1
- package/lib/cjs/components/Body/Row.types.js.map +1 -1
- package/lib/cjs/components/Body/style.shadow.css +94 -42
- package/lib/cjs/components/DataTable/DataTable.js +61 -41
- package/lib/cjs/components/DataTable/DataTable.js.map +1 -1
- package/lib/cjs/components/DataTable/DataTable.types.js.map +1 -1
- package/lib/cjs/components/DataTable/dataTable.shadow.css +1 -0
- package/lib/cjs/components/Head/Column.js +45 -92
- package/lib/cjs/components/Head/Column.js.map +1 -1
- package/lib/cjs/components/Head/Group.js +38 -41
- package/lib/cjs/components/Head/Group.js.map +1 -1
- package/lib/cjs/components/Head/Head.js +38 -41
- package/lib/cjs/components/Head/Head.js.map +1 -1
- package/lib/cjs/enhancers/focusableCell.js +63 -0
- package/lib/cjs/enhancers/focusableCell.js.map +1 -0
- package/lib/es6/components/Body/Body.js +57 -52
- package/lib/es6/components/Body/Body.js.map +1 -1
- package/lib/es6/components/Body/Body.types.js.map +1 -1
- package/lib/es6/components/Body/Cell.js +61 -106
- package/lib/es6/components/Body/Cell.js.map +1 -1
- package/lib/es6/components/Body/LimitOverlay.js +183 -0
- package/lib/es6/components/Body/LimitOverlay.js.map +1 -0
- package/lib/es6/components/Body/Row.js +160 -108
- package/lib/es6/components/Body/Row.js.map +1 -1
- package/lib/es6/components/Body/Row.types.js.map +1 -1
- package/lib/es6/components/Body/style.shadow.css +94 -42
- package/lib/es6/components/DataTable/DataTable.js +60 -40
- package/lib/es6/components/DataTable/DataTable.js.map +1 -1
- package/lib/es6/components/DataTable/DataTable.types.js.map +1 -1
- package/lib/es6/components/DataTable/dataTable.shadow.css +1 -0
- package/lib/es6/components/Head/Column.js +44 -91
- package/lib/es6/components/Head/Column.js.map +1 -1
- package/lib/es6/components/Head/Group.js +37 -40
- package/lib/es6/components/Head/Group.js.map +1 -1
- package/lib/es6/components/Head/Head.js +37 -40
- package/lib/es6/components/Head/Head.js.map +1 -1
- package/lib/es6/enhancers/focusableCell.js +56 -0
- package/lib/es6/enhancers/focusableCell.js.map +1 -0
- package/lib/esm/components/Body/Body.mjs +58 -56
- package/lib/esm/components/Body/Cell.mjs +62 -109
- package/lib/esm/components/Body/LimitOverlay.mjs +178 -0
- package/lib/esm/components/Body/Row.mjs +125 -85
- package/lib/esm/components/Body/style.shadow.css +94 -42
- package/lib/esm/components/DataTable/DataTable.mjs +59 -42
- package/lib/esm/components/DataTable/dataTable.shadow.css +1 -0
- package/lib/esm/components/Head/Column.mjs +45 -94
- package/lib/esm/components/Head/Group.mjs +38 -43
- package/lib/esm/components/Head/Head.mjs +38 -43
- package/lib/esm/enhancers/focusableCell.mjs +59 -0
- package/lib/types/components/Body/Body.types.d.ts +2 -1
- package/lib/types/components/Body/LimitOverlay.d.ts +17 -0
- package/lib/types/components/Body/Row.d.ts +1 -0
- package/lib/types/components/Body/Row.types.d.ts +3 -0
- package/lib/types/components/DataTable/DataTable.types.d.ts +19 -0
- package/lib/types/components/Head/Column.d.ts +5 -4
- package/lib/types/enhancers/focusableCell.d.ts +9 -0
- package/package.json +22 -22
|
@@ -3,9 +3,7 @@ import _slicedToArray from "@babel/runtime/helpers/esm/slicedToArray";
|
|
|
3
3
|
import _toConsumableArray from "@babel/runtime/helpers/esm/toConsumableArray";
|
|
4
4
|
import _classCallCheck from "@babel/runtime/helpers/esm/classCallCheck";
|
|
5
5
|
import _createClass from "@babel/runtime/helpers/esm/createClass";
|
|
6
|
-
import
|
|
7
|
-
import _isNativeReflectConstruct from "@babel/runtime/helpers/esm/isNativeReflectConstruct";
|
|
8
|
-
import _getPrototypeOf from "@babel/runtime/helpers/esm/getPrototypeOf";
|
|
6
|
+
import _callSuper from "@babel/runtime/helpers/esm/callSuper";
|
|
9
7
|
import _inherits from "@babel/runtime/helpers/esm/inherits";
|
|
10
8
|
import _defineProperty from "@babel/runtime/helpers/esm/defineProperty";
|
|
11
9
|
import { createComponent, sstyled, assignProps, Component } from "@semcore/core";
|
|
@@ -17,67 +15,70 @@ import { isInteractiveElement } from "@semcore/core/lib/utils/isInteractiveEleme
|
|
|
17
15
|
import ChevronRightM from "@semcore/icon/ChevronRight/m";
|
|
18
16
|
import * as React from "react";
|
|
19
17
|
import { Cell } from "./Cell.mjs";
|
|
18
|
+
import { LimitOverlay } from "./LimitOverlay.mjs";
|
|
20
19
|
import { MergedRowsCell, MergedColumnsCell } from "./MergedCells.mjs";
|
|
21
20
|
import { ACCORDION, ROW_INDEX, IS_EMPTY_DATA_ROW, UNIQ_ROW_KEY, ROW_GROUP, SELECT_ALL } from "../DataTable/DataTable.mjs";
|
|
22
|
-
function _callSuper(t, o, e) {
|
|
23
|
-
return o = _getPrototypeOf(o), _possibleConstructorReturn(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], _getPrototypeOf(t).constructor) : o.apply(t, e));
|
|
24
|
-
}
|
|
25
21
|
/*!__reshadow-styles__:"./style.shadow.css"*/
|
|
26
22
|
var style = (
|
|
27
23
|
/*__reshadow_css_start__*/
|
|
28
24
|
(sstyled.insert(
|
|
29
25
|
/*__inner_css_start__*/
|
|
30
|
-
'.___SAccordionRows_p1jyf_gg_,.___SBody_p1jyf_gg_,.___SRowGroup_p1jyf_gg_,.___SRow_p1jyf_gg_{display:contents}.___SBody_p1jyf_gg_.__compact_p1jyf_gg_ .___SCell_p1jyf_gg_{padding:var(--intergalactic-spacing-3x, 12px) var(--intergalactic-spacing-2x, 8px)}.___SBody_p1jyf_gg_.__compact_p1jyf_gg_ .___SCell_p1jyf_gg_[data-aria-level]{padding-left:calc(var(--intergalactic-spacing-2x, 8px) + ((var(--intergalactic-spacing-4x, 16px) + var(--intergalactic-spacing-1x, 4px) + var(--intergalactic-spacing-05x, 2px))*(var(--data-aria-level_p1jyf) - 1)))}.___SBody_p1jyf_gg_.__compact_p1jyf_gg_ .___SRow_p1jyf_gg_ .___SCellWrapper_p1jyf_gg_:first-child .___SCell_p1jyf_gg_[data-aria-level]{padding-left:calc(var(--intergalactic-spacing-2x, 8px) + ((var(--intergalactic-spacing-4x, 16px) + var(--intergalactic-spacing-1x, 4px) + var(--intergalactic-spacing-05x, 2px))*(var(--data-aria-level_p1jyf) - 1)))}.___SBody_p1jyf_gg_.__compact_p1jyf_gg_ .___SRow_p1jyf_gg_._sideIndents_wide_p1jyf_gg_ .___SCellWrapper_p1jyf_gg_:first-child .___SCell_p1jyf_gg_[data-aria-level]{padding-left:calc(var(--intergalactic-spacing-5x, 20px) + ((var(--intergalactic-spacing-4x, 16px) + var(--intergalactic-spacing-1x, 4px) + var(--intergalactic-spacing-05x, 2px))*(var(--data-aria-level_p1jyf) - 1)))}.___SBody_p1jyf_gg_.__compact_p1jyf_gg_ .___SCell_p1jyf_gg_ .___SAccordionToggle_p1jyf_gg_{margin-right:var(--intergalactic-spacing-2x, 8px)}.___SCellWrapper_p1jyf_gg_.__gridArea_p1jyf_gg_,.___SCollapseRow_p1jyf_gg_.__gridArea_p1jyf_gg_,.___SRow_p1jyf_gg_.__gridArea_p1jyf_gg_{grid-area:var(--gridArea_p1jyf)}.___SCellWrapper_p1jyf_gg_{height:100%;overflow:hidden}.___SCollapseRow_p1jyf_gg_.__gridArea_p1jyf_gg_>.___SCellWrapper_p1jyf_gg_,.___SRow_p1jyf_gg_.__isAccordionRow_p1jyf_gg_>.___SCellWrapper_p1jyf_gg_{height:auto;overflow:auto}.___SAccordionRows_p1jyf_gg_>.___SRow_p1jyf_gg_.__isAccordionRow_p1jyf_gg_:last-child>.___SCellWrapper_p1jyf_gg_>.___SCell_p1jyf_gg_:not(.__withoutBorder_p1jyf_gg_),.___SCollapseRow_p1jyf_gg_.__gridArea_p1jyf_gg_>.___SCellWrapper_p1jyf_gg_>.___SCell_p1jyf_gg_:not(.__withoutBorder_p1jyf_gg_){border-bottom:1px solid var(--intergalactic-border-table-accent, #a9abb6)}.___SCollapseRow_p1jyf_gg_>.___SCellWrapper_p1jyf_gg_>.___SCell_p1jyf_gg_{display:block}.___SCell_p1jyf_gg_:not(.__theme_p1jyf_gg_).__expanded_p1jyf_gg_.__withAccordion_p1jyf_gg_,.___SRow_p1jyf_gg_.__active_p1jyf_gg_>.___SCellWrapper_p1jyf_gg_>.___SCell_p1jyf_gg_:not(.__theme_p1jyf_gg_),.___SRow_p1jyf_gg_._accordionType_row_p1jyf_gg_.__expanded_p1jyf_gg_>.___SCellWrapper_p1jyf_gg_>.___SCell_p1jyf_gg_:not(.__theme_p1jyf_gg_){background-color:var(--intergalactic-table-td-cell-active, #e6e7ed)}.___SCollapseRow_p1jyf_gg_>.___SCellWrapper_p1jyf_gg_>.___SCell_p1jyf_gg_:not(.__theme_p1jyf_gg_),.___SRow_p1jyf_gg_.__isAccordionRow_p1jyf_gg_>.___SCellWrapper_p1jyf_gg_>.___SCell_p1jyf_gg_:not(.__theme_p1jyf_gg_){background-color:var(--intergalactic-table-td-cell-accordion, #f4f5f9)}@media (hover:hover){.___SRowGroup_p1jyf_gg_:has(.___SCell_p1jyf_gg_:hover)>.___SRow_p1jyf_gg_._theme_muted_p1jyf_gg_:not(.__isNonInteractive_p1jyf_gg_)>.___SCellWrapper_p1jyf_gg_>.___SCell_p1jyf_gg_[data-grouped-by=rowgroup]:not(.__theme_p1jyf_gg_),.___SRowGroup_p1jyf_gg_:has(.___SCell_p1jyf_gg_:hover)>.___SRow_p1jyf_gg_:not(.__isNonInteractive_p1jyf_gg_)>.___SCellWrapper_p1jyf_gg_>.___SCell_p1jyf_gg_[data-grouped-by=rowgroup]._theme_muted_p1jyf_gg_,.___SRowGroup_p1jyf_gg_:has(.___SCell_p1jyf_gg_:hover)>.___SRow_p1jyf_gg_:not(.__isNonInteractive_p1jyf_gg_)>.___SCellWrapper_p1jyf_gg_>.___SCell_p1jyf_gg_[data-grouped-by=rowgroup]:not(.__theme_p1jyf_gg_):not(.__expanded_p1jyf_gg_.__withAccordion_p1jyf_gg_),.___SRowGroup_p1jyf_gg_:has(.___SCell_p1jyf_gg_[data-grouped-by=rowgroup]:hover)>.___SRow_p1jyf_gg_._theme_muted_p1jyf_gg_:not(.__isNonInteractive_p1jyf_gg_)>.___SCellWrapper_p1jyf_gg_>.___SCell_p1jyf_gg_:not(.__theme_p1jyf_gg_),.___SRowGroup_p1jyf_gg_:has(.___SCell_p1jyf_gg_[data-grouped-by=rowgroup]:hover)>.___SRow_p1jyf_gg_:not(.__isNonInteractive_p1jyf_gg_)>.___SCellWrapper_p1jyf_gg_>.___SCell_p1jyf_gg_._theme_muted_p1jyf_gg_,.___SRowGroup_p1jyf_gg_:has(.___SCell_p1jyf_gg_[data-grouped-by=rowgroup]:hover)>.___SRow_p1jyf_gg_:not(.__isNonInteractive_p1jyf_gg_)>.___SCellWrapper_p1jyf_gg_>.___SCell_p1jyf_gg_:not(.__theme_p1jyf_gg_):not(.__expanded_p1jyf_gg_.__withAccordion_p1jyf_gg_),.___SRow_p1jyf_gg_._theme_muted_p1jyf_gg_:hover:not(.__expanded_p1jyf_gg_.__isNonInteractive_p1jyf_gg_)>.___SCellWrapper_p1jyf_gg_>.___SCell_p1jyf_gg_:not(.__theme_p1jyf_gg_):not(.__expanded_p1jyf_gg_.__withAccordion_p1jyf_gg_),.___SRow_p1jyf_gg_:hover:not(.__isNonInteractive_p1jyf_gg_)>.___SCellWrapper_p1jyf_gg_>.___SCell_p1jyf_gg_._theme_muted_p1jyf_gg_,.___SRow_p1jyf_gg_:not(._accordionType_row_p1jyf_gg_.__expanded_p1jyf_gg_):hover:not(.__isNonInteractive_p1jyf_gg_)>.___SCellWrapper_p1jyf_gg_>.___SCell_p1jyf_gg_:not(.__theme_p1jyf_gg_):not(.__expanded_p1jyf_gg_.__withAccordion_p1jyf_gg_){background-color:var(--intergalactic-table-td-cell-hover, #f0f0f4)}.___SRowGroup_p1jyf_gg_:has(.___SCell_p1jyf_gg_:hover)>.___SRow_p1jyf_gg_._theme_info_p1jyf_gg_:not(.__isNonInteractive_p1jyf_gg_)>.___SCellWrapper_p1jyf_gg_>.___SCell_p1jyf_gg_[data-grouped-by=rowgroup]:not(.__theme_p1jyf_gg_),.___SRowGroup_p1jyf_gg_:has(.___SCell_p1jyf_gg_:hover)>.___SRow_p1jyf_gg_:not(.__isNonInteractive_p1jyf_gg_)>.___SCellWrapper_p1jyf_gg_>.___SCell_p1jyf_gg_[data-grouped-by=rowgroup]._theme_info_p1jyf_gg_,.___SRowGroup_p1jyf_gg_:has(.___SCell_p1jyf_gg_[data-grouped-by=rowgroup]:hover)>.___SRow_p1jyf_gg_._theme_info_p1jyf_gg_:not(.__isNonInteractive_p1jyf_gg_)>.___SCellWrapper_p1jyf_gg_>.___SCell_p1jyf_gg_:not(.__theme_p1jyf_gg_),.___SRowGroup_p1jyf_gg_:has(.___SCell_p1jyf_gg_[data-grouped-by=rowgroup]:hover)>.___SRow_p1jyf_gg_:not(.__isNonInteractive_p1jyf_gg_)>.___SCellWrapper_p1jyf_gg_>.___SCell_p1jyf_gg_._theme_info_p1jyf_gg_,.___SRow_p1jyf_gg_._theme_info_p1jyf_gg_:hover:not(.__expanded_p1jyf_gg_.__isNonInteractive_p1jyf_gg_)>.___SCellWrapper_p1jyf_gg_>.___SCell_p1jyf_gg_:not(.__theme_p1jyf_gg_):not(.__expanded_p1jyf_gg_.__withAccordion_p1jyf_gg_),.___SRow_p1jyf_gg_:hover:not(.__isNonInteractive_p1jyf_gg_)>.___SCellWrapper_p1jyf_gg_>.___SCell_p1jyf_gg_._theme_info_p1jyf_gg_{background-color:var(--intergalactic-table-td-cell-selected-hover, #c4e5fe)}.___SRowGroup_p1jyf_gg_:has(.___SCell_p1jyf_gg_:hover)>.___SRow_p1jyf_gg_._theme_success_p1jyf_gg_:not(.__isNonInteractive_p1jyf_gg_)>.___SCellWrapper_p1jyf_gg_>.___SCell_p1jyf_gg_[data-grouped-by=rowgroup]:not(.__theme_p1jyf_gg_):not(.__expanded_p1jyf_gg_.__withAccordion_p1jyf_gg_),.___SRowGroup_p1jyf_gg_:has(.___SCell_p1jyf_gg_:hover)>.___SRow_p1jyf_gg_:not(.__isNonInteractive_p1jyf_gg_)>.___SCellWrapper_p1jyf_gg_>.___SCell_p1jyf_gg_[data-grouped-by=rowgroup]._theme_success_p1jyf_gg_,.___SRowGroup_p1jyf_gg_:has(.___SCell_p1jyf_gg_[data-grouped-by=rowgroup]:hover)>.___SRow_p1jyf_gg_._theme_success_p1jyf_gg_:not(.__isNonInteractive_p1jyf_gg_)>.___SCellWrapper_p1jyf_gg_>.___SCell_p1jyf_gg_:not(.__theme_p1jyf_gg_),.___SRowGroup_p1jyf_gg_:has(.___SCell_p1jyf_gg_[data-grouped-by=rowgroup]:hover)>.___SRow_p1jyf_gg_:not(.__isNonInteractive_p1jyf_gg_)>.___SCellWrapper_p1jyf_gg_>.___SCell_p1jyf_gg_._theme_success_p1jyf_gg_,.___SRow_p1jyf_gg_._theme_success_p1jyf_gg_:hover:not(.__expanded_p1jyf_gg_.__isNonInteractive_p1jyf_gg_)>.___SCellWrapper_p1jyf_gg_>.___SCell_p1jyf_gg_:not(.__theme_p1jyf_gg_):not(.__expanded_p1jyf_gg_.__withAccordion_p1jyf_gg_),.___SRow_p1jyf_gg_:hover:not(.__isNonInteractive_p1jyf_gg_)>.___SCellWrapper_p1jyf_gg_>.___SCell_p1jyf_gg_._theme_success_p1jyf_gg_{background-color:var(--intergalactic-table-td-cell-new-hover, #9ef2c9)}.___SRowGroup_p1jyf_gg_:has(.___SCell_p1jyf_gg_:hover)>.___SRow_p1jyf_gg_._theme_warning_p1jyf_gg_:not(.__isNonInteractive_p1jyf_gg_)>.___SCellWrapper_p1jyf_gg_>.___SCell_p1jyf_gg_[data-grouped-by=rowgroup]:not(.__theme_p1jyf_gg_),.___SRowGroup_p1jyf_gg_:has(.___SCell_p1jyf_gg_:hover)>.___SRow_p1jyf_gg_:not(.__isNonInteractive_p1jyf_gg_)>.___SCellWrapper_p1jyf_gg_>.___SCell_p1jyf_gg_[data-grouped-by=rowgroup]._theme_warning_p1jyf_gg_,.___SRowGroup_p1jyf_gg_:has(.___SCell_p1jyf_gg_[data-grouped-by=rowgroup]:hover)>.___SRow_p1jyf_gg_._theme_warning_p1jyf_gg_:not(.__isNonInteractive_p1jyf_gg_)>.___SCellWrapper_p1jyf_gg_>.___SCell_p1jyf_gg_:not(.__theme_p1jyf_gg_),.___SRowGroup_p1jyf_gg_:has(.___SCell_p1jyf_gg_[data-grouped-by=rowgroup]:hover)>.___SRow_p1jyf_gg_:not(.__isNonInteractive_p1jyf_gg_)>.___SCellWrapper_p1jyf_gg_>.___SCell_p1jyf_gg_._theme_warning_p1jyf_gg_,.___SRow_p1jyf_gg_._theme_warning_p1jyf_gg_:hover:not(.__expanded_p1jyf_gg_.__isNonInteractive_p1jyf_gg_)>.___SCellWrapper_p1jyf_gg_>.___SCell_p1jyf_gg_:not(.__theme_p1jyf_gg_):not(.__expanded_p1jyf_gg_.__withAccordion_p1jyf_gg_),.___SRow_p1jyf_gg_:hover:not(.__isNonInteractive_p1jyf_gg_)>.___SCellWrapper_p1jyf_gg_>.___SCell_p1jyf_gg_._theme_warning_p1jyf_gg_{background-color:var(--intergalactic-table-td-cell-warning-hover, #ffdca2)}.___SRowGroup_p1jyf_gg_:has(.___SCell_p1jyf_gg_:hover)>.___SRow_p1jyf_gg_._theme_danger_p1jyf_gg_:not(.__isNonInteractive_p1jyf_gg_)>.___SCellWrapper_p1jyf_gg_>.___SCell_p1jyf_gg_[data-grouped-by=rowgroup]:not(.__theme_p1jyf_gg_),.___SRowGroup_p1jyf_gg_:has(.___SCell_p1jyf_gg_:hover)>.___SRow_p1jyf_gg_:not(.__isNonInteractive_p1jyf_gg_)>.___SCellWrapper_p1jyf_gg_>.___SCell_p1jyf_gg_[data-grouped-by=rowgroup]._theme_danger_p1jyf_gg_,.___SRowGroup_p1jyf_gg_:has(.___SCell_p1jyf_gg_[data-grouped-by=rowgroup]:hover)>.___SRow_p1jyf_gg_._theme_danger_p1jyf_gg_:not(.__isNonInteractive_p1jyf_gg_)>.___SCellWrapper_p1jyf_gg_>.___SCell_p1jyf_gg_:not(.__theme_p1jyf_gg_),.___SRowGroup_p1jyf_gg_:has(.___SCell_p1jyf_gg_[data-grouped-by=rowgroup]:hover)>.___SRow_p1jyf_gg_:not(.__isNonInteractive_p1jyf_gg_)>.___SCellWrapper_p1jyf_gg_>.___SCell_p1jyf_gg_._theme_danger_p1jyf_gg_,.___SRow_p1jyf_gg_._theme_danger_p1jyf_gg_:hover:not(.__expanded_p1jyf_gg_.__isNonInteractive_p1jyf_gg_)>.___SCellWrapper_p1jyf_gg_>.___SCell_p1jyf_gg_:not(.__theme_p1jyf_gg_):not(.__expanded_p1jyf_gg_.__withAccordion_p1jyf_gg_),.___SRow_p1jyf_gg_:hover:not(.__isNonInteractive_p1jyf_gg_)>.___SCellWrapper_p1jyf_gg_>.___SCell_p1jyf_gg_._theme_danger_p1jyf_gg_{background-color:var(--intergalactic-table-td-cell-critical-hover, #ffd7df)}}.___SRow_p1jyf_gg_._theme_muted_p1jyf_gg_ .___SCell_p1jyf_gg_:not(.__theme_p1jyf_gg_){background-color:var(--intergalactic-table-td-cell-unread, #f4f5f9)}.___SRow_p1jyf_gg_._theme_muted_p1jyf_gg_.__active_p1jyf_gg_>.___SCellWrapper_p1jyf_gg_>.___SCell_p1jyf_gg_:not(.__theme_p1jyf_gg_){background-color:var(--intergalactic-table-td-cell-active, #e6e7ed)}.___SRow_p1jyf_gg_._theme_info_p1jyf_gg_ .___SCell_p1jyf_gg_:not(.__theme_p1jyf_gg_){background-color:var(--intergalactic-table-td-cell-selected, #e9f7ff)}.___SRow_p1jyf_gg_._theme_info_p1jyf_gg_.__active_p1jyf_gg_>.___SCellWrapper_p1jyf_gg_>.___SCell_p1jyf_gg_:not(.__theme_p1jyf_gg_){background-color:var(--intergalactic-table-td-cell-selected-active, #c4e5fe)}.___SRow_p1jyf_gg_._theme_success_p1jyf_gg_ .___SCell_p1jyf_gg_:not(.__theme_p1jyf_gg_){background-color:var(--intergalactic-table-td-cell-new, #dbfee8)}.___SRow_p1jyf_gg_._theme_success_p1jyf_gg_.__active_p1jyf_gg_>.___SCellWrapper_p1jyf_gg_>.___SCell_p1jyf_gg_:not(.__theme_p1jyf_gg_){background-color:var(--intergalactic-table-td-cell-new-active, #9ef2c9)}.___SRow_p1jyf_gg_._theme_warning_p1jyf_gg_ .___SCell_p1jyf_gg_:not(.__theme_p1jyf_gg_){background-color:var(--intergalactic-table-td-cell-warning, #fff3d9)}.___SRow_p1jyf_gg_._theme_warning_p1jyf_gg_.__active_p1jyf_gg_>.___SCellWrapper_p1jyf_gg_>.___SCell_p1jyf_gg_:not(.__theme_p1jyf_gg_){background-color:var(--intergalactic-table-td-cell-warning-active, #ffdca2)}.___SRow_p1jyf_gg_._theme_danger_p1jyf_gg_ .___SCell_p1jyf_gg_:not(.__theme_p1jyf_gg_){background-color:var(--intergalactic-table-td-cell-critical, #fff0f7)}.___SRow_p1jyf_gg_._theme_danger_p1jyf_gg_.__active_p1jyf_gg_>.___SCellWrapper_p1jyf_gg_>.___SCell_p1jyf_gg_:not(.__theme_p1jyf_gg_){background-color:var(--intergalactic-table-td-cell-critical-active, #ffd7df)}.___SCell_p1jyf_gg_{display:flex;height:100%;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);white-space:pre-wrap;word-break:break-word;font-feature-settings:"tnum";font-variant-numeric:tabular-nums;transition:width calc(var(--intergalactic-duration-extra-fast, 100)*1ms) ease-in-out;outline:0;overflow:hidden}.___SCell_p1jyf_gg_ .___SAccordionToggle_p1jyf_gg_{margin-top:var(--intergalactic-spacing-05x, 2px);margin-right:var(--intergalactic-spacing-3x, 12px);margin-left:calc(var(--intergalactic-spacing-05x, 2px)*-1);height:-moz-fit-content;height:fit-content}.___SCell_p1jyf_gg_ .___SAccordionToggle_p1jyf_gg_ svg{transition:transform calc(var(--intergalactic-duration-accordion, 200)*1ms) ease-out}.___SCell_p1jyf_gg_ .___SAccordionToggle_p1jyf_gg_.__expanded_p1jyf_gg_ svg{transform:rotate(90deg)}.___SCell_p1jyf_gg_.__withoutBorder_p1jyf_gg_{border-bottom:none}.___SCell_p1jyf_gg_.__withAccordion_p1jyf_gg_,.___SCheckboxCell_p1jyf_gg_,.___SRow_p1jyf_gg_._accordionType_row_p1jyf_gg_>.___SCellWrapper_p1jyf_gg_>.___SCell_p1jyf_gg_{cursor:pointer}.___SCell_p1jyf_gg_._use_primary_p1jyf_gg_{padding:var(--intergalactic-spacing-3x, 12px);min-height:45px;background-color:var(--intergalactic-bg-primary-neutral, #ffffff)}.___SCell_p1jyf_gg_._use_primary_p1jyf_gg_[data-aria-level]{padding-left:calc(var(--intergalactic-spacing-3x, 12px) + ((var(--intergalactic-spacing-5x, 20px) + var(--intergalactic-spacing-1x, 4px) + var(--intergalactic-spacing-05x, 2px))*(var(--data-aria-level_p1jyf) - 1)))}.___SCell_p1jyf_gg_._use_secondary_p1jyf_gg_{padding:var(--intergalactic-spacing-2x, 8px);min-height:37px;background-color:var(--intergalactic-bg-primary-neutral, #ffffff)}.___SCell_p1jyf_gg_._use_secondary_p1jyf_gg_[data-aria-level]{padding-left:calc(var(--intergalactic-spacing-2x, 8px) + ((var(--intergalactic-spacing-5x, 20px) + var(--intergalactic-spacing-1x, 4px) + var(--intergalactic-spacing-05x, 2px))*(var(--data-aria-level_p1jyf) - 1)))}.___SCell_p1jyf_gg_._borders_both_p1jyf_gg_,.___SCell_p1jyf_gg_._borders_left_p1jyf_gg_{border-left:1px solid var(--intergalactic-border-secondary, #e0e1e9)}.___SCell_p1jyf_gg_._borders_both_p1jyf_gg_,.___SCell_p1jyf_gg_._borders_right_p1jyf_gg_{border-right:1px solid var(--intergalactic-border-secondary, #e0e1e9)}.___SCellWrapper_p1jyf_gg_.__fixed_p1jyf_gg_{position:sticky;z-index:2}.___SCell_p1jyf_gg_._theme_muted_p1jyf_gg_{background-color:var(--intergalactic-table-td-cell-unread, #f4f5f9)}.___SCell_p1jyf_gg_._theme_info_p1jyf_gg_{background-color:var(--intergalactic-table-td-cell-selected, #e9f7ff)}.___SCell_p1jyf_gg_._theme_success_p1jyf_gg_{background-color:var(--intergalactic-table-td-cell-new, #dbfee8)}.___SCell_p1jyf_gg_._theme_warning_p1jyf_gg_{background-color:var(--intergalactic-table-td-cell-warning, #fff3d9)}.___SCell_p1jyf_gg_._theme_danger_p1jyf_gg_{background-color:var(--intergalactic-table-td-cell-critical, #fff0f7)}.___SSpinContainer_p1jyf_gg_{position:absolute;left:0;right:0;bottom:0;top:0;display:flex;align-items:center;justify-content:center;background-color:var(--intergalactic-overlay-limitation-secondary, rgba(255, 255, 255, 0.85));z-index:15}.___SSpinContainer_p1jyf_gg_:focus-visible{z-index:15}.___SSpinContainer_p1jyf_gg_.__headerHeight_p1jyf_gg_{top:var(--headerHeight_p1jyf)}.___SEmptyData_p1jyf_gg_{grid-column:1/-1}.___SRow_p1jyf_gg_._sideIndents_wide_p1jyf_gg_ .___SCellWrapper_p1jyf_gg_:first-child .___SCell_p1jyf_gg_{padding-left:var(--intergalactic-spacing-5x, 20px)}.___SRow_p1jyf_gg_._sideIndents_wide_p1jyf_gg_ .___SCellWrapper_p1jyf_gg_:first-child .___SCell_p1jyf_gg_[data-aria-level]{padding-left:calc(var(--intergalactic-spacing-5x, 20px) + ((var(--intergalactic-spacing-5x, 20px) + var(--intergalactic-spacing-1x, 4px) + var(--intergalactic-spacing-05x, 2px))*(var(--data-aria-level_p1jyf) - 1)))}.___SRow_p1jyf_gg_._sideIndents_wide_p1jyf_gg_ .___SCellWrapper_p1jyf_gg_:last-child .___SCell_p1jyf_gg_{padding-right:var(--intergalactic-spacing-5x, 20px)}.___SRow_p1jyf_gg_.__isAccordionRow_p1jyf_gg_.__withAnimation_p1jyf_gg_>.___SCellWrapper_p1jyf_gg_{transition-property:height;transition-delay:var(--delay_p1jyf);transition-duration:var(--duration_p1jyf);transition-timing-function:linear;overflow:clip}.___SCellWrapper_p1jyf_gg_.__fixed_p1jyf_gg_.__shadowVertical_p1jyf_gg_:after{content:"";position:absolute;pointer-events:none;display:none;top:0;width:5px;height:100%;z-index:5}.___SCellWrapper_p1jyf_gg_._fixed_left_p1jyf_gg_._shadowVertical_median_p1jyf_gg_,.___SCellWrapper_p1jyf_gg_._fixed_left_p1jyf_gg_._shadowVertical_start_p1jyf_gg_{margin-right:-5px}.___SCellWrapper_p1jyf_gg_._fixed_left_p1jyf_gg_._shadowVertical_median_p1jyf_gg_:after,.___SCellWrapper_p1jyf_gg_._fixed_left_p1jyf_gg_._shadowVertical_start_p1jyf_gg_:after{display:block;right:0;background:var(--intergalactic-scroll-area-shadow-left,\n linear-gradient(to right, rgba(25, 27, 35, 0.1) 20.55%, rgba(255, 255, 255, 0.0001) 100%))}.___SCellWrapper_p1jyf_gg_._fixed_left_p1jyf_gg_._shadowVertical_median_p1jyf_gg_ .___SCell_p1jyf_gg_,.___SCellWrapper_p1jyf_gg_._fixed_left_p1jyf_gg_._shadowVertical_start_p1jyf_gg_ .___SCell_p1jyf_gg_{margin-right:5px}.___SCellWrapper_p1jyf_gg_._fixed_right_p1jyf_gg_._shadowVertical_end_p1jyf_gg_,.___SCellWrapper_p1jyf_gg_._fixed_right_p1jyf_gg_._shadowVertical_median_p1jyf_gg_{margin-left:-5px}.___SCellWrapper_p1jyf_gg_._fixed_right_p1jyf_gg_._shadowVertical_end_p1jyf_gg_:after,.___SCellWrapper_p1jyf_gg_._fixed_right_p1jyf_gg_._shadowVertical_median_p1jyf_gg_:after{display:block;left:0;background:var(--intergalactic-scroll-area-shadow-right,\n linear-gradient(to left, rgba(25, 27, 35, 0.1) 20.55%, rgba(255, 255, 255, 0.0001) 100%))}.___SCellWrapper_p1jyf_gg_._fixed_right_p1jyf_gg_._shadowVertical_end_p1jyf_gg_ .___SCell_p1jyf_gg_,.___SCellWrapper_p1jyf_gg_._fixed_right_p1jyf_gg_._shadowVertical_median_p1jyf_gg_ .___SCell_p1jyf_gg_{margin-left:5px}',
|
|
26
|
+
'.___SAccordionRows_lezzg_gg_,.___SBody_lezzg_gg_,.___SRowGroup_lezzg_gg_,.___SRow_lezzg_gg_{display:contents}.___SBody_lezzg_gg_.__compact_lezzg_gg_ .___SCell_lezzg_gg_{padding:var(--intergalactic-spacing-3x, 12px) var(--intergalactic-spacing-2x, 8px)}.___SBody_lezzg_gg_.__compact_lezzg_gg_ .___SCell_lezzg_gg_[data-aria-level]{padding-left:calc(var(--intergalactic-spacing-2x, 8px) + ((var(--intergalactic-spacing-4x, 16px) + var(--intergalactic-spacing-1x, 4px) + var(--intergalactic-spacing-05x, 2px))*(var(--data-aria-level_lezzg) - 1)))}.___SBody_lezzg_gg_.__compact_lezzg_gg_ .___SRow_lezzg_gg_ .___SCellWrapper_lezzg_gg_:first-child .___SCell_lezzg_gg_[data-aria-level]{padding-left:calc(var(--intergalactic-spacing-2x, 8px) + ((var(--intergalactic-spacing-4x, 16px) + var(--intergalactic-spacing-1x, 4px) + var(--intergalactic-spacing-05x, 2px))*(var(--data-aria-level_lezzg) - 1)))}.___SBody_lezzg_gg_.__compact_lezzg_gg_ .___SCollapseRow_lezzg_gg_._sideIndents_wide_lezzg_gg_ .___SCellWrapper_lezzg_gg_:first-child .___SCell_lezzg_gg_[data-aria-level],.___SBody_lezzg_gg_.__compact_lezzg_gg_ .___SRow_lezzg_gg_._sideIndents_wide_lezzg_gg_ .___SCellWrapper_lezzg_gg_:first-child .___SCell_lezzg_gg_[data-aria-level]{padding-left:calc(var(--intergalactic-spacing-5x, 20px) + ((var(--intergalactic-spacing-4x, 16px) + var(--intergalactic-spacing-1x, 4px) + var(--intergalactic-spacing-05x, 2px))*(var(--data-aria-level_lezzg) - 1)))}.___SBody_lezzg_gg_.__compact_lezzg_gg_ .___SCell_lezzg_gg_ .___SAccordionToggle_lezzg_gg_{margin-right:var(--intergalactic-spacing-2x, 8px)}.___SCellWrapper_lezzg_gg_.__gridArea_lezzg_gg_,.___SCollapseRow_lezzg_gg_.__gridArea_lezzg_gg_,.___SRow_lezzg_gg_.__gridArea_lezzg_gg_{grid-area:var(--gridArea_lezzg)}.___SCellWrapper_lezzg_gg_{height:100%;overflow:hidden}.___SCollapseRow_lezzg_gg_.__gridArea_lezzg_gg_>.___SCellWrapper_lezzg_gg_,.___SRow_lezzg_gg_.__isAccordionRow_lezzg_gg_>.___SCellWrapper_lezzg_gg_{height:auto;overflow:auto}.___SAccordionRows_lezzg_gg_>.___SRow_lezzg_gg_.__isAccordionRow_lezzg_gg_:last-child>.___SCellWrapper_lezzg_gg_>.___SCell_lezzg_gg_:not(.__withoutBorder_lezzg_gg_),.___SCollapseRow_lezzg_gg_.__gridArea_lezzg_gg_>.___SCellWrapper_lezzg_gg_>.___SCell_lezzg_gg_:not(.__withoutBorder_lezzg_gg_){border-bottom:1px solid var(--intergalactic-border-table-accent, #a9abb6)}.___SCollapseRow_lezzg_gg_>.___SCellWrapper_lezzg_gg_>.___SCell_lezzg_gg_{display:block}.___SCell_lezzg_gg_:not(.__theme_lezzg_gg_).__expanded_lezzg_gg_.__withAccordion_lezzg_gg_,.___SRow_lezzg_gg_.__active_lezzg_gg_>.___SCellWrapper_lezzg_gg_>.___SCell_lezzg_gg_:not(.__theme_lezzg_gg_),.___SRow_lezzg_gg_._accordionType_row_lezzg_gg_.__expanded_lezzg_gg_>.___SCellWrapper_lezzg_gg_>.___SCell_lezzg_gg_:not(.__theme_lezzg_gg_){background-color:var(--intergalactic-table-td-cell-active, #e6e7ed)}.___SCollapseRow_lezzg_gg_>.___SCellWrapper_lezzg_gg_>.___SCell_lezzg_gg_:not(.__theme_lezzg_gg_),.___SRow_lezzg_gg_.__isAccordionRow_lezzg_gg_>.___SCellWrapper_lezzg_gg_>.___SCell_lezzg_gg_:not(.__theme_lezzg_gg_){background-color:var(--intergalactic-table-td-cell-accordion, #f4f5f9)}@media (hover:hover){.___SRowGroup_lezzg_gg_:has(.___SCell_lezzg_gg_:hover)>.___SRow_lezzg_gg_:not(.__isNonInteractive_lezzg_gg_):not([aria-hidden])>.___SCellWrapper_lezzg_gg_>.___SCell_lezzg_gg_[data-grouped-by=rowgroup]:not(.__theme_lezzg_gg_):not(.__expanded_lezzg_gg_.__withAccordion_lezzg_gg_):not([aria-hidden]),.___SRowGroup_lezzg_gg_:has(.___SCell_lezzg_gg_[data-grouped-by=rowgroup]:hover)>.___SRow_lezzg_gg_:not(.__isNonInteractive_lezzg_gg_):not([aria-hidden])>.___SCellWrapper_lezzg_gg_>.___SCell_lezzg_gg_:not(.__theme_lezzg_gg_):not(.__expanded_lezzg_gg_.__withAccordion_lezzg_gg_):not([aria-hidden]),.___SRow_lezzg_gg_:not(._accordionType_row_lezzg_gg_.__expanded_lezzg_gg_):hover:not(.__isNonInteractive_lezzg_gg_):not([aria-hidden]):not(:has(.___SLimitOverlayCellWrapper_lezzg_gg_:hover))>.___SCellWrapper_lezzg_gg_>.___SCell_lezzg_gg_:not(.__theme_lezzg_gg_):not(.__expanded_lezzg_gg_.__withAccordion_lezzg_gg_):not([aria-hidden]){background-color:var(--intergalactic-table-td-cell-hover, #f0f0f4)}.___SRowGroup_lezzg_gg_:has(.___SCell_lezzg_gg_:hover)>.___SRow_lezzg_gg_._theme_muted_lezzg_gg_:not(.__isNonInteractive_lezzg_gg_):not([aria-hidden])>.___SCellWrapper_lezzg_gg_>.___SCell_lezzg_gg_[data-grouped-by=rowgroup]:not(.__theme_lezzg_gg_):not([aria-hidden]),.___SRowGroup_lezzg_gg_:has(.___SCell_lezzg_gg_:hover)>.___SRow_lezzg_gg_:not(.__isNonInteractive_lezzg_gg_):not([aria-hidden])>.___SCellWrapper_lezzg_gg_>.___SCell_lezzg_gg_[data-grouped-by=rowgroup]._theme_muted_lezzg_gg_:not([aria-hidden]),.___SRowGroup_lezzg_gg_:has(.___SCell_lezzg_gg_[data-grouped-by=rowgroup]:hover)>.___SRow_lezzg_gg_._theme_muted_lezzg_gg_:not(.__isNonInteractive_lezzg_gg_):not([aria-hidden])>.___SCellWrapper_lezzg_gg_>.___SCell_lezzg_gg_:not(.__theme_lezzg_gg_):not([aria-hidden]),.___SRowGroup_lezzg_gg_:has(.___SCell_lezzg_gg_[data-grouped-by=rowgroup]:hover)>.___SRow_lezzg_gg_:not(.__isNonInteractive_lezzg_gg_):not([aria-hidden])>.___SCellWrapper_lezzg_gg_>.___SCell_lezzg_gg_._theme_muted_lezzg_gg_:not([aria-hidden]),.___SRow_lezzg_gg_._theme_muted_lezzg_gg_:hover:not(.__expanded_lezzg_gg_.__isNonInteractive_lezzg_gg_):not([aria-hidden]):not(:has(.___SLimitOverlayCellWrapper_lezzg_gg_:hover))>.___SCellWrapper_lezzg_gg_>.___SCell_lezzg_gg_:not(.__theme_lezzg_gg_):not(.__expanded_lezzg_gg_.__withAccordion_lezzg_gg_):not([aria-hidden]),.___SRow_lezzg_gg_:hover:not(.__isNonInteractive_lezzg_gg_):not([aria-hidden]):not(:has(.___SLimitOverlayCellWrapper_lezzg_gg_:hover))>.___SCellWrapper_lezzg_gg_>.___SCell_lezzg_gg_._theme_muted_lezzg_gg_:not([aria-hidden]){background-color:var(--intergalactic-table-td-cell-active, #e6e7ed)}.___SRowGroup_lezzg_gg_:has(.___SCell_lezzg_gg_:hover)>.___SRow_lezzg_gg_._theme_info_lezzg_gg_:not(.__isNonInteractive_lezzg_gg_):not([aria-hidden])>.___SCellWrapper_lezzg_gg_>.___SCell_lezzg_gg_[data-grouped-by=rowgroup]:not(.__theme_lezzg_gg_):not([aria-hidden]),.___SRowGroup_lezzg_gg_:has(.___SCell_lezzg_gg_:hover)>.___SRow_lezzg_gg_:not(.__isNonInteractive_lezzg_gg_):not([aria-hidden])>.___SCellWrapper_lezzg_gg_>.___SCell_lezzg_gg_[data-grouped-by=rowgroup]._theme_info_lezzg_gg_:not([aria-hidden]),.___SRowGroup_lezzg_gg_:has(.___SCell_lezzg_gg_[data-grouped-by=rowgroup]:hover)>.___SRow_lezzg_gg_._theme_info_lezzg_gg_:not(.__isNonInteractive_lezzg_gg_):not([aria-hidden])>.___SCellWrapper_lezzg_gg_>.___SCell_lezzg_gg_:not(.__theme_lezzg_gg_):not([aria-hidden]),.___SRowGroup_lezzg_gg_:has(.___SCell_lezzg_gg_[data-grouped-by=rowgroup]:hover)>.___SRow_lezzg_gg_:not(.__isNonInteractive_lezzg_gg_):not([aria-hidden])>.___SCellWrapper_lezzg_gg_>.___SCell_lezzg_gg_._theme_info_lezzg_gg_:not([aria-hidden]),.___SRow_lezzg_gg_._theme_info_lezzg_gg_:hover:not(.__expanded_lezzg_gg_.__isNonInteractive_lezzg_gg_):not([aria-hidden]):not(:has(.___SLimitOverlayCellWrapper_lezzg_gg_:hover))>.___SCellWrapper_lezzg_gg_>.___SCell_lezzg_gg_:not(.__theme_lezzg_gg_):not(.__expanded_lezzg_gg_.__withAccordion_lezzg_gg_):not([aria-hidden]),.___SRow_lezzg_gg_:hover:not(.__isNonInteractive_lezzg_gg_):not([aria-hidden]):not(:has(.___SLimitOverlayCellWrapper_lezzg_gg_:hover))>.___SCellWrapper_lezzg_gg_>.___SCell_lezzg_gg_._theme_info_lezzg_gg_:not([aria-hidden]){background-color:var(--intergalactic-table-td-cell-selected-hover, #c4e5fe)}.___SRowGroup_lezzg_gg_:has(.___SCell_lezzg_gg_:hover)>.___SRow_lezzg_gg_._theme_success_lezzg_gg_:not(.__isNonInteractive_lezzg_gg_):not([aria-hidden])>.___SCellWrapper_lezzg_gg_>.___SCell_lezzg_gg_[data-grouped-by=rowgroup]:not(.__theme_lezzg_gg_):not(.__expanded_lezzg_gg_.__withAccordion_lezzg_gg_):not([aria-hidden]),.___SRowGroup_lezzg_gg_:has(.___SCell_lezzg_gg_:hover)>.___SRow_lezzg_gg_:not(.__isNonInteractive_lezzg_gg_):not([aria-hidden])>.___SCellWrapper_lezzg_gg_>.___SCell_lezzg_gg_[data-grouped-by=rowgroup]._theme_success_lezzg_gg_:not([aria-hidden]),.___SRowGroup_lezzg_gg_:has(.___SCell_lezzg_gg_[data-grouped-by=rowgroup]:hover)>.___SRow_lezzg_gg_._theme_success_lezzg_gg_:not(.__isNonInteractive_lezzg_gg_):not([aria-hidden])>.___SCellWrapper_lezzg_gg_>.___SCell_lezzg_gg_:not(.__theme_lezzg_gg_):not([aria-hidden]),.___SRowGroup_lezzg_gg_:has(.___SCell_lezzg_gg_[data-grouped-by=rowgroup]:hover)>.___SRow_lezzg_gg_:not(.__isNonInteractive_lezzg_gg_):not([aria-hidden])>.___SCellWrapper_lezzg_gg_>.___SCell_lezzg_gg_._theme_success_lezzg_gg_:not([aria-hidden]),.___SRow_lezzg_gg_._theme_success_lezzg_gg_:hover:not(.__expanded_lezzg_gg_.__isNonInteractive_lezzg_gg_):not([aria-hidden]):not(:has(.___SLimitOverlayCellWrapper_lezzg_gg_:hover))>.___SCellWrapper_lezzg_gg_>.___SCell_lezzg_gg_:not(.__theme_lezzg_gg_):not(.__expanded_lezzg_gg_.__withAccordion_lezzg_gg_):not([aria-hidden]),.___SRow_lezzg_gg_:hover:not(.__isNonInteractive_lezzg_gg_):not([aria-hidden]):not(:has(.___SLimitOverlayCellWrapper_lezzg_gg_:hover))>.___SCellWrapper_lezzg_gg_>.___SCell_lezzg_gg_._theme_success_lezzg_gg_:not([aria-hidden]){background-color:var(--intergalactic-table-td-cell-new-hover, #9ef2c9)}.___SRowGroup_lezzg_gg_:has(.___SCell_lezzg_gg_:hover)>.___SRow_lezzg_gg_._theme_warning_lezzg_gg_:not(.__isNonInteractive_lezzg_gg_):not([aria-hidden])>.___SCellWrapper_lezzg_gg_>.___SCell_lezzg_gg_[data-grouped-by=rowgroup]:not(.__theme_lezzg_gg_):not([aria-hidden]),.___SRowGroup_lezzg_gg_:has(.___SCell_lezzg_gg_:hover)>.___SRow_lezzg_gg_:not(.__isNonInteractive_lezzg_gg_):not([aria-hidden])>.___SCellWrapper_lezzg_gg_>.___SCell_lezzg_gg_[data-grouped-by=rowgroup]._theme_warning_lezzg_gg_:not([aria-hidden]),.___SRowGroup_lezzg_gg_:has(.___SCell_lezzg_gg_[data-grouped-by=rowgroup]:hover)>.___SRow_lezzg_gg_._theme_warning_lezzg_gg_:not(.__isNonInteractive_lezzg_gg_):not([aria-hidden])>.___SCellWrapper_lezzg_gg_>.___SCell_lezzg_gg_:not(.__theme_lezzg_gg_):not([aria-hidden]),.___SRowGroup_lezzg_gg_:has(.___SCell_lezzg_gg_[data-grouped-by=rowgroup]:hover)>.___SRow_lezzg_gg_:not(.__isNonInteractive_lezzg_gg_):not([aria-hidden])>.___SCellWrapper_lezzg_gg_>.___SCell_lezzg_gg_._theme_warning_lezzg_gg_:not([aria-hidden]),.___SRow_lezzg_gg_._theme_warning_lezzg_gg_:hover:not(.__expanded_lezzg_gg_.__isNonInteractive_lezzg_gg_):not([aria-hidden]):not(:has(.___SLimitOverlayCellWrapper_lezzg_gg_:hover))>.___SCellWrapper_lezzg_gg_>.___SCell_lezzg_gg_:not(.__theme_lezzg_gg_):not(.__expanded_lezzg_gg_.__withAccordion_lezzg_gg_):not([aria-hidden]),.___SRow_lezzg_gg_:hover:not(.__isNonInteractive_lezzg_gg_):not([aria-hidden]):not(:has(.___SLimitOverlayCellWrapper_lezzg_gg_:hover))>.___SCellWrapper_lezzg_gg_>.___SCell_lezzg_gg_._theme_warning_lezzg_gg_:not([aria-hidden]){background-color:var(--intergalactic-table-td-cell-warning-hover, #ffdca2)}.___SRowGroup_lezzg_gg_:has(.___SCell_lezzg_gg_:hover)>.___SRow_lezzg_gg_._theme_danger_lezzg_gg_:not(.__isNonInteractive_lezzg_gg_):not([aria-hidden])>.___SCellWrapper_lezzg_gg_>.___SCell_lezzg_gg_[data-grouped-by=rowgroup]:not(.__theme_lezzg_gg_):not([aria-hidden]),.___SRowGroup_lezzg_gg_:has(.___SCell_lezzg_gg_:hover)>.___SRow_lezzg_gg_:not(.__isNonInteractive_lezzg_gg_):not([aria-hidden])>.___SCellWrapper_lezzg_gg_>.___SCell_lezzg_gg_[data-grouped-by=rowgroup]._theme_danger_lezzg_gg_:not([aria-hidden]),.___SRowGroup_lezzg_gg_:has(.___SCell_lezzg_gg_[data-grouped-by=rowgroup]:hover)>.___SRow_lezzg_gg_._theme_danger_lezzg_gg_:not(.__isNonInteractive_lezzg_gg_):not([aria-hidden])>.___SCellWrapper_lezzg_gg_>.___SCell_lezzg_gg_:not(.__theme_lezzg_gg_):not([aria-hidden]),.___SRowGroup_lezzg_gg_:has(.___SCell_lezzg_gg_[data-grouped-by=rowgroup]:hover)>.___SRow_lezzg_gg_:not(.__isNonInteractive_lezzg_gg_):not([aria-hidden])>.___SCellWrapper_lezzg_gg_>.___SCell_lezzg_gg_._theme_danger_lezzg_gg_:not([aria-hidden]),.___SRow_lezzg_gg_._theme_danger_lezzg_gg_:hover:not(.__expanded_lezzg_gg_.__isNonInteractive_lezzg_gg_):not([aria-hidden]):not(:has(.___SLimitOverlayCellWrapper_lezzg_gg_:hover))>.___SCellWrapper_lezzg_gg_>.___SCell_lezzg_gg_:not(.__theme_lezzg_gg_):not(.__expanded_lezzg_gg_.__withAccordion_lezzg_gg_):not([aria-hidden]),.___SRow_lezzg_gg_:hover:not(.__isNonInteractive_lezzg_gg_):not([aria-hidden]):not(:has(.___SLimitOverlayCellWrapper_lezzg_gg_:hover))>.___SCellWrapper_lezzg_gg_>.___SCell_lezzg_gg_._theme_danger_lezzg_gg_:not([aria-hidden]){background-color:var(--intergalactic-table-td-cell-critical-hover, #ffd7df)}}.___SRow_lezzg_gg_._theme_muted_lezzg_gg_ .___SCell_lezzg_gg_:not(.__theme_lezzg_gg_):not(.__expanded_lezzg_gg_.__withAccordion_lezzg_gg_){background-color:var(--intergalactic-table-td-cell-unread, #f4f5f9)}.___SRow_lezzg_gg_._theme_muted_lezzg_gg_ .___SCell_lezzg_gg_.__expanded_lezzg_gg_.__withAccordion_lezzg_gg_:not(.__theme_lezzg_gg_),.___SRow_lezzg_gg_._theme_muted_lezzg_gg_.__active_lezzg_gg_>.___SCellWrapper_lezzg_gg_>.___SCell_lezzg_gg_:not(.__theme_lezzg_gg_){background-color:var(--intergalactic-table-td-cell-active, #e6e7ed)}.___SRow_lezzg_gg_._theme_info_lezzg_gg_ .___SCell_lezzg_gg_:not(.__theme_lezzg_gg_):not(.__expanded_lezzg_gg_.__withAccordion_lezzg_gg_){background-color:var(--intergalactic-table-td-cell-selected, #e9f7ff)}.___SRow_lezzg_gg_._theme_info_lezzg_gg_ .___SCell_lezzg_gg_.__expanded_lezzg_gg_.__withAccordion_lezzg_gg_:not(.__theme_lezzg_gg_),.___SRow_lezzg_gg_._theme_info_lezzg_gg_.__active_lezzg_gg_>.___SCellWrapper_lezzg_gg_>.___SCell_lezzg_gg_:not(.__theme_lezzg_gg_){background-color:var(--intergalactic-table-td-cell-selected-active, #c4e5fe)}.___SRow_lezzg_gg_._theme_success_lezzg_gg_ .___SCell_lezzg_gg_:not(.__theme_lezzg_gg_):not(.__expanded_lezzg_gg_.__withAccordion_lezzg_gg_){background-color:var(--intergalactic-table-td-cell-new, #dbfee8)}.___SRow_lezzg_gg_._theme_success_lezzg_gg_ .___SCell_lezzg_gg_.__expanded_lezzg_gg_.__withAccordion_lezzg_gg_:not(.__theme_lezzg_gg_),.___SRow_lezzg_gg_._theme_success_lezzg_gg_.__active_lezzg_gg_>.___SCellWrapper_lezzg_gg_>.___SCell_lezzg_gg_:not(.__theme_lezzg_gg_){background-color:var(--intergalactic-table-td-cell-new-active, #9ef2c9)}.___SRow_lezzg_gg_._theme_warning_lezzg_gg_ .___SCell_lezzg_gg_:not(.__theme_lezzg_gg_):not(.__expanded_lezzg_gg_.__withAccordion_lezzg_gg_){background-color:var(--intergalactic-table-td-cell-warning, #fff3d9)}.___SRow_lezzg_gg_._theme_warning_lezzg_gg_ .___SCell_lezzg_gg_.__expanded_lezzg_gg_.__withAccordion_lezzg_gg_:not(.__theme_lezzg_gg_),.___SRow_lezzg_gg_._theme_warning_lezzg_gg_.__active_lezzg_gg_>.___SCellWrapper_lezzg_gg_>.___SCell_lezzg_gg_:not(.__theme_lezzg_gg_){background-color:var(--intergalactic-table-td-cell-warning-active, #ffdca2)}.___SRow_lezzg_gg_._theme_danger_lezzg_gg_ .___SCell_lezzg_gg_:not(.__theme_lezzg_gg_):not(.__expanded_lezzg_gg_.__withAccordion_lezzg_gg_){background-color:var(--intergalactic-table-td-cell-critical, #fff0f7)}.___SRow_lezzg_gg_._theme_danger_lezzg_gg_ .___SCell_lezzg_gg_.__expanded_lezzg_gg_.__withAccordion_lezzg_gg_:not(.__theme_lezzg_gg_),.___SRow_lezzg_gg_._theme_danger_lezzg_gg_.__active_lezzg_gg_>.___SCellWrapper_lezzg_gg_>.___SCell_lezzg_gg_:not(.__theme_lezzg_gg_){background-color:var(--intergalactic-table-td-cell-critical-active, #ffd7df)}.___SCell_lezzg_gg_{display:flex;height:100%;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);white-space:pre-wrap;word-break:break-word;font-feature-settings:"tnum";font-variant-numeric:tabular-nums;transition:width calc(var(--intergalactic-duration-extra-fast, 100)*1ms) ease-in-out;outline:0;overflow:hidden}.___SCell_lezzg_gg_ .___SAccordionToggle_lezzg_gg_{margin-top:var(--intergalactic-spacing-05x, 2px);margin-right:var(--intergalactic-spacing-3x, 12px);margin-left:calc(var(--intergalactic-spacing-05x, 2px)*-1);height:-moz-fit-content;height:fit-content}.___SCell_lezzg_gg_ .___SAccordionToggle_lezzg_gg_ svg{transition:transform calc(var(--intergalactic-duration-accordion, 200)*1ms) ease-out}.___SCell_lezzg_gg_ .___SAccordionToggle_lezzg_gg_.__expanded_lezzg_gg_ svg{transform:rotate(90deg)}.___SCell_lezzg_gg_.__withoutBorder_lezzg_gg_{border-bottom:none}.___SCell_lezzg_gg_.__withAccordion_lezzg_gg_,.___SCell_lezzg_gg_._name_Symbol\\(SELECT_ALL\\)_lezzg_gg_,.___SRow_lezzg_gg_._accordionType_row_lezzg_gg_>.___SCellWrapper_lezzg_gg_>.___SCell_lezzg_gg_{cursor:pointer}.___SCheckboxCell_lezzg_gg_[aria-hidden]{filter:blur(3px);pointer-events:none}.___SCell_lezzg_gg_._use_primary_lezzg_gg_{padding:var(--intergalactic-spacing-3x, 12px);min-height:45px;background-color:var(--intergalactic-bg-primary-neutral, #ffffff)}.___SCell_lezzg_gg_._use_primary_lezzg_gg_[data-aria-level]{padding-left:calc(var(--intergalactic-spacing-3x, 12px) + ((var(--intergalactic-spacing-5x, 20px) + var(--intergalactic-spacing-1x, 4px) + var(--intergalactic-spacing-05x, 2px))*(var(--data-aria-level_lezzg) - 1)))}.___SCell_lezzg_gg_._use_secondary_lezzg_gg_{padding:var(--intergalactic-spacing-2x, 8px);min-height:37px;background-color:var(--intergalactic-bg-primary-neutral, #ffffff)}.___SCell_lezzg_gg_._use_secondary_lezzg_gg_[data-aria-level]{padding-left:calc(var(--intergalactic-spacing-2x, 8px) + ((var(--intergalactic-spacing-5x, 20px) + var(--intergalactic-spacing-1x, 4px) + var(--intergalactic-spacing-05x, 2px))*(var(--data-aria-level_lezzg) - 1)))}.___SCell_lezzg_gg_._borders_both_lezzg_gg_,.___SCell_lezzg_gg_._borders_left_lezzg_gg_{border-left:1px solid var(--intergalactic-border-secondary, #e0e1e9)}.___SCell_lezzg_gg_._borders_both_lezzg_gg_,.___SCell_lezzg_gg_._borders_right_lezzg_gg_{border-right:1px solid var(--intergalactic-border-secondary, #e0e1e9)}.___SCellWrapper_lezzg_gg_.__fixed_lezzg_gg_{position:sticky;z-index:2}.___SCell_lezzg_gg_._theme_muted_lezzg_gg_{background-color:var(--intergalactic-table-td-cell-unread, #f4f5f9)}.___SCell_lezzg_gg_._theme_info_lezzg_gg_{background-color:var(--intergalactic-table-td-cell-selected, #e9f7ff)}.___SCell_lezzg_gg_._theme_success_lezzg_gg_{background-color:var(--intergalactic-table-td-cell-new, #dbfee8)}.___SCell_lezzg_gg_._theme_warning_lezzg_gg_{background-color:var(--intergalactic-table-td-cell-warning, #fff3d9)}.___SCell_lezzg_gg_._theme_danger_lezzg_gg_{background-color:var(--intergalactic-table-td-cell-critical, #fff0f7)}.___SSpinContainer_lezzg_gg_{position:absolute;left:0;right:0;bottom:0;top:0;display:flex;align-items:center;justify-content:center;background-color:var(--intergalactic-overlay-limitation-secondary, rgba(255, 255, 255, 0.85));z-index:15}.___SSpinContainer_lezzg_gg_:focus-visible{z-index:15}.___SSpinContainer_lezzg_gg_.__headerHeight_lezzg_gg_{top:var(--headerHeight_lezzg)}.___SEmptyData_lezzg_gg_{grid-column:1/-1}.___SCollapseRow_lezzg_gg_._sideIndents_wide_lezzg_gg_ .___SCellWrapper_lezzg_gg_:first-child .___SCell_lezzg_gg_,.___SRow_lezzg_gg_._sideIndents_wide_lezzg_gg_ .___SCellWrapper_lezzg_gg_:first-child .___SCell_lezzg_gg_{padding-left:var(--intergalactic-spacing-5x, 20px)}.___SCollapseRow_lezzg_gg_._sideIndents_wide_lezzg_gg_ .___SCellWrapper_lezzg_gg_:first-child .___SCell_lezzg_gg_[data-aria-level],.___SRow_lezzg_gg_._sideIndents_wide_lezzg_gg_ .___SCellWrapper_lezzg_gg_:first-child .___SCell_lezzg_gg_[data-aria-level]{padding-left:calc(var(--intergalactic-spacing-5x, 20px) + ((var(--intergalactic-spacing-5x, 20px) + var(--intergalactic-spacing-1x, 4px) + var(--intergalactic-spacing-05x, 2px))*(var(--data-aria-level_lezzg) - 1)))}.___SCollapseRow_lezzg_gg_._sideIndents_wide_lezzg_gg_ .___SCellWrapper_lezzg_gg_:last-child .___SCell_lezzg_gg_,.___SRow_lezzg_gg_._sideIndents_wide_lezzg_gg_ .___SCellWrapper_lezzg_gg_:last-child .___SCell_lezzg_gg_{padding-right:var(--intergalactic-spacing-5x, 20px)}.___SRow_lezzg_gg_.__isAccordionRow_lezzg_gg_.__withAnimation_lezzg_gg_>.___SCellWrapper_lezzg_gg_{transition-property:height;transition-delay:var(--delay_lezzg);transition-duration:var(--duration_lezzg);transition-timing-function:linear;overflow:clip}.___SCellWrapper_lezzg_gg_.__fixed_lezzg_gg_.__shadowVertical_lezzg_gg_:after{content:"";position:absolute;pointer-events:none;display:none;top:0;width:5px;height:100%;z-index:5}.___SCellWrapper_lezzg_gg_._fixed_left_lezzg_gg_._shadowVertical_median_lezzg_gg_,.___SCellWrapper_lezzg_gg_._fixed_left_lezzg_gg_._shadowVertical_start_lezzg_gg_{margin-right:-5px}.___SCellWrapper_lezzg_gg_._fixed_left_lezzg_gg_._shadowVertical_median_lezzg_gg_:after,.___SCellWrapper_lezzg_gg_._fixed_left_lezzg_gg_._shadowVertical_start_lezzg_gg_:after{display:block;right:0;background:var(--intergalactic-scroll-area-shadow-left,\n linear-gradient(to right, rgba(25, 27, 35, 0.1) 20.55%, rgba(255, 255, 255, 0.0001) 100%))}.___SCellWrapper_lezzg_gg_._fixed_left_lezzg_gg_._shadowVertical_median_lezzg_gg_ .___SCell_lezzg_gg_,.___SCellWrapper_lezzg_gg_._fixed_left_lezzg_gg_._shadowVertical_start_lezzg_gg_ .___SCell_lezzg_gg_{margin-right:5px}.___SCellWrapper_lezzg_gg_._fixed_right_lezzg_gg_._shadowVertical_end_lezzg_gg_,.___SCellWrapper_lezzg_gg_._fixed_right_lezzg_gg_._shadowVertical_median_lezzg_gg_{margin-left:-5px}.___SCellWrapper_lezzg_gg_._fixed_right_lezzg_gg_._shadowVertical_end_lezzg_gg_:after,.___SCellWrapper_lezzg_gg_._fixed_right_lezzg_gg_._shadowVertical_median_lezzg_gg_:after{display:block;left:0;background:var(--intergalactic-scroll-area-shadow-right,\n linear-gradient(to left, rgba(25, 27, 35, 0.1) 20.55%, rgba(255, 255, 255, 0.0001) 100%))}.___SCellWrapper_lezzg_gg_._fixed_right_lezzg_gg_._shadowVertical_end_lezzg_gg_ .___SCell_lezzg_gg_,.___SCellWrapper_lezzg_gg_._fixed_right_lezzg_gg_._shadowVertical_median_lezzg_gg_ .___SCell_lezzg_gg_{margin-left:5px}.___SLimitOverlayCellWrapper_lezzg_gg_.__gridArea_lezzg_gg_{width:100%;height:100%;align-items:center;justify-content:center;z-index:16;grid-area:var(--gridArea_lezzg);-webkit-backdrop-filter:blur(6px);backdrop-filter:blur(6px)}.___SLimitOverlayCellWrapper_lezzg_gg_.__left_lezzg_gg_{position:sticky;left:var(---left_lezzg)}.___SCell_lezzg_gg_.__innerOutline_lezzg_gg_:focus-visible{transition:none}',
|
|
31
27
|
/*__inner_css_end__*/
|
|
32
|
-
"
|
|
28
|
+
"lezzg_gg_"
|
|
33
29
|
), /*__reshadow_css_end__*/
|
|
34
30
|
{
|
|
35
|
-
"__SBody": "
|
|
36
|
-
"__SRow": "
|
|
37
|
-
"__SRowGroup": "
|
|
38
|
-
"__SAccordionRows": "
|
|
39
|
-
"_gridArea": "
|
|
40
|
-
"__SCellWrapper": "
|
|
41
|
-
"__SCollapseRow": "
|
|
42
|
-
"--gridArea": "--
|
|
43
|
-
"_isAccordionRow": "
|
|
44
|
-
"__SCell": "
|
|
45
|
-
"_withoutBorder": "
|
|
46
|
-
"_active": "
|
|
47
|
-
"_theme": "
|
|
48
|
-
"_accordionType_row": "
|
|
49
|
-
"_expanded": "
|
|
50
|
-
"_withAccordion": "
|
|
51
|
-
"_isNonInteractive": "
|
|
52
|
-
"
|
|
53
|
-
"
|
|
54
|
-
"
|
|
55
|
-
"
|
|
56
|
-
"
|
|
57
|
-
"
|
|
58
|
-
"
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
-
"
|
|
62
|
-
"
|
|
63
|
-
"
|
|
64
|
-
"
|
|
65
|
-
"
|
|
66
|
-
"
|
|
67
|
-
"
|
|
68
|
-
"
|
|
69
|
-
"
|
|
70
|
-
"--
|
|
71
|
-
"
|
|
72
|
-
"
|
|
73
|
-
"
|
|
74
|
-
"
|
|
75
|
-
"
|
|
76
|
-
"
|
|
77
|
-
"
|
|
78
|
-
"
|
|
79
|
-
"
|
|
80
|
-
"
|
|
31
|
+
"__SBody": "___SBody_lezzg_gg_",
|
|
32
|
+
"__SRow": "___SRow_lezzg_gg_",
|
|
33
|
+
"__SRowGroup": "___SRowGroup_lezzg_gg_",
|
|
34
|
+
"__SAccordionRows": "___SAccordionRows_lezzg_gg_",
|
|
35
|
+
"_gridArea": "__gridArea_lezzg_gg_",
|
|
36
|
+
"__SCellWrapper": "___SCellWrapper_lezzg_gg_",
|
|
37
|
+
"__SCollapseRow": "___SCollapseRow_lezzg_gg_",
|
|
38
|
+
"--gridArea": "--gridArea_lezzg",
|
|
39
|
+
"_isAccordionRow": "__isAccordionRow_lezzg_gg_",
|
|
40
|
+
"__SCell": "___SCell_lezzg_gg_",
|
|
41
|
+
"_withoutBorder": "__withoutBorder_lezzg_gg_",
|
|
42
|
+
"_active": "__active_lezzg_gg_",
|
|
43
|
+
"_theme": "__theme_lezzg_gg_",
|
|
44
|
+
"_accordionType_row": "_accordionType_row_lezzg_gg_",
|
|
45
|
+
"_expanded": "__expanded_lezzg_gg_",
|
|
46
|
+
"_withAccordion": "__withAccordion_lezzg_gg_",
|
|
47
|
+
"_isNonInteractive": "__isNonInteractive_lezzg_gg_",
|
|
48
|
+
"__SLimitOverlayCellWrapper": "___SLimitOverlayCellWrapper_lezzg_gg_",
|
|
49
|
+
"_theme_muted": "_theme_muted_lezzg_gg_",
|
|
50
|
+
"_theme_info": "_theme_info_lezzg_gg_",
|
|
51
|
+
"_theme_success": "_theme_success_lezzg_gg_",
|
|
52
|
+
"_theme_warning": "_theme_warning_lezzg_gg_",
|
|
53
|
+
"_theme_danger": "_theme_danger_lezzg_gg_",
|
|
54
|
+
"_name_Symbol(SELECT_ALL)": "_name_Symbol(SELECT_ALL)_lezzg_gg_",
|
|
55
|
+
"__SCheckboxCell": "___SCheckboxCell_lezzg_gg_",
|
|
56
|
+
"_borders_both": "_borders_both_lezzg_gg_",
|
|
57
|
+
"_borders_left": "_borders_left_lezzg_gg_",
|
|
58
|
+
"_borders_right": "_borders_right_lezzg_gg_",
|
|
59
|
+
"_fixed": "__fixed_lezzg_gg_",
|
|
60
|
+
"__SSpinContainer": "___SSpinContainer_lezzg_gg_",
|
|
61
|
+
"_headerHeight": "__headerHeight_lezzg_gg_",
|
|
62
|
+
"--headerHeight": "--headerHeight_lezzg",
|
|
63
|
+
"__SEmptyData": "___SEmptyData_lezzg_gg_",
|
|
64
|
+
"_withAnimation": "__withAnimation_lezzg_gg_",
|
|
65
|
+
"--delay": "--delay_lezzg",
|
|
66
|
+
"--duration": "--duration_lezzg",
|
|
67
|
+
"_left": "__left_lezzg_gg_",
|
|
68
|
+
"---left": "---left_lezzg",
|
|
69
|
+
"_innerOutline": "__innerOutline_lezzg_gg_",
|
|
70
|
+
"_compact": "__compact_lezzg_gg_",
|
|
71
|
+
"--data-aria-level": "--data-aria-level_lezzg",
|
|
72
|
+
"_sideIndents_wide": "_sideIndents_wide_lezzg_gg_",
|
|
73
|
+
"__SAccordionToggle": "___SAccordionToggle_lezzg_gg_",
|
|
74
|
+
"_use_primary": "_use_primary_lezzg_gg_",
|
|
75
|
+
"_use_secondary": "_use_secondary_lezzg_gg_",
|
|
76
|
+
"_shadowVertical": "__shadowVertical_lezzg_gg_",
|
|
77
|
+
"_fixed_left": "_fixed_left_lezzg_gg_",
|
|
78
|
+
"_shadowVertical_median": "_shadowVertical_median_lezzg_gg_",
|
|
79
|
+
"_shadowVertical_start": "_shadowVertical_start_lezzg_gg_",
|
|
80
|
+
"_fixed_right": "_fixed_right_lezzg_gg_",
|
|
81
|
+
"_shadowVertical_end": "_shadowVertical_end_lezzg_gg_"
|
|
81
82
|
})
|
|
82
83
|
);
|
|
83
84
|
var RowRoot = /* @__PURE__ */ function(_Component) {
|
|
@@ -139,8 +140,8 @@ var RowRoot = /* @__PURE__ */ function(_Component) {
|
|
|
139
140
|
}
|
|
140
141
|
});
|
|
141
142
|
if (previousRows.size > 0) {
|
|
142
|
-
_toConsumableArray(previousRows.entries()).forEach(function(
|
|
143
|
-
var
|
|
143
|
+
_toConsumableArray(previousRows.entries()).forEach(function(_ref4) {
|
|
144
|
+
var _ref5 = _slicedToArray(_ref4, 2), uniqKey = _ref5[0], previousRow = _ref5[1];
|
|
144
145
|
if (!_this.state.expandedForAnimation) {
|
|
145
146
|
setTimeout(function() {
|
|
146
147
|
var _this$asProps$compone;
|
|
@@ -231,7 +232,7 @@ var RowRoot = /* @__PURE__ */ function(_Component) {
|
|
|
231
232
|
key: "getCellProps",
|
|
232
233
|
value: function getCellProps(props) {
|
|
233
234
|
var _props$children, _value3, _this3 = this;
|
|
234
|
-
var _this$asProps8 = this.asProps, use = _this$asProps8.use, renderCell = _this$asProps8.renderCell, expandedRows = _this$asProps8.expandedRows, styles = _this$asProps8.styles, getI18nText = _this$asProps8.getI18nText, virtualScroll = _this$asProps8.virtualScroll, tableRef = _this$asProps8.tableRef, accordionDuration = _this$asProps8.accordionDuration, onCellClick = _this$asProps8.onCellClick, rawData = _this$asProps8.rawData, shadowVertical = _this$asProps8.shadowVertical, flatRows = _this$asProps8.flatRows, variant = _this$asProps8.variant, isAccordionRow = _this$asProps8.isAccordionRow, accordionRowIndex = _this$asProps8.accordionRowIndex;
|
|
235
|
+
var _this$asProps8 = this.asProps, use = _this$asProps8.use, renderCell = _this$asProps8.renderCell, expandedRows = _this$asProps8.expandedRows, styles = _this$asProps8.styles, getI18nText = _this$asProps8.getI18nText, virtualScroll = _this$asProps8.virtualScroll, tableRef = _this$asProps8.tableRef, accordionDuration = _this$asProps8.accordionDuration, onCellClick = _this$asProps8.onCellClick, rawData = _this$asProps8.rawData, shadowVertical = _this$asProps8.shadowVertical, flatRows = _this$asProps8.flatRows, variant = _this$asProps8.variant, isAccordionRow = _this$asProps8.isAccordionRow, accordionRowIndex = _this$asProps8.accordionRowIndex, selectedRows = _this$asProps8.selectedRows;
|
|
235
236
|
var SAccordionToggle = ButtonLink;
|
|
236
237
|
var dataKey = props.column.name;
|
|
237
238
|
var cellValue = props.row[dataKey];
|
|
@@ -301,7 +302,8 @@ var RowRoot = /* @__PURE__ */ function(_Component) {
|
|
|
301
302
|
}
|
|
302
303
|
}
|
|
303
304
|
}
|
|
304
|
-
|
|
305
|
+
var firstColumnIndex = selectedRows ? 1 : 0;
|
|
306
|
+
if (props.columnIndex === firstColumnIndex && props.row[ACCORDION] || (_value3 = value) !== null && _value3 !== void 0 && _value3[ACCORDION] || cellValue instanceof MergedRowsCell && cellValue.accordion) {
|
|
305
307
|
var _ref2, _value4;
|
|
306
308
|
var expanded = (expandedRows === null || expandedRows === void 0 ? void 0 : expandedRows.has(props.row[UNIQ_ROW_KEY])) && !this.state.expandedForAnimation;
|
|
307
309
|
extraProps.expanded = expanded;
|
|
@@ -336,16 +338,24 @@ var RowRoot = /* @__PURE__ */ function(_Component) {
|
|
|
336
338
|
}
|
|
337
339
|
return extraProps;
|
|
338
340
|
}
|
|
341
|
+
}, {
|
|
342
|
+
key: "isRowHidden",
|
|
343
|
+
get: function get() {
|
|
344
|
+
var _this$asProps9 = this.asProps, rowIndex = _this$asProps9.rowIndex, limit = _this$asProps9.limit;
|
|
345
|
+
var rowsLimit = limit === null || limit === void 0 ? void 0 : limit.fromRow;
|
|
346
|
+
var columnsLimit = limit === null || limit === void 0 ? void 0 : limit.fromColumn;
|
|
347
|
+
return rowsLimit !== void 0 && !columnsLimit && rowIndex > rowsLimit ? true : void 0;
|
|
348
|
+
}
|
|
339
349
|
}, {
|
|
340
350
|
key: "render",
|
|
341
351
|
value: function render() {
|
|
342
|
-
var _ref = this.asProps, _ref3, _this4 = this;
|
|
352
|
+
var _ref = this.asProps, _ref3, _this4 = this, _limit$fromRow;
|
|
343
353
|
var SRow = Box;
|
|
344
354
|
var SCollapseRow = Collapse;
|
|
345
355
|
var SAccordionRows = Box;
|
|
346
356
|
var SCell = Row.Cell;
|
|
347
357
|
var SCheckboxCell = Row.Cell;
|
|
348
|
-
var _this$
|
|
358
|
+
var _this$asProps0 = this.asProps, columns = _this$asProps0.columns, row = _this$asProps0.row, rows = _this$asProps0.rows, styles = _this$asProps0.styles, rowIndex = _this$asProps0.rowIndex, gridRowIndex = _this$asProps0.gridRowIndex, _this$asProps0$ariaL = _this$asProps0["aria-level"], ariaLevel = _this$asProps0$ariaL === void 0 ? 1 : _this$asProps0$ariaL, selectedRows = _this$asProps0.selectedRows, expandedRows = _this$asProps0.expandedRows, uid = _this$asProps0.uid, getFixedStyle = _this$asProps0.getFixedStyle, mergedRow = _this$asProps0.mergedRow, isAccordionRow = _this$asProps0.isAccordionRow, animationExpand = _this$asProps0.animationExpand, accordionRowIndex = _this$asProps0.accordionRowIndex, accordionDuration = _this$asProps0.accordionDuration, use = _this$asProps0.use, shadowVertical = _this$asProps0.shadowVertical, variant = _this$asProps0.variant, flatRows = _this$asProps0.flatRows, sideIndents = _this$asProps0.sideIndents, renderCell = _this$asProps0.renderCell, rawData = _this$asProps0.rawData, limit = _this$asProps0.limit, hasGroups = _this$asProps0.hasGroups, tableRef = _this$asProps0.tableRef, scrollAreaRef = _this$asProps0.scrollAreaRef;
|
|
349
359
|
var _this$state = this.state, expandedForAnimation = _this$state.expandedForAnimation, withAnimation = _this$state.withAnimation;
|
|
350
360
|
var expanded = (expandedRows === null || expandedRows === void 0 ? void 0 : expandedRows.has(row[UNIQ_ROW_KEY])) && !expandedForAnimation;
|
|
351
361
|
var accordionRows = Array.isArray(row[ACCORDION]) ? row[ACCORDION] : void 0;
|
|
@@ -353,10 +363,10 @@ var RowRoot = /* @__PURE__ */ function(_Component) {
|
|
|
353
363
|
var accordionType = (accordionRows || accordionComponent) && !mergedRow ? "row" : void 0;
|
|
354
364
|
if (!accordionRows && !accordionComponent) {
|
|
355
365
|
var cells = Object.entries(row);
|
|
356
|
-
var foundCell = cells.find(function(
|
|
357
|
-
var
|
|
358
|
-
|
|
359
|
-
var value2 =
|
|
366
|
+
var foundCell = cells.find(function(_ref6) {
|
|
367
|
+
var _ref7 = _slicedToArray(_ref6, 2);
|
|
368
|
+
_ref7[0];
|
|
369
|
+
var value2 = _ref7[1];
|
|
360
370
|
return _this4.cellHasAccordion(value2) || value2 instanceof MergedRowsCell && value2.accordion;
|
|
361
371
|
});
|
|
362
372
|
if (foundCell) {
|
|
@@ -381,6 +391,8 @@ var RowRoot = /* @__PURE__ */ function(_Component) {
|
|
|
381
391
|
}
|
|
382
392
|
var rowUniqKey = row[UNIQ_ROW_KEY];
|
|
383
393
|
var accordionId = "".concat(uid, "_").concat(rowUniqKey);
|
|
394
|
+
var rowsLimit = limit === null || limit === void 0 ? void 0 : limit.fromRow;
|
|
395
|
+
var columnsLimit = limit === null || limit === void 0 ? void 0 : limit.fromColumn;
|
|
384
396
|
return _ref3 = sstyled(styles), /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(SRow, _ref3.cn("SRow", _objectSpread({}, assignProps({
|
|
385
397
|
"ref": this.rowElementRef,
|
|
386
398
|
"role": "row",
|
|
@@ -388,29 +400,44 @@ var RowRoot = /* @__PURE__ */ function(_Component) {
|
|
|
388
400
|
"theme": selectedRows !== null && selectedRows !== void 0 && selectedRows.includes(rowUniqKey) ? "info" : void 0,
|
|
389
401
|
"use:expanded": expanded && !mergedRow,
|
|
390
402
|
"onClick": this.handleClickRow(row),
|
|
391
|
-
"withAnimation": withAnimation
|
|
403
|
+
"withAnimation": withAnimation,
|
|
404
|
+
"aria-hidden": this.isRowHidden
|
|
392
405
|
}, _ref))), columns.map(function(column, i) {
|
|
406
|
+
var index = i;
|
|
407
|
+
var cellValue = row[column.name];
|
|
408
|
+
var withAccordion = Boolean(cellValue instanceof MergedRowsCell && cellValue.accordion) || _this4.cellHasAccordion(cellValue) || accordionType === "row";
|
|
409
|
+
var isCellHidden = void 0;
|
|
410
|
+
if (limit) {
|
|
411
|
+
if (rowsLimit !== void 0 && columnsLimit !== void 0) {
|
|
412
|
+
isCellHidden = rowIndex >= rowsLimit && i >= columnsLimit ? true : void 0;
|
|
413
|
+
} else if (rowsLimit === void 0 && columnsLimit !== void 0) {
|
|
414
|
+
isCellHidden = rowIndex >= 0 && i >= columnsLimit ? true : void 0;
|
|
415
|
+
} else if (rowsLimit !== void 0 && columnsLimit === void 0) {
|
|
416
|
+
isCellHidden = rowIndex >= rowsLimit ? true : void 0;
|
|
417
|
+
}
|
|
418
|
+
}
|
|
393
419
|
if (selectedRows && i === 0 && row[IS_EMPTY_DATA_ROW] !== true) {
|
|
394
|
-
var _ref4;
|
|
395
420
|
var checked = selectedRows.includes(rowUniqKey);
|
|
396
|
-
return
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
421
|
+
return /* @__PURE__ */ React.createElement(SCheckboxCell, {
|
|
422
|
+
key: i,
|
|
423
|
+
row,
|
|
424
|
+
rowIndex,
|
|
425
|
+
column: {
|
|
401
426
|
name: SELECT_ALL.toString()
|
|
402
427
|
},
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
428
|
+
columnIndex: 0,
|
|
429
|
+
gridRowIndex,
|
|
430
|
+
onClick: _this4.handleClickCheckbox(!checked),
|
|
431
|
+
expanded,
|
|
432
|
+
withAccordion,
|
|
433
|
+
isAccordionRow,
|
|
434
|
+
"aria-hidden": isCellHidden
|
|
435
|
+
}, /* @__PURE__ */ React.createElement(Checkbox, {
|
|
436
|
+
checked,
|
|
408
437
|
"aria-labelledby": "".concat(uid, "_").concat(rowUniqKey, "_1"),
|
|
409
|
-
|
|
410
|
-
}
|
|
438
|
+
onChange: _this4.handleSelectRow
|
|
439
|
+
}, /* @__PURE__ */ React.createElement(Checkbox.Value, null)));
|
|
411
440
|
}
|
|
412
|
-
var index = i;
|
|
413
|
-
var cellValue = row[column.name];
|
|
414
441
|
if (cellValue === void 0) {
|
|
415
442
|
return null;
|
|
416
443
|
}
|
|
@@ -432,13 +459,23 @@ var RowRoot = /* @__PURE__ */ function(_Component) {
|
|
|
432
459
|
columnIndex: index,
|
|
433
460
|
style: style2,
|
|
434
461
|
column,
|
|
435
|
-
|
|
462
|
+
expanded,
|
|
463
|
+
withAccordion,
|
|
436
464
|
isAccordionRow,
|
|
437
465
|
animationExpand,
|
|
438
466
|
accordionRowIndex,
|
|
439
|
-
rows
|
|
467
|
+
rows,
|
|
468
|
+
"aria-hidden": isCellHidden
|
|
440
469
|
});
|
|
441
|
-
})
|
|
470
|
+
}), limit && ((_limit$fromRow = limit.fromRow) !== null && _limit$fromRow !== void 0 ? _limit$fromRow : 0) === rowIndex && !isAccordionRow && /* @__PURE__ */ React.createElement(LimitOverlay, _ref3.cn("LimitOverlay", {
|
|
471
|
+
"columns": columns,
|
|
472
|
+
"rows": rows,
|
|
473
|
+
"limit": limit,
|
|
474
|
+
"flatRows": flatRows,
|
|
475
|
+
"hasGroups": hasGroups,
|
|
476
|
+
"tableRef": tableRef,
|
|
477
|
+
"scrollAreaRef": scrollAreaRef
|
|
478
|
+
}))), /* @__PURE__ */ React.isValidElement(accordionComponent) && /* @__PURE__ */ React.createElement(SCollapseRow, _ref3.cn("SCollapseRow", {
|
|
442
479
|
"key": rowIndex,
|
|
443
480
|
"role": "row",
|
|
444
481
|
"id": accordionId,
|
|
@@ -446,10 +483,12 @@ var RowRoot = /* @__PURE__ */ function(_Component) {
|
|
|
446
483
|
"aria-hidden": !expanded,
|
|
447
484
|
"interactive": true,
|
|
448
485
|
"gridArea": accordionDataGridArea,
|
|
449
|
-
"duration": accordionDuration !== null && accordionDuration !== void 0 ? accordionDuration : 200
|
|
486
|
+
"duration": accordionDuration !== null && accordionDuration !== void 0 ? accordionDuration : 200,
|
|
487
|
+
"sideIndents": sideIndents
|
|
450
488
|
}), /* @__PURE__ */ React.createElement(SCell, _ref3.cn("SCell", {
|
|
451
489
|
"aria-colindex": 1,
|
|
452
490
|
"aria-level": ariaLevel + 1,
|
|
491
|
+
"data-aria-level": 1,
|
|
453
492
|
"aria-setsize": 1,
|
|
454
493
|
"aria-posinset": 1,
|
|
455
494
|
"accordionRowIndex": 0,
|
|
@@ -489,7 +528,8 @@ var RowRoot = /* @__PURE__ */ function(_Component) {
|
|
|
489
528
|
flatRows,
|
|
490
529
|
sideIndents,
|
|
491
530
|
renderCell,
|
|
492
|
-
rawData
|
|
531
|
+
rawData,
|
|
532
|
+
limit
|
|
493
533
|
});
|
|
494
534
|
})));
|
|
495
535
|
}
|