@semcore/data-table 16.5.3-prerelease.4 → 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
@@ -14,59 +14,59 @@ import { isInteractiveElement } from '@semcore/core/lib/utils/isInteractiveEleme
14
14
  import * as React from 'react';
15
15
  import { MergedColumnsCell, MergedRowsCell } from './MergedCells';
16
16
  /*!__reshadow-styles__:"./style.shadow.css"*/
17
- var styles = (/*__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_"),
17
+ var styles = (/*__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_"),
18
18
  /*__reshadow_css_end__*/
19
19
  {
20
- "__SBody": "___SBody_17cjj_gg_",
21
- "__SRow": "___SRow_17cjj_gg_",
22
- "__SRowGroup": "___SRowGroup_17cjj_gg_",
23
- "__SAccordionRows": "___SAccordionRows_17cjj_gg_",
24
- "--gridRow": "--gridRow_17cjj",
25
- "--duration": "--duration_17cjj",
26
- "_gridArea": "__gridArea_17cjj_gg_",
27
- "__SCellWrapper": "___SCellWrapper_17cjj_gg_",
28
- "__SCollapseRow": "___SCollapseRow_17cjj_gg_",
29
- "--gridArea": "--gridArea_17cjj",
30
- "_isAccordionRow": "__isAccordionRow_17cjj_gg_",
31
- "__SCell": "___SCell_17cjj_gg_",
32
- "_withoutBorder": "__withoutBorder_17cjj_gg_",
33
- "_active": "__active_17cjj_gg_",
34
- "_theme": "__theme_17cjj_gg_",
35
- "_accordionType_row": "_accordionType_row_17cjj_gg_",
36
- "_expanded": "__expanded_17cjj_gg_",
37
- "_withAccordion": "__withAccordion_17cjj_gg_",
38
- "_theme_muted": "_theme_muted_17cjj_gg_",
39
- "_theme_info": "_theme_info_17cjj_gg_",
40
- "_theme_success": "_theme_success_17cjj_gg_",
41
- "_theme_warning": "_theme_warning_17cjj_gg_",
42
- "_theme_danger": "_theme_danger_17cjj_gg_",
43
- "_isNonInteractive": "__isNonInteractive_17cjj_gg_",
44
- "__SLimitOverlayCellWrapper": "___SLimitOverlayCellWrapper_17cjj_gg_",
45
- "_name_Symbol(SELECT_ALL)": "_name_Symbol(SELECT_ALL)_17cjj_gg_",
46
- "__SCheckboxCell": "___SCheckboxCell_17cjj_gg_",
47
- "_borders_both": "_borders_both_17cjj_gg_",
48
- "_borders_left": "_borders_left_17cjj_gg_",
49
- "_borders_right": "_borders_right_17cjj_gg_",
50
- "_fixed": "__fixed_17cjj_gg_",
51
- "__SSpinContainer": "___SSpinContainer_17cjj_gg_",
52
- "_headerHeight": "__headerHeight_17cjj_gg_",
53
- "--headerHeight": "--headerHeight_17cjj",
54
- "__SEmptyData": "___SEmptyData_17cjj_gg_",
55
- "_left": "__left_17cjj_gg_",
56
- "---left": "---left_17cjj",
57
- "_innerOutline": "__innerOutline_17cjj_gg_",
58
- "_compact": "__compact_17cjj_gg_",
59
- "--data-aria-level": "--data-aria-level_17cjj",
60
- "_sideIndents_wide": "_sideIndents_wide_17cjj_gg_",
61
- "__SAccordionToggle": "___SAccordionToggle_17cjj_gg_",
62
- "_use_primary": "_use_primary_17cjj_gg_",
63
- "_use_secondary": "_use_secondary_17cjj_gg_",
64
- "_shadowVertical": "__shadowVertical_17cjj_gg_",
65
- "_fixed_left": "_fixed_left_17cjj_gg_",
66
- "_shadowVertical_median": "_shadowVertical_median_17cjj_gg_",
67
- "_shadowVertical_start": "_shadowVertical_start_17cjj_gg_",
68
- "_fixed_right": "_fixed_right_17cjj_gg_",
69
- "_shadowVertical_end": "_shadowVertical_end_17cjj_gg_"
20
+ "__SBody": "___SBody_1x6eq_gg_",
21
+ "__SRow": "___SRow_1x6eq_gg_",
22
+ "__SRowGroup": "___SRowGroup_1x6eq_gg_",
23
+ "__SAccordionRows": "___SAccordionRows_1x6eq_gg_",
24
+ "--gridRow": "--gridRow_1x6eq",
25
+ "--duration": "--duration_1x6eq",
26
+ "_gridArea": "__gridArea_1x6eq_gg_",
27
+ "__SCellWrapper": "___SCellWrapper_1x6eq_gg_",
28
+ "__SCollapseRow": "___SCollapseRow_1x6eq_gg_",
29
+ "--gridArea": "--gridArea_1x6eq",
30
+ "_isAccordionRow": "__isAccordionRow_1x6eq_gg_",
31
+ "__SCell": "___SCell_1x6eq_gg_",
32
+ "_withoutBorder": "__withoutBorder_1x6eq_gg_",
33
+ "_active": "__active_1x6eq_gg_",
34
+ "_theme": "__theme_1x6eq_gg_",
35
+ "_accordionType_row": "_accordionType_row_1x6eq_gg_",
36
+ "_expanded": "__expanded_1x6eq_gg_",
37
+ "_withAccordion": "__withAccordion_1x6eq_gg_",
38
+ "_theme_muted": "_theme_muted_1x6eq_gg_",
39
+ "_theme_info": "_theme_info_1x6eq_gg_",
40
+ "_theme_success": "_theme_success_1x6eq_gg_",
41
+ "_theme_warning": "_theme_warning_1x6eq_gg_",
42
+ "_theme_danger": "_theme_danger_1x6eq_gg_",
43
+ "_isNonInteractive": "__isNonInteractive_1x6eq_gg_",
44
+ "__SLimitOverlayCellWrapper": "___SLimitOverlayCellWrapper_1x6eq_gg_",
45
+ "_name_Symbol(SELECT_ALL)": "_name_Symbol(SELECT_ALL)_1x6eq_gg_",
46
+ "__SCheckboxCell": "___SCheckboxCell_1x6eq_gg_",
47
+ "_borders_both": "_borders_both_1x6eq_gg_",
48
+ "_borders_left": "_borders_left_1x6eq_gg_",
49
+ "_borders_right": "_borders_right_1x6eq_gg_",
50
+ "_fixed": "__fixed_1x6eq_gg_",
51
+ "__SSpinContainer": "___SSpinContainer_1x6eq_gg_",
52
+ "_headerHeight": "__headerHeight_1x6eq_gg_",
53
+ "--headerHeight": "--headerHeight_1x6eq",
54
+ "__SEmptyData": "___SEmptyData_1x6eq_gg_",
55
+ "_left": "__left_1x6eq_gg_",
56
+ "---left": "---left_1x6eq",
57
+ "_innerOutline": "__innerOutline_1x6eq_gg_",
58
+ "_compact": "__compact_1x6eq_gg_",
59
+ "--data-aria-level": "--data-aria-level_1x6eq",
60
+ "_sideIndents_wide": "_sideIndents_wide_1x6eq_gg_",
61
+ "__SAccordionToggle": "___SAccordionToggle_1x6eq_gg_",
62
+ "_use_primary": "_use_primary_1x6eq_gg_",
63
+ "_use_secondary": "_use_secondary_1x6eq_gg_",
64
+ "_shadowVertical": "__shadowVertical_1x6eq_gg_",
65
+ "_fixed_left": "_fixed_left_1x6eq_gg_",
66
+ "_shadowVertical_median": "_shadowVertical_median_1x6eq_gg_",
67
+ "_shadowVertical_start": "_shadowVertical_start_1x6eq_gg_",
68
+ "_fixed_right": "_fixed_right_1x6eq_gg_",
69
+ "_shadowVertical_end": "_shadowVertical_end_1x6eq_gg_"
70
70
  });
71
71
  import { handleFocusCell, handleKeydownFocusCell } from '../../enhancers/focusableCell';
72
72
  var CellRoot = /*#__PURE__*/function (_Component) {
@@ -9,59 +9,59 @@ import { Component, createComponent, sstyled } from '@semcore/core';
9
9
  import { hasParent } from '@semcore/core/lib/utils/hasParent';
10
10
  import * as React from 'react';
11
11
  /*!__reshadow-styles__:"./style.shadow.css"*/
12
- 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_"),
12
+ 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_"),
13
13
  /*__reshadow_css_end__*/
14
14
  {
15
- "__SBody": "___SBody_17cjj_gg_",
16
- "__SRow": "___SRow_17cjj_gg_",
17
- "__SRowGroup": "___SRowGroup_17cjj_gg_",
18
- "__SAccordionRows": "___SAccordionRows_17cjj_gg_",
19
- "--gridRow": "--gridRow_17cjj",
20
- "--duration": "--duration_17cjj",
21
- "_gridArea": "__gridArea_17cjj_gg_",
22
- "__SCellWrapper": "___SCellWrapper_17cjj_gg_",
23
- "__SCollapseRow": "___SCollapseRow_17cjj_gg_",
24
- "--gridArea": "--gridArea_17cjj",
25
- "_isAccordionRow": "__isAccordionRow_17cjj_gg_",
26
- "__SCell": "___SCell_17cjj_gg_",
27
- "_withoutBorder": "__withoutBorder_17cjj_gg_",
28
- "_active": "__active_17cjj_gg_",
29
- "_theme": "__theme_17cjj_gg_",
30
- "_accordionType_row": "_accordionType_row_17cjj_gg_",
31
- "_expanded": "__expanded_17cjj_gg_",
32
- "_withAccordion": "__withAccordion_17cjj_gg_",
33
- "_theme_muted": "_theme_muted_17cjj_gg_",
34
- "_theme_info": "_theme_info_17cjj_gg_",
35
- "_theme_success": "_theme_success_17cjj_gg_",
36
- "_theme_warning": "_theme_warning_17cjj_gg_",
37
- "_theme_danger": "_theme_danger_17cjj_gg_",
38
- "_isNonInteractive": "__isNonInteractive_17cjj_gg_",
39
- "__SLimitOverlayCellWrapper": "___SLimitOverlayCellWrapper_17cjj_gg_",
40
- "_name_Symbol(SELECT_ALL)": "_name_Symbol(SELECT_ALL)_17cjj_gg_",
41
- "__SCheckboxCell": "___SCheckboxCell_17cjj_gg_",
42
- "_borders_both": "_borders_both_17cjj_gg_",
43
- "_borders_left": "_borders_left_17cjj_gg_",
44
- "_borders_right": "_borders_right_17cjj_gg_",
45
- "_fixed": "__fixed_17cjj_gg_",
46
- "__SSpinContainer": "___SSpinContainer_17cjj_gg_",
47
- "_headerHeight": "__headerHeight_17cjj_gg_",
48
- "--headerHeight": "--headerHeight_17cjj",
49
- "__SEmptyData": "___SEmptyData_17cjj_gg_",
50
- "_left": "__left_17cjj_gg_",
51
- "---left": "---left_17cjj",
52
- "_innerOutline": "__innerOutline_17cjj_gg_",
53
- "_compact": "__compact_17cjj_gg_",
54
- "--data-aria-level": "--data-aria-level_17cjj",
55
- "_sideIndents_wide": "_sideIndents_wide_17cjj_gg_",
56
- "__SAccordionToggle": "___SAccordionToggle_17cjj_gg_",
57
- "_use_primary": "_use_primary_17cjj_gg_",
58
- "_use_secondary": "_use_secondary_17cjj_gg_",
59
- "_shadowVertical": "__shadowVertical_17cjj_gg_",
60
- "_fixed_left": "_fixed_left_17cjj_gg_",
61
- "_shadowVertical_median": "_shadowVertical_median_17cjj_gg_",
62
- "_shadowVertical_start": "_shadowVertical_start_17cjj_gg_",
63
- "_fixed_right": "_fixed_right_17cjj_gg_",
64
- "_shadowVertical_end": "_shadowVertical_end_17cjj_gg_"
15
+ "__SBody": "___SBody_1x6eq_gg_",
16
+ "__SRow": "___SRow_1x6eq_gg_",
17
+ "__SRowGroup": "___SRowGroup_1x6eq_gg_",
18
+ "__SAccordionRows": "___SAccordionRows_1x6eq_gg_",
19
+ "--gridRow": "--gridRow_1x6eq",
20
+ "--duration": "--duration_1x6eq",
21
+ "_gridArea": "__gridArea_1x6eq_gg_",
22
+ "__SCellWrapper": "___SCellWrapper_1x6eq_gg_",
23
+ "__SCollapseRow": "___SCollapseRow_1x6eq_gg_",
24
+ "--gridArea": "--gridArea_1x6eq",
25
+ "_isAccordionRow": "__isAccordionRow_1x6eq_gg_",
26
+ "__SCell": "___SCell_1x6eq_gg_",
27
+ "_withoutBorder": "__withoutBorder_1x6eq_gg_",
28
+ "_active": "__active_1x6eq_gg_",
29
+ "_theme": "__theme_1x6eq_gg_",
30
+ "_accordionType_row": "_accordionType_row_1x6eq_gg_",
31
+ "_expanded": "__expanded_1x6eq_gg_",
32
+ "_withAccordion": "__withAccordion_1x6eq_gg_",
33
+ "_theme_muted": "_theme_muted_1x6eq_gg_",
34
+ "_theme_info": "_theme_info_1x6eq_gg_",
35
+ "_theme_success": "_theme_success_1x6eq_gg_",
36
+ "_theme_warning": "_theme_warning_1x6eq_gg_",
37
+ "_theme_danger": "_theme_danger_1x6eq_gg_",
38
+ "_isNonInteractive": "__isNonInteractive_1x6eq_gg_",
39
+ "__SLimitOverlayCellWrapper": "___SLimitOverlayCellWrapper_1x6eq_gg_",
40
+ "_name_Symbol(SELECT_ALL)": "_name_Symbol(SELECT_ALL)_1x6eq_gg_",
41
+ "__SCheckboxCell": "___SCheckboxCell_1x6eq_gg_",
42
+ "_borders_both": "_borders_both_1x6eq_gg_",
43
+ "_borders_left": "_borders_left_1x6eq_gg_",
44
+ "_borders_right": "_borders_right_1x6eq_gg_",
45
+ "_fixed": "__fixed_1x6eq_gg_",
46
+ "__SSpinContainer": "___SSpinContainer_1x6eq_gg_",
47
+ "_headerHeight": "__headerHeight_1x6eq_gg_",
48
+ "--headerHeight": "--headerHeight_1x6eq",
49
+ "__SEmptyData": "___SEmptyData_1x6eq_gg_",
50
+ "_left": "__left_1x6eq_gg_",
51
+ "---left": "---left_1x6eq",
52
+ "_innerOutline": "__innerOutline_1x6eq_gg_",
53
+ "_compact": "__compact_1x6eq_gg_",
54
+ "--data-aria-level": "--data-aria-level_1x6eq",
55
+ "_sideIndents_wide": "_sideIndents_wide_1x6eq_gg_",
56
+ "__SAccordionToggle": "___SAccordionToggle_1x6eq_gg_",
57
+ "_use_primary": "_use_primary_1x6eq_gg_",
58
+ "_use_secondary": "_use_secondary_1x6eq_gg_",
59
+ "_shadowVertical": "__shadowVertical_1x6eq_gg_",
60
+ "_fixed_left": "_fixed_left_1x6eq_gg_",
61
+ "_shadowVertical_median": "_shadowVertical_median_1x6eq_gg_",
62
+ "_shadowVertical_start": "_shadowVertical_start_1x6eq_gg_",
63
+ "_fixed_right": "_fixed_right_1x6eq_gg_",
64
+ "_shadowVertical_end": "_shadowVertical_end_1x6eq_gg_"
65
65
  });
66
66
  import { handleFocusCell, handleKeydownFocusCell } from '../../enhancers/focusableCell';
67
67
  import { ACCORDION, GRID_ROW_INDEX } from '../DataTable/DataTable';
@@ -1 +1 @@
1
- {"version":3,"file":"LimitOverlay.js","names":["Box","Flex","Component","createComponent","sstyled","hasParent","React","style","_sstyled","insert","handleFocusCell","handleKeydownFocusCell","ACCORDION","GRID_ROW_INDEX","LimitOverlayRoot","_Component","_this","_classCallCheck","_len","arguments","length","args","Array","_key","_callSuper","concat","_defineProperty","createRef","e","lockedCell","tableElement","asProps","tableRef","current","relatedTarget","target","HTMLElement","dataset","skipTargetFocus","undefined","currentTarget","_inherits","_createClass","key","get","_this$asProps","columns","hasGroups","flatRows","limit","fromRow","fromColumn","rowOffset","rowStart","rowEnd","lastRow","isArray","columnStart","columnEnd","_this$asProps2","scrollAreaRef","some","c","fixed","limitWrapperRef","scrollAreaRect","getBoundingClientRect","limitWrapperRect","left","x","width","value","render","_ref","SLimitOverlayCellWrapper","_this$asProps3","rows","styles","rowsLimit","columnsLimit","renderOverlay","colIndex","colSpan","rowsSpan","_this$sizes","sizes","createElement","cn","limitOverlayGridArea","onClick","stopPropagation","handleFocusableCellFocus","handleFocusableCellKeyDown","LimitOverlay"],"sources":["../../../../src/components/Body/LimitOverlay.tsx"],"sourcesContent":["import { Box, Flex } from '@semcore/base-components';\nimport { Component, createComponent, type Intergalactic, sstyled } from '@semcore/core';\nimport { hasParent } from '@semcore/core/lib/utils/hasParent';\nimport * as React from 'react';\n\nimport type { DTRow, DTRows } from './Row.types';\nimport style from './style.shadow.css';\nimport type { IFocusableCell, LockedCell } from '../../enhancers/focusableCell';\nimport { handleFocusCell, handleKeydownFocusCell } from '../../enhancers/focusableCell';\nimport { ACCORDION, GRID_ROW_INDEX } from '../DataTable/DataTable';\nimport type { DataTableProps } from '../DataTable/DataTable.types';\nimport type { DTColumn } from '../Head/Column.types';\n\ntype LimitOverlayProps<UniqKeyType> = {\n columns: DTColumn[];\n rows: DTRows<UniqKeyType>;\n limit: Exclude<DataTableProps<any, any, any>['limit'], undefined>;\n flatRows: DTRow<UniqKeyType>[];\n hasGroups: boolean;\n tableRef: React.RefObject<HTMLDivElement>;\n scrollAreaRef: React.RefObject<HTMLDivElement>;\n};\n\nclass LimitOverlayRoot<UniqKeyType> extends Component<LimitOverlayProps<UniqKeyType>> implements IFocusableCell {\n lockedCell: LockedCell = [null, false];\n\n limitWrapperRef = React.createRef<HTMLDivElement>();\n\n static displayName = 'LimitOverlay';\n static style = style;\n\n get limitOverlayGridArea() {\n const {\n columns,\n hasGroups,\n flatRows,\n limit,\n } = this.asProps;\n\n const { fromRow, fromColumn } = limit;\n\n const rowOffset = hasGroups ? 3 : 2;\n\n const rowStart = fromRow !== undefined\n ? rowOffset + flatRows[fromRow][GRID_ROW_INDEX]\n : rowOffset;\n let rowEnd = rowOffset;\n\n const lastRow = flatRows[flatRows.length - 1];\n if (lastRow[ACCORDION]) {\n rowEnd = rowEnd + lastRow[GRID_ROW_INDEX] + 1 + (Array.isArray(lastRow[ACCORDION]) ? lastRow[ACCORDION].length : 1);\n } else {\n rowEnd = rowEnd + lastRow[GRID_ROW_INDEX] + 1;\n }\n\n const columnStart = fromColumn !== undefined ? fromColumn + 1 : 1;\n const columnEnd = columns.length + 1;\n\n return `${rowStart} / ${columnStart} / ${rowEnd} / ${columnEnd}`;\n }\n\n get sizes() {\n const { scrollAreaRef, columns } = this.asProps;\n\n if (columns.some((c) => c.fixed) && this.limitWrapperRef.current && scrollAreaRef.current) {\n const scrollAreaRect = scrollAreaRef.current.getBoundingClientRect();\n const limitWrapperRect = this.limitWrapperRef.current.getBoundingClientRect();\n\n const left = limitWrapperRect.x - scrollAreaRect.x;\n const width = scrollAreaRect.width - limitWrapperRect.x + scrollAreaRect.x;\n\n return {\n left,\n width,\n };\n }\n\n return {\n left: 0,\n width: 0,\n };\n }\n\n handleFocusableCellKeyDown = (e: React.KeyboardEvent) => {\n handleKeydownFocusCell(this.lockedCell, e);\n };\n\n handleFocusableCellFocus = (e: React.FocusEvent) => {\n const tableElement = this.asProps.tableRef.current;\n if (tableElement && !hasParent(e.relatedTarget, tableElement)) {\n if (e.target instanceof HTMLElement) {\n e.target.dataset.skipTargetFocus = 'true';\n }\n } else {\n if (e.target instanceof HTMLElement) {\n e.target.dataset.skipTargetFocus = undefined;\n }\n\n handleFocusCell(this.lockedCell, e.target, e.currentTarget);\n }\n };\n\n render() {\n const SLimitOverlayCellWrapper = Flex;\n const { columns, rows, styles, limit } = this.asProps;\n\n const rowsLimit = limit.fromRow;\n const columnsLimit = limit.fromColumn;\n const renderOverlay = limit.renderOverlay;\n\n const colIndex = columnsLimit ? columnsLimit + 1 : 1;\n const colSpan = columns.length - (columnsLimit ?? 0);\n const rowsSpan = rows.length - (rowsLimit ?? 0);\n const { width, left } = this.sizes;\n\n return sstyled(styles)(\n <SLimitOverlayCellWrapper\n ref={this.limitWrapperRef}\n // @ts-ignore\n gridArea={this.limitOverlayGridArea}\n w={width ? width : undefined}\n left={left ? left : undefined}\n onClick={(e) => e.stopPropagation()}\n >\n <Box\n role='gridcell'\n aria-colindex={colIndex}\n aria-colspan={colSpan}\n aria-rowspan={rowsSpan}\n tabIndex={-1}\n onFocus={this.handleFocusableCellFocus}\n onKeyDown={this.handleFocusableCellKeyDown}\n >\n {renderOverlay?.()}\n </Box>\n </SLimitOverlayCellWrapper>,\n );\n }\n}\n\ntype LimitOverlayType = (<\n UniqKeyType,\n Tag extends Intergalactic.Tag = 'div',\n>(\n props: Intergalactic.InternalTypings.ComponentProps<Tag, 'div', LimitOverlayProps<UniqKeyType>>\n) => Intergalactic.InternalTypings.ComponentRenderingResults) &\nIntergalactic.InternalTypings.ComponentAdditive<'div', 'div', LimitOverlayProps<any>>;\n\nexport const LimitOverlay = createComponent(LimitOverlayRoot) as LimitOverlayType;\n"],"mappings":"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","ignoreList":[]}
1
+ {"version":3,"file":"LimitOverlay.js","names":["Box","Flex","Component","createComponent","sstyled","hasParent","React","style","_sstyled","insert","handleFocusCell","handleKeydownFocusCell","ACCORDION","GRID_ROW_INDEX","LimitOverlayRoot","_Component","_this","_classCallCheck","_len","arguments","length","args","Array","_key","_callSuper","concat","_defineProperty","createRef","e","lockedCell","tableElement","asProps","tableRef","current","relatedTarget","target","HTMLElement","dataset","skipTargetFocus","undefined","currentTarget","_inherits","_createClass","key","get","_this$asProps","columns","hasGroups","flatRows","limit","fromRow","fromColumn","rowOffset","rowStart","rowEnd","lastRow","isArray","columnStart","columnEnd","_this$asProps2","scrollAreaRef","some","c","fixed","limitWrapperRef","scrollAreaRect","getBoundingClientRect","limitWrapperRect","left","x","width","value","render","_ref","SLimitOverlayCellWrapper","_this$asProps3","rows","styles","rowsLimit","columnsLimit","renderOverlay","colIndex","colSpan","rowsSpan","_this$sizes","sizes","createElement","cn","limitOverlayGridArea","onClick","stopPropagation","handleFocusableCellFocus","handleFocusableCellKeyDown","LimitOverlay"],"sources":["../../../../src/components/Body/LimitOverlay.tsx"],"sourcesContent":["import { Box, Flex } from '@semcore/base-components';\nimport { Component, createComponent, type Intergalactic, sstyled } from '@semcore/core';\nimport { hasParent } from '@semcore/core/lib/utils/hasParent';\nimport * as React from 'react';\n\nimport type { DTRow, DTRows } from './Row.types';\nimport style from './style.shadow.css';\nimport type { IFocusableCell, LockedCell } from '../../enhancers/focusableCell';\nimport { handleFocusCell, handleKeydownFocusCell } from '../../enhancers/focusableCell';\nimport { ACCORDION, GRID_ROW_INDEX } from '../DataTable/DataTable';\nimport type { DataTableProps } from '../DataTable/DataTable.types';\nimport type { DTColumn } from '../Head/Column.types';\n\ntype LimitOverlayProps<UniqKeyType> = {\n columns: DTColumn[];\n rows: DTRows<UniqKeyType>;\n limit: Exclude<DataTableProps<any, any, any>['limit'], undefined>;\n flatRows: DTRow<UniqKeyType>[];\n hasGroups: boolean;\n tableRef: React.RefObject<HTMLDivElement>;\n scrollAreaRef: React.RefObject<HTMLDivElement>;\n};\n\nclass LimitOverlayRoot<UniqKeyType> extends Component<LimitOverlayProps<UniqKeyType>> implements IFocusableCell {\n lockedCell: LockedCell = [null, false];\n\n limitWrapperRef = React.createRef<HTMLDivElement>();\n\n static displayName = 'LimitOverlay';\n static style = style;\n\n get limitOverlayGridArea() {\n const {\n columns,\n hasGroups,\n flatRows,\n limit,\n } = this.asProps;\n\n const { fromRow, fromColumn } = limit;\n\n const rowOffset = hasGroups ? 3 : 2;\n\n const rowStart = fromRow !== undefined\n ? rowOffset + flatRows[fromRow][GRID_ROW_INDEX]\n : rowOffset;\n let rowEnd = rowOffset;\n\n const lastRow = flatRows[flatRows.length - 1];\n if (lastRow[ACCORDION]) {\n rowEnd = rowEnd + lastRow[GRID_ROW_INDEX] + 1 + (Array.isArray(lastRow[ACCORDION]) ? lastRow[ACCORDION].length : 1);\n } else {\n rowEnd = rowEnd + lastRow[GRID_ROW_INDEX] + 1;\n }\n\n const columnStart = fromColumn !== undefined ? fromColumn + 1 : 1;\n const columnEnd = columns.length + 1;\n\n return `${rowStart} / ${columnStart} / ${rowEnd} / ${columnEnd}`;\n }\n\n get sizes() {\n const { scrollAreaRef, columns } = this.asProps;\n\n if (columns.some((c) => c.fixed) && this.limitWrapperRef.current && scrollAreaRef.current) {\n const scrollAreaRect = scrollAreaRef.current.getBoundingClientRect();\n const limitWrapperRect = this.limitWrapperRef.current.getBoundingClientRect();\n\n const left = limitWrapperRect.x - scrollAreaRect.x;\n const width = scrollAreaRect.width - limitWrapperRect.x + scrollAreaRect.x;\n\n return {\n left,\n width,\n };\n }\n\n return {\n left: 0,\n width: 0,\n };\n }\n\n handleFocusableCellKeyDown = (e: React.KeyboardEvent) => {\n handleKeydownFocusCell(this.lockedCell, e);\n };\n\n handleFocusableCellFocus = (e: React.FocusEvent) => {\n const tableElement = this.asProps.tableRef.current;\n if (tableElement && !hasParent(e.relatedTarget, tableElement)) {\n if (e.target instanceof HTMLElement) {\n e.target.dataset.skipTargetFocus = 'true';\n }\n } else {\n if (e.target instanceof HTMLElement) {\n e.target.dataset.skipTargetFocus = undefined;\n }\n\n handleFocusCell(this.lockedCell, e.target, e.currentTarget);\n }\n };\n\n render() {\n const SLimitOverlayCellWrapper = Flex;\n const { columns, rows, styles, limit } = this.asProps;\n\n const rowsLimit = limit.fromRow;\n const columnsLimit = limit.fromColumn;\n const renderOverlay = limit.renderOverlay;\n\n const colIndex = columnsLimit ? columnsLimit + 1 : 1;\n const colSpan = columns.length - (columnsLimit ?? 0);\n const rowsSpan = rows.length - (rowsLimit ?? 0);\n const { width, left } = this.sizes;\n\n return sstyled(styles)(\n <SLimitOverlayCellWrapper\n ref={this.limitWrapperRef}\n // @ts-ignore\n gridArea={this.limitOverlayGridArea}\n w={width ? width : undefined}\n left={left ? left : undefined}\n onClick={(e: React.SyntheticEvent) => e.stopPropagation()}\n >\n <Box\n role='gridcell'\n aria-colindex={colIndex}\n aria-colspan={colSpan}\n aria-rowspan={rowsSpan}\n tabIndex={-1}\n onFocus={this.handleFocusableCellFocus}\n onKeyDown={this.handleFocusableCellKeyDown}\n >\n {renderOverlay?.()}\n </Box>\n </SLimitOverlayCellWrapper>,\n );\n }\n}\n\ntype LimitOverlayType = (<\n UniqKeyType,\n Tag extends Intergalactic.Tag = 'div',\n>(\n props: Intergalactic.InternalTypings.ComponentProps<Tag, 'div', LimitOverlayProps<UniqKeyType>>\n) => Intergalactic.InternalTypings.ComponentRenderingResults) &\nIntergalactic.InternalTypings.ComponentAdditive<'div', 'div', LimitOverlayProps<any>>;\n\nexport const LimitOverlay = createComponent(LimitOverlayRoot) as LimitOverlayType;\n"],"mappings":"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","ignoreList":[]}