@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.
Files changed (66) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/lib/cjs/components/Body/Body.js +58 -53
  3. package/lib/cjs/components/Body/Body.js.map +1 -1
  4. package/lib/cjs/components/Body/Body.types.js.map +1 -1
  5. package/lib/cjs/components/Body/Cell.js +62 -107
  6. package/lib/cjs/components/Body/Cell.js.map +1 -1
  7. package/lib/cjs/components/Body/LimitOverlay.js +190 -0
  8. package/lib/cjs/components/Body/LimitOverlay.js.map +1 -0
  9. package/lib/cjs/components/Body/Row.js +161 -109
  10. package/lib/cjs/components/Body/Row.js.map +1 -1
  11. package/lib/cjs/components/Body/Row.types.js.map +1 -1
  12. package/lib/cjs/components/Body/style.shadow.css +94 -42
  13. package/lib/cjs/components/DataTable/DataTable.js +61 -41
  14. package/lib/cjs/components/DataTable/DataTable.js.map +1 -1
  15. package/lib/cjs/components/DataTable/DataTable.types.js.map +1 -1
  16. package/lib/cjs/components/DataTable/dataTable.shadow.css +1 -0
  17. package/lib/cjs/components/Head/Column.js +45 -92
  18. package/lib/cjs/components/Head/Column.js.map +1 -1
  19. package/lib/cjs/components/Head/Group.js +38 -41
  20. package/lib/cjs/components/Head/Group.js.map +1 -1
  21. package/lib/cjs/components/Head/Head.js +38 -41
  22. package/lib/cjs/components/Head/Head.js.map +1 -1
  23. package/lib/cjs/enhancers/focusableCell.js +63 -0
  24. package/lib/cjs/enhancers/focusableCell.js.map +1 -0
  25. package/lib/es6/components/Body/Body.js +57 -52
  26. package/lib/es6/components/Body/Body.js.map +1 -1
  27. package/lib/es6/components/Body/Body.types.js.map +1 -1
  28. package/lib/es6/components/Body/Cell.js +61 -106
  29. package/lib/es6/components/Body/Cell.js.map +1 -1
  30. package/lib/es6/components/Body/LimitOverlay.js +183 -0
  31. package/lib/es6/components/Body/LimitOverlay.js.map +1 -0
  32. package/lib/es6/components/Body/Row.js +160 -108
  33. package/lib/es6/components/Body/Row.js.map +1 -1
  34. package/lib/es6/components/Body/Row.types.js.map +1 -1
  35. package/lib/es6/components/Body/style.shadow.css +94 -42
  36. package/lib/es6/components/DataTable/DataTable.js +60 -40
  37. package/lib/es6/components/DataTable/DataTable.js.map +1 -1
  38. package/lib/es6/components/DataTable/DataTable.types.js.map +1 -1
  39. package/lib/es6/components/DataTable/dataTable.shadow.css +1 -0
  40. package/lib/es6/components/Head/Column.js +44 -91
  41. package/lib/es6/components/Head/Column.js.map +1 -1
  42. package/lib/es6/components/Head/Group.js +37 -40
  43. package/lib/es6/components/Head/Group.js.map +1 -1
  44. package/lib/es6/components/Head/Head.js +37 -40
  45. package/lib/es6/components/Head/Head.js.map +1 -1
  46. package/lib/es6/enhancers/focusableCell.js +56 -0
  47. package/lib/es6/enhancers/focusableCell.js.map +1 -0
  48. package/lib/esm/components/Body/Body.mjs +58 -56
  49. package/lib/esm/components/Body/Cell.mjs +62 -109
  50. package/lib/esm/components/Body/LimitOverlay.mjs +178 -0
  51. package/lib/esm/components/Body/Row.mjs +125 -85
  52. package/lib/esm/components/Body/style.shadow.css +94 -42
  53. package/lib/esm/components/DataTable/DataTable.mjs +59 -42
  54. package/lib/esm/components/DataTable/dataTable.shadow.css +1 -0
  55. package/lib/esm/components/Head/Column.mjs +45 -94
  56. package/lib/esm/components/Head/Group.mjs +38 -43
  57. package/lib/esm/components/Head/Head.mjs +38 -43
  58. package/lib/esm/enhancers/focusableCell.mjs +59 -0
  59. package/lib/types/components/Body/Body.types.d.ts +2 -1
  60. package/lib/types/components/Body/LimitOverlay.d.ts +17 -0
  61. package/lib/types/components/Body/Row.d.ts +1 -0
  62. package/lib/types/components/Body/Row.types.d.ts +3 -0
  63. package/lib/types/components/DataTable/DataTable.types.d.ts +19 -0
  64. package/lib/types/components/Head/Column.d.ts +5 -4
  65. package/lib/types/enhancers/focusableCell.d.ts +9 -0
  66. package/package.json +22 -22
@@ -3,14 +3,11 @@ import _slicedToArray from "@babel/runtime/helpers/slicedToArray";
3
3
  import _toConsumableArray from "@babel/runtime/helpers/toConsumableArray";
4
4
  import _classCallCheck from "@babel/runtime/helpers/classCallCheck";
5
5
  import _createClass from "@babel/runtime/helpers/createClass";
6
- import _possibleConstructorReturn from "@babel/runtime/helpers/possibleConstructorReturn";
7
- import _isNativeReflectConstruct from "@babel/runtime/helpers/isNativeReflectConstruct";
8
- import _getPrototypeOf from "@babel/runtime/helpers/getPrototypeOf";
6
+ import _callSuper from "@babel/runtime/helpers/callSuper";
9
7
  import _inherits from "@babel/runtime/helpers/inherits";
10
8
  import _defineProperty from "@babel/runtime/helpers/defineProperty";
11
9
  import { sstyled as _sstyled } from "@semcore/core";
12
10
  import { assignProps as _assignProps } from "@semcore/core";
13
- function _callSuper(t, o, e) { return o = _getPrototypeOf(o), _possibleConstructorReturn(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], _getPrototypeOf(t).constructor) : o.apply(t, e)); }
14
11
  import { Box, Collapse } from '@semcore/base-components';
15
12
  import { ButtonLink } from '@semcore/button';
16
13
  import Checkbox from '@semcore/checkbox';
@@ -20,57 +17,63 @@ import { isInteractiveElement } from '@semcore/core/lib/utils/isInteractiveEleme
20
17
  import ChevronRightM from '@semcore/icon/ChevronRight/m';
21
18
  import * as React from 'react';
22
19
  import { Cell } from './Cell';
20
+ import { LimitOverlay } from './LimitOverlay';
23
21
  import { MergedColumnsCell, MergedRowsCell } from './MergedCells';
24
22
  /*!__reshadow-styles__:"./style.shadow.css"*/
25
- var style = (/*__reshadow_css_start__*/_sstyled.insert(/*__inner_css_start__*/".___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}", /*__inner_css_end__*/"p1jyf_gg_"),
23
+ var style = (/*__reshadow_css_start__*/_sstyled.insert(/*__inner_css_start__*/".___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}", /*__inner_css_end__*/"lezzg_gg_"),
26
24
  /*__reshadow_css_end__*/
27
25
  {
28
- "__SBody": "___SBody_p1jyf_gg_",
29
- "__SRow": "___SRow_p1jyf_gg_",
30
- "__SRowGroup": "___SRowGroup_p1jyf_gg_",
31
- "__SAccordionRows": "___SAccordionRows_p1jyf_gg_",
32
- "_gridArea": "__gridArea_p1jyf_gg_",
33
- "__SCellWrapper": "___SCellWrapper_p1jyf_gg_",
34
- "__SCollapseRow": "___SCollapseRow_p1jyf_gg_",
35
- "--gridArea": "--gridArea_p1jyf",
36
- "_isAccordionRow": "__isAccordionRow_p1jyf_gg_",
37
- "__SCell": "___SCell_p1jyf_gg_",
38
- "_withoutBorder": "__withoutBorder_p1jyf_gg_",
39
- "_active": "__active_p1jyf_gg_",
40
- "_theme": "__theme_p1jyf_gg_",
41
- "_accordionType_row": "_accordionType_row_p1jyf_gg_",
42
- "_expanded": "__expanded_p1jyf_gg_",
43
- "_withAccordion": "__withAccordion_p1jyf_gg_",
44
- "_isNonInteractive": "__isNonInteractive_p1jyf_gg_",
45
- "_theme_muted": "_theme_muted_p1jyf_gg_",
46
- "_theme_info": "_theme_info_p1jyf_gg_",
47
- "_theme_success": "_theme_success_p1jyf_gg_",
48
- "_theme_warning": "_theme_warning_p1jyf_gg_",
49
- "_theme_danger": "_theme_danger_p1jyf_gg_",
50
- "__SCheckboxCell": "___SCheckboxCell_p1jyf_gg_",
51
- "_borders_both": "_borders_both_p1jyf_gg_",
52
- "_borders_left": "_borders_left_p1jyf_gg_",
53
- "_borders_right": "_borders_right_p1jyf_gg_",
54
- "_fixed": "__fixed_p1jyf_gg_",
55
- "__SSpinContainer": "___SSpinContainer_p1jyf_gg_",
56
- "_headerHeight": "__headerHeight_p1jyf_gg_",
57
- "--headerHeight": "--headerHeight_p1jyf",
58
- "__SEmptyData": "___SEmptyData_p1jyf_gg_",
59
- "_withAnimation": "__withAnimation_p1jyf_gg_",
60
- "--delay": "--delay_p1jyf",
61
- "--duration": "--duration_p1jyf",
62
- "_compact": "__compact_p1jyf_gg_",
63
- "--data-aria-level": "--data-aria-level_p1jyf",
64
- "_sideIndents_wide": "_sideIndents_wide_p1jyf_gg_",
65
- "__SAccordionToggle": "___SAccordionToggle_p1jyf_gg_",
66
- "_use_primary": "_use_primary_p1jyf_gg_",
67
- "_use_secondary": "_use_secondary_p1jyf_gg_",
68
- "_shadowVertical": "__shadowVertical_p1jyf_gg_",
69
- "_fixed_left": "_fixed_left_p1jyf_gg_",
70
- "_shadowVertical_median": "_shadowVertical_median_p1jyf_gg_",
71
- "_shadowVertical_start": "_shadowVertical_start_p1jyf_gg_",
72
- "_fixed_right": "_fixed_right_p1jyf_gg_",
73
- "_shadowVertical_end": "_shadowVertical_end_p1jyf_gg_"
26
+ "__SBody": "___SBody_lezzg_gg_",
27
+ "__SRow": "___SRow_lezzg_gg_",
28
+ "__SRowGroup": "___SRowGroup_lezzg_gg_",
29
+ "__SAccordionRows": "___SAccordionRows_lezzg_gg_",
30
+ "_gridArea": "__gridArea_lezzg_gg_",
31
+ "__SCellWrapper": "___SCellWrapper_lezzg_gg_",
32
+ "__SCollapseRow": "___SCollapseRow_lezzg_gg_",
33
+ "--gridArea": "--gridArea_lezzg",
34
+ "_isAccordionRow": "__isAccordionRow_lezzg_gg_",
35
+ "__SCell": "___SCell_lezzg_gg_",
36
+ "_withoutBorder": "__withoutBorder_lezzg_gg_",
37
+ "_active": "__active_lezzg_gg_",
38
+ "_theme": "__theme_lezzg_gg_",
39
+ "_accordionType_row": "_accordionType_row_lezzg_gg_",
40
+ "_expanded": "__expanded_lezzg_gg_",
41
+ "_withAccordion": "__withAccordion_lezzg_gg_",
42
+ "_isNonInteractive": "__isNonInteractive_lezzg_gg_",
43
+ "__SLimitOverlayCellWrapper": "___SLimitOverlayCellWrapper_lezzg_gg_",
44
+ "_theme_muted": "_theme_muted_lezzg_gg_",
45
+ "_theme_info": "_theme_info_lezzg_gg_",
46
+ "_theme_success": "_theme_success_lezzg_gg_",
47
+ "_theme_warning": "_theme_warning_lezzg_gg_",
48
+ "_theme_danger": "_theme_danger_lezzg_gg_",
49
+ "_name_Symbol(SELECT_ALL)": "_name_Symbol(SELECT_ALL)_lezzg_gg_",
50
+ "__SCheckboxCell": "___SCheckboxCell_lezzg_gg_",
51
+ "_borders_both": "_borders_both_lezzg_gg_",
52
+ "_borders_left": "_borders_left_lezzg_gg_",
53
+ "_borders_right": "_borders_right_lezzg_gg_",
54
+ "_fixed": "__fixed_lezzg_gg_",
55
+ "__SSpinContainer": "___SSpinContainer_lezzg_gg_",
56
+ "_headerHeight": "__headerHeight_lezzg_gg_",
57
+ "--headerHeight": "--headerHeight_lezzg",
58
+ "__SEmptyData": "___SEmptyData_lezzg_gg_",
59
+ "_withAnimation": "__withAnimation_lezzg_gg_",
60
+ "--delay": "--delay_lezzg",
61
+ "--duration": "--duration_lezzg",
62
+ "_left": "__left_lezzg_gg_",
63
+ "---left": "---left_lezzg",
64
+ "_innerOutline": "__innerOutline_lezzg_gg_",
65
+ "_compact": "__compact_lezzg_gg_",
66
+ "--data-aria-level": "--data-aria-level_lezzg",
67
+ "_sideIndents_wide": "_sideIndents_wide_lezzg_gg_",
68
+ "__SAccordionToggle": "___SAccordionToggle_lezzg_gg_",
69
+ "_use_primary": "_use_primary_lezzg_gg_",
70
+ "_use_secondary": "_use_secondary_lezzg_gg_",
71
+ "_shadowVertical": "__shadowVertical_lezzg_gg_",
72
+ "_fixed_left": "_fixed_left_lezzg_gg_",
73
+ "_shadowVertical_median": "_shadowVertical_median_lezzg_gg_",
74
+ "_shadowVertical_start": "_shadowVertical_start_lezzg_gg_",
75
+ "_fixed_right": "_fixed_right_lezzg_gg_",
76
+ "_shadowVertical_end": "_shadowVertical_end_lezzg_gg_"
74
77
  });
75
78
  import { ACCORDION, IS_EMPTY_DATA_ROW, ROW_GROUP, ROW_INDEX, SELECT_ALL, UNIQ_ROW_KEY } from '../DataTable/DataTable';
76
79
  export var RowRoot = /*#__PURE__*/function (_Component) {
@@ -146,10 +149,10 @@ export var RowRoot = /*#__PURE__*/function (_Component) {
146
149
  }
147
150
  });
148
151
  if (previousRows.size > 0) {
149
- _toConsumableArray(previousRows.entries()).forEach(function (_ref5) {
150
- var _ref6 = _slicedToArray(_ref5, 2),
151
- uniqKey = _ref6[0],
152
- previousRow = _ref6[1];
152
+ _toConsumableArray(previousRows.entries()).forEach(function (_ref4) {
153
+ var _ref5 = _slicedToArray(_ref4, 2),
154
+ uniqKey = _ref5[0],
155
+ previousRow = _ref5[1];
153
156
  if (!_this.state.expandedForAnimation) {
154
157
  setTimeout(function () {
155
158
  var _this$asProps$compone;
@@ -261,7 +264,8 @@ export var RowRoot = /*#__PURE__*/function (_Component) {
261
264
  flatRows = _this$asProps8.flatRows,
262
265
  variant = _this$asProps8.variant,
263
266
  isAccordionRow = _this$asProps8.isAccordionRow,
264
- accordionRowIndex = _this$asProps8.accordionRowIndex;
267
+ accordionRowIndex = _this$asProps8.accordionRowIndex,
268
+ selectedRows = _this$asProps8.selectedRows;
265
269
  var SAccordionToggle = ButtonLink;
266
270
  var dataKey = props.column.name;
267
271
  var cellValue = props.row[dataKey];
@@ -331,7 +335,8 @@ export var RowRoot = /*#__PURE__*/function (_Component) {
331
335
  }
332
336
  }
333
337
  }
334
- if (props.columnIndex === 0 && props.row[ACCORDION] || (_value3 = value) !== null && _value3 !== void 0 && _value3[ACCORDION] || cellValue instanceof MergedRowsCell && cellValue.accordion) {
338
+ var firstColumnIndex = selectedRows ? 1 : 0;
339
+ if (props.columnIndex === firstColumnIndex && props.row[ACCORDION] || (_value3 = value) !== null && _value3 !== void 0 && _value3[ACCORDION] || cellValue instanceof MergedRowsCell && cellValue.accordion) {
335
340
  var _ref2, _value4;
336
341
  var expanded = (expandedRows === null || expandedRows === void 0 ? void 0 : expandedRows.has(props.row[UNIQ_ROW_KEY])) && !this.state.expandedForAnimation;
337
342
  extraProps.expanded = expanded;
@@ -366,42 +371,57 @@ export var RowRoot = /*#__PURE__*/function (_Component) {
366
371
  }
367
372
  return extraProps;
368
373
  }
374
+ }, {
375
+ key: "isRowHidden",
376
+ get: function get() {
377
+ var _this$asProps9 = this.asProps,
378
+ rowIndex = _this$asProps9.rowIndex,
379
+ limit = _this$asProps9.limit;
380
+ var rowsLimit = limit === null || limit === void 0 ? void 0 : limit.fromRow;
381
+ var columnsLimit = limit === null || limit === void 0 ? void 0 : limit.fromColumn;
382
+ return rowsLimit !== undefined && !columnsLimit && rowIndex > rowsLimit ? true : undefined;
383
+ }
369
384
  }, {
370
385
  key: "render",
371
386
  value: function render() {
372
387
  var _ref = this.asProps,
373
388
  _ref3,
374
- _this4 = this;
389
+ _this4 = this,
390
+ _limit$fromRow;
375
391
  var SRow = Box;
376
392
  var SCollapseRow = Collapse;
377
393
  var SAccordionRows = Box;
378
394
  var SCell = Row.Cell;
379
395
  var SCheckboxCell = Row.Cell;
380
- var _this$asProps9 = this.asProps,
381
- columns = _this$asProps9.columns,
382
- row = _this$asProps9.row,
383
- rows = _this$asProps9.rows,
384
- styles = _this$asProps9.styles,
385
- rowIndex = _this$asProps9.rowIndex,
386
- gridRowIndex = _this$asProps9.gridRowIndex,
387
- _this$asProps9$ariaL = _this$asProps9['aria-level'],
388
- ariaLevel = _this$asProps9$ariaL === void 0 ? 1 : _this$asProps9$ariaL,
389
- selectedRows = _this$asProps9.selectedRows,
390
- expandedRows = _this$asProps9.expandedRows,
391
- uid = _this$asProps9.uid,
392
- getFixedStyle = _this$asProps9.getFixedStyle,
393
- mergedRow = _this$asProps9.mergedRow,
394
- isAccordionRow = _this$asProps9.isAccordionRow,
395
- animationExpand = _this$asProps9.animationExpand,
396
- accordionRowIndex = _this$asProps9.accordionRowIndex,
397
- accordionDuration = _this$asProps9.accordionDuration,
398
- use = _this$asProps9.use,
399
- shadowVertical = _this$asProps9.shadowVertical,
400
- variant = _this$asProps9.variant,
401
- flatRows = _this$asProps9.flatRows,
402
- sideIndents = _this$asProps9.sideIndents,
403
- renderCell = _this$asProps9.renderCell,
404
- rawData = _this$asProps9.rawData;
396
+ var _this$asProps0 = this.asProps,
397
+ columns = _this$asProps0.columns,
398
+ row = _this$asProps0.row,
399
+ rows = _this$asProps0.rows,
400
+ styles = _this$asProps0.styles,
401
+ rowIndex = _this$asProps0.rowIndex,
402
+ gridRowIndex = _this$asProps0.gridRowIndex,
403
+ _this$asProps0$ariaL = _this$asProps0['aria-level'],
404
+ ariaLevel = _this$asProps0$ariaL === void 0 ? 1 : _this$asProps0$ariaL,
405
+ selectedRows = _this$asProps0.selectedRows,
406
+ expandedRows = _this$asProps0.expandedRows,
407
+ uid = _this$asProps0.uid,
408
+ getFixedStyle = _this$asProps0.getFixedStyle,
409
+ mergedRow = _this$asProps0.mergedRow,
410
+ isAccordionRow = _this$asProps0.isAccordionRow,
411
+ animationExpand = _this$asProps0.animationExpand,
412
+ accordionRowIndex = _this$asProps0.accordionRowIndex,
413
+ accordionDuration = _this$asProps0.accordionDuration,
414
+ use = _this$asProps0.use,
415
+ shadowVertical = _this$asProps0.shadowVertical,
416
+ variant = _this$asProps0.variant,
417
+ flatRows = _this$asProps0.flatRows,
418
+ sideIndents = _this$asProps0.sideIndents,
419
+ renderCell = _this$asProps0.renderCell,
420
+ rawData = _this$asProps0.rawData,
421
+ limit = _this$asProps0.limit,
422
+ hasGroups = _this$asProps0.hasGroups,
423
+ tableRef = _this$asProps0.tableRef,
424
+ scrollAreaRef = _this$asProps0.scrollAreaRef;
405
425
  var _this$state = this.state,
406
426
  expandedForAnimation = _this$state.expandedForAnimation,
407
427
  withAnimation = _this$state.withAnimation;
@@ -411,10 +431,10 @@ export var RowRoot = /*#__PURE__*/function (_Component) {
411
431
  var accordionType = (accordionRows || accordionComponent) && !mergedRow ? 'row' : undefined;
412
432
  if (!accordionRows && !accordionComponent) {
413
433
  var cells = Object.entries(row);
414
- var foundCell = cells.find(function (_ref7) {
415
- var _ref8 = _slicedToArray(_ref7, 2),
416
- key = _ref8[0],
417
- value = _ref8[1];
434
+ var foundCell = cells.find(function (_ref6) {
435
+ var _ref7 = _slicedToArray(_ref6, 2),
436
+ key = _ref7[0],
437
+ value = _ref7[1];
418
438
  return _this4.cellHasAccordion(value) || value instanceof MergedRowsCell && value.accordion;
419
439
  });
420
440
  if (foundCell) {
@@ -439,6 +459,8 @@ export var RowRoot = /*#__PURE__*/function (_Component) {
439
459
  }
440
460
  var rowUniqKey = row[UNIQ_ROW_KEY];
441
461
  var accordionId = "".concat(uid, "_").concat(rowUniqKey);
462
+ var rowsLimit = limit === null || limit === void 0 ? void 0 : limit.fromRow;
463
+ var columnsLimit = limit === null || limit === void 0 ? void 0 : limit.fromColumn;
442
464
  return _ref3 = sstyled(styles), /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(SRow, _ref3.cn("SRow", _objectSpread({}, _assignProps({
443
465
  "ref": this.rowElementRef,
444
466
  "role": 'row',
@@ -446,29 +468,46 @@ export var RowRoot = /*#__PURE__*/function (_Component) {
446
468
  "theme": selectedRows !== null && selectedRows !== void 0 && selectedRows.includes(rowUniqKey) ? 'info' : undefined,
447
469
  "use:expanded": expanded && !mergedRow,
448
470
  "onClick": this.handleClickRow(row),
449
- "withAnimation": withAnimation
471
+ "withAnimation": withAnimation,
472
+ "aria-hidden": this.isRowHidden
450
473
  }, _ref))), columns.map(function (column, i) {
474
+ var index = i;
475
+ var cellValue = row[column.name];
476
+ var withAccordion = Boolean(cellValue instanceof MergedRowsCell && cellValue.accordion) || _this4.cellHasAccordion(cellValue) || accordionType === 'row';
477
+ var isCellHidden = undefined;
478
+ if (limit) {
479
+ if (rowsLimit !== undefined && columnsLimit !== undefined) {
480
+ isCellHidden = rowIndex >= rowsLimit && i >= columnsLimit ? true : undefined;
481
+ } else if (rowsLimit === undefined && columnsLimit !== undefined) {
482
+ isCellHidden = rowIndex >= 0 && i >= columnsLimit ? true : undefined;
483
+ } else if (rowsLimit !== undefined && columnsLimit === undefined) {
484
+ isCellHidden = rowIndex >= rowsLimit ? true : undefined;
485
+ }
486
+ }
451
487
  if (selectedRows && i === 0 && row[IS_EMPTY_DATA_ROW] !== true) {
452
- var _ref4;
453
488
  var checked = selectedRows.includes(rowUniqKey);
454
- return _ref4 = sstyled(styles), /*#__PURE__*/React.createElement(SCheckboxCell, _ref4.cn("SCheckboxCell", {
455
- "key": i,
456
- "row": row,
457
- "rowIndex": rowIndex,
458
- "column": {
489
+ return /*#__PURE__*/React.createElement(SCheckboxCell, {
490
+ key: i,
491
+ row: row,
492
+ rowIndex: rowIndex
493
+ // @ts-ignore
494
+ ,
495
+ column: {
459
496
  name: SELECT_ALL.toString()
460
497
  },
461
- "columnIndex": 0,
462
- "gridRowIndex": gridRowIndex,
463
- "onClick": _this4.handleClickCheckbox(!checked)
464
- }), /*#__PURE__*/React.createElement(Checkbox, _ref4.cn("Checkbox", {
465
- "checked": checked,
498
+ columnIndex: 0,
499
+ gridRowIndex: gridRowIndex,
500
+ onClick: _this4.handleClickCheckbox(!checked),
501
+ expanded: expanded,
502
+ withAccordion: withAccordion,
503
+ isAccordionRow: isAccordionRow,
504
+ "aria-hidden": isCellHidden
505
+ }, /*#__PURE__*/React.createElement(Checkbox, {
506
+ checked: checked,
466
507
  "aria-labelledby": "".concat(uid, "_").concat(rowUniqKey, "_1"),
467
- "onChange": _this4.handleSelectRow
468
- }), /*#__PURE__*/React.createElement(Checkbox.Value, null)));
508
+ onChange: _this4.handleSelectRow
509
+ }, /*#__PURE__*/React.createElement(Checkbox.Value, null)));
469
510
  }
470
- var index = i;
471
- var cellValue = row[column.name];
472
511
  if (cellValue === undefined) {
473
512
  return null;
474
513
  }
@@ -493,13 +532,23 @@ export var RowRoot = /*#__PURE__*/function (_Component) {
493
532
  columnIndex: index,
494
533
  style: style,
495
534
  column: column,
496
- withAccordion: Boolean(cellValue instanceof MergedRowsCell && cellValue.accordion) || _this4.cellHasAccordion(cellValue),
535
+ expanded: expanded,
536
+ withAccordion: withAccordion,
497
537
  isAccordionRow: isAccordionRow,
498
538
  animationExpand: animationExpand,
499
539
  accordionRowIndex: accordionRowIndex,
500
- rows: rows
540
+ rows: rows,
541
+ "aria-hidden": isCellHidden
501
542
  });
502
- })), /*#__PURE__*/React.isValidElement(accordionComponent) && /*#__PURE__*/React.createElement(SCollapseRow, _ref3.cn("SCollapseRow", {
543
+ }), limit && ((_limit$fromRow = limit.fromRow) !== null && _limit$fromRow !== void 0 ? _limit$fromRow : 0) === rowIndex && !isAccordionRow && /*#__PURE__*/React.createElement(LimitOverlay, _ref3.cn("LimitOverlay", {
544
+ "columns": columns,
545
+ "rows": rows,
546
+ "limit": limit,
547
+ "flatRows": flatRows,
548
+ "hasGroups": hasGroups,
549
+ "tableRef": tableRef,
550
+ "scrollAreaRef": scrollAreaRef
551
+ }))), /*#__PURE__*/React.isValidElement(accordionComponent) && /*#__PURE__*/React.createElement(SCollapseRow, _ref3.cn("SCollapseRow", {
503
552
  "key": rowIndex,
504
553
  "role": 'row',
505
554
  "id": accordionId,
@@ -507,10 +556,12 @@ export var RowRoot = /*#__PURE__*/function (_Component) {
507
556
  "aria-hidden": !expanded,
508
557
  "interactive": true,
509
558
  "gridArea": accordionDataGridArea,
510
- "duration": accordionDuration !== null && accordionDuration !== void 0 ? accordionDuration : 200
559
+ "duration": accordionDuration !== null && accordionDuration !== void 0 ? accordionDuration : 200,
560
+ "sideIndents": sideIndents
511
561
  }), /*#__PURE__*/React.createElement(SCell, _ref3.cn("SCell", {
512
562
  "aria-colindex": 1,
513
563
  "aria-level": ariaLevel + 1,
564
+ "data-aria-level": 1,
514
565
  "aria-setsize": 1,
515
566
  "aria-posinset": 1,
516
567
  "accordionRowIndex": 0,
@@ -552,7 +603,8 @@ export var RowRoot = /*#__PURE__*/function (_Component) {
552
603
  flatRows: flatRows,
553
604
  sideIndents: sideIndents,
554
605
  renderCell: renderCell,
555
- rawData: rawData
606
+ rawData: rawData,
607
+ limit: limit
556
608
  });
557
609
  })));
558
610
  }