@semcore/data-table 16.5.3 → 16.6.0-prerelease.1

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 (82) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/lib/cjs/components/AccordionRows/AccordionRows.js +51 -51
  3. package/lib/cjs/components/Body/Body.js +71 -88
  4. package/lib/cjs/components/Body/Body.js.map +1 -1
  5. package/lib/cjs/components/Body/Body.types.js.map +1 -1
  6. package/lib/cjs/components/Body/Cell.js +51 -51
  7. package/lib/cjs/components/Body/LimitOverlay.js +51 -51
  8. package/lib/cjs/components/Body/LimitOverlay.js.map +1 -1
  9. package/lib/cjs/components/Body/Row.js +130 -157
  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/RowGroup.js +147 -0
  13. package/lib/cjs/components/Body/RowGroup.js.map +1 -0
  14. package/lib/cjs/components/Body/style.shadow.css +13 -4
  15. package/lib/cjs/components/DataTable/DataTable.js +122 -102
  16. package/lib/cjs/components/DataTable/DataTable.js.map +1 -1
  17. package/lib/cjs/components/DataTable/DataTable.types.js.map +1 -1
  18. package/lib/cjs/components/Head/Column.js +50 -47
  19. package/lib/cjs/components/Head/Column.js.map +1 -1
  20. package/lib/cjs/components/Head/Group.js +36 -36
  21. package/lib/cjs/components/Head/Head.js +90 -57
  22. package/lib/cjs/components/Head/Head.js.map +1 -1
  23. package/lib/cjs/components/Head/Head.types.js.map +1 -1
  24. package/lib/cjs/components/RowSelector/RowsSelector.js +124 -0
  25. package/lib/cjs/components/RowSelector/RowsSelector.js.map +1 -0
  26. package/lib/cjs/index.js +7 -0
  27. package/lib/cjs/index.js.map +1 -1
  28. package/lib/cjs/store/SelectableRows.js +210 -0
  29. package/lib/cjs/store/SelectableRows.js.map +1 -0
  30. package/lib/es6/components/AccordionRows/AccordionRows.js +51 -51
  31. package/lib/es6/components/Body/Body.js +73 -90
  32. package/lib/es6/components/Body/Body.js.map +1 -1
  33. package/lib/es6/components/Body/Body.types.js.map +1 -1
  34. package/lib/es6/components/Body/Cell.js +51 -51
  35. package/lib/es6/components/Body/LimitOverlay.js +51 -51
  36. package/lib/es6/components/Body/LimitOverlay.js.map +1 -1
  37. package/lib/es6/components/Body/Row.js +131 -158
  38. package/lib/es6/components/Body/Row.js.map +1 -1
  39. package/lib/es6/components/Body/Row.types.js.map +1 -1
  40. package/lib/es6/components/Body/RowGroup.js +140 -0
  41. package/lib/es6/components/Body/RowGroup.js.map +1 -0
  42. package/lib/es6/components/Body/style.shadow.css +13 -4
  43. package/lib/es6/components/DataTable/DataTable.js +122 -102
  44. package/lib/es6/components/DataTable/DataTable.js.map +1 -1
  45. package/lib/es6/components/DataTable/DataTable.types.js.map +1 -1
  46. package/lib/es6/components/Head/Column.js +50 -47
  47. package/lib/es6/components/Head/Column.js.map +1 -1
  48. package/lib/es6/components/Head/Group.js +36 -36
  49. package/lib/es6/components/Head/Head.js +90 -57
  50. package/lib/es6/components/Head/Head.js.map +1 -1
  51. package/lib/es6/components/Head/Head.types.js.map +1 -1
  52. package/lib/es6/components/RowSelector/RowsSelector.js +117 -0
  53. package/lib/es6/components/RowSelector/RowsSelector.js.map +1 -0
  54. package/lib/es6/index.js +2 -1
  55. package/lib/es6/index.js.map +1 -1
  56. package/lib/es6/store/SelectableRows.js +203 -0
  57. package/lib/es6/store/SelectableRows.js.map +1 -0
  58. package/lib/esm/components/AccordionRows/AccordionRows.mjs +52 -52
  59. package/lib/esm/components/Body/Body.mjs +74 -90
  60. package/lib/esm/components/Body/Cell.mjs +52 -52
  61. package/lib/esm/components/Body/LimitOverlay.mjs +52 -52
  62. package/lib/esm/components/Body/Row.mjs +71 -91
  63. package/lib/esm/components/Body/RowGroup.mjs +133 -0
  64. package/lib/esm/components/Body/style.shadow.css +13 -4
  65. package/lib/esm/components/DataTable/DataTable.mjs +68 -47
  66. package/lib/esm/components/Head/Column.mjs +51 -48
  67. package/lib/esm/components/Head/Group.mjs +37 -37
  68. package/lib/esm/components/Head/Head.mjs +91 -56
  69. package/lib/esm/components/RowSelector/RowsSelector.mjs +98 -0
  70. package/lib/esm/index.mjs +2 -0
  71. package/lib/esm/store/SelectableRows.mjs +200 -0
  72. package/lib/types/components/Body/Body.types.d.ts +2 -1
  73. package/lib/types/components/Body/Row.d.ts +0 -2
  74. package/lib/types/components/Body/Row.types.d.ts +2 -1
  75. package/lib/types/components/Body/RowGroup.d.ts +19 -0
  76. package/lib/types/components/DataTable/DataTable.types.d.ts +21 -12
  77. package/lib/types/components/Head/Column.d.ts +1 -0
  78. package/lib/types/components/Head/Head.types.d.ts +2 -1
  79. package/lib/types/components/RowSelector/RowsSelector.d.ts +31 -0
  80. package/lib/types/index.d.ts +2 -1
  81. package/lib/types/store/SelectableRows.d.ts +51 -0
  82. package/package.json +8 -8
@@ -17,7 +17,6 @@ var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/de
17
17
  var _core = require("@semcore/core");
18
18
  var _baseComponents = require("@semcore/base-components");
19
19
  var _button = require("@semcore/button");
20
- var _checkbox = _interopRequireDefault(require("@semcore/checkbox"));
21
20
  var _assignProps2 = require("@semcore/core/lib/utils/assignProps");
22
21
  var _isInteractiveElement = require("@semcore/core/lib/utils/isInteractiveElement");
23
22
  var _m = _interopRequireDefault(require("@semcore/icon/ChevronRight/m"));
@@ -27,60 +26,61 @@ var _LimitOverlay = require("./LimitOverlay");
27
26
  var _MergedCells = require("./MergedCells");
28
27
  var _AccordionRows = require("../AccordionRows/AccordionRows");
29
28
  var _DataTable = require("../DataTable/DataTable");
29
+ var _RowsSelector = require("../RowSelector/RowsSelector");
30
30
  /*!__reshadow-styles__:"./style.shadow.css"*/
31
- var style = (/*__reshadow_css_start__*/_core.sstyled.insert(/*__inner_css_start__*/".___SBody_17cjj_gg_,.___SRowGroup_17cjj_gg_,.___SRow_17cjj_gg_{display:contents}.___SAccordionRows_17cjj_gg_{display:grid;grid-column:1/-1;grid-row:var(--gridRow_17cjj);overflow:clip;transition-property:max-height;transition-duration:var(--duration_17cjj);transition-timing-function:linear;grid-template-columns:subgrid}.___SBody_17cjj_gg_.__compact_17cjj_gg_ .___SCell_17cjj_gg_{padding:var(--intergalactic-spacing-3x, 12px) var(--intergalactic-spacing-2x, 8px)}.___SBody_17cjj_gg_.__compact_17cjj_gg_ .___SCell_17cjj_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_17cjj) - 1)))}.___SBody_17cjj_gg_.__compact_17cjj_gg_ .___SRow_17cjj_gg_ .___SCellWrapper_17cjj_gg_:first-child .___SCell_17cjj_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_17cjj) - 1)))}.___SBody_17cjj_gg_.__compact_17cjj_gg_ .___SCollapseRow_17cjj_gg_._sideIndents_wide_17cjj_gg_ .___SCellWrapper_17cjj_gg_:first-child .___SCell_17cjj_gg_[data-aria-level],.___SBody_17cjj_gg_.__compact_17cjj_gg_ .___SRow_17cjj_gg_._sideIndents_wide_17cjj_gg_ .___SCellWrapper_17cjj_gg_:first-child .___SCell_17cjj_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_17cjj) - 1)))}.___SBody_17cjj_gg_.__compact_17cjj_gg_ .___SCell_17cjj_gg_ .___SAccordionToggle_17cjj_gg_{margin-right:var(--intergalactic-spacing-2x, 8px)}.___SCellWrapper_17cjj_gg_.__gridArea_17cjj_gg_,.___SCollapseRow_17cjj_gg_.__gridArea_17cjj_gg_,.___SRow_17cjj_gg_.__gridArea_17cjj_gg_{grid-area:var(--gridArea_17cjj)}.___SCellWrapper_17cjj_gg_{height:100%;overflow:hidden}.___SCollapseRow_17cjj_gg_.__gridArea_17cjj_gg_>.___SCellWrapper_17cjj_gg_,.___SRow_17cjj_gg_.__isAccordionRow_17cjj_gg_>.___SCellWrapper_17cjj_gg_{height:auto;overflow:auto}.___SAccordionRows_17cjj_gg_>.___SRow_17cjj_gg_.__isAccordionRow_17cjj_gg_:last-child>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_:not(.__withoutBorder_17cjj_gg_),.___SCollapseRow_17cjj_gg_.__gridArea_17cjj_gg_>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_:not(.__withoutBorder_17cjj_gg_){border-bottom:1px solid var(--intergalactic-border-table-accent, #a9abb6)}.___SCollapseRow_17cjj_gg_>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_{display:block}.___SCell_17cjj_gg_:not(.__theme_17cjj_gg_).__expanded_17cjj_gg_.__withAccordion_17cjj_gg_,.___SRow_17cjj_gg_.__active_17cjj_gg_>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_:not(.__theme_17cjj_gg_),.___SRow_17cjj_gg_._accordionType_row_17cjj_gg_.__expanded_17cjj_gg_>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_:not(.__theme_17cjj_gg_){background-color:var(--intergalactic-table-td-cell-active, #e6e7ed)}.___SCell_17cjj_gg_._theme_muted_17cjj_gg_.__expanded_17cjj_gg_.__withAccordion_17cjj_gg_{background-color:var(--intergalactic-table-td-cell-active, #e6e7ed)}.___SCell_17cjj_gg_._theme_info_17cjj_gg_.__expanded_17cjj_gg_.__withAccordion_17cjj_gg_{background-color:var(--intergalactic-table-td-cell-selected-hover, #c4e5fe)}.___SCell_17cjj_gg_._theme_success_17cjj_gg_.__expanded_17cjj_gg_.__withAccordion_17cjj_gg_{background-color:var(--intergalactic-table-td-cell-new-hover, #9ef2c9)}.___SCell_17cjj_gg_._theme_warning_17cjj_gg_.__expanded_17cjj_gg_.__withAccordion_17cjj_gg_{background-color:var(--intergalactic-table-td-cell-warning-hover, #ffdca2)}.___SCell_17cjj_gg_._theme_danger_17cjj_gg_.__expanded_17cjj_gg_.__withAccordion_17cjj_gg_{background-color:var(--intergalactic-table-td-cell-critical-hover, #ffd7df)}.___SCollapseRow_17cjj_gg_>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_:not(.__theme_17cjj_gg_),.___SRow_17cjj_gg_.__isAccordionRow_17cjj_gg_>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_:not(.__theme_17cjj_gg_){background-color:var(--intergalactic-table-td-cell-accordion, #f4f5f9)}@media (hover:hover){.___SRowGroup_17cjj_gg_:has(.___SCell_17cjj_gg_:hover)>.___SRow_17cjj_gg_:not(.__isNonInteractive_17cjj_gg_):not([aria-hidden])>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_[data-grouped-by=rowgroup]:not(.__theme_17cjj_gg_):not(.__expanded_17cjj_gg_.__withAccordion_17cjj_gg_):not([aria-hidden]),.___SRowGroup_17cjj_gg_:has(.___SCell_17cjj_gg_[data-grouped-by=rowgroup]:hover)>.___SRow_17cjj_gg_:not(.__isNonInteractive_17cjj_gg_):not([aria-hidden])>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_:not(.__theme_17cjj_gg_):not(.__expanded_17cjj_gg_.__withAccordion_17cjj_gg_):not([aria-hidden]),.___SRow_17cjj_gg_:not(._accordionType_row_17cjj_gg_.__expanded_17cjj_gg_):hover:not(.__isNonInteractive_17cjj_gg_):not([aria-hidden]):not(:has(.___SLimitOverlayCellWrapper_17cjj_gg_:hover))>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_:not(.__theme_17cjj_gg_):not(.__expanded_17cjj_gg_.__withAccordion_17cjj_gg_):not([aria-hidden]){background-color:var(--intergalactic-table-td-cell-hover, #f0f0f4)}.___SRowGroup_17cjj_gg_:has(.___SCell_17cjj_gg_:hover)>.___SRow_17cjj_gg_._theme_muted_17cjj_gg_:not(.__isNonInteractive_17cjj_gg_):not([aria-hidden])>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_[data-grouped-by=rowgroup]:not(.__theme_17cjj_gg_):not([aria-hidden]),.___SRowGroup_17cjj_gg_:has(.___SCell_17cjj_gg_:hover)>.___SRow_17cjj_gg_:not(.__isNonInteractive_17cjj_gg_):not([aria-hidden])>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_[data-grouped-by=rowgroup]._theme_muted_17cjj_gg_:not([aria-hidden]),.___SRowGroup_17cjj_gg_:has(.___SCell_17cjj_gg_[data-grouped-by=rowgroup]:hover)>.___SRow_17cjj_gg_._theme_muted_17cjj_gg_:not(.__isNonInteractive_17cjj_gg_):not([aria-hidden])>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_:not(.__theme_17cjj_gg_):not([aria-hidden]),.___SRowGroup_17cjj_gg_:has(.___SCell_17cjj_gg_[data-grouped-by=rowgroup]:hover)>.___SRow_17cjj_gg_:not(.__isNonInteractive_17cjj_gg_):not([aria-hidden])>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_._theme_muted_17cjj_gg_:not([aria-hidden]),.___SRow_17cjj_gg_._theme_muted_17cjj_gg_:hover:not(.__expanded_17cjj_gg_.__isNonInteractive_17cjj_gg_):not([aria-hidden]):not(:has(.___SLimitOverlayCellWrapper_17cjj_gg_:hover))>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_:not(.__theme_17cjj_gg_):not(.__expanded_17cjj_gg_.__withAccordion_17cjj_gg_):not([aria-hidden]),.___SRow_17cjj_gg_:hover:not(.__isNonInteractive_17cjj_gg_):not([aria-hidden]):not(:has(.___SLimitOverlayCellWrapper_17cjj_gg_:hover))>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_._theme_muted_17cjj_gg_:not([aria-hidden]){background-color:var(--intergalactic-table-td-cell-active, #e6e7ed)}.___SRowGroup_17cjj_gg_:has(.___SCell_17cjj_gg_:hover)>.___SRow_17cjj_gg_._theme_info_17cjj_gg_:not(.__isNonInteractive_17cjj_gg_):not([aria-hidden])>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_[data-grouped-by=rowgroup]:not(.__theme_17cjj_gg_):not([aria-hidden]),.___SRowGroup_17cjj_gg_:has(.___SCell_17cjj_gg_:hover)>.___SRow_17cjj_gg_:not(.__isNonInteractive_17cjj_gg_):not([aria-hidden])>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_[data-grouped-by=rowgroup]._theme_info_17cjj_gg_:not([aria-hidden]),.___SRowGroup_17cjj_gg_:has(.___SCell_17cjj_gg_[data-grouped-by=rowgroup]:hover)>.___SRow_17cjj_gg_._theme_info_17cjj_gg_:not(.__isNonInteractive_17cjj_gg_):not([aria-hidden])>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_:not(.__theme_17cjj_gg_):not([aria-hidden]),.___SRowGroup_17cjj_gg_:has(.___SCell_17cjj_gg_[data-grouped-by=rowgroup]:hover)>.___SRow_17cjj_gg_:not(.__isNonInteractive_17cjj_gg_):not([aria-hidden])>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_._theme_info_17cjj_gg_:not([aria-hidden]),.___SRow_17cjj_gg_._theme_info_17cjj_gg_:hover:not(.__expanded_17cjj_gg_.__isNonInteractive_17cjj_gg_):not([aria-hidden]):not(:has(.___SLimitOverlayCellWrapper_17cjj_gg_:hover))>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_:not(.__theme_17cjj_gg_):not(.__expanded_17cjj_gg_.__withAccordion_17cjj_gg_):not([aria-hidden]),.___SRow_17cjj_gg_:hover:not(.__isNonInteractive_17cjj_gg_):not([aria-hidden]):not(:has(.___SLimitOverlayCellWrapper_17cjj_gg_:hover))>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_._theme_info_17cjj_gg_:not([aria-hidden]){background-color:var(--intergalactic-table-td-cell-selected-hover, #c4e5fe)}.___SRowGroup_17cjj_gg_:has(.___SCell_17cjj_gg_:hover)>.___SRow_17cjj_gg_._theme_success_17cjj_gg_:not(.__isNonInteractive_17cjj_gg_):not([aria-hidden])>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_[data-grouped-by=rowgroup]:not(.__theme_17cjj_gg_):not(.__expanded_17cjj_gg_.__withAccordion_17cjj_gg_):not([aria-hidden]),.___SRowGroup_17cjj_gg_:has(.___SCell_17cjj_gg_:hover)>.___SRow_17cjj_gg_:not(.__isNonInteractive_17cjj_gg_):not([aria-hidden])>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_[data-grouped-by=rowgroup]._theme_success_17cjj_gg_:not([aria-hidden]),.___SRowGroup_17cjj_gg_:has(.___SCell_17cjj_gg_[data-grouped-by=rowgroup]:hover)>.___SRow_17cjj_gg_._theme_success_17cjj_gg_:not(.__isNonInteractive_17cjj_gg_):not([aria-hidden])>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_:not(.__theme_17cjj_gg_):not([aria-hidden]),.___SRowGroup_17cjj_gg_:has(.___SCell_17cjj_gg_[data-grouped-by=rowgroup]:hover)>.___SRow_17cjj_gg_:not(.__isNonInteractive_17cjj_gg_):not([aria-hidden])>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_._theme_success_17cjj_gg_:not([aria-hidden]),.___SRow_17cjj_gg_._theme_success_17cjj_gg_:hover:not(.__expanded_17cjj_gg_.__isNonInteractive_17cjj_gg_):not([aria-hidden]):not(:has(.___SLimitOverlayCellWrapper_17cjj_gg_:hover))>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_:not(.__theme_17cjj_gg_):not(.__expanded_17cjj_gg_.__withAccordion_17cjj_gg_):not([aria-hidden]),.___SRow_17cjj_gg_:hover:not(.__isNonInteractive_17cjj_gg_):not([aria-hidden]):not(:has(.___SLimitOverlayCellWrapper_17cjj_gg_:hover))>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_._theme_success_17cjj_gg_:not([aria-hidden]){background-color:var(--intergalactic-table-td-cell-new-hover, #9ef2c9)}.___SRowGroup_17cjj_gg_:has(.___SCell_17cjj_gg_:hover)>.___SRow_17cjj_gg_._theme_warning_17cjj_gg_:not(.__isNonInteractive_17cjj_gg_):not([aria-hidden])>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_[data-grouped-by=rowgroup]:not(.__theme_17cjj_gg_):not([aria-hidden]),.___SRowGroup_17cjj_gg_:has(.___SCell_17cjj_gg_:hover)>.___SRow_17cjj_gg_:not(.__isNonInteractive_17cjj_gg_):not([aria-hidden])>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_[data-grouped-by=rowgroup]._theme_warning_17cjj_gg_:not([aria-hidden]),.___SRowGroup_17cjj_gg_:has(.___SCell_17cjj_gg_[data-grouped-by=rowgroup]:hover)>.___SRow_17cjj_gg_._theme_warning_17cjj_gg_:not(.__isNonInteractive_17cjj_gg_):not([aria-hidden])>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_:not(.__theme_17cjj_gg_):not([aria-hidden]),.___SRowGroup_17cjj_gg_:has(.___SCell_17cjj_gg_[data-grouped-by=rowgroup]:hover)>.___SRow_17cjj_gg_:not(.__isNonInteractive_17cjj_gg_):not([aria-hidden])>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_._theme_warning_17cjj_gg_:not([aria-hidden]),.___SRow_17cjj_gg_._theme_warning_17cjj_gg_:hover:not(.__expanded_17cjj_gg_.__isNonInteractive_17cjj_gg_):not([aria-hidden]):not(:has(.___SLimitOverlayCellWrapper_17cjj_gg_:hover))>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_:not(.__theme_17cjj_gg_):not(.__expanded_17cjj_gg_.__withAccordion_17cjj_gg_):not([aria-hidden]),.___SRow_17cjj_gg_:hover:not(.__isNonInteractive_17cjj_gg_):not([aria-hidden]):not(:has(.___SLimitOverlayCellWrapper_17cjj_gg_:hover))>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_._theme_warning_17cjj_gg_:not([aria-hidden]){background-color:var(--intergalactic-table-td-cell-warning-hover, #ffdca2)}.___SRowGroup_17cjj_gg_:has(.___SCell_17cjj_gg_:hover)>.___SRow_17cjj_gg_._theme_danger_17cjj_gg_:not(.__isNonInteractive_17cjj_gg_):not([aria-hidden])>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_[data-grouped-by=rowgroup]:not(.__theme_17cjj_gg_):not([aria-hidden]),.___SRowGroup_17cjj_gg_:has(.___SCell_17cjj_gg_:hover)>.___SRow_17cjj_gg_:not(.__isNonInteractive_17cjj_gg_):not([aria-hidden])>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_[data-grouped-by=rowgroup]._theme_danger_17cjj_gg_:not([aria-hidden]),.___SRowGroup_17cjj_gg_:has(.___SCell_17cjj_gg_[data-grouped-by=rowgroup]:hover)>.___SRow_17cjj_gg_._theme_danger_17cjj_gg_:not(.__isNonInteractive_17cjj_gg_):not([aria-hidden])>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_:not(.__theme_17cjj_gg_):not([aria-hidden]),.___SRowGroup_17cjj_gg_:has(.___SCell_17cjj_gg_[data-grouped-by=rowgroup]:hover)>.___SRow_17cjj_gg_:not(.__isNonInteractive_17cjj_gg_):not([aria-hidden])>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_._theme_danger_17cjj_gg_:not([aria-hidden]),.___SRow_17cjj_gg_._theme_danger_17cjj_gg_:hover:not(.__expanded_17cjj_gg_.__isNonInteractive_17cjj_gg_):not([aria-hidden]):not(:has(.___SLimitOverlayCellWrapper_17cjj_gg_:hover))>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_:not(.__theme_17cjj_gg_):not(.__expanded_17cjj_gg_.__withAccordion_17cjj_gg_):not([aria-hidden]),.___SRow_17cjj_gg_:hover:not(.__isNonInteractive_17cjj_gg_):not([aria-hidden]):not(:has(.___SLimitOverlayCellWrapper_17cjj_gg_:hover))>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_._theme_danger_17cjj_gg_:not([aria-hidden]){background-color:var(--intergalactic-table-td-cell-critical-hover, #ffd7df)}}.___SRow_17cjj_gg_._theme_muted_17cjj_gg_ .___SCell_17cjj_gg_:not(.__theme_17cjj_gg_):not(.__expanded_17cjj_gg_.__withAccordion_17cjj_gg_){background-color:var(--intergalactic-table-td-cell-unread, #f4f5f9)}.___SRow_17cjj_gg_._theme_muted_17cjj_gg_ .___SCell_17cjj_gg_.__expanded_17cjj_gg_.__withAccordion_17cjj_gg_:not(.__theme_17cjj_gg_),.___SRow_17cjj_gg_._theme_muted_17cjj_gg_.__active_17cjj_gg_>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_:not(.__theme_17cjj_gg_){background-color:var(--intergalactic-table-td-cell-active, #e6e7ed)}.___SRow_17cjj_gg_._theme_info_17cjj_gg_ .___SCell_17cjj_gg_:not(.__theme_17cjj_gg_):not(.__expanded_17cjj_gg_.__withAccordion_17cjj_gg_){background-color:var(--intergalactic-table-td-cell-selected, #e9f7ff)}.___SRow_17cjj_gg_._theme_info_17cjj_gg_ .___SCell_17cjj_gg_.__expanded_17cjj_gg_.__withAccordion_17cjj_gg_:not(.__theme_17cjj_gg_),.___SRow_17cjj_gg_._theme_info_17cjj_gg_.__active_17cjj_gg_>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_:not(.__theme_17cjj_gg_){background-color:var(--intergalactic-table-td-cell-selected-active, #c4e5fe)}.___SRow_17cjj_gg_._theme_success_17cjj_gg_ .___SCell_17cjj_gg_:not(.__theme_17cjj_gg_):not(.__expanded_17cjj_gg_.__withAccordion_17cjj_gg_){background-color:var(--intergalactic-table-td-cell-new, #dbfee8)}.___SRow_17cjj_gg_._theme_success_17cjj_gg_ .___SCell_17cjj_gg_.__expanded_17cjj_gg_.__withAccordion_17cjj_gg_:not(.__theme_17cjj_gg_),.___SRow_17cjj_gg_._theme_success_17cjj_gg_.__active_17cjj_gg_>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_:not(.__theme_17cjj_gg_){background-color:var(--intergalactic-table-td-cell-new-active, #9ef2c9)}.___SRow_17cjj_gg_._theme_warning_17cjj_gg_ .___SCell_17cjj_gg_:not(.__theme_17cjj_gg_):not(.__expanded_17cjj_gg_.__withAccordion_17cjj_gg_){background-color:var(--intergalactic-table-td-cell-warning, #fff3d9)}.___SRow_17cjj_gg_._theme_warning_17cjj_gg_ .___SCell_17cjj_gg_.__expanded_17cjj_gg_.__withAccordion_17cjj_gg_:not(.__theme_17cjj_gg_),.___SRow_17cjj_gg_._theme_warning_17cjj_gg_.__active_17cjj_gg_>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_:not(.__theme_17cjj_gg_){background-color:var(--intergalactic-table-td-cell-warning-active, #ffdca2)}.___SRow_17cjj_gg_._theme_danger_17cjj_gg_ .___SCell_17cjj_gg_:not(.__theme_17cjj_gg_):not(.__expanded_17cjj_gg_.__withAccordion_17cjj_gg_){background-color:var(--intergalactic-table-td-cell-critical, #fff0f7)}.___SRow_17cjj_gg_._theme_danger_17cjj_gg_ .___SCell_17cjj_gg_.__expanded_17cjj_gg_.__withAccordion_17cjj_gg_:not(.__theme_17cjj_gg_),.___SRow_17cjj_gg_._theme_danger_17cjj_gg_.__active_17cjj_gg_>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_:not(.__theme_17cjj_gg_){background-color:var(--intergalactic-table-td-cell-critical-active, #ffd7df)}.___SCell_17cjj_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_17cjj_gg_ .___SAccordionToggle_17cjj_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_17cjj_gg_ .___SAccordionToggle_17cjj_gg_ svg{transition:transform calc(var(--intergalactic-duration-accordion, 200)*1ms) ease-out}.___SCell_17cjj_gg_ .___SAccordionToggle_17cjj_gg_.__expanded_17cjj_gg_ svg{transform:rotate(90deg)}.___SCell_17cjj_gg_.__withoutBorder_17cjj_gg_{border-bottom:none}.___SCell_17cjj_gg_.__withAccordion_17cjj_gg_,.___SCell_17cjj_gg_._name_Symbol\\(SELECT_ALL\\)_17cjj_gg_,.___SRow_17cjj_gg_._accordionType_row_17cjj_gg_>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_{cursor:pointer}.___SCheckboxCell_17cjj_gg_[aria-hidden]{filter:blur(3px);pointer-events:none}.___SCell_17cjj_gg_._use_primary_17cjj_gg_{padding:var(--intergalactic-spacing-3x, 12px);min-height:45px;background-color:var(--intergalactic-bg-primary-neutral, #ffffff)}.___SCell_17cjj_gg_._use_primary_17cjj_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_17cjj) - 1)))}.___SCell_17cjj_gg_._use_secondary_17cjj_gg_{padding:var(--intergalactic-spacing-2x, 8px);min-height:37px;background-color:var(--intergalactic-bg-primary-neutral, #ffffff)}.___SCell_17cjj_gg_._use_secondary_17cjj_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_17cjj) - 1)))}.___SCell_17cjj_gg_._borders_both_17cjj_gg_,.___SCell_17cjj_gg_._borders_left_17cjj_gg_{border-left:1px solid var(--intergalactic-border-secondary, #e0e1e9)}.___SCell_17cjj_gg_._borders_both_17cjj_gg_,.___SCell_17cjj_gg_._borders_right_17cjj_gg_{border-right:1px solid var(--intergalactic-border-secondary, #e0e1e9)}.___SCellWrapper_17cjj_gg_.__fixed_17cjj_gg_{position:sticky;z-index:2}.___SCell_17cjj_gg_._theme_muted_17cjj_gg_{background-color:var(--intergalactic-table-td-cell-unread, #f4f5f9)}.___SCell_17cjj_gg_._theme_info_17cjj_gg_{background-color:var(--intergalactic-table-td-cell-selected, #e9f7ff)}.___SCell_17cjj_gg_._theme_success_17cjj_gg_{background-color:var(--intergalactic-table-td-cell-new, #dbfee8)}.___SCell_17cjj_gg_._theme_warning_17cjj_gg_{background-color:var(--intergalactic-table-td-cell-warning, #fff3d9)}.___SCell_17cjj_gg_._theme_danger_17cjj_gg_{background-color:var(--intergalactic-table-td-cell-critical, #fff0f7)}.___SSpinContainer_17cjj_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_17cjj_gg_:focus-visible{z-index:15}.___SSpinContainer_17cjj_gg_.__headerHeight_17cjj_gg_{top:var(--headerHeight_17cjj)}.___SEmptyData_17cjj_gg_{grid-column:1/-1}.___SCollapseRow_17cjj_gg_._sideIndents_wide_17cjj_gg_ .___SCellWrapper_17cjj_gg_:first-child .___SCell_17cjj_gg_,.___SRow_17cjj_gg_._sideIndents_wide_17cjj_gg_ .___SCellWrapper_17cjj_gg_:first-child .___SCell_17cjj_gg_{padding-left:var(--intergalactic-spacing-5x, 20px)}.___SCollapseRow_17cjj_gg_._sideIndents_wide_17cjj_gg_ .___SCellWrapper_17cjj_gg_:first-child .___SCell_17cjj_gg_[data-aria-level],.___SRow_17cjj_gg_._sideIndents_wide_17cjj_gg_ .___SCellWrapper_17cjj_gg_:first-child .___SCell_17cjj_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_17cjj) - 1)))}.___SCollapseRow_17cjj_gg_._sideIndents_wide_17cjj_gg_ .___SCellWrapper_17cjj_gg_:last-child .___SCell_17cjj_gg_,.___SRow_17cjj_gg_._sideIndents_wide_17cjj_gg_ .___SCellWrapper_17cjj_gg_:last-child .___SCell_17cjj_gg_{padding-right:var(--intergalactic-spacing-5x, 20px)}.___SCellWrapper_17cjj_gg_.__fixed_17cjj_gg_.__shadowVertical_17cjj_gg_:after{content:\"\";position:absolute;pointer-events:none;display:none;top:0;width:5px;height:100%;z-index:5}.___SCellWrapper_17cjj_gg_._fixed_left_17cjj_gg_._shadowVertical_median_17cjj_gg_,.___SCellWrapper_17cjj_gg_._fixed_left_17cjj_gg_._shadowVertical_start_17cjj_gg_{margin-right:-5px}.___SCellWrapper_17cjj_gg_._fixed_left_17cjj_gg_._shadowVertical_median_17cjj_gg_:after,.___SCellWrapper_17cjj_gg_._fixed_left_17cjj_gg_._shadowVertical_start_17cjj_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_17cjj_gg_._fixed_left_17cjj_gg_._shadowVertical_median_17cjj_gg_ .___SCell_17cjj_gg_,.___SCellWrapper_17cjj_gg_._fixed_left_17cjj_gg_._shadowVertical_start_17cjj_gg_ .___SCell_17cjj_gg_{margin-right:5px}.___SCellWrapper_17cjj_gg_._fixed_right_17cjj_gg_._shadowVertical_end_17cjj_gg_,.___SCellWrapper_17cjj_gg_._fixed_right_17cjj_gg_._shadowVertical_median_17cjj_gg_{margin-left:-5px}.___SCellWrapper_17cjj_gg_._fixed_right_17cjj_gg_._shadowVertical_end_17cjj_gg_:after,.___SCellWrapper_17cjj_gg_._fixed_right_17cjj_gg_._shadowVertical_median_17cjj_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_17cjj_gg_._fixed_right_17cjj_gg_._shadowVertical_end_17cjj_gg_ .___SCell_17cjj_gg_,.___SCellWrapper_17cjj_gg_._fixed_right_17cjj_gg_._shadowVertical_median_17cjj_gg_ .___SCell_17cjj_gg_{margin-left:5px}.___SLimitOverlayCellWrapper_17cjj_gg_.__gridArea_17cjj_gg_{width:100%;height:100%;align-items:center;justify-content:center;z-index:16;grid-area:var(--gridArea_17cjj);backdrop-filter:blur(6px)}.___SLimitOverlayCellWrapper_17cjj_gg_.__left_17cjj_gg_{position:sticky;left:var(---left_17cjj)}.___SCell_17cjj_gg_.__innerOutline_17cjj_gg_:focus-visible{transition:none}", /*__inner_css_end__*/"17cjj_gg_"),
31
+ var style = (/*__reshadow_css_start__*/_core.sstyled.insert(/*__inner_css_start__*/".___SBody_1x6eq_gg_,.___SRowGroup_1x6eq_gg_,.___SRow_1x6eq_gg_{display:contents}.___SAccordionRows_1x6eq_gg_{display:grid;grid-column:1/-1;grid-row:var(--gridRow_1x6eq);overflow:clip;transition-property:max-height;transition-duration:var(--duration_1x6eq);transition-timing-function:linear;grid-template-columns:subgrid}.___SBody_1x6eq_gg_.__compact_1x6eq_gg_ .___SCell_1x6eq_gg_{padding:var(--intergalactic-spacing-3x, 12px) var(--intergalactic-spacing-2x, 8px)}.___SBody_1x6eq_gg_.__compact_1x6eq_gg_ .___SCell_1x6eq_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_1x6eq) - 1)))}.___SBody_1x6eq_gg_.__compact_1x6eq_gg_ .___SRow_1x6eq_gg_ .___SCellWrapper_1x6eq_gg_:first-child .___SCell_1x6eq_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_1x6eq) - 1)))}.___SBody_1x6eq_gg_.__compact_1x6eq_gg_ .___SCollapseRow_1x6eq_gg_._sideIndents_wide_1x6eq_gg_ .___SCellWrapper_1x6eq_gg_:first-child .___SCell_1x6eq_gg_[data-aria-level],.___SBody_1x6eq_gg_.__compact_1x6eq_gg_ .___SRow_1x6eq_gg_._sideIndents_wide_1x6eq_gg_ .___SCellWrapper_1x6eq_gg_:first-child .___SCell_1x6eq_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_1x6eq) - 1)))}.___SBody_1x6eq_gg_.__compact_1x6eq_gg_ .___SCell_1x6eq_gg_ .___SAccordionToggle_1x6eq_gg_{margin-right:var(--intergalactic-spacing-2x, 8px)}.___SCellWrapper_1x6eq_gg_.__gridArea_1x6eq_gg_,.___SCollapseRow_1x6eq_gg_.__gridArea_1x6eq_gg_,.___SRow_1x6eq_gg_.__gridArea_1x6eq_gg_{grid-area:var(--gridArea_1x6eq)}.___SCellWrapper_1x6eq_gg_{height:100%;overflow:hidden}.___SCollapseRow_1x6eq_gg_.__gridArea_1x6eq_gg_>.___SCellWrapper_1x6eq_gg_,.___SRow_1x6eq_gg_.__isAccordionRow_1x6eq_gg_>.___SCellWrapper_1x6eq_gg_{height:auto;overflow:auto}.___SAccordionRows_1x6eq_gg_>.___SRow_1x6eq_gg_.__isAccordionRow_1x6eq_gg_:last-child>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_:not(.__withoutBorder_1x6eq_gg_),.___SCollapseRow_1x6eq_gg_.__gridArea_1x6eq_gg_>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_:not(.__withoutBorder_1x6eq_gg_){border-bottom:1px solid var(--intergalactic-border-table-accent, #a9abb6)}.___SCollapseRow_1x6eq_gg_>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_{display:block}.___SCell_1x6eq_gg_:not(.__theme_1x6eq_gg_).__expanded_1x6eq_gg_.__withAccordion_1x6eq_gg_,.___SRow_1x6eq_gg_.__active_1x6eq_gg_>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_:not(.__theme_1x6eq_gg_),.___SRow_1x6eq_gg_._accordionType_row_1x6eq_gg_.__expanded_1x6eq_gg_>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_:not(.__theme_1x6eq_gg_){background-color:var(--intergalactic-table-td-cell-active, #e6e7ed)}.___SCell_1x6eq_gg_._theme_muted_1x6eq_gg_.__expanded_1x6eq_gg_.__withAccordion_1x6eq_gg_{background-color:var(--intergalactic-table-td-cell-active, #e6e7ed)}.___SCell_1x6eq_gg_._theme_info_1x6eq_gg_.__expanded_1x6eq_gg_.__withAccordion_1x6eq_gg_{background-color:var(--intergalactic-table-td-cell-selected-hover, #c4e5fe)}.___SCell_1x6eq_gg_._theme_success_1x6eq_gg_.__expanded_1x6eq_gg_.__withAccordion_1x6eq_gg_{background-color:var(--intergalactic-table-td-cell-new-hover, #9ef2c9)}.___SCell_1x6eq_gg_._theme_warning_1x6eq_gg_.__expanded_1x6eq_gg_.__withAccordion_1x6eq_gg_{background-color:var(--intergalactic-table-td-cell-warning-hover, #ffdca2)}.___SCell_1x6eq_gg_._theme_danger_1x6eq_gg_.__expanded_1x6eq_gg_.__withAccordion_1x6eq_gg_{background-color:var(--intergalactic-table-td-cell-critical-hover, #ffd7df)}.___SCollapseRow_1x6eq_gg_>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_:not(.__theme_1x6eq_gg_),.___SRow_1x6eq_gg_.__isAccordionRow_1x6eq_gg_>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_:not(.__theme_1x6eq_gg_){background-color:var(--intergalactic-table-td-cell-accordion, #f4f5f9)}@media (hover:hover){.___SRowGroup_1x6eq_gg_:has(.___SCell_1x6eq_gg_:hover):not(:has([data-row-selector=true] input:checked))>.___SRow_1x6eq_gg_:not(.__isNonInteractive_1x6eq_gg_):not([aria-hidden])>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_[data-grouped-by=rowgroup]:not(.__theme_1x6eq_gg_):not(.__expanded_1x6eq_gg_.__withAccordion_1x6eq_gg_):not([aria-hidden]),.___SRowGroup_1x6eq_gg_:has(.___SCell_1x6eq_gg_[data-grouped-by=rowgroup]:hover):not(:has([data-row-selector=true] input:checked))>.___SRow_1x6eq_gg_:not(.__isNonInteractive_1x6eq_gg_):not([aria-hidden])>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_:not(.__theme_1x6eq_gg_):not(.__expanded_1x6eq_gg_.__withAccordion_1x6eq_gg_):not([aria-hidden]),:not(.___SRowGroup_1x6eq_gg_:has([data-row-selector=true] input:checked))>.___SRow_1x6eq_gg_:not(._accordionType_row_1x6eq_gg_.__expanded_1x6eq_gg_):hover:not(.__isNonInteractive_1x6eq_gg_):not(:has([data-row-selector=true] input:checked)):not([aria-hidden]):not(:has(.___SLimitOverlayCellWrapper_1x6eq_gg_:hover))>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_:not(.__theme_1x6eq_gg_):not(.__expanded_1x6eq_gg_.__withAccordion_1x6eq_gg_):not([aria-hidden]){background-color:var(--intergalactic-table-td-cell-hover, #f0f0f4)}.___SRowGroup_1x6eq_gg_:has(.___SCell_1x6eq_gg_:hover)>.___SRow_1x6eq_gg_._theme_muted_1x6eq_gg_:not(.__isNonInteractive_1x6eq_gg_):not([aria-hidden])>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_[data-grouped-by=rowgroup]:not(.__theme_1x6eq_gg_):not([aria-hidden]),.___SRowGroup_1x6eq_gg_:has(.___SCell_1x6eq_gg_:hover)>.___SRow_1x6eq_gg_:not(.__isNonInteractive_1x6eq_gg_):not([aria-hidden])>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_[data-grouped-by=rowgroup]._theme_muted_1x6eq_gg_:not([aria-hidden]),.___SRowGroup_1x6eq_gg_:has(.___SCell_1x6eq_gg_[data-grouped-by=rowgroup]:hover)>.___SRow_1x6eq_gg_._theme_muted_1x6eq_gg_:not(.__isNonInteractive_1x6eq_gg_):not([aria-hidden])>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_:not(.__theme_1x6eq_gg_):not([aria-hidden]),.___SRowGroup_1x6eq_gg_:has(.___SCell_1x6eq_gg_[data-grouped-by=rowgroup]:hover)>.___SRow_1x6eq_gg_:not(.__isNonInteractive_1x6eq_gg_):not([aria-hidden])>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_._theme_muted_1x6eq_gg_:not([aria-hidden]),.___SRow_1x6eq_gg_._theme_muted_1x6eq_gg_:hover:not(.__expanded_1x6eq_gg_.__isNonInteractive_1x6eq_gg_):not([aria-hidden]):not(:has(.___SLimitOverlayCellWrapper_1x6eq_gg_:hover))>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_:not(.__theme_1x6eq_gg_):not(.__expanded_1x6eq_gg_.__withAccordion_1x6eq_gg_):not([aria-hidden]),.___SRow_1x6eq_gg_:hover:not(.__isNonInteractive_1x6eq_gg_):not([aria-hidden]):not(:has(.___SLimitOverlayCellWrapper_1x6eq_gg_:hover))>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_._theme_muted_1x6eq_gg_:not([aria-hidden]){background-color:var(--intergalactic-table-td-cell-active, #e6e7ed)}.___SRowGroup_1x6eq_gg_:has(.___SCell_1x6eq_gg_:hover):has([data-row-selector=true] input:checked)>.___SRow_1x6eq_gg_:not(.__isNonInteractive_1x6eq_gg_):not([aria-hidden])>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_[data-grouped-by=rowgroup]:not([aria-hidden]),.___SRowGroup_1x6eq_gg_:has(.___SCell_1x6eq_gg_:hover)>.___SRow_1x6eq_gg_._theme_info_1x6eq_gg_:not(.__isNonInteractive_1x6eq_gg_):not([aria-hidden])>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_[data-grouped-by=rowgroup]:not(.__theme_1x6eq_gg_):not([aria-hidden]),.___SRowGroup_1x6eq_gg_:has(.___SCell_1x6eq_gg_:hover)>.___SRow_1x6eq_gg_:not(.__isNonInteractive_1x6eq_gg_):not([aria-hidden])>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_[data-grouped-by=rowgroup]._theme_info_1x6eq_gg_:not([aria-hidden]),.___SRowGroup_1x6eq_gg_:has(.___SCell_1x6eq_gg_[data-grouped-by=rowgroup]:hover):has([data-row-selector=true] input:checked) .___SRow_1x6eq_gg_:not(.__isNonInteractive_1x6eq_gg_):not([aria-hidden])>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_:not([aria-hidden]),.___SRowGroup_1x6eq_gg_:has(.___SCell_1x6eq_gg_[data-grouped-by=rowgroup]:hover)>.___SRow_1x6eq_gg_._theme_info_1x6eq_gg_:not(.__isNonInteractive_1x6eq_gg_):not([aria-hidden])>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_:not(.__theme_1x6eq_gg_):not([aria-hidden]),.___SRowGroup_1x6eq_gg_:has(.___SCell_1x6eq_gg_[data-grouped-by=rowgroup]:hover)>.___SRow_1x6eq_gg_:not(.__isNonInteractive_1x6eq_gg_):not([aria-hidden])>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_._theme_info_1x6eq_gg_:not([aria-hidden]),.___SRowGroup_1x6eq_gg_:has([data-row-selector=true] input:checked)>.___SRow_1x6eq_gg_:hover:not(.__isNonInteractive_1x6eq_gg_):not([aria-hidden])>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_:not([aria-hidden]),.___SRow_1x6eq_gg_._theme_info_1x6eq_gg_:hover:not(.__expanded_1x6eq_gg_.__isNonInteractive_1x6eq_gg_):not([aria-hidden]):not(:has(.___SLimitOverlayCellWrapper_1x6eq_gg_:hover))>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_:not(.__theme_1x6eq_gg_):not(.__expanded_1x6eq_gg_.__withAccordion_1x6eq_gg_):not([aria-hidden]),.___SRow_1x6eq_gg_:hover:has([data-row-selector=true] input:checked):not(.__isNonInteractive_1x6eq_gg_):not([aria-hidden]):not(:has(.___SLimitOverlayCellWrapper_1x6eq_gg_:hover))>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_:not([aria-hidden]),.___SRow_1x6eq_gg_:hover:not(.__isNonInteractive_1x6eq_gg_):not([aria-hidden]):not(:has(.___SLimitOverlayCellWrapper_1x6eq_gg_:hover))>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_._theme_info_1x6eq_gg_:not([aria-hidden]){background-color:var(--intergalactic-table-td-cell-selected-hover, #c4e5fe)}.___SRowGroup_1x6eq_gg_:has(.___SCell_1x6eq_gg_:hover)>.___SRow_1x6eq_gg_._theme_success_1x6eq_gg_:not(.__isNonInteractive_1x6eq_gg_):not([aria-hidden])>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_[data-grouped-by=rowgroup]:not(.__theme_1x6eq_gg_):not(.__expanded_1x6eq_gg_.__withAccordion_1x6eq_gg_):not([aria-hidden]),.___SRowGroup_1x6eq_gg_:has(.___SCell_1x6eq_gg_:hover)>.___SRow_1x6eq_gg_:not(.__isNonInteractive_1x6eq_gg_):not([aria-hidden])>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_[data-grouped-by=rowgroup]._theme_success_1x6eq_gg_:not([aria-hidden]),.___SRowGroup_1x6eq_gg_:has(.___SCell_1x6eq_gg_[data-grouped-by=rowgroup]:hover)>.___SRow_1x6eq_gg_._theme_success_1x6eq_gg_:not(.__isNonInteractive_1x6eq_gg_):not([aria-hidden])>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_:not(.__theme_1x6eq_gg_):not([aria-hidden]),.___SRowGroup_1x6eq_gg_:has(.___SCell_1x6eq_gg_[data-grouped-by=rowgroup]:hover)>.___SRow_1x6eq_gg_:not(.__isNonInteractive_1x6eq_gg_):not([aria-hidden])>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_._theme_success_1x6eq_gg_:not([aria-hidden]),.___SRow_1x6eq_gg_._theme_success_1x6eq_gg_:hover:not(.__expanded_1x6eq_gg_.__isNonInteractive_1x6eq_gg_):not([aria-hidden]):not(:has(.___SLimitOverlayCellWrapper_1x6eq_gg_:hover))>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_:not(.__theme_1x6eq_gg_):not(.__expanded_1x6eq_gg_.__withAccordion_1x6eq_gg_):not([aria-hidden]),.___SRow_1x6eq_gg_:hover:not(.__isNonInteractive_1x6eq_gg_):not([aria-hidden]):not(:has(.___SLimitOverlayCellWrapper_1x6eq_gg_:hover))>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_._theme_success_1x6eq_gg_:not([aria-hidden]){background-color:var(--intergalactic-table-td-cell-new-hover, #9ef2c9)}.___SRowGroup_1x6eq_gg_:has(.___SCell_1x6eq_gg_:hover)>.___SRow_1x6eq_gg_._theme_warning_1x6eq_gg_:not(.__isNonInteractive_1x6eq_gg_):not([aria-hidden])>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_[data-grouped-by=rowgroup]:not(.__theme_1x6eq_gg_):not([aria-hidden]),.___SRowGroup_1x6eq_gg_:has(.___SCell_1x6eq_gg_:hover)>.___SRow_1x6eq_gg_:not(.__isNonInteractive_1x6eq_gg_):not([aria-hidden])>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_[data-grouped-by=rowgroup]._theme_warning_1x6eq_gg_:not([aria-hidden]),.___SRowGroup_1x6eq_gg_:has(.___SCell_1x6eq_gg_[data-grouped-by=rowgroup]:hover)>.___SRow_1x6eq_gg_._theme_warning_1x6eq_gg_:not(.__isNonInteractive_1x6eq_gg_):not([aria-hidden])>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_:not(.__theme_1x6eq_gg_):not([aria-hidden]),.___SRowGroup_1x6eq_gg_:has(.___SCell_1x6eq_gg_[data-grouped-by=rowgroup]:hover)>.___SRow_1x6eq_gg_:not(.__isNonInteractive_1x6eq_gg_):not([aria-hidden])>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_._theme_warning_1x6eq_gg_:not([aria-hidden]),.___SRow_1x6eq_gg_._theme_warning_1x6eq_gg_:hover:not(.__expanded_1x6eq_gg_.__isNonInteractive_1x6eq_gg_):not([aria-hidden]):not(:has(.___SLimitOverlayCellWrapper_1x6eq_gg_:hover))>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_:not(.__theme_1x6eq_gg_):not(.__expanded_1x6eq_gg_.__withAccordion_1x6eq_gg_):not([aria-hidden]),.___SRow_1x6eq_gg_:hover:not(.__isNonInteractive_1x6eq_gg_):not([aria-hidden]):not(:has(.___SLimitOverlayCellWrapper_1x6eq_gg_:hover))>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_._theme_warning_1x6eq_gg_:not([aria-hidden]){background-color:var(--intergalactic-table-td-cell-warning-hover, #ffdca2)}.___SRowGroup_1x6eq_gg_:has(.___SCell_1x6eq_gg_:hover)>.___SRow_1x6eq_gg_._theme_danger_1x6eq_gg_:not(.__isNonInteractive_1x6eq_gg_):not([aria-hidden])>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_[data-grouped-by=rowgroup]:not(.__theme_1x6eq_gg_):not([aria-hidden]),.___SRowGroup_1x6eq_gg_:has(.___SCell_1x6eq_gg_:hover)>.___SRow_1x6eq_gg_:not(.__isNonInteractive_1x6eq_gg_):not([aria-hidden])>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_[data-grouped-by=rowgroup]._theme_danger_1x6eq_gg_:not([aria-hidden]),.___SRowGroup_1x6eq_gg_:has(.___SCell_1x6eq_gg_[data-grouped-by=rowgroup]:hover)>.___SRow_1x6eq_gg_._theme_danger_1x6eq_gg_:not(.__isNonInteractive_1x6eq_gg_):not([aria-hidden])>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_:not(.__theme_1x6eq_gg_):not([aria-hidden]),.___SRowGroup_1x6eq_gg_:has(.___SCell_1x6eq_gg_[data-grouped-by=rowgroup]:hover)>.___SRow_1x6eq_gg_:not(.__isNonInteractive_1x6eq_gg_):not([aria-hidden])>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_._theme_danger_1x6eq_gg_:not([aria-hidden]),.___SRow_1x6eq_gg_._theme_danger_1x6eq_gg_:hover:not(.__expanded_1x6eq_gg_.__isNonInteractive_1x6eq_gg_):not([aria-hidden]):not(:has(.___SLimitOverlayCellWrapper_1x6eq_gg_:hover))>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_:not(.__theme_1x6eq_gg_):not(.__expanded_1x6eq_gg_.__withAccordion_1x6eq_gg_):not([aria-hidden]),.___SRow_1x6eq_gg_:hover:not(.__isNonInteractive_1x6eq_gg_):not([aria-hidden]):not(:has(.___SLimitOverlayCellWrapper_1x6eq_gg_:hover))>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_._theme_danger_1x6eq_gg_:not([aria-hidden]){background-color:var(--intergalactic-table-td-cell-critical-hover, #ffd7df)}}.___SRow_1x6eq_gg_._theme_muted_1x6eq_gg_ .___SCell_1x6eq_gg_:not(.__theme_1x6eq_gg_):not(.__expanded_1x6eq_gg_.__withAccordion_1x6eq_gg_){background-color:var(--intergalactic-table-td-cell-unread, #f4f5f9)}.___SRow_1x6eq_gg_._theme_muted_1x6eq_gg_ .___SCell_1x6eq_gg_.__expanded_1x6eq_gg_.__withAccordion_1x6eq_gg_:not(.__theme_1x6eq_gg_),.___SRow_1x6eq_gg_._theme_muted_1x6eq_gg_.__active_1x6eq_gg_>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_:not(.__theme_1x6eq_gg_){background-color:var(--intergalactic-table-td-cell-active, #e6e7ed)}.___SRow_1x6eq_gg_._theme_info_1x6eq_gg_ .___SCell_1x6eq_gg_:not(.__theme_1x6eq_gg_):not(.__expanded_1x6eq_gg_.__withAccordion_1x6eq_gg_),.___SRow_1x6eq_gg_:has([data-row-selector=true] input:checked) .___SCell_1x6eq_gg_:not(.__theme_1x6eq_gg_):not(.__expanded_1x6eq_gg_.__withAccordion_1x6eq_gg_){background-color:var(--intergalactic-table-td-cell-selected, #e9f7ff)}.___SRow_1x6eq_gg_._theme_info_1x6eq_gg_ .___SCell_1x6eq_gg_.__expanded_1x6eq_gg_.__withAccordion_1x6eq_gg_:not(.__theme_1x6eq_gg_),.___SRow_1x6eq_gg_:has([data-row-selector=true] input:checked) .___SCell_1x6eq_gg_.__expanded_1x6eq_gg_.__withAccordion_1x6eq_gg_:not(.__theme_1x6eq_gg_){background-color:var(--intergalactic-table-td-cell-selected-active, #c4e5fe)}.___SRow_1x6eq_gg_._theme_info_1x6eq_gg_.__active_1x6eq_gg_>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_:not(.__theme_1x6eq_gg_){background-color:var(--intergalactic-table-td-cell-selected-active, #c4e5fe)}.___SRow_1x6eq_gg_._theme_success_1x6eq_gg_ .___SCell_1x6eq_gg_:not(.__theme_1x6eq_gg_):not(.__expanded_1x6eq_gg_.__withAccordion_1x6eq_gg_){background-color:var(--intergalactic-table-td-cell-new, #dbfee8)}.___SRow_1x6eq_gg_._theme_success_1x6eq_gg_ .___SCell_1x6eq_gg_.__expanded_1x6eq_gg_.__withAccordion_1x6eq_gg_:not(.__theme_1x6eq_gg_),.___SRow_1x6eq_gg_._theme_success_1x6eq_gg_.__active_1x6eq_gg_>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_:not(.__theme_1x6eq_gg_){background-color:var(--intergalactic-table-td-cell-new-active, #9ef2c9)}.___SRow_1x6eq_gg_._theme_warning_1x6eq_gg_ .___SCell_1x6eq_gg_:not(.__theme_1x6eq_gg_):not(.__expanded_1x6eq_gg_.__withAccordion_1x6eq_gg_){background-color:var(--intergalactic-table-td-cell-warning, #fff3d9)}.___SRow_1x6eq_gg_._theme_warning_1x6eq_gg_ .___SCell_1x6eq_gg_.__expanded_1x6eq_gg_.__withAccordion_1x6eq_gg_:not(.__theme_1x6eq_gg_),.___SRow_1x6eq_gg_._theme_warning_1x6eq_gg_.__active_1x6eq_gg_>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_:not(.__theme_1x6eq_gg_){background-color:var(--intergalactic-table-td-cell-warning-active, #ffdca2)}.___SRow_1x6eq_gg_._theme_danger_1x6eq_gg_ .___SCell_1x6eq_gg_:not(.__theme_1x6eq_gg_):not(.__expanded_1x6eq_gg_.__withAccordion_1x6eq_gg_){background-color:var(--intergalactic-table-td-cell-critical, #fff0f7)}.___SRow_1x6eq_gg_._theme_danger_1x6eq_gg_ .___SCell_1x6eq_gg_.__expanded_1x6eq_gg_.__withAccordion_1x6eq_gg_:not(.__theme_1x6eq_gg_),.___SRow_1x6eq_gg_._theme_danger_1x6eq_gg_.__active_1x6eq_gg_>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_:not(.__theme_1x6eq_gg_){background-color:var(--intergalactic-table-td-cell-critical-active, #ffd7df)}.___SRowGroup_1x6eq_gg_:has([data-row-selector=true] input:checked)>.___SRow_1x6eq_gg_>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_,.___SRow_1x6eq_gg_:has([data-row-selector=true] input:checked)>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_{background-color:var(--intergalactic-table-td-cell-selected, #e9f7ff)}.___SCell_1x6eq_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_1x6eq_gg_ .___SAccordionToggle_1x6eq_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_1x6eq_gg_ .___SAccordionToggle_1x6eq_gg_ svg{transition:transform calc(var(--intergalactic-duration-accordion, 200)*1ms) ease-out}.___SCell_1x6eq_gg_ .___SAccordionToggle_1x6eq_gg_.__expanded_1x6eq_gg_ svg{transform:rotate(90deg)}.___SCell_1x6eq_gg_.__withoutBorder_1x6eq_gg_{border-bottom:none}.___SCell_1x6eq_gg_.__withAccordion_1x6eq_gg_,.___SCell_1x6eq_gg_._name_Symbol\\(SELECT_ALL\\)_1x6eq_gg_,.___SRow_1x6eq_gg_._accordionType_row_1x6eq_gg_>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_{cursor:pointer}.___SCheckboxCell_1x6eq_gg_[aria-hidden]{filter:blur(3px);pointer-events:none}.___SCell_1x6eq_gg_._use_primary_1x6eq_gg_{padding:var(--intergalactic-spacing-3x, 12px);min-height:45px;background-color:var(--intergalactic-bg-primary-neutral, #ffffff)}.___SCell_1x6eq_gg_._use_primary_1x6eq_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_1x6eq) - 1)))}.___SCell_1x6eq_gg_._use_secondary_1x6eq_gg_{padding:var(--intergalactic-spacing-2x, 8px);min-height:37px;background-color:var(--intergalactic-bg-primary-neutral, #ffffff)}.___SCell_1x6eq_gg_._use_secondary_1x6eq_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_1x6eq) - 1)))}.___SCell_1x6eq_gg_._borders_both_1x6eq_gg_,.___SCell_1x6eq_gg_._borders_left_1x6eq_gg_{border-left:1px solid var(--intergalactic-border-secondary, #e0e1e9)}.___SCell_1x6eq_gg_._borders_both_1x6eq_gg_,.___SCell_1x6eq_gg_._borders_right_1x6eq_gg_{border-right:1px solid var(--intergalactic-border-secondary, #e0e1e9)}.___SCellWrapper_1x6eq_gg_.__fixed_1x6eq_gg_{position:sticky;z-index:2}.___SCell_1x6eq_gg_._theme_muted_1x6eq_gg_{background-color:var(--intergalactic-table-td-cell-unread, #f4f5f9)}.___SCell_1x6eq_gg_._theme_info_1x6eq_gg_{background-color:var(--intergalactic-table-td-cell-selected, #e9f7ff)}.___SCell_1x6eq_gg_._theme_success_1x6eq_gg_{background-color:var(--intergalactic-table-td-cell-new, #dbfee8)}.___SCell_1x6eq_gg_._theme_warning_1x6eq_gg_{background-color:var(--intergalactic-table-td-cell-warning, #fff3d9)}.___SCell_1x6eq_gg_._theme_danger_1x6eq_gg_{background-color:var(--intergalactic-table-td-cell-critical, #fff0f7)}.___SSpinContainer_1x6eq_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_1x6eq_gg_:focus-visible{z-index:15}.___SSpinContainer_1x6eq_gg_.__headerHeight_1x6eq_gg_{top:var(--headerHeight_1x6eq)}.___SEmptyData_1x6eq_gg_{grid-column:1/-1}.___SCollapseRow_1x6eq_gg_._sideIndents_wide_1x6eq_gg_ .___SCellWrapper_1x6eq_gg_:first-child .___SCell_1x6eq_gg_,.___SRow_1x6eq_gg_._sideIndents_wide_1x6eq_gg_ .___SCellWrapper_1x6eq_gg_:first-child .___SCell_1x6eq_gg_{padding-left:var(--intergalactic-spacing-5x, 20px)}.___SCollapseRow_1x6eq_gg_._sideIndents_wide_1x6eq_gg_ .___SCellWrapper_1x6eq_gg_:first-child .___SCell_1x6eq_gg_[data-aria-level],.___SRow_1x6eq_gg_._sideIndents_wide_1x6eq_gg_ .___SCellWrapper_1x6eq_gg_:first-child .___SCell_1x6eq_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_1x6eq) - 1)))}.___SCollapseRow_1x6eq_gg_._sideIndents_wide_1x6eq_gg_ .___SCellWrapper_1x6eq_gg_:last-child .___SCell_1x6eq_gg_,.___SRow_1x6eq_gg_._sideIndents_wide_1x6eq_gg_ .___SCellWrapper_1x6eq_gg_:last-child .___SCell_1x6eq_gg_{padding-right:var(--intergalactic-spacing-5x, 20px)}.___SCellWrapper_1x6eq_gg_.__fixed_1x6eq_gg_.__shadowVertical_1x6eq_gg_:after{content:\"\";position:absolute;pointer-events:none;display:none;top:0;width:5px;height:100%;z-index:5}.___SCellWrapper_1x6eq_gg_._fixed_left_1x6eq_gg_._shadowVertical_median_1x6eq_gg_,.___SCellWrapper_1x6eq_gg_._fixed_left_1x6eq_gg_._shadowVertical_start_1x6eq_gg_{margin-right:-5px}.___SCellWrapper_1x6eq_gg_._fixed_left_1x6eq_gg_._shadowVertical_median_1x6eq_gg_:after,.___SCellWrapper_1x6eq_gg_._fixed_left_1x6eq_gg_._shadowVertical_start_1x6eq_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_1x6eq_gg_._fixed_left_1x6eq_gg_._shadowVertical_median_1x6eq_gg_ .___SCell_1x6eq_gg_,.___SCellWrapper_1x6eq_gg_._fixed_left_1x6eq_gg_._shadowVertical_start_1x6eq_gg_ .___SCell_1x6eq_gg_{margin-right:5px}.___SCellWrapper_1x6eq_gg_._fixed_right_1x6eq_gg_._shadowVertical_end_1x6eq_gg_,.___SCellWrapper_1x6eq_gg_._fixed_right_1x6eq_gg_._shadowVertical_median_1x6eq_gg_{margin-left:-5px}.___SCellWrapper_1x6eq_gg_._fixed_right_1x6eq_gg_._shadowVertical_end_1x6eq_gg_:after,.___SCellWrapper_1x6eq_gg_._fixed_right_1x6eq_gg_._shadowVertical_median_1x6eq_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_1x6eq_gg_._fixed_right_1x6eq_gg_._shadowVertical_end_1x6eq_gg_ .___SCell_1x6eq_gg_,.___SCellWrapper_1x6eq_gg_._fixed_right_1x6eq_gg_._shadowVertical_median_1x6eq_gg_ .___SCell_1x6eq_gg_{margin-left:5px}.___SLimitOverlayCellWrapper_1x6eq_gg_.__gridArea_1x6eq_gg_{width:100%;height:100%;align-items:center;justify-content:center;z-index:16;grid-area:var(--gridArea_1x6eq);backdrop-filter:blur(6px)}.___SLimitOverlayCellWrapper_1x6eq_gg_.__left_1x6eq_gg_{position:sticky;left:var(---left_1x6eq)}.___SCell_1x6eq_gg_.__innerOutline_1x6eq_gg_:focus-visible{transition:none}", /*__inner_css_end__*/"1x6eq_gg_"),
32
32
  /*__reshadow_css_end__*/
33
33
  {
34
- "__SBody": "___SBody_17cjj_gg_",
35
- "__SRow": "___SRow_17cjj_gg_",
36
- "__SRowGroup": "___SRowGroup_17cjj_gg_",
37
- "__SAccordionRows": "___SAccordionRows_17cjj_gg_",
38
- "--gridRow": "--gridRow_17cjj",
39
- "--duration": "--duration_17cjj",
40
- "_gridArea": "__gridArea_17cjj_gg_",
41
- "__SCellWrapper": "___SCellWrapper_17cjj_gg_",
42
- "__SCollapseRow": "___SCollapseRow_17cjj_gg_",
43
- "--gridArea": "--gridArea_17cjj",
44
- "_isAccordionRow": "__isAccordionRow_17cjj_gg_",
45
- "__SCell": "___SCell_17cjj_gg_",
46
- "_withoutBorder": "__withoutBorder_17cjj_gg_",
47
- "_active": "__active_17cjj_gg_",
48
- "_theme": "__theme_17cjj_gg_",
49
- "_accordionType_row": "_accordionType_row_17cjj_gg_",
50
- "_expanded": "__expanded_17cjj_gg_",
51
- "_withAccordion": "__withAccordion_17cjj_gg_",
52
- "_theme_muted": "_theme_muted_17cjj_gg_",
53
- "_theme_info": "_theme_info_17cjj_gg_",
54
- "_theme_success": "_theme_success_17cjj_gg_",
55
- "_theme_warning": "_theme_warning_17cjj_gg_",
56
- "_theme_danger": "_theme_danger_17cjj_gg_",
57
- "_isNonInteractive": "__isNonInteractive_17cjj_gg_",
58
- "__SLimitOverlayCellWrapper": "___SLimitOverlayCellWrapper_17cjj_gg_",
59
- "_name_Symbol(SELECT_ALL)": "_name_Symbol(SELECT_ALL)_17cjj_gg_",
60
- "__SCheckboxCell": "___SCheckboxCell_17cjj_gg_",
61
- "_borders_both": "_borders_both_17cjj_gg_",
62
- "_borders_left": "_borders_left_17cjj_gg_",
63
- "_borders_right": "_borders_right_17cjj_gg_",
64
- "_fixed": "__fixed_17cjj_gg_",
65
- "__SSpinContainer": "___SSpinContainer_17cjj_gg_",
66
- "_headerHeight": "__headerHeight_17cjj_gg_",
67
- "--headerHeight": "--headerHeight_17cjj",
68
- "__SEmptyData": "___SEmptyData_17cjj_gg_",
69
- "_left": "__left_17cjj_gg_",
70
- "---left": "---left_17cjj",
71
- "_innerOutline": "__innerOutline_17cjj_gg_",
72
- "_compact": "__compact_17cjj_gg_",
73
- "--data-aria-level": "--data-aria-level_17cjj",
74
- "_sideIndents_wide": "_sideIndents_wide_17cjj_gg_",
75
- "__SAccordionToggle": "___SAccordionToggle_17cjj_gg_",
76
- "_use_primary": "_use_primary_17cjj_gg_",
77
- "_use_secondary": "_use_secondary_17cjj_gg_",
78
- "_shadowVertical": "__shadowVertical_17cjj_gg_",
79
- "_fixed_left": "_fixed_left_17cjj_gg_",
80
- "_shadowVertical_median": "_shadowVertical_median_17cjj_gg_",
81
- "_shadowVertical_start": "_shadowVertical_start_17cjj_gg_",
82
- "_fixed_right": "_fixed_right_17cjj_gg_",
83
- "_shadowVertical_end": "_shadowVertical_end_17cjj_gg_"
34
+ "__SBody": "___SBody_1x6eq_gg_",
35
+ "__SRow": "___SRow_1x6eq_gg_",
36
+ "__SRowGroup": "___SRowGroup_1x6eq_gg_",
37
+ "__SAccordionRows": "___SAccordionRows_1x6eq_gg_",
38
+ "--gridRow": "--gridRow_1x6eq",
39
+ "--duration": "--duration_1x6eq",
40
+ "_gridArea": "__gridArea_1x6eq_gg_",
41
+ "__SCellWrapper": "___SCellWrapper_1x6eq_gg_",
42
+ "__SCollapseRow": "___SCollapseRow_1x6eq_gg_",
43
+ "--gridArea": "--gridArea_1x6eq",
44
+ "_isAccordionRow": "__isAccordionRow_1x6eq_gg_",
45
+ "__SCell": "___SCell_1x6eq_gg_",
46
+ "_withoutBorder": "__withoutBorder_1x6eq_gg_",
47
+ "_active": "__active_1x6eq_gg_",
48
+ "_theme": "__theme_1x6eq_gg_",
49
+ "_accordionType_row": "_accordionType_row_1x6eq_gg_",
50
+ "_expanded": "__expanded_1x6eq_gg_",
51
+ "_withAccordion": "__withAccordion_1x6eq_gg_",
52
+ "_theme_muted": "_theme_muted_1x6eq_gg_",
53
+ "_theme_info": "_theme_info_1x6eq_gg_",
54
+ "_theme_success": "_theme_success_1x6eq_gg_",
55
+ "_theme_warning": "_theme_warning_1x6eq_gg_",
56
+ "_theme_danger": "_theme_danger_1x6eq_gg_",
57
+ "_isNonInteractive": "__isNonInteractive_1x6eq_gg_",
58
+ "__SLimitOverlayCellWrapper": "___SLimitOverlayCellWrapper_1x6eq_gg_",
59
+ "_name_Symbol(SELECT_ALL)": "_name_Symbol(SELECT_ALL)_1x6eq_gg_",
60
+ "__SCheckboxCell": "___SCheckboxCell_1x6eq_gg_",
61
+ "_borders_both": "_borders_both_1x6eq_gg_",
62
+ "_borders_left": "_borders_left_1x6eq_gg_",
63
+ "_borders_right": "_borders_right_1x6eq_gg_",
64
+ "_fixed": "__fixed_1x6eq_gg_",
65
+ "__SSpinContainer": "___SSpinContainer_1x6eq_gg_",
66
+ "_headerHeight": "__headerHeight_1x6eq_gg_",
67
+ "--headerHeight": "--headerHeight_1x6eq",
68
+ "__SEmptyData": "___SEmptyData_1x6eq_gg_",
69
+ "_left": "__left_1x6eq_gg_",
70
+ "---left": "---left_1x6eq",
71
+ "_innerOutline": "__innerOutline_1x6eq_gg_",
72
+ "_compact": "__compact_1x6eq_gg_",
73
+ "--data-aria-level": "--data-aria-level_1x6eq",
74
+ "_sideIndents_wide": "_sideIndents_wide_1x6eq_gg_",
75
+ "__SAccordionToggle": "___SAccordionToggle_1x6eq_gg_",
76
+ "_use_primary": "_use_primary_1x6eq_gg_",
77
+ "_use_secondary": "_use_secondary_1x6eq_gg_",
78
+ "_shadowVertical": "__shadowVertical_1x6eq_gg_",
79
+ "_fixed_left": "_fixed_left_1x6eq_gg_",
80
+ "_shadowVertical_median": "_shadowVertical_median_1x6eq_gg_",
81
+ "_shadowVertical_start": "_shadowVertical_start_1x6eq_gg_",
82
+ "_fixed_right": "_fixed_right_1x6eq_gg_",
83
+ "_shadowVertical_end": "_shadowVertical_end_1x6eq_gg_"
84
84
  });
85
85
  var RowRoot = exports.RowRoot = /*#__PURE__*/function (_Component) {
86
86
  function RowRoot(props) {
@@ -96,39 +96,21 @@ var RowRoot = exports.RowRoot = /*#__PURE__*/function (_Component) {
96
96
  accordionRows: undefined,
97
97
  accordionComponent: undefined
98
98
  });
99
- (0, _defineProperty2["default"])(_this, "handleSelectRow", function (value, event) {
100
- var _this$asProps = _this.asProps,
101
- row = _this$asProps.row,
102
- rowIndex = _this$asProps.rowIndex,
103
- onSelectRow = _this$asProps.onSelectRow;
104
- onSelectRow === null || onSelectRow === void 0 || onSelectRow(value, rowIndex, row, event);
105
- });
106
- (0, _defineProperty2["default"])(_this, "handleClickCheckbox", function (value) {
107
- return function (event) {
108
- event === null || event === void 0 || event.preventDefault();
109
- event === null || event === void 0 || event.stopPropagation();
110
- var _this$asProps2 = _this.asProps,
111
- row = _this$asProps2.row,
112
- rowIndex = _this$asProps2.rowIndex,
113
- onSelectRow = _this$asProps2.onSelectRow;
114
- onSelectRow === null || onSelectRow === void 0 || onSelectRow(value, rowIndex, row, event);
115
- };
116
- });
117
99
  (0, _defineProperty2["default"])(_this, "handleBackFromAccordion", function (e) {
118
100
  if (e.key === 'Escape') {
119
101
  _this.asProps.onBackFromAccordion(_this.cellName);
120
102
  }
121
103
  });
122
104
  (0, _defineProperty2["default"])(_this, "handleExpandRow", function (row, index) {
123
- var _this$asProps3 = _this.asProps,
124
- accordionDuration = _this$asProps3.accordionDuration,
125
- accordionMode = _this$asProps3.accordionMode,
126
- expandedRows = _this$asProps3.expandedRows,
127
- onExpandRow = _this$asProps3.onExpandRow,
128
- setRowHeight = _this$asProps3.setRowHeight,
129
- rowsHeightMap = _this$asProps3.rowsHeightMap,
130
- calculateAriaRowIndex = _this$asProps3.calculateAriaRowIndex,
131
- accordionAnimationRows = _this$asProps3.accordionAnimationRows;
105
+ var _this$asProps = _this.asProps,
106
+ accordionDuration = _this$asProps.accordionDuration,
107
+ accordionMode = _this$asProps.accordionMode,
108
+ expandedRows = _this$asProps.expandedRows,
109
+ onExpandRow = _this$asProps.onExpandRow,
110
+ setRowHeight = _this$asProps.setRowHeight,
111
+ rowsHeightMap = _this$asProps.rowsHeightMap,
112
+ calculateAriaRowIndex = _this$asProps.calculateAriaRowIndex,
113
+ accordionAnimationRows = _this$asProps.accordionAnimationRows;
132
114
  var expandedForAnimation = _this.state.expandedForAnimation;
133
115
  var openDuration = Array.isArray(accordionDuration) ? accordionDuration[0] : accordionDuration !== null && accordionDuration !== void 0 ? accordionDuration : Array.isArray(row[_DataTable.ACCORDION]) ? Math.min(50 * row[_DataTable.ACCORDION].length, 200) : 200;
134
116
  var closeDuration = Array.isArray(accordionDuration) ? accordionDuration[1] : accordionDuration !== null && accordionDuration !== void 0 ? accordionDuration : Array.isArray(row[_DataTable.ACCORDION]) ? Math.min(50 * row[_DataTable.ACCORDION].length, 200) : 200;
@@ -198,10 +180,10 @@ var RowRoot = exports.RowRoot = /*#__PURE__*/function (_Component) {
198
180
  }
199
181
  });
200
182
  (0, _defineProperty2["default"])(_this, "closeAccordion", function (row, closeDuration) {
201
- var _this$asProps4 = _this.asProps,
202
- onExpandRow = _this$asProps4.onExpandRow,
203
- calculateAriaRowIndex = _this$asProps4.calculateAriaRowIndex,
204
- accordionAnimationRows = _this$asProps4.accordionAnimationRows;
183
+ var _this$asProps2 = _this.asProps,
184
+ onExpandRow = _this$asProps2.onExpandRow,
185
+ calculateAriaRowIndex = _this$asProps2.calculateAriaRowIndex,
186
+ accordionAnimationRows = _this$asProps2.accordionAnimationRows;
205
187
  if (_this.openAccordionTimeout) {
206
188
  clearTimeout(_this.openAccordionTimeout);
207
189
  }
@@ -231,8 +213,8 @@ var RowRoot = exports.RowRoot = /*#__PURE__*/function (_Component) {
231
213
  return (0, _createClass2["default"])(RowRoot, [{
232
214
  key: "componentDidMount",
233
215
  value: function componentDidMount() {
234
- var _this$asProps$compone2, _this$asProps5;
235
- (_this$asProps$compone2 = (_this$asProps5 = this.asProps).componentRef) === null || _this$asProps$compone2 === void 0 || _this$asProps$compone2.call(_this$asProps5, this);
216
+ var componentRef = this.asProps.componentRef;
217
+ componentRef === null || componentRef === void 0 || componentRef(this);
236
218
  this.setAccordion();
237
219
  }
238
220
  }, {
@@ -246,8 +228,8 @@ var RowRoot = exports.RowRoot = /*#__PURE__*/function (_Component) {
246
228
  }, {
247
229
  key: "componentWillUnmount",
248
230
  value: function componentWillUnmount() {
249
- var _this$asProps$compone3, _this$asProps6;
250
- (_this$asProps$compone3 = (_this$asProps6 = this.asProps).componentRef) === null || _this$asProps$compone3 === void 0 || _this$asProps$compone3.call(_this$asProps6, null);
231
+ var _this$asProps$compone2, _this$asProps3;
232
+ (_this$asProps$compone2 = (_this$asProps3 = this.asProps).componentRef) === null || _this$asProps$compone2 === void 0 || _this$asProps$compone2.call(_this$asProps3, null);
251
233
  }
252
234
  }, {
253
235
  key: "setAccordion",
@@ -305,23 +287,23 @@ var RowRoot = exports.RowRoot = /*#__PURE__*/function (_Component) {
305
287
  var _props$children,
306
288
  _value3,
307
289
  _this4 = this;
308
- var _this$asProps7 = this.asProps,
309
- use = _this$asProps7.use,
310
- renderCell = _this$asProps7.renderCell,
311
- expandedRows = _this$asProps7.expandedRows,
312
- styles = _this$asProps7.styles,
313
- getI18nText = _this$asProps7.getI18nText,
314
- virtualScroll = _this$asProps7.virtualScroll,
315
- tableRef = _this$asProps7.tableRef,
316
- onCellClick = _this$asProps7.onCellClick,
317
- rawData = _this$asProps7.rawData,
318
- shadowVertical = _this$asProps7.shadowVertical,
319
- flatRows = _this$asProps7.flatRows,
320
- variant = _this$asProps7.variant,
321
- isAccordionRow = _this$asProps7.isAccordionRow,
322
- accordionRowIndex = _this$asProps7.accordionRowIndex,
323
- selectedRows = _this$asProps7.selectedRows,
324
- theme = _this$asProps7.theme;
290
+ var _this$asProps4 = this.asProps,
291
+ use = _this$asProps4.use,
292
+ renderCell = _this$asProps4.renderCell,
293
+ expandedRows = _this$asProps4.expandedRows,
294
+ styles = _this$asProps4.styles,
295
+ getI18nText = _this$asProps4.getI18nText,
296
+ virtualScroll = _this$asProps4.virtualScroll,
297
+ tableRef = _this$asProps4.tableRef,
298
+ onCellClick = _this$asProps4.onCellClick,
299
+ rawData = _this$asProps4.rawData,
300
+ shadowVertical = _this$asProps4.shadowVertical,
301
+ flatRows = _this$asProps4.flatRows,
302
+ variant = _this$asProps4.variant,
303
+ isAccordionRow = _this$asProps4.isAccordionRow,
304
+ accordionRowIndex = _this$asProps4.accordionRowIndex,
305
+ selectedRows = _this$asProps4.selectedRows,
306
+ theme = _this$asProps4.theme;
325
307
  var SAccordionToggle = _button.ButtonLink;
326
308
  var dataKey = props.column.name;
327
309
  var cellValue = props.row[dataKey];
@@ -423,9 +405,9 @@ var RowRoot = exports.RowRoot = /*#__PURE__*/function (_Component) {
423
405
  }, {
424
406
  key: "isRowHidden",
425
407
  get: function get() {
426
- var _this$asProps8 = this.asProps,
427
- rowIndex = _this$asProps8.rowIndex,
428
- limit = _this$asProps8.limit;
408
+ var _this$asProps5 = this.asProps,
409
+ rowIndex = _this$asProps5.rowIndex,
410
+ limit = _this$asProps5.limit;
429
411
  var rowsLimit = limit === null || limit === void 0 ? void 0 : limit.fromRow;
430
412
  var columnsLimit = limit === null || limit === void 0 ? void 0 : limit.fromColumn;
431
413
  return rowsLimit !== undefined && !columnsLimit && rowIndex > rowsLimit ? true : undefined;
@@ -440,38 +422,38 @@ var RowRoot = exports.RowRoot = /*#__PURE__*/function (_Component) {
440
422
  var SRow = _baseComponents.Box;
441
423
  var SCollapseRow = _baseComponents.Collapse;
442
424
  var SCell = Row.Cell;
443
- var SCheckboxCell = Row.Cell;
444
- var _this$asProps9 = this.asProps,
445
- columns = _this$asProps9.columns,
446
- row = _this$asProps9.row,
447
- rows = _this$asProps9.rows,
448
- styles = _this$asProps9.styles,
449
- rowIndex = _this$asProps9.rowIndex,
450
- gridRowIndex = _this$asProps9.gridRowIndex,
451
- _this$asProps9$ariaL = _this$asProps9['aria-level'],
452
- ariaLevel = _this$asProps9$ariaL === void 0 ? 1 : _this$asProps9$ariaL,
453
- selectedRows = _this$asProps9.selectedRows,
454
- expandedRows = _this$asProps9.expandedRows,
455
- uid = _this$asProps9.uid,
456
- getFixedStyle = _this$asProps9.getFixedStyle,
457
- mergedRow = _this$asProps9.mergedRow,
458
- isAccordionRow = _this$asProps9.isAccordionRow,
459
- accordionRowIndex = _this$asProps9.accordionRowIndex,
460
- accordionDuration = _this$asProps9.accordionDuration,
461
- use = _this$asProps9.use,
462
- shadowVertical = _this$asProps9.shadowVertical,
463
- variant = _this$asProps9.variant,
464
- flatRows = _this$asProps9.flatRows,
465
- sideIndents = _this$asProps9.sideIndents,
466
- renderCell = _this$asProps9.renderCell,
467
- rawData = _this$asProps9.rawData,
468
- limit = _this$asProps9.limit,
469
- hasGroups = _this$asProps9.hasGroups,
470
- tableRef = _this$asProps9.tableRef,
471
- scrollAreaRef = _this$asProps9.scrollAreaRef,
472
- accordionAnimationRows = _this$asProps9.accordionAnimationRows,
473
- onCellClick = _this$asProps9.onCellClick,
474
- theme = _this$asProps9.theme;
425
+ var _this$asProps6 = this.asProps,
426
+ columns = _this$asProps6.columns,
427
+ row = _this$asProps6.row,
428
+ rows = _this$asProps6.rows,
429
+ styles = _this$asProps6.styles,
430
+ rowIndex = _this$asProps6.rowIndex,
431
+ gridRowIndex = _this$asProps6.gridRowIndex,
432
+ _this$asProps6$ariaL = _this$asProps6['aria-level'],
433
+ ariaLevel = _this$asProps6$ariaL === void 0 ? 1 : _this$asProps6$ariaL,
434
+ selectedRows = _this$asProps6.selectedRows,
435
+ expandedRows = _this$asProps6.expandedRows,
436
+ uid = _this$asProps6.uid,
437
+ getFixedStyle = _this$asProps6.getFixedStyle,
438
+ mergedRow = _this$asProps6.mergedRow,
439
+ isAccordionRow = _this$asProps6.isAccordionRow,
440
+ accordionRowIndex = _this$asProps6.accordionRowIndex,
441
+ accordionDuration = _this$asProps6.accordionDuration,
442
+ use = _this$asProps6.use,
443
+ shadowVertical = _this$asProps6.shadowVertical,
444
+ variant = _this$asProps6.variant,
445
+ flatRows = _this$asProps6.flatRows,
446
+ sideIndents = _this$asProps6.sideIndents,
447
+ renderCell = _this$asProps6.renderCell,
448
+ rawData = _this$asProps6.rawData,
449
+ limit = _this$asProps6.limit,
450
+ hasGroups = _this$asProps6.hasGroups,
451
+ tableRef = _this$asProps6.tableRef,
452
+ scrollAreaRef = _this$asProps6.scrollAreaRef,
453
+ accordionAnimationRows = _this$asProps6.accordionAnimationRows,
454
+ onCellClick = _this$asProps6.onCellClick,
455
+ onSelectRow = _this$asProps6.onSelectRow,
456
+ theme = _this$asProps6.theme;
475
457
  var _this$state = this.state,
476
458
  expandedForAnimation = _this$state.expandedForAnimation,
477
459
  accordionRows = _this$state.accordionRows,
@@ -520,33 +502,24 @@ var RowRoot = exports.RowRoot = /*#__PURE__*/function (_Component) {
520
502
  }
521
503
  }
522
504
  if (selectedRows && i === 0 && row[_DataTable.IS_EMPTY_DATA_ROW] !== true) {
523
- var checked = selectedRows.includes(rowUniqKey);
524
505
  var nextColumnName = columns[i + 1].name;
525
- if (!(nextColumnName in row)) {
506
+ if (!(nextColumnName in row) || Array.isArray(row)) {
526
507
  return null;
527
508
  }
528
- return /*#__PURE__*/React.createElement(SCheckboxCell, {
509
+ return /*#__PURE__*/React.createElement(_RowsSelector.RowSelector, {
529
510
  key: i,
530
511
  row: row,
531
- rowIndex: rowIndex
532
- // @ts-ignore
533
- ,
534
- column: {
535
- name: _DataTable.SELECT_ALL.toString()
536
- },
537
- columnIndex: 0,
512
+ rowIndex: rowIndex,
538
513
  gridRowIndex: gridRowIndex,
539
- onClick: _this5.handleClickCheckbox(!checked),
540
514
  expanded: expanded,
541
515
  isAccordionRow: isAccordionRow,
542
- "aria-hidden": isCellHidden,
516
+ isCellHidden: isCellHidden,
543
517
  withAccordion: withAccordion,
544
- theme: theme
545
- }, /*#__PURE__*/React.createElement(_checkbox["default"], {
546
- checked: checked,
547
- "aria-labelledby": "".concat(uid, "_").concat(rowUniqKey, "_1"),
548
- onChange: _this5.handleSelectRow
549
- }, /*#__PURE__*/React.createElement(_checkbox["default"].Value, null)));
518
+ theme: theme,
519
+ uid: uid,
520
+ selectedRows: selectedRows,
521
+ onSelectRow: onSelectRow
522
+ });
550
523
  }
551
524
  if (cellValue === undefined) {
552
525
  return null;