@semcore/data-table 16.0.0-prerelease.7 → 16.0.0

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 (138) hide show
  1. package/CHANGELOG.md +25 -1
  2. package/lib/cjs/components/Body/Body.js +436 -0
  3. package/lib/cjs/components/Body/Body.js.map +1 -0
  4. package/lib/cjs/components/Body/Body.types.js +2 -0
  5. package/lib/cjs/components/Body/Body.types.js.map +1 -0
  6. package/lib/cjs/components/Body/Cell.js +194 -0
  7. package/lib/cjs/components/Body/Cell.js.map +1 -0
  8. package/lib/cjs/components/Body/Cell.types.js +2 -0
  9. package/lib/cjs/components/Body/Cell.types.js.map +1 -0
  10. package/lib/cjs/components/Body/MergedCells.js +29 -0
  11. package/lib/cjs/components/Body/MergedCells.js.map +1 -0
  12. package/lib/cjs/components/Body/Row.js +244 -0
  13. package/lib/cjs/components/Body/Row.js.map +1 -0
  14. package/lib/cjs/components/Body/Row.types.js +4 -0
  15. package/lib/cjs/components/Body/Row.types.js.map +1 -0
  16. package/lib/cjs/components/Body/style.shadow.css +257 -0
  17. package/lib/cjs/components/DataTable/DataTable.js +981 -0
  18. package/lib/cjs/components/DataTable/DataTable.js.map +1 -0
  19. package/lib/cjs/{types.js → components/DataTable/DataTable.types.js} +1 -1
  20. package/lib/cjs/components/DataTable/DataTable.types.js.map +1 -0
  21. package/lib/cjs/components/DataTable/dataTable.shadow.css +17 -0
  22. package/lib/cjs/components/Head/Column.js +316 -0
  23. package/lib/cjs/components/Head/Column.js.map +1 -0
  24. package/lib/cjs/components/Head/Column.types.js +2 -0
  25. package/lib/cjs/components/Head/Column.types.js.map +1 -0
  26. package/lib/cjs/components/Head/Group.js +115 -0
  27. package/lib/cjs/components/Head/Group.js.map +1 -0
  28. package/lib/cjs/components/Head/Group.type.js +2 -0
  29. package/lib/cjs/components/Head/Group.type.js.map +1 -0
  30. package/lib/cjs/components/Head/Head.js +205 -0
  31. package/lib/cjs/components/Head/Head.js.map +1 -0
  32. package/lib/cjs/components/Head/Head.types.js +2 -0
  33. package/lib/cjs/components/Head/Head.types.js.map +1 -0
  34. package/lib/cjs/components/Head/style.shadow.css +176 -0
  35. package/lib/cjs/index.js +25 -15
  36. package/lib/cjs/index.js.map +1 -1
  37. package/lib/cjs/style/scroll-shadows.shadow.css +39 -5
  38. package/lib/cjs/translations/en.json +6 -1
  39. package/lib/cjs/utils.js +16 -7
  40. package/lib/cjs/utils.js.map +1 -1
  41. package/lib/es6/components/Body/Body.js +429 -0
  42. package/lib/es6/components/Body/Body.js.map +1 -0
  43. package/lib/es6/components/Body/Body.types.js +2 -0
  44. package/lib/es6/components/Body/Body.types.js.map +1 -0
  45. package/lib/es6/components/Body/Cell.js +187 -0
  46. package/lib/es6/components/Body/Cell.js.map +1 -0
  47. package/lib/es6/components/Body/Cell.types.js +2 -0
  48. package/lib/es6/components/Body/Cell.types.js.map +1 -0
  49. package/lib/es6/components/Body/MergedCells.js +20 -0
  50. package/lib/es6/components/Body/MergedCells.js.map +1 -0
  51. package/lib/es6/components/Body/Row.js +237 -0
  52. package/lib/es6/components/Body/Row.js.map +1 -0
  53. package/lib/es6/components/Body/Row.types.js +2 -0
  54. package/lib/es6/components/Body/Row.types.js.map +1 -0
  55. package/lib/es6/components/Body/style.shadow.css +257 -0
  56. package/lib/es6/components/DataTable/DataTable.js +970 -0
  57. package/lib/es6/components/DataTable/DataTable.js.map +1 -0
  58. package/lib/es6/components/DataTable/DataTable.types.js +2 -0
  59. package/lib/es6/components/DataTable/DataTable.types.js.map +1 -0
  60. package/lib/es6/components/DataTable/dataTable.shadow.css +17 -0
  61. package/lib/es6/components/Head/Column.js +309 -0
  62. package/lib/es6/components/Head/Column.js.map +1 -0
  63. package/lib/es6/components/Head/Column.types.js +2 -0
  64. package/lib/es6/components/Head/Column.types.js.map +1 -0
  65. package/lib/es6/components/Head/Group.js +108 -0
  66. package/lib/es6/components/Head/Group.js.map +1 -0
  67. package/lib/es6/components/Head/Group.type.js +2 -0
  68. package/lib/es6/components/Head/Group.type.js.map +1 -0
  69. package/lib/es6/components/Head/Head.js +199 -0
  70. package/lib/es6/components/Head/Head.js.map +1 -0
  71. package/lib/es6/components/Head/Head.types.js +2 -0
  72. package/lib/es6/components/Head/Head.types.js.map +1 -0
  73. package/lib/es6/components/Head/style.shadow.css +176 -0
  74. package/lib/es6/index.js +5 -2
  75. package/lib/es6/index.js.map +1 -1
  76. package/lib/es6/style/scroll-shadows.shadow.css +39 -5
  77. package/lib/es6/translations/en.json +6 -1
  78. package/lib/es6/utils.js +14 -6
  79. package/lib/es6/utils.js.map +1 -1
  80. package/lib/esm/components/Body/Body.mjs +392 -0
  81. package/lib/esm/components/Body/Cell.mjs +185 -0
  82. package/lib/esm/components/Body/MergedCells.mjs +23 -0
  83. package/lib/esm/components/Body/Row.mjs +218 -0
  84. package/lib/esm/components/Body/style.shadow.css +257 -0
  85. package/lib/esm/components/DataTable/DataTable.mjs +904 -0
  86. package/lib/esm/components/DataTable/dataTable.shadow.css +17 -0
  87. package/lib/esm/components/Head/Column.mjs +299 -0
  88. package/lib/esm/components/Head/Group.mjs +102 -0
  89. package/lib/esm/components/Head/Head.mjs +180 -0
  90. package/lib/esm/components/Head/style.shadow.css +176 -0
  91. package/lib/esm/index.mjs +8 -5
  92. package/lib/esm/style/scroll-shadows.shadow.css +41 -0
  93. package/lib/esm/translations/en.json.mjs +6 -1
  94. package/lib/esm/utils.mjs +6 -15
  95. package/lib/types/components/Body/Body.d.ts +8 -0
  96. package/lib/types/components/Body/Body.types.d.ts +56 -0
  97. package/lib/types/components/Body/Cell.d.ts +3 -0
  98. package/lib/types/components/Body/Cell.types.d.ts +20 -0
  99. package/lib/types/components/Body/MergedCells.d.ts +14 -0
  100. package/lib/types/components/Body/Row.d.ts +3 -0
  101. package/lib/types/components/Body/Row.types.d.ts +42 -0
  102. package/lib/types/components/DataTable/DataTable.d.ts +12 -0
  103. package/lib/types/components/DataTable/DataTable.types.d.ts +118 -0
  104. package/lib/types/components/Head/Column.d.ts +30 -0
  105. package/lib/types/components/Head/Column.types.d.ts +82 -0
  106. package/lib/types/components/Head/Group.d.ts +15 -0
  107. package/lib/types/components/Head/Group.type.d.ts +16 -0
  108. package/lib/types/components/Head/Head.d.ts +98 -0
  109. package/lib/types/components/Head/Head.types.d.ts +35 -0
  110. package/lib/types/index.d.ts +10 -2
  111. package/lib/types/translations/__intergalactic-dynamic-locales.d.ts +5 -0
  112. package/lib/types/utils.d.ts +8 -4
  113. package/package.json +11 -6
  114. package/vite.config.ts +0 -3
  115. package/lib/cjs/Body.js +0 -475
  116. package/lib/cjs/Body.js.map +0 -1
  117. package/lib/cjs/DataTable.js +0 -622
  118. package/lib/cjs/DataTable.js.map +0 -1
  119. package/lib/cjs/Head.js +0 -399
  120. package/lib/cjs/Head.js.map +0 -1
  121. package/lib/cjs/style/data-table.shadow.css +0 -394
  122. package/lib/cjs/types.js.map +0 -1
  123. package/lib/es6/Body.js +0 -468
  124. package/lib/es6/Body.js.map +0 -1
  125. package/lib/es6/DataTable.js +0 -614
  126. package/lib/es6/DataTable.js.map +0 -1
  127. package/lib/es6/Head.js +0 -391
  128. package/lib/es6/Head.js.map +0 -1
  129. package/lib/es6/style/data-table.shadow.css +0 -394
  130. package/lib/es6/types.js +0 -2
  131. package/lib/es6/types.js.map +0 -1
  132. package/lib/esm/Body.mjs +0 -427
  133. package/lib/esm/DataTable.mjs +0 -582
  134. package/lib/esm/Head.mjs +0 -369
  135. package/lib/types/Body.d.ts +0 -61
  136. package/lib/types/DataTable.d.ts +0 -205
  137. package/lib/types/Head.d.ts +0 -45
  138. package/lib/types/types.d.ts +0 -73
@@ -1,582 +0,0 @@
1
- import _objectSpread from "@babel/runtime/helpers/esm/objectSpread2";
2
- import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
3
- import _createForOfIteratorHelper from "@babel/runtime/helpers/esm/createForOfIteratorHelper";
4
- import _classCallCheck from "@babel/runtime/helpers/esm/classCallCheck";
5
- import _createClass from "@babel/runtime/helpers/esm/createClass";
6
- import _assertThisInitialized from "@babel/runtime/helpers/esm/assertThisInitialized";
7
- import _inherits from "@babel/runtime/helpers/esm/inherits";
8
- import _createSuper from "@babel/runtime/helpers/esm/createSuper";
9
- import _defineProperty from "@babel/runtime/helpers/esm/defineProperty";
10
- import { sstyled, createComponent, lastInteraction, assignProps, Component } from "@semcore/core";
11
- import React from "react";
12
- import { Box } from "@semcore/flex-box";
13
- import syncScroll from "@semcore/core/lib/utils/syncScroll";
14
- import { callAllEventHandlers } from "@semcore/core/lib/utils/assignProps";
15
- import fire from "@semcore/core/lib/utils/fire";
16
- import { flattenColumns } from "./utils.mjs";
17
- import Head from "./Head.mjs";
18
- import Body from "./Body.mjs";
19
- import uniqueIDEnhancement from "@semcore/core/lib/utils/uniqueID";
20
- import { localizedMessages } from "./translations/__intergalactic-dynamic-locales.mjs";
21
- import i18nEnhance from "@semcore/core/lib/utils/enhances/i18nEnhance";
22
- import { hasFocusableIn, isFocusInside } from "@semcore/core/lib/utils/use/useFocusLock";
23
- var _excluded = ["children", "name", "fixed", "resizable", "sortable", "flex", "vBorders", "active"], _excluded2 = ["name", "children"];
24
- var style = (
25
- /*__reshadow_css_start__*/
26
- (sstyled.insert(
27
- /*__inner_css_start__*/
28
- '.___SDataTable_zohi4_gg_,.___SHeadWrapper_zohi4_gg_{position:relative}.___SDataTable_zohi4_gg_.__compact_zohi4_gg_ .___SCell_zohi4_gg_,.___SDataTable_zohi4_gg_.__compact_zohi4_gg_ .___SColumn_zohi4_gg_{padding:var(--intergalactic-spacing-3x, 12px) var(--intergalactic-spacing-2x, 8px)}.___SHeadWrapper_zohi4_gg_.__animationsDisabled_zohi4_gg_ .___SColumn_zohi4_gg_{transition:none}.___SHeadWrapper_zohi4_gg_.__sticky_zohi4_gg_{position:sticky;top:0;z-index:2}.___SHead_zohi4_gg_{display:flex;position:relative;flex-direction:row;min-width:-moz-fit-content;min-width:fit-content;z-index:0}.___SColumn_zohi4_gg_{display:flex;align-items:flex-start;flex-grow:1;font-size:var(--intergalactic-fs-100, 12px);line-height:var(--intergalactic-lh-100, 133%);color:var(--intergalactic-text-primary, #191b23);box-sizing:border-box;position:relative;transition:width calc(var(--intergalactic-duration-extra-fast, 100)*1ms) ease-in-out,min-width calc(var(--intergalactic-duration-extra-fast, 100)*1ms) ease-in-out,max-width calc(var(--intergalactic-duration-extra-fast, 100)*1ms) ease-in-out}.___SColumn_zohi4_gg_.__hidden_zohi4_gg_{position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border-width:0!important}.___SColumn_zohi4_gg_._use_primary_zohi4_gg_{padding:var(--intergalactic-spacing-3x, 12px);border-bottom:1px solid var(--intergalactic-border-secondary, #e0e1e9);background-color:var(--intergalactic-table-th-primary-cell, #f4f5f9)}.___SColumn_zohi4_gg_._use_secondary_zohi4_gg_{padding:var(--intergalactic-spacing-2x, 8px);border-bottom:1px solid var(--intergalactic-border-table-accent, #a9abb6);background-color:var(--intergalactic-table-th-secondary-cell, #ffffff)}.___SColumn_zohi4_gg_.__group_zohi4_gg_.__use_zohi4_gg_{display:flex;flex-wrap:wrap;flex-direction:column;align-items:normal;border-bottom:none;padding:0}.___SColumn_zohi4_gg_.__groupHead_zohi4_gg_{justify-content:center;z-index:1;border-bottom:none}.___SColumn_zohi4_gg_.__sortable_zohi4_gg_{cursor:pointer}.___SColumn_zohi4_gg_.__sortable_zohi4_gg_._use_primary_zohi4_gg_:focus{background-color:var(--intergalactic-table-th-primary-cell-hover, #e0e1e9)}@media (hover:hover){.___SColumn_zohi4_gg_.__sortable_zohi4_gg_._use_primary_zohi4_gg_:hover{background-color:var(--intergalactic-table-th-primary-cell-hover, #e0e1e9)}}.___SColumn_zohi4_gg_.__sortable_zohi4_gg_._justifyContent_right_zohi4_gg_:focus .___SSortWrapper_zohi4_gg_{position:absolute;flex-basis:0;right:var(--intergalactic-spacing-3x, 12px)}@media (hover:hover){.___SColumn_zohi4_gg_.__sortable_zohi4_gg_._justifyContent_right_zohi4_gg_:hover .___SSortWrapper_zohi4_gg_{position:absolute;flex-basis:0;right:var(--intergalactic-spacing-3x, 12px)}}.___SColumn_zohi4_gg_.__sortable_zohi4_gg_._justifyContent_right_zohi4_gg_.__active_zohi4_gg_ .___SSortWrapper_zohi4_gg_{position:relative;flex-basis:inherit;right:0}.___SColumn_zohi4_gg_.__sortable_zohi4_gg_.__active_zohi4_gg_ .___SSortWrapper_zohi4_gg_,.___SColumn_zohi4_gg_.__sortable_zohi4_gg_:focus .___SSortWrapper_zohi4_gg_{flex-basis:calc(var(--intergalactic-spacing-1x, 4px) + 16px);opacity:1}@media (hover:hover){.___SColumn_zohi4_gg_.__sortable_zohi4_gg_:hover .___SSortWrapper_zohi4_gg_{flex-basis:calc(var(--intergalactic-spacing-1x, 4px) + 16px);opacity:1}}.___SColumn_zohi4_gg_.__sortable_zohi4_gg_.__active_zohi4_gg_ .___SSortWrapper_zohi4_gg_:before,.___SColumn_zohi4_gg_.__sortable_zohi4_gg_:focus .___SSortIcon_zohi4_gg_,.___SColumn_zohi4_gg_.__sortable_zohi4_gg_:focus .___SSortWrapper_zohi4_gg_:before{display:block;opacity:1}@media (hover:hover){.___SColumn_zohi4_gg_.__sortable_zohi4_gg_:hover .___SSortWrapper_zohi4_gg_:before{display:block;opacity:1}}@media (hover:hover){.___SColumn_zohi4_gg_.__sortable_zohi4_gg_:hover .___SSortIcon_zohi4_gg_{display:block;opacity:1}}.___SColumn_zohi4_gg_._use_primary_zohi4_gg_.__active_zohi4_gg_{background-color:var(--intergalactic-table-th-primary-cell-active, #e0e1e9);width:100%}.___SColumn_zohi4_gg_.__active_zohi4_gg_ .___SSortIcon_zohi4_gg_{display:block;opacity:1}.___SColumn_zohi4_gg_.__resizable_zohi4_gg_{border-right:1px solid transparent}@media (hover:hover){.___SColumn_zohi4_gg_.__resizable_zohi4_gg_:hover:after{border-right-color:var(--intergalactic-border-table-accent, #a9abb6)}}.___SColumn_zohi4_gg_.__resizable_zohi4_gg_:after{content:"";position:absolute;bottom:0;right:-1px;height:100%;width:5px;background:0 0;cursor:col-resize;border-right:1px solid transparent}.___SColumn_zohi4_gg_.__fixed_zohi4_gg_{position:sticky;z-index:2}.___SCell_zohi4_gg_.__borderLeft_zohi4_gg_,.___SColumn_zohi4_gg_.__borderLeft_zohi4_gg_{border-left:1px solid var(--intergalactic-border-secondary, #e0e1e9)}.___SCell_zohi4_gg_.__borderRight_zohi4_gg_,.___SColumn_zohi4_gg_.__borderRight_zohi4_gg_{border-right:1px solid var(--intergalactic-border-secondary, #e0e1e9)}.___SSortWrapper_zohi4_gg_{flex-shrink:1;position:relative;flex-basis:0;min-height:16px;opacity:0;transition:all calc(var(--intergalactic-duration-extra-fast, 100)*1ms) ease-in-out}.___SSortIcon_zohi4_gg_,.___SSortWrapper_zohi4_gg_:before{display:none;position:absolute;right:0;opacity:0;transition:opacity .3s ease}.___SSortWrapper_zohi4_gg_:before{content:"";top:0;width:20px;height:100%}.___SSortIcon_zohi4_gg_{fill:var(--intergalactic-icon-secondary-neutral-hover-active, #878992);top:calc(1em*1.25 - 16px);margin-left:var(--intergalactic-spacing-1x, 4px)}.___SColumn_zohi4_gg_._use_primary_zohi4_gg_ .___SSortWrapper_zohi4_gg_:before{background:linear-gradient(270deg,var(--intergalactic-table-th-primary-cell-hover, #e0e1e9) 67.5%,rgba(224,225,233,0) 105%)}.___SColumn_zohi4_gg_._use_secondary_zohi4_gg_ .___SSortWrapper_zohi4_gg_:before{background:linear-gradient(270deg,var(--intergalactic-table-th-secondary-cell, #ffffff) 67.5%,rgba(255,255,255,0) 105%)}.___SBodyWrapper_zohi4_gg_{position:relative}.___SBody_zohi4_gg_{display:flex;flex-direction:column;position:relative;min-width:-moz-fit-content;min-width:fit-content}.___SRow_zohi4_gg_{display:flex;flex-direction:row;position:relative}.___SRow_zohi4_gg_.__active_zohi4_gg_>.___SCell_zohi4_gg_:not(.__theme_zohi4_gg_),.___SRow_zohi4_gg_._theme_muted_zohi4_gg_.__active_zohi4_gg_>.___SCell_zohi4_gg_:not(.__theme_zohi4_gg_){background-color:var(--intergalactic-table-td-cell-active, #e6e7ed)}@media (hover:hover){.___SRow_zohi4_gg_ .___SCell_zohi4_gg_:hover+.___SGroupCell_zohi4_gg_ .___SCell_zohi4_gg_:not(.__theme_zohi4_gg_),.___SRow_zohi4_gg_:hover>.___SCell_zohi4_gg_:not(.__theme_zohi4_gg_){background-color:var(--intergalactic-table-td-cell-hover, #f0f0f4)}}.___SRow_zohi4_gg_._theme_muted_zohi4_gg_ .___SCell_zohi4_gg_:not(.__theme_zohi4_gg_){background-color:var(--intergalactic-table-td-cell-unread, #f4f5f9)}@media (hover:hover){.___SRow_zohi4_gg_._theme_muted_zohi4_gg_ .___SCell_zohi4_gg_:hover+.___SGroupCell_zohi4_gg_ .___SCell_zohi4_gg_:not(.__theme_zohi4_gg_),.___SRow_zohi4_gg_._theme_muted_zohi4_gg_:hover>.___SCell_zohi4_gg_:not(.__theme_zohi4_gg_),.___SRow_zohi4_gg_:hover>.___SCell_zohi4_gg_._theme_muted_zohi4_gg_{background-color:var(--intergalactic-table-td-cell-hover, #f0f0f4)}}.___SRow_zohi4_gg_._theme_info_zohi4_gg_ .___SCell_zohi4_gg_:not(.__theme_zohi4_gg_){background-color:var(--intergalactic-table-td-cell-selected, #e9f7ff)}.___SRow_zohi4_gg_._theme_info_zohi4_gg_.__active_zohi4_gg_>.___SCell_zohi4_gg_:not(.__theme_zohi4_gg_){background-color:var(--intergalactic-table-td-cell-selected-active, #c4e5fe)}@media (hover:hover){.___SRow_zohi4_gg_._theme_info_zohi4_gg_ .___SCell_zohi4_gg_:hover+.___SGroupCell_zohi4_gg_ .___SCell_zohi4_gg_:not(.__theme_zohi4_gg_),.___SRow_zohi4_gg_._theme_info_zohi4_gg_:hover>.___SCell_zohi4_gg_:not(.__theme_zohi4_gg_),.___SRow_zohi4_gg_:hover>.___SCell_zohi4_gg_._theme_info_zohi4_gg_{background-color:var(--intergalactic-table-td-cell-selected-hover, #c4e5fe)}}.___SRow_zohi4_gg_._theme_success_zohi4_gg_ .___SCell_zohi4_gg_:not(.__theme_zohi4_gg_){background-color:var(--intergalactic-table-td-cell-new, #dbfee8)}.___SRow_zohi4_gg_._theme_success_zohi4_gg_.__active_zohi4_gg_>.___SCell_zohi4_gg_:not(.__theme_zohi4_gg_){background-color:var(--intergalactic-table-td-cell-new-active, #9ef2c9)}@media (hover:hover){.___SRow_zohi4_gg_._theme_success_zohi4_gg_ .___SCell_zohi4_gg_:hover+.___SGroupCell_zohi4_gg_ .___SCell_zohi4_gg_:not(.__theme_zohi4_gg_),.___SRow_zohi4_gg_._theme_success_zohi4_gg_:hover>.___SCell_zohi4_gg_:not(.__theme_zohi4_gg_),.___SRow_zohi4_gg_:hover>.___SCell_zohi4_gg_._theme_success_zohi4_gg_{background-color:var(--intergalactic-table-td-cell-new-hover, #9ef2c9)}}.___SRow_zohi4_gg_._theme_warning_zohi4_gg_ .___SCell_zohi4_gg_:not(.__theme_zohi4_gg_){background-color:var(--intergalactic-table-td-cell-warning, #fff3d9)}.___SRow_zohi4_gg_._theme_warning_zohi4_gg_.__active_zohi4_gg_>.___SCell_zohi4_gg_:not(.__theme_zohi4_gg_){background-color:var(--intergalactic-table-td-cell-warning-active, #ffdca2)}@media (hover:hover){.___SRow_zohi4_gg_._theme_warning_zohi4_gg_ .___SCell_zohi4_gg_:hover+.___SGroupCell_zohi4_gg_ .___SCell_zohi4_gg_:not(.__theme_zohi4_gg_),.___SRow_zohi4_gg_._theme_warning_zohi4_gg_:hover>.___SCell_zohi4_gg_:not(.__theme_zohi4_gg_),.___SRow_zohi4_gg_:hover>.___SCell_zohi4_gg_._theme_warning_zohi4_gg_{background-color:var(--intergalactic-table-td-cell-warning-hover, #ffdca2)}}.___SRow_zohi4_gg_._theme_danger_zohi4_gg_ .___SCell_zohi4_gg_:not(.__theme_zohi4_gg_){background-color:var(--intergalactic-table-td-cell-critical, #fff0f7)}.___SRow_zohi4_gg_._theme_danger_zohi4_gg_.__active_zohi4_gg_>.___SCell_zohi4_gg_:not(.__theme_zohi4_gg_){background-color:var(--intergalactic-table-td-cell-critical-active, #ffd7df)}@media (hover:hover){.___SRow_zohi4_gg_._theme_danger_zohi4_gg_ .___SCell_zohi4_gg_:hover+.___SGroupCell_zohi4_gg_ .___SCell_zohi4_gg_:not(.__theme_zohi4_gg_),.___SRow_zohi4_gg_._theme_danger_zohi4_gg_:hover>.___SCell_zohi4_gg_:not(.__theme_zohi4_gg_),.___SRow_zohi4_gg_:hover>.___SCell_zohi4_gg_._theme_danger_zohi4_gg_{background-color:var(--intergalactic-table-td-cell-critical-hover, #ffd7df)}}.___SRow_zohi4_gg_.__positioned_zohi4_gg_{position:absolute}.___SBody_zohi4_gg_.__animationsDisabled_zohi4_gg_ .___SCell_zohi4_gg_{transition:none}.___SCell_zohi4_gg_{display:flex;flex:1;flex-basis:auto;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);overflow:hidden;white-space:nowrap;font-feature-settings:"tnum";font-variant-numeric:tabular-nums;transition:width calc(var(--intergalactic-duration-extra-fast, 100)*1ms) ease-in-out;outline:0}.___SCell_zohi4_gg_._use_primary_zohi4_gg_{padding:var(--intergalactic-spacing-3x, 12px);min-height:45px;background-color:var(--intergalactic-bg-primary-neutral, #ffffff)}.___SCell_zohi4_gg_._use_secondary_zohi4_gg_{padding:var(--intergalactic-spacing-2x, 8px);min-height:37px;background-color:var(--intergalactic-bg-primary-neutral, #ffffff)}.___SCell_zohi4_gg_.__fixed_zohi4_gg_{position:sticky;z-index:1}.___SCell_zohi4_gg_._theme_muted_zohi4_gg_{background-color:var(--intergalactic-table-td-cell-unread, #f4f5f9)}.___SCell_zohi4_gg_._theme_info_zohi4_gg_{background-color:var(--intergalactic-table-td-cell-selected, #e9f7ff)}.___SCell_zohi4_gg_._theme_success_zohi4_gg_{background-color:var(--intergalactic-table-td-cell-new, #dbfee8)}.___SCell_zohi4_gg_._theme_warning_zohi4_gg_{background-color:var(--intergalactic-table-td-cell-warning, #fff3d9)}.___SCell_zohi4_gg_._theme_danger_zohi4_gg_{background-color:var(--intergalactic-table-td-cell-critical, #fff0f7)}.___SHeightHold_zohi4_gg_{position:absolute;top:0;width:100%;pointer-events:none;z-index:-1}',
29
- "zohi4_gg_"
30
- ), {
31
- "__SDataTable": "___SDataTable_zohi4_gg_",
32
- "__SHeadWrapper": "___SHeadWrapper_zohi4_gg_",
33
- "_sticky": "__sticky_zohi4_gg_",
34
- "__SHead": "___SHead_zohi4_gg_",
35
- "__SColumn": "___SColumn_zohi4_gg_",
36
- "_hidden": "__hidden_zohi4_gg_",
37
- "_use_primary": "_use_primary_zohi4_gg_",
38
- "_use_secondary": "_use_secondary_zohi4_gg_",
39
- "_group": "__group_zohi4_gg_",
40
- "_use": "__use_zohi4_gg_",
41
- "_groupHead": "__groupHead_zohi4_gg_",
42
- "_active": "__active_zohi4_gg_",
43
- "__SSortIcon": "___SSortIcon_zohi4_gg_",
44
- "_fixed": "__fixed_zohi4_gg_",
45
- "_borderLeft": "__borderLeft_zohi4_gg_",
46
- "__SCell": "___SCell_zohi4_gg_",
47
- "_borderRight": "__borderRight_zohi4_gg_",
48
- "__SSortWrapper": "___SSortWrapper_zohi4_gg_",
49
- "__SBodyWrapper": "___SBodyWrapper_zohi4_gg_",
50
- "__SBody": "___SBody_zohi4_gg_",
51
- "__SRow": "___SRow_zohi4_gg_",
52
- "_theme": "__theme_zohi4_gg_",
53
- "__SGroupCell": "___SGroupCell_zohi4_gg_",
54
- "_theme_muted": "_theme_muted_zohi4_gg_",
55
- "_theme_info": "_theme_info_zohi4_gg_",
56
- "_theme_success": "_theme_success_zohi4_gg_",
57
- "_theme_warning": "_theme_warning_zohi4_gg_",
58
- "_theme_danger": "_theme_danger_zohi4_gg_",
59
- "_positioned": "__positioned_zohi4_gg_",
60
- "_animationsDisabled": "__animationsDisabled_zohi4_gg_",
61
- "__SHeightHold": "___SHeightHold_zohi4_gg_",
62
- "_compact": "__compact_zohi4_gg_",
63
- "_sortable": "__sortable_zohi4_gg_",
64
- "_justifyContent_right": "_justifyContent_right_zohi4_gg_",
65
- "_resizable": "__resizable_zohi4_gg_"
66
- })
67
- );
68
- var reversedSortDirection = {
69
- desc: "asc",
70
- asc: "desc"
71
- };
72
- var defaultSortDirection = "desc";
73
- var ROW_GROUP = Symbol("ROW_GROUP");
74
- var cssVarReg = /[:;\W]/g;
75
- var createCssVarForWidth = function createCssVarForWidth2(name) {
76
- return "--".concat(name.replace(cssVarReg, "_"), "_width");
77
- };
78
- function setBorderGroupColumns(columns, side) {
79
- var firstColumn = columns[0];
80
- var lastColumn = columns[columns.length - 1];
81
- if (firstColumn && (!side || side === "left")) {
82
- firstColumn.borderLeft = true;
83
- if (firstColumn.columns) {
84
- setBorderGroupColumns(firstColumn.columns, "left");
85
- }
86
- }
87
- if (lastColumn && (!side || side === "right")) {
88
- lastColumn.borderRight = true;
89
- if (lastColumn.columns) {
90
- setBorderGroupColumns(lastColumn.columns, "right");
91
- }
92
- }
93
- }
94
- var RootDefinitionTable = /* @__PURE__ */ function(_Component) {
95
- _inherits(RootDefinitionTable2, _Component);
96
- var _super = _createSuper(RootDefinitionTable2);
97
- function RootDefinitionTable2(props) {
98
- var _this;
99
- _classCallCheck(this, RootDefinitionTable2);
100
- _this = _super.call(this, props);
101
- _defineProperty(_assertThisInitialized(_this), "focusedCell", [-1, -1]);
102
- _defineProperty(_assertThisInitialized(_this), "columns", []);
103
- _defineProperty(_assertThisInitialized(_this), "tableRef", /* @__PURE__ */ React.createRef());
104
- _defineProperty(_assertThisInitialized(_this), "scrollBodyRef", null);
105
- _defineProperty(_assertThisInitialized(_this), "scrollHeadRef", null);
106
- _defineProperty(_assertThisInitialized(_this), "handlerSortClick", function(name, event) {
107
- var column = _this.columns.find(function(column2) {
108
- return column2.name === name;
109
- });
110
- return fire(_assertThisInitialized(_this), "onSortChange", [column.name, column.active ? reversedSortDirection[column.sortDirection] : column.sortDirection], event);
111
- });
112
- _defineProperty(_assertThisInitialized(_this), "handlerResize", function() {
113
- _this.forceUpdate();
114
- });
115
- _defineProperty(_assertThisInitialized(_this), "scrollToUp", function() {
116
- var _this$tableRef, _this$tableRef$curren;
117
- (_this$tableRef = _this.tableRef) === null || _this$tableRef === void 0 ? void 0 : (_this$tableRef$curren = _this$tableRef.current) === null || _this$tableRef$curren === void 0 ? void 0 : _this$tableRef$curren.scrollIntoView({
118
- block: "nearest",
119
- inline: "nearest",
120
- behavior: "smooth"
121
- });
122
- });
123
- _defineProperty(_assertThisInitialized(_this), "hasFocusableInHeader", function() {
124
- var hasFocusable = _this.columns.some(function(column) {
125
- var columnElement = column.props.ref.current;
126
- return column.sortable || columnElement && hasFocusableIn(columnElement);
127
- });
128
- return hasFocusable;
129
- });
130
- _defineProperty(_assertThisInitialized(_this), "changeFocusCell", function(rowIndex, colIndex) {
131
- var _this$tableRef$curren2, _this$tableRef$curren3;
132
- var hasFocusable = _this.hasFocusableInHeader();
133
- var maxCol = _this.columns.length - 1;
134
- var maxRow = _this.totalRows;
135
- var currentRow = (_this$tableRef$curren2 = _this.tableRef.current) === null || _this$tableRef$curren2 === void 0 ? void 0 : _this$tableRef$curren2.querySelector('[aria-rowindex="'.concat(_this.focusedCell[0] + 1, '"]'));
136
- var headerRow = (_this$tableRef$curren3 = _this.tableRef.current) === null || _this$tableRef$curren3 === void 0 ? void 0 : _this$tableRef$curren3.querySelector('[aria-rowindex="1"]');
137
- var headerCells = headerRow === null || headerRow === void 0 ? void 0 : headerRow.querySelectorAll("[role=columnheader]");
138
- var currentCell = currentRow === null || currentRow === void 0 ? void 0 : currentRow.querySelectorAll("[role=gridcell]").item(_this.focusedCell[1]);
139
- var currentHeaderCell = headerCells === null || headerCells === void 0 ? void 0 : headerCells.item(_this.focusedCell[1]);
140
- var changed = true;
141
- var newRow = _this.focusedCell[0] + rowIndex;
142
- var newCol = _this.focusedCell[1] + colIndex;
143
- if ((hasFocusable && newRow < 0 || !hasFocusable && newRow < 1 || newRow > maxRow) && newRow !== _this.focusedCell[0]) {
144
- changed = false;
145
- }
146
- if ((newCol < 0 || newCol > maxCol) && newCol !== _this.focusedCell[1]) {
147
- changed = false;
148
- }
149
- if (!changed) return;
150
- _this.focusedCell = [newRow, newCol];
151
- var row = _this.getRow(newRow);
152
- var cell = row === null || row === void 0 ? void 0 : row.querySelectorAll("[role=gridcell], [role=columnheader]").item(newCol);
153
- if (cell instanceof HTMLElement && currentCell !== cell) {
154
- currentCell === null || currentCell === void 0 ? void 0 : currentCell.setAttribute("inert", "");
155
- if (currentCell !== currentHeaderCell) {
156
- currentCell === null || currentCell === void 0 ? void 0 : currentCell.removeAttribute("aria-describedby");
157
- }
158
- var headerCell = headerCells === null || headerCells === void 0 ? void 0 : headerCells.item(newCol);
159
- var describedBy = headerCell === null || headerCell === void 0 ? void 0 : headerCell.getAttribute("aria-describedby");
160
- cell.removeAttribute("inert");
161
- if (headerCell !== cell && describedBy) {
162
- cell.setAttribute("aria-describedby", describedBy);
163
- }
164
- cell === null || cell === void 0 ? void 0 : cell.focus();
165
- if (newRow !== 0) {
166
- currentHeaderCell === null || currentHeaderCell === void 0 ? void 0 : currentHeaderCell.setAttribute("inert", "");
167
- var _headerCell = headerCells === null || headerCells === void 0 ? void 0 : headerCells.item(newCol);
168
- _headerCell === null || _headerCell === void 0 ? void 0 : _headerCell.removeAttribute("inert");
169
- }
170
- } else if (currentCell === cell) {
171
- _this.changeFocusCell(rowIndex, colIndex);
172
- }
173
- });
174
- _defineProperty(_assertThisInitialized(_this), "handleKeyDown", function(e) {
175
- switch (e.key) {
176
- case "Tab": {
177
- _this.setInert(true);
178
- break;
179
- }
180
- case "ArrowLeft": {
181
- e.preventDefault();
182
- _this.changeFocusCell(0, -1);
183
- break;
184
- }
185
- case "ArrowRight": {
186
- e.preventDefault();
187
- _this.changeFocusCell(0, 1);
188
- break;
189
- }
190
- case "ArrowUp": {
191
- e.preventDefault();
192
- _this.changeFocusCell(-1, 0);
193
- break;
194
- }
195
- case "ArrowDown": {
196
- e.preventDefault();
197
- _this.changeFocusCell(1, 0);
198
- break;
199
- }
200
- }
201
- });
202
- _defineProperty(_assertThisInitialized(_this), "initFocusableCell", function() {
203
- var hasFocusable = _this.hasFocusableInHeader();
204
- if (hasFocusable) {
205
- _this.focusedCell = [0, 0];
206
- } else {
207
- _this.focusedCell = [1, 0];
208
- }
209
- });
210
- _defineProperty(_assertThisInitialized(_this), "getRow", function(index) {
211
- var _this$tableRef$curren4, _this$tableRef$curren5;
212
- return index === 0 ? (_this$tableRef$curren4 = _this.tableRef.current) === null || _this$tableRef$curren4 === void 0 ? void 0 : _this$tableRef$curren4.querySelector("[role=row]") : (_this$tableRef$curren5 = _this.tableRef.current) === null || _this$tableRef$curren5 === void 0 ? void 0 : _this$tableRef$curren5.querySelector('[aria-rowindex="'.concat(index + 1, '"]'));
213
- });
214
- _defineProperty(_assertThisInitialized(_this), "handleFocus", function(e) {
215
- if ((!e.relatedTarget || !isFocusInside(e.currentTarget, e.relatedTarget)) && lastInteraction.isKeyboard()) {
216
- var _row2;
217
- if (_this.focusedCell[0] === -1 && _this.focusedCell[1] === -1) {
218
- _this.initFocusableCell();
219
- }
220
- _this.setInert(true);
221
- var _row = _this.getRow(_this.focusedCell[0]);
222
- if (!_row) {
223
- _this.initFocusableCell();
224
- _row = _this.getRow(_this.focusedCell[0]);
225
- }
226
- var cell = (_row2 = _row) === null || _row2 === void 0 ? void 0 : _row2.querySelectorAll("[role=gridcell], [role=columnheader]").item(_this.focusedCell[1]);
227
- cell === null || cell === void 0 ? void 0 : cell.removeAttribute("inert");
228
- cell instanceof HTMLElement && cell.focus();
229
- e.currentTarget.setAttribute("tabIndex", "-1");
230
- }
231
- });
232
- _defineProperty(_assertThisInitialized(_this), "handleBlur", function(e) {
233
- var relatedTarget = e.relatedTarget;
234
- var tableElement = _this.tableRef.current;
235
- if (tableElement && (!relatedTarget || !isFocusInside(tableElement, relatedTarget) || !lastInteraction.isKeyboard())) {
236
- _this.setInert(false);
237
- tableElement.setAttribute("tabIndex", "0");
238
- }
239
- });
240
- _defineProperty(_assertThisInitialized(_this), "handleMouseMove", function() {
241
- _this.setInert(false);
242
- });
243
- var createRef = syncScroll();
244
- _this.scrollBodyRef = createRef("body");
245
- _this.scrollHeadRef = createRef("head");
246
- return _this;
247
- }
248
- _createClass(RootDefinitionTable2, [{
249
- key: "setVarStyle",
250
- value: function setVarStyle(columns) {
251
- var _this2 = this;
252
- var animations = columns.flatMap(function(column) {
253
- var _column$props$ref$cur, _column$props$ref$cur2;
254
- return (_column$props$ref$cur = column.props.ref.current) === null || _column$props$ref$cur === void 0 ? void 0 : (_column$props$ref$cur2 = _column$props$ref$cur.getAnimations) === null || _column$props$ref$cur2 === void 0 ? void 0 : _column$props$ref$cur2.call(_column$props$ref$cur);
255
- }).filter(function(a) {
256
- return a !== void 0;
257
- });
258
- var animationPromise = Promise.resolve();
259
- if (animations.length > 0) {
260
- animationPromise = Promise.all(animations.map(function(animation) {
261
- return animation.finished;
262
- }));
263
- }
264
- animationPromise.then(function() {
265
- var _iterator = _createForOfIteratorHelper(columns), _step;
266
- try {
267
- for (_iterator.s(); !(_step = _iterator.n()).done; ) {
268
- var column = _step.value;
269
- if (column.setVar) {
270
- var _this2$tableRef$curre;
271
- (_this2$tableRef$curre = _this2.tableRef.current) === null || _this2$tableRef$curre === void 0 ? void 0 : _this2$tableRef$curre.style.setProperty(column.varWidth, "".concat(column.width, "px"));
272
- }
273
- }
274
- } catch (err) {
275
- _iterator.e(err);
276
- } finally {
277
- _iterator.f();
278
- }
279
- })["catch"](function(err) {
280
- console.error(err);
281
- });
282
- }
283
- }, {
284
- key: "childrenToColumns",
285
- value: function childrenToColumns(children) {
286
- var _this3 = this;
287
- var options = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {
288
- fixed: void 0
289
- };
290
- var sort = this.asProps.sort;
291
- var columnsChildren = [];
292
- React.Children.forEach(children, function(child) {
293
- var _column$props;
294
- if (!/* @__PURE__ */ React.isValidElement(child)) return;
295
- if (child.type !== DefinitionTable.Column) return;
296
- var _ref3 = child.props, children2 = _ref3.children, name = _ref3.name, _ref3$fixed = _ref3.fixed, fixed = _ref3$fixed === void 0 ? options.fixed : _ref3$fixed, resizable = _ref3.resizable, sortable = _ref3.sortable, flex = _ref3.flex, vBorders = _ref3.vBorders, active = _ref3.active, props = _objectWithoutProperties(_ref3, _excluded);
297
- var lastColumnChildren = columnsChildren[columnsChildren.length - 1];
298
- var isGroup = !name;
299
- var columns;
300
- if (isGroup) {
301
- columns = _this3.childrenToColumns(children2, {
302
- fixed
303
- });
304
- active = typeof active === "boolean" ? active : columns.some(function(c) {
305
- return c.active;
306
- });
307
- if (vBorders) {
308
- setBorderGroupColumns(columns);
309
- }
310
- name = flattenColumns(columns).map(function(_ref4) {
311
- var name2 = _ref4.name;
312
- return name2;
313
- }).join("/");
314
- if (!columns.length) return;
315
- children2 = React.Children.toArray(children2).filter(function(child2) {
316
- return !(/* @__PURE__ */ React.isValidElement(child2) && child2.type === DefinitionTable.Column);
317
- });
318
- }
319
- var column = _this3.columns.find(function(column2) {
320
- return column2.name === name;
321
- });
322
- var columnChildren = {
323
- get width() {
324
- var _this$props$ref$curre;
325
- return ((_this$props$ref$curre = this.props.ref.current) === null || _this$props$ref$curre === void 0 ? void 0 : _this$props$ref$curre.getBoundingClientRect().width) || 0;
326
- },
327
- name,
328
- varWidth: createCssVarForWidth(name),
329
- setVar: flex !== "inherit",
330
- fixed,
331
- resizable,
332
- active: typeof active === "boolean" ? active : sort[0] === name,
333
- sortable,
334
- borderLeft: (lastColumnChildren === null || lastColumnChildren === void 0 ? void 0 : lastColumnChildren.borderRight) === true ? false : vBorders,
335
- borderRight: vBorders,
336
- sortDirection: sort[0] === name ? sort[1] : (column === null || column === void 0 ? void 0 : column.sortDirection) || (typeof sortable === "string" ? sortable : defaultSortDirection),
337
- props: _objectSpread(_objectSpread({
338
- name,
339
- flex: flex === "inherit" ? void 0 : flex
340
- }, props), {}, {
341
- // @ts-ignore
342
- forwardRef: child.ref,
343
- children: children2,
344
- ref: (column === null || column === void 0 ? void 0 : (_column$props = column.props) === null || _column$props === void 0 ? void 0 : _column$props.ref) || /* @__PURE__ */ React.createRef()
345
- }),
346
- parentColumns: []
347
- };
348
- if (columns) {
349
- columnChildren.columns = columns;
350
- columns.forEach(function(column2) {
351
- return column2.parentColumns.unshift(columnChildren);
352
- });
353
- }
354
- columnsChildren.push(columnChildren);
355
- });
356
- return columnsChildren;
357
- }
358
- }, {
359
- key: "getHeadProps",
360
- value: function getHeadProps(props) {
361
- var _this$asProps = this.asProps, use = _this$asProps.use, uid = _this$asProps.uid, getI18nText = _this$asProps.getI18nText;
362
- var columnsChildren = this.childrenToColumns(props.children);
363
- this.columns = flattenColumns(columnsChildren);
364
- return {
365
- $onSortClick: callAllEventHandlers(this.handlerSortClick, this.scrollToUp),
366
- columnsChildren,
367
- use,
368
- onResize: this.handlerResize,
369
- $scrollRef: this.scrollHeadRef,
370
- uid,
371
- getI18nText
372
- };
373
- }
374
- }, {
375
- key: "getBodyProps",
376
- value: function getBodyProps(props) {
377
- var _this$asProps2 = this.asProps, data = _this$asProps2.data, use = _this$asProps2.use, uniqueKey = _this$asProps2.uniqueKey, uid = _this$asProps2.uid;
378
- var cellPropsLayers = {};
379
- var rowPropsLayers = [];
380
- React.Children.forEach(props.children, function(child) {
381
- if (/* @__PURE__ */ React.isValidElement(child)) {
382
- var _ref5 = child.props, name = _ref5.name, children = _ref5.children, other = _objectWithoutProperties(_ref5, _excluded2);
383
- if (child.type === DefinitionTable.Cell && name) {
384
- name.split("/").forEach(function(name2) {
385
- cellPropsLayers[name2] = cellPropsLayers[name2] || [];
386
- cellPropsLayers[name2].push(_objectSpread(_objectSpread({}, other), {}, {
387
- childrenPropsGetter: children
388
- }));
389
- });
390
- }
391
- if (child.type === DefinitionTable.Row) {
392
- rowPropsLayers.push(_objectSpread(_objectSpread({}, other), {}, {
393
- childrenPropsGetter: children
394
- }));
395
- }
396
- }
397
- });
398
- return {
399
- columns: this.columns,
400
- rows: this.dataToRows(data, cellPropsLayers),
401
- uniqueKey,
402
- use,
403
- rowPropsLayers,
404
- $scrollRef: this.scrollBodyRef,
405
- uid
406
- };
407
- }
408
- }, {
409
- key: "dataToRows",
410
- value: function dataToRows(data, cellPropsLayers) {
411
- var _this4 = this;
412
- var parseData = function parseData2(data2, exclude) {
413
- return data2.map(function(row) {
414
- var groupByName = {};
415
- var columnsWithoutRowGroup = {};
416
- for (var rowKey in row) {
417
- var columnNames = rowKey.split("/");
418
- if (columnNames.length >= 2) {
419
- var _iterator2 = _createForOfIteratorHelper(columnNames), _step2;
420
- try {
421
- for (_iterator2.s(); !(_step2 = _iterator2.n()).done; ) {
422
- var column = _step2.value;
423
- groupByName[column] = {
424
- groupedColumns: columnNames,
425
- groupData: row[rowKey]
426
- };
427
- columnsWithoutRowGroup[column] = true;
428
- }
429
- } catch (err) {
430
- _iterator2.e(err);
431
- } finally {
432
- _iterator2.f();
433
- }
434
- } else {
435
- columnsWithoutRowGroup[rowKey] = true;
436
- }
437
- }
438
- var rowsGroup = row[ROW_GROUP] || [];
439
- var rowsGroupedNames = Object.fromEntries(rowsGroup.flatMap(function(subRow) {
440
- return Object.keys(subRow);
441
- }).flatMap(function(key) {
442
- return key.split("/");
443
- }).map(function(key) {
444
- return [key, true];
445
- }));
446
- var isGroup = false;
447
- var cells = _this4.columns.map(function(column2) {
448
- if (groupByName[column2.name]) {
449
- var _groupByName$column$n = groupByName[column2.name], groupedColumns = _groupByName$column$n.groupedColumns, groupData = _groupByName$column$n.groupData;
450
- if (groupedColumns[0] === column2.name) {
451
- return {
452
- name: groupedColumns.join("/"),
453
- cssVar: groupedColumns.map(createCssVarForWidth),
454
- fixed: column2.fixed,
455
- data: groupData,
456
- cellPropsLayers: cellPropsLayers[column2.name] || []
457
- };
458
- }
459
- } else if (column2.name in row) {
460
- return {
461
- name: column2.name,
462
- cssVar: column2.varWidth,
463
- fixed: column2.fixed,
464
- data: row[column2.name],
465
- cellPropsLayers: cellPropsLayers[column2.name] || []
466
- };
467
- } else if (!isGroup && rowsGroupedNames[column2.name]) {
468
- isGroup = true;
469
- return parseData2(rowsGroup, _objectSpread(_objectSpread({}, exclude), columnsWithoutRowGroup));
470
- } else if (!exclude[column2.name] && !rowsGroupedNames[column2.name]) {
471
- return {
472
- name: column2.name,
473
- cssVar: column2.varWidth,
474
- fixed: column2.fixed,
475
- data: null,
476
- cellPropsLayers: cellPropsLayers[column2.name] || []
477
- };
478
- }
479
- }).filter(function(column2) {
480
- return column2;
481
- }).map(function(column2) {
482
- return column2;
483
- });
484
- cells.flatRowData = row;
485
- return cells;
486
- });
487
- };
488
- return parseData(data, {});
489
- }
490
- }, {
491
- key: "componentDidMount",
492
- value: function componentDidMount() {
493
- this.setVarStyle(this.columns);
494
- }
495
- }, {
496
- key: "componentDidUpdate",
497
- value: function componentDidUpdate(prevProps) {
498
- this.setVarStyle(this.columns);
499
- if (prevProps.data !== this.props.data) {
500
- var focusedRow = this.focusedCell[0];
501
- var isFocusInHeader = focusedRow === 0 && this.hasFocusableInHeader();
502
- if (this.tableRef.current && !isFocusInside(this.tableRef.current) && !isFocusInHeader) {
503
- this.focusedCell = [-1, -1];
504
- }
505
- }
506
- }
507
- }, {
508
- key: "totalRows",
509
- get: function get() {
510
- var _this$asProps3 = this.asProps, data = _this$asProps3.data, totalRows = _this$asProps3.totalRows;
511
- return totalRows !== null && totalRows !== void 0 ? totalRows : (data !== null && data !== void 0 ? data : []).length;
512
- }
513
- }, {
514
- key: "setInert",
515
- value: function setInert(value) {
516
- var _this$tableRef$curren6;
517
- var cells = (_this$tableRef$curren6 = this.tableRef.current) === null || _this$tableRef$curren6 === void 0 ? void 0 : _this$tableRef$curren6.querySelectorAll("[role=gridcell], [role=columnheader]");
518
- cells === null || cells === void 0 ? void 0 : cells.forEach(function(cell) {
519
- if (value === true) {
520
- cell.setAttribute("inert", "");
521
- } else {
522
- cell.removeAttribute("inert");
523
- }
524
- });
525
- }
526
- }, {
527
- key: "render",
528
- value: function render() {
529
- var _ref = this.asProps, _ref2;
530
- var SDataTable = Box;
531
- var _this$asProps4 = this.asProps, Children = _this$asProps4.Children, styles = _this$asProps4.styles;
532
- return _ref2 = sstyled(styles), /* @__PURE__ */ React.createElement(SDataTable, _ref2.cn("SDataTable", _objectSpread({}, assignProps({
533
- "__excludeProps": ["data"],
534
- "ref": this.tableRef,
535
- "role": "grid",
536
- "onKeyDown": this.handleKeyDown,
537
- "onMouseMove": this.handleMouseMove,
538
- "tabIndex": 0,
539
- "onFocus": this.handleFocus,
540
- "onBlur": this.handleBlur,
541
- "aria-rowcount": this.totalRows,
542
- "aria-colcount": this.columns.length
543
- }, _ref))), /* @__PURE__ */ React.createElement(Children, _ref2.cn("Children", {})));
544
- }
545
- }]);
546
- return RootDefinitionTable2;
547
- }(Component);
548
- _defineProperty(RootDefinitionTable, "displayName", "DefinitionTable");
549
- _defineProperty(RootDefinitionTable, "style", style);
550
- _defineProperty(RootDefinitionTable, "enhance", [uniqueIDEnhancement(), i18nEnhance(localizedMessages)]);
551
- _defineProperty(RootDefinitionTable, "defaultProps", {
552
- use: "primary",
553
- uniqueKey: "id",
554
- sort: [],
555
- data: []
556
- });
557
- function ComponentDefinition() {
558
- return null;
559
- }
560
- var DefinitionTable = createComponent(RootDefinitionTable, {
561
- Head,
562
- Body,
563
- Column: ComponentDefinition,
564
- Cell: ComponentDefinition,
565
- Row: ComponentDefinition
566
- }, {});
567
- var wrapDataTable = function wrapDataTable2(wrapper) {
568
- return wrapper;
569
- };
570
- var wrapDataTableRow = function wrapDataTableRow2(wrapper) {
571
- return wrapper;
572
- };
573
- var wrapDataTableCell = function wrapDataTableCell2(wrapper) {
574
- return wrapper;
575
- };
576
- export {
577
- ROW_GROUP,
578
- DefinitionTable as default,
579
- wrapDataTable,
580
- wrapDataTableCell,
581
- wrapDataTableRow
582
- };