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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (82) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/lib/cjs/components/AccordionRows/AccordionRows.js +51 -51
  3. package/lib/cjs/components/Body/Body.js +71 -88
  4. package/lib/cjs/components/Body/Body.js.map +1 -1
  5. package/lib/cjs/components/Body/Body.types.js.map +1 -1
  6. package/lib/cjs/components/Body/Cell.js +51 -51
  7. package/lib/cjs/components/Body/LimitOverlay.js +51 -51
  8. package/lib/cjs/components/Body/LimitOverlay.js.map +1 -1
  9. package/lib/cjs/components/Body/Row.js +130 -157
  10. package/lib/cjs/components/Body/Row.js.map +1 -1
  11. package/lib/cjs/components/Body/Row.types.js.map +1 -1
  12. package/lib/cjs/components/Body/RowGroup.js +147 -0
  13. package/lib/cjs/components/Body/RowGroup.js.map +1 -0
  14. package/lib/cjs/components/Body/style.shadow.css +13 -4
  15. package/lib/cjs/components/DataTable/DataTable.js +122 -102
  16. package/lib/cjs/components/DataTable/DataTable.js.map +1 -1
  17. package/lib/cjs/components/DataTable/DataTable.types.js.map +1 -1
  18. package/lib/cjs/components/Head/Column.js +50 -47
  19. package/lib/cjs/components/Head/Column.js.map +1 -1
  20. package/lib/cjs/components/Head/Group.js +36 -36
  21. package/lib/cjs/components/Head/Head.js +90 -57
  22. package/lib/cjs/components/Head/Head.js.map +1 -1
  23. package/lib/cjs/components/Head/Head.types.js.map +1 -1
  24. package/lib/cjs/components/RowSelector/RowsSelector.js +124 -0
  25. package/lib/cjs/components/RowSelector/RowsSelector.js.map +1 -0
  26. package/lib/cjs/index.js +7 -0
  27. package/lib/cjs/index.js.map +1 -1
  28. package/lib/cjs/store/SelectableRows.js +210 -0
  29. package/lib/cjs/store/SelectableRows.js.map +1 -0
  30. package/lib/es6/components/AccordionRows/AccordionRows.js +51 -51
  31. package/lib/es6/components/Body/Body.js +73 -90
  32. package/lib/es6/components/Body/Body.js.map +1 -1
  33. package/lib/es6/components/Body/Body.types.js.map +1 -1
  34. package/lib/es6/components/Body/Cell.js +51 -51
  35. package/lib/es6/components/Body/LimitOverlay.js +51 -51
  36. package/lib/es6/components/Body/LimitOverlay.js.map +1 -1
  37. package/lib/es6/components/Body/Row.js +131 -158
  38. package/lib/es6/components/Body/Row.js.map +1 -1
  39. package/lib/es6/components/Body/Row.types.js.map +1 -1
  40. package/lib/es6/components/Body/RowGroup.js +140 -0
  41. package/lib/es6/components/Body/RowGroup.js.map +1 -0
  42. package/lib/es6/components/Body/style.shadow.css +13 -4
  43. package/lib/es6/components/DataTable/DataTable.js +122 -102
  44. package/lib/es6/components/DataTable/DataTable.js.map +1 -1
  45. package/lib/es6/components/DataTable/DataTable.types.js.map +1 -1
  46. package/lib/es6/components/Head/Column.js +50 -47
  47. package/lib/es6/components/Head/Column.js.map +1 -1
  48. package/lib/es6/components/Head/Group.js +36 -36
  49. package/lib/es6/components/Head/Head.js +90 -57
  50. package/lib/es6/components/Head/Head.js.map +1 -1
  51. package/lib/es6/components/Head/Head.types.js.map +1 -1
  52. package/lib/es6/components/RowSelector/RowsSelector.js +117 -0
  53. package/lib/es6/components/RowSelector/RowsSelector.js.map +1 -0
  54. package/lib/es6/index.js +2 -1
  55. package/lib/es6/index.js.map +1 -1
  56. package/lib/es6/store/SelectableRows.js +203 -0
  57. package/lib/es6/store/SelectableRows.js.map +1 -0
  58. package/lib/esm/components/AccordionRows/AccordionRows.mjs +52 -52
  59. package/lib/esm/components/Body/Body.mjs +74 -90
  60. package/lib/esm/components/Body/Cell.mjs +52 -52
  61. package/lib/esm/components/Body/LimitOverlay.mjs +52 -52
  62. package/lib/esm/components/Body/Row.mjs +71 -91
  63. package/lib/esm/components/Body/RowGroup.mjs +133 -0
  64. package/lib/esm/components/Body/style.shadow.css +13 -4
  65. package/lib/esm/components/DataTable/DataTable.mjs +68 -47
  66. package/lib/esm/components/Head/Column.mjs +51 -48
  67. package/lib/esm/components/Head/Group.mjs +37 -37
  68. package/lib/esm/components/Head/Head.mjs +91 -56
  69. package/lib/esm/components/RowSelector/RowsSelector.mjs +98 -0
  70. package/lib/esm/index.mjs +2 -0
  71. package/lib/esm/store/SelectableRows.mjs +200 -0
  72. package/lib/types/components/Body/Body.types.d.ts +2 -1
  73. package/lib/types/components/Body/Row.d.ts +0 -2
  74. package/lib/types/components/Body/Row.types.d.ts +2 -1
  75. package/lib/types/components/Body/RowGroup.d.ts +19 -0
  76. package/lib/types/components/DataTable/DataTable.types.d.ts +21 -12
  77. package/lib/types/components/Head/Column.d.ts +1 -0
  78. package/lib/types/components/Head/Head.types.d.ts +2 -1
  79. package/lib/types/components/RowSelector/RowsSelector.d.ts +31 -0
  80. package/lib/types/index.d.ts +2 -1
  81. package/lib/types/store/SelectableRows.d.ts +51 -0
  82. package/package.json +8 -8
@@ -18,59 +18,59 @@ var React = _interopRequireWildcard(require("react"));
18
18
  var _focusableCell = require("../../enhancers/focusableCell");
19
19
  var _DataTable = require("../DataTable/DataTable");
20
20
  /*!__reshadow-styles__:"./style.shadow.css"*/
21
- var style = (/*__reshadow_css_start__*/_core.sstyled.insert(/*__inner_css_start__*/".___SBody_17cjj_gg_,.___SRowGroup_17cjj_gg_,.___SRow_17cjj_gg_{display:contents}.___SAccordionRows_17cjj_gg_{display:grid;grid-column:1/-1;grid-row:var(--gridRow_17cjj);overflow:clip;transition-property:max-height;transition-duration:var(--duration_17cjj);transition-timing-function:linear;grid-template-columns:subgrid}.___SBody_17cjj_gg_.__compact_17cjj_gg_ .___SCell_17cjj_gg_{padding:var(--intergalactic-spacing-3x, 12px) var(--intergalactic-spacing-2x, 8px)}.___SBody_17cjj_gg_.__compact_17cjj_gg_ .___SCell_17cjj_gg_[data-aria-level]{padding-left:calc(var(--intergalactic-spacing-2x, 8px) + ((var(--intergalactic-spacing-4x, 16px) + var(--intergalactic-spacing-1x, 4px) + var(--intergalactic-spacing-05x, 2px))*(var(--data-aria-level_17cjj) - 1)))}.___SBody_17cjj_gg_.__compact_17cjj_gg_ .___SRow_17cjj_gg_ .___SCellWrapper_17cjj_gg_:first-child .___SCell_17cjj_gg_[data-aria-level]{padding-left:calc(var(--intergalactic-spacing-2x, 8px) + ((var(--intergalactic-spacing-4x, 16px) + var(--intergalactic-spacing-1x, 4px) + var(--intergalactic-spacing-05x, 2px))*(var(--data-aria-level_17cjj) - 1)))}.___SBody_17cjj_gg_.__compact_17cjj_gg_ .___SCollapseRow_17cjj_gg_._sideIndents_wide_17cjj_gg_ .___SCellWrapper_17cjj_gg_:first-child .___SCell_17cjj_gg_[data-aria-level],.___SBody_17cjj_gg_.__compact_17cjj_gg_ .___SRow_17cjj_gg_._sideIndents_wide_17cjj_gg_ .___SCellWrapper_17cjj_gg_:first-child .___SCell_17cjj_gg_[data-aria-level]{padding-left:calc(var(--intergalactic-spacing-5x, 20px) + ((var(--intergalactic-spacing-4x, 16px) + var(--intergalactic-spacing-1x, 4px) + var(--intergalactic-spacing-05x, 2px))*(var(--data-aria-level_17cjj) - 1)))}.___SBody_17cjj_gg_.__compact_17cjj_gg_ .___SCell_17cjj_gg_ .___SAccordionToggle_17cjj_gg_{margin-right:var(--intergalactic-spacing-2x, 8px)}.___SCellWrapper_17cjj_gg_.__gridArea_17cjj_gg_,.___SCollapseRow_17cjj_gg_.__gridArea_17cjj_gg_,.___SRow_17cjj_gg_.__gridArea_17cjj_gg_{grid-area:var(--gridArea_17cjj)}.___SCellWrapper_17cjj_gg_{height:100%;overflow:hidden}.___SCollapseRow_17cjj_gg_.__gridArea_17cjj_gg_>.___SCellWrapper_17cjj_gg_,.___SRow_17cjj_gg_.__isAccordionRow_17cjj_gg_>.___SCellWrapper_17cjj_gg_{height:auto;overflow:auto}.___SAccordionRows_17cjj_gg_>.___SRow_17cjj_gg_.__isAccordionRow_17cjj_gg_:last-child>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_:not(.__withoutBorder_17cjj_gg_),.___SCollapseRow_17cjj_gg_.__gridArea_17cjj_gg_>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_:not(.__withoutBorder_17cjj_gg_){border-bottom:1px solid var(--intergalactic-border-table-accent, #a9abb6)}.___SCollapseRow_17cjj_gg_>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_{display:block}.___SCell_17cjj_gg_:not(.__theme_17cjj_gg_).__expanded_17cjj_gg_.__withAccordion_17cjj_gg_,.___SRow_17cjj_gg_.__active_17cjj_gg_>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_:not(.__theme_17cjj_gg_),.___SRow_17cjj_gg_._accordionType_row_17cjj_gg_.__expanded_17cjj_gg_>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_:not(.__theme_17cjj_gg_){background-color:var(--intergalactic-table-td-cell-active, #e6e7ed)}.___SCell_17cjj_gg_._theme_muted_17cjj_gg_.__expanded_17cjj_gg_.__withAccordion_17cjj_gg_{background-color:var(--intergalactic-table-td-cell-active, #e6e7ed)}.___SCell_17cjj_gg_._theme_info_17cjj_gg_.__expanded_17cjj_gg_.__withAccordion_17cjj_gg_{background-color:var(--intergalactic-table-td-cell-selected-hover, #c4e5fe)}.___SCell_17cjj_gg_._theme_success_17cjj_gg_.__expanded_17cjj_gg_.__withAccordion_17cjj_gg_{background-color:var(--intergalactic-table-td-cell-new-hover, #9ef2c9)}.___SCell_17cjj_gg_._theme_warning_17cjj_gg_.__expanded_17cjj_gg_.__withAccordion_17cjj_gg_{background-color:var(--intergalactic-table-td-cell-warning-hover, #ffdca2)}.___SCell_17cjj_gg_._theme_danger_17cjj_gg_.__expanded_17cjj_gg_.__withAccordion_17cjj_gg_{background-color:var(--intergalactic-table-td-cell-critical-hover, #ffd7df)}.___SCollapseRow_17cjj_gg_>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_:not(.__theme_17cjj_gg_),.___SRow_17cjj_gg_.__isAccordionRow_17cjj_gg_>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_:not(.__theme_17cjj_gg_){background-color:var(--intergalactic-table-td-cell-accordion, #f4f5f9)}@media (hover:hover){.___SRowGroup_17cjj_gg_:has(.___SCell_17cjj_gg_:hover)>.___SRow_17cjj_gg_:not(.__isNonInteractive_17cjj_gg_):not([aria-hidden])>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_[data-grouped-by=rowgroup]:not(.__theme_17cjj_gg_):not(.__expanded_17cjj_gg_.__withAccordion_17cjj_gg_):not([aria-hidden]),.___SRowGroup_17cjj_gg_:has(.___SCell_17cjj_gg_[data-grouped-by=rowgroup]:hover)>.___SRow_17cjj_gg_:not(.__isNonInteractive_17cjj_gg_):not([aria-hidden])>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_:not(.__theme_17cjj_gg_):not(.__expanded_17cjj_gg_.__withAccordion_17cjj_gg_):not([aria-hidden]),.___SRow_17cjj_gg_:not(._accordionType_row_17cjj_gg_.__expanded_17cjj_gg_):hover:not(.__isNonInteractive_17cjj_gg_):not([aria-hidden]):not(:has(.___SLimitOverlayCellWrapper_17cjj_gg_:hover))>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_:not(.__theme_17cjj_gg_):not(.__expanded_17cjj_gg_.__withAccordion_17cjj_gg_):not([aria-hidden]){background-color:var(--intergalactic-table-td-cell-hover, #f0f0f4)}.___SRowGroup_17cjj_gg_:has(.___SCell_17cjj_gg_:hover)>.___SRow_17cjj_gg_._theme_muted_17cjj_gg_:not(.__isNonInteractive_17cjj_gg_):not([aria-hidden])>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_[data-grouped-by=rowgroup]:not(.__theme_17cjj_gg_):not([aria-hidden]),.___SRowGroup_17cjj_gg_:has(.___SCell_17cjj_gg_:hover)>.___SRow_17cjj_gg_:not(.__isNonInteractive_17cjj_gg_):not([aria-hidden])>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_[data-grouped-by=rowgroup]._theme_muted_17cjj_gg_:not([aria-hidden]),.___SRowGroup_17cjj_gg_:has(.___SCell_17cjj_gg_[data-grouped-by=rowgroup]:hover)>.___SRow_17cjj_gg_._theme_muted_17cjj_gg_:not(.__isNonInteractive_17cjj_gg_):not([aria-hidden])>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_:not(.__theme_17cjj_gg_):not([aria-hidden]),.___SRowGroup_17cjj_gg_:has(.___SCell_17cjj_gg_[data-grouped-by=rowgroup]:hover)>.___SRow_17cjj_gg_:not(.__isNonInteractive_17cjj_gg_):not([aria-hidden])>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_._theme_muted_17cjj_gg_:not([aria-hidden]),.___SRow_17cjj_gg_._theme_muted_17cjj_gg_:hover:not(.__expanded_17cjj_gg_.__isNonInteractive_17cjj_gg_):not([aria-hidden]):not(:has(.___SLimitOverlayCellWrapper_17cjj_gg_:hover))>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_:not(.__theme_17cjj_gg_):not(.__expanded_17cjj_gg_.__withAccordion_17cjj_gg_):not([aria-hidden]),.___SRow_17cjj_gg_:hover:not(.__isNonInteractive_17cjj_gg_):not([aria-hidden]):not(:has(.___SLimitOverlayCellWrapper_17cjj_gg_:hover))>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_._theme_muted_17cjj_gg_:not([aria-hidden]){background-color:var(--intergalactic-table-td-cell-active, #e6e7ed)}.___SRowGroup_17cjj_gg_:has(.___SCell_17cjj_gg_:hover)>.___SRow_17cjj_gg_._theme_info_17cjj_gg_:not(.__isNonInteractive_17cjj_gg_):not([aria-hidden])>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_[data-grouped-by=rowgroup]:not(.__theme_17cjj_gg_):not([aria-hidden]),.___SRowGroup_17cjj_gg_:has(.___SCell_17cjj_gg_:hover)>.___SRow_17cjj_gg_:not(.__isNonInteractive_17cjj_gg_):not([aria-hidden])>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_[data-grouped-by=rowgroup]._theme_info_17cjj_gg_:not([aria-hidden]),.___SRowGroup_17cjj_gg_:has(.___SCell_17cjj_gg_[data-grouped-by=rowgroup]:hover)>.___SRow_17cjj_gg_._theme_info_17cjj_gg_:not(.__isNonInteractive_17cjj_gg_):not([aria-hidden])>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_:not(.__theme_17cjj_gg_):not([aria-hidden]),.___SRowGroup_17cjj_gg_:has(.___SCell_17cjj_gg_[data-grouped-by=rowgroup]:hover)>.___SRow_17cjj_gg_:not(.__isNonInteractive_17cjj_gg_):not([aria-hidden])>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_._theme_info_17cjj_gg_:not([aria-hidden]),.___SRow_17cjj_gg_._theme_info_17cjj_gg_:hover:not(.__expanded_17cjj_gg_.__isNonInteractive_17cjj_gg_):not([aria-hidden]):not(:has(.___SLimitOverlayCellWrapper_17cjj_gg_:hover))>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_:not(.__theme_17cjj_gg_):not(.__expanded_17cjj_gg_.__withAccordion_17cjj_gg_):not([aria-hidden]),.___SRow_17cjj_gg_:hover:not(.__isNonInteractive_17cjj_gg_):not([aria-hidden]):not(:has(.___SLimitOverlayCellWrapper_17cjj_gg_:hover))>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_._theme_info_17cjj_gg_:not([aria-hidden]){background-color:var(--intergalactic-table-td-cell-selected-hover, #c4e5fe)}.___SRowGroup_17cjj_gg_:has(.___SCell_17cjj_gg_:hover)>.___SRow_17cjj_gg_._theme_success_17cjj_gg_:not(.__isNonInteractive_17cjj_gg_):not([aria-hidden])>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_[data-grouped-by=rowgroup]:not(.__theme_17cjj_gg_):not(.__expanded_17cjj_gg_.__withAccordion_17cjj_gg_):not([aria-hidden]),.___SRowGroup_17cjj_gg_:has(.___SCell_17cjj_gg_:hover)>.___SRow_17cjj_gg_:not(.__isNonInteractive_17cjj_gg_):not([aria-hidden])>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_[data-grouped-by=rowgroup]._theme_success_17cjj_gg_:not([aria-hidden]),.___SRowGroup_17cjj_gg_:has(.___SCell_17cjj_gg_[data-grouped-by=rowgroup]:hover)>.___SRow_17cjj_gg_._theme_success_17cjj_gg_:not(.__isNonInteractive_17cjj_gg_):not([aria-hidden])>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_:not(.__theme_17cjj_gg_):not([aria-hidden]),.___SRowGroup_17cjj_gg_:has(.___SCell_17cjj_gg_[data-grouped-by=rowgroup]:hover)>.___SRow_17cjj_gg_:not(.__isNonInteractive_17cjj_gg_):not([aria-hidden])>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_._theme_success_17cjj_gg_:not([aria-hidden]),.___SRow_17cjj_gg_._theme_success_17cjj_gg_:hover:not(.__expanded_17cjj_gg_.__isNonInteractive_17cjj_gg_):not([aria-hidden]):not(:has(.___SLimitOverlayCellWrapper_17cjj_gg_:hover))>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_:not(.__theme_17cjj_gg_):not(.__expanded_17cjj_gg_.__withAccordion_17cjj_gg_):not([aria-hidden]),.___SRow_17cjj_gg_:hover:not(.__isNonInteractive_17cjj_gg_):not([aria-hidden]):not(:has(.___SLimitOverlayCellWrapper_17cjj_gg_:hover))>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_._theme_success_17cjj_gg_:not([aria-hidden]){background-color:var(--intergalactic-table-td-cell-new-hover, #9ef2c9)}.___SRowGroup_17cjj_gg_:has(.___SCell_17cjj_gg_:hover)>.___SRow_17cjj_gg_._theme_warning_17cjj_gg_:not(.__isNonInteractive_17cjj_gg_):not([aria-hidden])>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_[data-grouped-by=rowgroup]:not(.__theme_17cjj_gg_):not([aria-hidden]),.___SRowGroup_17cjj_gg_:has(.___SCell_17cjj_gg_:hover)>.___SRow_17cjj_gg_:not(.__isNonInteractive_17cjj_gg_):not([aria-hidden])>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_[data-grouped-by=rowgroup]._theme_warning_17cjj_gg_:not([aria-hidden]),.___SRowGroup_17cjj_gg_:has(.___SCell_17cjj_gg_[data-grouped-by=rowgroup]:hover)>.___SRow_17cjj_gg_._theme_warning_17cjj_gg_:not(.__isNonInteractive_17cjj_gg_):not([aria-hidden])>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_:not(.__theme_17cjj_gg_):not([aria-hidden]),.___SRowGroup_17cjj_gg_:has(.___SCell_17cjj_gg_[data-grouped-by=rowgroup]:hover)>.___SRow_17cjj_gg_:not(.__isNonInteractive_17cjj_gg_):not([aria-hidden])>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_._theme_warning_17cjj_gg_:not([aria-hidden]),.___SRow_17cjj_gg_._theme_warning_17cjj_gg_:hover:not(.__expanded_17cjj_gg_.__isNonInteractive_17cjj_gg_):not([aria-hidden]):not(:has(.___SLimitOverlayCellWrapper_17cjj_gg_:hover))>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_:not(.__theme_17cjj_gg_):not(.__expanded_17cjj_gg_.__withAccordion_17cjj_gg_):not([aria-hidden]),.___SRow_17cjj_gg_:hover:not(.__isNonInteractive_17cjj_gg_):not([aria-hidden]):not(:has(.___SLimitOverlayCellWrapper_17cjj_gg_:hover))>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_._theme_warning_17cjj_gg_:not([aria-hidden]){background-color:var(--intergalactic-table-td-cell-warning-hover, #ffdca2)}.___SRowGroup_17cjj_gg_:has(.___SCell_17cjj_gg_:hover)>.___SRow_17cjj_gg_._theme_danger_17cjj_gg_:not(.__isNonInteractive_17cjj_gg_):not([aria-hidden])>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_[data-grouped-by=rowgroup]:not(.__theme_17cjj_gg_):not([aria-hidden]),.___SRowGroup_17cjj_gg_:has(.___SCell_17cjj_gg_:hover)>.___SRow_17cjj_gg_:not(.__isNonInteractive_17cjj_gg_):not([aria-hidden])>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_[data-grouped-by=rowgroup]._theme_danger_17cjj_gg_:not([aria-hidden]),.___SRowGroup_17cjj_gg_:has(.___SCell_17cjj_gg_[data-grouped-by=rowgroup]:hover)>.___SRow_17cjj_gg_._theme_danger_17cjj_gg_:not(.__isNonInteractive_17cjj_gg_):not([aria-hidden])>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_:not(.__theme_17cjj_gg_):not([aria-hidden]),.___SRowGroup_17cjj_gg_:has(.___SCell_17cjj_gg_[data-grouped-by=rowgroup]:hover)>.___SRow_17cjj_gg_:not(.__isNonInteractive_17cjj_gg_):not([aria-hidden])>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_._theme_danger_17cjj_gg_:not([aria-hidden]),.___SRow_17cjj_gg_._theme_danger_17cjj_gg_:hover:not(.__expanded_17cjj_gg_.__isNonInteractive_17cjj_gg_):not([aria-hidden]):not(:has(.___SLimitOverlayCellWrapper_17cjj_gg_:hover))>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_:not(.__theme_17cjj_gg_):not(.__expanded_17cjj_gg_.__withAccordion_17cjj_gg_):not([aria-hidden]),.___SRow_17cjj_gg_:hover:not(.__isNonInteractive_17cjj_gg_):not([aria-hidden]):not(:has(.___SLimitOverlayCellWrapper_17cjj_gg_:hover))>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_._theme_danger_17cjj_gg_:not([aria-hidden]){background-color:var(--intergalactic-table-td-cell-critical-hover, #ffd7df)}}.___SRow_17cjj_gg_._theme_muted_17cjj_gg_ .___SCell_17cjj_gg_:not(.__theme_17cjj_gg_):not(.__expanded_17cjj_gg_.__withAccordion_17cjj_gg_){background-color:var(--intergalactic-table-td-cell-unread, #f4f5f9)}.___SRow_17cjj_gg_._theme_muted_17cjj_gg_ .___SCell_17cjj_gg_.__expanded_17cjj_gg_.__withAccordion_17cjj_gg_:not(.__theme_17cjj_gg_),.___SRow_17cjj_gg_._theme_muted_17cjj_gg_.__active_17cjj_gg_>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_:not(.__theme_17cjj_gg_){background-color:var(--intergalactic-table-td-cell-active, #e6e7ed)}.___SRow_17cjj_gg_._theme_info_17cjj_gg_ .___SCell_17cjj_gg_:not(.__theme_17cjj_gg_):not(.__expanded_17cjj_gg_.__withAccordion_17cjj_gg_){background-color:var(--intergalactic-table-td-cell-selected, #e9f7ff)}.___SRow_17cjj_gg_._theme_info_17cjj_gg_ .___SCell_17cjj_gg_.__expanded_17cjj_gg_.__withAccordion_17cjj_gg_:not(.__theme_17cjj_gg_),.___SRow_17cjj_gg_._theme_info_17cjj_gg_.__active_17cjj_gg_>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_:not(.__theme_17cjj_gg_){background-color:var(--intergalactic-table-td-cell-selected-active, #c4e5fe)}.___SRow_17cjj_gg_._theme_success_17cjj_gg_ .___SCell_17cjj_gg_:not(.__theme_17cjj_gg_):not(.__expanded_17cjj_gg_.__withAccordion_17cjj_gg_){background-color:var(--intergalactic-table-td-cell-new, #dbfee8)}.___SRow_17cjj_gg_._theme_success_17cjj_gg_ .___SCell_17cjj_gg_.__expanded_17cjj_gg_.__withAccordion_17cjj_gg_:not(.__theme_17cjj_gg_),.___SRow_17cjj_gg_._theme_success_17cjj_gg_.__active_17cjj_gg_>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_:not(.__theme_17cjj_gg_){background-color:var(--intergalactic-table-td-cell-new-active, #9ef2c9)}.___SRow_17cjj_gg_._theme_warning_17cjj_gg_ .___SCell_17cjj_gg_:not(.__theme_17cjj_gg_):not(.__expanded_17cjj_gg_.__withAccordion_17cjj_gg_){background-color:var(--intergalactic-table-td-cell-warning, #fff3d9)}.___SRow_17cjj_gg_._theme_warning_17cjj_gg_ .___SCell_17cjj_gg_.__expanded_17cjj_gg_.__withAccordion_17cjj_gg_:not(.__theme_17cjj_gg_),.___SRow_17cjj_gg_._theme_warning_17cjj_gg_.__active_17cjj_gg_>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_:not(.__theme_17cjj_gg_){background-color:var(--intergalactic-table-td-cell-warning-active, #ffdca2)}.___SRow_17cjj_gg_._theme_danger_17cjj_gg_ .___SCell_17cjj_gg_:not(.__theme_17cjj_gg_):not(.__expanded_17cjj_gg_.__withAccordion_17cjj_gg_){background-color:var(--intergalactic-table-td-cell-critical, #fff0f7)}.___SRow_17cjj_gg_._theme_danger_17cjj_gg_ .___SCell_17cjj_gg_.__expanded_17cjj_gg_.__withAccordion_17cjj_gg_:not(.__theme_17cjj_gg_),.___SRow_17cjj_gg_._theme_danger_17cjj_gg_.__active_17cjj_gg_>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_:not(.__theme_17cjj_gg_){background-color:var(--intergalactic-table-td-cell-critical-active, #ffd7df)}.___SCell_17cjj_gg_{display:flex;height:100%;font-size:var(--intergalactic-fs-200, 14px);line-height:var(--intergalactic-lh-200, 142%);color:var(--intergalactic-text-primary, #191b23);box-sizing:border-box;border-bottom:1px solid var(--intergalactic-border-secondary, #e0e1e9);white-space:pre-wrap;word-break:break-word;font-feature-settings:\"tnum\";font-variant-numeric:tabular-nums;transition:width calc(var(--intergalactic-duration-extra-fast, 100)*1ms) ease-in-out;outline:0;overflow:hidden}.___SCell_17cjj_gg_ .___SAccordionToggle_17cjj_gg_{margin-top:var(--intergalactic-spacing-05x, 2px);margin-right:var(--intergalactic-spacing-3x, 12px);margin-left:calc(var(--intergalactic-spacing-05x, 2px)*-1);height:-moz-fit-content;height:fit-content}.___SCell_17cjj_gg_ .___SAccordionToggle_17cjj_gg_ svg{transition:transform calc(var(--intergalactic-duration-accordion, 200)*1ms) ease-out}.___SCell_17cjj_gg_ .___SAccordionToggle_17cjj_gg_.__expanded_17cjj_gg_ svg{transform:rotate(90deg)}.___SCell_17cjj_gg_.__withoutBorder_17cjj_gg_{border-bottom:none}.___SCell_17cjj_gg_.__withAccordion_17cjj_gg_,.___SCell_17cjj_gg_._name_Symbol\\(SELECT_ALL\\)_17cjj_gg_,.___SRow_17cjj_gg_._accordionType_row_17cjj_gg_>.___SCellWrapper_17cjj_gg_>.___SCell_17cjj_gg_{cursor:pointer}.___SCheckboxCell_17cjj_gg_[aria-hidden]{filter:blur(3px);pointer-events:none}.___SCell_17cjj_gg_._use_primary_17cjj_gg_{padding:var(--intergalactic-spacing-3x, 12px);min-height:45px;background-color:var(--intergalactic-bg-primary-neutral, #ffffff)}.___SCell_17cjj_gg_._use_primary_17cjj_gg_[data-aria-level]{padding-left:calc(var(--intergalactic-spacing-3x, 12px) + ((var(--intergalactic-spacing-5x, 20px) + var(--intergalactic-spacing-1x, 4px) + var(--intergalactic-spacing-05x, 2px))*(var(--data-aria-level_17cjj) - 1)))}.___SCell_17cjj_gg_._use_secondary_17cjj_gg_{padding:var(--intergalactic-spacing-2x, 8px);min-height:37px;background-color:var(--intergalactic-bg-primary-neutral, #ffffff)}.___SCell_17cjj_gg_._use_secondary_17cjj_gg_[data-aria-level]{padding-left:calc(var(--intergalactic-spacing-2x, 8px) + ((var(--intergalactic-spacing-5x, 20px) + var(--intergalactic-spacing-1x, 4px) + var(--intergalactic-spacing-05x, 2px))*(var(--data-aria-level_17cjj) - 1)))}.___SCell_17cjj_gg_._borders_both_17cjj_gg_,.___SCell_17cjj_gg_._borders_left_17cjj_gg_{border-left:1px solid var(--intergalactic-border-secondary, #e0e1e9)}.___SCell_17cjj_gg_._borders_both_17cjj_gg_,.___SCell_17cjj_gg_._borders_right_17cjj_gg_{border-right:1px solid var(--intergalactic-border-secondary, #e0e1e9)}.___SCellWrapper_17cjj_gg_.__fixed_17cjj_gg_{position:sticky;z-index:2}.___SCell_17cjj_gg_._theme_muted_17cjj_gg_{background-color:var(--intergalactic-table-td-cell-unread, #f4f5f9)}.___SCell_17cjj_gg_._theme_info_17cjj_gg_{background-color:var(--intergalactic-table-td-cell-selected, #e9f7ff)}.___SCell_17cjj_gg_._theme_success_17cjj_gg_{background-color:var(--intergalactic-table-td-cell-new, #dbfee8)}.___SCell_17cjj_gg_._theme_warning_17cjj_gg_{background-color:var(--intergalactic-table-td-cell-warning, #fff3d9)}.___SCell_17cjj_gg_._theme_danger_17cjj_gg_{background-color:var(--intergalactic-table-td-cell-critical, #fff0f7)}.___SSpinContainer_17cjj_gg_{position:absolute;left:0;right:0;bottom:0;top:0;display:flex;align-items:center;justify-content:center;background-color:var(--intergalactic-overlay-limitation-secondary, rgba(255, 255, 255, 0.85));z-index:15}.___SSpinContainer_17cjj_gg_:focus-visible{z-index:15}.___SSpinContainer_17cjj_gg_.__headerHeight_17cjj_gg_{top:var(--headerHeight_17cjj)}.___SEmptyData_17cjj_gg_{grid-column:1/-1}.___SCollapseRow_17cjj_gg_._sideIndents_wide_17cjj_gg_ .___SCellWrapper_17cjj_gg_:first-child .___SCell_17cjj_gg_,.___SRow_17cjj_gg_._sideIndents_wide_17cjj_gg_ .___SCellWrapper_17cjj_gg_:first-child .___SCell_17cjj_gg_{padding-left:var(--intergalactic-spacing-5x, 20px)}.___SCollapseRow_17cjj_gg_._sideIndents_wide_17cjj_gg_ .___SCellWrapper_17cjj_gg_:first-child .___SCell_17cjj_gg_[data-aria-level],.___SRow_17cjj_gg_._sideIndents_wide_17cjj_gg_ .___SCellWrapper_17cjj_gg_:first-child .___SCell_17cjj_gg_[data-aria-level]{padding-left:calc(var(--intergalactic-spacing-5x, 20px) + ((var(--intergalactic-spacing-5x, 20px) + var(--intergalactic-spacing-1x, 4px) + var(--intergalactic-spacing-05x, 2px))*(var(--data-aria-level_17cjj) - 1)))}.___SCollapseRow_17cjj_gg_._sideIndents_wide_17cjj_gg_ .___SCellWrapper_17cjj_gg_:last-child .___SCell_17cjj_gg_,.___SRow_17cjj_gg_._sideIndents_wide_17cjj_gg_ .___SCellWrapper_17cjj_gg_:last-child .___SCell_17cjj_gg_{padding-right:var(--intergalactic-spacing-5x, 20px)}.___SCellWrapper_17cjj_gg_.__fixed_17cjj_gg_.__shadowVertical_17cjj_gg_:after{content:\"\";position:absolute;pointer-events:none;display:none;top:0;width:5px;height:100%;z-index:5}.___SCellWrapper_17cjj_gg_._fixed_left_17cjj_gg_._shadowVertical_median_17cjj_gg_,.___SCellWrapper_17cjj_gg_._fixed_left_17cjj_gg_._shadowVertical_start_17cjj_gg_{margin-right:-5px}.___SCellWrapper_17cjj_gg_._fixed_left_17cjj_gg_._shadowVertical_median_17cjj_gg_:after,.___SCellWrapper_17cjj_gg_._fixed_left_17cjj_gg_._shadowVertical_start_17cjj_gg_:after{display:block;right:0;background:var(--intergalactic-scroll-area-shadow-left,\n linear-gradient(to right, rgba(25, 27, 35, 0.1) 20.55%, rgba(255, 255, 255, 0.0001) 100%))}.___SCellWrapper_17cjj_gg_._fixed_left_17cjj_gg_._shadowVertical_median_17cjj_gg_ .___SCell_17cjj_gg_,.___SCellWrapper_17cjj_gg_._fixed_left_17cjj_gg_._shadowVertical_start_17cjj_gg_ .___SCell_17cjj_gg_{margin-right:5px}.___SCellWrapper_17cjj_gg_._fixed_right_17cjj_gg_._shadowVertical_end_17cjj_gg_,.___SCellWrapper_17cjj_gg_._fixed_right_17cjj_gg_._shadowVertical_median_17cjj_gg_{margin-left:-5px}.___SCellWrapper_17cjj_gg_._fixed_right_17cjj_gg_._shadowVertical_end_17cjj_gg_:after,.___SCellWrapper_17cjj_gg_._fixed_right_17cjj_gg_._shadowVertical_median_17cjj_gg_:after{display:block;left:0;background:var(--intergalactic-scroll-area-shadow-right,\n linear-gradient(to left, rgba(25, 27, 35, 0.1) 20.55%, rgba(255, 255, 255, 0.0001) 100%))}.___SCellWrapper_17cjj_gg_._fixed_right_17cjj_gg_._shadowVertical_end_17cjj_gg_ .___SCell_17cjj_gg_,.___SCellWrapper_17cjj_gg_._fixed_right_17cjj_gg_._shadowVertical_median_17cjj_gg_ .___SCell_17cjj_gg_{margin-left:5px}.___SLimitOverlayCellWrapper_17cjj_gg_.__gridArea_17cjj_gg_{width:100%;height:100%;align-items:center;justify-content:center;z-index:16;grid-area:var(--gridArea_17cjj);backdrop-filter:blur(6px)}.___SLimitOverlayCellWrapper_17cjj_gg_.__left_17cjj_gg_{position:sticky;left:var(---left_17cjj)}.___SCell_17cjj_gg_.__innerOutline_17cjj_gg_:focus-visible{transition:none}", /*__inner_css_end__*/"17cjj_gg_"),
21
+ var style = (/*__reshadow_css_start__*/_core.sstyled.insert(/*__inner_css_start__*/".___SBody_1x6eq_gg_,.___SRowGroup_1x6eq_gg_,.___SRow_1x6eq_gg_{display:contents}.___SAccordionRows_1x6eq_gg_{display:grid;grid-column:1/-1;grid-row:var(--gridRow_1x6eq);overflow:clip;transition-property:max-height;transition-duration:var(--duration_1x6eq);transition-timing-function:linear;grid-template-columns:subgrid}.___SBody_1x6eq_gg_.__compact_1x6eq_gg_ .___SCell_1x6eq_gg_{padding:var(--intergalactic-spacing-3x, 12px) var(--intergalactic-spacing-2x, 8px)}.___SBody_1x6eq_gg_.__compact_1x6eq_gg_ .___SCell_1x6eq_gg_[data-aria-level]{padding-left:calc(var(--intergalactic-spacing-2x, 8px) + ((var(--intergalactic-spacing-4x, 16px) + var(--intergalactic-spacing-1x, 4px) + var(--intergalactic-spacing-05x, 2px))*(var(--data-aria-level_1x6eq) - 1)))}.___SBody_1x6eq_gg_.__compact_1x6eq_gg_ .___SRow_1x6eq_gg_ .___SCellWrapper_1x6eq_gg_:first-child .___SCell_1x6eq_gg_[data-aria-level]{padding-left:calc(var(--intergalactic-spacing-2x, 8px) + ((var(--intergalactic-spacing-4x, 16px) + var(--intergalactic-spacing-1x, 4px) + var(--intergalactic-spacing-05x, 2px))*(var(--data-aria-level_1x6eq) - 1)))}.___SBody_1x6eq_gg_.__compact_1x6eq_gg_ .___SCollapseRow_1x6eq_gg_._sideIndents_wide_1x6eq_gg_ .___SCellWrapper_1x6eq_gg_:first-child .___SCell_1x6eq_gg_[data-aria-level],.___SBody_1x6eq_gg_.__compact_1x6eq_gg_ .___SRow_1x6eq_gg_._sideIndents_wide_1x6eq_gg_ .___SCellWrapper_1x6eq_gg_:first-child .___SCell_1x6eq_gg_[data-aria-level]{padding-left:calc(var(--intergalactic-spacing-5x, 20px) + ((var(--intergalactic-spacing-4x, 16px) + var(--intergalactic-spacing-1x, 4px) + var(--intergalactic-spacing-05x, 2px))*(var(--data-aria-level_1x6eq) - 1)))}.___SBody_1x6eq_gg_.__compact_1x6eq_gg_ .___SCell_1x6eq_gg_ .___SAccordionToggle_1x6eq_gg_{margin-right:var(--intergalactic-spacing-2x, 8px)}.___SCellWrapper_1x6eq_gg_.__gridArea_1x6eq_gg_,.___SCollapseRow_1x6eq_gg_.__gridArea_1x6eq_gg_,.___SRow_1x6eq_gg_.__gridArea_1x6eq_gg_{grid-area:var(--gridArea_1x6eq)}.___SCellWrapper_1x6eq_gg_{height:100%;overflow:hidden}.___SCollapseRow_1x6eq_gg_.__gridArea_1x6eq_gg_>.___SCellWrapper_1x6eq_gg_,.___SRow_1x6eq_gg_.__isAccordionRow_1x6eq_gg_>.___SCellWrapper_1x6eq_gg_{height:auto;overflow:auto}.___SAccordionRows_1x6eq_gg_>.___SRow_1x6eq_gg_.__isAccordionRow_1x6eq_gg_:last-child>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_:not(.__withoutBorder_1x6eq_gg_),.___SCollapseRow_1x6eq_gg_.__gridArea_1x6eq_gg_>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_:not(.__withoutBorder_1x6eq_gg_){border-bottom:1px solid var(--intergalactic-border-table-accent, #a9abb6)}.___SCollapseRow_1x6eq_gg_>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_{display:block}.___SCell_1x6eq_gg_:not(.__theme_1x6eq_gg_).__expanded_1x6eq_gg_.__withAccordion_1x6eq_gg_,.___SRow_1x6eq_gg_.__active_1x6eq_gg_>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_:not(.__theme_1x6eq_gg_),.___SRow_1x6eq_gg_._accordionType_row_1x6eq_gg_.__expanded_1x6eq_gg_>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_:not(.__theme_1x6eq_gg_){background-color:var(--intergalactic-table-td-cell-active, #e6e7ed)}.___SCell_1x6eq_gg_._theme_muted_1x6eq_gg_.__expanded_1x6eq_gg_.__withAccordion_1x6eq_gg_{background-color:var(--intergalactic-table-td-cell-active, #e6e7ed)}.___SCell_1x6eq_gg_._theme_info_1x6eq_gg_.__expanded_1x6eq_gg_.__withAccordion_1x6eq_gg_{background-color:var(--intergalactic-table-td-cell-selected-hover, #c4e5fe)}.___SCell_1x6eq_gg_._theme_success_1x6eq_gg_.__expanded_1x6eq_gg_.__withAccordion_1x6eq_gg_{background-color:var(--intergalactic-table-td-cell-new-hover, #9ef2c9)}.___SCell_1x6eq_gg_._theme_warning_1x6eq_gg_.__expanded_1x6eq_gg_.__withAccordion_1x6eq_gg_{background-color:var(--intergalactic-table-td-cell-warning-hover, #ffdca2)}.___SCell_1x6eq_gg_._theme_danger_1x6eq_gg_.__expanded_1x6eq_gg_.__withAccordion_1x6eq_gg_{background-color:var(--intergalactic-table-td-cell-critical-hover, #ffd7df)}.___SCollapseRow_1x6eq_gg_>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_:not(.__theme_1x6eq_gg_),.___SRow_1x6eq_gg_.__isAccordionRow_1x6eq_gg_>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_:not(.__theme_1x6eq_gg_){background-color:var(--intergalactic-table-td-cell-accordion, #f4f5f9)}@media (hover:hover){.___SRowGroup_1x6eq_gg_:has(.___SCell_1x6eq_gg_:hover):not(:has([data-row-selector=true] input:checked))>.___SRow_1x6eq_gg_:not(.__isNonInteractive_1x6eq_gg_):not([aria-hidden])>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_[data-grouped-by=rowgroup]:not(.__theme_1x6eq_gg_):not(.__expanded_1x6eq_gg_.__withAccordion_1x6eq_gg_):not([aria-hidden]),.___SRowGroup_1x6eq_gg_:has(.___SCell_1x6eq_gg_[data-grouped-by=rowgroup]:hover):not(:has([data-row-selector=true] input:checked))>.___SRow_1x6eq_gg_:not(.__isNonInteractive_1x6eq_gg_):not([aria-hidden])>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_:not(.__theme_1x6eq_gg_):not(.__expanded_1x6eq_gg_.__withAccordion_1x6eq_gg_):not([aria-hidden]),:not(.___SRowGroup_1x6eq_gg_:has([data-row-selector=true] input:checked))>.___SRow_1x6eq_gg_:not(._accordionType_row_1x6eq_gg_.__expanded_1x6eq_gg_):hover:not(.__isNonInteractive_1x6eq_gg_):not(:has([data-row-selector=true] input:checked)):not([aria-hidden]):not(:has(.___SLimitOverlayCellWrapper_1x6eq_gg_:hover))>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_:not(.__theme_1x6eq_gg_):not(.__expanded_1x6eq_gg_.__withAccordion_1x6eq_gg_):not([aria-hidden]){background-color:var(--intergalactic-table-td-cell-hover, #f0f0f4)}.___SRowGroup_1x6eq_gg_:has(.___SCell_1x6eq_gg_:hover)>.___SRow_1x6eq_gg_._theme_muted_1x6eq_gg_:not(.__isNonInteractive_1x6eq_gg_):not([aria-hidden])>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_[data-grouped-by=rowgroup]:not(.__theme_1x6eq_gg_):not([aria-hidden]),.___SRowGroup_1x6eq_gg_:has(.___SCell_1x6eq_gg_:hover)>.___SRow_1x6eq_gg_:not(.__isNonInteractive_1x6eq_gg_):not([aria-hidden])>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_[data-grouped-by=rowgroup]._theme_muted_1x6eq_gg_:not([aria-hidden]),.___SRowGroup_1x6eq_gg_:has(.___SCell_1x6eq_gg_[data-grouped-by=rowgroup]:hover)>.___SRow_1x6eq_gg_._theme_muted_1x6eq_gg_:not(.__isNonInteractive_1x6eq_gg_):not([aria-hidden])>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_:not(.__theme_1x6eq_gg_):not([aria-hidden]),.___SRowGroup_1x6eq_gg_:has(.___SCell_1x6eq_gg_[data-grouped-by=rowgroup]:hover)>.___SRow_1x6eq_gg_:not(.__isNonInteractive_1x6eq_gg_):not([aria-hidden])>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_._theme_muted_1x6eq_gg_:not([aria-hidden]),.___SRow_1x6eq_gg_._theme_muted_1x6eq_gg_:hover:not(.__expanded_1x6eq_gg_.__isNonInteractive_1x6eq_gg_):not([aria-hidden]):not(:has(.___SLimitOverlayCellWrapper_1x6eq_gg_:hover))>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_:not(.__theme_1x6eq_gg_):not(.__expanded_1x6eq_gg_.__withAccordion_1x6eq_gg_):not([aria-hidden]),.___SRow_1x6eq_gg_:hover:not(.__isNonInteractive_1x6eq_gg_):not([aria-hidden]):not(:has(.___SLimitOverlayCellWrapper_1x6eq_gg_:hover))>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_._theme_muted_1x6eq_gg_:not([aria-hidden]){background-color:var(--intergalactic-table-td-cell-active, #e6e7ed)}.___SRowGroup_1x6eq_gg_:has(.___SCell_1x6eq_gg_:hover):has([data-row-selector=true] input:checked)>.___SRow_1x6eq_gg_:not(.__isNonInteractive_1x6eq_gg_):not([aria-hidden])>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_[data-grouped-by=rowgroup]:not([aria-hidden]),.___SRowGroup_1x6eq_gg_:has(.___SCell_1x6eq_gg_:hover)>.___SRow_1x6eq_gg_._theme_info_1x6eq_gg_:not(.__isNonInteractive_1x6eq_gg_):not([aria-hidden])>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_[data-grouped-by=rowgroup]:not(.__theme_1x6eq_gg_):not([aria-hidden]),.___SRowGroup_1x6eq_gg_:has(.___SCell_1x6eq_gg_:hover)>.___SRow_1x6eq_gg_:not(.__isNonInteractive_1x6eq_gg_):not([aria-hidden])>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_[data-grouped-by=rowgroup]._theme_info_1x6eq_gg_:not([aria-hidden]),.___SRowGroup_1x6eq_gg_:has(.___SCell_1x6eq_gg_[data-grouped-by=rowgroup]:hover):has([data-row-selector=true] input:checked) .___SRow_1x6eq_gg_:not(.__isNonInteractive_1x6eq_gg_):not([aria-hidden])>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_:not([aria-hidden]),.___SRowGroup_1x6eq_gg_:has(.___SCell_1x6eq_gg_[data-grouped-by=rowgroup]:hover)>.___SRow_1x6eq_gg_._theme_info_1x6eq_gg_:not(.__isNonInteractive_1x6eq_gg_):not([aria-hidden])>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_:not(.__theme_1x6eq_gg_):not([aria-hidden]),.___SRowGroup_1x6eq_gg_:has(.___SCell_1x6eq_gg_[data-grouped-by=rowgroup]:hover)>.___SRow_1x6eq_gg_:not(.__isNonInteractive_1x6eq_gg_):not([aria-hidden])>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_._theme_info_1x6eq_gg_:not([aria-hidden]),.___SRowGroup_1x6eq_gg_:has([data-row-selector=true] input:checked)>.___SRow_1x6eq_gg_:hover:not(.__isNonInteractive_1x6eq_gg_):not([aria-hidden])>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_:not([aria-hidden]),.___SRow_1x6eq_gg_._theme_info_1x6eq_gg_:hover:not(.__expanded_1x6eq_gg_.__isNonInteractive_1x6eq_gg_):not([aria-hidden]):not(:has(.___SLimitOverlayCellWrapper_1x6eq_gg_:hover))>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_:not(.__theme_1x6eq_gg_):not(.__expanded_1x6eq_gg_.__withAccordion_1x6eq_gg_):not([aria-hidden]),.___SRow_1x6eq_gg_:hover:has([data-row-selector=true] input:checked):not(.__isNonInteractive_1x6eq_gg_):not([aria-hidden]):not(:has(.___SLimitOverlayCellWrapper_1x6eq_gg_:hover))>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_:not([aria-hidden]),.___SRow_1x6eq_gg_:hover:not(.__isNonInteractive_1x6eq_gg_):not([aria-hidden]):not(:has(.___SLimitOverlayCellWrapper_1x6eq_gg_:hover))>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_._theme_info_1x6eq_gg_:not([aria-hidden]){background-color:var(--intergalactic-table-td-cell-selected-hover, #c4e5fe)}.___SRowGroup_1x6eq_gg_:has(.___SCell_1x6eq_gg_:hover)>.___SRow_1x6eq_gg_._theme_success_1x6eq_gg_:not(.__isNonInteractive_1x6eq_gg_):not([aria-hidden])>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_[data-grouped-by=rowgroup]:not(.__theme_1x6eq_gg_):not(.__expanded_1x6eq_gg_.__withAccordion_1x6eq_gg_):not([aria-hidden]),.___SRowGroup_1x6eq_gg_:has(.___SCell_1x6eq_gg_:hover)>.___SRow_1x6eq_gg_:not(.__isNonInteractive_1x6eq_gg_):not([aria-hidden])>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_[data-grouped-by=rowgroup]._theme_success_1x6eq_gg_:not([aria-hidden]),.___SRowGroup_1x6eq_gg_:has(.___SCell_1x6eq_gg_[data-grouped-by=rowgroup]:hover)>.___SRow_1x6eq_gg_._theme_success_1x6eq_gg_:not(.__isNonInteractive_1x6eq_gg_):not([aria-hidden])>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_:not(.__theme_1x6eq_gg_):not([aria-hidden]),.___SRowGroup_1x6eq_gg_:has(.___SCell_1x6eq_gg_[data-grouped-by=rowgroup]:hover)>.___SRow_1x6eq_gg_:not(.__isNonInteractive_1x6eq_gg_):not([aria-hidden])>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_._theme_success_1x6eq_gg_:not([aria-hidden]),.___SRow_1x6eq_gg_._theme_success_1x6eq_gg_:hover:not(.__expanded_1x6eq_gg_.__isNonInteractive_1x6eq_gg_):not([aria-hidden]):not(:has(.___SLimitOverlayCellWrapper_1x6eq_gg_:hover))>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_:not(.__theme_1x6eq_gg_):not(.__expanded_1x6eq_gg_.__withAccordion_1x6eq_gg_):not([aria-hidden]),.___SRow_1x6eq_gg_:hover:not(.__isNonInteractive_1x6eq_gg_):not([aria-hidden]):not(:has(.___SLimitOverlayCellWrapper_1x6eq_gg_:hover))>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_._theme_success_1x6eq_gg_:not([aria-hidden]){background-color:var(--intergalactic-table-td-cell-new-hover, #9ef2c9)}.___SRowGroup_1x6eq_gg_:has(.___SCell_1x6eq_gg_:hover)>.___SRow_1x6eq_gg_._theme_warning_1x6eq_gg_:not(.__isNonInteractive_1x6eq_gg_):not([aria-hidden])>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_[data-grouped-by=rowgroup]:not(.__theme_1x6eq_gg_):not([aria-hidden]),.___SRowGroup_1x6eq_gg_:has(.___SCell_1x6eq_gg_:hover)>.___SRow_1x6eq_gg_:not(.__isNonInteractive_1x6eq_gg_):not([aria-hidden])>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_[data-grouped-by=rowgroup]._theme_warning_1x6eq_gg_:not([aria-hidden]),.___SRowGroup_1x6eq_gg_:has(.___SCell_1x6eq_gg_[data-grouped-by=rowgroup]:hover)>.___SRow_1x6eq_gg_._theme_warning_1x6eq_gg_:not(.__isNonInteractive_1x6eq_gg_):not([aria-hidden])>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_:not(.__theme_1x6eq_gg_):not([aria-hidden]),.___SRowGroup_1x6eq_gg_:has(.___SCell_1x6eq_gg_[data-grouped-by=rowgroup]:hover)>.___SRow_1x6eq_gg_:not(.__isNonInteractive_1x6eq_gg_):not([aria-hidden])>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_._theme_warning_1x6eq_gg_:not([aria-hidden]),.___SRow_1x6eq_gg_._theme_warning_1x6eq_gg_:hover:not(.__expanded_1x6eq_gg_.__isNonInteractive_1x6eq_gg_):not([aria-hidden]):not(:has(.___SLimitOverlayCellWrapper_1x6eq_gg_:hover))>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_:not(.__theme_1x6eq_gg_):not(.__expanded_1x6eq_gg_.__withAccordion_1x6eq_gg_):not([aria-hidden]),.___SRow_1x6eq_gg_:hover:not(.__isNonInteractive_1x6eq_gg_):not([aria-hidden]):not(:has(.___SLimitOverlayCellWrapper_1x6eq_gg_:hover))>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_._theme_warning_1x6eq_gg_:not([aria-hidden]){background-color:var(--intergalactic-table-td-cell-warning-hover, #ffdca2)}.___SRowGroup_1x6eq_gg_:has(.___SCell_1x6eq_gg_:hover)>.___SRow_1x6eq_gg_._theme_danger_1x6eq_gg_:not(.__isNonInteractive_1x6eq_gg_):not([aria-hidden])>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_[data-grouped-by=rowgroup]:not(.__theme_1x6eq_gg_):not([aria-hidden]),.___SRowGroup_1x6eq_gg_:has(.___SCell_1x6eq_gg_:hover)>.___SRow_1x6eq_gg_:not(.__isNonInteractive_1x6eq_gg_):not([aria-hidden])>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_[data-grouped-by=rowgroup]._theme_danger_1x6eq_gg_:not([aria-hidden]),.___SRowGroup_1x6eq_gg_:has(.___SCell_1x6eq_gg_[data-grouped-by=rowgroup]:hover)>.___SRow_1x6eq_gg_._theme_danger_1x6eq_gg_:not(.__isNonInteractive_1x6eq_gg_):not([aria-hidden])>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_:not(.__theme_1x6eq_gg_):not([aria-hidden]),.___SRowGroup_1x6eq_gg_:has(.___SCell_1x6eq_gg_[data-grouped-by=rowgroup]:hover)>.___SRow_1x6eq_gg_:not(.__isNonInteractive_1x6eq_gg_):not([aria-hidden])>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_._theme_danger_1x6eq_gg_:not([aria-hidden]),.___SRow_1x6eq_gg_._theme_danger_1x6eq_gg_:hover:not(.__expanded_1x6eq_gg_.__isNonInteractive_1x6eq_gg_):not([aria-hidden]):not(:has(.___SLimitOverlayCellWrapper_1x6eq_gg_:hover))>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_:not(.__theme_1x6eq_gg_):not(.__expanded_1x6eq_gg_.__withAccordion_1x6eq_gg_):not([aria-hidden]),.___SRow_1x6eq_gg_:hover:not(.__isNonInteractive_1x6eq_gg_):not([aria-hidden]):not(:has(.___SLimitOverlayCellWrapper_1x6eq_gg_:hover))>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_._theme_danger_1x6eq_gg_:not([aria-hidden]){background-color:var(--intergalactic-table-td-cell-critical-hover, #ffd7df)}}.___SRow_1x6eq_gg_._theme_muted_1x6eq_gg_ .___SCell_1x6eq_gg_:not(.__theme_1x6eq_gg_):not(.__expanded_1x6eq_gg_.__withAccordion_1x6eq_gg_){background-color:var(--intergalactic-table-td-cell-unread, #f4f5f9)}.___SRow_1x6eq_gg_._theme_muted_1x6eq_gg_ .___SCell_1x6eq_gg_.__expanded_1x6eq_gg_.__withAccordion_1x6eq_gg_:not(.__theme_1x6eq_gg_),.___SRow_1x6eq_gg_._theme_muted_1x6eq_gg_.__active_1x6eq_gg_>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_:not(.__theme_1x6eq_gg_){background-color:var(--intergalactic-table-td-cell-active, #e6e7ed)}.___SRow_1x6eq_gg_._theme_info_1x6eq_gg_ .___SCell_1x6eq_gg_:not(.__theme_1x6eq_gg_):not(.__expanded_1x6eq_gg_.__withAccordion_1x6eq_gg_),.___SRow_1x6eq_gg_:has([data-row-selector=true] input:checked) .___SCell_1x6eq_gg_:not(.__theme_1x6eq_gg_):not(.__expanded_1x6eq_gg_.__withAccordion_1x6eq_gg_){background-color:var(--intergalactic-table-td-cell-selected, #e9f7ff)}.___SRow_1x6eq_gg_._theme_info_1x6eq_gg_ .___SCell_1x6eq_gg_.__expanded_1x6eq_gg_.__withAccordion_1x6eq_gg_:not(.__theme_1x6eq_gg_),.___SRow_1x6eq_gg_:has([data-row-selector=true] input:checked) .___SCell_1x6eq_gg_.__expanded_1x6eq_gg_.__withAccordion_1x6eq_gg_:not(.__theme_1x6eq_gg_){background-color:var(--intergalactic-table-td-cell-selected-active, #c4e5fe)}.___SRow_1x6eq_gg_._theme_info_1x6eq_gg_.__active_1x6eq_gg_>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_:not(.__theme_1x6eq_gg_){background-color:var(--intergalactic-table-td-cell-selected-active, #c4e5fe)}.___SRow_1x6eq_gg_._theme_success_1x6eq_gg_ .___SCell_1x6eq_gg_:not(.__theme_1x6eq_gg_):not(.__expanded_1x6eq_gg_.__withAccordion_1x6eq_gg_){background-color:var(--intergalactic-table-td-cell-new, #dbfee8)}.___SRow_1x6eq_gg_._theme_success_1x6eq_gg_ .___SCell_1x6eq_gg_.__expanded_1x6eq_gg_.__withAccordion_1x6eq_gg_:not(.__theme_1x6eq_gg_),.___SRow_1x6eq_gg_._theme_success_1x6eq_gg_.__active_1x6eq_gg_>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_:not(.__theme_1x6eq_gg_){background-color:var(--intergalactic-table-td-cell-new-active, #9ef2c9)}.___SRow_1x6eq_gg_._theme_warning_1x6eq_gg_ .___SCell_1x6eq_gg_:not(.__theme_1x6eq_gg_):not(.__expanded_1x6eq_gg_.__withAccordion_1x6eq_gg_){background-color:var(--intergalactic-table-td-cell-warning, #fff3d9)}.___SRow_1x6eq_gg_._theme_warning_1x6eq_gg_ .___SCell_1x6eq_gg_.__expanded_1x6eq_gg_.__withAccordion_1x6eq_gg_:not(.__theme_1x6eq_gg_),.___SRow_1x6eq_gg_._theme_warning_1x6eq_gg_.__active_1x6eq_gg_>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_:not(.__theme_1x6eq_gg_){background-color:var(--intergalactic-table-td-cell-warning-active, #ffdca2)}.___SRow_1x6eq_gg_._theme_danger_1x6eq_gg_ .___SCell_1x6eq_gg_:not(.__theme_1x6eq_gg_):not(.__expanded_1x6eq_gg_.__withAccordion_1x6eq_gg_){background-color:var(--intergalactic-table-td-cell-critical, #fff0f7)}.___SRow_1x6eq_gg_._theme_danger_1x6eq_gg_ .___SCell_1x6eq_gg_.__expanded_1x6eq_gg_.__withAccordion_1x6eq_gg_:not(.__theme_1x6eq_gg_),.___SRow_1x6eq_gg_._theme_danger_1x6eq_gg_.__active_1x6eq_gg_>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_:not(.__theme_1x6eq_gg_){background-color:var(--intergalactic-table-td-cell-critical-active, #ffd7df)}.___SRowGroup_1x6eq_gg_:has([data-row-selector=true] input:checked)>.___SRow_1x6eq_gg_>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_,.___SRow_1x6eq_gg_:has([data-row-selector=true] input:checked)>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_{background-color:var(--intergalactic-table-td-cell-selected, #e9f7ff)}.___SCell_1x6eq_gg_{display:flex;height:100%;font-size:var(--intergalactic-fs-200, 14px);line-height:var(--intergalactic-lh-200, 142%);color:var(--intergalactic-text-primary, #191b23);box-sizing:border-box;border-bottom:1px solid var(--intergalactic-border-secondary, #e0e1e9);white-space:pre-wrap;word-break:break-word;font-feature-settings:\"tnum\";font-variant-numeric:tabular-nums;transition:width calc(var(--intergalactic-duration-extra-fast, 100)*1ms) ease-in-out;outline:0;overflow:hidden}.___SCell_1x6eq_gg_ .___SAccordionToggle_1x6eq_gg_{margin-top:var(--intergalactic-spacing-05x, 2px);margin-right:var(--intergalactic-spacing-3x, 12px);margin-left:calc(var(--intergalactic-spacing-05x, 2px)*-1);height:-moz-fit-content;height:fit-content}.___SCell_1x6eq_gg_ .___SAccordionToggle_1x6eq_gg_ svg{transition:transform calc(var(--intergalactic-duration-accordion, 200)*1ms) ease-out}.___SCell_1x6eq_gg_ .___SAccordionToggle_1x6eq_gg_.__expanded_1x6eq_gg_ svg{transform:rotate(90deg)}.___SCell_1x6eq_gg_.__withoutBorder_1x6eq_gg_{border-bottom:none}.___SCell_1x6eq_gg_.__withAccordion_1x6eq_gg_,.___SCell_1x6eq_gg_._name_Symbol\\(SELECT_ALL\\)_1x6eq_gg_,.___SRow_1x6eq_gg_._accordionType_row_1x6eq_gg_>.___SCellWrapper_1x6eq_gg_>.___SCell_1x6eq_gg_{cursor:pointer}.___SCheckboxCell_1x6eq_gg_[aria-hidden]{filter:blur(3px);pointer-events:none}.___SCell_1x6eq_gg_._use_primary_1x6eq_gg_{padding:var(--intergalactic-spacing-3x, 12px);min-height:45px;background-color:var(--intergalactic-bg-primary-neutral, #ffffff)}.___SCell_1x6eq_gg_._use_primary_1x6eq_gg_[data-aria-level]{padding-left:calc(var(--intergalactic-spacing-3x, 12px) + ((var(--intergalactic-spacing-5x, 20px) + var(--intergalactic-spacing-1x, 4px) + var(--intergalactic-spacing-05x, 2px))*(var(--data-aria-level_1x6eq) - 1)))}.___SCell_1x6eq_gg_._use_secondary_1x6eq_gg_{padding:var(--intergalactic-spacing-2x, 8px);min-height:37px;background-color:var(--intergalactic-bg-primary-neutral, #ffffff)}.___SCell_1x6eq_gg_._use_secondary_1x6eq_gg_[data-aria-level]{padding-left:calc(var(--intergalactic-spacing-2x, 8px) + ((var(--intergalactic-spacing-5x, 20px) + var(--intergalactic-spacing-1x, 4px) + var(--intergalactic-spacing-05x, 2px))*(var(--data-aria-level_1x6eq) - 1)))}.___SCell_1x6eq_gg_._borders_both_1x6eq_gg_,.___SCell_1x6eq_gg_._borders_left_1x6eq_gg_{border-left:1px solid var(--intergalactic-border-secondary, #e0e1e9)}.___SCell_1x6eq_gg_._borders_both_1x6eq_gg_,.___SCell_1x6eq_gg_._borders_right_1x6eq_gg_{border-right:1px solid var(--intergalactic-border-secondary, #e0e1e9)}.___SCellWrapper_1x6eq_gg_.__fixed_1x6eq_gg_{position:sticky;z-index:2}.___SCell_1x6eq_gg_._theme_muted_1x6eq_gg_{background-color:var(--intergalactic-table-td-cell-unread, #f4f5f9)}.___SCell_1x6eq_gg_._theme_info_1x6eq_gg_{background-color:var(--intergalactic-table-td-cell-selected, #e9f7ff)}.___SCell_1x6eq_gg_._theme_success_1x6eq_gg_{background-color:var(--intergalactic-table-td-cell-new, #dbfee8)}.___SCell_1x6eq_gg_._theme_warning_1x6eq_gg_{background-color:var(--intergalactic-table-td-cell-warning, #fff3d9)}.___SCell_1x6eq_gg_._theme_danger_1x6eq_gg_{background-color:var(--intergalactic-table-td-cell-critical, #fff0f7)}.___SSpinContainer_1x6eq_gg_{position:absolute;left:0;right:0;bottom:0;top:0;display:flex;align-items:center;justify-content:center;background-color:var(--intergalactic-overlay-limitation-secondary, rgba(255, 255, 255, 0.85));z-index:15}.___SSpinContainer_1x6eq_gg_:focus-visible{z-index:15}.___SSpinContainer_1x6eq_gg_.__headerHeight_1x6eq_gg_{top:var(--headerHeight_1x6eq)}.___SEmptyData_1x6eq_gg_{grid-column:1/-1}.___SCollapseRow_1x6eq_gg_._sideIndents_wide_1x6eq_gg_ .___SCellWrapper_1x6eq_gg_:first-child .___SCell_1x6eq_gg_,.___SRow_1x6eq_gg_._sideIndents_wide_1x6eq_gg_ .___SCellWrapper_1x6eq_gg_:first-child .___SCell_1x6eq_gg_{padding-left:var(--intergalactic-spacing-5x, 20px)}.___SCollapseRow_1x6eq_gg_._sideIndents_wide_1x6eq_gg_ .___SCellWrapper_1x6eq_gg_:first-child .___SCell_1x6eq_gg_[data-aria-level],.___SRow_1x6eq_gg_._sideIndents_wide_1x6eq_gg_ .___SCellWrapper_1x6eq_gg_:first-child .___SCell_1x6eq_gg_[data-aria-level]{padding-left:calc(var(--intergalactic-spacing-5x, 20px) + ((var(--intergalactic-spacing-5x, 20px) + var(--intergalactic-spacing-1x, 4px) + var(--intergalactic-spacing-05x, 2px))*(var(--data-aria-level_1x6eq) - 1)))}.___SCollapseRow_1x6eq_gg_._sideIndents_wide_1x6eq_gg_ .___SCellWrapper_1x6eq_gg_:last-child .___SCell_1x6eq_gg_,.___SRow_1x6eq_gg_._sideIndents_wide_1x6eq_gg_ .___SCellWrapper_1x6eq_gg_:last-child .___SCell_1x6eq_gg_{padding-right:var(--intergalactic-spacing-5x, 20px)}.___SCellWrapper_1x6eq_gg_.__fixed_1x6eq_gg_.__shadowVertical_1x6eq_gg_:after{content:\"\";position:absolute;pointer-events:none;display:none;top:0;width:5px;height:100%;z-index:5}.___SCellWrapper_1x6eq_gg_._fixed_left_1x6eq_gg_._shadowVertical_median_1x6eq_gg_,.___SCellWrapper_1x6eq_gg_._fixed_left_1x6eq_gg_._shadowVertical_start_1x6eq_gg_{margin-right:-5px}.___SCellWrapper_1x6eq_gg_._fixed_left_1x6eq_gg_._shadowVertical_median_1x6eq_gg_:after,.___SCellWrapper_1x6eq_gg_._fixed_left_1x6eq_gg_._shadowVertical_start_1x6eq_gg_:after{display:block;right:0;background:var(--intergalactic-scroll-area-shadow-left,\n linear-gradient(to right, rgba(25, 27, 35, 0.1) 20.55%, rgba(255, 255, 255, 0.0001) 100%))}.___SCellWrapper_1x6eq_gg_._fixed_left_1x6eq_gg_._shadowVertical_median_1x6eq_gg_ .___SCell_1x6eq_gg_,.___SCellWrapper_1x6eq_gg_._fixed_left_1x6eq_gg_._shadowVertical_start_1x6eq_gg_ .___SCell_1x6eq_gg_{margin-right:5px}.___SCellWrapper_1x6eq_gg_._fixed_right_1x6eq_gg_._shadowVertical_end_1x6eq_gg_,.___SCellWrapper_1x6eq_gg_._fixed_right_1x6eq_gg_._shadowVertical_median_1x6eq_gg_{margin-left:-5px}.___SCellWrapper_1x6eq_gg_._fixed_right_1x6eq_gg_._shadowVertical_end_1x6eq_gg_:after,.___SCellWrapper_1x6eq_gg_._fixed_right_1x6eq_gg_._shadowVertical_median_1x6eq_gg_:after{display:block;left:0;background:var(--intergalactic-scroll-area-shadow-right,\n linear-gradient(to left, rgba(25, 27, 35, 0.1) 20.55%, rgba(255, 255, 255, 0.0001) 100%))}.___SCellWrapper_1x6eq_gg_._fixed_right_1x6eq_gg_._shadowVertical_end_1x6eq_gg_ .___SCell_1x6eq_gg_,.___SCellWrapper_1x6eq_gg_._fixed_right_1x6eq_gg_._shadowVertical_median_1x6eq_gg_ .___SCell_1x6eq_gg_{margin-left:5px}.___SLimitOverlayCellWrapper_1x6eq_gg_.__gridArea_1x6eq_gg_{width:100%;height:100%;align-items:center;justify-content:center;z-index:16;grid-area:var(--gridArea_1x6eq);backdrop-filter:blur(6px)}.___SLimitOverlayCellWrapper_1x6eq_gg_.__left_1x6eq_gg_{position:sticky;left:var(---left_1x6eq)}.___SCell_1x6eq_gg_.__innerOutline_1x6eq_gg_:focus-visible{transition:none}", /*__inner_css_end__*/"1x6eq_gg_"),
22
22
  /*__reshadow_css_end__*/
23
23
  {
24
- "__SBody": "___SBody_17cjj_gg_",
25
- "__SRow": "___SRow_17cjj_gg_",
26
- "__SRowGroup": "___SRowGroup_17cjj_gg_",
27
- "__SAccordionRows": "___SAccordionRows_17cjj_gg_",
28
- "--gridRow": "--gridRow_17cjj",
29
- "--duration": "--duration_17cjj",
30
- "_gridArea": "__gridArea_17cjj_gg_",
31
- "__SCellWrapper": "___SCellWrapper_17cjj_gg_",
32
- "__SCollapseRow": "___SCollapseRow_17cjj_gg_",
33
- "--gridArea": "--gridArea_17cjj",
34
- "_isAccordionRow": "__isAccordionRow_17cjj_gg_",
35
- "__SCell": "___SCell_17cjj_gg_",
36
- "_withoutBorder": "__withoutBorder_17cjj_gg_",
37
- "_active": "__active_17cjj_gg_",
38
- "_theme": "__theme_17cjj_gg_",
39
- "_accordionType_row": "_accordionType_row_17cjj_gg_",
40
- "_expanded": "__expanded_17cjj_gg_",
41
- "_withAccordion": "__withAccordion_17cjj_gg_",
42
- "_theme_muted": "_theme_muted_17cjj_gg_",
43
- "_theme_info": "_theme_info_17cjj_gg_",
44
- "_theme_success": "_theme_success_17cjj_gg_",
45
- "_theme_warning": "_theme_warning_17cjj_gg_",
46
- "_theme_danger": "_theme_danger_17cjj_gg_",
47
- "_isNonInteractive": "__isNonInteractive_17cjj_gg_",
48
- "__SLimitOverlayCellWrapper": "___SLimitOverlayCellWrapper_17cjj_gg_",
49
- "_name_Symbol(SELECT_ALL)": "_name_Symbol(SELECT_ALL)_17cjj_gg_",
50
- "__SCheckboxCell": "___SCheckboxCell_17cjj_gg_",
51
- "_borders_both": "_borders_both_17cjj_gg_",
52
- "_borders_left": "_borders_left_17cjj_gg_",
53
- "_borders_right": "_borders_right_17cjj_gg_",
54
- "_fixed": "__fixed_17cjj_gg_",
55
- "__SSpinContainer": "___SSpinContainer_17cjj_gg_",
56
- "_headerHeight": "__headerHeight_17cjj_gg_",
57
- "--headerHeight": "--headerHeight_17cjj",
58
- "__SEmptyData": "___SEmptyData_17cjj_gg_",
59
- "_left": "__left_17cjj_gg_",
60
- "---left": "---left_17cjj",
61
- "_innerOutline": "__innerOutline_17cjj_gg_",
62
- "_compact": "__compact_17cjj_gg_",
63
- "--data-aria-level": "--data-aria-level_17cjj",
64
- "_sideIndents_wide": "_sideIndents_wide_17cjj_gg_",
65
- "__SAccordionToggle": "___SAccordionToggle_17cjj_gg_",
66
- "_use_primary": "_use_primary_17cjj_gg_",
67
- "_use_secondary": "_use_secondary_17cjj_gg_",
68
- "_shadowVertical": "__shadowVertical_17cjj_gg_",
69
- "_fixed_left": "_fixed_left_17cjj_gg_",
70
- "_shadowVertical_median": "_shadowVertical_median_17cjj_gg_",
71
- "_shadowVertical_start": "_shadowVertical_start_17cjj_gg_",
72
- "_fixed_right": "_fixed_right_17cjj_gg_",
73
- "_shadowVertical_end": "_shadowVertical_end_17cjj_gg_"
24
+ "__SBody": "___SBody_1x6eq_gg_",
25
+ "__SRow": "___SRow_1x6eq_gg_",
26
+ "__SRowGroup": "___SRowGroup_1x6eq_gg_",
27
+ "__SAccordionRows": "___SAccordionRows_1x6eq_gg_",
28
+ "--gridRow": "--gridRow_1x6eq",
29
+ "--duration": "--duration_1x6eq",
30
+ "_gridArea": "__gridArea_1x6eq_gg_",
31
+ "__SCellWrapper": "___SCellWrapper_1x6eq_gg_",
32
+ "__SCollapseRow": "___SCollapseRow_1x6eq_gg_",
33
+ "--gridArea": "--gridArea_1x6eq",
34
+ "_isAccordionRow": "__isAccordionRow_1x6eq_gg_",
35
+ "__SCell": "___SCell_1x6eq_gg_",
36
+ "_withoutBorder": "__withoutBorder_1x6eq_gg_",
37
+ "_active": "__active_1x6eq_gg_",
38
+ "_theme": "__theme_1x6eq_gg_",
39
+ "_accordionType_row": "_accordionType_row_1x6eq_gg_",
40
+ "_expanded": "__expanded_1x6eq_gg_",
41
+ "_withAccordion": "__withAccordion_1x6eq_gg_",
42
+ "_theme_muted": "_theme_muted_1x6eq_gg_",
43
+ "_theme_info": "_theme_info_1x6eq_gg_",
44
+ "_theme_success": "_theme_success_1x6eq_gg_",
45
+ "_theme_warning": "_theme_warning_1x6eq_gg_",
46
+ "_theme_danger": "_theme_danger_1x6eq_gg_",
47
+ "_isNonInteractive": "__isNonInteractive_1x6eq_gg_",
48
+ "__SLimitOverlayCellWrapper": "___SLimitOverlayCellWrapper_1x6eq_gg_",
49
+ "_name_Symbol(SELECT_ALL)": "_name_Symbol(SELECT_ALL)_1x6eq_gg_",
50
+ "__SCheckboxCell": "___SCheckboxCell_1x6eq_gg_",
51
+ "_borders_both": "_borders_both_1x6eq_gg_",
52
+ "_borders_left": "_borders_left_1x6eq_gg_",
53
+ "_borders_right": "_borders_right_1x6eq_gg_",
54
+ "_fixed": "__fixed_1x6eq_gg_",
55
+ "__SSpinContainer": "___SSpinContainer_1x6eq_gg_",
56
+ "_headerHeight": "__headerHeight_1x6eq_gg_",
57
+ "--headerHeight": "--headerHeight_1x6eq",
58
+ "__SEmptyData": "___SEmptyData_1x6eq_gg_",
59
+ "_left": "__left_1x6eq_gg_",
60
+ "---left": "---left_1x6eq",
61
+ "_innerOutline": "__innerOutline_1x6eq_gg_",
62
+ "_compact": "__compact_1x6eq_gg_",
63
+ "--data-aria-level": "--data-aria-level_1x6eq",
64
+ "_sideIndents_wide": "_sideIndents_wide_1x6eq_gg_",
65
+ "__SAccordionToggle": "___SAccordionToggle_1x6eq_gg_",
66
+ "_use_primary": "_use_primary_1x6eq_gg_",
67
+ "_use_secondary": "_use_secondary_1x6eq_gg_",
68
+ "_shadowVertical": "__shadowVertical_1x6eq_gg_",
69
+ "_fixed_left": "_fixed_left_1x6eq_gg_",
70
+ "_shadowVertical_median": "_shadowVertical_median_1x6eq_gg_",
71
+ "_shadowVertical_start": "_shadowVertical_start_1x6eq_gg_",
72
+ "_fixed_right": "_fixed_right_1x6eq_gg_",
73
+ "_shadowVertical_end": "_shadowVertical_end_1x6eq_gg_"
74
74
  });
75
75
  var LimitOverlayRoot = /*#__PURE__*/function (_Component) {
76
76
  function LimitOverlayRoot() {
@@ -1 +1 @@
1
- {"version":3,"file":"LimitOverlay.js","names":["_core","require","_baseComponents","_hasParent","React","_interopRequireWildcard","_focusableCell","_DataTable","style","sstyled","insert","LimitOverlayRoot","_Component","_this","_classCallCheck2","_len","arguments","length","args","Array","_key","_callSuper2","concat","_defineProperty2","createRef","e","handleKeydownFocusCell","lockedCell","tableElement","asProps","tableRef","current","hasParent","relatedTarget","target","HTMLElement","dataset","skipTargetFocus","undefined","handleFocusCell","currentTarget","_inherits2","_createClass2","key","get","_this$asProps","columns","hasGroups","flatRows","limit","fromRow","fromColumn","rowOffset","rowStart","GRID_ROW_INDEX","rowEnd","lastRow","ACCORDION","isArray","columnStart","columnEnd","_this$asProps2","scrollAreaRef","some","c","fixed","limitWrapperRef","scrollAreaRect","getBoundingClientRect","limitWrapperRect","left","x","width","value","render","_ref","SLimitOverlayCellWrapper","Flex","_this$asProps3","rows","styles","rowsLimit","columnsLimit","renderOverlay","colIndex","colSpan","rowsSpan","_this$sizes","sizes","createElement","cn","limitOverlayGridArea","onClick","stopPropagation","Box","handleFocusableCellFocus","handleFocusableCellKeyDown","Component","LimitOverlay","exports","createComponent"],"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":";;;;;;;;;;;;;AACA,IAAAA,KAAA,GAAAC,OAAA;AADA,IAAAC,eAAA,GAAAD,OAAA;AAEA,IAAAE,UAAA,GAAAF,OAAA;AACA,IAAAG,KAAA,GAAAC,uBAAA,CAAAJ,OAAA;AAKA,IAAAK,cAAA,GAAAL,OAAA;AACA,IAAAM,UAAA,GAAAN,OAAA;AAAmE;AAAA,IAAAO,KAAA,8BAAAR,KAAA,CAAAS,OAAA,CAAAC,MAAA;AAAA;AAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;AAAA;AAAA,IAc7DC,gBAAgB,0BAAAC,UAAA;EAAA,SAAAD,iBAAA;IAAA,IAAAE,KAAA;IAAA,IAAAC,gBAAA,mBAAAH,gBAAA;IAAA,SAAAI,IAAA,GAAAC,SAAA,CAAAC,MAAA,EAAAC,IAAA,OAAAC,KAAA,CAAAJ,IAAA,GAAAK,IAAA,MAAAA,IAAA,GAAAL,IAAA,EAAAK,IAAA;MAAAF,IAAA,CAAAE,IAAA,IAAAJ,SAAA,CAAAI,IAAA;IAAA;IAAAP,KAAA,OAAAQ,WAAA,mBAAAV,gBAAA,KAAAW,MAAA,CAAAJ,IAAA;IAAA,IAAAK,gBAAA,aAAAV,KAAA,gBACK,CAAC,IAAI,EAAE,KAAK,CAAC;IAAA,IAAAU,gBAAA,aAAAV,KAAA,kCAEpBT,KAAK,CAACoB,SAAS,CAAiB,CAAC;IAAA,IAAAD,gBAAA,aAAAV,KAAA,gCAyDtB,UAACY,CAAsB,EAAK;MACvD,IAAAC,qCAAsB,EAACb,KAAA,CAAKc,UAAU,EAAEF,CAAC,CAAC;IAC5C,CAAC;IAAA,IAAAF,gBAAA,aAAAV,KAAA,8BAE0B,UAACY,CAAmB,EAAK;MAClD,IAAMG,YAAY,GAAGf,KAAA,CAAKgB,OAAO,CAACC,QAAQ,CAACC,OAAO;MAClD,IAAIH,YAAY,IAAI,CAAC,IAAAI,oBAAS,EAACP,CAAC,CAACQ,aAAa,EAAEL,YAAY,CAAC,EAAE;QAC7D,IAAIH,CAAC,CAACS,MAAM,YAAYC,WAAW,EAAE;UACnCV,CAAC,CAACS,MAAM,CAACE,OAAO,CAACC,eAAe,GAAG,MAAM;QAC3C;MACF,CAAC,MAAM;QACL,IAAIZ,CAAC,CAACS,MAAM,YAAYC,WAAW,EAAE;UACnCV,CAAC,CAACS,MAAM,CAACE,OAAO,CAACC,eAAe,GAAGC,SAAS;QAC9C;QAEA,IAAAC,8BAAe,EAAC1B,KAAA,CAAKc,UAAU,EAAEF,CAAC,CAACS,MAAM,EAAET,CAAC,CAACe,aAAa,CAAC;MAC7D;IACF,CAAC;IAAA,OAAA3B,KAAA;EAAA;EAAA,IAAA4B,UAAA,aAAA9B,gBAAA,EAAAC,UAAA;EAAA,WAAA8B,aAAA,aAAA/B,gBAAA;IAAAgC,GAAA;IAAAC,GAAA,EArED,SAAAA,IAAA,EAA2B;MACzB,IAAAC,aAAA,GAKI,IAAI,CAAChB,OAAO;QAJdiB,OAAO,GAAAD,aAAA,CAAPC,OAAO;QACPC,SAAS,GAAAF,aAAA,CAATE,SAAS;QACTC,QAAQ,GAAAH,aAAA,CAARG,QAAQ;QACRC,KAAK,GAAAJ,aAAA,CAALI,KAAK;MAGP,IAAQC,OAAO,GAAiBD,KAAK,CAA7BC,OAAO;QAAEC,UAAU,GAAKF,KAAK,CAApBE,UAAU;MAE3B,IAAMC,SAAS,GAAGL,SAAS,GAAG,CAAC,GAAG,CAAC;MAEnC,IAAMM,QAAQ,GAAGH,OAAO,KAAKZ,SAAS,GAClCc,SAAS,GAAGJ,QAAQ,CAACE,OAAO,CAAC,CAACI,yBAAc,CAAC,GAC7CF,SAAS;MACb,IAAIG,MAAM,GAAGH,SAAS;MAEtB,IAAMI,OAAO,GAAGR,QAAQ,CAACA,QAAQ,CAAC/B,MAAM,GAAG,CAAC,CAAC;MAC7C,IAAIuC,OAAO,CAACC,oBAAS,CAAC,EAAE;QACtBF,MAAM,GAAGA,MAAM,GAAGC,OAAO,CAACF,yBAAc,CAAC,GAAG,CAAC,IAAInC,KAAK,CAACuC,OAAO,CAACF,OAAO,CAACC,oBAAS,CAAC,CAAC,GAAGD,OAAO,CAACC,oBAAS,CAAC,CAACxC,MAAM,GAAG,CAAC,CAAC;MACrH,CAAC,MAAM;QACLsC,MAAM,GAAGA,MAAM,GAAGC,OAAO,CAACF,yBAAc,CAAC,GAAG,CAAC;MAC/C;MAEA,IAAMK,WAAW,GAAGR,UAAU,KAAKb,SAAS,GAAGa,UAAU,GAAG,CAAC,GAAG,CAAC;MACjE,IAAMS,SAAS,GAAGd,OAAO,CAAC7B,MAAM,GAAG,CAAC;MAEpC,UAAAK,MAAA,CAAU+B,QAAQ,SAAA/B,MAAA,CAAMqC,WAAW,SAAArC,MAAA,CAAMiC,MAAM,SAAAjC,MAAA,CAAMsC,SAAS;IAChE;EAAC;IAAAjB,GAAA;IAAAC,GAAA,EAED,SAAAA,IAAA,EAAY;MACV,IAAAiB,cAAA,GAAmC,IAAI,CAAChC,OAAO;QAAvCiC,aAAa,GAAAD,cAAA,CAAbC,aAAa;QAAEhB,OAAO,GAAAe,cAAA,CAAPf,OAAO;MAE9B,IAAIA,OAAO,CAACiB,IAAI,CAAC,UAACC,CAAC;QAAA,OAAKA,CAAC,CAACC,KAAK;MAAA,EAAC,IAAI,IAAI,CAACC,eAAe,CAACnC,OAAO,IAAI+B,aAAa,CAAC/B,OAAO,EAAE;QACzF,IAAMoC,cAAc,GAAGL,aAAa,CAAC/B,OAAO,CAACqC,qBAAqB,CAAC,CAAC;QACpE,IAAMC,gBAAgB,GAAG,IAAI,CAACH,eAAe,CAACnC,OAAO,CAACqC,qBAAqB,CAAC,CAAC;QAE7E,IAAME,IAAI,GAAGD,gBAAgB,CAACE,CAAC,GAAGJ,cAAc,CAACI,CAAC;QAClD,IAAMC,KAAK,GAAGL,cAAc,CAACK,KAAK,GAAGH,gBAAgB,CAACE,CAAC,GAAGJ,cAAc,CAACI,CAAC;QAE1E,OAAO;UACLD,IAAI,EAAJA,IAAI;UACJE,KAAK,EAALA;QACF,CAAC;MACH;MAEA,OAAO;QACLF,IAAI,EAAE,CAAC;QACPE,KAAK,EAAE;MACT,CAAC;IACH;EAAC;IAAA7B,GAAA;IAAA8B,KAAA,EAqBD,SAAAC,MAAMA,CAAA,EAAG;MAAA,IAAAC,IAAA;MACP,IAAMC,wBAAwB,GAAGC,oBAAI;MACrC,IAAAC,cAAA,GAAyC,IAAI,CAACjD,OAAO;QAA7CiB,OAAO,GAAAgC,cAAA,CAAPhC,OAAO;QAAEiC,IAAI,GAAAD,cAAA,CAAJC,IAAI;QAAEC,MAAM,GAAAF,cAAA,CAANE,MAAM;QAAE/B,KAAK,GAAA6B,cAAA,CAAL7B,KAAK;MAEpC,IAAMgC,SAAS,GAAGhC,KAAK,CAACC,OAAO;MAC/B,IAAMgC,YAAY,GAAGjC,KAAK,CAACE,UAAU;MACrC,IAAMgC,aAAa,GAAGlC,KAAK,CAACkC,aAAa;MAEzC,IAAMC,QAAQ,GAAGF,YAAY,GAAGA,YAAY,GAAG,CAAC,GAAG,CAAC;MACpD,IAAMG,OAAO,GAAGvC,OAAO,CAAC7B,MAAM,IAAIiE,YAAY,aAAZA,YAAY,cAAZA,YAAY,GAAI,CAAC,CAAC;MACpD,IAAMI,QAAQ,GAAGP,IAAI,CAAC9D,MAAM,IAAIgE,SAAS,aAATA,SAAS,cAATA,SAAS,GAAI,CAAC,CAAC;MAC/C,IAAAM,WAAA,GAAwB,IAAI,CAACC,KAAK;QAA1BhB,KAAK,GAAAe,WAAA,CAALf,KAAK;QAAEF,IAAI,GAAAiB,WAAA,CAAJjB,IAAI;MAEnB,OAAAK,IAAA,GAAO,IAAAlE,aAAO,EAACuE,MAAM,CAAC,eACpB5E,KAAA,CAAAqF,aAAA,CAACb,wBAAwB,EAAAD,IAAA,CAAAe,EAAA;QAAA,OAClB,IAAI,CAACxB,eAAe;QAAA,YAEf,IAAI,CAACyB,oBAAoB;QAAA,KAChCnB,KAAK,GAAGA,KAAK,GAAGlC,SAAS;QAAA,QACtBgC,IAAI,GAAGA,IAAI,GAAGhC,SAAS;QAAA,WACpB,SAAAsD,QAACnE,CAAC;UAAA,OAAKA,CAAC,CAACoE,eAAe,CAAC,CAAC;QAAA;MAAA,iBAEnCzF,KAAA,CAAAqF,aAAA,CAACvF,eAAA,CAAA4F,GAAG,EAAAnB,IAAA,CAAAe,EAAA;QAAA,QACG,UAAU;QAAA,iBACAN,QAAQ;QAAA,gBACTC,OAAO;QAAA,gBACPC,QAAQ;QAAA,YACZ,CAAC,CAAC;QAAA,WACH,IAAI,CAACS,wBAAwB;QAAA,aAC3B,IAAI,CAACC;MAA0B,IAEzCb,aAAa,aAAbA,aAAa,uBAAbA,aAAa,CAAG,CACd,CACmB,CAAC;IAE/B;EAAC;AAAA,EAlHyCc,eAAS;AAAA,IAAA1E,gBAAA,aAA/CZ,gBAAgB,iBAKC,cAAc;AAAA,IAAAY,gBAAA,aAL/BZ,gBAAgB,WAMLH,KAAK;AAuHf,IAAM0F,YAAY,GAAAC,OAAA,CAAAD,YAAA,GAAG,IAAAE,qBAAe,EAACzF,gBAAgB,CAAqB","ignoreList":[]}
1
+ {"version":3,"file":"LimitOverlay.js","names":["_core","require","_baseComponents","_hasParent","React","_interopRequireWildcard","_focusableCell","_DataTable","style","sstyled","insert","LimitOverlayRoot","_Component","_this","_classCallCheck2","_len","arguments","length","args","Array","_key","_callSuper2","concat","_defineProperty2","createRef","e","handleKeydownFocusCell","lockedCell","tableElement","asProps","tableRef","current","hasParent","relatedTarget","target","HTMLElement","dataset","skipTargetFocus","undefined","handleFocusCell","currentTarget","_inherits2","_createClass2","key","get","_this$asProps","columns","hasGroups","flatRows","limit","fromRow","fromColumn","rowOffset","rowStart","GRID_ROW_INDEX","rowEnd","lastRow","ACCORDION","isArray","columnStart","columnEnd","_this$asProps2","scrollAreaRef","some","c","fixed","limitWrapperRef","scrollAreaRect","getBoundingClientRect","limitWrapperRect","left","x","width","value","render","_ref","SLimitOverlayCellWrapper","Flex","_this$asProps3","rows","styles","rowsLimit","columnsLimit","renderOverlay","colIndex","colSpan","rowsSpan","_this$sizes","sizes","createElement","cn","limitOverlayGridArea","onClick","stopPropagation","Box","handleFocusableCellFocus","handleFocusableCellKeyDown","Component","LimitOverlay","exports","createComponent"],"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":[]}