@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
@@ -10,7 +10,6 @@ import { sstyled as _sstyled } from "@semcore/core";
10
10
  import { assignProps as _assignProps } from "@semcore/core";
11
11
  import { Box, Collapse } from '@semcore/base-components';
12
12
  import { ButtonLink } from '@semcore/button';
13
- import Checkbox from '@semcore/checkbox';
14
13
  import { Component, Root, sstyled, createComponent } from '@semcore/core';
15
14
  import { callAllEventHandlers } from '@semcore/core/lib/utils/assignProps';
16
15
  import { isInteractiveElement } from '@semcore/core/lib/utils/isInteractiveElement';
@@ -20,62 +19,63 @@ import { Cell } from './Cell';
20
19
  import { LimitOverlay } from './LimitOverlay';
21
20
  import { MergedColumnsCell, MergedRowsCell } from './MergedCells';
22
21
  /*!__reshadow-styles__:"./style.shadow.css"*/
23
- var style = (/*__reshadow_css_start__*/_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_"),
22
+ var style = (/*__reshadow_css_start__*/_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_"),
24
23
  /*__reshadow_css_end__*/
25
24
  {
26
- "__SBody": "___SBody_17cjj_gg_",
27
- "__SRow": "___SRow_17cjj_gg_",
28
- "__SRowGroup": "___SRowGroup_17cjj_gg_",
29
- "__SAccordionRows": "___SAccordionRows_17cjj_gg_",
30
- "--gridRow": "--gridRow_17cjj",
31
- "--duration": "--duration_17cjj",
32
- "_gridArea": "__gridArea_17cjj_gg_",
33
- "__SCellWrapper": "___SCellWrapper_17cjj_gg_",
34
- "__SCollapseRow": "___SCollapseRow_17cjj_gg_",
35
- "--gridArea": "--gridArea_17cjj",
36
- "_isAccordionRow": "__isAccordionRow_17cjj_gg_",
37
- "__SCell": "___SCell_17cjj_gg_",
38
- "_withoutBorder": "__withoutBorder_17cjj_gg_",
39
- "_active": "__active_17cjj_gg_",
40
- "_theme": "__theme_17cjj_gg_",
41
- "_accordionType_row": "_accordionType_row_17cjj_gg_",
42
- "_expanded": "__expanded_17cjj_gg_",
43
- "_withAccordion": "__withAccordion_17cjj_gg_",
44
- "_theme_muted": "_theme_muted_17cjj_gg_",
45
- "_theme_info": "_theme_info_17cjj_gg_",
46
- "_theme_success": "_theme_success_17cjj_gg_",
47
- "_theme_warning": "_theme_warning_17cjj_gg_",
48
- "_theme_danger": "_theme_danger_17cjj_gg_",
49
- "_isNonInteractive": "__isNonInteractive_17cjj_gg_",
50
- "__SLimitOverlayCellWrapper": "___SLimitOverlayCellWrapper_17cjj_gg_",
51
- "_name_Symbol(SELECT_ALL)": "_name_Symbol(SELECT_ALL)_17cjj_gg_",
52
- "__SCheckboxCell": "___SCheckboxCell_17cjj_gg_",
53
- "_borders_both": "_borders_both_17cjj_gg_",
54
- "_borders_left": "_borders_left_17cjj_gg_",
55
- "_borders_right": "_borders_right_17cjj_gg_",
56
- "_fixed": "__fixed_17cjj_gg_",
57
- "__SSpinContainer": "___SSpinContainer_17cjj_gg_",
58
- "_headerHeight": "__headerHeight_17cjj_gg_",
59
- "--headerHeight": "--headerHeight_17cjj",
60
- "__SEmptyData": "___SEmptyData_17cjj_gg_",
61
- "_left": "__left_17cjj_gg_",
62
- "---left": "---left_17cjj",
63
- "_innerOutline": "__innerOutline_17cjj_gg_",
64
- "_compact": "__compact_17cjj_gg_",
65
- "--data-aria-level": "--data-aria-level_17cjj",
66
- "_sideIndents_wide": "_sideIndents_wide_17cjj_gg_",
67
- "__SAccordionToggle": "___SAccordionToggle_17cjj_gg_",
68
- "_use_primary": "_use_primary_17cjj_gg_",
69
- "_use_secondary": "_use_secondary_17cjj_gg_",
70
- "_shadowVertical": "__shadowVertical_17cjj_gg_",
71
- "_fixed_left": "_fixed_left_17cjj_gg_",
72
- "_shadowVertical_median": "_shadowVertical_median_17cjj_gg_",
73
- "_shadowVertical_start": "_shadowVertical_start_17cjj_gg_",
74
- "_fixed_right": "_fixed_right_17cjj_gg_",
75
- "_shadowVertical_end": "_shadowVertical_end_17cjj_gg_"
25
+ "__SBody": "___SBody_1x6eq_gg_",
26
+ "__SRow": "___SRow_1x6eq_gg_",
27
+ "__SRowGroup": "___SRowGroup_1x6eq_gg_",
28
+ "__SAccordionRows": "___SAccordionRows_1x6eq_gg_",
29
+ "--gridRow": "--gridRow_1x6eq",
30
+ "--duration": "--duration_1x6eq",
31
+ "_gridArea": "__gridArea_1x6eq_gg_",
32
+ "__SCellWrapper": "___SCellWrapper_1x6eq_gg_",
33
+ "__SCollapseRow": "___SCollapseRow_1x6eq_gg_",
34
+ "--gridArea": "--gridArea_1x6eq",
35
+ "_isAccordionRow": "__isAccordionRow_1x6eq_gg_",
36
+ "__SCell": "___SCell_1x6eq_gg_",
37
+ "_withoutBorder": "__withoutBorder_1x6eq_gg_",
38
+ "_active": "__active_1x6eq_gg_",
39
+ "_theme": "__theme_1x6eq_gg_",
40
+ "_accordionType_row": "_accordionType_row_1x6eq_gg_",
41
+ "_expanded": "__expanded_1x6eq_gg_",
42
+ "_withAccordion": "__withAccordion_1x6eq_gg_",
43
+ "_theme_muted": "_theme_muted_1x6eq_gg_",
44
+ "_theme_info": "_theme_info_1x6eq_gg_",
45
+ "_theme_success": "_theme_success_1x6eq_gg_",
46
+ "_theme_warning": "_theme_warning_1x6eq_gg_",
47
+ "_theme_danger": "_theme_danger_1x6eq_gg_",
48
+ "_isNonInteractive": "__isNonInteractive_1x6eq_gg_",
49
+ "__SLimitOverlayCellWrapper": "___SLimitOverlayCellWrapper_1x6eq_gg_",
50
+ "_name_Symbol(SELECT_ALL)": "_name_Symbol(SELECT_ALL)_1x6eq_gg_",
51
+ "__SCheckboxCell": "___SCheckboxCell_1x6eq_gg_",
52
+ "_borders_both": "_borders_both_1x6eq_gg_",
53
+ "_borders_left": "_borders_left_1x6eq_gg_",
54
+ "_borders_right": "_borders_right_1x6eq_gg_",
55
+ "_fixed": "__fixed_1x6eq_gg_",
56
+ "__SSpinContainer": "___SSpinContainer_1x6eq_gg_",
57
+ "_headerHeight": "__headerHeight_1x6eq_gg_",
58
+ "--headerHeight": "--headerHeight_1x6eq",
59
+ "__SEmptyData": "___SEmptyData_1x6eq_gg_",
60
+ "_left": "__left_1x6eq_gg_",
61
+ "---left": "---left_1x6eq",
62
+ "_innerOutline": "__innerOutline_1x6eq_gg_",
63
+ "_compact": "__compact_1x6eq_gg_",
64
+ "--data-aria-level": "--data-aria-level_1x6eq",
65
+ "_sideIndents_wide": "_sideIndents_wide_1x6eq_gg_",
66
+ "__SAccordionToggle": "___SAccordionToggle_1x6eq_gg_",
67
+ "_use_primary": "_use_primary_1x6eq_gg_",
68
+ "_use_secondary": "_use_secondary_1x6eq_gg_",
69
+ "_shadowVertical": "__shadowVertical_1x6eq_gg_",
70
+ "_fixed_left": "_fixed_left_1x6eq_gg_",
71
+ "_shadowVertical_median": "_shadowVertical_median_1x6eq_gg_",
72
+ "_shadowVertical_start": "_shadowVertical_start_1x6eq_gg_",
73
+ "_fixed_right": "_fixed_right_1x6eq_gg_",
74
+ "_shadowVertical_end": "_shadowVertical_end_1x6eq_gg_"
76
75
  });
77
76
  import { AccordionRows } from '../AccordionRows/AccordionRows';
78
- import { ACCORDION, IS_EMPTY_DATA_ROW, ROW_GROUP, ROW_INDEX, SELECT_ALL, UNIQ_ROW_KEY } from '../DataTable/DataTable';
77
+ import { ACCORDION, IS_EMPTY_DATA_ROW, ROW_GROUP, ROW_INDEX, UNIQ_ROW_KEY } from '../DataTable/DataTable';
78
+ import { RowSelector } from '../RowSelector/RowsSelector';
79
79
  export var RowRoot = /*#__PURE__*/function (_Component) {
80
80
  function RowRoot(props) {
81
81
  var _this;
@@ -90,39 +90,21 @@ export var RowRoot = /*#__PURE__*/function (_Component) {
90
90
  accordionRows: undefined,
91
91
  accordionComponent: undefined
92
92
  });
93
- _defineProperty(_this, "handleSelectRow", function (value, event) {
94
- var _this$asProps = _this.asProps,
95
- row = _this$asProps.row,
96
- rowIndex = _this$asProps.rowIndex,
97
- onSelectRow = _this$asProps.onSelectRow;
98
- onSelectRow === null || onSelectRow === void 0 || onSelectRow(value, rowIndex, row, event);
99
- });
100
- _defineProperty(_this, "handleClickCheckbox", function (value) {
101
- return function (event) {
102
- event === null || event === void 0 || event.preventDefault();
103
- event === null || event === void 0 || event.stopPropagation();
104
- var _this$asProps2 = _this.asProps,
105
- row = _this$asProps2.row,
106
- rowIndex = _this$asProps2.rowIndex,
107
- onSelectRow = _this$asProps2.onSelectRow;
108
- onSelectRow === null || onSelectRow === void 0 || onSelectRow(value, rowIndex, row, event);
109
- };
110
- });
111
93
  _defineProperty(_this, "handleBackFromAccordion", function (e) {
112
94
  if (e.key === 'Escape') {
113
95
  _this.asProps.onBackFromAccordion(_this.cellName);
114
96
  }
115
97
  });
116
98
  _defineProperty(_this, "handleExpandRow", function (row, index) {
117
- var _this$asProps3 = _this.asProps,
118
- accordionDuration = _this$asProps3.accordionDuration,
119
- accordionMode = _this$asProps3.accordionMode,
120
- expandedRows = _this$asProps3.expandedRows,
121
- onExpandRow = _this$asProps3.onExpandRow,
122
- setRowHeight = _this$asProps3.setRowHeight,
123
- rowsHeightMap = _this$asProps3.rowsHeightMap,
124
- calculateAriaRowIndex = _this$asProps3.calculateAriaRowIndex,
125
- accordionAnimationRows = _this$asProps3.accordionAnimationRows;
99
+ var _this$asProps = _this.asProps,
100
+ accordionDuration = _this$asProps.accordionDuration,
101
+ accordionMode = _this$asProps.accordionMode,
102
+ expandedRows = _this$asProps.expandedRows,
103
+ onExpandRow = _this$asProps.onExpandRow,
104
+ setRowHeight = _this$asProps.setRowHeight,
105
+ rowsHeightMap = _this$asProps.rowsHeightMap,
106
+ calculateAriaRowIndex = _this$asProps.calculateAriaRowIndex,
107
+ accordionAnimationRows = _this$asProps.accordionAnimationRows;
126
108
  var expandedForAnimation = _this.state.expandedForAnimation;
127
109
  var openDuration = Array.isArray(accordionDuration) ? accordionDuration[0] : accordionDuration !== null && accordionDuration !== void 0 ? accordionDuration : Array.isArray(row[ACCORDION]) ? Math.min(50 * row[ACCORDION].length, 200) : 200;
128
110
  var closeDuration = Array.isArray(accordionDuration) ? accordionDuration[1] : accordionDuration !== null && accordionDuration !== void 0 ? accordionDuration : Array.isArray(row[ACCORDION]) ? Math.min(50 * row[ACCORDION].length, 200) : 200;
@@ -192,10 +174,10 @@ export var RowRoot = /*#__PURE__*/function (_Component) {
192
174
  }
193
175
  });
194
176
  _defineProperty(_this, "closeAccordion", function (row, closeDuration) {
195
- var _this$asProps4 = _this.asProps,
196
- onExpandRow = _this$asProps4.onExpandRow,
197
- calculateAriaRowIndex = _this$asProps4.calculateAriaRowIndex,
198
- accordionAnimationRows = _this$asProps4.accordionAnimationRows;
177
+ var _this$asProps2 = _this.asProps,
178
+ onExpandRow = _this$asProps2.onExpandRow,
179
+ calculateAriaRowIndex = _this$asProps2.calculateAriaRowIndex,
180
+ accordionAnimationRows = _this$asProps2.accordionAnimationRows;
199
181
  if (_this.openAccordionTimeout) {
200
182
  clearTimeout(_this.openAccordionTimeout);
201
183
  }
@@ -225,8 +207,8 @@ export var RowRoot = /*#__PURE__*/function (_Component) {
225
207
  return _createClass(RowRoot, [{
226
208
  key: "componentDidMount",
227
209
  value: function componentDidMount() {
228
- var _this$asProps$compone2, _this$asProps5;
229
- (_this$asProps$compone2 = (_this$asProps5 = this.asProps).componentRef) === null || _this$asProps$compone2 === void 0 || _this$asProps$compone2.call(_this$asProps5, this);
210
+ var componentRef = this.asProps.componentRef;
211
+ componentRef === null || componentRef === void 0 || componentRef(this);
230
212
  this.setAccordion();
231
213
  }
232
214
  }, {
@@ -240,8 +222,8 @@ export var RowRoot = /*#__PURE__*/function (_Component) {
240
222
  }, {
241
223
  key: "componentWillUnmount",
242
224
  value: function componentWillUnmount() {
243
- var _this$asProps$compone3, _this$asProps6;
244
- (_this$asProps$compone3 = (_this$asProps6 = this.asProps).componentRef) === null || _this$asProps$compone3 === void 0 || _this$asProps$compone3.call(_this$asProps6, null);
225
+ var _this$asProps$compone2, _this$asProps3;
226
+ (_this$asProps$compone2 = (_this$asProps3 = this.asProps).componentRef) === null || _this$asProps$compone2 === void 0 || _this$asProps$compone2.call(_this$asProps3, null);
245
227
  }
246
228
  }, {
247
229
  key: "setAccordion",
@@ -299,23 +281,23 @@ export var RowRoot = /*#__PURE__*/function (_Component) {
299
281
  var _props$children,
300
282
  _value3,
301
283
  _this4 = this;
302
- var _this$asProps7 = this.asProps,
303
- use = _this$asProps7.use,
304
- renderCell = _this$asProps7.renderCell,
305
- expandedRows = _this$asProps7.expandedRows,
306
- styles = _this$asProps7.styles,
307
- getI18nText = _this$asProps7.getI18nText,
308
- virtualScroll = _this$asProps7.virtualScroll,
309
- tableRef = _this$asProps7.tableRef,
310
- onCellClick = _this$asProps7.onCellClick,
311
- rawData = _this$asProps7.rawData,
312
- shadowVertical = _this$asProps7.shadowVertical,
313
- flatRows = _this$asProps7.flatRows,
314
- variant = _this$asProps7.variant,
315
- isAccordionRow = _this$asProps7.isAccordionRow,
316
- accordionRowIndex = _this$asProps7.accordionRowIndex,
317
- selectedRows = _this$asProps7.selectedRows,
318
- theme = _this$asProps7.theme;
284
+ var _this$asProps4 = this.asProps,
285
+ use = _this$asProps4.use,
286
+ renderCell = _this$asProps4.renderCell,
287
+ expandedRows = _this$asProps4.expandedRows,
288
+ styles = _this$asProps4.styles,
289
+ getI18nText = _this$asProps4.getI18nText,
290
+ virtualScroll = _this$asProps4.virtualScroll,
291
+ tableRef = _this$asProps4.tableRef,
292
+ onCellClick = _this$asProps4.onCellClick,
293
+ rawData = _this$asProps4.rawData,
294
+ shadowVertical = _this$asProps4.shadowVertical,
295
+ flatRows = _this$asProps4.flatRows,
296
+ variant = _this$asProps4.variant,
297
+ isAccordionRow = _this$asProps4.isAccordionRow,
298
+ accordionRowIndex = _this$asProps4.accordionRowIndex,
299
+ selectedRows = _this$asProps4.selectedRows,
300
+ theme = _this$asProps4.theme;
319
301
  var SAccordionToggle = ButtonLink;
320
302
  var dataKey = props.column.name;
321
303
  var cellValue = props.row[dataKey];
@@ -417,9 +399,9 @@ export var RowRoot = /*#__PURE__*/function (_Component) {
417
399
  }, {
418
400
  key: "isRowHidden",
419
401
  get: function get() {
420
- var _this$asProps8 = this.asProps,
421
- rowIndex = _this$asProps8.rowIndex,
422
- limit = _this$asProps8.limit;
402
+ var _this$asProps5 = this.asProps,
403
+ rowIndex = _this$asProps5.rowIndex,
404
+ limit = _this$asProps5.limit;
423
405
  var rowsLimit = limit === null || limit === void 0 ? void 0 : limit.fromRow;
424
406
  var columnsLimit = limit === null || limit === void 0 ? void 0 : limit.fromColumn;
425
407
  return rowsLimit !== undefined && !columnsLimit && rowIndex > rowsLimit ? true : undefined;
@@ -434,38 +416,38 @@ export var RowRoot = /*#__PURE__*/function (_Component) {
434
416
  var SRow = Box;
435
417
  var SCollapseRow = Collapse;
436
418
  var SCell = Row.Cell;
437
- var SCheckboxCell = Row.Cell;
438
- var _this$asProps9 = this.asProps,
439
- columns = _this$asProps9.columns,
440
- row = _this$asProps9.row,
441
- rows = _this$asProps9.rows,
442
- styles = _this$asProps9.styles,
443
- rowIndex = _this$asProps9.rowIndex,
444
- gridRowIndex = _this$asProps9.gridRowIndex,
445
- _this$asProps9$ariaL = _this$asProps9['aria-level'],
446
- ariaLevel = _this$asProps9$ariaL === void 0 ? 1 : _this$asProps9$ariaL,
447
- selectedRows = _this$asProps9.selectedRows,
448
- expandedRows = _this$asProps9.expandedRows,
449
- uid = _this$asProps9.uid,
450
- getFixedStyle = _this$asProps9.getFixedStyle,
451
- mergedRow = _this$asProps9.mergedRow,
452
- isAccordionRow = _this$asProps9.isAccordionRow,
453
- accordionRowIndex = _this$asProps9.accordionRowIndex,
454
- accordionDuration = _this$asProps9.accordionDuration,
455
- use = _this$asProps9.use,
456
- shadowVertical = _this$asProps9.shadowVertical,
457
- variant = _this$asProps9.variant,
458
- flatRows = _this$asProps9.flatRows,
459
- sideIndents = _this$asProps9.sideIndents,
460
- renderCell = _this$asProps9.renderCell,
461
- rawData = _this$asProps9.rawData,
462
- limit = _this$asProps9.limit,
463
- hasGroups = _this$asProps9.hasGroups,
464
- tableRef = _this$asProps9.tableRef,
465
- scrollAreaRef = _this$asProps9.scrollAreaRef,
466
- accordionAnimationRows = _this$asProps9.accordionAnimationRows,
467
- onCellClick = _this$asProps9.onCellClick,
468
- theme = _this$asProps9.theme;
419
+ var _this$asProps6 = this.asProps,
420
+ columns = _this$asProps6.columns,
421
+ row = _this$asProps6.row,
422
+ rows = _this$asProps6.rows,
423
+ styles = _this$asProps6.styles,
424
+ rowIndex = _this$asProps6.rowIndex,
425
+ gridRowIndex = _this$asProps6.gridRowIndex,
426
+ _this$asProps6$ariaL = _this$asProps6['aria-level'],
427
+ ariaLevel = _this$asProps6$ariaL === void 0 ? 1 : _this$asProps6$ariaL,
428
+ selectedRows = _this$asProps6.selectedRows,
429
+ expandedRows = _this$asProps6.expandedRows,
430
+ uid = _this$asProps6.uid,
431
+ getFixedStyle = _this$asProps6.getFixedStyle,
432
+ mergedRow = _this$asProps6.mergedRow,
433
+ isAccordionRow = _this$asProps6.isAccordionRow,
434
+ accordionRowIndex = _this$asProps6.accordionRowIndex,
435
+ accordionDuration = _this$asProps6.accordionDuration,
436
+ use = _this$asProps6.use,
437
+ shadowVertical = _this$asProps6.shadowVertical,
438
+ variant = _this$asProps6.variant,
439
+ flatRows = _this$asProps6.flatRows,
440
+ sideIndents = _this$asProps6.sideIndents,
441
+ renderCell = _this$asProps6.renderCell,
442
+ rawData = _this$asProps6.rawData,
443
+ limit = _this$asProps6.limit,
444
+ hasGroups = _this$asProps6.hasGroups,
445
+ tableRef = _this$asProps6.tableRef,
446
+ scrollAreaRef = _this$asProps6.scrollAreaRef,
447
+ accordionAnimationRows = _this$asProps6.accordionAnimationRows,
448
+ onCellClick = _this$asProps6.onCellClick,
449
+ onSelectRow = _this$asProps6.onSelectRow,
450
+ theme = _this$asProps6.theme;
469
451
  var _this$state = this.state,
470
452
  expandedForAnimation = _this$state.expandedForAnimation,
471
453
  accordionRows = _this$state.accordionRows,
@@ -514,33 +496,24 @@ export var RowRoot = /*#__PURE__*/function (_Component) {
514
496
  }
515
497
  }
516
498
  if (selectedRows && i === 0 && row[IS_EMPTY_DATA_ROW] !== true) {
517
- var checked = selectedRows.includes(rowUniqKey);
518
499
  var nextColumnName = columns[i + 1].name;
519
- if (!(nextColumnName in row)) {
500
+ if (!(nextColumnName in row) || Array.isArray(row)) {
520
501
  return null;
521
502
  }
522
- return /*#__PURE__*/React.createElement(SCheckboxCell, {
503
+ return /*#__PURE__*/React.createElement(RowSelector, {
523
504
  key: i,
524
505
  row: row,
525
- rowIndex: rowIndex
526
- // @ts-ignore
527
- ,
528
- column: {
529
- name: SELECT_ALL.toString()
530
- },
531
- columnIndex: 0,
506
+ rowIndex: rowIndex,
532
507
  gridRowIndex: gridRowIndex,
533
- onClick: _this5.handleClickCheckbox(!checked),
534
508
  expanded: expanded,
535
509
  isAccordionRow: isAccordionRow,
536
- "aria-hidden": isCellHidden,
510
+ isCellHidden: isCellHidden,
537
511
  withAccordion: withAccordion,
538
- theme: theme
539
- }, /*#__PURE__*/React.createElement(Checkbox, {
540
- checked: checked,
541
- "aria-labelledby": "".concat(uid, "_").concat(rowUniqKey, "_1"),
542
- onChange: _this5.handleSelectRow
543
- }, /*#__PURE__*/React.createElement(Checkbox.Value, null)));
512
+ theme: theme,
513
+ uid: uid,
514
+ selectedRows: selectedRows,
515
+ onSelectRow: onSelectRow
516
+ });
544
517
  }
545
518
  if (cellValue === undefined) {
546
519
  return null;