@epilot/volt-ui-experimental-griffel 0.1.2 → 0.2.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 (952) hide show
  1. package/README.md +14 -9
  2. package/dist/components/accordion/accordion.js +29 -27
  3. package/dist/components/accordion/accordion.js.map +1 -1
  4. package/dist/components/alert-dialog/alert-dialog.js +42 -40
  5. package/dist/components/alert-dialog/alert-dialog.js.map +1 -1
  6. package/dist/components/avatar/avatar-group.js +36 -35
  7. package/dist/components/avatar/avatar-group.js.map +1 -1
  8. package/dist/components/avatar/avatar.js +42 -39
  9. package/dist/components/avatar/avatar.js.map +1 -1
  10. package/dist/components/badge/badge.js +17 -17
  11. package/dist/components/badge/badge.js.map +1 -1
  12. package/dist/components/breadcrumb/breadcrumb.js +33 -32
  13. package/dist/components/breadcrumb/breadcrumb.js.map +1 -1
  14. package/dist/components/button/button.js +43 -39
  15. package/dist/components/button/button.js.map +1 -1
  16. package/dist/components/button-group/button-group.js +20 -19
  17. package/dist/components/button-group/button-group.js.map +1 -1
  18. package/dist/components/callout/callout.js +64 -61
  19. package/dist/components/callout/callout.js.map +1 -1
  20. package/dist/components/card/card.js +47 -46
  21. package/dist/components/card/card.js.map +1 -1
  22. package/dist/components/checkbox/checkbox.js +15 -15
  23. package/dist/components/checkbox/checkbox.js.map +1 -1
  24. package/dist/components/collapsible-sidebar/collapsible-sidebar.js +7 -7
  25. package/dist/components/collapsible-sidebar/collapsible-sidebar.js.map +1 -1
  26. package/dist/components/command/command.js +98 -93
  27. package/dist/components/command/command.js.map +1 -1
  28. package/dist/components/data-table/data-table-body.js +84 -0
  29. package/dist/components/data-table/data-table-body.js.map +1 -0
  30. package/dist/components/data-table/data-table-column-header.js +128 -0
  31. package/dist/components/data-table/data-table-column-header.js.map +1 -0
  32. package/dist/components/data-table/data-table-column-visibility.js +79 -0
  33. package/dist/components/data-table/data-table-column-visibility.js.map +1 -0
  34. package/dist/components/data-table/data-table-content.js +100 -0
  35. package/dist/components/data-table/data-table-content.js.map +1 -0
  36. package/dist/components/data-table/data-table-context.js +10 -0
  37. package/dist/components/data-table/data-table-context.js.map +1 -0
  38. package/dist/components/data-table/data-table-error.js +84 -0
  39. package/dist/components/data-table/data-table-error.js.map +1 -0
  40. package/dist/components/data-table/data-table-header.js +100 -0
  41. package/dist/components/data-table/data-table-header.js.map +1 -0
  42. package/dist/components/data-table/data-table-loading.js +39 -0
  43. package/dist/components/data-table/data-table-loading.js.map +1 -0
  44. package/dist/components/data-table/data-table-pagination.js +30 -0
  45. package/dist/components/data-table/data-table-pagination.js.map +1 -0
  46. package/dist/components/data-table/data-table-pinning-utils.js +25 -0
  47. package/dist/components/data-table/data-table-pinning-utils.js.map +1 -0
  48. package/dist/components/data-table/data-table-row.js +163 -0
  49. package/dist/components/data-table/data-table-row.js.map +1 -0
  50. package/dist/components/data-table/data-table-toolbar.js +35 -0
  51. package/dist/components/data-table/data-table-toolbar.js.map +1 -0
  52. package/dist/components/data-table/data-table.js +271 -0
  53. package/dist/components/data-table/data-table.js.map +1 -0
  54. package/dist/components/data-table/get-selected-row-data.js +8 -0
  55. package/dist/components/data-table/get-selected-row-data.js.map +1 -0
  56. package/dist/components/data-table/hooks/use-data-table-content.js +9 -0
  57. package/dist/components/data-table/hooks/use-data-table-content.js.map +1 -0
  58. package/dist/components/data-table/hooks/use-data-table.js +12 -0
  59. package/dist/components/data-table/hooks/use-data-table.js.map +1 -0
  60. package/dist/components/date-range-picker/date-range-picker.js +97 -95
  61. package/dist/components/date-range-picker/date-range-picker.js.map +1 -1
  62. package/dist/components/date-range-picker/range-calendar.js +20 -20
  63. package/dist/components/date-range-picker/range-calendar.js.map +1 -1
  64. package/dist/components/date-time-picker/calendar.js +159 -153
  65. package/dist/components/date-time-picker/calendar.js.map +1 -1
  66. package/dist/components/date-time-picker/date-time-picker-input.js +25 -25
  67. package/dist/components/date-time-picker/date-time-picker-input.js.map +1 -1
  68. package/dist/components/date-time-picker/date-time-picker-panel.js +22 -22
  69. package/dist/components/date-time-picker/date-time-picker-panel.js.map +1 -1
  70. package/dist/components/date-time-picker/date-time-picker-utils.js +22 -22
  71. package/dist/components/date-time-picker/date-time-picker.js +32 -32
  72. package/dist/components/date-time-picker/date-time-picker.js.map +1 -1
  73. package/dist/components/date-time-picker/time-picker.js +35 -33
  74. package/dist/components/date-time-picker/time-picker.js.map +1 -1
  75. package/dist/components/dialog/dialog.js +48 -46
  76. package/dist/components/dialog/dialog.js.map +1 -1
  77. package/dist/components/drawer/drawer.js +54 -52
  78. package/dist/components/drawer/drawer.js.map +1 -1
  79. package/dist/components/dropdown-menu/dropdown-menu.js +96 -93
  80. package/dist/components/dropdown-menu/dropdown-menu.js.map +1 -1
  81. package/dist/components/field/field-combobox.js +125 -121
  82. package/dist/components/field/field-combobox.js.map +1 -1
  83. package/dist/components/field/field.js +86 -80
  84. package/dist/components/field/field.js.map +1 -1
  85. package/dist/components/label/label.js +49 -39
  86. package/dist/components/label/label.js.map +1 -1
  87. package/dist/components/list/list.js +96 -92
  88. package/dist/components/list/list.js.map +1 -1
  89. package/dist/components/option-card/option-card.js +44 -42
  90. package/dist/components/option-card/option-card.js.map +1 -1
  91. package/dist/components/pill/pill.js +36 -35
  92. package/dist/components/pill/pill.js.map +1 -1
  93. package/dist/components/popover/popover.js +32 -32
  94. package/dist/components/popover/popover.js.map +1 -1
  95. package/dist/components/radio/radio.js +4 -4
  96. package/dist/components/radio/radio.js.map +1 -1
  97. package/dist/components/scroll-overflow/scroll-overflow.js +10 -10
  98. package/dist/components/scroll-overflow/scroll-overflow.js.map +1 -1
  99. package/dist/components/segmented-control/segmented-control.js +21 -20
  100. package/dist/components/segmented-control/segmented-control.js.map +1 -1
  101. package/dist/components/select/select.js +75 -72
  102. package/dist/components/select/select.js.map +1 -1
  103. package/dist/components/separator/separator.js +13 -13
  104. package/dist/components/separator/separator.js.map +1 -1
  105. package/dist/components/skeleton/skeleton.js +3 -3
  106. package/dist/components/skeleton/skeleton.js.map +1 -1
  107. package/dist/components/spinner/spinner.js +9 -9
  108. package/dist/components/spinner/spinner.js.map +1 -1
  109. package/dist/components/switch/switch.js +16 -16
  110. package/dist/components/switch/switch.js.map +1 -1
  111. package/dist/components/table/table-pagination.js +437 -0
  112. package/dist/components/table/table-pagination.js.map +1 -0
  113. package/dist/components/table/table.js +57 -55
  114. package/dist/components/table/table.js.map +1 -1
  115. package/dist/components/tabs/tabs.js +27 -26
  116. package/dist/components/tabs/tabs.js.map +1 -1
  117. package/dist/components/text/text.js +53 -43
  118. package/dist/components/text/text.js.map +1 -1
  119. package/dist/components/toast/toast.js +64 -60
  120. package/dist/components/toast/toast.js.map +1 -1
  121. package/dist/components/toggle/toggle-group.js +8 -8
  122. package/dist/components/toggle/toggle-group.js.map +1 -1
  123. package/dist/components/toggle/toggle.js +23 -23
  124. package/dist/components/toggle/toggle.js.map +1 -1
  125. package/dist/components/tooltip/tooltip.js +17 -17
  126. package/dist/components/tooltip/tooltip.js.map +1 -1
  127. package/dist/index.d.ts +8766 -47
  128. package/dist/index.js +285 -247
  129. package/dist/index.js.map +1 -1
  130. package/dist/lib/clear-button.js +9 -9
  131. package/dist/lib/clear-button.js.map +1 -1
  132. package/dist/lib/pagination.js +46 -0
  133. package/dist/lib/pagination.js.map +1 -0
  134. package/dist/{tokens → packages/volt-runtime/dist}/class-salt.generated.js +2 -2
  135. package/dist/packages/volt-runtime/dist/class-salt.generated.js.map +1 -0
  136. package/dist/packages/volt-runtime/dist/renderer/contract.js +8 -0
  137. package/dist/packages/volt-runtime/dist/renderer/contract.js.map +1 -0
  138. package/dist/packages/volt-runtime/dist/renderer/index.js +26 -0
  139. package/dist/packages/volt-runtime/dist/renderer/index.js.map +1 -0
  140. package/dist/{renderer → packages/volt-runtime/dist/renderer}/insertion-point.js +13 -13
  141. package/dist/packages/volt-runtime/dist/renderer/insertion-point.js.map +1 -0
  142. package/dist/packages/volt-runtime/dist/sheet.js +16 -0
  143. package/dist/packages/volt-runtime/dist/sheet.js.map +1 -0
  144. package/dist/packages/volt-runtime/dist/styles/make-styles.js +22 -0
  145. package/dist/packages/volt-runtime/dist/styles/make-styles.js.map +1 -0
  146. package/dist/packages/volt-runtime/dist/vendor/@emotion/hash/dist/emotion-hash.esm.js +23 -0
  147. package/dist/packages/volt-runtime/dist/vendor/@emotion/hash/dist/emotion-hash.esm.js.map +1 -0
  148. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/constants.js +34 -0
  149. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/constants.js.map +1 -0
  150. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/devtools/getAtomicDebugSequenceTree.js +27 -0
  151. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/devtools/getAtomicDebugSequenceTree.js.map +1 -0
  152. package/dist/{node_modules → packages/volt-runtime/dist/vendor}/@griffel/core/src/devtools/getResetDebugSequence.js +5 -5
  153. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/devtools/getResetDebugSequence.js.map +1 -0
  154. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/devtools/getSourceURLfromError.js +18 -0
  155. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/devtools/getSourceURLfromError.js.map +1 -0
  156. package/dist/{node_modules → packages/volt-runtime/dist/vendor}/@griffel/core/src/devtools/injectDevTools.js +11 -11
  157. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/devtools/injectDevTools.js.map +1 -0
  158. package/dist/{node_modules → packages/volt-runtime/dist/vendor}/@griffel/core/src/devtools/isDevToolsEnabled.js +1 -1
  159. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/devtools/isDevToolsEnabled.js.map +1 -0
  160. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/devtools/mergeDebugSequence.js +15 -0
  161. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/devtools/mergeDebugSequence.js.map +1 -0
  162. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/devtools/react-render-tracker/stackTrace.js +40 -0
  163. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/devtools/react-render-tracker/stackTrace.js.map +1 -0
  164. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/devtools/store.js +22 -0
  165. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/devtools/store.js.map +1 -0
  166. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/devtools/utils.js +22 -0
  167. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/devtools/utils.js.map +1 -0
  168. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/index.js +52 -0
  169. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/index.js.map +1 -0
  170. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/insertionFactory.js +10 -0
  171. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/insertionFactory.js.map +1 -0
  172. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/makeResetStyles.js +26 -0
  173. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/makeResetStyles.js.map +1 -0
  174. package/dist/{node_modules → packages/volt-runtime/dist/vendor}/@griffel/core/src/makeStyles.js +15 -15
  175. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/makeStyles.js.map +1 -0
  176. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/mergeClasses.js +49 -0
  177. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/mergeClasses.js.map +1 -0
  178. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/renderer/createDOMRenderer.js +43 -0
  179. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/renderer/createDOMRenderer.js.map +1 -0
  180. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/renderer/createIsomorphicStyleSheet.js +23 -0
  181. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/renderer/createIsomorphicStyleSheet.js.map +1 -0
  182. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/renderer/getStyleSheetForBucket.js +81 -0
  183. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/renderer/getStyleSheetForBucket.js.map +1 -0
  184. package/dist/{node_modules → packages/volt-runtime/dist/vendor}/@griffel/core/src/renderer/safeInsertRule.js +6 -6
  185. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/renderer/safeInsertRule.js.map +1 -0
  186. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/resolveStyleRulesForSlots.js +15 -0
  187. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/resolveStyleRulesForSlots.js.map +1 -0
  188. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/compileAtomicCSSRule.js +28 -0
  189. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/compileAtomicCSSRule.js.map +1 -0
  190. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/compileCSSRules.js +23 -0
  191. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/compileCSSRules.js.map +1 -0
  192. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/compileKeyframeCSS.js +27 -0
  193. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/compileKeyframeCSS.js.map +1 -0
  194. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/compileResetCSSRules.js +31 -0
  195. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/compileResetCSSRules.js.map +1 -0
  196. package/dist/{node_modules → packages/volt-runtime/dist/vendor}/@griffel/core/src/runtime/getStyleBucketName.js +9 -9
  197. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/getStyleBucketName.js.map +1 -0
  198. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/reduceToClassNameForSlots.js +33 -0
  199. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/reduceToClassNameForSlots.js.map +1 -0
  200. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/resolveResetStyleRules.js +95 -0
  201. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/resolveResetStyleRules.js.map +1 -0
  202. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/resolveStyleRules.js +187 -0
  203. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/resolveStyleRules.js.map +1 -0
  204. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/shorthands.js.map +1 -0
  205. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/stylis/globalPlugin.js +29 -0
  206. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/stylis/globalPlugin.js.map +1 -0
  207. package/dist/{node_modules → packages/volt-runtime/dist/vendor}/@griffel/core/src/runtime/stylis/isAtRuleElement.js +5 -5
  208. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/stylis/isAtRuleElement.js.map +1 -0
  209. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/stylis/prefixerPlugin.js +107 -0
  210. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/stylis/prefixerPlugin.js.map +1 -0
  211. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/stylis/rulesheetPlugin.js +9 -0
  212. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/stylis/rulesheetPlugin.js.map +1 -0
  213. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/stylis/scopePlugin.js +41 -0
  214. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/stylis/scopePlugin.js.map +1 -0
  215. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/stylis/sortClassesInAtRulesPlugin.js +8 -0
  216. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/stylis/sortClassesInAtRulesPlugin.js.map +1 -0
  217. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/utils/cssifyObject.js +19 -0
  218. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/utils/cssifyObject.js.map +1 -0
  219. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/utils/generateCombinedMediaQuery.js +7 -0
  220. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/utils/generateCombinedMediaQuery.js.map +1 -0
  221. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/utils/hashClassName.js +11 -0
  222. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/utils/hashClassName.js.map +1 -0
  223. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/utils/hashPropertyKey.js +16 -0
  224. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/utils/hashPropertyKey.js.map +1 -0
  225. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/utils/hashSequence.js +17 -0
  226. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/utils/hashSequence.js.map +1 -0
  227. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/utils/hyphenateProperty.js +16 -0
  228. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/utils/hyphenateProperty.js.map +1 -0
  229. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/utils/isContainerQuerySelector.js +7 -0
  230. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/utils/isContainerQuerySelector.js.map +1 -0
  231. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/utils/isLayerSelector.js +7 -0
  232. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/utils/isLayerSelector.js.map +1 -0
  233. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/utils/isMediaQuerySelector.js.map +1 -0
  234. package/dist/{node_modules → packages/volt-runtime/dist/vendor}/@griffel/core/src/runtime/utils/isNestedSelector.js +3 -3
  235. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/utils/isNestedSelector.js.map +1 -0
  236. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/utils/isObject.js +7 -0
  237. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/utils/isObject.js.map +1 -0
  238. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/utils/isResetValue.js +8 -0
  239. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/utils/isResetValue.js.map +1 -0
  240. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/utils/isScopeSelector.js.map +1 -0
  241. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/utils/isSupportQuerySelector.js.map +1 -0
  242. package/dist/{node_modules → packages/volt-runtime/dist/vendor}/@griffel/core/src/runtime/utils/normalizeCSSBucketEntry.js +6 -6
  243. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/utils/normalizeCSSBucketEntry.js.map +1 -0
  244. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/utils/normalizeNestedProperty.js +7 -0
  245. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/utils/normalizeNestedProperty.js.map +1 -0
  246. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/utils/trimSelector.js +7 -0
  247. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/utils/trimSelector.js.map +1 -0
  248. package/dist/{node_modules → packages/volt-runtime/dist/vendor}/@griffel/core/src/runtime/warnings/logError.js +2 -2
  249. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/warnings/logError.js.map +1 -0
  250. package/dist/{node_modules → packages/volt-runtime/dist/vendor}/@griffel/core/src/runtime/warnings/warnAboutUnresolvedRule.js +6 -6
  251. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/warnings/warnAboutUnresolvedRule.js.map +1 -0
  252. package/dist/{node_modules → packages/volt-runtime/dist/vendor}/@griffel/core/src/runtime/warnings/warnAboutUnsupportedProperties.js +4 -4
  253. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/warnings/warnAboutUnsupportedProperties.js.map +1 -0
  254. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/shorthands/border.js +19 -0
  255. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/shorthands/border.js.map +1 -0
  256. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/shorthands/borderBottom.js +16 -0
  257. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/shorthands/borderBottom.js.map +1 -0
  258. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/shorthands/borderColor.js.map +1 -0
  259. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/shorthands/borderLeft.js +16 -0
  260. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/shorthands/borderLeft.js.map +1 -0
  261. package/dist/{node_modules → packages/volt-runtime/dist/vendor}/@griffel/core/src/shorthands/borderRadius.js +4 -4
  262. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/shorthands/borderRadius.js.map +1 -0
  263. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/shorthands/borderRight.js +16 -0
  264. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/shorthands/borderRight.js.map +1 -0
  265. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/shorthands/borderStyle.js.map +1 -0
  266. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/shorthands/borderTop.js +16 -0
  267. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/shorthands/borderTop.js.map +1 -0
  268. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/shorthands/borderWidth.js.map +1 -0
  269. package/dist/{node_modules → packages/volt-runtime/dist/vendor}/@griffel/core/src/shorthands/flex.js +25 -25
  270. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/shorthands/flex.js.map +1 -0
  271. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/shorthands/gap.js +10 -0
  272. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/shorthands/gap.js.map +1 -0
  273. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/shorthands/generateStyles.js +14 -0
  274. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/shorthands/generateStyles.js.map +1 -0
  275. package/dist/{node_modules → packages/volt-runtime/dist/vendor}/@griffel/core/src/shorthands/gridArea.js +13 -13
  276. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/shorthands/gridArea.js.map +1 -0
  277. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/shorthands/inset.js +13 -0
  278. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/shorthands/inset.js.map +1 -0
  279. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/shorthands/margin.js +8 -0
  280. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/shorthands/margin.js.map +1 -0
  281. package/dist/{node_modules → packages/volt-runtime/dist/vendor}/@griffel/core/src/shorthands/marginBlock.js +3 -3
  282. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/shorthands/marginBlock.js.map +1 -0
  283. package/dist/{node_modules → packages/volt-runtime/dist/vendor}/@griffel/core/src/shorthands/marginInline.js +3 -3
  284. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/shorthands/marginInline.js.map +1 -0
  285. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/shorthands/outline.js +11 -0
  286. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/shorthands/outline.js.map +1 -0
  287. package/dist/{node_modules → packages/volt-runtime/dist/vendor}/@griffel/core/src/shorthands/overflow.js +3 -3
  288. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/shorthands/overflow.js.map +1 -0
  289. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/shorthands/padding.js +8 -0
  290. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/shorthands/padding.js.map +1 -0
  291. package/dist/{node_modules → packages/volt-runtime/dist/vendor}/@griffel/core/src/shorthands/paddingBlock.js +3 -3
  292. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/shorthands/paddingBlock.js.map +1 -0
  293. package/dist/{node_modules → packages/volt-runtime/dist/vendor}/@griffel/core/src/shorthands/paddingInline.js +3 -3
  294. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/shorthands/paddingInline.js.map +1 -0
  295. package/dist/{node_modules → packages/volt-runtime/dist/vendor}/@griffel/core/src/shorthands/textDecoration.js +2 -2
  296. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/shorthands/textDecoration.js.map +1 -0
  297. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/shorthands/transition.js +19 -0
  298. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/shorthands/transition.js.map +1 -0
  299. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/shorthands/utils.js.map +1 -0
  300. package/dist/packages/volt-runtime/dist/vendor/rtl-css-js/dist/esm/convert-9768a965.js +303 -0
  301. package/dist/packages/volt-runtime/dist/vendor/rtl-css-js/dist/esm/convert-9768a965.js.map +1 -0
  302. package/dist/packages/volt-runtime/dist/vendor/stylis/src/Enum.js +16 -0
  303. package/dist/packages/volt-runtime/dist/vendor/stylis/src/Enum.js.map +1 -0
  304. package/dist/packages/volt-runtime/dist/vendor/stylis/src/Middleware.js +19 -0
  305. package/dist/packages/volt-runtime/dist/vendor/stylis/src/Middleware.js.map +1 -0
  306. package/dist/packages/volt-runtime/dist/vendor/stylis/src/Parser.js +128 -0
  307. package/dist/packages/volt-runtime/dist/vendor/stylis/src/Parser.js.map +1 -0
  308. package/dist/packages/volt-runtime/dist/vendor/stylis/src/Serializer.js +29 -0
  309. package/dist/packages/volt-runtime/dist/vendor/stylis/src/Serializer.js.map +1 -0
  310. package/dist/packages/volt-runtime/dist/vendor/stylis/src/Tokenizer.js +150 -0
  311. package/dist/packages/volt-runtime/dist/vendor/stylis/src/Tokenizer.js.map +1 -0
  312. package/dist/{node_modules → packages/volt-runtime/dist/vendor}/stylis/src/Utility.js +15 -15
  313. package/dist/packages/volt-runtime/dist/vendor/stylis/src/Utility.js.map +1 -0
  314. package/dist/styles/make-styles.js +9 -12
  315. package/dist/styles/make-styles.js.map +1 -1
  316. package/dist/tokens/core.generated.js +1204 -478
  317. package/dist/tokens/core.generated.js.map +1 -1
  318. package/dist/tokens/index.d.ts +1057 -952
  319. package/dist/tokens/index.js +1018 -917
  320. package/dist/tokens/index.js.map +1 -1
  321. package/dist/tokens/install.js +1 -1
  322. package/dist/tokens/install.js.map +1 -1
  323. package/dist/tokens/palette.generated.js +1294 -1069
  324. package/dist/tokens/palette.generated.js.map +1 -1
  325. package/dist/tokens.json +497 -295
  326. package/dist/vendor/@floating-ui/core/dist/floating-ui.core.js.map +1 -0
  327. package/dist/{node_modules/@radix-ui/react-popper/node_modules/@floating-ui/react-dom/node_modules → vendor}/@floating-ui/dom/dist/floating-ui.dom.js +3 -3
  328. package/dist/vendor/@floating-ui/dom/dist/floating-ui.dom.js.map +1 -0
  329. package/dist/{node_modules/@radix-ui/react-popper/node_modules → vendor}/@floating-ui/react-dom/dist/floating-ui.react-dom.js +2 -2
  330. package/dist/vendor/@floating-ui/react-dom/dist/floating-ui.react-dom.js.map +1 -0
  331. package/dist/vendor/@floating-ui/utils/dist/floating-ui.utils.dom.js.map +1 -0
  332. package/dist/vendor/@floating-ui/utils/dist/floating-ui.utils.js.map +1 -0
  333. package/dist/{node_modules → vendor}/@radix-ui/react-alert-dialog/dist/index.js +1 -1
  334. package/dist/{node_modules → vendor}/@radix-ui/react-collection/dist/index.js +1 -1
  335. package/dist/{node_modules → vendor}/@radix-ui/react-dialog/dist/index.js +1 -1
  336. package/dist/{node_modules → vendor}/@radix-ui/react-menu/dist/index.js +1 -1
  337. package/dist/{node_modules → vendor}/@radix-ui/react-popover/dist/index.js +1 -1
  338. package/dist/{node_modules → vendor}/@radix-ui/react-popper/dist/index.js +2 -2
  339. package/dist/{node_modules → vendor}/@radix-ui/react-primitive/dist/index.js +1 -1
  340. package/dist/{node_modules → vendor}/@radix-ui/react-select/dist/index.js +1 -1
  341. package/dist/{node_modules → vendor}/@radix-ui/react-tooltip/dist/index.js +1 -1
  342. package/dist/vendor/@tanstack/react-table/build/lib/index.js +103 -0
  343. package/dist/vendor/@tanstack/react-table/build/lib/index.js.map +1 -0
  344. package/dist/vendor/@tanstack/table-core/build/lib/index.js +1896 -0
  345. package/dist/vendor/@tanstack/table-core/build/lib/index.js.map +1 -0
  346. package/package.json +11 -6
  347. package/dist/components/accordion/accordion.d.ts +0 -14
  348. package/dist/components/alert-dialog/alert-dialog.d.ts +0 -36
  349. package/dist/components/avatar/avatar-group.d.ts +0 -7
  350. package/dist/components/avatar/avatar.d.ts +0 -17
  351. package/dist/components/badge/badge.d.ts +0 -41
  352. package/dist/components/breadcrumb/breadcrumb.d.ts +0 -37
  353. package/dist/components/button/button.d.ts +0 -18
  354. package/dist/components/button-group/button-group.d.ts +0 -30
  355. package/dist/components/callout/callout.d.ts +0 -23
  356. package/dist/components/card/card.d.ts +0 -9
  357. package/dist/components/checkbox/checkbox.d.ts +0 -4
  358. package/dist/components/collapsible-sidebar/collapsible-sidebar.d.ts +0 -33
  359. package/dist/components/command/command.d.ts +0 -85
  360. package/dist/components/date-range-picker/date-range-picker-utils.d.ts +0 -2
  361. package/dist/components/date-range-picker/date-range-picker.d.ts +0 -34
  362. package/dist/components/date-range-picker/range-calendar.d.ts +0 -15
  363. package/dist/components/date-time-picker/calendar.d.ts +0 -28
  364. package/dist/components/date-time-picker/date-time-picker-context.d.ts +0 -39
  365. package/dist/components/date-time-picker/date-time-picker-input.d.ts +0 -13
  366. package/dist/components/date-time-picker/date-time-picker-panel.d.ts +0 -15
  367. package/dist/components/date-time-picker/date-time-picker-popover.d.ts +0 -6
  368. package/dist/components/date-time-picker/date-time-picker-utils.d.ts +0 -37
  369. package/dist/components/date-time-picker/date-time-picker.d.ts +0 -47
  370. package/dist/components/date-time-picker/time-picker.d.ts +0 -12
  371. package/dist/components/dialog/dialog.d.ts +0 -27
  372. package/dist/components/drawer/drawer.d.ts +0 -27
  373. package/dist/components/dropdown-menu/dropdown-menu.d.ts +0 -41
  374. package/dist/components/field/field-combobox.d.ts +0 -90
  375. package/dist/components/field/field-select.d.ts +0 -4
  376. package/dist/components/field/field.d.ts +0 -76
  377. package/dist/components/label/label.d.ts +0 -21
  378. package/dist/components/list/list.d.ts +0 -46
  379. package/dist/components/option-card/option-card.d.ts +0 -39
  380. package/dist/components/pill/pill.d.ts +0 -27
  381. package/dist/components/popover/popover.d.ts +0 -14
  382. package/dist/components/radio/radio.d.ts +0 -6
  383. package/dist/components/scroll-overflow/scroll-overflow.d.ts +0 -38
  384. package/dist/components/segmented-control/segmented-control.d.ts +0 -11
  385. package/dist/components/select/select.d.ts +0 -26
  386. package/dist/components/separator/separator.d.ts +0 -30
  387. package/dist/components/skeleton/skeleton.d.ts +0 -24
  388. package/dist/components/spinner/spinner.d.ts +0 -25
  389. package/dist/components/switch/switch.d.ts +0 -17
  390. package/dist/components/table/table.d.ts +0 -50
  391. package/dist/components/tabs/tabs.d.ts +0 -18
  392. package/dist/components/text/text.d.ts +0 -22
  393. package/dist/components/toast/toast.d.ts +0 -10
  394. package/dist/components/toggle/toggle-group.d.ts +0 -10
  395. package/dist/components/toggle/toggle.d.ts +0 -10
  396. package/dist/components/tooltip/tooltip.d.ts +0 -15
  397. package/dist/lib/clear-button.d.ts +0 -5
  398. package/dist/lib/icons.d.ts +0 -3
  399. package/dist/node_modules/@emotion/hash/dist/emotion-hash.esm.js +0 -23
  400. package/dist/node_modules/@emotion/hash/dist/emotion-hash.esm.js.map +0 -1
  401. package/dist/node_modules/@griffel/core/src/constants.js +0 -34
  402. package/dist/node_modules/@griffel/core/src/constants.js.map +0 -1
  403. package/dist/node_modules/@griffel/core/src/devtools/getAtomicDebugSequenceTree.js +0 -27
  404. package/dist/node_modules/@griffel/core/src/devtools/getAtomicDebugSequenceTree.js.map +0 -1
  405. package/dist/node_modules/@griffel/core/src/devtools/getResetDebugSequence.js.map +0 -1
  406. package/dist/node_modules/@griffel/core/src/devtools/getSourceURLfromError.js +0 -18
  407. package/dist/node_modules/@griffel/core/src/devtools/getSourceURLfromError.js.map +0 -1
  408. package/dist/node_modules/@griffel/core/src/devtools/injectDevTools.js.map +0 -1
  409. package/dist/node_modules/@griffel/core/src/devtools/isDevToolsEnabled.js.map +0 -1
  410. package/dist/node_modules/@griffel/core/src/devtools/mergeDebugSequence.js +0 -15
  411. package/dist/node_modules/@griffel/core/src/devtools/mergeDebugSequence.js.map +0 -1
  412. package/dist/node_modules/@griffel/core/src/devtools/react-render-tracker/stackTrace.js +0 -40
  413. package/dist/node_modules/@griffel/core/src/devtools/react-render-tracker/stackTrace.js.map +0 -1
  414. package/dist/node_modules/@griffel/core/src/devtools/store.js +0 -22
  415. package/dist/node_modules/@griffel/core/src/devtools/store.js.map +0 -1
  416. package/dist/node_modules/@griffel/core/src/devtools/utils.js +0 -22
  417. package/dist/node_modules/@griffel/core/src/devtools/utils.js.map +0 -1
  418. package/dist/node_modules/@griffel/core/src/index.js +0 -52
  419. package/dist/node_modules/@griffel/core/src/index.js.map +0 -1
  420. package/dist/node_modules/@griffel/core/src/insertionFactory.js +0 -10
  421. package/dist/node_modules/@griffel/core/src/insertionFactory.js.map +0 -1
  422. package/dist/node_modules/@griffel/core/src/makeResetStyles.js +0 -26
  423. package/dist/node_modules/@griffel/core/src/makeResetStyles.js.map +0 -1
  424. package/dist/node_modules/@griffel/core/src/makeStyles.js.map +0 -1
  425. package/dist/node_modules/@griffel/core/src/mergeClasses.js +0 -49
  426. package/dist/node_modules/@griffel/core/src/mergeClasses.js.map +0 -1
  427. package/dist/node_modules/@griffel/core/src/renderer/createDOMRenderer.js +0 -43
  428. package/dist/node_modules/@griffel/core/src/renderer/createDOMRenderer.js.map +0 -1
  429. package/dist/node_modules/@griffel/core/src/renderer/createIsomorphicStyleSheet.js +0 -23
  430. package/dist/node_modules/@griffel/core/src/renderer/createIsomorphicStyleSheet.js.map +0 -1
  431. package/dist/node_modules/@griffel/core/src/renderer/getStyleSheetForBucket.js +0 -81
  432. package/dist/node_modules/@griffel/core/src/renderer/getStyleSheetForBucket.js.map +0 -1
  433. package/dist/node_modules/@griffel/core/src/renderer/safeInsertRule.js.map +0 -1
  434. package/dist/node_modules/@griffel/core/src/resolveStyleRulesForSlots.js +0 -15
  435. package/dist/node_modules/@griffel/core/src/resolveStyleRulesForSlots.js.map +0 -1
  436. package/dist/node_modules/@griffel/core/src/runtime/compileAtomicCSSRule.js +0 -28
  437. package/dist/node_modules/@griffel/core/src/runtime/compileAtomicCSSRule.js.map +0 -1
  438. package/dist/node_modules/@griffel/core/src/runtime/compileCSSRules.js +0 -23
  439. package/dist/node_modules/@griffel/core/src/runtime/compileCSSRules.js.map +0 -1
  440. package/dist/node_modules/@griffel/core/src/runtime/compileKeyframeCSS.js +0 -27
  441. package/dist/node_modules/@griffel/core/src/runtime/compileKeyframeCSS.js.map +0 -1
  442. package/dist/node_modules/@griffel/core/src/runtime/compileResetCSSRules.js +0 -31
  443. package/dist/node_modules/@griffel/core/src/runtime/compileResetCSSRules.js.map +0 -1
  444. package/dist/node_modules/@griffel/core/src/runtime/getStyleBucketName.js.map +0 -1
  445. package/dist/node_modules/@griffel/core/src/runtime/reduceToClassNameForSlots.js +0 -33
  446. package/dist/node_modules/@griffel/core/src/runtime/reduceToClassNameForSlots.js.map +0 -1
  447. package/dist/node_modules/@griffel/core/src/runtime/resolveResetStyleRules.js +0 -95
  448. package/dist/node_modules/@griffel/core/src/runtime/resolveResetStyleRules.js.map +0 -1
  449. package/dist/node_modules/@griffel/core/src/runtime/resolveStyleRules.js +0 -187
  450. package/dist/node_modules/@griffel/core/src/runtime/resolveStyleRules.js.map +0 -1
  451. package/dist/node_modules/@griffel/core/src/runtime/shorthands.js.map +0 -1
  452. package/dist/node_modules/@griffel/core/src/runtime/stylis/globalPlugin.js +0 -29
  453. package/dist/node_modules/@griffel/core/src/runtime/stylis/globalPlugin.js.map +0 -1
  454. package/dist/node_modules/@griffel/core/src/runtime/stylis/isAtRuleElement.js.map +0 -1
  455. package/dist/node_modules/@griffel/core/src/runtime/stylis/prefixerPlugin.js +0 -107
  456. package/dist/node_modules/@griffel/core/src/runtime/stylis/prefixerPlugin.js.map +0 -1
  457. package/dist/node_modules/@griffel/core/src/runtime/stylis/rulesheetPlugin.js +0 -9
  458. package/dist/node_modules/@griffel/core/src/runtime/stylis/rulesheetPlugin.js.map +0 -1
  459. package/dist/node_modules/@griffel/core/src/runtime/stylis/scopePlugin.js +0 -41
  460. package/dist/node_modules/@griffel/core/src/runtime/stylis/scopePlugin.js.map +0 -1
  461. package/dist/node_modules/@griffel/core/src/runtime/stylis/sortClassesInAtRulesPlugin.js +0 -8
  462. package/dist/node_modules/@griffel/core/src/runtime/stylis/sortClassesInAtRulesPlugin.js.map +0 -1
  463. package/dist/node_modules/@griffel/core/src/runtime/utils/cssifyObject.js +0 -19
  464. package/dist/node_modules/@griffel/core/src/runtime/utils/cssifyObject.js.map +0 -1
  465. package/dist/node_modules/@griffel/core/src/runtime/utils/generateCombinedMediaQuery.js +0 -7
  466. package/dist/node_modules/@griffel/core/src/runtime/utils/generateCombinedMediaQuery.js.map +0 -1
  467. package/dist/node_modules/@griffel/core/src/runtime/utils/hashClassName.js +0 -11
  468. package/dist/node_modules/@griffel/core/src/runtime/utils/hashClassName.js.map +0 -1
  469. package/dist/node_modules/@griffel/core/src/runtime/utils/hashPropertyKey.js +0 -16
  470. package/dist/node_modules/@griffel/core/src/runtime/utils/hashPropertyKey.js.map +0 -1
  471. package/dist/node_modules/@griffel/core/src/runtime/utils/hashSequence.js +0 -17
  472. package/dist/node_modules/@griffel/core/src/runtime/utils/hashSequence.js.map +0 -1
  473. package/dist/node_modules/@griffel/core/src/runtime/utils/hyphenateProperty.js +0 -16
  474. package/dist/node_modules/@griffel/core/src/runtime/utils/hyphenateProperty.js.map +0 -1
  475. package/dist/node_modules/@griffel/core/src/runtime/utils/isContainerQuerySelector.js +0 -7
  476. package/dist/node_modules/@griffel/core/src/runtime/utils/isContainerQuerySelector.js.map +0 -1
  477. package/dist/node_modules/@griffel/core/src/runtime/utils/isLayerSelector.js +0 -7
  478. package/dist/node_modules/@griffel/core/src/runtime/utils/isLayerSelector.js.map +0 -1
  479. package/dist/node_modules/@griffel/core/src/runtime/utils/isMediaQuerySelector.js.map +0 -1
  480. package/dist/node_modules/@griffel/core/src/runtime/utils/isNestedSelector.js.map +0 -1
  481. package/dist/node_modules/@griffel/core/src/runtime/utils/isObject.js +0 -7
  482. package/dist/node_modules/@griffel/core/src/runtime/utils/isObject.js.map +0 -1
  483. package/dist/node_modules/@griffel/core/src/runtime/utils/isResetValue.js +0 -8
  484. package/dist/node_modules/@griffel/core/src/runtime/utils/isResetValue.js.map +0 -1
  485. package/dist/node_modules/@griffel/core/src/runtime/utils/isScopeSelector.js.map +0 -1
  486. package/dist/node_modules/@griffel/core/src/runtime/utils/isSupportQuerySelector.js.map +0 -1
  487. package/dist/node_modules/@griffel/core/src/runtime/utils/normalizeCSSBucketEntry.js.map +0 -1
  488. package/dist/node_modules/@griffel/core/src/runtime/utils/normalizeNestedProperty.js +0 -7
  489. package/dist/node_modules/@griffel/core/src/runtime/utils/normalizeNestedProperty.js.map +0 -1
  490. package/dist/node_modules/@griffel/core/src/runtime/utils/trimSelector.js +0 -7
  491. package/dist/node_modules/@griffel/core/src/runtime/utils/trimSelector.js.map +0 -1
  492. package/dist/node_modules/@griffel/core/src/runtime/warnings/logError.js.map +0 -1
  493. package/dist/node_modules/@griffel/core/src/runtime/warnings/warnAboutUnresolvedRule.js.map +0 -1
  494. package/dist/node_modules/@griffel/core/src/runtime/warnings/warnAboutUnsupportedProperties.js.map +0 -1
  495. package/dist/node_modules/@griffel/core/src/shorthands/border.js +0 -19
  496. package/dist/node_modules/@griffel/core/src/shorthands/border.js.map +0 -1
  497. package/dist/node_modules/@griffel/core/src/shorthands/borderBottom.js +0 -16
  498. package/dist/node_modules/@griffel/core/src/shorthands/borderBottom.js.map +0 -1
  499. package/dist/node_modules/@griffel/core/src/shorthands/borderColor.js.map +0 -1
  500. package/dist/node_modules/@griffel/core/src/shorthands/borderLeft.js +0 -16
  501. package/dist/node_modules/@griffel/core/src/shorthands/borderLeft.js.map +0 -1
  502. package/dist/node_modules/@griffel/core/src/shorthands/borderRadius.js.map +0 -1
  503. package/dist/node_modules/@griffel/core/src/shorthands/borderRight.js +0 -16
  504. package/dist/node_modules/@griffel/core/src/shorthands/borderRight.js.map +0 -1
  505. package/dist/node_modules/@griffel/core/src/shorthands/borderStyle.js.map +0 -1
  506. package/dist/node_modules/@griffel/core/src/shorthands/borderTop.js +0 -16
  507. package/dist/node_modules/@griffel/core/src/shorthands/borderTop.js.map +0 -1
  508. package/dist/node_modules/@griffel/core/src/shorthands/borderWidth.js.map +0 -1
  509. package/dist/node_modules/@griffel/core/src/shorthands/flex.js.map +0 -1
  510. package/dist/node_modules/@griffel/core/src/shorthands/gap.js +0 -10
  511. package/dist/node_modules/@griffel/core/src/shorthands/gap.js.map +0 -1
  512. package/dist/node_modules/@griffel/core/src/shorthands/generateStyles.js +0 -14
  513. package/dist/node_modules/@griffel/core/src/shorthands/generateStyles.js.map +0 -1
  514. package/dist/node_modules/@griffel/core/src/shorthands/gridArea.js.map +0 -1
  515. package/dist/node_modules/@griffel/core/src/shorthands/inset.js +0 -13
  516. package/dist/node_modules/@griffel/core/src/shorthands/inset.js.map +0 -1
  517. package/dist/node_modules/@griffel/core/src/shorthands/margin.js +0 -8
  518. package/dist/node_modules/@griffel/core/src/shorthands/margin.js.map +0 -1
  519. package/dist/node_modules/@griffel/core/src/shorthands/marginBlock.js.map +0 -1
  520. package/dist/node_modules/@griffel/core/src/shorthands/marginInline.js.map +0 -1
  521. package/dist/node_modules/@griffel/core/src/shorthands/outline.js +0 -11
  522. package/dist/node_modules/@griffel/core/src/shorthands/outline.js.map +0 -1
  523. package/dist/node_modules/@griffel/core/src/shorthands/overflow.js.map +0 -1
  524. package/dist/node_modules/@griffel/core/src/shorthands/padding.js +0 -8
  525. package/dist/node_modules/@griffel/core/src/shorthands/padding.js.map +0 -1
  526. package/dist/node_modules/@griffel/core/src/shorthands/paddingBlock.js.map +0 -1
  527. package/dist/node_modules/@griffel/core/src/shorthands/paddingInline.js.map +0 -1
  528. package/dist/node_modules/@griffel/core/src/shorthands/textDecoration.js.map +0 -1
  529. package/dist/node_modules/@griffel/core/src/shorthands/transition.js +0 -19
  530. package/dist/node_modules/@griffel/core/src/shorthands/transition.js.map +0 -1
  531. package/dist/node_modules/@griffel/core/src/shorthands/utils.js.map +0 -1
  532. package/dist/node_modules/@radix-ui/react-popper/node_modules/@floating-ui/react-dom/dist/floating-ui.react-dom.js.map +0 -1
  533. package/dist/node_modules/@radix-ui/react-popper/node_modules/@floating-ui/react-dom/node_modules/@floating-ui/dom/dist/floating-ui.dom.js.map +0 -1
  534. package/dist/node_modules/@radix-ui/react-popper/node_modules/@floating-ui/react-dom/node_modules/@floating-ui/dom/node_modules/@floating-ui/core/dist/floating-ui.core.js.map +0 -1
  535. package/dist/node_modules/@radix-ui/react-popper/node_modules/@floating-ui/react-dom/node_modules/@floating-ui/dom/node_modules/@floating-ui/utils/dist/floating-ui.utils.dom.js.map +0 -1
  536. package/dist/node_modules/@radix-ui/react-popper/node_modules/@floating-ui/react-dom/node_modules/@floating-ui/dom/node_modules/@floating-ui/utils/dist/floating-ui.utils.js.map +0 -1
  537. package/dist/node_modules/rtl-css-js/dist/esm/convert-9768a965.js +0 -303
  538. package/dist/node_modules/rtl-css-js/dist/esm/convert-9768a965.js.map +0 -1
  539. package/dist/node_modules/stylis/src/Enum.js +0 -16
  540. package/dist/node_modules/stylis/src/Enum.js.map +0 -1
  541. package/dist/node_modules/stylis/src/Middleware.js +0 -19
  542. package/dist/node_modules/stylis/src/Middleware.js.map +0 -1
  543. package/dist/node_modules/stylis/src/Parser.js +0 -128
  544. package/dist/node_modules/stylis/src/Parser.js.map +0 -1
  545. package/dist/node_modules/stylis/src/Serializer.js +0 -29
  546. package/dist/node_modules/stylis/src/Serializer.js.map +0 -1
  547. package/dist/node_modules/stylis/src/Tokenizer.js +0 -151
  548. package/dist/node_modules/stylis/src/Tokenizer.js.map +0 -1
  549. package/dist/node_modules/stylis/src/Utility.js.map +0 -1
  550. package/dist/renderer/contract.d.ts +0 -43
  551. package/dist/renderer/contract.js +0 -8
  552. package/dist/renderer/contract.js.map +0 -1
  553. package/dist/renderer/index.d.ts +0 -22
  554. package/dist/renderer/index.js +0 -59
  555. package/dist/renderer/index.js.map +0 -1
  556. package/dist/renderer/insertion-point.d.ts +0 -35
  557. package/dist/renderer/insertion-point.js.map +0 -1
  558. package/dist/renderer/rule-key.d.ts +0 -14
  559. package/dist/renderer/rule-key.js +0 -12
  560. package/dist/renderer/rule-key.js.map +0 -1
  561. package/dist/renderer/sheet-adoption.d.ts +0 -32
  562. package/dist/renderer/sheet-adoption.js +0 -30
  563. package/dist/renderer/sheet-adoption.js.map +0 -1
  564. package/dist/styles/make-styles.d.ts +0 -43
  565. package/dist/tokens/class-salt.generated.d.ts +0 -2
  566. package/dist/tokens/class-salt.generated.js.map +0 -1
  567. package/dist/tokens/core.generated.d.ts +0 -3
  568. package/dist/tokens/ensure-sheet.d.ts +0 -3
  569. package/dist/tokens/ensure-sheet.js +0 -14
  570. package/dist/tokens/ensure-sheet.js.map +0 -1
  571. package/dist/tokens/install.d.ts +0 -33
  572. package/dist/tokens/palette.generated.d.ts +0 -3
  573. /package/dist/{node_modules → packages/volt-runtime/dist/vendor}/@griffel/core/src/runtime/shorthands.js +0 -0
  574. /package/dist/{node_modules → packages/volt-runtime/dist/vendor}/@griffel/core/src/runtime/utils/isMediaQuerySelector.js +0 -0
  575. /package/dist/{node_modules → packages/volt-runtime/dist/vendor}/@griffel/core/src/runtime/utils/isScopeSelector.js +0 -0
  576. /package/dist/{node_modules → packages/volt-runtime/dist/vendor}/@griffel/core/src/runtime/utils/isSupportQuerySelector.js +0 -0
  577. /package/dist/{node_modules → packages/volt-runtime/dist/vendor}/@griffel/core/src/shorthands/borderColor.js +0 -0
  578. /package/dist/{node_modules → packages/volt-runtime/dist/vendor}/@griffel/core/src/shorthands/borderStyle.js +0 -0
  579. /package/dist/{node_modules → packages/volt-runtime/dist/vendor}/@griffel/core/src/shorthands/borderWidth.js +0 -0
  580. /package/dist/{node_modules → packages/volt-runtime/dist/vendor}/@griffel/core/src/shorthands/utils.js +0 -0
  581. /package/dist/{node_modules → vendor}/@dnd-kit/accessibility/dist/accessibility.esm.js +0 -0
  582. /package/dist/{node_modules → vendor}/@dnd-kit/accessibility/dist/accessibility.esm.js.map +0 -0
  583. /package/dist/{node_modules → vendor}/@dnd-kit/core/dist/core.esm.js +0 -0
  584. /package/dist/{node_modules → vendor}/@dnd-kit/core/dist/core.esm.js.map +0 -0
  585. /package/dist/{node_modules → vendor}/@dnd-kit/sortable/dist/sortable.esm.js +0 -0
  586. /package/dist/{node_modules → vendor}/@dnd-kit/sortable/dist/sortable.esm.js.map +0 -0
  587. /package/dist/{node_modules → vendor}/@dnd-kit/utilities/dist/utilities.esm.js +0 -0
  588. /package/dist/{node_modules → vendor}/@dnd-kit/utilities/dist/utilities.esm.js.map +0 -0
  589. /package/dist/{node_modules/@radix-ui/react-popper/node_modules/@floating-ui/react-dom/node_modules/@floating-ui/dom/node_modules → vendor}/@floating-ui/core/dist/floating-ui.core.js +0 -0
  590. /package/dist/{node_modules/@radix-ui/react-popper/node_modules/@floating-ui/react-dom/node_modules/@floating-ui/dom/node_modules → vendor}/@floating-ui/utils/dist/floating-ui.utils.dom.js +0 -0
  591. /package/dist/{node_modules/@radix-ui/react-popper/node_modules/@floating-ui/react-dom/node_modules/@floating-ui/dom/node_modules → vendor}/@floating-ui/utils/dist/floating-ui.utils.js +0 -0
  592. /package/dist/{node_modules → vendor}/@radix-ui/number/dist/index.js +0 -0
  593. /package/dist/{node_modules → vendor}/@radix-ui/number/dist/index.js.map +0 -0
  594. /package/dist/{node_modules → vendor}/@radix-ui/primitive/dist/index.js +0 -0
  595. /package/dist/{node_modules → vendor}/@radix-ui/primitive/dist/index.js.map +0 -0
  596. /package/dist/{node_modules → vendor}/@radix-ui/react-accordion/dist/index.js +0 -0
  597. /package/dist/{node_modules → vendor}/@radix-ui/react-accordion/dist/index.js.map +0 -0
  598. /package/dist/{node_modules → vendor}/@radix-ui/react-alert-dialog/dist/index.js.map +0 -0
  599. /package/dist/{node_modules/@radix-ui/react-alert-dialog/node_modules → vendor/@radix-ui/react-alert-dialog/vendor}/@radix-ui/react-slot/dist/index.js +0 -0
  600. /package/dist/{node_modules/@radix-ui/react-alert-dialog/node_modules → vendor/@radix-ui/react-alert-dialog/vendor}/@radix-ui/react-slot/dist/index.js.map +0 -0
  601. /package/dist/{node_modules → vendor}/@radix-ui/react-arrow/dist/index.js +0 -0
  602. /package/dist/{node_modules → vendor}/@radix-ui/react-arrow/dist/index.js.map +0 -0
  603. /package/dist/{node_modules → vendor}/@radix-ui/react-avatar/dist/index.js +0 -0
  604. /package/dist/{node_modules → vendor}/@radix-ui/react-avatar/dist/index.js.map +0 -0
  605. /package/dist/{node_modules → vendor}/@radix-ui/react-checkbox/dist/index.js +0 -0
  606. /package/dist/{node_modules → vendor}/@radix-ui/react-checkbox/dist/index.js.map +0 -0
  607. /package/dist/{node_modules → vendor}/@radix-ui/react-collapsible/dist/index.js +0 -0
  608. /package/dist/{node_modules → vendor}/@radix-ui/react-collapsible/dist/index.js.map +0 -0
  609. /package/dist/{node_modules → vendor}/@radix-ui/react-collection/dist/index.js.map +0 -0
  610. /package/dist/{node_modules/@radix-ui/react-collection/node_modules → vendor/@radix-ui/react-collection/vendor}/@radix-ui/react-slot/dist/index.js +0 -0
  611. /package/dist/{node_modules/@radix-ui/react-collection/node_modules → vendor/@radix-ui/react-collection/vendor}/@radix-ui/react-slot/dist/index.js.map +0 -0
  612. /package/dist/{node_modules → vendor}/@radix-ui/react-compose-refs/dist/index.js +0 -0
  613. /package/dist/{node_modules → vendor}/@radix-ui/react-compose-refs/dist/index.js.map +0 -0
  614. /package/dist/{node_modules → vendor}/@radix-ui/react-context/dist/index.js +0 -0
  615. /package/dist/{node_modules → vendor}/@radix-ui/react-context/dist/index.js.map +0 -0
  616. /package/dist/{node_modules → vendor}/@radix-ui/react-dialog/dist/index.js.map +0 -0
  617. /package/dist/{node_modules/@radix-ui/react-dialog/node_modules → vendor/@radix-ui/react-dialog/vendor}/@radix-ui/react-slot/dist/index.js +0 -0
  618. /package/dist/{node_modules/@radix-ui/react-dialog/node_modules → vendor/@radix-ui/react-dialog/vendor}/@radix-ui/react-slot/dist/index.js.map +0 -0
  619. /package/dist/{node_modules → vendor}/@radix-ui/react-direction/dist/index.js +0 -0
  620. /package/dist/{node_modules → vendor}/@radix-ui/react-direction/dist/index.js.map +0 -0
  621. /package/dist/{node_modules → vendor}/@radix-ui/react-dismissable-layer/dist/index.js +0 -0
  622. /package/dist/{node_modules → vendor}/@radix-ui/react-dismissable-layer/dist/index.js.map +0 -0
  623. /package/dist/{node_modules → vendor}/@radix-ui/react-dropdown-menu/dist/index.js +0 -0
  624. /package/dist/{node_modules → vendor}/@radix-ui/react-dropdown-menu/dist/index.js.map +0 -0
  625. /package/dist/{node_modules → vendor}/@radix-ui/react-focus-guards/dist/index.js +0 -0
  626. /package/dist/{node_modules → vendor}/@radix-ui/react-focus-guards/dist/index.js.map +0 -0
  627. /package/dist/{node_modules → vendor}/@radix-ui/react-focus-scope/dist/index.js +0 -0
  628. /package/dist/{node_modules → vendor}/@radix-ui/react-focus-scope/dist/index.js.map +0 -0
  629. /package/dist/{node_modules → vendor}/@radix-ui/react-id/dist/index.js +0 -0
  630. /package/dist/{node_modules → vendor}/@radix-ui/react-id/dist/index.js.map +0 -0
  631. /package/dist/{node_modules → vendor}/@radix-ui/react-menu/dist/index.js.map +0 -0
  632. /package/dist/{node_modules/@radix-ui/react-menu/node_modules → vendor/@radix-ui/react-menu/vendor}/@radix-ui/react-slot/dist/index.js +0 -0
  633. /package/dist/{node_modules/@radix-ui/react-menu/node_modules → vendor/@radix-ui/react-menu/vendor}/@radix-ui/react-slot/dist/index.js.map +0 -0
  634. /package/dist/{node_modules → vendor}/@radix-ui/react-popover/dist/index.js.map +0 -0
  635. /package/dist/{node_modules/@radix-ui/react-popover/node_modules → vendor/@radix-ui/react-popover/vendor}/@radix-ui/react-slot/dist/index.js +0 -0
  636. /package/dist/{node_modules/@radix-ui/react-popover/node_modules → vendor/@radix-ui/react-popover/vendor}/@radix-ui/react-slot/dist/index.js.map +0 -0
  637. /package/dist/{node_modules → vendor}/@radix-ui/react-popper/dist/index.js.map +0 -0
  638. /package/dist/{node_modules → vendor}/@radix-ui/react-portal/dist/index.js +0 -0
  639. /package/dist/{node_modules → vendor}/@radix-ui/react-portal/dist/index.js.map +0 -0
  640. /package/dist/{node_modules → vendor}/@radix-ui/react-presence/dist/index.js +0 -0
  641. /package/dist/{node_modules → vendor}/@radix-ui/react-presence/dist/index.js.map +0 -0
  642. /package/dist/{node_modules → vendor}/@radix-ui/react-primitive/dist/index.js.map +0 -0
  643. /package/dist/{node_modules/@radix-ui/react-primitive/node_modules → vendor/@radix-ui/react-primitive/vendor}/@radix-ui/react-slot/dist/index.js +0 -0
  644. /package/dist/{node_modules/@radix-ui/react-primitive/node_modules → vendor/@radix-ui/react-primitive/vendor}/@radix-ui/react-slot/dist/index.js.map +0 -0
  645. /package/dist/{node_modules → vendor}/@radix-ui/react-radio-group/dist/index.js +0 -0
  646. /package/dist/{node_modules → vendor}/@radix-ui/react-radio-group/dist/index.js.map +0 -0
  647. /package/dist/{node_modules → vendor}/@radix-ui/react-roving-focus/dist/index.js +0 -0
  648. /package/dist/{node_modules → vendor}/@radix-ui/react-roving-focus/dist/index.js.map +0 -0
  649. /package/dist/{node_modules → vendor}/@radix-ui/react-scroll-area/dist/index.js +0 -0
  650. /package/dist/{node_modules → vendor}/@radix-ui/react-scroll-area/dist/index.js.map +0 -0
  651. /package/dist/{node_modules → vendor}/@radix-ui/react-select/dist/index.js.map +0 -0
  652. /package/dist/{node_modules/@radix-ui/react-select/node_modules → vendor/@radix-ui/react-select/vendor}/@radix-ui/react-slot/dist/index.js +0 -0
  653. /package/dist/{node_modules/@radix-ui/react-select/node_modules → vendor/@radix-ui/react-select/vendor}/@radix-ui/react-slot/dist/index.js.map +0 -0
  654. /package/dist/{node_modules → vendor}/@radix-ui/react-slot/dist/index.js +0 -0
  655. /package/dist/{node_modules → vendor}/@radix-ui/react-slot/dist/index.js.map +0 -0
  656. /package/dist/{node_modules → vendor}/@radix-ui/react-switch/dist/index.js +0 -0
  657. /package/dist/{node_modules → vendor}/@radix-ui/react-switch/dist/index.js.map +0 -0
  658. /package/dist/{node_modules → vendor}/@radix-ui/react-tabs/dist/index.js +0 -0
  659. /package/dist/{node_modules → vendor}/@radix-ui/react-tabs/dist/index.js.map +0 -0
  660. /package/dist/{node_modules → vendor}/@radix-ui/react-toggle/dist/index.js +0 -0
  661. /package/dist/{node_modules → vendor}/@radix-ui/react-toggle/dist/index.js.map +0 -0
  662. /package/dist/{node_modules → vendor}/@radix-ui/react-toggle-group/dist/index.js +0 -0
  663. /package/dist/{node_modules → vendor}/@radix-ui/react-toggle-group/dist/index.js.map +0 -0
  664. /package/dist/{node_modules → vendor}/@radix-ui/react-tooltip/dist/index.js.map +0 -0
  665. /package/dist/{node_modules/@radix-ui/react-tooltip/node_modules → vendor/@radix-ui/react-tooltip/vendor}/@radix-ui/react-slot/dist/index.js +0 -0
  666. /package/dist/{node_modules/@radix-ui/react-tooltip/node_modules → vendor/@radix-ui/react-tooltip/vendor}/@radix-ui/react-slot/dist/index.js.map +0 -0
  667. /package/dist/{node_modules → vendor}/@radix-ui/react-use-callback-ref/dist/index.js +0 -0
  668. /package/dist/{node_modules → vendor}/@radix-ui/react-use-callback-ref/dist/index.js.map +0 -0
  669. /package/dist/{node_modules → vendor}/@radix-ui/react-use-controllable-state/dist/index.js +0 -0
  670. /package/dist/{node_modules → vendor}/@radix-ui/react-use-controllable-state/dist/index.js.map +0 -0
  671. /package/dist/{node_modules → vendor}/@radix-ui/react-use-escape-keydown/dist/index.js +0 -0
  672. /package/dist/{node_modules → vendor}/@radix-ui/react-use-escape-keydown/dist/index.js.map +0 -0
  673. /package/dist/{node_modules → vendor}/@radix-ui/react-use-is-hydrated/dist/index.js +0 -0
  674. /package/dist/{node_modules → vendor}/@radix-ui/react-use-is-hydrated/dist/index.js.map +0 -0
  675. /package/dist/{node_modules → vendor}/@radix-ui/react-use-layout-effect/dist/index.js +0 -0
  676. /package/dist/{node_modules → vendor}/@radix-ui/react-use-layout-effect/dist/index.js.map +0 -0
  677. /package/dist/{node_modules → vendor}/@radix-ui/react-use-previous/dist/index.js +0 -0
  678. /package/dist/{node_modules → vendor}/@radix-ui/react-use-previous/dist/index.js.map +0 -0
  679. /package/dist/{node_modules → vendor}/@radix-ui/react-use-size/dist/index.js +0 -0
  680. /package/dist/{node_modules → vendor}/@radix-ui/react-use-size/dist/index.js.map +0 -0
  681. /package/dist/{node_modules → vendor}/@radix-ui/react-visually-hidden/dist/index.js +0 -0
  682. /package/dist/{node_modules → vendor}/@radix-ui/react-visually-hidden/dist/index.js.map +0 -0
  683. /package/dist/{node_modules → vendor}/aria-hidden/dist/es2015/index.js +0 -0
  684. /package/dist/{node_modules → vendor}/aria-hidden/dist/es2015/index.js.map +0 -0
  685. /package/dist/{node_modules → vendor}/cmdk/dist/chunk-NZJY6EH4.js +0 -0
  686. /package/dist/{node_modules → vendor}/cmdk/dist/chunk-NZJY6EH4.js.map +0 -0
  687. /package/dist/{node_modules → vendor}/cmdk/dist/index.js +0 -0
  688. /package/dist/{node_modules → vendor}/cmdk/dist/index.js.map +0 -0
  689. /package/dist/{node_modules → vendor}/date-fns/_lib/addLeadingZeros.js +0 -0
  690. /package/dist/{node_modules → vendor}/date-fns/_lib/addLeadingZeros.js.map +0 -0
  691. /package/dist/{node_modules → vendor}/date-fns/_lib/defaultOptions.js +0 -0
  692. /package/dist/{node_modules → vendor}/date-fns/_lib/defaultOptions.js.map +0 -0
  693. /package/dist/{node_modules → vendor}/date-fns/_lib/format/formatters.js +0 -0
  694. /package/dist/{node_modules → vendor}/date-fns/_lib/format/formatters.js.map +0 -0
  695. /package/dist/{node_modules → vendor}/date-fns/_lib/format/lightFormatters.js +0 -0
  696. /package/dist/{node_modules → vendor}/date-fns/_lib/format/lightFormatters.js.map +0 -0
  697. /package/dist/{node_modules → vendor}/date-fns/_lib/format/longFormatters.js +0 -0
  698. /package/dist/{node_modules → vendor}/date-fns/_lib/format/longFormatters.js.map +0 -0
  699. /package/dist/{node_modules → vendor}/date-fns/_lib/getTimezoneOffsetInMilliseconds.js +0 -0
  700. /package/dist/{node_modules → vendor}/date-fns/_lib/getTimezoneOffsetInMilliseconds.js.map +0 -0
  701. /package/dist/{node_modules → vendor}/date-fns/_lib/normalizeDates.js +0 -0
  702. /package/dist/{node_modules → vendor}/date-fns/_lib/normalizeDates.js.map +0 -0
  703. /package/dist/{node_modules → vendor}/date-fns/_lib/normalizeInterval.js +0 -0
  704. /package/dist/{node_modules → vendor}/date-fns/_lib/normalizeInterval.js.map +0 -0
  705. /package/dist/{node_modules → vendor}/date-fns/_lib/protectedTokens.js +0 -0
  706. /package/dist/{node_modules → vendor}/date-fns/_lib/protectedTokens.js.map +0 -0
  707. /package/dist/{node_modules → vendor}/date-fns/addDays.js +0 -0
  708. /package/dist/{node_modules → vendor}/date-fns/addDays.js.map +0 -0
  709. /package/dist/{node_modules → vendor}/date-fns/addMonths.js +0 -0
  710. /package/dist/{node_modules → vendor}/date-fns/addMonths.js.map +0 -0
  711. /package/dist/{node_modules → vendor}/date-fns/constants.js +0 -0
  712. /package/dist/{node_modules → vendor}/date-fns/constants.js.map +0 -0
  713. /package/dist/{node_modules → vendor}/date-fns/constructFrom.js +0 -0
  714. /package/dist/{node_modules → vendor}/date-fns/constructFrom.js.map +0 -0
  715. /package/dist/{node_modules → vendor}/date-fns/constructNow.js +0 -0
  716. /package/dist/{node_modules → vendor}/date-fns/constructNow.js.map +0 -0
  717. /package/dist/{node_modules → vendor}/date-fns/differenceInCalendarDays.js +0 -0
  718. /package/dist/{node_modules → vendor}/date-fns/differenceInCalendarDays.js.map +0 -0
  719. /package/dist/{node_modules → vendor}/date-fns/eachDayOfInterval.js +0 -0
  720. /package/dist/{node_modules → vendor}/date-fns/eachDayOfInterval.js.map +0 -0
  721. /package/dist/{node_modules → vendor}/date-fns/endOfWeek.js +0 -0
  722. /package/dist/{node_modules → vendor}/date-fns/endOfWeek.js.map +0 -0
  723. /package/dist/{node_modules → vendor}/date-fns/format.js +0 -0
  724. /package/dist/{node_modules → vendor}/date-fns/format.js.map +0 -0
  725. /package/dist/{node_modules → vendor}/date-fns/getDayOfYear.js +0 -0
  726. /package/dist/{node_modules → vendor}/date-fns/getDayOfYear.js.map +0 -0
  727. /package/dist/{node_modules → vendor}/date-fns/getDefaultOptions.js +0 -0
  728. /package/dist/{node_modules → vendor}/date-fns/getDefaultOptions.js.map +0 -0
  729. /package/dist/{node_modules → vendor}/date-fns/getISODay.js +0 -0
  730. /package/dist/{node_modules → vendor}/date-fns/getISODay.js.map +0 -0
  731. /package/dist/{node_modules → vendor}/date-fns/getISOWeek.js +0 -0
  732. /package/dist/{node_modules → vendor}/date-fns/getISOWeek.js.map +0 -0
  733. /package/dist/{node_modules → vendor}/date-fns/getISOWeekYear.js +0 -0
  734. /package/dist/{node_modules → vendor}/date-fns/getISOWeekYear.js.map +0 -0
  735. /package/dist/{node_modules → vendor}/date-fns/getWeek.js +0 -0
  736. /package/dist/{node_modules → vendor}/date-fns/getWeek.js.map +0 -0
  737. /package/dist/{node_modules → vendor}/date-fns/getWeekYear.js +0 -0
  738. /package/dist/{node_modules → vendor}/date-fns/getWeekYear.js.map +0 -0
  739. /package/dist/{node_modules → vendor}/date-fns/isAfter.js +0 -0
  740. /package/dist/{node_modules → vendor}/date-fns/isAfter.js.map +0 -0
  741. /package/dist/{node_modules → vendor}/date-fns/isBefore.js +0 -0
  742. /package/dist/{node_modules → vendor}/date-fns/isBefore.js.map +0 -0
  743. /package/dist/{node_modules → vendor}/date-fns/isDate.js +0 -0
  744. /package/dist/{node_modules → vendor}/date-fns/isDate.js.map +0 -0
  745. /package/dist/{node_modules → vendor}/date-fns/isSameDay.js +0 -0
  746. /package/dist/{node_modules → vendor}/date-fns/isSameDay.js.map +0 -0
  747. /package/dist/{node_modules → vendor}/date-fns/isSameMonth.js +0 -0
  748. /package/dist/{node_modules → vendor}/date-fns/isSameMonth.js.map +0 -0
  749. /package/dist/{node_modules → vendor}/date-fns/isToday.js +0 -0
  750. /package/dist/{node_modules → vendor}/date-fns/isToday.js.map +0 -0
  751. /package/dist/{node_modules → vendor}/date-fns/isValid.js +0 -0
  752. /package/dist/{node_modules → vendor}/date-fns/isValid.js.map +0 -0
  753. /package/dist/{node_modules → vendor}/date-fns/locale/_lib/buildFormatLongFn.js +0 -0
  754. /package/dist/{node_modules → vendor}/date-fns/locale/_lib/buildFormatLongFn.js.map +0 -0
  755. /package/dist/{node_modules → vendor}/date-fns/locale/_lib/buildLocalizeFn.js +0 -0
  756. /package/dist/{node_modules → vendor}/date-fns/locale/_lib/buildLocalizeFn.js.map +0 -0
  757. /package/dist/{node_modules → vendor}/date-fns/locale/_lib/buildMatchFn.js +0 -0
  758. /package/dist/{node_modules → vendor}/date-fns/locale/_lib/buildMatchFn.js.map +0 -0
  759. /package/dist/{node_modules → vendor}/date-fns/locale/_lib/buildMatchPatternFn.js +0 -0
  760. /package/dist/{node_modules → vendor}/date-fns/locale/_lib/buildMatchPatternFn.js.map +0 -0
  761. /package/dist/{node_modules → vendor}/date-fns/locale/de/_lib/formatDistance.js +0 -0
  762. /package/dist/{node_modules → vendor}/date-fns/locale/de/_lib/formatDistance.js.map +0 -0
  763. /package/dist/{node_modules → vendor}/date-fns/locale/de/_lib/formatLong.js +0 -0
  764. /package/dist/{node_modules → vendor}/date-fns/locale/de/_lib/formatLong.js.map +0 -0
  765. /package/dist/{node_modules → vendor}/date-fns/locale/de/_lib/formatRelative.js +0 -0
  766. /package/dist/{node_modules → vendor}/date-fns/locale/de/_lib/formatRelative.js.map +0 -0
  767. /package/dist/{node_modules → vendor}/date-fns/locale/de/_lib/localize.js +0 -0
  768. /package/dist/{node_modules → vendor}/date-fns/locale/de/_lib/localize.js.map +0 -0
  769. /package/dist/{node_modules → vendor}/date-fns/locale/de/_lib/match.js +0 -0
  770. /package/dist/{node_modules → vendor}/date-fns/locale/de/_lib/match.js.map +0 -0
  771. /package/dist/{node_modules → vendor}/date-fns/locale/de.js +0 -0
  772. /package/dist/{node_modules → vendor}/date-fns/locale/de.js.map +0 -0
  773. /package/dist/{node_modules → vendor}/date-fns/locale/en-US/_lib/formatDistance.js +0 -0
  774. /package/dist/{node_modules → vendor}/date-fns/locale/en-US/_lib/formatDistance.js.map +0 -0
  775. /package/dist/{node_modules → vendor}/date-fns/locale/en-US/_lib/formatLong.js +0 -0
  776. /package/dist/{node_modules → vendor}/date-fns/locale/en-US/_lib/formatLong.js.map +0 -0
  777. /package/dist/{node_modules → vendor}/date-fns/locale/en-US/_lib/formatRelative.js +0 -0
  778. /package/dist/{node_modules → vendor}/date-fns/locale/en-US/_lib/formatRelative.js.map +0 -0
  779. /package/dist/{node_modules → vendor}/date-fns/locale/en-US/_lib/localize.js +0 -0
  780. /package/dist/{node_modules → vendor}/date-fns/locale/en-US/_lib/localize.js.map +0 -0
  781. /package/dist/{node_modules → vendor}/date-fns/locale/en-US/_lib/match.js +0 -0
  782. /package/dist/{node_modules → vendor}/date-fns/locale/en-US/_lib/match.js.map +0 -0
  783. /package/dist/{node_modules → vendor}/date-fns/locale/en-US.js +0 -0
  784. /package/dist/{node_modules → vendor}/date-fns/locale/en-US.js.map +0 -0
  785. /package/dist/{node_modules → vendor}/date-fns/locale/fr/_lib/formatDistance.js +0 -0
  786. /package/dist/{node_modules → vendor}/date-fns/locale/fr/_lib/formatDistance.js.map +0 -0
  787. /package/dist/{node_modules → vendor}/date-fns/locale/fr/_lib/formatLong.js +0 -0
  788. /package/dist/{node_modules → vendor}/date-fns/locale/fr/_lib/formatLong.js.map +0 -0
  789. /package/dist/{node_modules → vendor}/date-fns/locale/fr/_lib/formatRelative.js +0 -0
  790. /package/dist/{node_modules → vendor}/date-fns/locale/fr/_lib/formatRelative.js.map +0 -0
  791. /package/dist/{node_modules → vendor}/date-fns/locale/fr/_lib/localize.js +0 -0
  792. /package/dist/{node_modules → vendor}/date-fns/locale/fr/_lib/localize.js.map +0 -0
  793. /package/dist/{node_modules → vendor}/date-fns/locale/fr/_lib/match.js +0 -0
  794. /package/dist/{node_modules → vendor}/date-fns/locale/fr/_lib/match.js.map +0 -0
  795. /package/dist/{node_modules → vendor}/date-fns/locale/fr.js +0 -0
  796. /package/dist/{node_modules → vendor}/date-fns/locale/fr.js.map +0 -0
  797. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/Parser.js +0 -0
  798. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/Parser.js.map +0 -0
  799. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/Setter.js +0 -0
  800. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/Setter.js.map +0 -0
  801. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/constants.js +0 -0
  802. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/constants.js.map +0 -0
  803. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/AMPMMidnightParser.js +0 -0
  804. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/AMPMMidnightParser.js.map +0 -0
  805. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/AMPMParser.js +0 -0
  806. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/AMPMParser.js.map +0 -0
  807. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/DateParser.js +0 -0
  808. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/DateParser.js.map +0 -0
  809. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/DayOfYearParser.js +0 -0
  810. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/DayOfYearParser.js.map +0 -0
  811. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/DayParser.js +0 -0
  812. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/DayParser.js.map +0 -0
  813. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/DayPeriodParser.js +0 -0
  814. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/DayPeriodParser.js.map +0 -0
  815. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/EraParser.js +0 -0
  816. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/EraParser.js.map +0 -0
  817. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/ExtendedYearParser.js +0 -0
  818. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/ExtendedYearParser.js.map +0 -0
  819. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/FractionOfSecondParser.js +0 -0
  820. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/FractionOfSecondParser.js.map +0 -0
  821. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/Hour0To11Parser.js +0 -0
  822. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/Hour0To11Parser.js.map +0 -0
  823. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/Hour0to23Parser.js +0 -0
  824. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/Hour0to23Parser.js.map +0 -0
  825. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/Hour1To24Parser.js +0 -0
  826. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/Hour1To24Parser.js.map +0 -0
  827. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/Hour1to12Parser.js +0 -0
  828. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/Hour1to12Parser.js.map +0 -0
  829. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/ISODayParser.js +0 -0
  830. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/ISODayParser.js.map +0 -0
  831. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/ISOTimezoneParser.js +0 -0
  832. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/ISOTimezoneParser.js.map +0 -0
  833. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/ISOTimezoneWithZParser.js +0 -0
  834. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/ISOTimezoneWithZParser.js.map +0 -0
  835. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/ISOWeekParser.js +0 -0
  836. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/ISOWeekParser.js.map +0 -0
  837. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/ISOWeekYearParser.js +0 -0
  838. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/ISOWeekYearParser.js.map +0 -0
  839. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/LocalDayParser.js +0 -0
  840. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/LocalDayParser.js.map +0 -0
  841. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/LocalWeekParser.js +0 -0
  842. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/LocalWeekParser.js.map +0 -0
  843. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/LocalWeekYearParser.js +0 -0
  844. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/LocalWeekYearParser.js.map +0 -0
  845. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/MinuteParser.js +0 -0
  846. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/MinuteParser.js.map +0 -0
  847. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/MonthParser.js +0 -0
  848. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/MonthParser.js.map +0 -0
  849. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/QuarterParser.js +0 -0
  850. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/QuarterParser.js.map +0 -0
  851. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/SecondParser.js +0 -0
  852. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/SecondParser.js.map +0 -0
  853. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/StandAloneLocalDayParser.js +0 -0
  854. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/StandAloneLocalDayParser.js.map +0 -0
  855. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/StandAloneMonthParser.js +0 -0
  856. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/StandAloneMonthParser.js.map +0 -0
  857. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/StandAloneQuarterParser.js +0 -0
  858. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/StandAloneQuarterParser.js.map +0 -0
  859. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/TimestampMillisecondsParser.js +0 -0
  860. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/TimestampMillisecondsParser.js.map +0 -0
  861. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/TimestampSecondsParser.js +0 -0
  862. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/TimestampSecondsParser.js.map +0 -0
  863. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/YearParser.js +0 -0
  864. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/YearParser.js.map +0 -0
  865. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers.js +0 -0
  866. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers.js.map +0 -0
  867. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/utils.js +0 -0
  868. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/utils.js.map +0 -0
  869. /package/dist/{node_modules → vendor}/date-fns/parse.js +0 -0
  870. /package/dist/{node_modules → vendor}/date-fns/parse.js.map +0 -0
  871. /package/dist/{node_modules → vendor}/date-fns/setDay.js +0 -0
  872. /package/dist/{node_modules → vendor}/date-fns/setDay.js.map +0 -0
  873. /package/dist/{node_modules → vendor}/date-fns/setHours.js +0 -0
  874. /package/dist/{node_modules → vendor}/date-fns/setHours.js.map +0 -0
  875. /package/dist/{node_modules → vendor}/date-fns/setISODay.js +0 -0
  876. /package/dist/{node_modules → vendor}/date-fns/setISODay.js.map +0 -0
  877. /package/dist/{node_modules → vendor}/date-fns/setISOWeek.js +0 -0
  878. /package/dist/{node_modules → vendor}/date-fns/setISOWeek.js.map +0 -0
  879. /package/dist/{node_modules → vendor}/date-fns/setMinutes.js +0 -0
  880. /package/dist/{node_modules → vendor}/date-fns/setMinutes.js.map +0 -0
  881. /package/dist/{node_modules → vendor}/date-fns/setWeek.js +0 -0
  882. /package/dist/{node_modules → vendor}/date-fns/setWeek.js.map +0 -0
  883. /package/dist/{node_modules → vendor}/date-fns/startOfDay.js +0 -0
  884. /package/dist/{node_modules → vendor}/date-fns/startOfDay.js.map +0 -0
  885. /package/dist/{node_modules → vendor}/date-fns/startOfISOWeek.js +0 -0
  886. /package/dist/{node_modules → vendor}/date-fns/startOfISOWeek.js.map +0 -0
  887. /package/dist/{node_modules → vendor}/date-fns/startOfISOWeekYear.js +0 -0
  888. /package/dist/{node_modules → vendor}/date-fns/startOfISOWeekYear.js.map +0 -0
  889. /package/dist/{node_modules → vendor}/date-fns/startOfMonth.js +0 -0
  890. /package/dist/{node_modules → vendor}/date-fns/startOfMonth.js.map +0 -0
  891. /package/dist/{node_modules → vendor}/date-fns/startOfWeek.js +0 -0
  892. /package/dist/{node_modules → vendor}/date-fns/startOfWeek.js.map +0 -0
  893. /package/dist/{node_modules → vendor}/date-fns/startOfWeekYear.js +0 -0
  894. /package/dist/{node_modules → vendor}/date-fns/startOfWeekYear.js.map +0 -0
  895. /package/dist/{node_modules → vendor}/date-fns/startOfYear.js +0 -0
  896. /package/dist/{node_modules → vendor}/date-fns/startOfYear.js.map +0 -0
  897. /package/dist/{node_modules → vendor}/date-fns/subMonths.js +0 -0
  898. /package/dist/{node_modules → vendor}/date-fns/subMonths.js.map +0 -0
  899. /package/dist/{node_modules → vendor}/date-fns/toDate.js +0 -0
  900. /package/dist/{node_modules → vendor}/date-fns/toDate.js.map +0 -0
  901. /package/dist/{node_modules → vendor}/date-fns/transpose.js +0 -0
  902. /package/dist/{node_modules → vendor}/date-fns/transpose.js.map +0 -0
  903. /package/dist/{node_modules → vendor}/get-nonce/dist/es2015/index.js +0 -0
  904. /package/dist/{node_modules → vendor}/get-nonce/dist/es2015/index.js.map +0 -0
  905. /package/dist/{node_modules → vendor}/react-remove-scroll/dist/es2015/Combination.js +0 -0
  906. /package/dist/{node_modules → vendor}/react-remove-scroll/dist/es2015/Combination.js.map +0 -0
  907. /package/dist/{node_modules → vendor}/react-remove-scroll/dist/es2015/SideEffect.js +0 -0
  908. /package/dist/{node_modules → vendor}/react-remove-scroll/dist/es2015/SideEffect.js.map +0 -0
  909. /package/dist/{node_modules → vendor}/react-remove-scroll/dist/es2015/UI.js +0 -0
  910. /package/dist/{node_modules → vendor}/react-remove-scroll/dist/es2015/UI.js.map +0 -0
  911. /package/dist/{node_modules → vendor}/react-remove-scroll/dist/es2015/aggresiveCapture.js +0 -0
  912. /package/dist/{node_modules → vendor}/react-remove-scroll/dist/es2015/aggresiveCapture.js.map +0 -0
  913. /package/dist/{node_modules → vendor}/react-remove-scroll/dist/es2015/handleScroll.js +0 -0
  914. /package/dist/{node_modules → vendor}/react-remove-scroll/dist/es2015/handleScroll.js.map +0 -0
  915. /package/dist/{node_modules → vendor}/react-remove-scroll/dist/es2015/medium.js +0 -0
  916. /package/dist/{node_modules → vendor}/react-remove-scroll/dist/es2015/medium.js.map +0 -0
  917. /package/dist/{node_modules → vendor}/react-remove-scroll/dist/es2015/sidecar.js +0 -0
  918. /package/dist/{node_modules → vendor}/react-remove-scroll/dist/es2015/sidecar.js.map +0 -0
  919. /package/dist/{node_modules → vendor}/react-remove-scroll-bar/dist/es2015/component.js +0 -0
  920. /package/dist/{node_modules → vendor}/react-remove-scroll-bar/dist/es2015/component.js.map +0 -0
  921. /package/dist/{node_modules → vendor}/react-remove-scroll-bar/dist/es2015/constants.js +0 -0
  922. /package/dist/{node_modules → vendor}/react-remove-scroll-bar/dist/es2015/constants.js.map +0 -0
  923. /package/dist/{node_modules → vendor}/react-remove-scroll-bar/dist/es2015/utils.js +0 -0
  924. /package/dist/{node_modules → vendor}/react-remove-scroll-bar/dist/es2015/utils.js.map +0 -0
  925. /package/dist/{node_modules → vendor}/react-style-singleton/dist/es2015/component.js +0 -0
  926. /package/dist/{node_modules → vendor}/react-style-singleton/dist/es2015/component.js.map +0 -0
  927. /package/dist/{node_modules → vendor}/react-style-singleton/dist/es2015/hook.js +0 -0
  928. /package/dist/{node_modules → vendor}/react-style-singleton/dist/es2015/hook.js.map +0 -0
  929. /package/dist/{node_modules → vendor}/react-style-singleton/dist/es2015/singleton.js +0 -0
  930. /package/dist/{node_modules → vendor}/react-style-singleton/dist/es2015/singleton.js.map +0 -0
  931. /package/dist/{node_modules → vendor}/rifm/dist/rifm.esm.js +0 -0
  932. /package/dist/{node_modules → vendor}/rifm/dist/rifm.esm.js.map +0 -0
  933. /package/dist/{node_modules → vendor}/sonner/dist/index.js +0 -0
  934. /package/dist/{node_modules → vendor}/sonner/dist/index.js.map +0 -0
  935. /package/dist/{node_modules → vendor}/tslib/tslib.es6.js +0 -0
  936. /package/dist/{node_modules → vendor}/tslib/tslib.es6.js.map +0 -0
  937. /package/dist/{node_modules → vendor}/use-callback-ref/dist/es2015/assignRef.js +0 -0
  938. /package/dist/{node_modules → vendor}/use-callback-ref/dist/es2015/assignRef.js.map +0 -0
  939. /package/dist/{node_modules → vendor}/use-callback-ref/dist/es2015/useMergeRef.js +0 -0
  940. /package/dist/{node_modules → vendor}/use-callback-ref/dist/es2015/useMergeRef.js.map +0 -0
  941. /package/dist/{node_modules → vendor}/use-callback-ref/dist/es2015/useRef.js +0 -0
  942. /package/dist/{node_modules → vendor}/use-callback-ref/dist/es2015/useRef.js.map +0 -0
  943. /package/dist/{node_modules → vendor}/use-sidecar/dist/es2015/exports.js +0 -0
  944. /package/dist/{node_modules → vendor}/use-sidecar/dist/es2015/exports.js.map +0 -0
  945. /package/dist/{node_modules → vendor}/use-sidecar/dist/es2015/medium.js +0 -0
  946. /package/dist/{node_modules → vendor}/use-sidecar/dist/es2015/medium.js.map +0 -0
  947. /package/dist/{node_modules → vendor}/use-sync-external-store/cjs/use-sync-external-store-shim.development.js +0 -0
  948. /package/dist/{node_modules → vendor}/use-sync-external-store/cjs/use-sync-external-store-shim.development.js.map +0 -0
  949. /package/dist/{node_modules → vendor}/use-sync-external-store/cjs/use-sync-external-store-shim.production.js +0 -0
  950. /package/dist/{node_modules → vendor}/use-sync-external-store/cjs/use-sync-external-store-shim.production.js.map +0 -0
  951. /package/dist/{node_modules → vendor}/use-sync-external-store/shim/index.js +0 -0
  952. /package/dist/{node_modules → vendor}/use-sync-external-store/shim/index.js.map +0 -0
@@ -0,0 +1,1896 @@
1
+ /**
2
+ * table-core
3
+ *
4
+ * Copyright (c) TanStack
5
+ *
6
+ * This source code is licensed under the MIT license found in the
7
+ * LICENSE.md file in the root directory of this source tree.
8
+ *
9
+ * @license MIT
10
+ */
11
+ function I(e, o) {
12
+ return typeof e == "function" ? e(o) : e;
13
+ }
14
+ function $(e, o) {
15
+ return (t) => {
16
+ o.setState((n) => ({
17
+ ...n,
18
+ [e]: I(t, n[e])
19
+ }));
20
+ };
21
+ }
22
+ function A(e) {
23
+ return e instanceof Function;
24
+ }
25
+ function Se(e) {
26
+ return Array.isArray(e) && e.every((o) => typeof o == "number");
27
+ }
28
+ function me(e, o) {
29
+ const t = [], n = (i) => {
30
+ i.forEach((r) => {
31
+ t.push(r);
32
+ const l = o(r);
33
+ l != null && l.length && n(l);
34
+ });
35
+ };
36
+ return n(e), t;
37
+ }
38
+ function m(e, o, t) {
39
+ let n = [], i;
40
+ return (r) => {
41
+ let l;
42
+ t.key && t.debug && (l = Date.now());
43
+ const u = e(r);
44
+ if (!(u.length !== n.length || u.some((f, S) => n[S] !== f)))
45
+ return i;
46
+ n = u;
47
+ let a;
48
+ if (t.key && t.debug && (a = Date.now()), i = o(...u), t == null || t.onChange == null || t.onChange(i), t.key && t.debug && t != null && t.debug()) {
49
+ const f = Math.round((Date.now() - l) * 100) / 100, S = Math.round((Date.now() - a) * 100) / 100, d = S / 16, s = (c, p) => {
50
+ for (c = String(c); c.length < p; )
51
+ c = " " + c;
52
+ return c;
53
+ };
54
+ console.info(`%c⏱ ${s(S, 5)} /${s(f, 5)} ms`, `
55
+ font-size: .6rem;
56
+ font-weight: bold;
57
+ color: hsl(${Math.max(0, Math.min(120 - 120 * d, 120))}deg 100% 31%);`, t == null ? void 0 : t.key);
58
+ }
59
+ return i;
60
+ };
61
+ }
62
+ function C(e, o, t, n) {
63
+ return {
64
+ debug: () => {
65
+ var i;
66
+ return (i = e == null ? void 0 : e.debugAll) != null ? i : e[o];
67
+ },
68
+ key: process.env.NODE_ENV === "development" && t,
69
+ onChange: n
70
+ };
71
+ }
72
+ function Ce(e, o, t, n) {
73
+ const i = () => {
74
+ var l;
75
+ return (l = r.getValue()) != null ? l : e.options.renderFallbackValue;
76
+ }, r = {
77
+ id: `${o.id}_${t.id}`,
78
+ row: o,
79
+ column: t,
80
+ getValue: () => o.getValue(n),
81
+ renderValue: i,
82
+ getContext: m(() => [e, t, o, r], (l, u, g, a) => ({
83
+ table: l,
84
+ column: u,
85
+ row: g,
86
+ cell: a,
87
+ getValue: a.getValue,
88
+ renderValue: a.renderValue
89
+ }), C(e.options, "debugCells", "cell.getContext"))
90
+ };
91
+ return e._features.forEach((l) => {
92
+ l.createCell == null || l.createCell(r, t, o, e);
93
+ }, {}), r;
94
+ }
95
+ function Re(e, o, t, n) {
96
+ var i, r;
97
+ const u = {
98
+ ...e._getDefaultColumnDef(),
99
+ ...o
100
+ }, g = u.accessorKey;
101
+ let a = (i = (r = u.id) != null ? r : g ? typeof String.prototype.replaceAll == "function" ? g.replaceAll(".", "_") : g.replace(/\./g, "_") : void 0) != null ? i : typeof u.header == "string" ? u.header : void 0, f;
102
+ if (u.accessorFn ? f = u.accessorFn : g && (g.includes(".") ? f = (d) => {
103
+ let s = d;
104
+ for (const p of g.split(".")) {
105
+ var c;
106
+ s = (c = s) == null ? void 0 : c[p], process.env.NODE_ENV !== "production" && s === void 0 && console.warn(`"${p}" in deeply nested key "${g}" returned undefined.`);
107
+ }
108
+ return s;
109
+ } : f = (d) => d[u.accessorKey]), !a)
110
+ throw process.env.NODE_ENV !== "production" ? new Error(u.accessorFn ? "Columns require an id when using an accessorFn" : "Columns require an id when using a non-string header") : new Error();
111
+ let S = {
112
+ id: `${String(a)}`,
113
+ accessorFn: f,
114
+ parent: n,
115
+ depth: t,
116
+ columnDef: u,
117
+ columns: [],
118
+ getFlatColumns: m(() => [!0], () => {
119
+ var d;
120
+ return [S, ...(d = S.columns) == null ? void 0 : d.flatMap((s) => s.getFlatColumns())];
121
+ }, C(e.options, "debugColumns", "column.getFlatColumns")),
122
+ getLeafColumns: m(() => [e._getOrderColumnsFn()], (d) => {
123
+ var s;
124
+ if ((s = S.columns) != null && s.length) {
125
+ let c = S.columns.flatMap((p) => p.getLeafColumns());
126
+ return d(c);
127
+ }
128
+ return [S];
129
+ }, C(e.options, "debugColumns", "column.getLeafColumns"))
130
+ };
131
+ for (const d of e._features)
132
+ d.createColumn == null || d.createColumn(S, e);
133
+ return S;
134
+ }
135
+ const _ = "debugHeaders";
136
+ function ne(e, o, t) {
137
+ var n;
138
+ let r = {
139
+ id: (n = t.id) != null ? n : o.id,
140
+ column: o,
141
+ index: t.index,
142
+ isPlaceholder: !!t.isPlaceholder,
143
+ placeholderId: t.placeholderId,
144
+ depth: t.depth,
145
+ subHeaders: [],
146
+ colSpan: 0,
147
+ rowSpan: 0,
148
+ headerGroup: null,
149
+ getLeafHeaders: () => {
150
+ const l = [], u = (g) => {
151
+ g.subHeaders && g.subHeaders.length && g.subHeaders.map(u), l.push(g);
152
+ };
153
+ return u(r), l;
154
+ },
155
+ getContext: () => ({
156
+ table: e,
157
+ header: r,
158
+ column: o
159
+ })
160
+ };
161
+ return e._features.forEach((l) => {
162
+ l.createHeader == null || l.createHeader(r, e);
163
+ }), r;
164
+ }
165
+ const we = {
166
+ createTable: (e) => {
167
+ e.getHeaderGroups = m(() => [e.getAllColumns(), e.getVisibleLeafColumns(), e.getState().columnPinning.left, e.getState().columnPinning.right], (o, t, n, i) => {
168
+ var r, l;
169
+ const u = (r = n == null ? void 0 : n.map((S) => t.find((d) => d.id === S)).filter(Boolean)) != null ? r : [], g = (l = i == null ? void 0 : i.map((S) => t.find((d) => d.id === S)).filter(Boolean)) != null ? l : [], a = t.filter((S) => !(n != null && n.includes(S.id)) && !(i != null && i.includes(S.id)));
170
+ return G(o, [...u, ...a, ...g], e);
171
+ }, C(e.options, _, "getHeaderGroups")), e.getCenterHeaderGroups = m(() => [e.getAllColumns(), e.getVisibleLeafColumns(), e.getState().columnPinning.left, e.getState().columnPinning.right], (o, t, n, i) => (t = t.filter((r) => !(n != null && n.includes(r.id)) && !(i != null && i.includes(r.id))), G(o, t, e, "center")), C(e.options, _, "getCenterHeaderGroups")), e.getLeftHeaderGroups = m(() => [e.getAllColumns(), e.getVisibleLeafColumns(), e.getState().columnPinning.left], (o, t, n) => {
172
+ var i;
173
+ const r = (i = n == null ? void 0 : n.map((l) => t.find((u) => u.id === l)).filter(Boolean)) != null ? i : [];
174
+ return G(o, r, e, "left");
175
+ }, C(e.options, _, "getLeftHeaderGroups")), e.getRightHeaderGroups = m(() => [e.getAllColumns(), e.getVisibleLeafColumns(), e.getState().columnPinning.right], (o, t, n) => {
176
+ var i;
177
+ const r = (i = n == null ? void 0 : n.map((l) => t.find((u) => u.id === l)).filter(Boolean)) != null ? i : [];
178
+ return G(o, r, e, "right");
179
+ }, C(e.options, _, "getRightHeaderGroups")), e.getFooterGroups = m(() => [e.getHeaderGroups()], (o) => [...o].reverse(), C(e.options, _, "getFooterGroups")), e.getLeftFooterGroups = m(() => [e.getLeftHeaderGroups()], (o) => [...o].reverse(), C(e.options, _, "getLeftFooterGroups")), e.getCenterFooterGroups = m(() => [e.getCenterHeaderGroups()], (o) => [...o].reverse(), C(e.options, _, "getCenterFooterGroups")), e.getRightFooterGroups = m(() => [e.getRightHeaderGroups()], (o) => [...o].reverse(), C(e.options, _, "getRightFooterGroups")), e.getFlatHeaders = m(() => [e.getHeaderGroups()], (o) => o.map((t) => t.headers).flat(), C(e.options, _, "getFlatHeaders")), e.getLeftFlatHeaders = m(() => [e.getLeftHeaderGroups()], (o) => o.map((t) => t.headers).flat(), C(e.options, _, "getLeftFlatHeaders")), e.getCenterFlatHeaders = m(() => [e.getCenterHeaderGroups()], (o) => o.map((t) => t.headers).flat(), C(e.options, _, "getCenterFlatHeaders")), e.getRightFlatHeaders = m(() => [e.getRightHeaderGroups()], (o) => o.map((t) => t.headers).flat(), C(e.options, _, "getRightFlatHeaders")), e.getCenterLeafHeaders = m(() => [e.getCenterFlatHeaders()], (o) => o.filter((t) => {
180
+ var n;
181
+ return !((n = t.subHeaders) != null && n.length);
182
+ }), C(e.options, _, "getCenterLeafHeaders")), e.getLeftLeafHeaders = m(() => [e.getLeftFlatHeaders()], (o) => o.filter((t) => {
183
+ var n;
184
+ return !((n = t.subHeaders) != null && n.length);
185
+ }), C(e.options, _, "getLeftLeafHeaders")), e.getRightLeafHeaders = m(() => [e.getRightFlatHeaders()], (o) => o.filter((t) => {
186
+ var n;
187
+ return !((n = t.subHeaders) != null && n.length);
188
+ }), C(e.options, _, "getRightLeafHeaders")), e.getLeafHeaders = m(() => [e.getLeftHeaderGroups(), e.getCenterHeaderGroups(), e.getRightHeaderGroups()], (o, t, n) => {
189
+ var i, r, l, u, g, a;
190
+ return [...(i = (r = o[0]) == null ? void 0 : r.headers) != null ? i : [], ...(l = (u = t[0]) == null ? void 0 : u.headers) != null ? l : [], ...(g = (a = n[0]) == null ? void 0 : a.headers) != null ? g : []].map((f) => f.getLeafHeaders()).flat();
191
+ }, C(e.options, _, "getLeafHeaders"));
192
+ }
193
+ };
194
+ function G(e, o, t, n) {
195
+ var i, r;
196
+ let l = 0;
197
+ const u = function(d, s) {
198
+ s === void 0 && (s = 1), l = Math.max(l, s), d.filter((c) => c.getIsVisible()).forEach((c) => {
199
+ var p;
200
+ (p = c.columns) != null && p.length && u(c.columns, s + 1);
201
+ }, 0);
202
+ };
203
+ u(e);
204
+ let g = [];
205
+ const a = (d, s) => {
206
+ const c = {
207
+ depth: s,
208
+ id: [n, `${s}`].filter(Boolean).join("_"),
209
+ headers: []
210
+ }, p = [];
211
+ d.forEach((R) => {
212
+ const w = [...p].reverse()[0], h = R.column.depth === c.depth;
213
+ let v, M = !1;
214
+ if (h && R.column.parent ? v = R.column.parent : (v = R.column, M = !0), w && (w == null ? void 0 : w.column) === v)
215
+ w.subHeaders.push(R);
216
+ else {
217
+ const F = ne(t, v, {
218
+ id: [n, s, v.id, R == null ? void 0 : R.id].filter(Boolean).join("_"),
219
+ isPlaceholder: M,
220
+ placeholderId: M ? `${p.filter((E) => E.column === v).length}` : void 0,
221
+ depth: s,
222
+ index: p.length
223
+ });
224
+ F.subHeaders.push(R), p.push(F);
225
+ }
226
+ c.headers.push(R), R.headerGroup = c;
227
+ }), g.push(c), s > 0 && a(p, s - 1);
228
+ }, f = o.map((d, s) => ne(t, d, {
229
+ depth: l,
230
+ index: s
231
+ }));
232
+ a(f, l - 1), g.reverse();
233
+ const S = (d) => d.filter((c) => c.column.getIsVisible()).map((c) => {
234
+ let p = 0, R = 0, w = [0];
235
+ c.subHeaders && c.subHeaders.length ? (w = [], S(c.subHeaders).forEach((v) => {
236
+ let {
237
+ colSpan: M,
238
+ rowSpan: F
239
+ } = v;
240
+ p += M, w.push(F);
241
+ })) : p = 1;
242
+ const h = Math.min(...w);
243
+ return R = R + h, c.colSpan = p, c.rowSpan = R, {
244
+ colSpan: p,
245
+ rowSpan: R
246
+ };
247
+ });
248
+ return S((i = (r = g[0]) == null ? void 0 : r.headers) != null ? i : []), g;
249
+ }
250
+ const Q = (e, o, t, n, i, r, l) => {
251
+ let u = {
252
+ id: o,
253
+ index: n,
254
+ original: t,
255
+ depth: i,
256
+ parentId: l,
257
+ _valuesCache: {},
258
+ _uniqueValuesCache: {},
259
+ getValue: (g) => {
260
+ if (u._valuesCache.hasOwnProperty(g))
261
+ return u._valuesCache[g];
262
+ const a = e.getColumn(g);
263
+ if (a != null && a.accessorFn)
264
+ return u._valuesCache[g] = a.accessorFn(u.original, n), u._valuesCache[g];
265
+ },
266
+ getUniqueValues: (g) => {
267
+ if (u._uniqueValuesCache.hasOwnProperty(g))
268
+ return u._uniqueValuesCache[g];
269
+ const a = e.getColumn(g);
270
+ if (a != null && a.accessorFn)
271
+ return a.columnDef.getUniqueValues ? (u._uniqueValuesCache[g] = a.columnDef.getUniqueValues(u.original, n), u._uniqueValuesCache[g]) : (u._uniqueValuesCache[g] = [u.getValue(g)], u._uniqueValuesCache[g]);
272
+ },
273
+ renderValue: (g) => {
274
+ var a;
275
+ return (a = u.getValue(g)) != null ? a : e.options.renderFallbackValue;
276
+ },
277
+ subRows: [],
278
+ getLeafRows: () => me(u.subRows, (g) => g.subRows),
279
+ getParentRow: () => u.parentId ? e.getRow(u.parentId, !0) : void 0,
280
+ getParentRows: () => {
281
+ let g = [], a = u;
282
+ for (; ; ) {
283
+ const f = a.getParentRow();
284
+ if (!f) break;
285
+ g.push(f), a = f;
286
+ }
287
+ return g.reverse();
288
+ },
289
+ getAllCells: m(() => [e.getAllLeafColumns()], (g) => g.map((a) => Ce(e, u, a, a.id)), C(e.options, "debugRows", "getAllCells")),
290
+ _getAllCellsByColumnId: m(() => [u.getAllCells()], (g) => g.reduce((a, f) => (a[f.column.id] = f, a), {}), C(e.options, "debugRows", "getAllCellsByColumnId"))
291
+ };
292
+ for (let g = 0; g < e._features.length; g++) {
293
+ const a = e._features[g];
294
+ a == null || a.createRow == null || a.createRow(u, e);
295
+ }
296
+ return u;
297
+ }, he = {
298
+ createColumn: (e, o) => {
299
+ e._getFacetedRowModel = o.options.getFacetedRowModel && o.options.getFacetedRowModel(o, e.id), e.getFacetedRowModel = () => e._getFacetedRowModel ? e._getFacetedRowModel() : o.getPreFilteredRowModel(), e._getFacetedUniqueValues = o.options.getFacetedUniqueValues && o.options.getFacetedUniqueValues(o, e.id), e.getFacetedUniqueValues = () => e._getFacetedUniqueValues ? e._getFacetedUniqueValues() : /* @__PURE__ */ new Map(), e._getFacetedMinMaxValues = o.options.getFacetedMinMaxValues && o.options.getFacetedMinMaxValues(o, e.id), e.getFacetedMinMaxValues = () => {
300
+ if (e._getFacetedMinMaxValues)
301
+ return e._getFacetedMinMaxValues();
302
+ };
303
+ }
304
+ }, ie = (e, o, t) => {
305
+ var n, i;
306
+ const r = t == null || (n = t.toString()) == null ? void 0 : n.toLowerCase();
307
+ return !!(!((i = e.getValue(o)) == null || (i = i.toString()) == null || (i = i.toLowerCase()) == null) && i.includes(r));
308
+ };
309
+ ie.autoRemove = (e) => V(e);
310
+ const re = (e, o, t) => {
311
+ var n;
312
+ return !!(!((n = e.getValue(o)) == null || (n = n.toString()) == null) && n.includes(t));
313
+ };
314
+ re.autoRemove = (e) => V(e);
315
+ const le = (e, o, t) => {
316
+ var n;
317
+ return ((n = e.getValue(o)) == null || (n = n.toString()) == null ? void 0 : n.toLowerCase()) === (t == null ? void 0 : t.toLowerCase());
318
+ };
319
+ le.autoRemove = (e) => V(e);
320
+ const se = (e, o, t) => {
321
+ var n;
322
+ return (n = e.getValue(o)) == null ? void 0 : n.includes(t);
323
+ };
324
+ se.autoRemove = (e) => V(e);
325
+ const ue = (e, o, t) => !t.some((n) => {
326
+ var i;
327
+ return !((i = e.getValue(o)) != null && i.includes(n));
328
+ });
329
+ ue.autoRemove = (e) => V(e) || !(e != null && e.length);
330
+ const ge = (e, o, t) => t.some((n) => {
331
+ var i;
332
+ return (i = e.getValue(o)) == null ? void 0 : i.includes(n);
333
+ });
334
+ ge.autoRemove = (e) => V(e) || !(e != null && e.length);
335
+ const ae = (e, o, t) => e.getValue(o) === t;
336
+ ae.autoRemove = (e) => V(e);
337
+ const de = (e, o, t) => e.getValue(o) == t;
338
+ de.autoRemove = (e) => V(e);
339
+ const W = (e, o, t) => {
340
+ let [n, i] = t;
341
+ const r = e.getValue(o);
342
+ return r >= n && r <= i;
343
+ };
344
+ W.resolveFilterValue = (e) => {
345
+ let [o, t] = e, n = typeof o != "number" ? parseFloat(o) : o, i = typeof t != "number" ? parseFloat(t) : t, r = o === null || Number.isNaN(n) ? -1 / 0 : n, l = t === null || Number.isNaN(i) ? 1 / 0 : i;
346
+ if (r > l) {
347
+ const u = r;
348
+ r = l, l = u;
349
+ }
350
+ return [r, l];
351
+ };
352
+ W.autoRemove = (e) => V(e) || V(e[0]) && V(e[1]);
353
+ const P = {
354
+ includesString: ie,
355
+ includesStringSensitive: re,
356
+ equalsString: le,
357
+ arrIncludes: se,
358
+ arrIncludesAll: ue,
359
+ arrIncludesSome: ge,
360
+ equals: ae,
361
+ weakEquals: de,
362
+ inNumberRange: W
363
+ };
364
+ function V(e) {
365
+ return e == null || e === "";
366
+ }
367
+ const ve = {
368
+ getDefaultColumnDef: () => ({
369
+ filterFn: "auto"
370
+ }),
371
+ getInitialState: (e) => ({
372
+ columnFilters: [],
373
+ ...e
374
+ }),
375
+ getDefaultOptions: (e) => ({
376
+ onColumnFiltersChange: $("columnFilters", e),
377
+ filterFromLeafRows: !1,
378
+ maxLeafRowFilterDepth: 100
379
+ }),
380
+ createColumn: (e, o) => {
381
+ e.getAutoFilterFn = () => {
382
+ const t = o.getCoreRowModel().flatRows[0], n = t == null ? void 0 : t.getValue(e.id);
383
+ return typeof n == "string" ? P.includesString : typeof n == "number" ? P.inNumberRange : typeof n == "boolean" || n !== null && typeof n == "object" ? P.equals : Array.isArray(n) ? P.arrIncludes : P.weakEquals;
384
+ }, e.getFilterFn = () => {
385
+ var t, n;
386
+ return A(e.columnDef.filterFn) ? e.columnDef.filterFn : e.columnDef.filterFn === "auto" ? e.getAutoFilterFn() : (
387
+ // @ts-ignore
388
+ (t = (n = o.options.filterFns) == null ? void 0 : n[e.columnDef.filterFn]) != null ? t : P[e.columnDef.filterFn]
389
+ );
390
+ }, e.getCanFilter = () => {
391
+ var t, n, i;
392
+ return ((t = e.columnDef.enableColumnFilter) != null ? t : !0) && ((n = o.options.enableColumnFilters) != null ? n : !0) && ((i = o.options.enableFilters) != null ? i : !0) && !!e.accessorFn;
393
+ }, e.getIsFiltered = () => e.getFilterIndex() > -1, e.getFilterValue = () => {
394
+ var t;
395
+ return (t = o.getState().columnFilters) == null || (t = t.find((n) => n.id === e.id)) == null ? void 0 : t.value;
396
+ }, e.getFilterIndex = () => {
397
+ var t, n;
398
+ return (t = (n = o.getState().columnFilters) == null ? void 0 : n.findIndex((i) => i.id === e.id)) != null ? t : -1;
399
+ }, e.setFilterValue = (t) => {
400
+ o.setColumnFilters((n) => {
401
+ const i = e.getFilterFn(), r = n == null ? void 0 : n.find((f) => f.id === e.id), l = I(t, r ? r.value : void 0);
402
+ if (oe(i, l, e)) {
403
+ var u;
404
+ return (u = n == null ? void 0 : n.filter((f) => f.id !== e.id)) != null ? u : [];
405
+ }
406
+ const g = {
407
+ id: e.id,
408
+ value: l
409
+ };
410
+ if (r) {
411
+ var a;
412
+ return (a = n == null ? void 0 : n.map((f) => f.id === e.id ? g : f)) != null ? a : [];
413
+ }
414
+ return n != null && n.length ? [...n, g] : [g];
415
+ });
416
+ };
417
+ },
418
+ createRow: (e, o) => {
419
+ e.columnFilters = {}, e.columnFiltersMeta = {};
420
+ },
421
+ createTable: (e) => {
422
+ e.setColumnFilters = (o) => {
423
+ const t = e.getAllLeafColumns(), n = (i) => {
424
+ var r;
425
+ return (r = I(o, i)) == null ? void 0 : r.filter((l) => {
426
+ const u = t.find((g) => g.id === l.id);
427
+ if (u) {
428
+ const g = u.getFilterFn();
429
+ if (oe(g, l.value, u))
430
+ return !1;
431
+ }
432
+ return !0;
433
+ });
434
+ };
435
+ e.options.onColumnFiltersChange == null || e.options.onColumnFiltersChange(n);
436
+ }, e.resetColumnFilters = (o) => {
437
+ var t, n;
438
+ e.setColumnFilters(o ? [] : (t = (n = e.initialState) == null ? void 0 : n.columnFilters) != null ? t : []);
439
+ }, e.getPreFilteredRowModel = () => e.getCoreRowModel(), e.getFilteredRowModel = () => (!e._getFilteredRowModel && e.options.getFilteredRowModel && (e._getFilteredRowModel = e.options.getFilteredRowModel(e)), e.options.manualFiltering || !e._getFilteredRowModel ? e.getPreFilteredRowModel() : e._getFilteredRowModel());
440
+ }
441
+ };
442
+ function oe(e, o, t) {
443
+ return (e && e.autoRemove ? e.autoRemove(o, t) : !1) || typeof o > "u" || typeof o == "string" && !o;
444
+ }
445
+ const _e = (e, o, t) => t.reduce((n, i) => {
446
+ const r = i.getValue(e);
447
+ return n + (typeof r == "number" ? r : 0);
448
+ }, 0), Fe = (e, o, t) => {
449
+ let n;
450
+ return t.forEach((i) => {
451
+ const r = i.getValue(e);
452
+ r != null && (n > r || n === void 0 && r >= r) && (n = r);
453
+ }), n;
454
+ }, $e = (e, o, t) => {
455
+ let n;
456
+ return t.forEach((i) => {
457
+ const r = i.getValue(e);
458
+ r != null && (n < r || n === void 0 && r >= r) && (n = r);
459
+ }), n;
460
+ }, Ve = (e, o, t) => {
461
+ let n, i;
462
+ return t.forEach((r) => {
463
+ const l = r.getValue(e);
464
+ l != null && (n === void 0 ? l >= l && (n = i = l) : (n > l && (n = l), i < l && (i = l)));
465
+ }), [n, i];
466
+ }, Me = (e, o) => {
467
+ let t = 0, n = 0;
468
+ if (o.forEach((i) => {
469
+ let r = i.getValue(e);
470
+ r != null && (r = +r) >= r && (++t, n += r);
471
+ }), t) return n / t;
472
+ }, Pe = (e, o) => {
473
+ if (!o.length)
474
+ return;
475
+ const t = o.map((r) => r.getValue(e));
476
+ if (!Se(t))
477
+ return;
478
+ if (t.length === 1)
479
+ return t[0];
480
+ const n = Math.floor(t.length / 2), i = t.sort((r, l) => r - l);
481
+ return t.length % 2 !== 0 ? i[n] : (i[n - 1] + i[n]) / 2;
482
+ }, Ie = (e, o) => Array.from(new Set(o.map((t) => t.getValue(e))).values()), xe = (e, o) => new Set(o.map((t) => t.getValue(e))).size, Ee = (e, o) => o.length, z = {
483
+ sum: _e,
484
+ min: Fe,
485
+ max: $e,
486
+ extent: Ve,
487
+ mean: Me,
488
+ median: Pe,
489
+ unique: Ie,
490
+ uniqueCount: xe,
491
+ count: Ee
492
+ }, De = {
493
+ getDefaultColumnDef: () => ({
494
+ aggregatedCell: (e) => {
495
+ var o, t;
496
+ return (o = (t = e.getValue()) == null || t.toString == null ? void 0 : t.toString()) != null ? o : null;
497
+ },
498
+ aggregationFn: "auto"
499
+ }),
500
+ getInitialState: (e) => ({
501
+ grouping: [],
502
+ ...e
503
+ }),
504
+ getDefaultOptions: (e) => ({
505
+ onGroupingChange: $("grouping", e),
506
+ groupedColumnMode: "reorder"
507
+ }),
508
+ createColumn: (e, o) => {
509
+ e.toggleGrouping = () => {
510
+ o.setGrouping((t) => t != null && t.includes(e.id) ? t.filter((n) => n !== e.id) : [...t ?? [], e.id]);
511
+ }, e.getCanGroup = () => {
512
+ var t, n;
513
+ return ((t = e.columnDef.enableGrouping) != null ? t : !0) && ((n = o.options.enableGrouping) != null ? n : !0) && (!!e.accessorFn || !!e.columnDef.getGroupingValue);
514
+ }, e.getIsGrouped = () => {
515
+ var t;
516
+ return (t = o.getState().grouping) == null ? void 0 : t.includes(e.id);
517
+ }, e.getGroupedIndex = () => {
518
+ var t;
519
+ return (t = o.getState().grouping) == null ? void 0 : t.indexOf(e.id);
520
+ }, e.getToggleGroupingHandler = () => {
521
+ const t = e.getCanGroup();
522
+ return () => {
523
+ t && e.toggleGrouping();
524
+ };
525
+ }, e.getAutoAggregationFn = () => {
526
+ const t = o.getCoreRowModel().flatRows[0], n = t == null ? void 0 : t.getValue(e.id);
527
+ if (typeof n == "number")
528
+ return z.sum;
529
+ if (Object.prototype.toString.call(n) === "[object Date]")
530
+ return z.extent;
531
+ }, e.getAggregationFn = () => {
532
+ var t, n;
533
+ if (!e)
534
+ throw new Error();
535
+ return A(e.columnDef.aggregationFn) ? e.columnDef.aggregationFn : e.columnDef.aggregationFn === "auto" ? e.getAutoAggregationFn() : (t = (n = o.options.aggregationFns) == null ? void 0 : n[e.columnDef.aggregationFn]) != null ? t : z[e.columnDef.aggregationFn];
536
+ };
537
+ },
538
+ createTable: (e) => {
539
+ e.setGrouping = (o) => e.options.onGroupingChange == null ? void 0 : e.options.onGroupingChange(o), e.resetGrouping = (o) => {
540
+ var t, n;
541
+ e.setGrouping(o ? [] : (t = (n = e.initialState) == null ? void 0 : n.grouping) != null ? t : []);
542
+ }, e.getPreGroupedRowModel = () => e.getFilteredRowModel(), e.getGroupedRowModel = () => (!e._getGroupedRowModel && e.options.getGroupedRowModel && (e._getGroupedRowModel = e.options.getGroupedRowModel(e)), e.options.manualGrouping || !e._getGroupedRowModel ? e.getPreGroupedRowModel() : e._getGroupedRowModel());
543
+ },
544
+ createRow: (e, o) => {
545
+ e.getIsGrouped = () => !!e.groupingColumnId, e.getGroupingValue = (t) => {
546
+ if (e._groupingValuesCache.hasOwnProperty(t))
547
+ return e._groupingValuesCache[t];
548
+ const n = o.getColumn(t);
549
+ return n != null && n.columnDef.getGroupingValue ? (e._groupingValuesCache[t] = n.columnDef.getGroupingValue(e.original), e._groupingValuesCache[t]) : e.getValue(t);
550
+ }, e._groupingValuesCache = {};
551
+ },
552
+ createCell: (e, o, t, n) => {
553
+ e.getIsGrouped = () => o.getIsGrouped() && o.id === t.groupingColumnId, e.getIsPlaceholder = () => !e.getIsGrouped() && o.getIsGrouped(), e.getIsAggregated = () => {
554
+ var i;
555
+ return !e.getIsGrouped() && !e.getIsPlaceholder() && !!((i = t.subRows) != null && i.length);
556
+ };
557
+ }
558
+ };
559
+ function ye(e, o, t) {
560
+ if (!(o != null && o.length) || !t)
561
+ return e;
562
+ const n = e.filter((r) => !o.includes(r.id));
563
+ return t === "remove" ? n : [...o.map((r) => e.find((l) => l.id === r)).filter(Boolean), ...n];
564
+ }
565
+ const Ge = {
566
+ getInitialState: (e) => ({
567
+ columnOrder: [],
568
+ ...e
569
+ }),
570
+ getDefaultOptions: (e) => ({
571
+ onColumnOrderChange: $("columnOrder", e)
572
+ }),
573
+ createColumn: (e, o) => {
574
+ e.getIndex = m((t) => [y(o, t)], (t) => t.findIndex((n) => n.id === e.id), C(o.options, "debugColumns", "getIndex")), e.getIsFirstColumn = (t) => {
575
+ var n;
576
+ return ((n = y(o, t)[0]) == null ? void 0 : n.id) === e.id;
577
+ }, e.getIsLastColumn = (t) => {
578
+ var n;
579
+ const i = y(o, t);
580
+ return ((n = i[i.length - 1]) == null ? void 0 : n.id) === e.id;
581
+ };
582
+ },
583
+ createTable: (e) => {
584
+ e.setColumnOrder = (o) => e.options.onColumnOrderChange == null ? void 0 : e.options.onColumnOrderChange(o), e.resetColumnOrder = (o) => {
585
+ var t;
586
+ e.setColumnOrder(o ? [] : (t = e.initialState.columnOrder) != null ? t : []);
587
+ }, e._getOrderColumnsFn = m(() => [e.getState().columnOrder, e.getState().grouping, e.options.groupedColumnMode], (o, t, n) => (i) => {
588
+ let r = [];
589
+ if (!(o != null && o.length))
590
+ r = i;
591
+ else {
592
+ const l = [...o], u = [...i];
593
+ for (; u.length && l.length; ) {
594
+ const g = l.shift(), a = u.findIndex((f) => f.id === g);
595
+ a > -1 && r.push(u.splice(a, 1)[0]);
596
+ }
597
+ r = [...r, ...u];
598
+ }
599
+ return ye(r, t, n);
600
+ }, C(e.options, "debugTable", "_getOrderColumnsFn"));
601
+ }
602
+ }, O = () => ({
603
+ left: [],
604
+ right: []
605
+ }), He = {
606
+ getInitialState: (e) => ({
607
+ columnPinning: O(),
608
+ ...e
609
+ }),
610
+ getDefaultOptions: (e) => ({
611
+ onColumnPinningChange: $("columnPinning", e)
612
+ }),
613
+ createColumn: (e, o) => {
614
+ e.pin = (t) => {
615
+ const n = e.getLeafColumns().map((i) => i.id).filter(Boolean);
616
+ o.setColumnPinning((i) => {
617
+ var r, l;
618
+ if (t === "right") {
619
+ var u, g;
620
+ return {
621
+ left: ((u = i == null ? void 0 : i.left) != null ? u : []).filter((S) => !(n != null && n.includes(S))),
622
+ right: [...((g = i == null ? void 0 : i.right) != null ? g : []).filter((S) => !(n != null && n.includes(S))), ...n]
623
+ };
624
+ }
625
+ if (t === "left") {
626
+ var a, f;
627
+ return {
628
+ left: [...((a = i == null ? void 0 : i.left) != null ? a : []).filter((S) => !(n != null && n.includes(S))), ...n],
629
+ right: ((f = i == null ? void 0 : i.right) != null ? f : []).filter((S) => !(n != null && n.includes(S)))
630
+ };
631
+ }
632
+ return {
633
+ left: ((r = i == null ? void 0 : i.left) != null ? r : []).filter((S) => !(n != null && n.includes(S))),
634
+ right: ((l = i == null ? void 0 : i.right) != null ? l : []).filter((S) => !(n != null && n.includes(S)))
635
+ };
636
+ });
637
+ }, e.getCanPin = () => e.getLeafColumns().some((n) => {
638
+ var i, r, l;
639
+ return ((i = n.columnDef.enablePinning) != null ? i : !0) && ((r = (l = o.options.enableColumnPinning) != null ? l : o.options.enablePinning) != null ? r : !0);
640
+ }), e.getIsPinned = () => {
641
+ const t = e.getLeafColumns().map((u) => u.id), {
642
+ left: n,
643
+ right: i
644
+ } = o.getState().columnPinning, r = t.some((u) => n == null ? void 0 : n.includes(u)), l = t.some((u) => i == null ? void 0 : i.includes(u));
645
+ return r ? "left" : l ? "right" : !1;
646
+ }, e.getPinnedIndex = () => {
647
+ var t, n;
648
+ const i = e.getIsPinned();
649
+ return i ? (t = (n = o.getState().columnPinning) == null || (n = n[i]) == null ? void 0 : n.indexOf(e.id)) != null ? t : -1 : 0;
650
+ };
651
+ },
652
+ createRow: (e, o) => {
653
+ e.getCenterVisibleCells = m(() => [e._getAllVisibleCells(), o.getState().columnPinning.left, o.getState().columnPinning.right], (t, n, i) => {
654
+ const r = [...n ?? [], ...i ?? []];
655
+ return t.filter((l) => !r.includes(l.column.id));
656
+ }, C(o.options, "debugRows", "getCenterVisibleCells")), e.getLeftVisibleCells = m(() => [e._getAllVisibleCells(), o.getState().columnPinning.left], (t, n) => (n ?? []).map((r) => t.find((l) => l.column.id === r)).filter(Boolean).map((r) => ({
657
+ ...r,
658
+ position: "left"
659
+ })), C(o.options, "debugRows", "getLeftVisibleCells")), e.getRightVisibleCells = m(() => [e._getAllVisibleCells(), o.getState().columnPinning.right], (t, n) => (n ?? []).map((r) => t.find((l) => l.column.id === r)).filter(Boolean).map((r) => ({
660
+ ...r,
661
+ position: "right"
662
+ })), C(o.options, "debugRows", "getRightVisibleCells"));
663
+ },
664
+ createTable: (e) => {
665
+ e.setColumnPinning = (o) => e.options.onColumnPinningChange == null ? void 0 : e.options.onColumnPinningChange(o), e.resetColumnPinning = (o) => {
666
+ var t, n;
667
+ return e.setColumnPinning(o ? O() : (t = (n = e.initialState) == null ? void 0 : n.columnPinning) != null ? t : O());
668
+ }, e.getIsSomeColumnsPinned = (o) => {
669
+ var t;
670
+ const n = e.getState().columnPinning;
671
+ if (!o) {
672
+ var i, r;
673
+ return !!((i = n.left) != null && i.length || (r = n.right) != null && r.length);
674
+ }
675
+ return !!((t = n[o]) != null && t.length);
676
+ }, e.getLeftLeafColumns = m(() => [e.getAllLeafColumns(), e.getState().columnPinning.left], (o, t) => (t ?? []).map((n) => o.find((i) => i.id === n)).filter(Boolean), C(e.options, "debugColumns", "getLeftLeafColumns")), e.getRightLeafColumns = m(() => [e.getAllLeafColumns(), e.getState().columnPinning.right], (o, t) => (t ?? []).map((n) => o.find((i) => i.id === n)).filter(Boolean), C(e.options, "debugColumns", "getRightLeafColumns")), e.getCenterLeafColumns = m(() => [e.getAllLeafColumns(), e.getState().columnPinning.left, e.getState().columnPinning.right], (o, t, n) => {
677
+ const i = [...t ?? [], ...n ?? []];
678
+ return o.filter((r) => !i.includes(r.id));
679
+ }, C(e.options, "debugColumns", "getCenterLeafColumns"));
680
+ }
681
+ };
682
+ function Le(e) {
683
+ return e || (typeof document < "u" ? document : null);
684
+ }
685
+ const H = {
686
+ size: 150,
687
+ minSize: 20,
688
+ maxSize: Number.MAX_SAFE_INTEGER
689
+ }, B = () => ({
690
+ startOffset: null,
691
+ startSize: null,
692
+ deltaOffset: null,
693
+ deltaPercentage: null,
694
+ isResizingColumn: !1,
695
+ columnSizingStart: []
696
+ }), Ae = {
697
+ getDefaultColumnDef: () => H,
698
+ getInitialState: (e) => ({
699
+ columnSizing: {},
700
+ columnSizingInfo: B(),
701
+ ...e
702
+ }),
703
+ getDefaultOptions: (e) => ({
704
+ columnResizeMode: "onEnd",
705
+ columnResizeDirection: "ltr",
706
+ onColumnSizingChange: $("columnSizing", e),
707
+ onColumnSizingInfoChange: $("columnSizingInfo", e)
708
+ }),
709
+ createColumn: (e, o) => {
710
+ e.getSize = () => {
711
+ var t, n, i;
712
+ const r = o.getState().columnSizing[e.id];
713
+ return Math.min(Math.max((t = e.columnDef.minSize) != null ? t : H.minSize, (n = r ?? e.columnDef.size) != null ? n : H.size), (i = e.columnDef.maxSize) != null ? i : H.maxSize);
714
+ }, e.getStart = m((t) => [t, y(o, t), o.getState().columnSizing], (t, n) => n.slice(0, e.getIndex(t)).reduce((i, r) => i + r.getSize(), 0), C(o.options, "debugColumns", "getStart")), e.getAfter = m((t) => [t, y(o, t), o.getState().columnSizing], (t, n) => n.slice(e.getIndex(t) + 1).reduce((i, r) => i + r.getSize(), 0), C(o.options, "debugColumns", "getAfter")), e.resetSize = () => {
715
+ o.setColumnSizing((t) => {
716
+ let {
717
+ [e.id]: n,
718
+ ...i
719
+ } = t;
720
+ return i;
721
+ });
722
+ }, e.getCanResize = () => {
723
+ var t, n;
724
+ return ((t = e.columnDef.enableResizing) != null ? t : !0) && ((n = o.options.enableColumnResizing) != null ? n : !0);
725
+ }, e.getIsResizing = () => o.getState().columnSizingInfo.isResizingColumn === e.id;
726
+ },
727
+ createHeader: (e, o) => {
728
+ e.getSize = () => {
729
+ let t = 0;
730
+ const n = (i) => {
731
+ if (i.subHeaders.length)
732
+ i.subHeaders.forEach(n);
733
+ else {
734
+ var r;
735
+ t += (r = i.column.getSize()) != null ? r : 0;
736
+ }
737
+ };
738
+ return n(e), t;
739
+ }, e.getStart = () => {
740
+ if (e.index > 0) {
741
+ const t = e.headerGroup.headers[e.index - 1];
742
+ return t.getStart() + t.getSize();
743
+ }
744
+ return 0;
745
+ }, e.getResizeHandler = (t) => {
746
+ const n = o.getColumn(e.column.id), i = n == null ? void 0 : n.getCanResize();
747
+ return (r) => {
748
+ if (!n || !i || (r.persist == null || r.persist(), T(r) && r.touches && r.touches.length > 1))
749
+ return;
750
+ const l = e.getSize(), u = e ? e.getLeafHeaders().map((w) => [w.column.id, w.column.getSize()]) : [[n.id, n.getSize()]], g = T(r) ? Math.round(r.touches[0].clientX) : r.clientX, a = {}, f = (w, h) => {
751
+ typeof h == "number" && (o.setColumnSizingInfo((v) => {
752
+ var M, F;
753
+ const E = o.options.columnResizeDirection === "rtl" ? -1 : 1, b = (h - ((M = v == null ? void 0 : v.startOffset) != null ? M : 0)) * E, ee = Math.max(b / ((F = v == null ? void 0 : v.startSize) != null ? F : 0), -0.999999);
754
+ return v.columnSizingStart.forEach((ce) => {
755
+ let [pe, te] = ce;
756
+ a[pe] = Math.round(Math.max(te + te * ee, 0) * 100) / 100;
757
+ }), {
758
+ ...v,
759
+ deltaOffset: b,
760
+ deltaPercentage: ee
761
+ };
762
+ }), (o.options.columnResizeMode === "onChange" || w === "end") && o.setColumnSizing((v) => ({
763
+ ...v,
764
+ ...a
765
+ })));
766
+ }, S = (w) => f("move", w), d = (w) => {
767
+ f("end", w), o.setColumnSizingInfo((h) => ({
768
+ ...h,
769
+ isResizingColumn: !1,
770
+ startOffset: null,
771
+ startSize: null,
772
+ deltaOffset: null,
773
+ deltaPercentage: null,
774
+ columnSizingStart: []
775
+ }));
776
+ }, s = Le(t), c = {
777
+ moveHandler: (w) => S(w.clientX),
778
+ upHandler: (w) => {
779
+ s == null || s.removeEventListener("mousemove", c.moveHandler), s == null || s.removeEventListener("mouseup", c.upHandler), d(w.clientX);
780
+ }
781
+ }, p = {
782
+ moveHandler: (w) => (w.cancelable && (w.preventDefault(), w.stopPropagation()), S(w.touches[0].clientX), !1),
783
+ upHandler: (w) => {
784
+ var h;
785
+ s == null || s.removeEventListener("touchmove", p.moveHandler), s == null || s.removeEventListener("touchend", p.upHandler), w.cancelable && (w.preventDefault(), w.stopPropagation()), d((h = w.touches[0]) == null ? void 0 : h.clientX);
786
+ }
787
+ }, R = ze() ? {
788
+ passive: !1
789
+ } : !1;
790
+ T(r) ? (s == null || s.addEventListener("touchmove", p.moveHandler, R), s == null || s.addEventListener("touchend", p.upHandler, R)) : (s == null || s.addEventListener("mousemove", c.moveHandler, R), s == null || s.addEventListener("mouseup", c.upHandler, R)), o.setColumnSizingInfo((w) => ({
791
+ ...w,
792
+ startOffset: g,
793
+ startSize: l,
794
+ deltaOffset: 0,
795
+ deltaPercentage: 0,
796
+ columnSizingStart: u,
797
+ isResizingColumn: n.id
798
+ }));
799
+ };
800
+ };
801
+ },
802
+ createTable: (e) => {
803
+ e.setColumnSizing = (o) => e.options.onColumnSizingChange == null ? void 0 : e.options.onColumnSizingChange(o), e.setColumnSizingInfo = (o) => e.options.onColumnSizingInfoChange == null ? void 0 : e.options.onColumnSizingInfoChange(o), e.resetColumnSizing = (o) => {
804
+ var t;
805
+ e.setColumnSizing(o ? {} : (t = e.initialState.columnSizing) != null ? t : {});
806
+ }, e.resetHeaderSizeInfo = (o) => {
807
+ var t;
808
+ e.setColumnSizingInfo(o ? B() : (t = e.initialState.columnSizingInfo) != null ? t : B());
809
+ }, e.getTotalSize = () => {
810
+ var o, t;
811
+ return (o = (t = e.getHeaderGroups()[0]) == null ? void 0 : t.headers.reduce((n, i) => n + i.getSize(), 0)) != null ? o : 0;
812
+ }, e.getLeftTotalSize = () => {
813
+ var o, t;
814
+ return (o = (t = e.getLeftHeaderGroups()[0]) == null ? void 0 : t.headers.reduce((n, i) => n + i.getSize(), 0)) != null ? o : 0;
815
+ }, e.getCenterTotalSize = () => {
816
+ var o, t;
817
+ return (o = (t = e.getCenterHeaderGroups()[0]) == null ? void 0 : t.headers.reduce((n, i) => n + i.getSize(), 0)) != null ? o : 0;
818
+ }, e.getRightTotalSize = () => {
819
+ var o, t;
820
+ return (o = (t = e.getRightHeaderGroups()[0]) == null ? void 0 : t.headers.reduce((n, i) => n + i.getSize(), 0)) != null ? o : 0;
821
+ };
822
+ }
823
+ };
824
+ let L = null;
825
+ function ze() {
826
+ if (typeof L == "boolean") return L;
827
+ let e = !1;
828
+ try {
829
+ const o = {
830
+ get passive() {
831
+ return e = !0, !1;
832
+ }
833
+ }, t = () => {
834
+ };
835
+ window.addEventListener("test", t, o), window.removeEventListener("test", t);
836
+ } catch {
837
+ e = !1;
838
+ }
839
+ return L = e, L;
840
+ }
841
+ function T(e) {
842
+ return e.type === "touchstart";
843
+ }
844
+ const Oe = {
845
+ getInitialState: (e) => ({
846
+ columnVisibility: {},
847
+ ...e
848
+ }),
849
+ getDefaultOptions: (e) => ({
850
+ onColumnVisibilityChange: $("columnVisibility", e)
851
+ }),
852
+ createColumn: (e, o) => {
853
+ e.toggleVisibility = (t) => {
854
+ e.getCanHide() && o.setColumnVisibility((n) => ({
855
+ ...n,
856
+ [e.id]: t ?? !e.getIsVisible()
857
+ }));
858
+ }, e.getIsVisible = () => {
859
+ var t, n;
860
+ const i = e.columns;
861
+ return (t = i.length ? i.some((r) => r.getIsVisible()) : (n = o.getState().columnVisibility) == null ? void 0 : n[e.id]) != null ? t : !0;
862
+ }, e.getCanHide = () => {
863
+ var t, n;
864
+ return ((t = e.columnDef.enableHiding) != null ? t : !0) && ((n = o.options.enableHiding) != null ? n : !0);
865
+ }, e.getToggleVisibilityHandler = () => (t) => {
866
+ e.toggleVisibility == null || e.toggleVisibility(t.target.checked);
867
+ };
868
+ },
869
+ createRow: (e, o) => {
870
+ e._getAllVisibleCells = m(() => [e.getAllCells(), o.getState().columnVisibility], (t) => t.filter((n) => n.column.getIsVisible()), C(o.options, "debugRows", "_getAllVisibleCells")), e.getVisibleCells = m(() => [e.getLeftVisibleCells(), e.getCenterVisibleCells(), e.getRightVisibleCells()], (t, n, i) => [...t, ...n, ...i], C(o.options, "debugRows", "getVisibleCells"));
871
+ },
872
+ createTable: (e) => {
873
+ const o = (t, n) => m(() => [n(), n().filter((i) => i.getIsVisible()).map((i) => i.id).join("_")], (i) => i.filter((r) => r.getIsVisible == null ? void 0 : r.getIsVisible()), C(e.options, "debugColumns", t));
874
+ e.getVisibleFlatColumns = o("getVisibleFlatColumns", () => e.getAllFlatColumns()), e.getVisibleLeafColumns = o("getVisibleLeafColumns", () => e.getAllLeafColumns()), e.getLeftVisibleLeafColumns = o("getLeftVisibleLeafColumns", () => e.getLeftLeafColumns()), e.getRightVisibleLeafColumns = o("getRightVisibleLeafColumns", () => e.getRightLeafColumns()), e.getCenterVisibleLeafColumns = o("getCenterVisibleLeafColumns", () => e.getCenterLeafColumns()), e.setColumnVisibility = (t) => e.options.onColumnVisibilityChange == null ? void 0 : e.options.onColumnVisibilityChange(t), e.resetColumnVisibility = (t) => {
875
+ var n;
876
+ e.setColumnVisibility(t ? {} : (n = e.initialState.columnVisibility) != null ? n : {});
877
+ }, e.toggleAllColumnsVisible = (t) => {
878
+ var n;
879
+ t = (n = t) != null ? n : !e.getIsAllColumnsVisible(), e.setColumnVisibility(e.getAllLeafColumns().reduce((i, r) => ({
880
+ ...i,
881
+ [r.id]: t || !(r.getCanHide != null && r.getCanHide())
882
+ }), {}));
883
+ }, e.getIsAllColumnsVisible = () => !e.getAllLeafColumns().some((t) => !(t.getIsVisible != null && t.getIsVisible())), e.getIsSomeColumnsVisible = () => e.getAllLeafColumns().some((t) => t.getIsVisible == null ? void 0 : t.getIsVisible()), e.getToggleAllColumnsVisibilityHandler = () => (t) => {
884
+ var n;
885
+ e.toggleAllColumnsVisible((n = t.target) == null ? void 0 : n.checked);
886
+ };
887
+ }
888
+ };
889
+ function y(e, o) {
890
+ return o ? o === "center" ? e.getCenterVisibleLeafColumns() : o === "left" ? e.getLeftVisibleLeafColumns() : e.getRightVisibleLeafColumns() : e.getVisibleLeafColumns();
891
+ }
892
+ const Be = {
893
+ createTable: (e) => {
894
+ e._getGlobalFacetedRowModel = e.options.getFacetedRowModel && e.options.getFacetedRowModel(e, "__global__"), e.getGlobalFacetedRowModel = () => e.options.manualFiltering || !e._getGlobalFacetedRowModel ? e.getPreFilteredRowModel() : e._getGlobalFacetedRowModel(), e._getGlobalFacetedUniqueValues = e.options.getFacetedUniqueValues && e.options.getFacetedUniqueValues(e, "__global__"), e.getGlobalFacetedUniqueValues = () => e._getGlobalFacetedUniqueValues ? e._getGlobalFacetedUniqueValues() : /* @__PURE__ */ new Map(), e._getGlobalFacetedMinMaxValues = e.options.getFacetedMinMaxValues && e.options.getFacetedMinMaxValues(e, "__global__"), e.getGlobalFacetedMinMaxValues = () => {
895
+ if (e._getGlobalFacetedMinMaxValues)
896
+ return e._getGlobalFacetedMinMaxValues();
897
+ };
898
+ }
899
+ }, Te = {
900
+ getInitialState: (e) => ({
901
+ globalFilter: void 0,
902
+ ...e
903
+ }),
904
+ getDefaultOptions: (e) => ({
905
+ onGlobalFilterChange: $("globalFilter", e),
906
+ globalFilterFn: "auto",
907
+ getColumnCanGlobalFilter: (o) => {
908
+ var t;
909
+ const n = (t = e.getCoreRowModel().flatRows[0]) == null || (t = t._getAllCellsByColumnId()[o.id]) == null ? void 0 : t.getValue();
910
+ return typeof n == "string" || typeof n == "number";
911
+ }
912
+ }),
913
+ createColumn: (e, o) => {
914
+ e.getCanGlobalFilter = () => {
915
+ var t, n, i, r;
916
+ return ((t = e.columnDef.enableGlobalFilter) != null ? t : !0) && ((n = o.options.enableGlobalFilter) != null ? n : !0) && ((i = o.options.enableFilters) != null ? i : !0) && ((r = o.options.getColumnCanGlobalFilter == null ? void 0 : o.options.getColumnCanGlobalFilter(e)) != null ? r : !0) && !!e.accessorFn;
917
+ };
918
+ },
919
+ createTable: (e) => {
920
+ e.getGlobalAutoFilterFn = () => P.includesString, e.getGlobalFilterFn = () => {
921
+ var o, t;
922
+ const {
923
+ globalFilterFn: n
924
+ } = e.options;
925
+ return A(n) ? n : n === "auto" ? e.getGlobalAutoFilterFn() : (o = (t = e.options.filterFns) == null ? void 0 : t[n]) != null ? o : P[n];
926
+ }, e.setGlobalFilter = (o) => {
927
+ e.options.onGlobalFilterChange == null || e.options.onGlobalFilterChange(o);
928
+ }, e.resetGlobalFilter = (o) => {
929
+ e.setGlobalFilter(o ? void 0 : e.initialState.globalFilter);
930
+ };
931
+ }
932
+ }, qe = {
933
+ getInitialState: (e) => ({
934
+ expanded: {},
935
+ ...e
936
+ }),
937
+ getDefaultOptions: (e) => ({
938
+ onExpandedChange: $("expanded", e),
939
+ paginateExpandedRows: !0
940
+ }),
941
+ createTable: (e) => {
942
+ let o = !1, t = !1;
943
+ e._autoResetExpanded = () => {
944
+ var n, i;
945
+ if (!o) {
946
+ e._queue(() => {
947
+ o = !0;
948
+ });
949
+ return;
950
+ }
951
+ if ((n = (i = e.options.autoResetAll) != null ? i : e.options.autoResetExpanded) != null ? n : !e.options.manualExpanding) {
952
+ if (t) return;
953
+ t = !0, e._queue(() => {
954
+ e.resetExpanded(), t = !1;
955
+ });
956
+ }
957
+ }, e.setExpanded = (n) => e.options.onExpandedChange == null ? void 0 : e.options.onExpandedChange(n), e.toggleAllRowsExpanded = (n) => {
958
+ n ?? !e.getIsAllRowsExpanded() ? e.setExpanded(!0) : e.setExpanded({});
959
+ }, e.resetExpanded = (n) => {
960
+ var i, r;
961
+ e.setExpanded(n ? {} : (i = (r = e.initialState) == null ? void 0 : r.expanded) != null ? i : {});
962
+ }, e.getCanSomeRowsExpand = () => e.getPrePaginationRowModel().flatRows.some((n) => n.getCanExpand()), e.getToggleAllRowsExpandedHandler = () => (n) => {
963
+ n.persist == null || n.persist(), e.toggleAllRowsExpanded();
964
+ }, e.getIsSomeRowsExpanded = () => {
965
+ const n = e.getState().expanded;
966
+ return n === !0 || Object.values(n).some(Boolean);
967
+ }, e.getIsAllRowsExpanded = () => {
968
+ const n = e.getState().expanded;
969
+ return typeof n == "boolean" ? n === !0 : !(!Object.keys(n).length || e.getRowModel().flatRows.some((i) => !i.getIsExpanded()));
970
+ }, e.getExpandedDepth = () => {
971
+ let n = 0;
972
+ return (e.getState().expanded === !0 ? Object.keys(e.getRowModel().rowsById) : Object.keys(e.getState().expanded)).forEach((r) => {
973
+ const l = r.split(".");
974
+ n = Math.max(n, l.length);
975
+ }), n;
976
+ }, e.getPreExpandedRowModel = () => e.getSortedRowModel(), e.getExpandedRowModel = () => (!e._getExpandedRowModel && e.options.getExpandedRowModel && (e._getExpandedRowModel = e.options.getExpandedRowModel(e)), e.options.manualExpanding || !e._getExpandedRowModel ? e.getPreExpandedRowModel() : e._getExpandedRowModel());
977
+ },
978
+ createRow: (e, o) => {
979
+ e.toggleExpanded = (t) => {
980
+ o.setExpanded((n) => {
981
+ var i;
982
+ const r = n === !0 ? !0 : !!(n != null && n[e.id]);
983
+ let l = {};
984
+ if (n === !0 ? Object.keys(o.getRowModel().rowsById).forEach((u) => {
985
+ l[u] = !0;
986
+ }) : l = n, t = (i = t) != null ? i : !r, !r && t)
987
+ return {
988
+ ...l,
989
+ [e.id]: !0
990
+ };
991
+ if (r && !t) {
992
+ const {
993
+ [e.id]: u,
994
+ ...g
995
+ } = l;
996
+ return g;
997
+ }
998
+ return n;
999
+ });
1000
+ }, e.getIsExpanded = () => {
1001
+ var t;
1002
+ const n = o.getState().expanded;
1003
+ return !!((t = o.options.getIsRowExpanded == null ? void 0 : o.options.getIsRowExpanded(e)) != null ? t : n === !0 || n != null && n[e.id]);
1004
+ }, e.getCanExpand = () => {
1005
+ var t, n, i;
1006
+ return (t = o.options.getRowCanExpand == null ? void 0 : o.options.getRowCanExpand(e)) != null ? t : ((n = o.options.enableExpanding) != null ? n : !0) && !!((i = e.subRows) != null && i.length);
1007
+ }, e.getIsAllParentsExpanded = () => {
1008
+ let t = !0, n = e;
1009
+ for (; t && n.parentId; )
1010
+ n = o.getRow(n.parentId, !0), t = n.getIsExpanded();
1011
+ return t;
1012
+ }, e.getToggleExpandedHandler = () => {
1013
+ const t = e.getCanExpand();
1014
+ return () => {
1015
+ t && e.toggleExpanded();
1016
+ };
1017
+ };
1018
+ }
1019
+ }, U = 0, j = 10, q = () => ({
1020
+ pageIndex: U,
1021
+ pageSize: j
1022
+ }), Ne = {
1023
+ getInitialState: (e) => ({
1024
+ ...e,
1025
+ pagination: {
1026
+ ...q(),
1027
+ ...e == null ? void 0 : e.pagination
1028
+ }
1029
+ }),
1030
+ getDefaultOptions: (e) => ({
1031
+ onPaginationChange: $("pagination", e)
1032
+ }),
1033
+ createTable: (e) => {
1034
+ let o = !1, t = !1;
1035
+ e._autoResetPageIndex = () => {
1036
+ var n, i;
1037
+ if (!o) {
1038
+ e._queue(() => {
1039
+ o = !0;
1040
+ });
1041
+ return;
1042
+ }
1043
+ if ((n = (i = e.options.autoResetAll) != null ? i : e.options.autoResetPageIndex) != null ? n : !e.options.manualPagination) {
1044
+ if (t) return;
1045
+ t = !0, e._queue(() => {
1046
+ e.resetPageIndex(), t = !1;
1047
+ });
1048
+ }
1049
+ }, e.setPagination = (n) => {
1050
+ const i = (r) => I(n, r);
1051
+ return e.options.onPaginationChange == null ? void 0 : e.options.onPaginationChange(i);
1052
+ }, e.resetPagination = (n) => {
1053
+ var i;
1054
+ e.setPagination(n ? q() : (i = e.initialState.pagination) != null ? i : q());
1055
+ }, e.setPageIndex = (n) => {
1056
+ e.setPagination((i) => {
1057
+ let r = I(n, i.pageIndex);
1058
+ const l = typeof e.options.pageCount > "u" || e.options.pageCount === -1 ? Number.MAX_SAFE_INTEGER : e.options.pageCount - 1;
1059
+ return r = Math.max(0, Math.min(r, l)), {
1060
+ ...i,
1061
+ pageIndex: r
1062
+ };
1063
+ });
1064
+ }, e.resetPageIndex = (n) => {
1065
+ var i, r;
1066
+ e.setPageIndex(n ? U : (i = (r = e.initialState) == null || (r = r.pagination) == null ? void 0 : r.pageIndex) != null ? i : U);
1067
+ }, e.resetPageSize = (n) => {
1068
+ var i, r;
1069
+ e.setPageSize(n ? j : (i = (r = e.initialState) == null || (r = r.pagination) == null ? void 0 : r.pageSize) != null ? i : j);
1070
+ }, e.setPageSize = (n) => {
1071
+ e.setPagination((i) => {
1072
+ const r = Math.max(1, I(n, i.pageSize)), l = i.pageSize * i.pageIndex, u = Math.floor(l / r);
1073
+ return {
1074
+ ...i,
1075
+ pageIndex: u,
1076
+ pageSize: r
1077
+ };
1078
+ });
1079
+ }, e.setPageCount = (n) => e.setPagination((i) => {
1080
+ var r;
1081
+ let l = I(n, (r = e.options.pageCount) != null ? r : -1);
1082
+ return typeof l == "number" && (l = Math.max(-1, l)), {
1083
+ ...i,
1084
+ pageCount: l
1085
+ };
1086
+ }), e.getPageOptions = m(() => [e.getPageCount()], (n) => {
1087
+ let i = [];
1088
+ return n && n > 0 && (i = [...new Array(n)].fill(null).map((r, l) => l)), i;
1089
+ }, C(e.options, "debugTable", "getPageOptions")), e.getCanPreviousPage = () => e.getState().pagination.pageIndex > 0, e.getCanNextPage = () => {
1090
+ const {
1091
+ pageIndex: n
1092
+ } = e.getState().pagination, i = e.getPageCount();
1093
+ return i === -1 ? !0 : i === 0 ? !1 : n < i - 1;
1094
+ }, e.previousPage = () => e.setPageIndex((n) => n - 1), e.nextPage = () => e.setPageIndex((n) => n + 1), e.firstPage = () => e.setPageIndex(0), e.lastPage = () => e.setPageIndex(e.getPageCount() - 1), e.getPrePaginationRowModel = () => e.getExpandedRowModel(), e.getPaginationRowModel = () => (!e._getPaginationRowModel && e.options.getPaginationRowModel && (e._getPaginationRowModel = e.options.getPaginationRowModel(e)), e.options.manualPagination || !e._getPaginationRowModel ? e.getPrePaginationRowModel() : e._getPaginationRowModel()), e.getPageCount = () => {
1095
+ var n;
1096
+ return (n = e.options.pageCount) != null ? n : Math.ceil(e.getRowCount() / e.getState().pagination.pageSize);
1097
+ }, e.getRowCount = () => {
1098
+ var n;
1099
+ return (n = e.options.rowCount) != null ? n : e.getPrePaginationRowModel().rows.length;
1100
+ };
1101
+ }
1102
+ }, N = () => ({
1103
+ top: [],
1104
+ bottom: []
1105
+ }), ke = {
1106
+ getInitialState: (e) => ({
1107
+ rowPinning: N(),
1108
+ ...e
1109
+ }),
1110
+ getDefaultOptions: (e) => ({
1111
+ onRowPinningChange: $("rowPinning", e)
1112
+ }),
1113
+ createRow: (e, o) => {
1114
+ e.pin = (t, n, i) => {
1115
+ const r = n ? e.getLeafRows().map((g) => {
1116
+ let {
1117
+ id: a
1118
+ } = g;
1119
+ return a;
1120
+ }) : [], l = i ? e.getParentRows().map((g) => {
1121
+ let {
1122
+ id: a
1123
+ } = g;
1124
+ return a;
1125
+ }) : [], u = /* @__PURE__ */ new Set([...l, e.id, ...r]);
1126
+ o.setRowPinning((g) => {
1127
+ var a, f;
1128
+ if (t === "bottom") {
1129
+ var S, d;
1130
+ return {
1131
+ top: ((S = g == null ? void 0 : g.top) != null ? S : []).filter((p) => !(u != null && u.has(p))),
1132
+ bottom: [...((d = g == null ? void 0 : g.bottom) != null ? d : []).filter((p) => !(u != null && u.has(p))), ...Array.from(u)]
1133
+ };
1134
+ }
1135
+ if (t === "top") {
1136
+ var s, c;
1137
+ return {
1138
+ top: [...((s = g == null ? void 0 : g.top) != null ? s : []).filter((p) => !(u != null && u.has(p))), ...Array.from(u)],
1139
+ bottom: ((c = g == null ? void 0 : g.bottom) != null ? c : []).filter((p) => !(u != null && u.has(p)))
1140
+ };
1141
+ }
1142
+ return {
1143
+ top: ((a = g == null ? void 0 : g.top) != null ? a : []).filter((p) => !(u != null && u.has(p))),
1144
+ bottom: ((f = g == null ? void 0 : g.bottom) != null ? f : []).filter((p) => !(u != null && u.has(p)))
1145
+ };
1146
+ });
1147
+ }, e.getCanPin = () => {
1148
+ var t;
1149
+ const {
1150
+ enableRowPinning: n,
1151
+ enablePinning: i
1152
+ } = o.options;
1153
+ return typeof n == "function" ? n(e) : (t = n ?? i) != null ? t : !0;
1154
+ }, e.getIsPinned = () => {
1155
+ const t = [e.id], {
1156
+ top: n,
1157
+ bottom: i
1158
+ } = o.getState().rowPinning, r = t.some((u) => n == null ? void 0 : n.includes(u)), l = t.some((u) => i == null ? void 0 : i.includes(u));
1159
+ return r ? "top" : l ? "bottom" : !1;
1160
+ }, e.getPinnedIndex = () => {
1161
+ var t, n;
1162
+ const i = e.getIsPinned();
1163
+ if (!i) return -1;
1164
+ const r = (t = i === "top" ? o.getTopRows() : o.getBottomRows()) == null ? void 0 : t.map((l) => {
1165
+ let {
1166
+ id: u
1167
+ } = l;
1168
+ return u;
1169
+ });
1170
+ return (n = r == null ? void 0 : r.indexOf(e.id)) != null ? n : -1;
1171
+ };
1172
+ },
1173
+ createTable: (e) => {
1174
+ e.setRowPinning = (o) => e.options.onRowPinningChange == null ? void 0 : e.options.onRowPinningChange(o), e.resetRowPinning = (o) => {
1175
+ var t, n;
1176
+ return e.setRowPinning(o ? N() : (t = (n = e.initialState) == null ? void 0 : n.rowPinning) != null ? t : N());
1177
+ }, e.getIsSomeRowsPinned = (o) => {
1178
+ var t;
1179
+ const n = e.getState().rowPinning;
1180
+ if (!o) {
1181
+ var i, r;
1182
+ return !!((i = n.top) != null && i.length || (r = n.bottom) != null && r.length);
1183
+ }
1184
+ return !!((t = n[o]) != null && t.length);
1185
+ }, e._getPinnedRows = (o, t, n) => {
1186
+ var i;
1187
+ return ((i = e.options.keepPinnedRows) == null || i ? (
1188
+ //get all rows that are pinned even if they would not be otherwise visible
1189
+ //account for expanded parent rows, but not pagination or filtering
1190
+ (t ?? []).map((l) => {
1191
+ const u = e.getRow(l, !0);
1192
+ return u.getIsAllParentsExpanded() ? u : null;
1193
+ })
1194
+ ) : (
1195
+ //else get only visible rows that are pinned
1196
+ (t ?? []).map((l) => o.find((u) => u.id === l))
1197
+ )).filter(Boolean).map((l) => ({
1198
+ ...l,
1199
+ position: n
1200
+ }));
1201
+ }, e.getTopRows = m(() => [e.getRowModel().rows, e.getState().rowPinning.top], (o, t) => e._getPinnedRows(o, t, "top"), C(e.options, "debugRows", "getTopRows")), e.getBottomRows = m(() => [e.getRowModel().rows, e.getState().rowPinning.bottom], (o, t) => e._getPinnedRows(o, t, "bottom"), C(e.options, "debugRows", "getBottomRows")), e.getCenterRows = m(() => [e.getRowModel().rows, e.getState().rowPinning.top, e.getState().rowPinning.bottom], (o, t, n) => {
1202
+ const i = /* @__PURE__ */ new Set([...t ?? [], ...n ?? []]);
1203
+ return o.filter((r) => !i.has(r.id));
1204
+ }, C(e.options, "debugRows", "getCenterRows"));
1205
+ }
1206
+ }, Ue = {
1207
+ getInitialState: (e) => ({
1208
+ rowSelection: {},
1209
+ ...e
1210
+ }),
1211
+ getDefaultOptions: (e) => ({
1212
+ onRowSelectionChange: $("rowSelection", e),
1213
+ enableRowSelection: !0,
1214
+ enableMultiRowSelection: !0,
1215
+ enableSubRowSelection: !0
1216
+ // enableGroupingRowSelection: false,
1217
+ // isAdditiveSelectEvent: (e: unknown) => !!e.metaKey,
1218
+ // isInclusiveSelectEvent: (e: unknown) => !!e.shiftKey,
1219
+ }),
1220
+ createTable: (e) => {
1221
+ e.setRowSelection = (o) => e.options.onRowSelectionChange == null ? void 0 : e.options.onRowSelectionChange(o), e.resetRowSelection = (o) => {
1222
+ var t;
1223
+ return e.setRowSelection(o ? {} : (t = e.initialState.rowSelection) != null ? t : {});
1224
+ }, e.toggleAllRowsSelected = (o) => {
1225
+ e.setRowSelection((t) => {
1226
+ o = typeof o < "u" ? o : !e.getIsAllRowsSelected();
1227
+ const n = {
1228
+ ...t
1229
+ }, i = e.getPreGroupedRowModel().flatRows;
1230
+ return o ? i.forEach((r) => {
1231
+ r.getCanSelect() && (n[r.id] = !0);
1232
+ }) : i.forEach((r) => {
1233
+ delete n[r.id];
1234
+ }), n;
1235
+ });
1236
+ }, e.toggleAllPageRowsSelected = (o) => e.setRowSelection((t) => {
1237
+ const n = typeof o < "u" ? o : !e.getIsAllPageRowsSelected(), i = {
1238
+ ...t
1239
+ };
1240
+ return e.getRowModel().rows.forEach((r) => {
1241
+ X(i, r.id, n, !0, e);
1242
+ }), i;
1243
+ }), e.getPreSelectedRowModel = () => e.getCoreRowModel(), e.getSelectedRowModel = m(() => [e.getState().rowSelection, e.getCoreRowModel()], (o, t) => Object.keys(o).length ? k(e, t) : {
1244
+ rows: [],
1245
+ flatRows: [],
1246
+ rowsById: {}
1247
+ }, C(e.options, "debugTable", "getSelectedRowModel")), e.getFilteredSelectedRowModel = m(() => [e.getState().rowSelection, e.getFilteredRowModel()], (o, t) => Object.keys(o).length ? k(e, t) : {
1248
+ rows: [],
1249
+ flatRows: [],
1250
+ rowsById: {}
1251
+ }, C(e.options, "debugTable", "getFilteredSelectedRowModel")), e.getGroupedSelectedRowModel = m(() => [e.getState().rowSelection, e.getSortedRowModel()], (o, t) => Object.keys(o).length ? k(e, t) : {
1252
+ rows: [],
1253
+ flatRows: [],
1254
+ rowsById: {}
1255
+ }, C(e.options, "debugTable", "getGroupedSelectedRowModel")), e.getIsAllRowsSelected = () => {
1256
+ const o = e.getFilteredRowModel().flatRows, {
1257
+ rowSelection: t
1258
+ } = e.getState();
1259
+ let n = !!(o.length && Object.keys(t).length);
1260
+ return n && o.some((i) => i.getCanSelect() && !t[i.id]) && (n = !1), n;
1261
+ }, e.getIsAllPageRowsSelected = () => {
1262
+ const o = e.getPaginationRowModel().flatRows.filter((i) => i.getCanSelect()), {
1263
+ rowSelection: t
1264
+ } = e.getState();
1265
+ let n = !!o.length;
1266
+ return n && o.some((i) => !t[i.id]) && (n = !1), n;
1267
+ }, e.getIsSomeRowsSelected = () => {
1268
+ var o;
1269
+ const t = Object.keys((o = e.getState().rowSelection) != null ? o : {}).length;
1270
+ return t > 0 && t < e.getFilteredRowModel().flatRows.length;
1271
+ }, e.getIsSomePageRowsSelected = () => {
1272
+ const o = e.getPaginationRowModel().flatRows;
1273
+ return e.getIsAllPageRowsSelected() ? !1 : o.filter((t) => t.getCanSelect()).some((t) => t.getIsSelected() || t.getIsSomeSelected());
1274
+ }, e.getToggleAllRowsSelectedHandler = () => (o) => {
1275
+ e.toggleAllRowsSelected(o.target.checked);
1276
+ }, e.getToggleAllPageRowsSelectedHandler = () => (o) => {
1277
+ e.toggleAllPageRowsSelected(o.target.checked);
1278
+ };
1279
+ },
1280
+ createRow: (e, o) => {
1281
+ e.toggleSelected = (t, n) => {
1282
+ const i = e.getIsSelected();
1283
+ o.setRowSelection((r) => {
1284
+ var l;
1285
+ if (t = typeof t < "u" ? t : !i, e.getCanSelect() && i === t)
1286
+ return r;
1287
+ const u = {
1288
+ ...r
1289
+ };
1290
+ return X(u, e.id, t, (l = n == null ? void 0 : n.selectChildren) != null ? l : !0, o), u;
1291
+ });
1292
+ }, e.getIsSelected = () => {
1293
+ const {
1294
+ rowSelection: t
1295
+ } = o.getState();
1296
+ return Y(e, t);
1297
+ }, e.getIsSomeSelected = () => {
1298
+ const {
1299
+ rowSelection: t
1300
+ } = o.getState();
1301
+ return K(e, t) === "some";
1302
+ }, e.getIsAllSubRowsSelected = () => {
1303
+ const {
1304
+ rowSelection: t
1305
+ } = o.getState();
1306
+ return K(e, t) === "all";
1307
+ }, e.getCanSelect = () => {
1308
+ var t;
1309
+ return typeof o.options.enableRowSelection == "function" ? o.options.enableRowSelection(e) : (t = o.options.enableRowSelection) != null ? t : !0;
1310
+ }, e.getCanSelectSubRows = () => {
1311
+ var t;
1312
+ return typeof o.options.enableSubRowSelection == "function" ? o.options.enableSubRowSelection(e) : (t = o.options.enableSubRowSelection) != null ? t : !0;
1313
+ }, e.getCanMultiSelect = () => {
1314
+ var t;
1315
+ return typeof o.options.enableMultiRowSelection == "function" ? o.options.enableMultiRowSelection(e) : (t = o.options.enableMultiRowSelection) != null ? t : !0;
1316
+ }, e.getToggleSelectedHandler = () => {
1317
+ const t = e.getCanSelect();
1318
+ return (n) => {
1319
+ var i;
1320
+ t && e.toggleSelected((i = n.target) == null ? void 0 : i.checked);
1321
+ };
1322
+ };
1323
+ }
1324
+ }, X = (e, o, t, n, i) => {
1325
+ var r;
1326
+ const l = i.getRow(o, !0);
1327
+ t ? (l.getCanMultiSelect() || Object.keys(e).forEach((u) => delete e[u]), l.getCanSelect() && (e[o] = !0)) : delete e[o], n && (r = l.subRows) != null && r.length && l.getCanSelectSubRows() && l.subRows.forEach((u) => X(e, u.id, t, n, i));
1328
+ };
1329
+ function k(e, o) {
1330
+ const t = e.getState().rowSelection, n = [], i = {}, r = function(l, u) {
1331
+ return l.map((g) => {
1332
+ var a;
1333
+ const f = Y(g, t);
1334
+ if (f && (n.push(g), i[g.id] = g), (a = g.subRows) != null && a.length && (g = {
1335
+ ...g,
1336
+ subRows: r(g.subRows)
1337
+ }), f)
1338
+ return g;
1339
+ }).filter(Boolean);
1340
+ };
1341
+ return {
1342
+ rows: r(o.rows),
1343
+ flatRows: n,
1344
+ rowsById: i
1345
+ };
1346
+ }
1347
+ function Y(e, o) {
1348
+ var t;
1349
+ return (t = o[e.id]) != null ? t : !1;
1350
+ }
1351
+ function K(e, o, t) {
1352
+ var n;
1353
+ if (!((n = e.subRows) != null && n.length)) return !1;
1354
+ let i = !0, r = !1;
1355
+ return e.subRows.forEach((l) => {
1356
+ if (!(r && !i) && (l.getCanSelect() && (Y(l, o) ? r = !0 : i = !1), l.subRows && l.subRows.length)) {
1357
+ const u = K(l, o);
1358
+ u === "all" ? r = !0 : (u === "some" && (r = !0), i = !1);
1359
+ }
1360
+ }), i ? "all" : r ? "some" : !1;
1361
+ }
1362
+ const J = /([0-9]+)/gm, je = (e, o, t) => fe(x(e.getValue(t)).toLowerCase(), x(o.getValue(t)).toLowerCase()), Xe = (e, o, t) => fe(x(e.getValue(t)), x(o.getValue(t))), Ke = (e, o, t) => Z(x(e.getValue(t)).toLowerCase(), x(o.getValue(t)).toLowerCase()), Je = (e, o, t) => Z(x(e.getValue(t)), x(o.getValue(t))), Qe = (e, o, t) => {
1363
+ const n = e.getValue(t), i = o.getValue(t);
1364
+ return n > i ? 1 : n < i ? -1 : 0;
1365
+ }, We = (e, o, t) => Z(e.getValue(t), o.getValue(t));
1366
+ function Z(e, o) {
1367
+ return e === o ? 0 : e > o ? 1 : -1;
1368
+ }
1369
+ function x(e) {
1370
+ return typeof e == "number" ? isNaN(e) || e === 1 / 0 || e === -1 / 0 ? "" : String(e) : typeof e == "string" ? e : "";
1371
+ }
1372
+ function fe(e, o) {
1373
+ const t = e.split(J).filter(Boolean), n = o.split(J).filter(Boolean);
1374
+ for (; t.length && n.length; ) {
1375
+ const i = t.shift(), r = n.shift(), l = parseInt(i, 10), u = parseInt(r, 10), g = [l, u].sort();
1376
+ if (isNaN(g[0])) {
1377
+ if (i > r)
1378
+ return 1;
1379
+ if (r > i)
1380
+ return -1;
1381
+ continue;
1382
+ }
1383
+ if (isNaN(g[1]))
1384
+ return isNaN(l) ? -1 : 1;
1385
+ if (l > u)
1386
+ return 1;
1387
+ if (u > l)
1388
+ return -1;
1389
+ }
1390
+ return t.length - n.length;
1391
+ }
1392
+ const D = {
1393
+ alphanumeric: je,
1394
+ alphanumericCaseSensitive: Xe,
1395
+ text: Ke,
1396
+ textCaseSensitive: Je,
1397
+ datetime: Qe,
1398
+ basic: We
1399
+ }, Ye = {
1400
+ getInitialState: (e) => ({
1401
+ sorting: [],
1402
+ ...e
1403
+ }),
1404
+ getDefaultColumnDef: () => ({
1405
+ sortingFn: "auto",
1406
+ sortUndefined: 1
1407
+ }),
1408
+ getDefaultOptions: (e) => ({
1409
+ onSortingChange: $("sorting", e),
1410
+ isMultiSortEvent: (o) => o.shiftKey
1411
+ }),
1412
+ createColumn: (e, o) => {
1413
+ e.getAutoSortingFn = () => {
1414
+ const t = o.getFilteredRowModel().flatRows.slice(10);
1415
+ let n = !1;
1416
+ for (const i of t) {
1417
+ const r = i == null ? void 0 : i.getValue(e.id);
1418
+ if (Object.prototype.toString.call(r) === "[object Date]")
1419
+ return D.datetime;
1420
+ if (typeof r == "string" && (n = !0, r.split(J).length > 1))
1421
+ return D.alphanumeric;
1422
+ }
1423
+ return n ? D.text : D.basic;
1424
+ }, e.getAutoSortDir = () => {
1425
+ const t = o.getFilteredRowModel().flatRows[0];
1426
+ return typeof (t == null ? void 0 : t.getValue(e.id)) == "string" ? "asc" : "desc";
1427
+ }, e.getSortingFn = () => {
1428
+ var t, n;
1429
+ if (!e)
1430
+ throw new Error();
1431
+ return A(e.columnDef.sortingFn) ? e.columnDef.sortingFn : e.columnDef.sortingFn === "auto" ? e.getAutoSortingFn() : (t = (n = o.options.sortingFns) == null ? void 0 : n[e.columnDef.sortingFn]) != null ? t : D[e.columnDef.sortingFn];
1432
+ }, e.toggleSorting = (t, n) => {
1433
+ const i = e.getNextSortingOrder(), r = typeof t < "u" && t !== null;
1434
+ o.setSorting((l) => {
1435
+ const u = l == null ? void 0 : l.find((s) => s.id === e.id), g = l == null ? void 0 : l.findIndex((s) => s.id === e.id);
1436
+ let a = [], f, S = r ? t : i === "desc";
1437
+ if (l != null && l.length && e.getCanMultiSort() && n ? u ? f = "toggle" : f = "add" : l != null && l.length && g !== l.length - 1 ? f = "replace" : u ? f = "toggle" : f = "replace", f === "toggle" && (r || i || (f = "remove")), f === "add") {
1438
+ var d;
1439
+ a = [...l, {
1440
+ id: e.id,
1441
+ desc: S
1442
+ }], a.splice(0, a.length - ((d = o.options.maxMultiSortColCount) != null ? d : Number.MAX_SAFE_INTEGER));
1443
+ } else f === "toggle" ? a = l.map((s) => s.id === e.id ? {
1444
+ ...s,
1445
+ desc: S
1446
+ } : s) : f === "remove" ? a = l.filter((s) => s.id !== e.id) : a = [{
1447
+ id: e.id,
1448
+ desc: S
1449
+ }];
1450
+ return a;
1451
+ });
1452
+ }, e.getFirstSortDir = () => {
1453
+ var t, n;
1454
+ return ((t = (n = e.columnDef.sortDescFirst) != null ? n : o.options.sortDescFirst) != null ? t : e.getAutoSortDir() === "desc") ? "desc" : "asc";
1455
+ }, e.getNextSortingOrder = (t) => {
1456
+ var n, i;
1457
+ const r = e.getFirstSortDir(), l = e.getIsSorted();
1458
+ return l ? l !== r && ((n = o.options.enableSortingRemoval) == null || n) && // If enableSortRemove, enable in general
1459
+ (!(t && (i = o.options.enableMultiRemove) != null) || i) ? !1 : l === "desc" ? "asc" : "desc" : r;
1460
+ }, e.getCanSort = () => {
1461
+ var t, n;
1462
+ return ((t = e.columnDef.enableSorting) != null ? t : !0) && ((n = o.options.enableSorting) != null ? n : !0) && !!e.accessorFn;
1463
+ }, e.getCanMultiSort = () => {
1464
+ var t, n;
1465
+ return (t = (n = e.columnDef.enableMultiSort) != null ? n : o.options.enableMultiSort) != null ? t : !!e.accessorFn;
1466
+ }, e.getIsSorted = () => {
1467
+ var t;
1468
+ const n = (t = o.getState().sorting) == null ? void 0 : t.find((i) => i.id === e.id);
1469
+ return n ? n.desc ? "desc" : "asc" : !1;
1470
+ }, e.getSortIndex = () => {
1471
+ var t, n;
1472
+ return (t = (n = o.getState().sorting) == null ? void 0 : n.findIndex((i) => i.id === e.id)) != null ? t : -1;
1473
+ }, e.clearSorting = () => {
1474
+ o.setSorting((t) => t != null && t.length ? t.filter((n) => n.id !== e.id) : []);
1475
+ }, e.getToggleSortingHandler = () => {
1476
+ const t = e.getCanSort();
1477
+ return (n) => {
1478
+ t && (n.persist == null || n.persist(), e.toggleSorting == null || e.toggleSorting(void 0, e.getCanMultiSort() ? o.options.isMultiSortEvent == null ? void 0 : o.options.isMultiSortEvent(n) : !1));
1479
+ };
1480
+ };
1481
+ },
1482
+ createTable: (e) => {
1483
+ e.setSorting = (o) => e.options.onSortingChange == null ? void 0 : e.options.onSortingChange(o), e.resetSorting = (o) => {
1484
+ var t, n;
1485
+ e.setSorting(o ? [] : (t = (n = e.initialState) == null ? void 0 : n.sorting) != null ? t : []);
1486
+ }, e.getPreSortedRowModel = () => e.getGroupedRowModel(), e.getSortedRowModel = () => (!e._getSortedRowModel && e.options.getSortedRowModel && (e._getSortedRowModel = e.options.getSortedRowModel(e)), e.options.manualSorting || !e._getSortedRowModel ? e.getPreSortedRowModel() : e._getSortedRowModel());
1487
+ }
1488
+ }, Ze = [
1489
+ we,
1490
+ Oe,
1491
+ Ge,
1492
+ He,
1493
+ he,
1494
+ ve,
1495
+ Be,
1496
+ //depends on ColumnFaceting
1497
+ Te,
1498
+ //depends on ColumnFiltering
1499
+ Ye,
1500
+ De,
1501
+ //depends on RowSorting
1502
+ qe,
1503
+ Ne,
1504
+ ke,
1505
+ Ue,
1506
+ Ae
1507
+ ];
1508
+ function ot(e) {
1509
+ var o, t;
1510
+ process.env.NODE_ENV !== "production" && (e.debugAll || e.debugTable) && console.info("Creating Table Instance...");
1511
+ const n = [...Ze, ...(o = e._features) != null ? o : []];
1512
+ let i = {
1513
+ _features: n
1514
+ };
1515
+ const r = i._features.reduce((d, s) => Object.assign(d, s.getDefaultOptions == null ? void 0 : s.getDefaultOptions(i)), {}), l = (d) => i.options.mergeOptions ? i.options.mergeOptions(r, d) : {
1516
+ ...r,
1517
+ ...d
1518
+ };
1519
+ let g = {
1520
+ ...{},
1521
+ ...(t = e.initialState) != null ? t : {}
1522
+ };
1523
+ i._features.forEach((d) => {
1524
+ var s;
1525
+ g = (s = d.getInitialState == null ? void 0 : d.getInitialState(g)) != null ? s : g;
1526
+ });
1527
+ const a = [];
1528
+ let f = !1;
1529
+ const S = {
1530
+ _features: n,
1531
+ options: {
1532
+ ...r,
1533
+ ...e
1534
+ },
1535
+ initialState: g,
1536
+ _queue: (d) => {
1537
+ a.push(d), f || (f = !0, Promise.resolve().then(() => {
1538
+ for (; a.length; )
1539
+ a.shift()();
1540
+ f = !1;
1541
+ }).catch((s) => setTimeout(() => {
1542
+ throw s;
1543
+ })));
1544
+ },
1545
+ reset: () => {
1546
+ i.setState(i.initialState);
1547
+ },
1548
+ setOptions: (d) => {
1549
+ const s = I(d, i.options);
1550
+ i.options = l(s);
1551
+ },
1552
+ getState: () => i.options.state,
1553
+ setState: (d) => {
1554
+ i.options.onStateChange == null || i.options.onStateChange(d);
1555
+ },
1556
+ _getRowId: (d, s, c) => {
1557
+ var p;
1558
+ return (p = i.options.getRowId == null ? void 0 : i.options.getRowId(d, s, c)) != null ? p : `${c ? [c.id, s].join(".") : s}`;
1559
+ },
1560
+ getCoreRowModel: () => (i._getCoreRowModel || (i._getCoreRowModel = i.options.getCoreRowModel(i)), i._getCoreRowModel()),
1561
+ // The final calls start at the bottom of the model,
1562
+ // expanded rows, which then work their way up
1563
+ getRowModel: () => i.getPaginationRowModel(),
1564
+ //in next version, we should just pass in the row model as the optional 2nd arg
1565
+ getRow: (d, s) => {
1566
+ let c = (s ? i.getPrePaginationRowModel() : i.getRowModel()).rowsById[d];
1567
+ if (!c && (c = i.getCoreRowModel().rowsById[d], !c))
1568
+ throw process.env.NODE_ENV !== "production" ? new Error(`getRow could not find row with ID: ${d}`) : new Error();
1569
+ return c;
1570
+ },
1571
+ _getDefaultColumnDef: m(() => [i.options.defaultColumn], (d) => {
1572
+ var s;
1573
+ return d = (s = d) != null ? s : {}, {
1574
+ header: (c) => {
1575
+ const p = c.header.column.columnDef;
1576
+ return p.accessorKey ? p.accessorKey : p.accessorFn ? p.id : null;
1577
+ },
1578
+ // footer: props => props.header.column.id,
1579
+ cell: (c) => {
1580
+ var p, R;
1581
+ return (p = (R = c.renderValue()) == null || R.toString == null ? void 0 : R.toString()) != null ? p : null;
1582
+ },
1583
+ ...i._features.reduce((c, p) => Object.assign(c, p.getDefaultColumnDef == null ? void 0 : p.getDefaultColumnDef()), {}),
1584
+ ...d
1585
+ };
1586
+ }, C(e, "debugColumns", "_getDefaultColumnDef")),
1587
+ _getColumnDefs: () => i.options.columns,
1588
+ getAllColumns: m(() => [i._getColumnDefs()], (d) => {
1589
+ const s = function(c, p, R) {
1590
+ return R === void 0 && (R = 0), c.map((w) => {
1591
+ const h = Re(i, w, R, p), v = w;
1592
+ return h.columns = v.columns ? s(v.columns, h, R + 1) : [], h;
1593
+ });
1594
+ };
1595
+ return s(d);
1596
+ }, C(e, "debugColumns", "getAllColumns")),
1597
+ getAllFlatColumns: m(() => [i.getAllColumns()], (d) => d.flatMap((s) => s.getFlatColumns()), C(e, "debugColumns", "getAllFlatColumns")),
1598
+ _getAllFlatColumnsById: m(() => [i.getAllFlatColumns()], (d) => d.reduce((s, c) => (s[c.id] = c, s), {}), C(e, "debugColumns", "getAllFlatColumnsById")),
1599
+ getAllLeafColumns: m(() => [i.getAllColumns(), i._getOrderColumnsFn()], (d, s) => {
1600
+ let c = d.flatMap((p) => p.getLeafColumns());
1601
+ return s(c);
1602
+ }, C(e, "debugColumns", "getAllLeafColumns")),
1603
+ getColumn: (d) => {
1604
+ const s = i._getAllFlatColumnsById()[d];
1605
+ return process.env.NODE_ENV !== "production" && !s && console.error(`[Table] Column with id '${d}' does not exist.`), s;
1606
+ }
1607
+ };
1608
+ Object.assign(i, S);
1609
+ for (let d = 0; d < i._features.length; d++) {
1610
+ const s = i._features[d];
1611
+ s == null || s.createTable == null || s.createTable(i);
1612
+ }
1613
+ return i;
1614
+ }
1615
+ function it() {
1616
+ return (e) => m(() => [e.options.data], (o) => {
1617
+ const t = {
1618
+ rows: [],
1619
+ flatRows: [],
1620
+ rowsById: {}
1621
+ }, n = function(i, r, l) {
1622
+ r === void 0 && (r = 0);
1623
+ const u = [];
1624
+ for (let a = 0; a < i.length; a++) {
1625
+ const f = Q(e, e._getRowId(i[a], a, l), i[a], a, r, void 0, l == null ? void 0 : l.id);
1626
+ if (t.flatRows.push(f), t.rowsById[f.id] = f, u.push(f), e.options.getSubRows) {
1627
+ var g;
1628
+ f.originalSubRows = e.options.getSubRows(i[a], a), (g = f.originalSubRows) != null && g.length && (f.subRows = n(f.originalSubRows, r + 1, f));
1629
+ }
1630
+ }
1631
+ return u;
1632
+ };
1633
+ return t.rows = n(o), t;
1634
+ }, C(e.options, "debugTable", "getRowModel", () => e._autoResetPageIndex()));
1635
+ }
1636
+ function be(e) {
1637
+ const o = [], t = (n) => {
1638
+ var i;
1639
+ o.push(n), (i = n.subRows) != null && i.length && n.getIsExpanded() && n.subRows.forEach(t);
1640
+ };
1641
+ return e.rows.forEach(t), {
1642
+ rows: o,
1643
+ flatRows: e.flatRows,
1644
+ rowsById: e.rowsById
1645
+ };
1646
+ }
1647
+ function et(e, o, t) {
1648
+ return t.options.filterFromLeafRows ? tt(e, o, t) : nt(e, o, t);
1649
+ }
1650
+ function tt(e, o, t) {
1651
+ var n;
1652
+ const i = [], r = {}, l = (n = t.options.maxLeafRowFilterDepth) != null ? n : 100, u = function(g, a) {
1653
+ a === void 0 && (a = 0);
1654
+ const f = [];
1655
+ for (let d = 0; d < g.length; d++) {
1656
+ var S;
1657
+ let s = g[d];
1658
+ const c = Q(t, s.id, s.original, s.index, s.depth, void 0, s.parentId);
1659
+ if (c.columnFilters = s.columnFilters, (S = s.subRows) != null && S.length && a < l) {
1660
+ if (c.subRows = u(s.subRows, a + 1), s = c, o(s) && !c.subRows.length) {
1661
+ f.push(s), r[s.id] = s, i.push(s);
1662
+ continue;
1663
+ }
1664
+ if (o(s) || c.subRows.length) {
1665
+ f.push(s), r[s.id] = s, i.push(s);
1666
+ continue;
1667
+ }
1668
+ } else
1669
+ s = c, o(s) && (f.push(s), r[s.id] = s, i.push(s));
1670
+ }
1671
+ return f;
1672
+ };
1673
+ return {
1674
+ rows: u(e),
1675
+ flatRows: i,
1676
+ rowsById: r
1677
+ };
1678
+ }
1679
+ function nt(e, o, t) {
1680
+ var n;
1681
+ const i = [], r = {}, l = (n = t.options.maxLeafRowFilterDepth) != null ? n : 100, u = function(g, a) {
1682
+ a === void 0 && (a = 0);
1683
+ const f = [];
1684
+ for (let d = 0; d < g.length; d++) {
1685
+ let s = g[d];
1686
+ if (o(s)) {
1687
+ var S;
1688
+ if ((S = s.subRows) != null && S.length && a < l) {
1689
+ const p = Q(t, s.id, s.original, s.index, s.depth, void 0, s.parentId);
1690
+ p.subRows = u(s.subRows, a + 1), s = p;
1691
+ }
1692
+ f.push(s), i.push(s), r[s.id] = s;
1693
+ }
1694
+ }
1695
+ return f;
1696
+ };
1697
+ return {
1698
+ rows: u(e),
1699
+ flatRows: i,
1700
+ rowsById: r
1701
+ };
1702
+ }
1703
+ function rt() {
1704
+ return (e) => m(() => [e.getPreFilteredRowModel(), e.getState().columnFilters, e.getState().globalFilter], (o, t, n) => {
1705
+ if (!o.rows.length || !(t != null && t.length) && !n) {
1706
+ for (let d = 0; d < o.flatRows.length; d++)
1707
+ o.flatRows[d].columnFilters = {}, o.flatRows[d].columnFiltersMeta = {};
1708
+ return o;
1709
+ }
1710
+ const i = [], r = [];
1711
+ (t ?? []).forEach((d) => {
1712
+ var s;
1713
+ const c = e.getColumn(d.id);
1714
+ if (!c)
1715
+ return;
1716
+ const p = c.getFilterFn();
1717
+ if (!p) {
1718
+ process.env.NODE_ENV !== "production" && console.warn(`Could not find a valid 'column.filterFn' for column with the ID: ${c.id}.`);
1719
+ return;
1720
+ }
1721
+ i.push({
1722
+ id: d.id,
1723
+ filterFn: p,
1724
+ resolvedValue: (s = p.resolveFilterValue == null ? void 0 : p.resolveFilterValue(d.value)) != null ? s : d.value
1725
+ });
1726
+ });
1727
+ const l = (t ?? []).map((d) => d.id), u = e.getGlobalFilterFn(), g = e.getAllLeafColumns().filter((d) => d.getCanGlobalFilter());
1728
+ n && u && g.length && (l.push("__global__"), g.forEach((d) => {
1729
+ var s;
1730
+ r.push({
1731
+ id: d.id,
1732
+ filterFn: u,
1733
+ resolvedValue: (s = u.resolveFilterValue == null ? void 0 : u.resolveFilterValue(n)) != null ? s : n
1734
+ });
1735
+ }));
1736
+ let a, f;
1737
+ for (let d = 0; d < o.flatRows.length; d++) {
1738
+ const s = o.flatRows[d];
1739
+ if (s.columnFilters = {}, i.length)
1740
+ for (let c = 0; c < i.length; c++) {
1741
+ a = i[c];
1742
+ const p = a.id;
1743
+ s.columnFilters[p] = a.filterFn(s, p, a.resolvedValue, (R) => {
1744
+ s.columnFiltersMeta[p] = R;
1745
+ });
1746
+ }
1747
+ if (r.length) {
1748
+ for (let c = 0; c < r.length; c++) {
1749
+ f = r[c];
1750
+ const p = f.id;
1751
+ if (f.filterFn(s, p, f.resolvedValue, (R) => {
1752
+ s.columnFiltersMeta[p] = R;
1753
+ })) {
1754
+ s.columnFilters.__global__ = !0;
1755
+ break;
1756
+ }
1757
+ }
1758
+ s.columnFilters.__global__ !== !0 && (s.columnFilters.__global__ = !1);
1759
+ }
1760
+ }
1761
+ const S = (d) => {
1762
+ for (let s = 0; s < l.length; s++)
1763
+ if (d.columnFilters[l[s]] === !1)
1764
+ return !1;
1765
+ return !0;
1766
+ };
1767
+ return et(o.rows, S, e);
1768
+ }, C(e.options, "debugTable", "getFilteredRowModel", () => e._autoResetPageIndex()));
1769
+ }
1770
+ function lt(e) {
1771
+ return (o) => m(() => [o.getState().pagination, o.getPrePaginationRowModel(), o.options.paginateExpandedRows ? void 0 : o.getState().expanded], (t, n) => {
1772
+ if (!n.rows.length)
1773
+ return n;
1774
+ const {
1775
+ pageSize: i,
1776
+ pageIndex: r
1777
+ } = t;
1778
+ let {
1779
+ rows: l,
1780
+ flatRows: u,
1781
+ rowsById: g
1782
+ } = n;
1783
+ const a = i * r, f = a + i;
1784
+ l = l.slice(a, f);
1785
+ let S;
1786
+ o.options.paginateExpandedRows ? S = {
1787
+ rows: l,
1788
+ flatRows: u,
1789
+ rowsById: g
1790
+ } : S = be({
1791
+ rows: l,
1792
+ flatRows: u,
1793
+ rowsById: g
1794
+ }), S.flatRows = [];
1795
+ const d = (s) => {
1796
+ S.flatRows.push(s), s.subRows.length && s.subRows.forEach(d);
1797
+ };
1798
+ return S.rows.forEach(d), S;
1799
+ }, C(o.options, "debugTable", "getPaginationRowModel"));
1800
+ }
1801
+ function st() {
1802
+ return (e) => m(() => [e.getState().sorting, e.getPreSortedRowModel()], (o, t) => {
1803
+ if (!t.rows.length || !(o != null && o.length))
1804
+ return t;
1805
+ const n = e.getState().sorting, i = [], r = n.filter((g) => {
1806
+ var a;
1807
+ return (a = e.getColumn(g.id)) == null ? void 0 : a.getCanSort();
1808
+ }), l = {};
1809
+ r.forEach((g) => {
1810
+ const a = e.getColumn(g.id);
1811
+ a && (l[g.id] = {
1812
+ sortUndefined: a.columnDef.sortUndefined,
1813
+ invertSorting: a.columnDef.invertSorting,
1814
+ sortingFn: a.getSortingFn()
1815
+ });
1816
+ });
1817
+ const u = (g) => {
1818
+ const a = g.map((f) => ({
1819
+ ...f
1820
+ }));
1821
+ return a.sort((f, S) => {
1822
+ for (let s = 0; s < r.length; s += 1) {
1823
+ var d;
1824
+ const c = r[s], p = l[c.id], R = p.sortUndefined, w = (d = c == null ? void 0 : c.desc) != null ? d : !1;
1825
+ let h = 0;
1826
+ if (R) {
1827
+ const v = f.getValue(c.id), M = S.getValue(c.id), F = v === void 0, E = M === void 0;
1828
+ if (F || E) {
1829
+ if (R === "first") return F ? -1 : 1;
1830
+ if (R === "last") return F ? 1 : -1;
1831
+ h = F && E ? 0 : F ? R : -R;
1832
+ }
1833
+ }
1834
+ if (h === 0 && (h = p.sortingFn(f, S, c.id)), h !== 0)
1835
+ return w && (h *= -1), p.invertSorting && (h *= -1), h;
1836
+ }
1837
+ return f.index - S.index;
1838
+ }), a.forEach((f) => {
1839
+ var S;
1840
+ i.push(f), (S = f.subRows) != null && S.length && (f.subRows = u(f.subRows));
1841
+ }), a;
1842
+ };
1843
+ return {
1844
+ rows: u(t.rows),
1845
+ flatRows: i,
1846
+ rowsById: t.rowsById
1847
+ };
1848
+ }, C(e.options, "debugTable", "getSortedRowModel", () => e._autoResetPageIndex()));
1849
+ }
1850
+ export {
1851
+ he as ColumnFaceting,
1852
+ ve as ColumnFiltering,
1853
+ De as ColumnGrouping,
1854
+ Ge as ColumnOrdering,
1855
+ He as ColumnPinning,
1856
+ Ae as ColumnSizing,
1857
+ Oe as ColumnVisibility,
1858
+ Be as GlobalFaceting,
1859
+ Te as GlobalFiltering,
1860
+ we as Headers,
1861
+ qe as RowExpanding,
1862
+ Ne as RowPagination,
1863
+ ke as RowPinning,
1864
+ Ue as RowSelection,
1865
+ Ye as RowSorting,
1866
+ y as _getVisibleLeafColumns,
1867
+ z as aggregationFns,
1868
+ G as buildHeaderGroups,
1869
+ Ce as createCell,
1870
+ Re as createColumn,
1871
+ Q as createRow,
1872
+ ot as createTable,
1873
+ H as defaultColumnSizing,
1874
+ be as expandRows,
1875
+ P as filterFns,
1876
+ me as flattenBy,
1877
+ I as functionalUpdate,
1878
+ it as getCoreRowModel,
1879
+ rt as getFilteredRowModel,
1880
+ C as getMemoOptions,
1881
+ lt as getPaginationRowModel,
1882
+ st as getSortedRowModel,
1883
+ A as isFunction,
1884
+ Se as isNumberArray,
1885
+ Y as isRowSelected,
1886
+ K as isSubRowSelected,
1887
+ $ as makeStateUpdater,
1888
+ m as memo,
1889
+ ye as orderColumns,
1890
+ ze as passiveEventSupported,
1891
+ J as reSplitAlphaNumeric,
1892
+ k as selectRowsFn,
1893
+ oe as shouldAutoRemoveFilter,
1894
+ D as sortingFns
1895
+ };
1896
+ //# sourceMappingURL=index.js.map