@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
|
@@ -1,76 +1,76 @@
|
|
|
1
1
|
import _objectSpread from "@babel/runtime/helpers/esm/objectSpread2";
|
|
2
2
|
import _classCallCheck from "@babel/runtime/helpers/esm/classCallCheck";
|
|
3
3
|
import _createClass from "@babel/runtime/helpers/esm/createClass";
|
|
4
|
-
import
|
|
5
|
-
import _isNativeReflectConstruct from "@babel/runtime/helpers/esm/isNativeReflectConstruct";
|
|
6
|
-
import _getPrototypeOf from "@babel/runtime/helpers/esm/getPrototypeOf";
|
|
4
|
+
import _callSuper from "@babel/runtime/helpers/esm/callSuper";
|
|
7
5
|
import _inherits from "@babel/runtime/helpers/esm/inherits";
|
|
8
6
|
import _defineProperty from "@babel/runtime/helpers/esm/defineProperty";
|
|
9
7
|
import { createComponent, sstyled, assignProps, Component } from "@semcore/core";
|
|
10
8
|
import { Box, Flex } from "@semcore/base-components";
|
|
11
|
-
import { getFocusableIn } from "@semcore/core/lib/utils/focus-lock/getFocusableIn";
|
|
12
9
|
import { isFocusInside } from "@semcore/core/lib/utils/focus-lock/isFocusInside";
|
|
13
10
|
import * as React from "react";
|
|
14
11
|
import { MergedColumnsCell, MergedRowsCell } from "./MergedCells.mjs";
|
|
15
|
-
|
|
16
|
-
return o = _getPrototypeOf(o), _possibleConstructorReturn(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], _getPrototypeOf(t).constructor) : o.apply(t, e));
|
|
17
|
-
}
|
|
12
|
+
import { handleKeydownFocusCell, handleFocusCell } from "../../enhancers/focusableCell.mjs";
|
|
18
13
|
/*!__reshadow-styles__:"./style.shadow.css"*/
|
|
19
14
|
var style = (
|
|
20
15
|
/*__reshadow_css_start__*/
|
|
21
16
|
(sstyled.insert(
|
|
22
17
|
/*__inner_css_start__*/
|
|
23
|
-
'.___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}',
|
|
18
|
+
'.___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}',
|
|
24
19
|
/*__inner_css_end__*/
|
|
25
|
-
"
|
|
20
|
+
"lezzg_gg_"
|
|
26
21
|
), /*__reshadow_css_end__*/
|
|
27
22
|
{
|
|
28
|
-
"__SBody": "
|
|
29
|
-
"__SRow": "
|
|
30
|
-
"__SRowGroup": "
|
|
31
|
-
"__SAccordionRows": "
|
|
32
|
-
"_gridArea": "
|
|
33
|
-
"__SCellWrapper": "
|
|
34
|
-
"__SCollapseRow": "
|
|
35
|
-
"--gridArea": "--
|
|
36
|
-
"_isAccordionRow": "
|
|
37
|
-
"__SCell": "
|
|
38
|
-
"_withoutBorder": "
|
|
39
|
-
"_active": "
|
|
40
|
-
"_theme": "
|
|
41
|
-
"_accordionType_row": "
|
|
42
|
-
"_expanded": "
|
|
43
|
-
"_withAccordion": "
|
|
44
|
-
"_isNonInteractive": "
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"
|
|
54
|
-
"
|
|
55
|
-
"
|
|
56
|
-
"
|
|
57
|
-
"
|
|
58
|
-
"
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
-
"
|
|
62
|
-
"
|
|
63
|
-
"--
|
|
64
|
-
"
|
|
65
|
-
"
|
|
66
|
-
"
|
|
67
|
-
"
|
|
68
|
-
"
|
|
69
|
-
"
|
|
70
|
-
"
|
|
71
|
-
"
|
|
72
|
-
"
|
|
73
|
-
"
|
|
23
|
+
"__SBody": "___SBody_lezzg_gg_",
|
|
24
|
+
"__SRow": "___SRow_lezzg_gg_",
|
|
25
|
+
"__SRowGroup": "___SRowGroup_lezzg_gg_",
|
|
26
|
+
"__SAccordionRows": "___SAccordionRows_lezzg_gg_",
|
|
27
|
+
"_gridArea": "__gridArea_lezzg_gg_",
|
|
28
|
+
"__SCellWrapper": "___SCellWrapper_lezzg_gg_",
|
|
29
|
+
"__SCollapseRow": "___SCollapseRow_lezzg_gg_",
|
|
30
|
+
"--gridArea": "--gridArea_lezzg",
|
|
31
|
+
"_isAccordionRow": "__isAccordionRow_lezzg_gg_",
|
|
32
|
+
"__SCell": "___SCell_lezzg_gg_",
|
|
33
|
+
"_withoutBorder": "__withoutBorder_lezzg_gg_",
|
|
34
|
+
"_active": "__active_lezzg_gg_",
|
|
35
|
+
"_theme": "__theme_lezzg_gg_",
|
|
36
|
+
"_accordionType_row": "_accordionType_row_lezzg_gg_",
|
|
37
|
+
"_expanded": "__expanded_lezzg_gg_",
|
|
38
|
+
"_withAccordion": "__withAccordion_lezzg_gg_",
|
|
39
|
+
"_isNonInteractive": "__isNonInteractive_lezzg_gg_",
|
|
40
|
+
"__SLimitOverlayCellWrapper": "___SLimitOverlayCellWrapper_lezzg_gg_",
|
|
41
|
+
"_theme_muted": "_theme_muted_lezzg_gg_",
|
|
42
|
+
"_theme_info": "_theme_info_lezzg_gg_",
|
|
43
|
+
"_theme_success": "_theme_success_lezzg_gg_",
|
|
44
|
+
"_theme_warning": "_theme_warning_lezzg_gg_",
|
|
45
|
+
"_theme_danger": "_theme_danger_lezzg_gg_",
|
|
46
|
+
"_name_Symbol(SELECT_ALL)": "_name_Symbol(SELECT_ALL)_lezzg_gg_",
|
|
47
|
+
"__SCheckboxCell": "___SCheckboxCell_lezzg_gg_",
|
|
48
|
+
"_borders_both": "_borders_both_lezzg_gg_",
|
|
49
|
+
"_borders_left": "_borders_left_lezzg_gg_",
|
|
50
|
+
"_borders_right": "_borders_right_lezzg_gg_",
|
|
51
|
+
"_fixed": "__fixed_lezzg_gg_",
|
|
52
|
+
"__SSpinContainer": "___SSpinContainer_lezzg_gg_",
|
|
53
|
+
"_headerHeight": "__headerHeight_lezzg_gg_",
|
|
54
|
+
"--headerHeight": "--headerHeight_lezzg",
|
|
55
|
+
"__SEmptyData": "___SEmptyData_lezzg_gg_",
|
|
56
|
+
"_withAnimation": "__withAnimation_lezzg_gg_",
|
|
57
|
+
"--delay": "--delay_lezzg",
|
|
58
|
+
"--duration": "--duration_lezzg",
|
|
59
|
+
"_left": "__left_lezzg_gg_",
|
|
60
|
+
"---left": "---left_lezzg",
|
|
61
|
+
"_innerOutline": "__innerOutline_lezzg_gg_",
|
|
62
|
+
"_compact": "__compact_lezzg_gg_",
|
|
63
|
+
"--data-aria-level": "--data-aria-level_lezzg",
|
|
64
|
+
"_sideIndents_wide": "_sideIndents_wide_lezzg_gg_",
|
|
65
|
+
"__SAccordionToggle": "___SAccordionToggle_lezzg_gg_",
|
|
66
|
+
"_use_primary": "_use_primary_lezzg_gg_",
|
|
67
|
+
"_use_secondary": "_use_secondary_lezzg_gg_",
|
|
68
|
+
"_shadowVertical": "__shadowVertical_lezzg_gg_",
|
|
69
|
+
"_fixed_left": "_fixed_left_lezzg_gg_",
|
|
70
|
+
"_shadowVertical_median": "_shadowVertical_median_lezzg_gg_",
|
|
71
|
+
"_shadowVertical_start": "_shadowVertical_start_lezzg_gg_",
|
|
72
|
+
"_fixed_right": "_fixed_right_lezzg_gg_",
|
|
73
|
+
"_shadowVertical_end": "_shadowVertical_end_lezzg_gg_"
|
|
74
74
|
})
|
|
75
75
|
);
|
|
76
76
|
var DEFAULT_ROW_DURATION = 50;
|
|
@@ -82,60 +82,13 @@ var CellRoot = /* @__PURE__ */ function(_Component) {
|
|
|
82
82
|
args[_key] = arguments[_key];
|
|
83
83
|
}
|
|
84
84
|
_this = _callSuper(this, CellRoot2, [].concat(args));
|
|
85
|
-
_defineProperty(_this, "cellRef", /* @__PURE__ */ React.createRef());
|
|
86
85
|
_defineProperty(_this, "lockedCell", [null, false]);
|
|
87
|
-
_defineProperty(_this, "
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
return getFocusableIn(node);
|
|
91
|
-
});
|
|
92
|
-
if (_this.lockedCell[1]) {
|
|
93
|
-
if (e.key === "Escape") {
|
|
94
|
-
var _this$lockedCell$;
|
|
95
|
-
(_this$lockedCell$ = _this.lockedCell[0]) === null || _this$lockedCell$ === void 0 || _this$lockedCell$.focus();
|
|
96
|
-
_this.lockedCell[1] = false;
|
|
97
|
-
}
|
|
98
|
-
if (e.key.startsWith("Arrow")) {
|
|
99
|
-
e.stopPropagation();
|
|
100
|
-
e.preventDefault();
|
|
101
|
-
}
|
|
102
|
-
if (e.key === "Tab") {
|
|
103
|
-
if (e.target === focusableChildren[0] && e.shiftKey) {
|
|
104
|
-
var _focusableChildren;
|
|
105
|
-
(_focusableChildren = focusableChildren[focusableChildren.length - 1]) === null || _focusableChildren === void 0 || _focusableChildren.focus();
|
|
106
|
-
e.preventDefault();
|
|
107
|
-
} else if (e.target === focusableChildren[focusableChildren.length - 1] && !e.shiftKey) {
|
|
108
|
-
var _focusableChildren$;
|
|
109
|
-
(_focusableChildren$ = focusableChildren[0]) === null || _focusableChildren$ === void 0 || _focusableChildren$.focus();
|
|
110
|
-
e.preventDefault();
|
|
111
|
-
}
|
|
112
|
-
e.stopPropagation();
|
|
113
|
-
}
|
|
114
|
-
} else if (e.key === "Enter") {
|
|
115
|
-
var _focusableChildren$2;
|
|
116
|
-
e.preventDefault();
|
|
117
|
-
e.stopPropagation();
|
|
118
|
-
_this.lockedCell[1] = true;
|
|
119
|
-
(_focusableChildren$2 = focusableChildren[0]) === null || _focusableChildren$2 === void 0 || _focusableChildren$2.focus();
|
|
120
|
-
}
|
|
121
|
-
}
|
|
86
|
+
_defineProperty(_this, "cellRef", /* @__PURE__ */ React.createRef());
|
|
87
|
+
_defineProperty(_this, "handleFocusableCellKeyDown", function(e) {
|
|
88
|
+
handleKeydownFocusCell(_this.lockedCell, e);
|
|
122
89
|
});
|
|
123
|
-
_defineProperty(_this, "
|
|
124
|
-
|
|
125
|
-
e.target.scrollIntoView({
|
|
126
|
-
behavior: "smooth",
|
|
127
|
-
block: "center",
|
|
128
|
-
inline: "center"
|
|
129
|
-
});
|
|
130
|
-
var focusableChildren = Array.from(e.currentTarget.children).flatMap(function(node) {
|
|
131
|
-
return getFocusableIn(node);
|
|
132
|
-
});
|
|
133
|
-
if (focusableChildren.length === 1) {
|
|
134
|
-
focusableChildren[0].focus();
|
|
135
|
-
} else if (focusableChildren.length > 1) {
|
|
136
|
-
_this.lockedCell = [e.currentTarget, false];
|
|
137
|
-
}
|
|
138
|
-
}
|
|
90
|
+
_defineProperty(_this, "handleFocusableCellFocus", function(e) {
|
|
91
|
+
handleFocusCell(_this.lockedCell, e.target, e.currentTarget);
|
|
139
92
|
});
|
|
140
93
|
_defineProperty(_this, "handleClickCell", function(e) {
|
|
141
94
|
var _this$asProps = _this.asProps, rowIndex = _this$asProps.rowIndex, columnIndex = _this$asProps.columnIndex, onClick = _this$asProps.onClick, row = _this$asProps.row;
|
|
@@ -219,8 +172,8 @@ var CellRoot = /* @__PURE__ */ function(_Component) {
|
|
|
219
172
|
"ref": this.cellRef,
|
|
220
173
|
"innerOutline": true,
|
|
221
174
|
"tabIndex": -1,
|
|
222
|
-
"onKeyDown": this.
|
|
223
|
-
"onFocus": this.
|
|
175
|
+
"onKeyDown": this.handleFocusableCellKeyDown,
|
|
176
|
+
"onFocus": this.handleFocusableCellFocus,
|
|
224
177
|
"use:onClick": this.handleClickCell,
|
|
225
178
|
"name": cellName.toString(),
|
|
226
179
|
"role": "gridcell",
|
|
@@ -0,0 +1,178 @@
|
|
|
1
|
+
import _classCallCheck from "@babel/runtime/helpers/esm/classCallCheck";
|
|
2
|
+
import _createClass from "@babel/runtime/helpers/esm/createClass";
|
|
3
|
+
import _callSuper from "@babel/runtime/helpers/esm/callSuper";
|
|
4
|
+
import _inherits from "@babel/runtime/helpers/esm/inherits";
|
|
5
|
+
import _defineProperty from "@babel/runtime/helpers/esm/defineProperty";
|
|
6
|
+
import { createComponent, sstyled, Component } from "@semcore/core";
|
|
7
|
+
import { Flex, Box } from "@semcore/base-components";
|
|
8
|
+
import { hasParent } from "@semcore/core/lib/utils/hasParent";
|
|
9
|
+
import * as React from "react";
|
|
10
|
+
import { handleKeydownFocusCell, handleFocusCell } from "../../enhancers/focusableCell.mjs";
|
|
11
|
+
import { GRID_ROW_INDEX, ACCORDION } from "../DataTable/DataTable.mjs";
|
|
12
|
+
/*!__reshadow-styles__:"./style.shadow.css"*/
|
|
13
|
+
var style = (
|
|
14
|
+
/*__reshadow_css_start__*/
|
|
15
|
+
(sstyled.insert(
|
|
16
|
+
/*__inner_css_start__*/
|
|
17
|
+
'.___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}',
|
|
18
|
+
/*__inner_css_end__*/
|
|
19
|
+
"lezzg_gg_"
|
|
20
|
+
), /*__reshadow_css_end__*/
|
|
21
|
+
{
|
|
22
|
+
"__SBody": "___SBody_lezzg_gg_",
|
|
23
|
+
"__SRow": "___SRow_lezzg_gg_",
|
|
24
|
+
"__SRowGroup": "___SRowGroup_lezzg_gg_",
|
|
25
|
+
"__SAccordionRows": "___SAccordionRows_lezzg_gg_",
|
|
26
|
+
"_gridArea": "__gridArea_lezzg_gg_",
|
|
27
|
+
"__SCellWrapper": "___SCellWrapper_lezzg_gg_",
|
|
28
|
+
"__SCollapseRow": "___SCollapseRow_lezzg_gg_",
|
|
29
|
+
"--gridArea": "--gridArea_lezzg",
|
|
30
|
+
"_isAccordionRow": "__isAccordionRow_lezzg_gg_",
|
|
31
|
+
"__SCell": "___SCell_lezzg_gg_",
|
|
32
|
+
"_withoutBorder": "__withoutBorder_lezzg_gg_",
|
|
33
|
+
"_active": "__active_lezzg_gg_",
|
|
34
|
+
"_theme": "__theme_lezzg_gg_",
|
|
35
|
+
"_accordionType_row": "_accordionType_row_lezzg_gg_",
|
|
36
|
+
"_expanded": "__expanded_lezzg_gg_",
|
|
37
|
+
"_withAccordion": "__withAccordion_lezzg_gg_",
|
|
38
|
+
"_isNonInteractive": "__isNonInteractive_lezzg_gg_",
|
|
39
|
+
"__SLimitOverlayCellWrapper": "___SLimitOverlayCellWrapper_lezzg_gg_",
|
|
40
|
+
"_theme_muted": "_theme_muted_lezzg_gg_",
|
|
41
|
+
"_theme_info": "_theme_info_lezzg_gg_",
|
|
42
|
+
"_theme_success": "_theme_success_lezzg_gg_",
|
|
43
|
+
"_theme_warning": "_theme_warning_lezzg_gg_",
|
|
44
|
+
"_theme_danger": "_theme_danger_lezzg_gg_",
|
|
45
|
+
"_name_Symbol(SELECT_ALL)": "_name_Symbol(SELECT_ALL)_lezzg_gg_",
|
|
46
|
+
"__SCheckboxCell": "___SCheckboxCell_lezzg_gg_",
|
|
47
|
+
"_borders_both": "_borders_both_lezzg_gg_",
|
|
48
|
+
"_borders_left": "_borders_left_lezzg_gg_",
|
|
49
|
+
"_borders_right": "_borders_right_lezzg_gg_",
|
|
50
|
+
"_fixed": "__fixed_lezzg_gg_",
|
|
51
|
+
"__SSpinContainer": "___SSpinContainer_lezzg_gg_",
|
|
52
|
+
"_headerHeight": "__headerHeight_lezzg_gg_",
|
|
53
|
+
"--headerHeight": "--headerHeight_lezzg",
|
|
54
|
+
"__SEmptyData": "___SEmptyData_lezzg_gg_",
|
|
55
|
+
"_withAnimation": "__withAnimation_lezzg_gg_",
|
|
56
|
+
"--delay": "--delay_lezzg",
|
|
57
|
+
"--duration": "--duration_lezzg",
|
|
58
|
+
"_left": "__left_lezzg_gg_",
|
|
59
|
+
"---left": "---left_lezzg",
|
|
60
|
+
"_innerOutline": "__innerOutline_lezzg_gg_",
|
|
61
|
+
"_compact": "__compact_lezzg_gg_",
|
|
62
|
+
"--data-aria-level": "--data-aria-level_lezzg",
|
|
63
|
+
"_sideIndents_wide": "_sideIndents_wide_lezzg_gg_",
|
|
64
|
+
"__SAccordionToggle": "___SAccordionToggle_lezzg_gg_",
|
|
65
|
+
"_use_primary": "_use_primary_lezzg_gg_",
|
|
66
|
+
"_use_secondary": "_use_secondary_lezzg_gg_",
|
|
67
|
+
"_shadowVertical": "__shadowVertical_lezzg_gg_",
|
|
68
|
+
"_fixed_left": "_fixed_left_lezzg_gg_",
|
|
69
|
+
"_shadowVertical_median": "_shadowVertical_median_lezzg_gg_",
|
|
70
|
+
"_shadowVertical_start": "_shadowVertical_start_lezzg_gg_",
|
|
71
|
+
"_fixed_right": "_fixed_right_lezzg_gg_",
|
|
72
|
+
"_shadowVertical_end": "_shadowVertical_end_lezzg_gg_"
|
|
73
|
+
})
|
|
74
|
+
);
|
|
75
|
+
var LimitOverlayRoot = /* @__PURE__ */ function(_Component) {
|
|
76
|
+
function LimitOverlayRoot2() {
|
|
77
|
+
var _this;
|
|
78
|
+
_classCallCheck(this, LimitOverlayRoot2);
|
|
79
|
+
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
|
|
80
|
+
args[_key] = arguments[_key];
|
|
81
|
+
}
|
|
82
|
+
_this = _callSuper(this, LimitOverlayRoot2, [].concat(args));
|
|
83
|
+
_defineProperty(_this, "lockedCell", [null, false]);
|
|
84
|
+
_defineProperty(_this, "limitWrapperRef", /* @__PURE__ */ React.createRef());
|
|
85
|
+
_defineProperty(_this, "handleFocusableCellKeyDown", function(e) {
|
|
86
|
+
handleKeydownFocusCell(_this.lockedCell, e);
|
|
87
|
+
});
|
|
88
|
+
_defineProperty(_this, "handleFocusableCellFocus", function(e) {
|
|
89
|
+
var tableElement = _this.asProps.tableRef.current;
|
|
90
|
+
if (tableElement && !hasParent(e.relatedTarget, tableElement)) {
|
|
91
|
+
if (e.target instanceof HTMLElement) {
|
|
92
|
+
e.target.dataset.skipTargetFocus = "true";
|
|
93
|
+
}
|
|
94
|
+
} else {
|
|
95
|
+
if (e.target instanceof HTMLElement) {
|
|
96
|
+
e.target.dataset.skipTargetFocus = void 0;
|
|
97
|
+
}
|
|
98
|
+
handleFocusCell(_this.lockedCell, e.target, e.currentTarget);
|
|
99
|
+
}
|
|
100
|
+
});
|
|
101
|
+
return _this;
|
|
102
|
+
}
|
|
103
|
+
_inherits(LimitOverlayRoot2, _Component);
|
|
104
|
+
return _createClass(LimitOverlayRoot2, [{
|
|
105
|
+
key: "limitOverlayGridArea",
|
|
106
|
+
get: function get() {
|
|
107
|
+
var _this$asProps = this.asProps, columns = _this$asProps.columns, hasGroups = _this$asProps.hasGroups, flatRows = _this$asProps.flatRows, limit = _this$asProps.limit;
|
|
108
|
+
var fromRow = limit.fromRow, fromColumn = limit.fromColumn;
|
|
109
|
+
var rowOffset = hasGroups ? 3 : 2;
|
|
110
|
+
var rowStart = fromRow !== void 0 ? rowOffset + flatRows[fromRow][GRID_ROW_INDEX] : rowOffset;
|
|
111
|
+
var rowEnd = rowOffset;
|
|
112
|
+
var lastRow = flatRows[flatRows.length - 1];
|
|
113
|
+
if (lastRow[ACCORDION]) {
|
|
114
|
+
rowEnd = rowEnd + lastRow[GRID_ROW_INDEX] + 1 + (Array.isArray(lastRow[ACCORDION]) ? lastRow[ACCORDION].length : 1);
|
|
115
|
+
} else {
|
|
116
|
+
rowEnd = rowEnd + lastRow[GRID_ROW_INDEX] + 1;
|
|
117
|
+
}
|
|
118
|
+
var columnStart = fromColumn !== void 0 ? fromColumn + 1 : 1;
|
|
119
|
+
var columnEnd = columns.length + 1;
|
|
120
|
+
return "".concat(rowStart, " / ").concat(columnStart, " / ").concat(rowEnd, " / ").concat(columnEnd);
|
|
121
|
+
}
|
|
122
|
+
}, {
|
|
123
|
+
key: "sizes",
|
|
124
|
+
get: function get() {
|
|
125
|
+
var _this$asProps2 = this.asProps, scrollAreaRef = _this$asProps2.scrollAreaRef, columns = _this$asProps2.columns;
|
|
126
|
+
if (columns.some(function(c) {
|
|
127
|
+
return c.fixed;
|
|
128
|
+
}) && this.limitWrapperRef.current && scrollAreaRef.current) {
|
|
129
|
+
var scrollAreaRect = scrollAreaRef.current.getBoundingClientRect();
|
|
130
|
+
var limitWrapperRect = this.limitWrapperRef.current.getBoundingClientRect();
|
|
131
|
+
var left = limitWrapperRect.x - scrollAreaRect.x;
|
|
132
|
+
var width = scrollAreaRect.width - limitWrapperRect.x + scrollAreaRect.x;
|
|
133
|
+
return {
|
|
134
|
+
left,
|
|
135
|
+
width
|
|
136
|
+
};
|
|
137
|
+
}
|
|
138
|
+
return {
|
|
139
|
+
left: 0,
|
|
140
|
+
width: 0
|
|
141
|
+
};
|
|
142
|
+
}
|
|
143
|
+
}, {
|
|
144
|
+
key: "render",
|
|
145
|
+
value: function render() {
|
|
146
|
+
var _ref;
|
|
147
|
+
var SLimitOverlayCellWrapper = Flex;
|
|
148
|
+
var _this$asProps3 = this.asProps, columns = _this$asProps3.columns, rows = _this$asProps3.rows, styles = _this$asProps3.styles, limit = _this$asProps3.limit;
|
|
149
|
+
var rowsLimit = limit.fromRow;
|
|
150
|
+
var columnsLimit = limit.fromColumn;
|
|
151
|
+
var renderOverlay = limit.renderOverlay;
|
|
152
|
+
var colIndex = columnsLimit ? columnsLimit + 1 : 1;
|
|
153
|
+
var colSpan = columns.length - (columnsLimit !== null && columnsLimit !== void 0 ? columnsLimit : 0);
|
|
154
|
+
var rowsSpan = rows.length - (rowsLimit !== null && rowsLimit !== void 0 ? rowsLimit : 0);
|
|
155
|
+
var _this$sizes = this.sizes, width = _this$sizes.width, left = _this$sizes.left;
|
|
156
|
+
return _ref = sstyled(styles), /* @__PURE__ */ React.createElement(SLimitOverlayCellWrapper, _ref.cn("SLimitOverlayCellWrapper", {
|
|
157
|
+
"ref": this.limitWrapperRef,
|
|
158
|
+
"gridArea": this.limitOverlayGridArea,
|
|
159
|
+
"w": width ? width : void 0,
|
|
160
|
+
"left": left ? left : void 0
|
|
161
|
+
}), /* @__PURE__ */ React.createElement(Box, _ref.cn("Box", {
|
|
162
|
+
"role": "gridcell",
|
|
163
|
+
"aria-colindex": colIndex,
|
|
164
|
+
"aria-colspan": colSpan,
|
|
165
|
+
"aria-rowspan": rowsSpan,
|
|
166
|
+
"tabIndex": -1,
|
|
167
|
+
"onFocus": this.handleFocusableCellFocus,
|
|
168
|
+
"onKeyDown": this.handleFocusableCellKeyDown
|
|
169
|
+
}), renderOverlay === null || renderOverlay === void 0 ? void 0 : renderOverlay()));
|
|
170
|
+
}
|
|
171
|
+
}]);
|
|
172
|
+
}(Component);
|
|
173
|
+
_defineProperty(LimitOverlayRoot, "displayName", "LimitOverlay");
|
|
174
|
+
_defineProperty(LimitOverlayRoot, "style", style);
|
|
175
|
+
var LimitOverlay = createComponent(LimitOverlayRoot);
|
|
176
|
+
export {
|
|
177
|
+
LimitOverlay
|
|
178
|
+
};
|