@epilot/volt-ui-experimental-griffel 0.1.2 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (920) hide show
  1. package/README.md +9 -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.d.ts +21 -0
  29. package/dist/components/data-table/data-table-body.js +84 -0
  30. package/dist/components/data-table/data-table-body.js.map +1 -0
  31. package/dist/components/data-table/data-table-column-header.d.ts +13 -0
  32. package/dist/components/data-table/data-table-column-header.js +128 -0
  33. package/dist/components/data-table/data-table-column-header.js.map +1 -0
  34. package/dist/components/data-table/data-table-column-visibility.d.ts +21 -0
  35. package/dist/components/data-table/data-table-column-visibility.js +79 -0
  36. package/dist/components/data-table/data-table-column-visibility.js.map +1 -0
  37. package/dist/components/data-table/data-table-content.d.ts +13 -0
  38. package/dist/components/data-table/data-table-content.js +100 -0
  39. package/dist/components/data-table/data-table-content.js.map +1 -0
  40. package/dist/components/data-table/data-table-context.d.ts +66 -0
  41. package/dist/components/data-table/data-table-context.js +10 -0
  42. package/dist/components/data-table/data-table-context.js.map +1 -0
  43. package/dist/components/data-table/data-table-error.d.ts +21 -0
  44. package/dist/components/data-table/data-table-error.js +84 -0
  45. package/dist/components/data-table/data-table-error.js.map +1 -0
  46. package/dist/components/data-table/data-table-header.d.ts +14 -0
  47. package/dist/components/data-table/data-table-header.js +100 -0
  48. package/dist/components/data-table/data-table-header.js.map +1 -0
  49. package/dist/components/data-table/data-table-loading.d.ts +13 -0
  50. package/dist/components/data-table/data-table-loading.js +39 -0
  51. package/dist/components/data-table/data-table-loading.js.map +1 -0
  52. package/dist/components/data-table/data-table-pagination.d.ts +17 -0
  53. package/dist/components/data-table/data-table-pagination.js +30 -0
  54. package/dist/components/data-table/data-table-pagination.js.map +1 -0
  55. package/dist/components/data-table/data-table-pinning-utils.d.ts +17 -0
  56. package/dist/components/data-table/data-table-pinning-utils.js +25 -0
  57. package/dist/components/data-table/data-table-pinning-utils.js.map +1 -0
  58. package/dist/components/data-table/data-table-row.d.ts +14 -0
  59. package/dist/components/data-table/data-table-row.js +163 -0
  60. package/dist/components/data-table/data-table-row.js.map +1 -0
  61. package/dist/components/data-table/data-table-toolbar.d.ts +7 -0
  62. package/dist/components/data-table/data-table-toolbar.js +35 -0
  63. package/dist/components/data-table/data-table-toolbar.js.map +1 -0
  64. package/dist/components/data-table/data-table.d.ts +92 -0
  65. package/dist/components/data-table/data-table.js +271 -0
  66. package/dist/components/data-table/data-table.js.map +1 -0
  67. package/dist/components/data-table/get-selected-row-data.d.ts +18 -0
  68. package/dist/components/data-table/get-selected-row-data.js +8 -0
  69. package/dist/components/data-table/get-selected-row-data.js.map +1 -0
  70. package/dist/components/data-table/hooks/index.d.ts +2 -0
  71. package/dist/components/data-table/hooks/use-data-table-content.d.ts +1 -0
  72. package/dist/components/data-table/hooks/use-data-table-content.js +9 -0
  73. package/dist/components/data-table/hooks/use-data-table-content.js.map +1 -0
  74. package/dist/components/data-table/hooks/use-data-table.d.ts +2 -0
  75. package/dist/components/data-table/hooks/use-data-table.js +12 -0
  76. package/dist/components/data-table/hooks/use-data-table.js.map +1 -0
  77. package/dist/components/date-range-picker/date-range-picker.js +97 -95
  78. package/dist/components/date-range-picker/date-range-picker.js.map +1 -1
  79. package/dist/components/date-range-picker/range-calendar.js +20 -20
  80. package/dist/components/date-range-picker/range-calendar.js.map +1 -1
  81. package/dist/components/date-time-picker/calendar.js +159 -153
  82. package/dist/components/date-time-picker/calendar.js.map +1 -1
  83. package/dist/components/date-time-picker/date-time-picker-input.js +25 -25
  84. package/dist/components/date-time-picker/date-time-picker-input.js.map +1 -1
  85. package/dist/components/date-time-picker/date-time-picker-panel.js +22 -22
  86. package/dist/components/date-time-picker/date-time-picker-panel.js.map +1 -1
  87. package/dist/components/date-time-picker/date-time-picker-utils.js +22 -22
  88. package/dist/components/date-time-picker/date-time-picker.js +32 -32
  89. package/dist/components/date-time-picker/date-time-picker.js.map +1 -1
  90. package/dist/components/date-time-picker/time-picker.js +35 -33
  91. package/dist/components/date-time-picker/time-picker.js.map +1 -1
  92. package/dist/components/dialog/dialog.js +48 -46
  93. package/dist/components/dialog/dialog.js.map +1 -1
  94. package/dist/components/drawer/drawer.js +54 -52
  95. package/dist/components/drawer/drawer.js.map +1 -1
  96. package/dist/components/dropdown-menu/dropdown-menu.js +96 -93
  97. package/dist/components/dropdown-menu/dropdown-menu.js.map +1 -1
  98. package/dist/components/field/field-combobox.js +125 -121
  99. package/dist/components/field/field-combobox.js.map +1 -1
  100. package/dist/components/field/field.js +86 -80
  101. package/dist/components/field/field.js.map +1 -1
  102. package/dist/components/label/label.js +49 -39
  103. package/dist/components/label/label.js.map +1 -1
  104. package/dist/components/list/list.js +96 -92
  105. package/dist/components/list/list.js.map +1 -1
  106. package/dist/components/option-card/option-card.js +44 -42
  107. package/dist/components/option-card/option-card.js.map +1 -1
  108. package/dist/components/pill/pill.js +36 -35
  109. package/dist/components/pill/pill.js.map +1 -1
  110. package/dist/components/popover/popover.js +32 -32
  111. package/dist/components/popover/popover.js.map +1 -1
  112. package/dist/components/radio/radio.js +4 -4
  113. package/dist/components/radio/radio.js.map +1 -1
  114. package/dist/components/scroll-overflow/scroll-overflow.js +10 -10
  115. package/dist/components/scroll-overflow/scroll-overflow.js.map +1 -1
  116. package/dist/components/segmented-control/segmented-control.js +21 -20
  117. package/dist/components/segmented-control/segmented-control.js.map +1 -1
  118. package/dist/components/select/select.js +75 -72
  119. package/dist/components/select/select.js.map +1 -1
  120. package/dist/components/separator/separator.js +13 -13
  121. package/dist/components/separator/separator.js.map +1 -1
  122. package/dist/components/skeleton/skeleton.js +3 -3
  123. package/dist/components/skeleton/skeleton.js.map +1 -1
  124. package/dist/components/spinner/spinner.js +9 -9
  125. package/dist/components/spinner/spinner.js.map +1 -1
  126. package/dist/components/switch/switch.js +16 -16
  127. package/dist/components/switch/switch.js.map +1 -1
  128. package/dist/components/table/table-pagination.d.ts +45 -0
  129. package/dist/components/table/table-pagination.js +437 -0
  130. package/dist/components/table/table-pagination.js.map +1 -0
  131. package/dist/components/table/table.js +57 -55
  132. package/dist/components/table/table.js.map +1 -1
  133. package/dist/components/tabs/tabs.js +27 -26
  134. package/dist/components/tabs/tabs.js.map +1 -1
  135. package/dist/components/text/text.js +53 -43
  136. package/dist/components/text/text.js.map +1 -1
  137. package/dist/components/toast/toast.js +64 -60
  138. package/dist/components/toast/toast.js.map +1 -1
  139. package/dist/components/toggle/toggle-group.js +8 -8
  140. package/dist/components/toggle/toggle-group.js.map +1 -1
  141. package/dist/components/toggle/toggle.d.ts +1 -1
  142. package/dist/components/toggle/toggle.js +23 -23
  143. package/dist/components/toggle/toggle.js.map +1 -1
  144. package/dist/components/tooltip/tooltip.js +17 -17
  145. package/dist/components/tooltip/tooltip.js.map +1 -1
  146. package/dist/index.d.ts +20 -2
  147. package/dist/index.js +285 -247
  148. package/dist/index.js.map +1 -1
  149. package/dist/lib/clear-button.js +9 -9
  150. package/dist/lib/clear-button.js.map +1 -1
  151. package/dist/lib/pagination.d.ts +71 -0
  152. package/dist/lib/pagination.js +46 -0
  153. package/dist/lib/pagination.js.map +1 -0
  154. package/dist/{tokens → packages/volt-runtime/dist}/class-salt.generated.js +2 -2
  155. package/dist/packages/volt-runtime/dist/class-salt.generated.js.map +1 -0
  156. package/dist/packages/volt-runtime/dist/renderer/contract.js +8 -0
  157. package/dist/packages/volt-runtime/dist/renderer/contract.js.map +1 -0
  158. package/dist/packages/volt-runtime/dist/renderer/index.js +26 -0
  159. package/dist/packages/volt-runtime/dist/renderer/index.js.map +1 -0
  160. package/dist/{renderer → packages/volt-runtime/dist/renderer}/insertion-point.js +13 -13
  161. package/dist/packages/volt-runtime/dist/renderer/insertion-point.js.map +1 -0
  162. package/dist/packages/volt-runtime/dist/sheet.js +16 -0
  163. package/dist/packages/volt-runtime/dist/sheet.js.map +1 -0
  164. package/dist/packages/volt-runtime/dist/styles/make-styles.js +22 -0
  165. package/dist/packages/volt-runtime/dist/styles/make-styles.js.map +1 -0
  166. package/dist/packages/volt-runtime/dist/vendor/@emotion/hash/dist/emotion-hash.esm.js +23 -0
  167. package/dist/packages/volt-runtime/dist/vendor/@emotion/hash/dist/emotion-hash.esm.js.map +1 -0
  168. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/constants.js +34 -0
  169. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/constants.js.map +1 -0
  170. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/devtools/getAtomicDebugSequenceTree.js +27 -0
  171. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/devtools/getAtomicDebugSequenceTree.js.map +1 -0
  172. package/dist/{node_modules → packages/volt-runtime/dist/vendor}/@griffel/core/src/devtools/getResetDebugSequence.js +5 -5
  173. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/devtools/getResetDebugSequence.js.map +1 -0
  174. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/devtools/getSourceURLfromError.js +18 -0
  175. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/devtools/getSourceURLfromError.js.map +1 -0
  176. package/dist/{node_modules → packages/volt-runtime/dist/vendor}/@griffel/core/src/devtools/injectDevTools.js +11 -11
  177. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/devtools/injectDevTools.js.map +1 -0
  178. package/dist/{node_modules → packages/volt-runtime/dist/vendor}/@griffel/core/src/devtools/isDevToolsEnabled.js +1 -1
  179. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/devtools/isDevToolsEnabled.js.map +1 -0
  180. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/devtools/mergeDebugSequence.js +15 -0
  181. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/devtools/mergeDebugSequence.js.map +1 -0
  182. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/devtools/react-render-tracker/stackTrace.js +40 -0
  183. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/devtools/react-render-tracker/stackTrace.js.map +1 -0
  184. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/devtools/store.js +22 -0
  185. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/devtools/store.js.map +1 -0
  186. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/devtools/utils.js +22 -0
  187. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/devtools/utils.js.map +1 -0
  188. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/index.js +52 -0
  189. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/index.js.map +1 -0
  190. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/insertionFactory.js +10 -0
  191. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/insertionFactory.js.map +1 -0
  192. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/makeResetStyles.js +26 -0
  193. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/makeResetStyles.js.map +1 -0
  194. package/dist/{node_modules → packages/volt-runtime/dist/vendor}/@griffel/core/src/makeStyles.js +15 -15
  195. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/makeStyles.js.map +1 -0
  196. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/mergeClasses.js +49 -0
  197. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/mergeClasses.js.map +1 -0
  198. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/renderer/createDOMRenderer.js +43 -0
  199. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/renderer/createDOMRenderer.js.map +1 -0
  200. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/renderer/createIsomorphicStyleSheet.js +23 -0
  201. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/renderer/createIsomorphicStyleSheet.js.map +1 -0
  202. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/renderer/getStyleSheetForBucket.js +81 -0
  203. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/renderer/getStyleSheetForBucket.js.map +1 -0
  204. package/dist/{node_modules → packages/volt-runtime/dist/vendor}/@griffel/core/src/renderer/safeInsertRule.js +6 -6
  205. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/renderer/safeInsertRule.js.map +1 -0
  206. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/resolveStyleRulesForSlots.js +15 -0
  207. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/resolveStyleRulesForSlots.js.map +1 -0
  208. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/compileAtomicCSSRule.js +28 -0
  209. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/compileAtomicCSSRule.js.map +1 -0
  210. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/compileCSSRules.js +23 -0
  211. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/compileCSSRules.js.map +1 -0
  212. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/compileKeyframeCSS.js +27 -0
  213. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/compileKeyframeCSS.js.map +1 -0
  214. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/compileResetCSSRules.js +31 -0
  215. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/compileResetCSSRules.js.map +1 -0
  216. package/dist/{node_modules → packages/volt-runtime/dist/vendor}/@griffel/core/src/runtime/getStyleBucketName.js +9 -9
  217. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/getStyleBucketName.js.map +1 -0
  218. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/reduceToClassNameForSlots.js +33 -0
  219. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/reduceToClassNameForSlots.js.map +1 -0
  220. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/resolveResetStyleRules.js +95 -0
  221. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/resolveResetStyleRules.js.map +1 -0
  222. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/resolveStyleRules.js +187 -0
  223. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/resolveStyleRules.js.map +1 -0
  224. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/shorthands.js.map +1 -0
  225. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/stylis/globalPlugin.js +29 -0
  226. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/stylis/globalPlugin.js.map +1 -0
  227. package/dist/{node_modules → packages/volt-runtime/dist/vendor}/@griffel/core/src/runtime/stylis/isAtRuleElement.js +5 -5
  228. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/stylis/isAtRuleElement.js.map +1 -0
  229. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/stylis/prefixerPlugin.js +107 -0
  230. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/stylis/prefixerPlugin.js.map +1 -0
  231. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/stylis/rulesheetPlugin.js +9 -0
  232. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/stylis/rulesheetPlugin.js.map +1 -0
  233. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/stylis/scopePlugin.js +41 -0
  234. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/stylis/scopePlugin.js.map +1 -0
  235. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/stylis/sortClassesInAtRulesPlugin.js +8 -0
  236. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/stylis/sortClassesInAtRulesPlugin.js.map +1 -0
  237. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/utils/cssifyObject.js +19 -0
  238. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/utils/cssifyObject.js.map +1 -0
  239. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/utils/generateCombinedMediaQuery.js +7 -0
  240. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/utils/generateCombinedMediaQuery.js.map +1 -0
  241. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/utils/hashClassName.js +11 -0
  242. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/utils/hashClassName.js.map +1 -0
  243. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/utils/hashPropertyKey.js +16 -0
  244. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/utils/hashPropertyKey.js.map +1 -0
  245. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/utils/hashSequence.js +17 -0
  246. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/utils/hashSequence.js.map +1 -0
  247. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/utils/hyphenateProperty.js +16 -0
  248. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/utils/hyphenateProperty.js.map +1 -0
  249. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/utils/isContainerQuerySelector.js +7 -0
  250. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/utils/isContainerQuerySelector.js.map +1 -0
  251. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/utils/isLayerSelector.js +7 -0
  252. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/utils/isLayerSelector.js.map +1 -0
  253. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/utils/isMediaQuerySelector.js.map +1 -0
  254. package/dist/{node_modules → packages/volt-runtime/dist/vendor}/@griffel/core/src/runtime/utils/isNestedSelector.js +3 -3
  255. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/utils/isNestedSelector.js.map +1 -0
  256. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/utils/isObject.js +7 -0
  257. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/utils/isObject.js.map +1 -0
  258. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/utils/isResetValue.js +8 -0
  259. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/utils/isResetValue.js.map +1 -0
  260. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/utils/isScopeSelector.js.map +1 -0
  261. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/utils/isSupportQuerySelector.js.map +1 -0
  262. package/dist/{node_modules → packages/volt-runtime/dist/vendor}/@griffel/core/src/runtime/utils/normalizeCSSBucketEntry.js +6 -6
  263. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/utils/normalizeCSSBucketEntry.js.map +1 -0
  264. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/utils/normalizeNestedProperty.js +7 -0
  265. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/utils/normalizeNestedProperty.js.map +1 -0
  266. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/utils/trimSelector.js +7 -0
  267. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/utils/trimSelector.js.map +1 -0
  268. package/dist/{node_modules → packages/volt-runtime/dist/vendor}/@griffel/core/src/runtime/warnings/logError.js +2 -2
  269. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/warnings/logError.js.map +1 -0
  270. package/dist/{node_modules → packages/volt-runtime/dist/vendor}/@griffel/core/src/runtime/warnings/warnAboutUnresolvedRule.js +6 -6
  271. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/warnings/warnAboutUnresolvedRule.js.map +1 -0
  272. package/dist/{node_modules → packages/volt-runtime/dist/vendor}/@griffel/core/src/runtime/warnings/warnAboutUnsupportedProperties.js +4 -4
  273. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/runtime/warnings/warnAboutUnsupportedProperties.js.map +1 -0
  274. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/shorthands/border.js +19 -0
  275. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/shorthands/border.js.map +1 -0
  276. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/shorthands/borderBottom.js +16 -0
  277. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/shorthands/borderBottom.js.map +1 -0
  278. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/shorthands/borderColor.js.map +1 -0
  279. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/shorthands/borderLeft.js +16 -0
  280. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/shorthands/borderLeft.js.map +1 -0
  281. package/dist/{node_modules → packages/volt-runtime/dist/vendor}/@griffel/core/src/shorthands/borderRadius.js +4 -4
  282. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/shorthands/borderRadius.js.map +1 -0
  283. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/shorthands/borderRight.js +16 -0
  284. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/shorthands/borderRight.js.map +1 -0
  285. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/shorthands/borderStyle.js.map +1 -0
  286. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/shorthands/borderTop.js +16 -0
  287. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/shorthands/borderTop.js.map +1 -0
  288. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/shorthands/borderWidth.js.map +1 -0
  289. package/dist/{node_modules → packages/volt-runtime/dist/vendor}/@griffel/core/src/shorthands/flex.js +25 -25
  290. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/shorthands/flex.js.map +1 -0
  291. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/shorthands/gap.js +10 -0
  292. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/shorthands/gap.js.map +1 -0
  293. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/shorthands/generateStyles.js +14 -0
  294. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/shorthands/generateStyles.js.map +1 -0
  295. package/dist/{node_modules → packages/volt-runtime/dist/vendor}/@griffel/core/src/shorthands/gridArea.js +13 -13
  296. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/shorthands/gridArea.js.map +1 -0
  297. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/shorthands/inset.js +13 -0
  298. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/shorthands/inset.js.map +1 -0
  299. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/shorthands/margin.js +8 -0
  300. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/shorthands/margin.js.map +1 -0
  301. package/dist/{node_modules → packages/volt-runtime/dist/vendor}/@griffel/core/src/shorthands/marginBlock.js +3 -3
  302. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/shorthands/marginBlock.js.map +1 -0
  303. package/dist/{node_modules → packages/volt-runtime/dist/vendor}/@griffel/core/src/shorthands/marginInline.js +3 -3
  304. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/shorthands/marginInline.js.map +1 -0
  305. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/shorthands/outline.js +11 -0
  306. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/shorthands/outline.js.map +1 -0
  307. package/dist/{node_modules → packages/volt-runtime/dist/vendor}/@griffel/core/src/shorthands/overflow.js +3 -3
  308. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/shorthands/overflow.js.map +1 -0
  309. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/shorthands/padding.js +8 -0
  310. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/shorthands/padding.js.map +1 -0
  311. package/dist/{node_modules → packages/volt-runtime/dist/vendor}/@griffel/core/src/shorthands/paddingBlock.js +3 -3
  312. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/shorthands/paddingBlock.js.map +1 -0
  313. package/dist/{node_modules → packages/volt-runtime/dist/vendor}/@griffel/core/src/shorthands/paddingInline.js +3 -3
  314. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/shorthands/paddingInline.js.map +1 -0
  315. package/dist/{node_modules → packages/volt-runtime/dist/vendor}/@griffel/core/src/shorthands/textDecoration.js +2 -2
  316. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/shorthands/textDecoration.js.map +1 -0
  317. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/shorthands/transition.js +19 -0
  318. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/shorthands/transition.js.map +1 -0
  319. package/dist/packages/volt-runtime/dist/vendor/@griffel/core/src/shorthands/utils.js.map +1 -0
  320. package/dist/packages/volt-runtime/dist/vendor/rtl-css-js/dist/esm/convert-9768a965.js +303 -0
  321. package/dist/packages/volt-runtime/dist/vendor/rtl-css-js/dist/esm/convert-9768a965.js.map +1 -0
  322. package/dist/packages/volt-runtime/dist/vendor/stylis/src/Enum.js +16 -0
  323. package/dist/packages/volt-runtime/dist/vendor/stylis/src/Enum.js.map +1 -0
  324. package/dist/packages/volt-runtime/dist/vendor/stylis/src/Middleware.js +19 -0
  325. package/dist/packages/volt-runtime/dist/vendor/stylis/src/Middleware.js.map +1 -0
  326. package/dist/packages/volt-runtime/dist/vendor/stylis/src/Parser.js +128 -0
  327. package/dist/packages/volt-runtime/dist/vendor/stylis/src/Parser.js.map +1 -0
  328. package/dist/packages/volt-runtime/dist/vendor/stylis/src/Serializer.js +29 -0
  329. package/dist/packages/volt-runtime/dist/vendor/stylis/src/Serializer.js.map +1 -0
  330. package/dist/packages/volt-runtime/dist/vendor/stylis/src/Tokenizer.js +150 -0
  331. package/dist/packages/volt-runtime/dist/vendor/stylis/src/Tokenizer.js.map +1 -0
  332. package/dist/{node_modules → packages/volt-runtime/dist/vendor}/stylis/src/Utility.js +15 -15
  333. package/dist/packages/volt-runtime/dist/vendor/stylis/src/Utility.js.map +1 -0
  334. package/dist/renderer/contract.d.ts +8 -39
  335. package/dist/renderer/index.d.ts +7 -19
  336. package/dist/styles/make-styles.d.ts +21 -27
  337. package/dist/styles/make-styles.js +9 -12
  338. package/dist/styles/make-styles.js.map +1 -1
  339. package/dist/tokens/core.generated.d.ts +3 -3
  340. package/dist/tokens/core.generated.js +1204 -478
  341. package/dist/tokens/core.generated.js.map +1 -1
  342. package/dist/tokens/index.d.ts +1051 -950
  343. package/dist/tokens/index.js +1018 -917
  344. package/dist/tokens/index.js.map +1 -1
  345. package/dist/tokens/install.d.ts +7 -2
  346. package/dist/tokens/install.js +1 -1
  347. package/dist/tokens/install.js.map +1 -1
  348. package/dist/tokens/palette.generated.d.ts +3 -3
  349. package/dist/tokens/palette.generated.js +1294 -1069
  350. package/dist/tokens/palette.generated.js.map +1 -1
  351. package/dist/tokens.json +497 -295
  352. package/dist/vendor/@floating-ui/core/dist/floating-ui.core.js.map +1 -0
  353. 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
  354. package/dist/vendor/@floating-ui/dom/dist/floating-ui.dom.js.map +1 -0
  355. package/dist/{node_modules/@radix-ui/react-popper/node_modules → vendor}/@floating-ui/react-dom/dist/floating-ui.react-dom.js +2 -2
  356. package/dist/vendor/@floating-ui/react-dom/dist/floating-ui.react-dom.js.map +1 -0
  357. package/dist/vendor/@floating-ui/utils/dist/floating-ui.utils.dom.js.map +1 -0
  358. package/dist/vendor/@floating-ui/utils/dist/floating-ui.utils.js.map +1 -0
  359. package/dist/{node_modules → vendor}/@radix-ui/react-alert-dialog/dist/index.js +1 -1
  360. package/dist/{node_modules → vendor}/@radix-ui/react-collection/dist/index.js +1 -1
  361. package/dist/{node_modules → vendor}/@radix-ui/react-dialog/dist/index.js +1 -1
  362. package/dist/{node_modules → vendor}/@radix-ui/react-menu/dist/index.js +1 -1
  363. package/dist/{node_modules → vendor}/@radix-ui/react-popover/dist/index.js +1 -1
  364. package/dist/{node_modules → vendor}/@radix-ui/react-popper/dist/index.js +2 -2
  365. package/dist/{node_modules → vendor}/@radix-ui/react-primitive/dist/index.js +1 -1
  366. package/dist/{node_modules → vendor}/@radix-ui/react-select/dist/index.js +1 -1
  367. package/dist/{node_modules → vendor}/@radix-ui/react-tooltip/dist/index.js +1 -1
  368. package/dist/vendor/@tanstack/react-table/build/lib/index.js +103 -0
  369. package/dist/vendor/@tanstack/react-table/build/lib/index.js.map +1 -0
  370. package/dist/vendor/@tanstack/table-core/build/lib/index.js +1896 -0
  371. package/dist/vendor/@tanstack/table-core/build/lib/index.js.map +1 -0
  372. package/package.json +9 -6
  373. package/dist/node_modules/@emotion/hash/dist/emotion-hash.esm.js +0 -23
  374. package/dist/node_modules/@emotion/hash/dist/emotion-hash.esm.js.map +0 -1
  375. package/dist/node_modules/@griffel/core/src/constants.js +0 -34
  376. package/dist/node_modules/@griffel/core/src/constants.js.map +0 -1
  377. package/dist/node_modules/@griffel/core/src/devtools/getAtomicDebugSequenceTree.js +0 -27
  378. package/dist/node_modules/@griffel/core/src/devtools/getAtomicDebugSequenceTree.js.map +0 -1
  379. package/dist/node_modules/@griffel/core/src/devtools/getResetDebugSequence.js.map +0 -1
  380. package/dist/node_modules/@griffel/core/src/devtools/getSourceURLfromError.js +0 -18
  381. package/dist/node_modules/@griffel/core/src/devtools/getSourceURLfromError.js.map +0 -1
  382. package/dist/node_modules/@griffel/core/src/devtools/injectDevTools.js.map +0 -1
  383. package/dist/node_modules/@griffel/core/src/devtools/isDevToolsEnabled.js.map +0 -1
  384. package/dist/node_modules/@griffel/core/src/devtools/mergeDebugSequence.js +0 -15
  385. package/dist/node_modules/@griffel/core/src/devtools/mergeDebugSequence.js.map +0 -1
  386. package/dist/node_modules/@griffel/core/src/devtools/react-render-tracker/stackTrace.js +0 -40
  387. package/dist/node_modules/@griffel/core/src/devtools/react-render-tracker/stackTrace.js.map +0 -1
  388. package/dist/node_modules/@griffel/core/src/devtools/store.js +0 -22
  389. package/dist/node_modules/@griffel/core/src/devtools/store.js.map +0 -1
  390. package/dist/node_modules/@griffel/core/src/devtools/utils.js +0 -22
  391. package/dist/node_modules/@griffel/core/src/devtools/utils.js.map +0 -1
  392. package/dist/node_modules/@griffel/core/src/index.js +0 -52
  393. package/dist/node_modules/@griffel/core/src/index.js.map +0 -1
  394. package/dist/node_modules/@griffel/core/src/insertionFactory.js +0 -10
  395. package/dist/node_modules/@griffel/core/src/insertionFactory.js.map +0 -1
  396. package/dist/node_modules/@griffel/core/src/makeResetStyles.js +0 -26
  397. package/dist/node_modules/@griffel/core/src/makeResetStyles.js.map +0 -1
  398. package/dist/node_modules/@griffel/core/src/makeStyles.js.map +0 -1
  399. package/dist/node_modules/@griffel/core/src/mergeClasses.js +0 -49
  400. package/dist/node_modules/@griffel/core/src/mergeClasses.js.map +0 -1
  401. package/dist/node_modules/@griffel/core/src/renderer/createDOMRenderer.js +0 -43
  402. package/dist/node_modules/@griffel/core/src/renderer/createDOMRenderer.js.map +0 -1
  403. package/dist/node_modules/@griffel/core/src/renderer/createIsomorphicStyleSheet.js +0 -23
  404. package/dist/node_modules/@griffel/core/src/renderer/createIsomorphicStyleSheet.js.map +0 -1
  405. package/dist/node_modules/@griffel/core/src/renderer/getStyleSheetForBucket.js +0 -81
  406. package/dist/node_modules/@griffel/core/src/renderer/getStyleSheetForBucket.js.map +0 -1
  407. package/dist/node_modules/@griffel/core/src/renderer/safeInsertRule.js.map +0 -1
  408. package/dist/node_modules/@griffel/core/src/resolveStyleRulesForSlots.js +0 -15
  409. package/dist/node_modules/@griffel/core/src/resolveStyleRulesForSlots.js.map +0 -1
  410. package/dist/node_modules/@griffel/core/src/runtime/compileAtomicCSSRule.js +0 -28
  411. package/dist/node_modules/@griffel/core/src/runtime/compileAtomicCSSRule.js.map +0 -1
  412. package/dist/node_modules/@griffel/core/src/runtime/compileCSSRules.js +0 -23
  413. package/dist/node_modules/@griffel/core/src/runtime/compileCSSRules.js.map +0 -1
  414. package/dist/node_modules/@griffel/core/src/runtime/compileKeyframeCSS.js +0 -27
  415. package/dist/node_modules/@griffel/core/src/runtime/compileKeyframeCSS.js.map +0 -1
  416. package/dist/node_modules/@griffel/core/src/runtime/compileResetCSSRules.js +0 -31
  417. package/dist/node_modules/@griffel/core/src/runtime/compileResetCSSRules.js.map +0 -1
  418. package/dist/node_modules/@griffel/core/src/runtime/getStyleBucketName.js.map +0 -1
  419. package/dist/node_modules/@griffel/core/src/runtime/reduceToClassNameForSlots.js +0 -33
  420. package/dist/node_modules/@griffel/core/src/runtime/reduceToClassNameForSlots.js.map +0 -1
  421. package/dist/node_modules/@griffel/core/src/runtime/resolveResetStyleRules.js +0 -95
  422. package/dist/node_modules/@griffel/core/src/runtime/resolveResetStyleRules.js.map +0 -1
  423. package/dist/node_modules/@griffel/core/src/runtime/resolveStyleRules.js +0 -187
  424. package/dist/node_modules/@griffel/core/src/runtime/resolveStyleRules.js.map +0 -1
  425. package/dist/node_modules/@griffel/core/src/runtime/shorthands.js.map +0 -1
  426. package/dist/node_modules/@griffel/core/src/runtime/stylis/globalPlugin.js +0 -29
  427. package/dist/node_modules/@griffel/core/src/runtime/stylis/globalPlugin.js.map +0 -1
  428. package/dist/node_modules/@griffel/core/src/runtime/stylis/isAtRuleElement.js.map +0 -1
  429. package/dist/node_modules/@griffel/core/src/runtime/stylis/prefixerPlugin.js +0 -107
  430. package/dist/node_modules/@griffel/core/src/runtime/stylis/prefixerPlugin.js.map +0 -1
  431. package/dist/node_modules/@griffel/core/src/runtime/stylis/rulesheetPlugin.js +0 -9
  432. package/dist/node_modules/@griffel/core/src/runtime/stylis/rulesheetPlugin.js.map +0 -1
  433. package/dist/node_modules/@griffel/core/src/runtime/stylis/scopePlugin.js +0 -41
  434. package/dist/node_modules/@griffel/core/src/runtime/stylis/scopePlugin.js.map +0 -1
  435. package/dist/node_modules/@griffel/core/src/runtime/stylis/sortClassesInAtRulesPlugin.js +0 -8
  436. package/dist/node_modules/@griffel/core/src/runtime/stylis/sortClassesInAtRulesPlugin.js.map +0 -1
  437. package/dist/node_modules/@griffel/core/src/runtime/utils/cssifyObject.js +0 -19
  438. package/dist/node_modules/@griffel/core/src/runtime/utils/cssifyObject.js.map +0 -1
  439. package/dist/node_modules/@griffel/core/src/runtime/utils/generateCombinedMediaQuery.js +0 -7
  440. package/dist/node_modules/@griffel/core/src/runtime/utils/generateCombinedMediaQuery.js.map +0 -1
  441. package/dist/node_modules/@griffel/core/src/runtime/utils/hashClassName.js +0 -11
  442. package/dist/node_modules/@griffel/core/src/runtime/utils/hashClassName.js.map +0 -1
  443. package/dist/node_modules/@griffel/core/src/runtime/utils/hashPropertyKey.js +0 -16
  444. package/dist/node_modules/@griffel/core/src/runtime/utils/hashPropertyKey.js.map +0 -1
  445. package/dist/node_modules/@griffel/core/src/runtime/utils/hashSequence.js +0 -17
  446. package/dist/node_modules/@griffel/core/src/runtime/utils/hashSequence.js.map +0 -1
  447. package/dist/node_modules/@griffel/core/src/runtime/utils/hyphenateProperty.js +0 -16
  448. package/dist/node_modules/@griffel/core/src/runtime/utils/hyphenateProperty.js.map +0 -1
  449. package/dist/node_modules/@griffel/core/src/runtime/utils/isContainerQuerySelector.js +0 -7
  450. package/dist/node_modules/@griffel/core/src/runtime/utils/isContainerQuerySelector.js.map +0 -1
  451. package/dist/node_modules/@griffel/core/src/runtime/utils/isLayerSelector.js +0 -7
  452. package/dist/node_modules/@griffel/core/src/runtime/utils/isLayerSelector.js.map +0 -1
  453. package/dist/node_modules/@griffel/core/src/runtime/utils/isMediaQuerySelector.js.map +0 -1
  454. package/dist/node_modules/@griffel/core/src/runtime/utils/isNestedSelector.js.map +0 -1
  455. package/dist/node_modules/@griffel/core/src/runtime/utils/isObject.js +0 -7
  456. package/dist/node_modules/@griffel/core/src/runtime/utils/isObject.js.map +0 -1
  457. package/dist/node_modules/@griffel/core/src/runtime/utils/isResetValue.js +0 -8
  458. package/dist/node_modules/@griffel/core/src/runtime/utils/isResetValue.js.map +0 -1
  459. package/dist/node_modules/@griffel/core/src/runtime/utils/isScopeSelector.js.map +0 -1
  460. package/dist/node_modules/@griffel/core/src/runtime/utils/isSupportQuerySelector.js.map +0 -1
  461. package/dist/node_modules/@griffel/core/src/runtime/utils/normalizeCSSBucketEntry.js.map +0 -1
  462. package/dist/node_modules/@griffel/core/src/runtime/utils/normalizeNestedProperty.js +0 -7
  463. package/dist/node_modules/@griffel/core/src/runtime/utils/normalizeNestedProperty.js.map +0 -1
  464. package/dist/node_modules/@griffel/core/src/runtime/utils/trimSelector.js +0 -7
  465. package/dist/node_modules/@griffel/core/src/runtime/utils/trimSelector.js.map +0 -1
  466. package/dist/node_modules/@griffel/core/src/runtime/warnings/logError.js.map +0 -1
  467. package/dist/node_modules/@griffel/core/src/runtime/warnings/warnAboutUnresolvedRule.js.map +0 -1
  468. package/dist/node_modules/@griffel/core/src/runtime/warnings/warnAboutUnsupportedProperties.js.map +0 -1
  469. package/dist/node_modules/@griffel/core/src/shorthands/border.js +0 -19
  470. package/dist/node_modules/@griffel/core/src/shorthands/border.js.map +0 -1
  471. package/dist/node_modules/@griffel/core/src/shorthands/borderBottom.js +0 -16
  472. package/dist/node_modules/@griffel/core/src/shorthands/borderBottom.js.map +0 -1
  473. package/dist/node_modules/@griffel/core/src/shorthands/borderColor.js.map +0 -1
  474. package/dist/node_modules/@griffel/core/src/shorthands/borderLeft.js +0 -16
  475. package/dist/node_modules/@griffel/core/src/shorthands/borderLeft.js.map +0 -1
  476. package/dist/node_modules/@griffel/core/src/shorthands/borderRadius.js.map +0 -1
  477. package/dist/node_modules/@griffel/core/src/shorthands/borderRight.js +0 -16
  478. package/dist/node_modules/@griffel/core/src/shorthands/borderRight.js.map +0 -1
  479. package/dist/node_modules/@griffel/core/src/shorthands/borderStyle.js.map +0 -1
  480. package/dist/node_modules/@griffel/core/src/shorthands/borderTop.js +0 -16
  481. package/dist/node_modules/@griffel/core/src/shorthands/borderTop.js.map +0 -1
  482. package/dist/node_modules/@griffel/core/src/shorthands/borderWidth.js.map +0 -1
  483. package/dist/node_modules/@griffel/core/src/shorthands/flex.js.map +0 -1
  484. package/dist/node_modules/@griffel/core/src/shorthands/gap.js +0 -10
  485. package/dist/node_modules/@griffel/core/src/shorthands/gap.js.map +0 -1
  486. package/dist/node_modules/@griffel/core/src/shorthands/generateStyles.js +0 -14
  487. package/dist/node_modules/@griffel/core/src/shorthands/generateStyles.js.map +0 -1
  488. package/dist/node_modules/@griffel/core/src/shorthands/gridArea.js.map +0 -1
  489. package/dist/node_modules/@griffel/core/src/shorthands/inset.js +0 -13
  490. package/dist/node_modules/@griffel/core/src/shorthands/inset.js.map +0 -1
  491. package/dist/node_modules/@griffel/core/src/shorthands/margin.js +0 -8
  492. package/dist/node_modules/@griffel/core/src/shorthands/margin.js.map +0 -1
  493. package/dist/node_modules/@griffel/core/src/shorthands/marginBlock.js.map +0 -1
  494. package/dist/node_modules/@griffel/core/src/shorthands/marginInline.js.map +0 -1
  495. package/dist/node_modules/@griffel/core/src/shorthands/outline.js +0 -11
  496. package/dist/node_modules/@griffel/core/src/shorthands/outline.js.map +0 -1
  497. package/dist/node_modules/@griffel/core/src/shorthands/overflow.js.map +0 -1
  498. package/dist/node_modules/@griffel/core/src/shorthands/padding.js +0 -8
  499. package/dist/node_modules/@griffel/core/src/shorthands/padding.js.map +0 -1
  500. package/dist/node_modules/@griffel/core/src/shorthands/paddingBlock.js.map +0 -1
  501. package/dist/node_modules/@griffel/core/src/shorthands/paddingInline.js.map +0 -1
  502. package/dist/node_modules/@griffel/core/src/shorthands/textDecoration.js.map +0 -1
  503. package/dist/node_modules/@griffel/core/src/shorthands/transition.js +0 -19
  504. package/dist/node_modules/@griffel/core/src/shorthands/transition.js.map +0 -1
  505. package/dist/node_modules/@griffel/core/src/shorthands/utils.js.map +0 -1
  506. package/dist/node_modules/@radix-ui/react-popper/node_modules/@floating-ui/react-dom/dist/floating-ui.react-dom.js.map +0 -1
  507. 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
  508. 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
  509. 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
  510. 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
  511. package/dist/node_modules/rtl-css-js/dist/esm/convert-9768a965.js +0 -303
  512. package/dist/node_modules/rtl-css-js/dist/esm/convert-9768a965.js.map +0 -1
  513. package/dist/node_modules/stylis/src/Enum.js +0 -16
  514. package/dist/node_modules/stylis/src/Enum.js.map +0 -1
  515. package/dist/node_modules/stylis/src/Middleware.js +0 -19
  516. package/dist/node_modules/stylis/src/Middleware.js.map +0 -1
  517. package/dist/node_modules/stylis/src/Parser.js +0 -128
  518. package/dist/node_modules/stylis/src/Parser.js.map +0 -1
  519. package/dist/node_modules/stylis/src/Serializer.js +0 -29
  520. package/dist/node_modules/stylis/src/Serializer.js.map +0 -1
  521. package/dist/node_modules/stylis/src/Tokenizer.js +0 -151
  522. package/dist/node_modules/stylis/src/Tokenizer.js.map +0 -1
  523. package/dist/node_modules/stylis/src/Utility.js.map +0 -1
  524. package/dist/renderer/contract.js +0 -8
  525. package/dist/renderer/contract.js.map +0 -1
  526. package/dist/renderer/index.js +0 -59
  527. package/dist/renderer/index.js.map +0 -1
  528. package/dist/renderer/insertion-point.d.ts +0 -35
  529. package/dist/renderer/insertion-point.js.map +0 -1
  530. package/dist/renderer/rule-key.d.ts +0 -14
  531. package/dist/renderer/rule-key.js +0 -12
  532. package/dist/renderer/rule-key.js.map +0 -1
  533. package/dist/renderer/sheet-adoption.d.ts +0 -32
  534. package/dist/renderer/sheet-adoption.js +0 -30
  535. package/dist/renderer/sheet-adoption.js.map +0 -1
  536. package/dist/tokens/class-salt.generated.d.ts +0 -2
  537. package/dist/tokens/class-salt.generated.js.map +0 -1
  538. package/dist/tokens/ensure-sheet.d.ts +0 -3
  539. package/dist/tokens/ensure-sheet.js +0 -14
  540. package/dist/tokens/ensure-sheet.js.map +0 -1
  541. /package/dist/{node_modules → packages/volt-runtime/dist/vendor}/@griffel/core/src/runtime/shorthands.js +0 -0
  542. /package/dist/{node_modules → packages/volt-runtime/dist/vendor}/@griffel/core/src/runtime/utils/isMediaQuerySelector.js +0 -0
  543. /package/dist/{node_modules → packages/volt-runtime/dist/vendor}/@griffel/core/src/runtime/utils/isScopeSelector.js +0 -0
  544. /package/dist/{node_modules → packages/volt-runtime/dist/vendor}/@griffel/core/src/runtime/utils/isSupportQuerySelector.js +0 -0
  545. /package/dist/{node_modules → packages/volt-runtime/dist/vendor}/@griffel/core/src/shorthands/borderColor.js +0 -0
  546. /package/dist/{node_modules → packages/volt-runtime/dist/vendor}/@griffel/core/src/shorthands/borderStyle.js +0 -0
  547. /package/dist/{node_modules → packages/volt-runtime/dist/vendor}/@griffel/core/src/shorthands/borderWidth.js +0 -0
  548. /package/dist/{node_modules → packages/volt-runtime/dist/vendor}/@griffel/core/src/shorthands/utils.js +0 -0
  549. /package/dist/{node_modules → vendor}/@dnd-kit/accessibility/dist/accessibility.esm.js +0 -0
  550. /package/dist/{node_modules → vendor}/@dnd-kit/accessibility/dist/accessibility.esm.js.map +0 -0
  551. /package/dist/{node_modules → vendor}/@dnd-kit/core/dist/core.esm.js +0 -0
  552. /package/dist/{node_modules → vendor}/@dnd-kit/core/dist/core.esm.js.map +0 -0
  553. /package/dist/{node_modules → vendor}/@dnd-kit/sortable/dist/sortable.esm.js +0 -0
  554. /package/dist/{node_modules → vendor}/@dnd-kit/sortable/dist/sortable.esm.js.map +0 -0
  555. /package/dist/{node_modules → vendor}/@dnd-kit/utilities/dist/utilities.esm.js +0 -0
  556. /package/dist/{node_modules → vendor}/@dnd-kit/utilities/dist/utilities.esm.js.map +0 -0
  557. /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
  558. /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
  559. /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
  560. /package/dist/{node_modules → vendor}/@radix-ui/number/dist/index.js +0 -0
  561. /package/dist/{node_modules → vendor}/@radix-ui/number/dist/index.js.map +0 -0
  562. /package/dist/{node_modules → vendor}/@radix-ui/primitive/dist/index.js +0 -0
  563. /package/dist/{node_modules → vendor}/@radix-ui/primitive/dist/index.js.map +0 -0
  564. /package/dist/{node_modules → vendor}/@radix-ui/react-accordion/dist/index.js +0 -0
  565. /package/dist/{node_modules → vendor}/@radix-ui/react-accordion/dist/index.js.map +0 -0
  566. /package/dist/{node_modules → vendor}/@radix-ui/react-alert-dialog/dist/index.js.map +0 -0
  567. /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
  568. /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
  569. /package/dist/{node_modules → vendor}/@radix-ui/react-arrow/dist/index.js +0 -0
  570. /package/dist/{node_modules → vendor}/@radix-ui/react-arrow/dist/index.js.map +0 -0
  571. /package/dist/{node_modules → vendor}/@radix-ui/react-avatar/dist/index.js +0 -0
  572. /package/dist/{node_modules → vendor}/@radix-ui/react-avatar/dist/index.js.map +0 -0
  573. /package/dist/{node_modules → vendor}/@radix-ui/react-checkbox/dist/index.js +0 -0
  574. /package/dist/{node_modules → vendor}/@radix-ui/react-checkbox/dist/index.js.map +0 -0
  575. /package/dist/{node_modules → vendor}/@radix-ui/react-collapsible/dist/index.js +0 -0
  576. /package/dist/{node_modules → vendor}/@radix-ui/react-collapsible/dist/index.js.map +0 -0
  577. /package/dist/{node_modules → vendor}/@radix-ui/react-collection/dist/index.js.map +0 -0
  578. /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
  579. /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
  580. /package/dist/{node_modules → vendor}/@radix-ui/react-compose-refs/dist/index.js +0 -0
  581. /package/dist/{node_modules → vendor}/@radix-ui/react-compose-refs/dist/index.js.map +0 -0
  582. /package/dist/{node_modules → vendor}/@radix-ui/react-context/dist/index.js +0 -0
  583. /package/dist/{node_modules → vendor}/@radix-ui/react-context/dist/index.js.map +0 -0
  584. /package/dist/{node_modules → vendor}/@radix-ui/react-dialog/dist/index.js.map +0 -0
  585. /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
  586. /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
  587. /package/dist/{node_modules → vendor}/@radix-ui/react-direction/dist/index.js +0 -0
  588. /package/dist/{node_modules → vendor}/@radix-ui/react-direction/dist/index.js.map +0 -0
  589. /package/dist/{node_modules → vendor}/@radix-ui/react-dismissable-layer/dist/index.js +0 -0
  590. /package/dist/{node_modules → vendor}/@radix-ui/react-dismissable-layer/dist/index.js.map +0 -0
  591. /package/dist/{node_modules → vendor}/@radix-ui/react-dropdown-menu/dist/index.js +0 -0
  592. /package/dist/{node_modules → vendor}/@radix-ui/react-dropdown-menu/dist/index.js.map +0 -0
  593. /package/dist/{node_modules → vendor}/@radix-ui/react-focus-guards/dist/index.js +0 -0
  594. /package/dist/{node_modules → vendor}/@radix-ui/react-focus-guards/dist/index.js.map +0 -0
  595. /package/dist/{node_modules → vendor}/@radix-ui/react-focus-scope/dist/index.js +0 -0
  596. /package/dist/{node_modules → vendor}/@radix-ui/react-focus-scope/dist/index.js.map +0 -0
  597. /package/dist/{node_modules → vendor}/@radix-ui/react-id/dist/index.js +0 -0
  598. /package/dist/{node_modules → vendor}/@radix-ui/react-id/dist/index.js.map +0 -0
  599. /package/dist/{node_modules → vendor}/@radix-ui/react-menu/dist/index.js.map +0 -0
  600. /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
  601. /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
  602. /package/dist/{node_modules → vendor}/@radix-ui/react-popover/dist/index.js.map +0 -0
  603. /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
  604. /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
  605. /package/dist/{node_modules → vendor}/@radix-ui/react-popper/dist/index.js.map +0 -0
  606. /package/dist/{node_modules → vendor}/@radix-ui/react-portal/dist/index.js +0 -0
  607. /package/dist/{node_modules → vendor}/@radix-ui/react-portal/dist/index.js.map +0 -0
  608. /package/dist/{node_modules → vendor}/@radix-ui/react-presence/dist/index.js +0 -0
  609. /package/dist/{node_modules → vendor}/@radix-ui/react-presence/dist/index.js.map +0 -0
  610. /package/dist/{node_modules → vendor}/@radix-ui/react-primitive/dist/index.js.map +0 -0
  611. /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
  612. /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
  613. /package/dist/{node_modules → vendor}/@radix-ui/react-radio-group/dist/index.js +0 -0
  614. /package/dist/{node_modules → vendor}/@radix-ui/react-radio-group/dist/index.js.map +0 -0
  615. /package/dist/{node_modules → vendor}/@radix-ui/react-roving-focus/dist/index.js +0 -0
  616. /package/dist/{node_modules → vendor}/@radix-ui/react-roving-focus/dist/index.js.map +0 -0
  617. /package/dist/{node_modules → vendor}/@radix-ui/react-scroll-area/dist/index.js +0 -0
  618. /package/dist/{node_modules → vendor}/@radix-ui/react-scroll-area/dist/index.js.map +0 -0
  619. /package/dist/{node_modules → vendor}/@radix-ui/react-select/dist/index.js.map +0 -0
  620. /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
  621. /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
  622. /package/dist/{node_modules → vendor}/@radix-ui/react-slot/dist/index.js +0 -0
  623. /package/dist/{node_modules → vendor}/@radix-ui/react-slot/dist/index.js.map +0 -0
  624. /package/dist/{node_modules → vendor}/@radix-ui/react-switch/dist/index.js +0 -0
  625. /package/dist/{node_modules → vendor}/@radix-ui/react-switch/dist/index.js.map +0 -0
  626. /package/dist/{node_modules → vendor}/@radix-ui/react-tabs/dist/index.js +0 -0
  627. /package/dist/{node_modules → vendor}/@radix-ui/react-tabs/dist/index.js.map +0 -0
  628. /package/dist/{node_modules → vendor}/@radix-ui/react-toggle/dist/index.js +0 -0
  629. /package/dist/{node_modules → vendor}/@radix-ui/react-toggle/dist/index.js.map +0 -0
  630. /package/dist/{node_modules → vendor}/@radix-ui/react-toggle-group/dist/index.js +0 -0
  631. /package/dist/{node_modules → vendor}/@radix-ui/react-toggle-group/dist/index.js.map +0 -0
  632. /package/dist/{node_modules → vendor}/@radix-ui/react-tooltip/dist/index.js.map +0 -0
  633. /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
  634. /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
  635. /package/dist/{node_modules → vendor}/@radix-ui/react-use-callback-ref/dist/index.js +0 -0
  636. /package/dist/{node_modules → vendor}/@radix-ui/react-use-callback-ref/dist/index.js.map +0 -0
  637. /package/dist/{node_modules → vendor}/@radix-ui/react-use-controllable-state/dist/index.js +0 -0
  638. /package/dist/{node_modules → vendor}/@radix-ui/react-use-controllable-state/dist/index.js.map +0 -0
  639. /package/dist/{node_modules → vendor}/@radix-ui/react-use-escape-keydown/dist/index.js +0 -0
  640. /package/dist/{node_modules → vendor}/@radix-ui/react-use-escape-keydown/dist/index.js.map +0 -0
  641. /package/dist/{node_modules → vendor}/@radix-ui/react-use-is-hydrated/dist/index.js +0 -0
  642. /package/dist/{node_modules → vendor}/@radix-ui/react-use-is-hydrated/dist/index.js.map +0 -0
  643. /package/dist/{node_modules → vendor}/@radix-ui/react-use-layout-effect/dist/index.js +0 -0
  644. /package/dist/{node_modules → vendor}/@radix-ui/react-use-layout-effect/dist/index.js.map +0 -0
  645. /package/dist/{node_modules → vendor}/@radix-ui/react-use-previous/dist/index.js +0 -0
  646. /package/dist/{node_modules → vendor}/@radix-ui/react-use-previous/dist/index.js.map +0 -0
  647. /package/dist/{node_modules → vendor}/@radix-ui/react-use-size/dist/index.js +0 -0
  648. /package/dist/{node_modules → vendor}/@radix-ui/react-use-size/dist/index.js.map +0 -0
  649. /package/dist/{node_modules → vendor}/@radix-ui/react-visually-hidden/dist/index.js +0 -0
  650. /package/dist/{node_modules → vendor}/@radix-ui/react-visually-hidden/dist/index.js.map +0 -0
  651. /package/dist/{node_modules → vendor}/aria-hidden/dist/es2015/index.js +0 -0
  652. /package/dist/{node_modules → vendor}/aria-hidden/dist/es2015/index.js.map +0 -0
  653. /package/dist/{node_modules → vendor}/cmdk/dist/chunk-NZJY6EH4.js +0 -0
  654. /package/dist/{node_modules → vendor}/cmdk/dist/chunk-NZJY6EH4.js.map +0 -0
  655. /package/dist/{node_modules → vendor}/cmdk/dist/index.js +0 -0
  656. /package/dist/{node_modules → vendor}/cmdk/dist/index.js.map +0 -0
  657. /package/dist/{node_modules → vendor}/date-fns/_lib/addLeadingZeros.js +0 -0
  658. /package/dist/{node_modules → vendor}/date-fns/_lib/addLeadingZeros.js.map +0 -0
  659. /package/dist/{node_modules → vendor}/date-fns/_lib/defaultOptions.js +0 -0
  660. /package/dist/{node_modules → vendor}/date-fns/_lib/defaultOptions.js.map +0 -0
  661. /package/dist/{node_modules → vendor}/date-fns/_lib/format/formatters.js +0 -0
  662. /package/dist/{node_modules → vendor}/date-fns/_lib/format/formatters.js.map +0 -0
  663. /package/dist/{node_modules → vendor}/date-fns/_lib/format/lightFormatters.js +0 -0
  664. /package/dist/{node_modules → vendor}/date-fns/_lib/format/lightFormatters.js.map +0 -0
  665. /package/dist/{node_modules → vendor}/date-fns/_lib/format/longFormatters.js +0 -0
  666. /package/dist/{node_modules → vendor}/date-fns/_lib/format/longFormatters.js.map +0 -0
  667. /package/dist/{node_modules → vendor}/date-fns/_lib/getTimezoneOffsetInMilliseconds.js +0 -0
  668. /package/dist/{node_modules → vendor}/date-fns/_lib/getTimezoneOffsetInMilliseconds.js.map +0 -0
  669. /package/dist/{node_modules → vendor}/date-fns/_lib/normalizeDates.js +0 -0
  670. /package/dist/{node_modules → vendor}/date-fns/_lib/normalizeDates.js.map +0 -0
  671. /package/dist/{node_modules → vendor}/date-fns/_lib/normalizeInterval.js +0 -0
  672. /package/dist/{node_modules → vendor}/date-fns/_lib/normalizeInterval.js.map +0 -0
  673. /package/dist/{node_modules → vendor}/date-fns/_lib/protectedTokens.js +0 -0
  674. /package/dist/{node_modules → vendor}/date-fns/_lib/protectedTokens.js.map +0 -0
  675. /package/dist/{node_modules → vendor}/date-fns/addDays.js +0 -0
  676. /package/dist/{node_modules → vendor}/date-fns/addDays.js.map +0 -0
  677. /package/dist/{node_modules → vendor}/date-fns/addMonths.js +0 -0
  678. /package/dist/{node_modules → vendor}/date-fns/addMonths.js.map +0 -0
  679. /package/dist/{node_modules → vendor}/date-fns/constants.js +0 -0
  680. /package/dist/{node_modules → vendor}/date-fns/constants.js.map +0 -0
  681. /package/dist/{node_modules → vendor}/date-fns/constructFrom.js +0 -0
  682. /package/dist/{node_modules → vendor}/date-fns/constructFrom.js.map +0 -0
  683. /package/dist/{node_modules → vendor}/date-fns/constructNow.js +0 -0
  684. /package/dist/{node_modules → vendor}/date-fns/constructNow.js.map +0 -0
  685. /package/dist/{node_modules → vendor}/date-fns/differenceInCalendarDays.js +0 -0
  686. /package/dist/{node_modules → vendor}/date-fns/differenceInCalendarDays.js.map +0 -0
  687. /package/dist/{node_modules → vendor}/date-fns/eachDayOfInterval.js +0 -0
  688. /package/dist/{node_modules → vendor}/date-fns/eachDayOfInterval.js.map +0 -0
  689. /package/dist/{node_modules → vendor}/date-fns/endOfWeek.js +0 -0
  690. /package/dist/{node_modules → vendor}/date-fns/endOfWeek.js.map +0 -0
  691. /package/dist/{node_modules → vendor}/date-fns/format.js +0 -0
  692. /package/dist/{node_modules → vendor}/date-fns/format.js.map +0 -0
  693. /package/dist/{node_modules → vendor}/date-fns/getDayOfYear.js +0 -0
  694. /package/dist/{node_modules → vendor}/date-fns/getDayOfYear.js.map +0 -0
  695. /package/dist/{node_modules → vendor}/date-fns/getDefaultOptions.js +0 -0
  696. /package/dist/{node_modules → vendor}/date-fns/getDefaultOptions.js.map +0 -0
  697. /package/dist/{node_modules → vendor}/date-fns/getISODay.js +0 -0
  698. /package/dist/{node_modules → vendor}/date-fns/getISODay.js.map +0 -0
  699. /package/dist/{node_modules → vendor}/date-fns/getISOWeek.js +0 -0
  700. /package/dist/{node_modules → vendor}/date-fns/getISOWeek.js.map +0 -0
  701. /package/dist/{node_modules → vendor}/date-fns/getISOWeekYear.js +0 -0
  702. /package/dist/{node_modules → vendor}/date-fns/getISOWeekYear.js.map +0 -0
  703. /package/dist/{node_modules → vendor}/date-fns/getWeek.js +0 -0
  704. /package/dist/{node_modules → vendor}/date-fns/getWeek.js.map +0 -0
  705. /package/dist/{node_modules → vendor}/date-fns/getWeekYear.js +0 -0
  706. /package/dist/{node_modules → vendor}/date-fns/getWeekYear.js.map +0 -0
  707. /package/dist/{node_modules → vendor}/date-fns/isAfter.js +0 -0
  708. /package/dist/{node_modules → vendor}/date-fns/isAfter.js.map +0 -0
  709. /package/dist/{node_modules → vendor}/date-fns/isBefore.js +0 -0
  710. /package/dist/{node_modules → vendor}/date-fns/isBefore.js.map +0 -0
  711. /package/dist/{node_modules → vendor}/date-fns/isDate.js +0 -0
  712. /package/dist/{node_modules → vendor}/date-fns/isDate.js.map +0 -0
  713. /package/dist/{node_modules → vendor}/date-fns/isSameDay.js +0 -0
  714. /package/dist/{node_modules → vendor}/date-fns/isSameDay.js.map +0 -0
  715. /package/dist/{node_modules → vendor}/date-fns/isSameMonth.js +0 -0
  716. /package/dist/{node_modules → vendor}/date-fns/isSameMonth.js.map +0 -0
  717. /package/dist/{node_modules → vendor}/date-fns/isToday.js +0 -0
  718. /package/dist/{node_modules → vendor}/date-fns/isToday.js.map +0 -0
  719. /package/dist/{node_modules → vendor}/date-fns/isValid.js +0 -0
  720. /package/dist/{node_modules → vendor}/date-fns/isValid.js.map +0 -0
  721. /package/dist/{node_modules → vendor}/date-fns/locale/_lib/buildFormatLongFn.js +0 -0
  722. /package/dist/{node_modules → vendor}/date-fns/locale/_lib/buildFormatLongFn.js.map +0 -0
  723. /package/dist/{node_modules → vendor}/date-fns/locale/_lib/buildLocalizeFn.js +0 -0
  724. /package/dist/{node_modules → vendor}/date-fns/locale/_lib/buildLocalizeFn.js.map +0 -0
  725. /package/dist/{node_modules → vendor}/date-fns/locale/_lib/buildMatchFn.js +0 -0
  726. /package/dist/{node_modules → vendor}/date-fns/locale/_lib/buildMatchFn.js.map +0 -0
  727. /package/dist/{node_modules → vendor}/date-fns/locale/_lib/buildMatchPatternFn.js +0 -0
  728. /package/dist/{node_modules → vendor}/date-fns/locale/_lib/buildMatchPatternFn.js.map +0 -0
  729. /package/dist/{node_modules → vendor}/date-fns/locale/de/_lib/formatDistance.js +0 -0
  730. /package/dist/{node_modules → vendor}/date-fns/locale/de/_lib/formatDistance.js.map +0 -0
  731. /package/dist/{node_modules → vendor}/date-fns/locale/de/_lib/formatLong.js +0 -0
  732. /package/dist/{node_modules → vendor}/date-fns/locale/de/_lib/formatLong.js.map +0 -0
  733. /package/dist/{node_modules → vendor}/date-fns/locale/de/_lib/formatRelative.js +0 -0
  734. /package/dist/{node_modules → vendor}/date-fns/locale/de/_lib/formatRelative.js.map +0 -0
  735. /package/dist/{node_modules → vendor}/date-fns/locale/de/_lib/localize.js +0 -0
  736. /package/dist/{node_modules → vendor}/date-fns/locale/de/_lib/localize.js.map +0 -0
  737. /package/dist/{node_modules → vendor}/date-fns/locale/de/_lib/match.js +0 -0
  738. /package/dist/{node_modules → vendor}/date-fns/locale/de/_lib/match.js.map +0 -0
  739. /package/dist/{node_modules → vendor}/date-fns/locale/de.js +0 -0
  740. /package/dist/{node_modules → vendor}/date-fns/locale/de.js.map +0 -0
  741. /package/dist/{node_modules → vendor}/date-fns/locale/en-US/_lib/formatDistance.js +0 -0
  742. /package/dist/{node_modules → vendor}/date-fns/locale/en-US/_lib/formatDistance.js.map +0 -0
  743. /package/dist/{node_modules → vendor}/date-fns/locale/en-US/_lib/formatLong.js +0 -0
  744. /package/dist/{node_modules → vendor}/date-fns/locale/en-US/_lib/formatLong.js.map +0 -0
  745. /package/dist/{node_modules → vendor}/date-fns/locale/en-US/_lib/formatRelative.js +0 -0
  746. /package/dist/{node_modules → vendor}/date-fns/locale/en-US/_lib/formatRelative.js.map +0 -0
  747. /package/dist/{node_modules → vendor}/date-fns/locale/en-US/_lib/localize.js +0 -0
  748. /package/dist/{node_modules → vendor}/date-fns/locale/en-US/_lib/localize.js.map +0 -0
  749. /package/dist/{node_modules → vendor}/date-fns/locale/en-US/_lib/match.js +0 -0
  750. /package/dist/{node_modules → vendor}/date-fns/locale/en-US/_lib/match.js.map +0 -0
  751. /package/dist/{node_modules → vendor}/date-fns/locale/en-US.js +0 -0
  752. /package/dist/{node_modules → vendor}/date-fns/locale/en-US.js.map +0 -0
  753. /package/dist/{node_modules → vendor}/date-fns/locale/fr/_lib/formatDistance.js +0 -0
  754. /package/dist/{node_modules → vendor}/date-fns/locale/fr/_lib/formatDistance.js.map +0 -0
  755. /package/dist/{node_modules → vendor}/date-fns/locale/fr/_lib/formatLong.js +0 -0
  756. /package/dist/{node_modules → vendor}/date-fns/locale/fr/_lib/formatLong.js.map +0 -0
  757. /package/dist/{node_modules → vendor}/date-fns/locale/fr/_lib/formatRelative.js +0 -0
  758. /package/dist/{node_modules → vendor}/date-fns/locale/fr/_lib/formatRelative.js.map +0 -0
  759. /package/dist/{node_modules → vendor}/date-fns/locale/fr/_lib/localize.js +0 -0
  760. /package/dist/{node_modules → vendor}/date-fns/locale/fr/_lib/localize.js.map +0 -0
  761. /package/dist/{node_modules → vendor}/date-fns/locale/fr/_lib/match.js +0 -0
  762. /package/dist/{node_modules → vendor}/date-fns/locale/fr/_lib/match.js.map +0 -0
  763. /package/dist/{node_modules → vendor}/date-fns/locale/fr.js +0 -0
  764. /package/dist/{node_modules → vendor}/date-fns/locale/fr.js.map +0 -0
  765. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/Parser.js +0 -0
  766. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/Parser.js.map +0 -0
  767. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/Setter.js +0 -0
  768. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/Setter.js.map +0 -0
  769. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/constants.js +0 -0
  770. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/constants.js.map +0 -0
  771. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/AMPMMidnightParser.js +0 -0
  772. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/AMPMMidnightParser.js.map +0 -0
  773. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/AMPMParser.js +0 -0
  774. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/AMPMParser.js.map +0 -0
  775. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/DateParser.js +0 -0
  776. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/DateParser.js.map +0 -0
  777. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/DayOfYearParser.js +0 -0
  778. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/DayOfYearParser.js.map +0 -0
  779. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/DayParser.js +0 -0
  780. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/DayParser.js.map +0 -0
  781. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/DayPeriodParser.js +0 -0
  782. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/DayPeriodParser.js.map +0 -0
  783. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/EraParser.js +0 -0
  784. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/EraParser.js.map +0 -0
  785. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/ExtendedYearParser.js +0 -0
  786. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/ExtendedYearParser.js.map +0 -0
  787. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/FractionOfSecondParser.js +0 -0
  788. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/FractionOfSecondParser.js.map +0 -0
  789. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/Hour0To11Parser.js +0 -0
  790. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/Hour0To11Parser.js.map +0 -0
  791. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/Hour0to23Parser.js +0 -0
  792. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/Hour0to23Parser.js.map +0 -0
  793. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/Hour1To24Parser.js +0 -0
  794. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/Hour1To24Parser.js.map +0 -0
  795. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/Hour1to12Parser.js +0 -0
  796. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/Hour1to12Parser.js.map +0 -0
  797. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/ISODayParser.js +0 -0
  798. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/ISODayParser.js.map +0 -0
  799. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/ISOTimezoneParser.js +0 -0
  800. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/ISOTimezoneParser.js.map +0 -0
  801. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/ISOTimezoneWithZParser.js +0 -0
  802. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/ISOTimezoneWithZParser.js.map +0 -0
  803. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/ISOWeekParser.js +0 -0
  804. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/ISOWeekParser.js.map +0 -0
  805. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/ISOWeekYearParser.js +0 -0
  806. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/ISOWeekYearParser.js.map +0 -0
  807. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/LocalDayParser.js +0 -0
  808. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/LocalDayParser.js.map +0 -0
  809. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/LocalWeekParser.js +0 -0
  810. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/LocalWeekParser.js.map +0 -0
  811. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/LocalWeekYearParser.js +0 -0
  812. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/LocalWeekYearParser.js.map +0 -0
  813. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/MinuteParser.js +0 -0
  814. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/MinuteParser.js.map +0 -0
  815. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/MonthParser.js +0 -0
  816. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/MonthParser.js.map +0 -0
  817. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/QuarterParser.js +0 -0
  818. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/QuarterParser.js.map +0 -0
  819. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/SecondParser.js +0 -0
  820. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/SecondParser.js.map +0 -0
  821. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/StandAloneLocalDayParser.js +0 -0
  822. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/StandAloneLocalDayParser.js.map +0 -0
  823. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/StandAloneMonthParser.js +0 -0
  824. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/StandAloneMonthParser.js.map +0 -0
  825. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/StandAloneQuarterParser.js +0 -0
  826. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/StandAloneQuarterParser.js.map +0 -0
  827. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/TimestampMillisecondsParser.js +0 -0
  828. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/TimestampMillisecondsParser.js.map +0 -0
  829. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/TimestampSecondsParser.js +0 -0
  830. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/TimestampSecondsParser.js.map +0 -0
  831. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/YearParser.js +0 -0
  832. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers/YearParser.js.map +0 -0
  833. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers.js +0 -0
  834. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/parsers.js.map +0 -0
  835. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/utils.js +0 -0
  836. /package/dist/{node_modules → vendor}/date-fns/parse/_lib/utils.js.map +0 -0
  837. /package/dist/{node_modules → vendor}/date-fns/parse.js +0 -0
  838. /package/dist/{node_modules → vendor}/date-fns/parse.js.map +0 -0
  839. /package/dist/{node_modules → vendor}/date-fns/setDay.js +0 -0
  840. /package/dist/{node_modules → vendor}/date-fns/setDay.js.map +0 -0
  841. /package/dist/{node_modules → vendor}/date-fns/setHours.js +0 -0
  842. /package/dist/{node_modules → vendor}/date-fns/setHours.js.map +0 -0
  843. /package/dist/{node_modules → vendor}/date-fns/setISODay.js +0 -0
  844. /package/dist/{node_modules → vendor}/date-fns/setISODay.js.map +0 -0
  845. /package/dist/{node_modules → vendor}/date-fns/setISOWeek.js +0 -0
  846. /package/dist/{node_modules → vendor}/date-fns/setISOWeek.js.map +0 -0
  847. /package/dist/{node_modules → vendor}/date-fns/setMinutes.js +0 -0
  848. /package/dist/{node_modules → vendor}/date-fns/setMinutes.js.map +0 -0
  849. /package/dist/{node_modules → vendor}/date-fns/setWeek.js +0 -0
  850. /package/dist/{node_modules → vendor}/date-fns/setWeek.js.map +0 -0
  851. /package/dist/{node_modules → vendor}/date-fns/startOfDay.js +0 -0
  852. /package/dist/{node_modules → vendor}/date-fns/startOfDay.js.map +0 -0
  853. /package/dist/{node_modules → vendor}/date-fns/startOfISOWeek.js +0 -0
  854. /package/dist/{node_modules → vendor}/date-fns/startOfISOWeek.js.map +0 -0
  855. /package/dist/{node_modules → vendor}/date-fns/startOfISOWeekYear.js +0 -0
  856. /package/dist/{node_modules → vendor}/date-fns/startOfISOWeekYear.js.map +0 -0
  857. /package/dist/{node_modules → vendor}/date-fns/startOfMonth.js +0 -0
  858. /package/dist/{node_modules → vendor}/date-fns/startOfMonth.js.map +0 -0
  859. /package/dist/{node_modules → vendor}/date-fns/startOfWeek.js +0 -0
  860. /package/dist/{node_modules → vendor}/date-fns/startOfWeek.js.map +0 -0
  861. /package/dist/{node_modules → vendor}/date-fns/startOfWeekYear.js +0 -0
  862. /package/dist/{node_modules → vendor}/date-fns/startOfWeekYear.js.map +0 -0
  863. /package/dist/{node_modules → vendor}/date-fns/startOfYear.js +0 -0
  864. /package/dist/{node_modules → vendor}/date-fns/startOfYear.js.map +0 -0
  865. /package/dist/{node_modules → vendor}/date-fns/subMonths.js +0 -0
  866. /package/dist/{node_modules → vendor}/date-fns/subMonths.js.map +0 -0
  867. /package/dist/{node_modules → vendor}/date-fns/toDate.js +0 -0
  868. /package/dist/{node_modules → vendor}/date-fns/toDate.js.map +0 -0
  869. /package/dist/{node_modules → vendor}/date-fns/transpose.js +0 -0
  870. /package/dist/{node_modules → vendor}/date-fns/transpose.js.map +0 -0
  871. /package/dist/{node_modules → vendor}/get-nonce/dist/es2015/index.js +0 -0
  872. /package/dist/{node_modules → vendor}/get-nonce/dist/es2015/index.js.map +0 -0
  873. /package/dist/{node_modules → vendor}/react-remove-scroll/dist/es2015/Combination.js +0 -0
  874. /package/dist/{node_modules → vendor}/react-remove-scroll/dist/es2015/Combination.js.map +0 -0
  875. /package/dist/{node_modules → vendor}/react-remove-scroll/dist/es2015/SideEffect.js +0 -0
  876. /package/dist/{node_modules → vendor}/react-remove-scroll/dist/es2015/SideEffect.js.map +0 -0
  877. /package/dist/{node_modules → vendor}/react-remove-scroll/dist/es2015/UI.js +0 -0
  878. /package/dist/{node_modules → vendor}/react-remove-scroll/dist/es2015/UI.js.map +0 -0
  879. /package/dist/{node_modules → vendor}/react-remove-scroll/dist/es2015/aggresiveCapture.js +0 -0
  880. /package/dist/{node_modules → vendor}/react-remove-scroll/dist/es2015/aggresiveCapture.js.map +0 -0
  881. /package/dist/{node_modules → vendor}/react-remove-scroll/dist/es2015/handleScroll.js +0 -0
  882. /package/dist/{node_modules → vendor}/react-remove-scroll/dist/es2015/handleScroll.js.map +0 -0
  883. /package/dist/{node_modules → vendor}/react-remove-scroll/dist/es2015/medium.js +0 -0
  884. /package/dist/{node_modules → vendor}/react-remove-scroll/dist/es2015/medium.js.map +0 -0
  885. /package/dist/{node_modules → vendor}/react-remove-scroll/dist/es2015/sidecar.js +0 -0
  886. /package/dist/{node_modules → vendor}/react-remove-scroll/dist/es2015/sidecar.js.map +0 -0
  887. /package/dist/{node_modules → vendor}/react-remove-scroll-bar/dist/es2015/component.js +0 -0
  888. /package/dist/{node_modules → vendor}/react-remove-scroll-bar/dist/es2015/component.js.map +0 -0
  889. /package/dist/{node_modules → vendor}/react-remove-scroll-bar/dist/es2015/constants.js +0 -0
  890. /package/dist/{node_modules → vendor}/react-remove-scroll-bar/dist/es2015/constants.js.map +0 -0
  891. /package/dist/{node_modules → vendor}/react-remove-scroll-bar/dist/es2015/utils.js +0 -0
  892. /package/dist/{node_modules → vendor}/react-remove-scroll-bar/dist/es2015/utils.js.map +0 -0
  893. /package/dist/{node_modules → vendor}/react-style-singleton/dist/es2015/component.js +0 -0
  894. /package/dist/{node_modules → vendor}/react-style-singleton/dist/es2015/component.js.map +0 -0
  895. /package/dist/{node_modules → vendor}/react-style-singleton/dist/es2015/hook.js +0 -0
  896. /package/dist/{node_modules → vendor}/react-style-singleton/dist/es2015/hook.js.map +0 -0
  897. /package/dist/{node_modules → vendor}/react-style-singleton/dist/es2015/singleton.js +0 -0
  898. /package/dist/{node_modules → vendor}/react-style-singleton/dist/es2015/singleton.js.map +0 -0
  899. /package/dist/{node_modules → vendor}/rifm/dist/rifm.esm.js +0 -0
  900. /package/dist/{node_modules → vendor}/rifm/dist/rifm.esm.js.map +0 -0
  901. /package/dist/{node_modules → vendor}/sonner/dist/index.js +0 -0
  902. /package/dist/{node_modules → vendor}/sonner/dist/index.js.map +0 -0
  903. /package/dist/{node_modules → vendor}/tslib/tslib.es6.js +0 -0
  904. /package/dist/{node_modules → vendor}/tslib/tslib.es6.js.map +0 -0
  905. /package/dist/{node_modules → vendor}/use-callback-ref/dist/es2015/assignRef.js +0 -0
  906. /package/dist/{node_modules → vendor}/use-callback-ref/dist/es2015/assignRef.js.map +0 -0
  907. /package/dist/{node_modules → vendor}/use-callback-ref/dist/es2015/useMergeRef.js +0 -0
  908. /package/dist/{node_modules → vendor}/use-callback-ref/dist/es2015/useMergeRef.js.map +0 -0
  909. /package/dist/{node_modules → vendor}/use-callback-ref/dist/es2015/useRef.js +0 -0
  910. /package/dist/{node_modules → vendor}/use-callback-ref/dist/es2015/useRef.js.map +0 -0
  911. /package/dist/{node_modules → vendor}/use-sidecar/dist/es2015/exports.js +0 -0
  912. /package/dist/{node_modules → vendor}/use-sidecar/dist/es2015/exports.js.map +0 -0
  913. /package/dist/{node_modules → vendor}/use-sidecar/dist/es2015/medium.js +0 -0
  914. /package/dist/{node_modules → vendor}/use-sidecar/dist/es2015/medium.js.map +0 -0
  915. /package/dist/{node_modules → vendor}/use-sync-external-store/cjs/use-sync-external-store-shim.development.js +0 -0
  916. /package/dist/{node_modules → vendor}/use-sync-external-store/cjs/use-sync-external-store-shim.development.js.map +0 -0
  917. /package/dist/{node_modules → vendor}/use-sync-external-store/cjs/use-sync-external-store-shim.production.js +0 -0
  918. /package/dist/{node_modules → vendor}/use-sync-external-store/cjs/use-sync-external-store-shim.production.js.map +0 -0
  919. /package/dist/{node_modules → vendor}/use-sync-external-store/shim/index.js +0 -0
  920. /package/dist/{node_modules → vendor}/use-sync-external-store/shim/index.js.map +0 -0
@@ -1 +0,0 @@
1
- {"version":3,"file":"convert-9768a965.js","sources":["../../../../../../../node_modules/rtl-css-js/dist/esm/convert-9768a965.js"],"sourcesContent":["/**\n * Takes an array of [keyValue1, keyValue2] pairs and creates an object of {keyValue1: keyValue2, keyValue2: keyValue1}\n * @param {Array} array the array of pairs\n * @return {Object} the {key, value} pair object\n */\nfunction arrayToObject(array) {\n return array.reduce(function (obj, _ref) {\n var prop1 = _ref[0],\n prop2 = _ref[1];\n obj[prop1] = prop2;\n obj[prop2] = prop1;\n return obj;\n }, {});\n}\nfunction isBoolean(val) {\n return typeof val === 'boolean';\n}\nfunction isFunction(val) {\n return typeof val === 'function';\n}\nfunction isNumber(val) {\n return typeof val === 'number';\n}\nfunction isNullOrUndefined(val) {\n return val === null || typeof val === 'undefined';\n}\nfunction isObject(val) {\n return val && typeof val === 'object';\n}\nfunction isString(val) {\n return typeof val === 'string';\n}\nfunction includes(inclusive, inclusee) {\n return inclusive.indexOf(inclusee) !== -1;\n}\n\n/**\n * Flip the sign of a CSS value, possibly with a unit.\n *\n * We can't just negate the value with unary minus due to the units.\n *\n * @private\n * @param {String} value - the original value (for example 77%)\n * @return {String} the result (for example -77%)\n */\nfunction flipSign(value) {\n if (parseFloat(value) === 0) {\n // Don't mangle zeroes\n return value;\n }\n if (value[0] === '-') {\n return value.slice(1);\n }\n return \"-\" + value;\n}\nfunction flipTransformSign(match, prefix, offset, suffix) {\n return prefix + flipSign(offset) + suffix;\n}\n\n/**\n * Takes a percentage for background position and inverts it.\n * This was copied and modified from CSSJanus:\n * https://github.com/cssjanus/cssjanus/blob/4245f834365f6cfb0239191a151432fb85abab23/src/cssjanus.js#L152-L175\n * @param {String} value - the original value (for example 77%)\n * @return {String} the result (for example 23%)\n */\nfunction calculateNewBackgroundPosition(value) {\n var idx = value.indexOf('.');\n if (idx === -1) {\n value = 100 - parseFloat(value) + \"%\";\n } else {\n // Two off, one for the \"%\" at the end, one for the dot itself\n var len = value.length - idx - 2;\n value = 100 - parseFloat(value);\n value = value.toFixed(len) + \"%\";\n }\n return value;\n}\n\n/**\n * This takes a list of CSS values and converts it to an array\n * @param {String} value - something like `1px`, `1px 2em`, or `3pt rgb(150, 230, 550) 40px calc(100% - 5px)`\n * @return {Array} the split values (for example: `['3pt', 'rgb(150, 230, 550)', '40px', 'calc(100% - 5px)']`)\n */\nfunction getValuesAsList(value) {\n return value.replace(/ +/g, ' ') // remove all extraneous spaces\n .split(' ').map(function (i) {\n return i.trim();\n }) // get rid of extra space before/after each item\n .filter(Boolean) // get rid of empty strings\n // join items which are within parenthese\n // luckily `calc (100% - 5px)` is invalid syntax and it must be `calc(100% - 5px)`, otherwise this would be even more complex\n .reduce(function (_ref2, item) {\n var list = _ref2.list,\n state = _ref2.state;\n var openParansCount = (item.match(/\\(/g) || []).length;\n var closedParansCount = (item.match(/\\)/g) || []).length;\n if (state.parensDepth > 0) {\n list[list.length - 1] = list[list.length - 1] + \" \" + item;\n } else {\n list.push(item);\n }\n state.parensDepth += openParansCount - closedParansCount;\n return {\n list: list,\n state: state\n };\n }, {\n list: [],\n state: {\n parensDepth: 0\n }\n }).list;\n}\n\n/**\n * This is intended for properties that are `top right bottom left` and will switch them to `top left bottom right`\n * @param {String} value - `1px 2px 3px 4px` for example, but also handles cases where there are too few/too many and\n * simply returns the value in those cases (which is the correct behavior)\n * @return {String} the result - `1px 4px 3px 2px` for example.\n */\nfunction handleQuartetValues(value) {\n var splitValues = getValuesAsList(value);\n if (splitValues.length <= 3 || splitValues.length > 4) {\n return value;\n }\n var top = splitValues[0],\n right = splitValues[1],\n bottom = splitValues[2],\n left = splitValues[3];\n return [top, left, bottom, right].join(' ');\n}\n\n/**\n *\n * @param {String|Number|Object} value css property value to test\n * @returns If the css property value can(should?) have an RTL equivalent\n */\nfunction canConvertValue(value) {\n return !isBoolean(value) && !isNullOrUndefined(value);\n}\n\n/**\n * Splits a shadow style into its separate shadows using the comma delimiter, but creating an exception\n * for comma separated values in parentheses often used for rgba colours.\n * @param {String} value\n * @returns {Array} array of all box shadow values in the string\n */\nfunction splitShadow(value) {\n var shadows = [];\n var start = 0;\n var end = 0;\n var rgba = false;\n while (end < value.length) {\n if (!rgba && value[end] === ',') {\n shadows.push(value.substring(start, end).trim());\n end++;\n start = end;\n } else if (value[end] === \"(\") {\n rgba = true;\n end++;\n } else if (value[end] === ')') {\n rgba = false;\n end++;\n } else {\n end++;\n }\n }\n\n // push the last shadow value if there is one\n // istanbul ignore next\n if (start != end) {\n shadows.push(value.substring(start, end + 1));\n }\n return shadows;\n}\n\n// some values require a little fudging, that fudging goes here.\nvar propertyValueConverters = {\n padding: function padding(_ref) {\n var value = _ref.value;\n if (isNumber(value)) {\n return value;\n }\n return handleQuartetValues(value);\n },\n textShadow: function textShadow(_ref2) {\n var value = _ref2.value;\n var flippedShadows = splitShadow(value).map(function (shadow) {\n // intentionally leaving off the `g` flag here because we only want to change the first number (which is the offset-x)\n return shadow.replace(/(^|\\s)(-*)([.|\\d]+)/, function (match, whiteSpace, negative, number) {\n if (number === '0') {\n return match;\n }\n var doubleNegative = negative === '' ? '-' : '';\n return \"\" + whiteSpace + doubleNegative + number;\n });\n });\n return flippedShadows.join(',');\n },\n borderColor: function borderColor(_ref3) {\n var value = _ref3.value;\n return handleQuartetValues(value);\n },\n borderRadius: function borderRadius(_ref4) {\n var value = _ref4.value;\n if (isNumber(value)) {\n return value;\n }\n if (includes(value, '/')) {\n var _value$split = value.split('/'),\n radius1 = _value$split[0],\n radius2 = _value$split[1];\n var convertedRadius1 = propertyValueConverters.borderRadius({\n value: radius1.trim()\n });\n var convertedRadius2 = propertyValueConverters.borderRadius({\n value: radius2.trim()\n });\n return convertedRadius1 + \" / \" + convertedRadius2;\n }\n var splitValues = getValuesAsList(value);\n switch (splitValues.length) {\n case 2:\n {\n return splitValues.reverse().join(' ');\n }\n case 4:\n {\n var topLeft = splitValues[0],\n topRight = splitValues[1],\n bottomRight = splitValues[2],\n bottomLeft = splitValues[3];\n return [topRight, topLeft, bottomLeft, bottomRight].join(' ');\n }\n default:\n {\n return value;\n }\n }\n },\n background: function background(_ref5) {\n var value = _ref5.value,\n valuesToConvert = _ref5.valuesToConvert,\n isRtl = _ref5.isRtl,\n bgImgDirectionRegex = _ref5.bgImgDirectionRegex,\n bgPosDirectionRegex = _ref5.bgPosDirectionRegex;\n if (isNumber(value)) {\n return value;\n }\n\n // Yeah, this is in need of a refactor 🙃...\n // but this property is a tough cookie 🍪\n // get the backgroundPosition out of the string by removing everything that couldn't be the backgroundPosition value\n var backgroundPositionValue = value.replace(/(url\\(.*?\\))|(rgba?\\(.*?\\))|(hsl\\(.*?\\))|(#[a-fA-F0-9]+)|((^| )(\\D)+( |$))/g, '').trim();\n // replace that backgroundPosition value with the converted version\n value = value.replace(backgroundPositionValue, propertyValueConverters.backgroundPosition({\n value: backgroundPositionValue,\n valuesToConvert: valuesToConvert,\n isRtl: isRtl,\n bgPosDirectionRegex: bgPosDirectionRegex\n }));\n // do the backgroundImage value replacing on the whole value (because why not?)\n return propertyValueConverters.backgroundImage({\n value: value,\n valuesToConvert: valuesToConvert,\n bgImgDirectionRegex: bgImgDirectionRegex\n });\n },\n backgroundImage: function backgroundImage(_ref6) {\n var value = _ref6.value,\n valuesToConvert = _ref6.valuesToConvert,\n bgImgDirectionRegex = _ref6.bgImgDirectionRegex;\n if (!includes(value, 'url(') && !includes(value, 'linear-gradient(')) {\n return value;\n }\n return value.replace(bgImgDirectionRegex, function (match, g1, group2) {\n return match.replace(group2, valuesToConvert[group2]);\n });\n },\n backgroundPosition: function backgroundPosition(_ref7) {\n var value = _ref7.value,\n valuesToConvert = _ref7.valuesToConvert,\n isRtl = _ref7.isRtl,\n bgPosDirectionRegex = _ref7.bgPosDirectionRegex;\n return value\n // intentionally only grabbing the first instance of this because that represents `left`\n .replace(isRtl ? /^((-|\\d|\\.)+%)/ : null, function (match, group) {\n return calculateNewBackgroundPosition(group);\n }).replace(bgPosDirectionRegex, function (match) {\n return valuesToConvert[match];\n });\n },\n backgroundPositionX: function backgroundPositionX(_ref8) {\n var value = _ref8.value,\n valuesToConvert = _ref8.valuesToConvert,\n isRtl = _ref8.isRtl,\n bgPosDirectionRegex = _ref8.bgPosDirectionRegex;\n if (isNumber(value)) {\n return value;\n }\n return propertyValueConverters.backgroundPosition({\n value: value,\n valuesToConvert: valuesToConvert,\n isRtl: isRtl,\n bgPosDirectionRegex: bgPosDirectionRegex\n });\n },\n transition: function transition(_ref9) {\n var value = _ref9.value,\n propertiesToConvert = _ref9.propertiesToConvert;\n return value.split(/,\\s*/g).map(function (transition) {\n var values = transition.split(' ');\n\n // Property is always defined first\n values[0] = propertiesToConvert[values[0]] || values[0];\n return values.join(' ');\n }).join(', ');\n },\n transitionProperty: function transitionProperty(_ref10) {\n var value = _ref10.value,\n propertiesToConvert = _ref10.propertiesToConvert;\n return value.split(/,\\s*/g).map(function (prop) {\n return propertiesToConvert[prop] || prop;\n }).join(', ');\n },\n transform: function transform(_ref11) {\n var value = _ref11.value;\n // This was copied and modified from CSSJanus:\n // https://github.com/cssjanus/cssjanus/blob/4a40f001b1ba35567112d8b8e1d9d95eda4234c3/src/cssjanus.js#L152-L153\n var nonAsciiPattern = \"[^\\\\u0020-\\\\u007e]\";\n var escapePattern = \"(?:\" + '(?:(?:\\\\[0-9a-f]{1,6})(?:\\\\r\\\\n|\\\\s)?)' + \"|\\\\\\\\[^\\\\r\\\\n\\\\f0-9a-f])\";\n var signedQuantPattern = \"((?:-?\" + ('(?:[0-9]*\\\\.[0-9]+|[0-9]+)' + \"(?:\\\\s*\" + '(?:em|ex|px|cm|mm|in|pt|pc|deg|rad|grad|ms|s|hz|khz|%)' + \"|\" + (\"-?\" + (\"(?:[_a-z]|\" + nonAsciiPattern + \"|\" + escapePattern + \")\") + (\"(?:[_a-z0-9-]|\" + nonAsciiPattern + \"|\" + escapePattern + \")\") + \"*\") + \")?\") + \")|(?:inherit|auto))\";\n var translateXRegExp = new RegExp(\"(translateX\\\\s*\\\\(\\\\s*)\" + signedQuantPattern + \"(\\\\s*\\\\))\", 'gi');\n var translateRegExp = new RegExp(\"(translate\\\\s*\\\\(\\\\s*)\" + signedQuantPattern + \"((?:\\\\s*,\\\\s*\" + signedQuantPattern + \"){0,1}\\\\s*\\\\))\", 'gi');\n var translate3dRegExp = new RegExp(\"(translate3d\\\\s*\\\\(\\\\s*)\" + signedQuantPattern + \"((?:\\\\s*,\\\\s*\" + signedQuantPattern + \"){0,2}\\\\s*\\\\))\", 'gi');\n var rotateRegExp = new RegExp(\"(rotate[ZY]?\\\\s*\\\\(\\\\s*)\" + signedQuantPattern + \"(\\\\s*\\\\))\", 'gi');\n return value.replace(translateXRegExp, flipTransformSign).replace(translateRegExp, flipTransformSign).replace(translate3dRegExp, flipTransformSign).replace(rotateRegExp, flipTransformSign);\n }\n};\npropertyValueConverters.objectPosition = propertyValueConverters.backgroundPosition;\npropertyValueConverters.margin = propertyValueConverters.padding;\npropertyValueConverters.borderWidth = propertyValueConverters.padding;\npropertyValueConverters.boxShadow = propertyValueConverters.textShadow;\npropertyValueConverters.webkitBoxShadow = propertyValueConverters.boxShadow;\npropertyValueConverters.mozBoxShadow = propertyValueConverters.boxShadow;\npropertyValueConverters.WebkitBoxShadow = propertyValueConverters.boxShadow;\npropertyValueConverters.MozBoxShadow = propertyValueConverters.boxShadow;\npropertyValueConverters.borderStyle = propertyValueConverters.borderColor;\npropertyValueConverters.webkitTransform = propertyValueConverters.transform;\npropertyValueConverters.mozTransform = propertyValueConverters.transform;\npropertyValueConverters.WebkitTransform = propertyValueConverters.transform;\npropertyValueConverters.MozTransform = propertyValueConverters.transform;\npropertyValueConverters.transformOrigin = propertyValueConverters.backgroundPosition;\npropertyValueConverters.webkitTransformOrigin = propertyValueConverters.transformOrigin;\npropertyValueConverters.mozTransformOrigin = propertyValueConverters.transformOrigin;\npropertyValueConverters.WebkitTransformOrigin = propertyValueConverters.transformOrigin;\npropertyValueConverters.MozTransformOrigin = propertyValueConverters.transformOrigin;\npropertyValueConverters.webkitTransition = propertyValueConverters.transition;\npropertyValueConverters.mozTransition = propertyValueConverters.transition;\npropertyValueConverters.WebkitTransition = propertyValueConverters.transition;\npropertyValueConverters.MozTransition = propertyValueConverters.transition;\npropertyValueConverters.webkitTransitionProperty = propertyValueConverters.transitionProperty;\npropertyValueConverters.mozTransitionProperty = propertyValueConverters.transitionProperty;\npropertyValueConverters.WebkitTransitionProperty = propertyValueConverters.transitionProperty;\npropertyValueConverters.MozTransitionProperty = propertyValueConverters.transitionProperty;\n\n// kebab-case versions\n\npropertyValueConverters['text-shadow'] = propertyValueConverters.textShadow;\npropertyValueConverters['border-color'] = propertyValueConverters.borderColor;\npropertyValueConverters['border-radius'] = propertyValueConverters.borderRadius;\npropertyValueConverters['background-image'] = propertyValueConverters.backgroundImage;\npropertyValueConverters['background-position'] = propertyValueConverters.backgroundPosition;\npropertyValueConverters['background-position-x'] = propertyValueConverters.backgroundPositionX;\npropertyValueConverters['object-position'] = propertyValueConverters.objectPosition;\npropertyValueConverters['border-width'] = propertyValueConverters.padding;\npropertyValueConverters['box-shadow'] = propertyValueConverters.textShadow;\npropertyValueConverters['-webkit-box-shadow'] = propertyValueConverters.textShadow;\npropertyValueConverters['-moz-box-shadow'] = propertyValueConverters.textShadow;\npropertyValueConverters['border-style'] = propertyValueConverters.borderColor;\npropertyValueConverters['-webkit-transform'] = propertyValueConverters.transform;\npropertyValueConverters['-moz-transform'] = propertyValueConverters.transform;\npropertyValueConverters['transform-origin'] = propertyValueConverters.transformOrigin;\npropertyValueConverters['-webkit-transform-origin'] = propertyValueConverters.transformOrigin;\npropertyValueConverters['-moz-transform-origin'] = propertyValueConverters.transformOrigin;\npropertyValueConverters['-webkit-transition'] = propertyValueConverters.transition;\npropertyValueConverters['-moz-transition'] = propertyValueConverters.transition;\npropertyValueConverters['transition-property'] = propertyValueConverters.transitionProperty;\npropertyValueConverters['-webkit-transition-property'] = propertyValueConverters.transitionProperty;\npropertyValueConverters['-moz-transition-property'] = propertyValueConverters.transitionProperty;\n\n// this will be an object of properties that map to their corresponding rtl property (their doppelganger)\nvar propertiesToConvert = arrayToObject([['paddingLeft', 'paddingRight'], ['marginLeft', 'marginRight'], ['left', 'right'], ['borderLeft', 'borderRight'], ['borderLeftColor', 'borderRightColor'], ['borderLeftStyle', 'borderRightStyle'], ['borderLeftWidth', 'borderRightWidth'], ['borderTopLeftRadius', 'borderTopRightRadius'], ['borderBottomLeftRadius', 'borderBottomRightRadius'],\n// kebab-case versions\n['padding-left', 'padding-right'], ['margin-left', 'margin-right'], ['border-left', 'border-right'], ['border-left-color', 'border-right-color'], ['border-left-style', 'border-right-style'], ['border-left-width', 'border-right-width'], ['border-top-left-radius', 'border-top-right-radius'], ['border-bottom-left-radius', 'border-bottom-right-radius']]);\nvar propsToIgnore = ['content'];\n\n// this is the same as the propertiesToConvert except for values\nvar valuesToConvert = arrayToObject([['ltr', 'rtl'], ['left', 'right'], ['w-resize', 'e-resize'], ['sw-resize', 'se-resize'], ['nw-resize', 'ne-resize']]);\n\n// Sorry for the regex 😞, but basically thisis used to replace _every_ instance of\n// `ltr`, `rtl`, `right`, and `left` in `backgroundimage` with the corresponding opposite.\n// A situation we're accepting here:\n// url('/left/right/rtl/ltr.png') will be changed to url('/right/left/ltr/rtl.png')\n// Definite trade-offs here, but I think it's a good call.\nvar bgImgDirectionRegex = new RegExp('(^|\\\\W|_)((ltr)|(rtl)|(left)|(right))(\\\\W|_|$)', 'g');\nvar bgPosDirectionRegex = new RegExp('(left)|(right)');\n\n/**\n * converts properties and values in the CSS in JS object to their corresponding RTL values\n * @param {Object} object the CSS in JS object\n * @return {Object} the RTL converted object\n */\nfunction convert(object) {\n return Object.keys(object).reduce(function (newObj, originalKey) {\n var originalValue = object[originalKey];\n if (isString(originalValue)) {\n // you're welcome to later code 😺\n originalValue = originalValue.trim();\n }\n\n // Some properties should never be transformed\n if (includes(propsToIgnore, originalKey)) {\n newObj[originalKey] = originalValue;\n return newObj;\n }\n var _convertProperty = convertProperty(originalKey, originalValue),\n key = _convertProperty.key,\n value = _convertProperty.value;\n newObj[key] = value;\n return newObj;\n }, Array.isArray(object) ? [] : {});\n}\n\n/**\n * Converts a property and its value to the corresponding RTL key and value\n * @param {String} originalKey the original property key\n * @param {Number|String|Object} originalValue the original css property value\n * @return {Object} the new {key, value} pair\n */\nfunction convertProperty(originalKey, originalValue) {\n var isNoFlip = /\\/\\*\\s?@noflip\\s?\\*\\//.test(originalValue);\n var key = isNoFlip ? originalKey : getPropertyDoppelganger(originalKey);\n var value = isNoFlip ? originalValue : getValueDoppelganger(key, originalValue);\n return {\n key: key,\n value: value\n };\n}\n\n/**\n * This gets the RTL version of the given property if it has a corresponding RTL property\n * @param {String} property the name of the property\n * @return {String} the name of the RTL property\n */\nfunction getPropertyDoppelganger(property) {\n return propertiesToConvert[property] || property;\n}\n\n/**\n * This converts the given value to the RTL version of that value based on the key\n * @param {String} key this is the key (note: this should be the RTL version of the originalKey)\n * @param {String|Number|Object} originalValue the original css property value. If it's an object, then we'll convert that as well\n * @return {String|Number|Object} the converted value\n */\nfunction getValueDoppelganger(key, originalValue) {\n if (!canConvertValue(originalValue)) {\n return originalValue;\n }\n if (isObject(originalValue)) {\n return convert(originalValue); // recursion 🌀\n }\n\n var isNum = isNumber(originalValue);\n var isFunc = isFunction(originalValue);\n var importantlessValue = isNum || isFunc ? originalValue : originalValue.replace(/ !important.*?$/, '');\n var isImportant = !isNum && importantlessValue.length !== originalValue.length;\n var valueConverter = propertyValueConverters[key];\n var newValue;\n if (valueConverter) {\n newValue = valueConverter({\n value: importantlessValue,\n valuesToConvert: valuesToConvert,\n propertiesToConvert: propertiesToConvert,\n isRtl: true,\n bgImgDirectionRegex: bgImgDirectionRegex,\n bgPosDirectionRegex: bgPosDirectionRegex\n });\n } else {\n newValue = valuesToConvert[importantlessValue] || importantlessValue;\n }\n if (isImportant) {\n return newValue + \" !important\";\n }\n return newValue;\n}\n\nexport { propertiesToConvert as a, propsToIgnore as b, convert as c, convertProperty as d, getValueDoppelganger as e, arrayToObject as f, getPropertyDoppelganger as g, calculateNewBackgroundPosition as h, canConvertValue as i, flipTransformSign as j, flipSign as k, handleQuartetValues as l, includes as m, isBoolean as n, isFunction as o, propertyValueConverters as p, isNumber as q, isNullOrUndefined as r, isObject as s, isString as t, getValuesAsList as u, valuesToConvert as v, splitShadow as w };\n"],"names":["arrayToObject","array","obj","_ref","prop1","prop2","isBoolean","val","isFunction","isNumber","isNullOrUndefined","isObject","isString","includes","inclusive","inclusee","flipSign","value","flipTransformSign","match","prefix","offset","suffix","calculateNewBackgroundPosition","idx","len","getValuesAsList","i","_ref2","item","list","state","openParansCount","closedParansCount","handleQuartetValues","splitValues","top","right","bottom","left","canConvertValue","splitShadow","shadows","start","end","rgba","propertyValueConverters","flippedShadows","shadow","whiteSpace","negative","number","doubleNegative","_ref3","_ref4","_value$split","radius1","radius2","convertedRadius1","convertedRadius2","topLeft","topRight","bottomRight","bottomLeft","_ref5","valuesToConvert","isRtl","bgImgDirectionRegex","bgPosDirectionRegex","backgroundPositionValue","_ref6","g1","group2","_ref7","group","_ref8","_ref9","propertiesToConvert","transition","values","_ref10","prop","_ref11","nonAsciiPattern","escapePattern","signedQuantPattern","translateXRegExp","translateRegExp","translate3dRegExp","rotateRegExp","propsToIgnore","convert","object","newObj","originalKey","originalValue","_convertProperty","convertProperty","key","isNoFlip","getPropertyDoppelganger","getValueDoppelganger","property","isNum","isFunc","importantlessValue","isImportant","valueConverter","newValue"],"mappings":"AAKA,SAASA,EAAcC,GAAO;AAC5B,SAAOA,EAAM,OAAO,SAAUC,GAAKC,GAAM;AACvC,QAAIC,IAAQD,EAAK,CAAC,GAChBE,IAAQF,EAAK,CAAC;AAChB,WAAAD,EAAIE,CAAK,IAAIC,GACbH,EAAIG,CAAK,IAAID,GACNF;AAAA,EACT,GAAG,CAAA,CAAE;AACP;AACA,SAASI,EAAUC,GAAK;AACtB,SAAO,OAAOA,KAAQ;AACxB;AACA,SAASC,EAAWD,GAAK;AACvB,SAAO,OAAOA,KAAQ;AACxB;AACA,SAASE,EAASF,GAAK;AACrB,SAAO,OAAOA,KAAQ;AACxB;AACA,SAASG,EAAkBH,GAAK;AAC9B,SAAOA,MAAQ,QAAQ,OAAOA,IAAQ;AACxC;AACA,SAASI,EAASJ,GAAK;AACrB,SAAOA,KAAO,OAAOA,KAAQ;AAC/B;AACA,SAASK,EAASL,GAAK;AACrB,SAAO,OAAOA,KAAQ;AACxB;AACA,SAASM,EAASC,GAAWC,GAAU;AACrC,SAAOD,EAAU,QAAQC,CAAQ,MAAM;AACzC;AAWA,SAASC,EAASC,GAAO;AACvB,SAAI,WAAWA,CAAK,MAAM,IAEjBA,IAELA,EAAM,CAAC,MAAM,MACRA,EAAM,MAAM,CAAC,IAEf,MAAMA;AACf;AACA,SAASC,EAAkBC,GAAOC,GAAQC,GAAQC,GAAQ;AACxD,SAAOF,IAASJ,EAASK,CAAM,IAAIC;AACrC;AASA,SAASC,EAA+BN,GAAO;AAC7C,MAAIO,IAAMP,EAAM,QAAQ,GAAG;AAC3B,MAAIO,MAAQ;AACV,IAAAP,IAAQ,MAAM,WAAWA,CAAK,IAAI;AAAA,OAC7B;AAEL,QAAIQ,IAAMR,EAAM,SAASO,IAAM;AAC/B,IAAAP,IAAQ,MAAM,WAAWA,CAAK,GAC9BA,IAAQA,EAAM,QAAQQ,CAAG,IAAI;AAAA,EAC/B;AACA,SAAOR;AACT;AAOA,SAASS,EAAgBT,GAAO;AAC9B,SAAOA,EAAM,QAAQ,OAAO,GAAG,EAC9B,MAAM,GAAG,EAAE,IAAI,SAAUU,GAAG;AAC3B,WAAOA,EAAE,KAAI;AAAA,EACf,CAAC,EACA,OAAO,OAAO,EAGd,OAAO,SAAUC,GAAOC,GAAM;AAC7B,QAAIC,IAAOF,EAAM,MACfG,IAAQH,EAAM,OACZI,KAAmBH,EAAK,MAAM,KAAK,KAAK,CAAA,GAAI,QAC5CI,KAAqBJ,EAAK,MAAM,KAAK,KAAK,CAAA,GAAI;AAClD,WAAIE,EAAM,cAAc,IACtBD,EAAKA,EAAK,SAAS,CAAC,IAAIA,EAAKA,EAAK,SAAS,CAAC,IAAI,MAAMD,IAEtDC,EAAK,KAAKD,CAAI,GAEhBE,EAAM,eAAeC,IAAkBC,GAChC;AAAA,MACL,MAAMH;AAAA,MACN,OAAOC;AAAA,IACb;AAAA,EACE,GAAG;AAAA,IACD,MAAM,CAAA;AAAA,IACN,OAAO;AAAA,MACL,aAAa;AAAA,IACnB;AAAA,EACA,CAAG,EAAE;AACL;AAQA,SAASG,EAAoBjB,GAAO;AAClC,MAAIkB,IAAcT,EAAgBT,CAAK;AACvC,MAAIkB,EAAY,UAAU,KAAKA,EAAY,SAAS;AAClD,WAAOlB;AAET,MAAImB,IAAMD,EAAY,CAAC,GACrBE,IAAQF,EAAY,CAAC,GACrBG,IAASH,EAAY,CAAC,GACtBI,IAAOJ,EAAY,CAAC;AACtB,SAAO,CAACC,GAAKG,GAAMD,GAAQD,CAAK,EAAE,KAAK,GAAG;AAC5C;AAOA,SAASG,EAAgBvB,GAAO;AAC9B,SAAO,CAACX,EAAUW,CAAK,KAAK,CAACP,EAAkBO,CAAK;AACtD;AAQA,SAASwB,EAAYxB,GAAO;AAK1B,WAJIyB,IAAU,CAAA,GACVC,IAAQ,GACRC,IAAM,GACNC,IAAO,IACJD,IAAM3B,EAAM;AACjB,IAAI,CAAC4B,KAAQ5B,EAAM2B,CAAG,MAAM,OAC1BF,EAAQ,KAAKzB,EAAM,UAAU0B,GAAOC,CAAG,EAAE,MAAM,GAC/CA,KACAD,IAAQC,KACC3B,EAAM2B,CAAG,MAAM,OACxBC,IAAO,IACPD,QACS3B,EAAM2B,CAAG,MAAM,QACxBC,IAAO,KACPD;AAQJ,SAAID,KAASC,KACXF,EAAQ,KAAKzB,EAAM,UAAU0B,GAAOC,IAAM,CAAC,CAAC,GAEvCF;AACT;AAGG,IAACI,IAA0B;AAAA,EAC5B,SAAS,SAAiB3C,GAAM;AAC9B,QAAIc,IAAQd,EAAK;AACjB,WAAIM,EAASQ,CAAK,IACTA,IAEFiB,EAAoBjB,CAAK;AAAA,EAClC;AAAA,EACA,YAAY,SAAoBW,GAAO;AACrC,QAAIX,IAAQW,EAAM,OACdmB,IAAiBN,EAAYxB,CAAK,EAAE,IAAI,SAAU+B,GAAQ;AAE5D,aAAOA,EAAO,QAAQ,uBAAuB,SAAU7B,GAAO8B,GAAYC,GAAUC,GAAQ;AAC1F,YAAIA,MAAW;AACb,iBAAOhC;AAET,YAAIiC,IAAiBF,MAAa,KAAK,MAAM;AAC7C,eAAO,KAAKD,IAAaG,IAAiBD;AAAA,MAC5C,CAAC;AAAA,IACH,CAAC;AACD,WAAOJ,EAAe,KAAK,GAAG;AAAA,EAChC;AAAA,EACA,aAAa,SAAqBM,GAAO;AACvC,QAAIpC,IAAQoC,EAAM;AAClB,WAAOnB,EAAoBjB,CAAK;AAAA,EAClC;AAAA,EACA,cAAc,SAAsBqC,GAAO;AACzC,QAAIrC,IAAQqC,EAAM;AAClB,QAAI7C,EAASQ,CAAK;AAChB,aAAOA;AAET,QAAIJ,EAASI,GAAO,GAAG,GAAG;AACxB,UAAIsC,IAAetC,EAAM,MAAM,GAAG,GAChCuC,IAAUD,EAAa,CAAC,GACxBE,IAAUF,EAAa,CAAC,GACtBG,IAAmBZ,EAAwB,aAAa;AAAA,QAC1D,OAAOU,EAAQ,KAAI;AAAA,MAC3B,CAAO,GACGG,IAAmBb,EAAwB,aAAa;AAAA,QAC1D,OAAOW,EAAQ,KAAI;AAAA,MAC3B,CAAO;AACD,aAAOC,IAAmB,QAAQC;AAAA,IACpC;AACA,QAAIxB,IAAcT,EAAgBT,CAAK;AACvC,YAAQkB,EAAY,QAAM;AAAA,MACxB,KAAK;AAED,eAAOA,EAAY,UAAU,KAAK,GAAG;AAAA,MAEzC,KAAK,GACH;AACE,YAAIyB,IAAUzB,EAAY,CAAC,GACzB0B,IAAW1B,EAAY,CAAC,GACxB2B,IAAc3B,EAAY,CAAC,GAC3B4B,IAAa5B,EAAY,CAAC;AAC5B,eAAO,CAAC0B,GAAUD,GAASG,GAAYD,CAAW,EAAE,KAAK,GAAG;AAAA,MAC9D;AAAA,MACF;AAEI,eAAO7C;AAAA,IAEjB;AAAA,EACE;AAAA,EACA,YAAY,SAAoB+C,GAAO;AACrC,QAAI/C,IAAQ+C,EAAM,OAChBC,IAAkBD,EAAM,iBACxBE,IAAQF,EAAM,OACdG,IAAsBH,EAAM,qBAC5BI,IAAsBJ,EAAM;AAC9B,QAAIvD,EAASQ,CAAK;AAChB,aAAOA;AAMT,QAAIoD,IAA0BpD,EAAM,QAAQ,+EAA+E,EAAE,EAAE,KAAI;AAEnI,WAAAA,IAAQA,EAAM,QAAQoD,GAAyBvB,EAAwB,mBAAmB;AAAA,MACxF,OAAOuB;AAAA,MACP,iBAAiBJ;AAAA,MACjB,OAAOC;AAAA,MACP,qBAAqBE;AAAA,IAC3B,CAAK,CAAC,GAEKtB,EAAwB,gBAAgB;AAAA,MAC7C,OAAO7B;AAAA,MACP,iBAAiBgD;AAAA,MACjB,qBAAqBE;AAAA,IAC3B,CAAK;AAAA,EACH;AAAA,EACA,iBAAiB,SAAyBG,GAAO;AAC/C,QAAIrD,IAAQqD,EAAM,OAChBL,IAAkBK,EAAM,iBACxBH,IAAsBG,EAAM;AAC9B,WAAI,CAACzD,EAASI,GAAO,MAAM,KAAK,CAACJ,EAASI,GAAO,kBAAkB,IAC1DA,IAEFA,EAAM,QAAQkD,GAAqB,SAAUhD,GAAOoD,GAAIC,GAAQ;AACrE,aAAOrD,EAAM,QAAQqD,GAAQP,EAAgBO,CAAM,CAAC;AAAA,IACtD,CAAC;AAAA,EACH;AAAA,EACA,oBAAoB,SAA4BC,GAAO;AACrD,QAAIxD,IAAQwD,EAAM,OAChBR,IAAkBQ,EAAM,iBACxBP,IAAQO,EAAM,OACdL,IAAsBK,EAAM;AAC9B,WAAOxD,EAEN,QAAQiD,IAAQ,mBAAmB,MAAM,SAAU/C,GAAOuD,GAAO;AAChE,aAAOnD,EAA+BmD,CAAK;AAAA,IAC7C,CAAC,EAAE,QAAQN,GAAqB,SAAUjD,GAAO;AAC/C,aAAO8C,EAAgB9C,CAAK;AAAA,IAC9B,CAAC;AAAA,EACH;AAAA,EACA,qBAAqB,SAA6BwD,GAAO;AACvD,QAAI1D,IAAQ0D,EAAM,OAChBV,IAAkBU,EAAM,iBACxBT,IAAQS,EAAM,OACdP,IAAsBO,EAAM;AAC9B,WAAIlE,EAASQ,CAAK,IACTA,IAEF6B,EAAwB,mBAAmB;AAAA,MAChD,OAAO7B;AAAA,MACP,iBAAiBgD;AAAA,MACjB,OAAOC;AAAA,MACP,qBAAqBE;AAAA,IAC3B,CAAK;AAAA,EACH;AAAA,EACA,YAAY,SAAoBQ,GAAO;AACrC,QAAI3D,IAAQ2D,EAAM,OAChBC,IAAsBD,EAAM;AAC9B,WAAO3D,EAAM,MAAM,OAAO,EAAE,IAAI,SAAU6D,GAAY;AACpD,UAAIC,IAASD,EAAW,MAAM,GAAG;AAGjC,aAAAC,EAAO,CAAC,IAAIF,EAAoBE,EAAO,CAAC,CAAC,KAAKA,EAAO,CAAC,GAC/CA,EAAO,KAAK,GAAG;AAAA,IACxB,CAAC,EAAE,KAAK,IAAI;AAAA,EACd;AAAA,EACA,oBAAoB,SAA4BC,GAAQ;AACtD,QAAI/D,IAAQ+D,EAAO,OACjBH,IAAsBG,EAAO;AAC/B,WAAO/D,EAAM,MAAM,OAAO,EAAE,IAAI,SAAUgE,GAAM;AAC9C,aAAOJ,EAAoBI,CAAI,KAAKA;AAAA,IACtC,CAAC,EAAE,KAAK,IAAI;AAAA,EACd;AAAA,EACA,WAAW,SAAmBC,GAAQ;AACpC,QAAIjE,IAAQiE,EAAO,OAGfC,IAAkB,sBAClBC,IAAgB,qEAChBC,IAAqB,YAAY,8FAA6G,QAAQ,eAAeF,IAAkB,MAAMC,IAAgB,QAAQ,mBAAmBD,IAAkB,MAAMC,IAAgB,OAAO,OAAO,QAAQ,uBACtSE,IAAmB,IAAI,OAAO,4BAA4BD,IAAqB,aAAa,IAAI,GAChGE,IAAkB,IAAI,OAAO,2BAA2BF,IAAqB,kBAAkBA,IAAqB,kBAAkB,IAAI,GAC1IG,IAAoB,IAAI,OAAO,6BAA6BH,IAAqB,kBAAkBA,IAAqB,kBAAkB,IAAI,GAC9II,IAAe,IAAI,OAAO,6BAA6BJ,IAAqB,aAAa,IAAI;AACjG,WAAOpE,EAAM,QAAQqE,GAAkBpE,CAAiB,EAAE,QAAQqE,GAAiBrE,CAAiB,EAAE,QAAQsE,GAAmBtE,CAAiB,EAAE,QAAQuE,GAAcvE,CAAiB;AAAA,EAC7L;AACF;AACA4B,EAAwB,iBAAiBA,EAAwB;AACjEA,EAAwB,SAASA,EAAwB;AACzDA,EAAwB,cAAcA,EAAwB;AAC9DA,EAAwB,YAAYA,EAAwB;AAC5DA,EAAwB,kBAAkBA,EAAwB;AAClEA,EAAwB,eAAeA,EAAwB;AAC/DA,EAAwB,kBAAkBA,EAAwB;AAClEA,EAAwB,eAAeA,EAAwB;AAC/DA,EAAwB,cAAcA,EAAwB;AAC9DA,EAAwB,kBAAkBA,EAAwB;AAClEA,EAAwB,eAAeA,EAAwB;AAC/DA,EAAwB,kBAAkBA,EAAwB;AAClEA,EAAwB,eAAeA,EAAwB;AAC/DA,EAAwB,kBAAkBA,EAAwB;AAClEA,EAAwB,wBAAwBA,EAAwB;AACxEA,EAAwB,qBAAqBA,EAAwB;AACrEA,EAAwB,wBAAwBA,EAAwB;AACxEA,EAAwB,qBAAqBA,EAAwB;AACrEA,EAAwB,mBAAmBA,EAAwB;AACnEA,EAAwB,gBAAgBA,EAAwB;AAChEA,EAAwB,mBAAmBA,EAAwB;AACnEA,EAAwB,gBAAgBA,EAAwB;AAChEA,EAAwB,2BAA2BA,EAAwB;AAC3EA,EAAwB,wBAAwBA,EAAwB;AACxEA,EAAwB,2BAA2BA,EAAwB;AAC3EA,EAAwB,wBAAwBA,EAAwB;AAIxEA,EAAwB,aAAa,IAAIA,EAAwB;AACjEA,EAAwB,cAAc,IAAIA,EAAwB;AAClEA,EAAwB,eAAe,IAAIA,EAAwB;AACnEA,EAAwB,kBAAkB,IAAIA,EAAwB;AACtEA,EAAwB,qBAAqB,IAAIA,EAAwB;AACzEA,EAAwB,uBAAuB,IAAIA,EAAwB;AAC3EA,EAAwB,iBAAiB,IAAIA,EAAwB;AACrEA,EAAwB,cAAc,IAAIA,EAAwB;AAClEA,EAAwB,YAAY,IAAIA,EAAwB;AAChEA,EAAwB,oBAAoB,IAAIA,EAAwB;AACxEA,EAAwB,iBAAiB,IAAIA,EAAwB;AACrEA,EAAwB,cAAc,IAAIA,EAAwB;AAClEA,EAAwB,mBAAmB,IAAIA,EAAwB;AACvEA,EAAwB,gBAAgB,IAAIA,EAAwB;AACpEA,EAAwB,kBAAkB,IAAIA,EAAwB;AACtEA,EAAwB,0BAA0B,IAAIA,EAAwB;AAC9EA,EAAwB,uBAAuB,IAAIA,EAAwB;AAC3EA,EAAwB,oBAAoB,IAAIA,EAAwB;AACxEA,EAAwB,iBAAiB,IAAIA,EAAwB;AACrEA,EAAwB,qBAAqB,IAAIA,EAAwB;AACzEA,EAAwB,6BAA6B,IAAIA,EAAwB;AACjFA,EAAwB,0BAA0B,IAAIA,EAAwB;AAG3E,IAAC+B,IAAsB7E,EAAc;AAAA,EAAC,CAAC,eAAe,cAAc;AAAA,EAAG,CAAC,cAAc,aAAa;AAAA,EAAG,CAAC,QAAQ,OAAO;AAAA,EAAG,CAAC,cAAc,aAAa;AAAA,EAAG,CAAC,mBAAmB,kBAAkB;AAAA,EAAG,CAAC,mBAAmB,kBAAkB;AAAA,EAAG,CAAC,mBAAmB,kBAAkB;AAAA,EAAG,CAAC,uBAAuB,sBAAsB;AAAA,EAAG,CAAC,0BAA0B,yBAAyB;AAAA;AAAA,EAE3X,CAAC,gBAAgB,eAAe;AAAA,EAAG,CAAC,eAAe,cAAc;AAAA,EAAG,CAAC,eAAe,cAAc;AAAA,EAAG,CAAC,qBAAqB,oBAAoB;AAAA,EAAG,CAAC,qBAAqB,oBAAoB;AAAA,EAAG,CAAC,qBAAqB,oBAAoB;AAAA,EAAG,CAAC,0BAA0B,yBAAyB;AAAA,EAAG,CAAC,6BAA6B,4BAA4B;AAAC,CAAC,GAC3V0F,IAAgB,CAAC,SAAS,GAG1BzB,IAAkBjE,EAAc,CAAC,CAAC,OAAO,KAAK,GAAG,CAAC,QAAQ,OAAO,GAAG,CAAC,YAAY,UAAU,GAAG,CAAC,aAAa,WAAW,GAAG,CAAC,aAAa,WAAW,CAAC,CAAC,GAOrJmE,IAAsB,IAAI,OAAO,kDAAkD,GAAG,GACtFC,IAAsB,IAAI,OAAO,gBAAgB;AAOrD,SAASuB,EAAQC,GAAQ;AACvB,SAAO,OAAO,KAAKA,CAAM,EAAE,OAAO,SAAUC,GAAQC,GAAa;AAC/D,QAAIC,IAAgBH,EAAOE,CAAW;AAOtC,QANIlF,EAASmF,CAAa,MAExBA,IAAgBA,EAAc,KAAI,IAIhClF,EAAS6E,GAAeI,CAAW;AACrC,aAAAD,EAAOC,CAAW,IAAIC,GACfF;AAET,QAAIG,IAAmBC,EAAgBH,GAAaC,CAAa,GAC/DG,IAAMF,EAAiB,KACvB/E,IAAQ+E,EAAiB;AAC3B,WAAAH,EAAOK,CAAG,IAAIjF,GACP4E;AAAA,EACT,GAAG,MAAM,QAAQD,CAAM,IAAI,CAAA,IAAK,CAAA,CAAE;AACpC;AAQA,SAASK,EAAgBH,GAAaC,GAAe;AACnD,MAAII,IAAW,wBAAwB,KAAKJ,CAAa,GACrDG,IAAMC,IAAWL,IAAcM,EAAwBN,CAAW,GAClE7E,IAAQkF,IAAWJ,IAAgBM,EAAqBH,GAAKH,CAAa;AAC9E,SAAO;AAAA,IACL,KAAKG;AAAA,IACL,OAAOjF;AAAA,EACX;AACA;AAOA,SAASmF,EAAwBE,GAAU;AACzC,SAAOzB,EAAoByB,CAAQ,KAAKA;AAC1C;AAQA,SAASD,EAAqBH,GAAKH,GAAe;AAChD,MAAI,CAACvD,EAAgBuD,CAAa;AAChC,WAAOA;AAET,MAAIpF,EAASoF,CAAa;AACxB,WAAOJ,EAAQI,CAAa;AAG9B,MAAIQ,IAAQ9F,EAASsF,CAAa,GAC9BS,IAAShG,EAAWuF,CAAa,GACjCU,IAAqBF,KAASC,IAAST,IAAgBA,EAAc,QAAQ,mBAAmB,EAAE,GAClGW,IAAc,CAACH,KAASE,EAAmB,WAAWV,EAAc,QACpEY,IAAiB7D,EAAwBoD,CAAG,GAC5CU;AAaJ,SAZID,IACFC,IAAWD,EAAe;AAAA,IACxB,OAAOF;AAAA,IACP,iBAAiBxC;AAAA,IACjB,qBAAqBY;AAAA,IACrB,OAAO;AAAA,IACP,qBAAqBV;AAAA,IACrB,qBAAqBC;AAAA,EAC3B,CAAK,IAEDwC,IAAW3C,EAAgBwC,CAAkB,KAAKA,GAEhDC,IACKE,IAAW,gBAEbA;AACT;","x_google_ignoreList":[0]}
@@ -1,16 +0,0 @@
1
- var r = "-moz-", a = "-webkit-", v = "comm", E = "rule", e = "decl", m = "@media", A = "@import", M = "@supports", o = "@namespace", p = "@keyframes", O = "@layer", R = "@scope";
2
- export {
3
- v as COMMENT,
4
- e as DECLARATION,
5
- A as IMPORT,
6
- p as KEYFRAMES,
7
- O as LAYER,
8
- m as MEDIA,
9
- r as MOZ,
10
- o as NAMESPACE,
11
- E as RULESET,
12
- R as SCOPE,
13
- M as SUPPORTS,
14
- a as WEBKIT
15
- };
16
- //# sourceMappingURL=Enum.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Enum.js","sources":["../../../../../../node_modules/stylis/src/Enum.js"],"sourcesContent":["export var MS = '-ms-'\nexport var MOZ = '-moz-'\nexport var WEBKIT = '-webkit-'\n\nexport var COMMENT = 'comm'\nexport var RULESET = 'rule'\nexport var DECLARATION = 'decl'\n\nexport var PAGE = '@page'\nexport var MEDIA = '@media'\nexport var IMPORT = '@import'\nexport var CHARSET = '@charset'\nexport var VIEWPORT = '@viewport'\nexport var SUPPORTS = '@supports'\nexport var DOCUMENT = '@document'\nexport var NAMESPACE = '@namespace'\nexport var KEYFRAMES = '@keyframes'\nexport var FONT_FACE = '@font-face'\nexport var COUNTER_STYLE = '@counter-style'\nexport var FONT_FEATURE_VALUES = '@font-feature-values'\nexport var LAYER = '@layer'\nexport var SCOPE = '@scope'\n"],"names":["MOZ","WEBKIT","COMMENT","RULESET","DECLARATION","MEDIA","IMPORT","SUPPORTS","NAMESPACE","KEYFRAMES","LAYER","SCOPE"],"mappings":"AACU,IAACA,IAAM,SACNC,IAAS,YAETC,IAAU,QACVC,IAAU,QACVC,IAAc,QAGdC,IAAQ,UACRC,IAAS,WAGTC,IAAW,aAEXC,IAAY,cACZC,IAAY,cAIZC,IAAQ,UACRC,IAAQ;","x_google_ignoreList":[0]}
@@ -1,19 +0,0 @@
1
- import { sizeof as p } from "./Utility.js";
2
- function c(t) {
3
- var r = p(t);
4
- return function(f, n, i, a) {
5
- for (var o = "", u = 0; u < r; u++)
6
- o += t[u](f, n, i, a) || "";
7
- return o;
8
- };
9
- }
10
- function d(t) {
11
- return function(r) {
12
- r.root || (r = r.return) && t(r);
13
- };
14
- }
15
- export {
16
- c as middleware,
17
- d as rulesheet
18
- };
19
- //# sourceMappingURL=Middleware.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Middleware.js","sources":["../../../../../../node_modules/stylis/src/Middleware.js"],"sourcesContent":["import {MS, MOZ, WEBKIT, RULESET, KEYFRAMES, DECLARATION} from './Enum.js'\nimport {match, charat, substr, strlen, sizeof, replace, combine, filter, assign} from './Utility.js'\nimport {copy, lift, tokenize} from './Tokenizer.js'\nimport {serialize} from './Serializer.js'\nimport {prefix} from './Prefixer.js'\n\n/**\n * @param {function[]} collection\n * @return {function}\n */\nexport function middleware (collection) {\n\tvar length = sizeof(collection)\n\n\treturn function (element, index, children, callback) {\n\t\tvar output = ''\n\n\t\tfor (var i = 0; i < length; i++)\n\t\t\toutput += collection[i](element, index, children, callback) || ''\n\n\t\treturn output\n\t}\n}\n\n/**\n * @param {function} callback\n * @return {function}\n */\nexport function rulesheet (callback) {\n\treturn function (element) {\n\t\tif (!element.root)\n\t\t\tif (element = element.return)\n\t\t\t\tcallback(element)\n\t}\n}\n\n/**\n * @param {object} element\n * @param {number} index\n * @param {object[]} children\n * @param {function} callback\n */\nexport function prefixer (element, index, children, callback) {\n\tif (element.length > -1)\n\t\tif (!element.return)\n\t\t\tswitch (element.type) {\n\t\t\t\tcase DECLARATION: element.return = prefix(element.value, element.length, children)\n\t\t\t\t\treturn\n\t\t\t\tcase KEYFRAMES:\n\t\t\t\t\treturn serialize([copy(element, {value: replace(element.value, '@', '@' + WEBKIT)})], callback)\n\t\t\t\tcase RULESET:\n\t\t\t\t\tif (element.length)\n\t\t\t\t\t\treturn combine(children = element.props, function (value) {\n\t\t\t\t\t\t\tswitch (match(value, callback = /(::plac\\w+|:read-\\w+)/)) {\n\t\t\t\t\t\t\t\t// :read-(only|write)\n\t\t\t\t\t\t\t\tcase ':read-only': case ':read-write':\n\t\t\t\t\t\t\t\t\tlift(copy(element, {props: [replace(value, /:(read-\\w+)/, ':' + MOZ + '$1')]}))\n\t\t\t\t\t\t\t\t\tlift(copy(element, {props: [value]}))\n\t\t\t\t\t\t\t\t\tassign(element, {props: filter(children, callback)})\n\t\t\t\t\t\t\t\t\tbreak\n\t\t\t\t\t\t\t\t// :placeholder\n\t\t\t\t\t\t\t\tcase '::placeholder':\n\t\t\t\t\t\t\t\t\tlift(copy(element, {props: [replace(value, /:(plac\\w+)/, ':' + WEBKIT + 'input-$1')]}))\n\t\t\t\t\t\t\t\t\tlift(copy(element, {props: [replace(value, /:(plac\\w+)/, ':' + MOZ + '$1')]}))\n\t\t\t\t\t\t\t\t\tlift(copy(element, {props: [replace(value, /:(plac\\w+)/, MS + 'input-$1')]}))\n\t\t\t\t\t\t\t\t\tlift(copy(element, {props: [value]}))\n\t\t\t\t\t\t\t\t\tassign(element, {props: filter(children, callback)})\n\t\t\t\t\t\t\t\t\tbreak\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\treturn ''\n\t\t\t\t\t\t})\n\t\t\t}\n}\n\n/**\n * @param {object} element\n * @param {number} index\n * @param {object[]} children\n */\nexport function namespace (element) {\n\tswitch (element.type) {\n\t\tcase RULESET:\n\t\t\telement.props = element.props.map(function (value) {\n\t\t\t\treturn combine(tokenize(value), function (value, index, children) {\n\t\t\t\t\tswitch (charat(value, 0)) {\n\t\t\t\t\t\t// \\f\n\t\t\t\t\t\tcase 12:\n\t\t\t\t\t\t\treturn substr(value, 1, strlen(value))\n\t\t\t\t\t\t// \\0 ( + > ~\n\t\t\t\t\t\tcase 0: case 40: case 43: case 62: case 126:\n\t\t\t\t\t\t\treturn value\n\t\t\t\t\t\t// :\n\t\t\t\t\t\tcase 58:\n\t\t\t\t\t\t\tif (children[++index] === 'global')\n\t\t\t\t\t\t\t\tchildren[index] = '', children[++index] = '\\f' + substr(children[index], index = 1, -1)\n\t\t\t\t\t\t// \\s\n\t\t\t\t\t\tcase 32:\n\t\t\t\t\t\t\treturn index === 1 ? '' : value\n\t\t\t\t\t\tdefault:\n\t\t\t\t\t\t\tswitch (index) {\n\t\t\t\t\t\t\t\tcase 0: element = value\n\t\t\t\t\t\t\t\t\treturn sizeof(children) > 1 ? '' : value\n\t\t\t\t\t\t\t\tcase index = sizeof(children) - 1: case 2:\n\t\t\t\t\t\t\t\t\treturn index === 2 ? value + element + element : value + element\n\t\t\t\t\t\t\t\tdefault:\n\t\t\t\t\t\t\t\t\treturn value\n\t\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t})\n\t\t\t})\n\t}\n}\n"],"names":["middleware","collection","length","sizeof","element","index","children","callback","output","i","rulesheet"],"mappings":";AAUO,SAASA,EAAYC,GAAY;AACvC,MAAIC,IAASC,EAAOF,CAAU;AAE9B,SAAO,SAAUG,GAASC,GAAOC,GAAUC,GAAU;AAGpD,aAFIC,IAAS,IAEJC,IAAI,GAAGA,IAAIP,GAAQO;AAC3B,MAAAD,KAAUP,EAAWQ,CAAC,EAAEL,GAASC,GAAOC,GAAUC,CAAQ,KAAK;AAEhE,WAAOC;AAAA,EACR;AACD;AAMO,SAASE,EAAWH,GAAU;AACpC,SAAO,SAAUH,GAAS;AACzB,IAAKA,EAAQ,SACRA,IAAUA,EAAQ,WACrBG,EAASH,CAAO;AAAA,EACnB;AACD;","x_google_ignoreList":[0]}
@@ -1,128 +0,0 @@
1
- import { DECLARATION as G, COMMENT as H, RULESET as J } from "./Enum.js";
2
- import { strlen as g, append as N, charat as z, replace as U, substr as C, sizeof as K, abs as P, trim as Q, from as R } from "./Utility.js";
3
- import { dealloc as V, alloc as W, next as D, peek as O, delimit as I, identifier as X, commenter as Y, token as x, escaping as Z, whitespace as _, node as q, char as $, prev as j, caret as S } from "./Tokenizer.js";
4
- function ia(e) {
5
- return V(y("", null, null, null, [""], e = W(e), 0, [0], e));
6
- }
7
- function y(e, v, n, c, s, E, L, m, o) {
8
- for (var u = 0, t = 0, i = L, T = 0, h = 0, p = 0, f = 1, A = 1, d = 1, b = 0, r = 0, w = "", M = s, l = E, k = c, a = w; A; )
9
- switch (p = r, r = D()) {
10
- case 40:
11
- p != 108 && z(a, i - 1) == 58 ? (b++, a += "(") : a += I(r);
12
- break;
13
- case 41:
14
- b--, a += ")";
15
- break;
16
- case 34:
17
- case 39:
18
- case 91:
19
- a += I(r);
20
- break;
21
- case 9:
22
- case 10:
23
- case 13:
24
- case 32:
25
- if (b > 0) {
26
- a += R(r);
27
- break;
28
- }
29
- a += _(p);
30
- break;
31
- case 92:
32
- a += Z(S() - 1, 7);
33
- continue;
34
- case 47:
35
- switch (O()) {
36
- case 42:
37
- case 47:
38
- N(aa(Y(D(), S()), v, n, o), o), (x(p || 1) == 5 || x(O() || 1) == 5) && g(a) && C(a, -1, void 0) !== " " && (a += " ");
39
- break;
40
- default:
41
- a += "/";
42
- }
43
- break;
44
- case 123 * f:
45
- m[u++] = g(a) * d;
46
- case 125 * f:
47
- case 59:
48
- case 0:
49
- if (b > 0 && r) {
50
- a += R(r);
51
- break;
52
- }
53
- switch (r) {
54
- case 0:
55
- case 125:
56
- A = 0;
57
- case 59 + t:
58
- d == -1 && (a = U(a, /\f/g, "")), h > 0 && (g(a) - i || f === 0) && N(h > 32 ? F(a + ";", c, n, i - 1, o) : F(U(a, " ", "") + ";", c, n, i - 2, o), o);
59
- break;
60
- case 59:
61
- a += ";";
62
- default:
63
- if (N(k = B(a, v, n, u, t, s, m, w, M = [], l = [], i, E), E), r === 123)
64
- if (t === 0)
65
- y(a, v, k, k, M, E, i, m, l);
66
- else {
67
- switch (T) {
68
- case 99:
69
- if (z(a, 3) === 110) break;
70
- case 108:
71
- if (z(a, 2) === 97) break;
72
- default:
73
- t = 0;
74
- case 100:
75
- case 109:
76
- case 115:
77
- }
78
- t ? y(e, k, k, c && N(B(e, k, k, 0, 0, s, m, w, s, M = [], i, l), l), s, l, i, m, c ? M : l) : y(a, k, k, k, [""], l, 0, m, l);
79
- }
80
- }
81
- u = t = h = 0, f = d = 1, w = a = "", i = L;
82
- break;
83
- case 58:
84
- i = 1 + g(a), h = p;
85
- default:
86
- if (f < 1) {
87
- if (r == 123)
88
- --f;
89
- else if (r == 125 && f++ == 0 && j() == 125)
90
- continue;
91
- }
92
- switch (a += R(r), r * f) {
93
- case 38:
94
- d = t > 0 ? 1 : (a += "\f", -1);
95
- break;
96
- case 44:
97
- if (b > 0) break;
98
- m[u++] = (g(a) - 1) * d, d = 1;
99
- break;
100
- case 64:
101
- O() === 45 && (a += I(D())), T = O(), t = i = g(w = a += X(S())), r++;
102
- break;
103
- case 45:
104
- p === 45 && g(a) == 2 && (f = 0);
105
- }
106
- }
107
- return E;
108
- }
109
- function B(e, v, n, c, s, E, L, m, o, u, t, i) {
110
- for (var T = s - 1, h = s === 0 ? E : [""], p = K(h), f = 0, A = 0, d = 0; f < c; ++f)
111
- for (var b = 0, r = C(e, T + 1, T = P(A = L[f])), w = e; b < p; ++b)
112
- (w = Q(A > 0 ? h[b] + " " + r : U(r, /&\f/g, h[b]))) && (o[d++] = w);
113
- return q(e, v, n, s === 0 ? J : m, o, u, t, i);
114
- }
115
- function aa(e, v, n, c) {
116
- return q(e, v, n, H, R($()), C(e, 2, -2), 0, c);
117
- }
118
- function F(e, v, n, c, s) {
119
- return q(e, v, n, G, C(e, 0, c), C(e, c + 1, -1), c, s);
120
- }
121
- export {
122
- aa as comment,
123
- ia as compile,
124
- F as declaration,
125
- y as parse,
126
- B as ruleset
127
- };
128
- //# sourceMappingURL=Parser.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Parser.js","sources":["../../../../../../node_modules/stylis/src/Parser.js"],"sourcesContent":["import {COMMENT, RULESET, DECLARATION} from './Enum.js'\nimport {abs, charat, trim, from, sizeof, strlen, substr, append, replace} from './Utility.js'\nimport {node, char, prev, next, peek, token, caret, alloc, dealloc, delimit, whitespace, escaping, identifier, commenter} from './Tokenizer.js'\n\n/**\n * @param {string} value\n * @return {object[]}\n */\nexport function compile (value) {\n\treturn dealloc(parse('', null, null, null, [''], value = alloc(value), 0, [0], value))\n}\n\n/**\n * @param {string} value\n * @param {object} root\n * @param {object?} parent\n * @param {string[]} rule\n * @param {string[]} rules\n * @param {string[]} rulesets\n * @param {number[]} pseudo\n * @param {number[]} points\n * @param {string[]} declarations\n * @return {object}\n */\nexport function parse (value, root, parent, rule, rules, rulesets, pseudo, points, declarations) {\n\tvar index = 0\n\tvar offset = 0\n\tvar length = pseudo\n\tvar atrule = 0\n\tvar property = 0\n\tvar previous = 0\n\tvar variable = 1\n\tvar scanning = 1\n\tvar ampersand = 1\n\tvar parens = 0\n\tvar character = 0\n\tvar type = ''\n\tvar props = rules\n\tvar children = rulesets\n\tvar reference = rule\n\tvar characters = type\n\n\twhile (scanning)\n\t\tswitch (previous = character, character = next()) {\n\t\t\t// (\n\t\t\tcase 40:\n\t\t\t\tif (previous != 108 && charat(characters, length - 1) == 58) parens++, characters += '('\n\t\t\t\telse characters += delimit(character)\n\t\t\t\tbreak\n\t\t\t// )\n\t\t\tcase 41:\n\t\t\t\tparens--, characters += ')'\n\t\t\t\tbreak\n\t\t\t// \" ' [\n\t\t\tcase 34: case 39: case 91:\n\t\t\t\tcharacters += delimit(character)\n\t\t\t\tbreak\n\t\t\t// \\t \\n \\r \\s\n\t\t\tcase 9: case 10: case 13: case 32:\n\t\t\t\tif (parens > 0) {\n\t\t\t\t\tcharacters += from(character)\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t\tcharacters += whitespace(previous)\n\t\t\t\tbreak\n\t\t\t// \\\n\t\t\tcase 92:\n\t\t\t\tcharacters += escaping(caret() - 1, 7)\n\t\t\t\tcontinue\n\t\t\t// /\n\t\t\tcase 47:\n\t\t\t\tswitch (peek()) {\n\t\t\t\t\tcase 42: case 47:\n\t\t\t\t\t\tappend(comment(commenter(next(), caret()), root, parent, declarations), declarations)\n\t\t\t\t\t\tif ((token(previous || 1) == 5 || token(peek() || 1) == 5) && strlen(characters) && substr(characters, -1, void 0) !== ' ') characters += ' '\n\t\t\t\t\t\tbreak\n\t\t\t\t\tdefault:\n\t\t\t\t\t\tcharacters += '/'\n\t\t\t\t}\n\t\t\t\tbreak\n\t\t\t// {\n\t\t\tcase 123 * variable:\n\t\t\t\tpoints[index++] = strlen(characters) * ampersand\n\t\t\t// } ; \\0\n\t\t\tcase 125 * variable: case 59: case 0:\n\t\t\t\tif (parens > 0 && character) {\n\t\t\t\t\tcharacters += from(character)\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t\tswitch (character) {\n\t\t\t\t\t// \\0 }\n\t\t\t\t\tcase 0: case 125: scanning = 0\n\t\t\t\t\t// ;\n\t\t\t\t\tcase 59 + offset: if (ampersand == -1) characters = replace(characters, /\\f/g, '')\n\t\t\t\t\t\tif (property > 0 && (strlen(characters) - length || variable === 0))\n\t\t\t\t\t\t\tappend(property > 32 ? declaration(characters + ';', rule, parent, length - 1, declarations) : declaration(replace(characters, ' ', '') + ';', rule, parent, length - 2, declarations), declarations)\n\t\t\t\t\t\tbreak\n\t\t\t\t\t// @ ;\n\t\t\t\t\tcase 59: characters += ';'\n\t\t\t\t\t// { rule/at-rule\n\t\t\t\t\tdefault:\n\t\t\t\t\t\tappend(reference = ruleset(characters, root, parent, index, offset, rules, points, type, props = [], children = [], length, rulesets), rulesets)\n\n\t\t\t\t\t\tif (character === 123)\n\t\t\t\t\t\t\tif (offset === 0)\n\t\t\t\t\t\t\t\tparse(characters, root, reference, reference, props, rulesets, length, points, children)\n\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\tswitch (atrule) {\n\t\t\t\t\t\t\t\t\t// c(ontainer)\n\t\t\t\t\t\t\t\t\tcase 99:\n\t\t\t\t\t\t\t\t\t\tif (charat(characters, 3) === 110) break\n\t\t\t\t\t\t\t\t\t// l(ayer)\n\t\t\t\t\t\t\t\t\tcase 108:\n\t\t\t\t\t\t\t\t\t\tif (charat(characters, 2) === 97) break\n\t\t\t\t\t\t\t\t\tdefault:\n\t\t\t\t\t\t\t\t\t\toffset = 0\n\t\t\t\t\t\t\t\t\t// d(ocument) m(edia) s(upports)\n\t\t\t\t\t\t\t\t\tcase 100: case 109: case 115:\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tif (offset) parse(value, reference, reference, rule && append(ruleset(value, reference, reference, 0, 0, rules, points, type, rules, props = [], length, children), children), rules, children, length, points, rule ? props : children)\n\t\t\t\t\t\t\t\telse parse(characters, reference, reference, reference, [''], children, 0, points, children)\n\t\t\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tindex = offset = property = 0, variable = ampersand = 1, type = characters = '', length = pseudo\n\t\t\t\tbreak\n\t\t\t// :\n\t\t\tcase 58:\n\t\t\t\tlength = 1 + strlen(characters), property = previous\n\t\t\tdefault:\n\t\t\t\tif (variable < 1)\n\t\t\t\t\tif (character == 123)\n\t\t\t\t\t\t--variable\n\t\t\t\t\telse if (character == 125 && variable++ == 0 && prev() == 125)\n\t\t\t\t\t\tcontinue\n\n\t\t\t\tswitch (characters += from(character), character * variable) {\n\t\t\t\t\t// &\n\t\t\t\t\tcase 38:\n\t\t\t\t\t\tampersand = offset > 0 ? 1 : (characters += '\\f', -1)\n\t\t\t\t\t\tbreak\n\t\t\t\t\t// ,\n\t\t\t\t\tcase 44:\n\t\t\t\t\t\tif (parens > 0) break\n\t\t\t\t\t\tpoints[index++] = (strlen(characters) - 1) * ampersand, ampersand = 1\n\t\t\t\t\t\tbreak\n\t\t\t\t\t// @\n\t\t\t\t\tcase 64:\n\t\t\t\t\t\t// -\n\t\t\t\t\t\tif (peek() === 45)\n\t\t\t\t\t\t\tcharacters += delimit(next())\n\n\t\t\t\t\t\tatrule = peek(), offset = length = strlen(type = characters += identifier(caret())), character++\n\t\t\t\t\t\tbreak\n\t\t\t\t\t// -\n\t\t\t\t\tcase 45:\n\t\t\t\t\t\tif (previous === 45 && strlen(characters) == 2)\n\t\t\t\t\t\t\tvariable = 0\n\t\t\t\t}\n\t\t}\n\n\treturn rulesets\n}\n\n/**\n * @param {string} value\n * @param {object} root\n * @param {object?} parent\n * @param {number} index\n * @param {number} offset\n * @param {string[]} rules\n * @param {number[]} points\n * @param {string} type\n * @param {string[]} props\n * @param {string[]} children\n * @param {number} length\n * @param {object[]} siblings\n * @return {object}\n */\nexport function ruleset (value, root, parent, index, offset, rules, points, type, props, children, length, siblings) {\n\tvar post = offset - 1\n\tvar rule = offset === 0 ? rules : ['']\n\tvar size = sizeof(rule)\n\n\tfor (var i = 0, j = 0, k = 0; i < index; ++i)\n\t\tfor (var x = 0, y = substr(value, post + 1, post = abs(j = points[i])), z = value; x < size; ++x)\n\t\t\tif (z = trim(j > 0 ? rule[x] + ' ' + y : replace(y, /&\\f/g, rule[x])))\n\t\t\t\tprops[k++] = z\n\n\treturn node(value, root, parent, offset === 0 ? RULESET : type, props, children, length, siblings)\n}\n\n/**\n * @param {number} value\n * @param {object} root\n * @param {object?} parent\n * @param {object[]} siblings\n * @return {object}\n */\nexport function comment (value, root, parent, siblings) {\n\treturn node(value, root, parent, COMMENT, from(char()), substr(value, 2, -2), 0, siblings)\n}\n\n/**\n * @param {string} value\n * @param {object} root\n * @param {object?} parent\n * @param {number} length\n * @param {object[]} siblings\n * @return {object}\n */\nexport function declaration (value, root, parent, length, siblings) {\n\treturn node(value, root, parent, DECLARATION, substr(value, 0, length), substr(value, length + 1, -1), length, siblings)\n}\n"],"names":["compile","value","dealloc","parse","alloc","root","parent","rule","rules","rulesets","pseudo","points","declarations","index","offset","length","atrule","property","previous","variable","scanning","ampersand","parens","character","type","props","children","reference","characters","next","charat","delimit","from","whitespace","escaping","caret","peek","append","comment","commenter","token","strlen","substr","replace","declaration","ruleset","prev","identifier","siblings","post","size","sizeof","i","j","k","x","y","abs","z","trim","node","RULESET","COMMENT","char","DECLARATION"],"mappings":"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","x_google_ignoreList":[0]}
@@ -1,29 +0,0 @@
1
- import { RULESET as i, KEYFRAMES as E, COMMENT as f, DECLARATION as n, NAMESPACE as p, IMPORT as c, LAYER as v } from "./Enum.js";
2
- import { strlen as o } from "./Utility.js";
3
- function t(r, a) {
4
- for (var s = "", u = 0; u < r.length; u++)
5
- s += a(r[u], u, r, a) || "";
6
- return s;
7
- }
8
- function R(r, a, s, u) {
9
- switch (r.type) {
10
- case v:
11
- if (r.children.length) break;
12
- case c:
13
- case p:
14
- case n:
15
- return r.return = r.return || r.value;
16
- case f:
17
- return "";
18
- case E:
19
- return r.return = r.value + "{" + t(r.children, u) + "}";
20
- case i:
21
- if (!o(r.value = r.props.join(","))) return "";
22
- }
23
- return o(s = t(r.children, u)) ? r.return = r.value + "{" + s + "}" : "";
24
- }
25
- export {
26
- t as serialize,
27
- R as stringify
28
- };
29
- //# sourceMappingURL=Serializer.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Serializer.js","sources":["../../../../../../node_modules/stylis/src/Serializer.js"],"sourcesContent":["import {IMPORT, LAYER, COMMENT, RULESET, DECLARATION, KEYFRAMES, NAMESPACE} from './Enum.js'\nimport {strlen} from './Utility.js'\n\n/**\n * @param {object[]} children\n * @param {function} callback\n * @return {string}\n */\nexport function serialize (children, callback) {\n\tvar output = ''\n\n\tfor (var i = 0; i < children.length; i++)\n\t\toutput += callback(children[i], i, children, callback) || ''\n\n\treturn output\n}\n\n/**\n * @param {object} element\n * @param {number} index\n * @param {object[]} children\n * @param {function} callback\n * @return {string}\n */\nexport function stringify (element, index, children, callback) {\n\tswitch (element.type) {\n\t\tcase LAYER: if (element.children.length) break\n\t\tcase IMPORT: case NAMESPACE: case DECLARATION: return element.return = element.return || element.value\n\t\tcase COMMENT: return ''\n\t\tcase KEYFRAMES: return element.return = element.value + '{' + serialize(element.children, callback) + '}'\n\t\tcase RULESET: if (!strlen(element.value = element.props.join(','))) return ''\n\t}\n\n\treturn strlen(children = serialize(element.children, callback)) ? element.return = element.value + '{' + children + '}' : ''\n}\n"],"names":["serialize","children","callback","output","i","stringify","element","index","LAYER","IMPORT","NAMESPACE","DECLARATION","COMMENT","KEYFRAMES","RULESET","strlen"],"mappings":";;AAQO,SAASA,EAAWC,GAAUC,GAAU;AAG9C,WAFIC,IAAS,IAEJC,IAAI,GAAGA,IAAIH,EAAS,QAAQG;AACpC,IAAAD,KAAUD,EAASD,EAASG,CAAC,GAAGA,GAAGH,GAAUC,CAAQ,KAAK;AAE3D,SAAOC;AACR;AASO,SAASE,EAAWC,GAASC,GAAON,GAAUC,GAAU;AAC9D,UAAQI,EAAQ,MAAI;AAAA,IACnB,KAAKE;AAAO,UAAIF,EAAQ,SAAS,OAAQ;AAAA,IACzC,KAAKG;AAAA,IAAQ,KAAKC;AAAA,IAAW,KAAKC;AAAa,aAAOL,EAAQ,SAASA,EAAQ,UAAUA,EAAQ;AAAA,IACjG,KAAKM;AAAS,aAAO;AAAA,IACrB,KAAKC;AAAW,aAAOP,EAAQ,SAASA,EAAQ,QAAQ,MAAMN,EAAUM,EAAQ,UAAUJ,CAAQ,IAAI;AAAA,IACtG,KAAKY;AAAS,UAAI,CAACC,EAAOT,EAAQ,QAAQA,EAAQ,MAAM,KAAK,GAAG,CAAC,EAAG,QAAO;AAAA,EAC7E;AAEC,SAAOS,EAAOd,IAAWD,EAAUM,EAAQ,UAAUJ,CAAQ,CAAC,IAAII,EAAQ,SAASA,EAAQ,QAAQ,MAAML,IAAW,MAAM;AAC3H;","x_google_ignoreList":[0]}
@@ -1,151 +0,0 @@
1
- import { strlen as z, charat as k, trim as j, from as b, substr as q, append as f, assign as A } from "./Utility.js";
2
- var s = 1, t = 1, m = 0, r = 0, n = 0, i = "";
3
- function B(e, c, w, g, v, d, p, x) {
4
- return { value: e, root: c, parent: w, type: g, props: v, children: d, line: s, column: t, length: p, return: "", siblings: x };
5
- }
6
- function J(e, c) {
7
- return A(B("", null, null, "", null, null, 0, e.siblings), e, { length: -e.length }, c);
8
- }
9
- function K() {
10
- return n;
11
- }
12
- function L() {
13
- return n = r > 0 ? k(i, --r) : 0, t--, n === 10 && (t = 1, s--), n;
14
- }
15
- function a() {
16
- return n = r < m ? k(i, r++) : 0, t++, n === 10 && (t = 1, s++), n;
17
- }
18
- function l() {
19
- return k(i, r);
20
- }
21
- function C() {
22
- return r;
23
- }
24
- function o(e, c) {
25
- return q(i, e, c);
26
- }
27
- function u(e) {
28
- switch (e) {
29
- case 0:
30
- case 9:
31
- case 10:
32
- case 13:
33
- case 32:
34
- return 5;
35
- case 33:
36
- case 43:
37
- case 44:
38
- case 47:
39
- case 62:
40
- case 64:
41
- case 126:
42
- case 59:
43
- case 123:
44
- case 125:
45
- return 4;
46
- case 58:
47
- return 3;
48
- case 34:
49
- case 39:
50
- case 40:
51
- case 91:
52
- return 2;
53
- case 41:
54
- case 93:
55
- return 1;
56
- }
57
- return 0;
58
- }
59
- function D(e) {
60
- return s = t = 1, m = z(i = e), r = 0, [];
61
- }
62
- function E(e) {
63
- return i = "", e;
64
- }
65
- function F(e) {
66
- return j(o(r - 1, h(e === 91 ? e + 2 : e === 40 ? e + 1 : e)));
67
- }
68
- function M(e) {
69
- return E(G(D(e)));
70
- }
71
- function N(e) {
72
- for (; (n = l()) && n < 33; )
73
- a();
74
- return u(e) > 2 || u(n) > 3 ? "" : " ";
75
- }
76
- function G(e) {
77
- for (; a(); )
78
- switch (u(n)) {
79
- case 0:
80
- f(H(r - 1), e);
81
- break;
82
- case 2:
83
- f(F(n), e);
84
- break;
85
- default:
86
- f(b(n), e);
87
- }
88
- return e;
89
- }
90
- function O(e, c) {
91
- for (; --c && a() && !(n < 48 || n > 102 || n > 57 && n < 65 || n > 70 && n < 97); )
92
- ;
93
- return o(e, C() + (c < 6 && l() == 32 && a() == 32));
94
- }
95
- function h(e) {
96
- for (; a(); )
97
- switch (n) {
98
- case e:
99
- return r;
100
- case 34:
101
- case 39:
102
- e !== 34 && e !== 39 && h(n);
103
- break;
104
- case 40:
105
- e === 41 && h(e);
106
- break;
107
- case 92:
108
- a();
109
- break;
110
- }
111
- return r;
112
- }
113
- function P(e, c) {
114
- for (; a() && e + n !== 57; )
115
- if (e + n === 84 && l() === 47)
116
- break;
117
- return "/*" + o(c, r - 1) + "*" + b(e === 47 ? e : a());
118
- }
119
- function H(e) {
120
- for (; !u(l()); )
121
- a();
122
- return o(e, r);
123
- }
124
- export {
125
- D as alloc,
126
- C as caret,
127
- K as char,
128
- n as character,
129
- i as characters,
130
- t as column,
131
- P as commenter,
132
- J as copy,
133
- E as dealloc,
134
- F as delimit,
135
- h as delimiter,
136
- O as escaping,
137
- H as identifier,
138
- m as length,
139
- s as line,
140
- a as next,
141
- B as node,
142
- l as peek,
143
- r as position,
144
- L as prev,
145
- o as slice,
146
- u as token,
147
- M as tokenize,
148
- G as tokenizer,
149
- N as whitespace
150
- };
151
- //# sourceMappingURL=Tokenizer.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Tokenizer.js","sources":["../../../../../../node_modules/stylis/src/Tokenizer.js"],"sourcesContent":["import {from, trim, charat, strlen, substr, append, assign} from './Utility.js'\n\nexport var line = 1\nexport var column = 1\nexport var length = 0\nexport var position = 0\nexport var character = 0\nexport var characters = ''\n\n/**\n * @param {string} value\n * @param {object | null} root\n * @param {object | null} parent\n * @param {string} type\n * @param {string[] | string} props\n * @param {object[] | string} children\n * @param {object[]} siblings\n * @param {number} length\n */\nexport function node (value, root, parent, type, props, children, length, siblings) {\n\treturn {value: value, root: root, parent: parent, type: type, props: props, children: children, line: line, column: column, length: length, return: '', siblings: siblings}\n}\n\n/**\n * @param {object} root\n * @param {object} props\n * @return {object}\n */\nexport function copy (root, props) {\n\treturn assign(node('', null, null, '', null, null, 0, root.siblings), root, {length: -root.length}, props)\n}\n\n/**\n * @param {object} root\n */\nexport function lift (root) {\n\twhile (root.root)\n\t\troot = copy(root.root, {children: [root]})\n\n\tappend(root, root.siblings)\n}\n\n/**\n * @return {number}\n */\nexport function char () {\n\treturn character\n}\n\n/**\n * @return {number}\n */\nexport function prev () {\n\tcharacter = position > 0 ? charat(characters, --position) : 0\n\n\tif (column--, character === 10)\n\t\tcolumn = 1, line--\n\n\treturn character\n}\n\n/**\n * @return {number}\n */\nexport function next () {\n\tcharacter = position < length ? charat(characters, position++) : 0\n\n\tif (column++, character === 10)\n\t\tcolumn = 1, line++\n\n\treturn character\n}\n\n/**\n * @return {number}\n */\nexport function peek () {\n\treturn charat(characters, position)\n}\n\n/**\n * @return {number}\n */\nexport function caret () {\n\treturn position\n}\n\n/**\n * @param {number} begin\n * @param {number} end\n * @return {string}\n */\nexport function slice (begin, end) {\n\treturn substr(characters, begin, end)\n}\n\n/**\n * @param {number} type\n * @return {number}\n */\nexport function token (type) {\n\tswitch (type) {\n\t\t// \\0 \\t \\n \\r \\s whitespace token\n\t\tcase 0: case 9: case 10: case 13: case 32:\n\t\t\treturn 5\n\t\t// ! + , / > @ ~ isolate token\n\t\tcase 33: case 43: case 44: case 47: case 62: case 64: case 126:\n\t\t// ; { } breakpoint token\n\t\tcase 59: case 123: case 125:\n\t\t\treturn 4\n\t\t// : accompanied token\n\t\tcase 58:\n\t\t\treturn 3\n\t\t// \" ' ( [ opening delimit token\n\t\tcase 34: case 39: case 40: case 91:\n\t\t\treturn 2\n\t\t// ) ] closing delimit token\n\t\tcase 41: case 93:\n\t\t\treturn 1\n\t}\n\n\treturn 0\n}\n\n/**\n * @param {string} value\n * @return {any[]}\n */\nexport function alloc (value) {\n\treturn line = column = 1, length = strlen(characters = value), position = 0, []\n}\n\n/**\n * @param {any} value\n * @return {any}\n */\nexport function dealloc (value) {\n\treturn characters = '', value\n}\n\n/**\n * @param {number} type\n * @return {string}\n */\nexport function delimit (type) {\n\treturn trim(slice(position - 1, delimiter(type === 91 ? type + 2 : type === 40 ? type + 1 : type)))\n}\n\n/**\n * @param {string} value\n * @return {string[]}\n */\nexport function tokenize (value) {\n\treturn dealloc(tokenizer(alloc(value)))\n}\n\n/**\n * @param {number} type\n * @return {string}\n */\nexport function whitespace (type) {\n\twhile (character = peek())\n\t\tif (character < 33)\n\t\t\tnext()\n\t\telse\n\t\t\tbreak\n\n\treturn token(type) > 2 || token(character) > 3 ? '' : ' '\n}\n\n/**\n * @param {string[]} children\n * @return {string[]}\n */\nexport function tokenizer (children) {\n\twhile (next())\n\t\tswitch (token(character)) {\n\t\t\tcase 0: append(identifier(position - 1), children)\n\t\t\t\tbreak\n\t\t\tcase 2: append(delimit(character), children)\n\t\t\t\tbreak\n\t\t\tdefault: append(from(character), children)\n\t\t}\n\n\treturn children\n}\n\n/**\n * @param {number} index\n * @param {number} count\n * @return {string}\n */\nexport function escaping (index, count) {\n\twhile (--count && next())\n\t\t// not 0-9 A-F a-f\n\t\tif (character < 48 || character > 102 || (character > 57 && character < 65) || (character > 70 && character < 97))\n\t\t\tbreak\n\n\treturn slice(index, caret() + (count < 6 && peek() == 32 && next() == 32))\n}\n\n/**\n * @param {number} type\n * @return {number}\n */\nexport function delimiter (type) {\n\twhile (next())\n\t\tswitch (character) {\n\t\t\t// ] ) \" '\n\t\t\tcase type:\n\t\t\t\treturn position\n\t\t\t// \" '\n\t\t\tcase 34: case 39:\n\t\t\t\tif (type !== 34 && type !== 39)\n\t\t\t\t\tdelimiter(character)\n\t\t\t\tbreak\n\t\t\t// (\n\t\t\tcase 40:\n\t\t\t\tif (type === 41)\n\t\t\t\t\tdelimiter(type)\n\t\t\t\tbreak\n\t\t\t// \\\n\t\t\tcase 92:\n\t\t\t\tnext()\n\t\t\t\tbreak\n\t\t}\n\n\treturn position\n}\n\n/**\n * @param {number} type\n * @param {number} index\n * @return {number}\n */\nexport function commenter (type, index) {\n\twhile (next())\n\t\t// //\n\t\tif (type + character === 47 + 10)\n\t\t\tbreak\n\t\t// /*\n\t\telse if (type + character === 42 + 42 && peek() === 47)\n\t\t\tbreak\n\n\treturn '/*' + slice(index, position - 1) + '*' + from(type === 47 ? type : next())\n}\n\n/**\n * @param {number} index\n * @return {string}\n */\nexport function identifier (index) {\n\twhile (!token(peek()))\n\t\tnext()\n\n\treturn slice(index, position)\n}\n"],"names":["line","column","length","position","character","characters","node","value","root","parent","type","props","children","siblings","copy","assign","char","prev","charat","next","peek","caret","slice","begin","end","substr","token","alloc","strlen","dealloc","delimit","trim","delimiter","tokenize","tokenizer","whitespace","append","identifier","from","escaping","index","count","commenter"],"mappings":"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","x_google_ignoreList":[0]}
@@ -1 +0,0 @@
1
- {"version":3,"file":"Utility.js","sources":["../../../../../../node_modules/stylis/src/Utility.js"],"sourcesContent":["/**\n * @param {number}\n * @return {number}\n */\nexport var abs = Math.abs\n\n/**\n * @param {number}\n * @return {string}\n */\nexport var from = String.fromCharCode\n\n/**\n * @param {object}\n * @return {object}\n */\nexport var assign = Object.assign\n\n/**\n * @param {string} value\n * @param {number} length\n * @return {number}\n */\nexport function hash (value, length) {\n\treturn charat(value, 0) ^ 45 ? (((((((length << 2) ^ charat(value, 0)) << 2) ^ charat(value, 1)) << 2) ^ charat(value, 2)) << 2) ^ charat(value, 3) : 0\n}\n\n/**\n * @param {string} value\n * @return {string}\n */\nexport function trim (value) {\n\treturn value.trim()\n}\n\n/**\n * @param {string} value\n * @param {RegExp} pattern\n * @return {string?}\n */\nexport function match (value, pattern) {\n\treturn (value = pattern.exec(value)) ? value[0] : value\n}\n\n/**\n * @param {string} value\n * @param {(string|RegExp)} pattern\n * @param {string} replacement\n * @return {string}\n */\nexport function replace (value, pattern, replacement) {\n\treturn value.replace(pattern, replacement)\n}\n\n/**\n * @param {string} value\n * @param {string} search\n * @return {number}\n */\nexport function indexof (value, search) {\n\treturn value.indexOf(search)\n}\n\n/**\n * @param {string} value\n * @param {number} index\n * @return {number}\n */\nexport function charat (value, index) {\n\treturn value.charCodeAt(index) | 0\n}\n\n/**\n * @param {string} value\n * @param {number} begin\n * @param {number} end\n * @return {string}\n */\nexport function substr (value, begin, end) {\n\treturn value.slice(begin, end)\n}\n\n/**\n * @param {string} value\n * @return {number}\n */\nexport function strlen (value) {\n\treturn value.length\n}\n\n/**\n * @param {any[]} value\n * @return {number}\n */\nexport function sizeof (value) {\n\treturn value.length\n}\n\n/**\n * @param {any} value\n * @param {any[]} array\n * @return {any}\n */\nexport function append (value, array) {\n\treturn array.push(value), value\n}\n\n/**\n * @param {string[]} array\n * @param {function} callback\n * @return {string}\n */\nexport function combine (array, callback) {\n\treturn array.map(callback).join('')\n}\n\n/**\n * @param {string[]} array\n * @param {RegExp} pattern\n * @return {string[]}\n */\nexport function filter (array, pattern) {\n\treturn array.filter(function (value) { return !match(value, pattern) })\n}\n"],"names":["abs","from","assign","hash","value","length","charat","trim","match","pattern","replace","replacement","indexof","search","index","substr","begin","end","strlen","sizeof","append","array","combine","callback"],"mappings":"AAIU,IAACA,IAAM,KAAK,KAMXC,IAAO,OAAO,cAMdC,IAAS,OAAO;AAOpB,SAASC,EAAMC,GAAOC,GAAQ;AACpC,SAAOC,EAAOF,GAAO,CAAC,IAAI,QAAYC,KAAU,IAAKC,EAAOF,GAAO,CAAC,MAAM,IAAKE,EAAOF,GAAO,CAAC,MAAM,IAAKE,EAAOF,GAAO,CAAC,MAAM,IAAKE,EAAOF,GAAO,CAAC,IAAI;AACvJ;AAMO,SAASG,EAAMH,GAAO;AAC5B,SAAOA,EAAM,KAAI;AAClB;AAOO,SAASI,EAAOJ,GAAOK,GAAS;AACtC,UAAQL,IAAQK,EAAQ,KAAKL,CAAK,KAAKA,EAAM,CAAC,IAAIA;AACnD;AAQO,SAASM,EAASN,GAAOK,GAASE,GAAa;AACrD,SAAOP,EAAM,QAAQK,GAASE,CAAW;AAC1C;AAOO,SAASC,EAASR,GAAOS,GAAQ;AACvC,SAAOT,EAAM,QAAQS,CAAM;AAC5B;AAOO,SAASP,EAAQF,GAAOU,GAAO;AACrC,SAAOV,EAAM,WAAWU,CAAK,IAAI;AAClC;AAQO,SAASC,EAAQX,GAAOY,GAAOC,GAAK;AAC1C,SAAOb,EAAM,MAAMY,GAAOC,CAAG;AAC9B;AAMO,SAASC,EAAQd,GAAO;AAC9B,SAAOA,EAAM;AACd;AAMO,SAASe,EAAQf,GAAO;AAC9B,SAAOA,EAAM;AACd;AAOO,SAASgB,EAAQhB,GAAOiB,GAAO;AACrC,SAAOA,EAAM,KAAKjB,CAAK,GAAGA;AAC3B;AAOO,SAASkB,EAASD,GAAOE,GAAU;AACzC,SAAOF,EAAM,IAAIE,CAAQ,EAAE,KAAK,EAAE;AACnC;","x_google_ignoreList":[0]}
@@ -1,8 +0,0 @@
1
- const t = "data-volt2", o = "data-volt2-insertion-point", T = "data-volt2-tokens", a = "data-volt2-slot";
2
- export {
3
- o as INSERTION_POINT_ATTR,
4
- t as OWNER_ATTR,
5
- a as SLOT_ATTR,
6
- T as TOKENS_ATTR
7
- };
8
- //# sourceMappingURL=contract.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"contract.js","sources":["../../src/renderer/contract.ts"],"sourcesContent":["/**\n * Fed to Griffel as `classNameHashSalt`. Griffel hashes class names from\n * `salt + selector + atRules + property + value`, which makes the two cases exhaustive:\n *\n * same salt -> identical declarations produce identical class names AND identical rules.\n * A \"collision\" is content identity, so dedup is safe.\n * different salt -> disjoint class namespaces. Collision is impossible, and dedup between those\n * copies is correctly forfeited.\n *\n * It is derived from the pinned `@griffel/core` version and NOTHING else — token isolation is the\n * job of the value-derived property namespaces, not of this salt. Never typed by hand; see\n * DECISIONS.md D4. There used to be a second name for this exact value (`CONTRACT_SALT`, aliasing\n * the generated `CONTRACT_ID`), which is how two documents came to describe a formula the code had\n * stopped using.\n */\nexport {\n GRIFFEL_CLASS_SALT,\n GRIFFEL_VERSION,\n} from \"../tokens/class-salt.generated\"\n\n/** Marks style elements this contract owns, so dedup never adopts a foreign Griffel consumer's sheets. */\nexport const OWNER_ATTR = \"data-volt2\"\nexport const INSERTION_POINT_ATTR = \"data-volt2-insertion-point\"\nexport const TOKENS_ATTR = \"data-volt2-tokens\"\n\n/**\n * v2-only slot marker, and the reason it has to exist.\n *\n * `data-slot` values are shared with v1 by design, so ANY selector keyed on one also matches\n * v1-rendered DOM — a v1 element nested inside a v2 component included, even though our own rule's\n * root is hash-scoped. The StyleX track hit exactly this: a v1 icon computed to 0x0 and went\n * through a green gate.\n *\n * So every internal descendant selector keys on THIS attribute, which only v2 emits. `data-slot`\n * is still set, but purely as a diagnostic — under content-hashed class names it is the only\n * human-readable identifier left on an element — and is never styled against.\n */\nexport const SLOT_ATTR = \"data-volt2-slot\"\n\n/**\n * Griffel's own DOM attributes, IMPORTED rather than copied.\n *\n * The PoC hardcoded these three strings with a comment noting they were \"mirrored from\n * @griffel/core/src/constants.ts\". They do not need to be: `@griffel/core`'s index does\n * `export * from './constants.js'`, so they are genuinely public and typed despite the `@internal`\n * JSDoc. Importing them removes a whole class of silent drift — a rename becomes a compile error\n * instead of a selector that matches nothing.\n */\nexport {\n DATA_BUCKET_ATTR as BUCKET_ATTR,\n DATA_PRIORITY_ATTR as PRIORITY_ATTR,\n DATA_CONTAINER_ATTR as CONTAINER_ATTR,\n} from \"@griffel/core\"\n"],"names":["OWNER_ATTR","INSERTION_POINT_ATTR","TOKENS_ATTR","SLOT_ATTR"],"mappings":"AAqBO,MAAMA,IAAa,cACbC,IAAuB,8BACvBC,IAAc,qBAcdC,IAAY;"}
@@ -1,59 +0,0 @@
1
- import { OWNER_ATTR as h } from "./contract.js";
2
- import { ensureInsertionPoint as T } from "./insertion-point.js";
3
- import { ruleClassKey as p } from "./rule-key.js";
4
- import { getStyleSheetKeyFromElement as d, adoptStyleSheetElement as A } from "./sheet-adoption.js";
5
- import { ensureCoreTokens as C } from "../tokens/install.js";
6
- import { createDOMRenderer as E } from "../node_modules/@griffel/core/src/renderer/createDOMRenderer.js";
7
- import { GRIFFEL_CLASS_SALT as f } from "../tokens/class-salt.generated.js";
8
- import { DATA_BUCKET_ATTR as _ } from "../node_modules/@griffel/core/src/constants.js";
9
- let o = null;
10
- function L(r = document, m = "autonomous") {
11
- if (o) return o;
12
- C(r);
13
- const l = /* @__PURE__ */ new Set(), a = /* @__PURE__ */ new WeakMap(), t = E(r, {
14
- classNameHashSalt: f,
15
- insertionPoint: T(r),
16
- styleElementAttributes: { [h]: f },
17
- unstable_filterCSSRule: m === "off" ? void 0 : (s) => {
18
- const e = p(s);
19
- return e !== null && l.has(e) ? !1 : (e !== null && l.add(e), !0);
20
- }
21
- });
22
- function R() {
23
- r.head.querySelectorAll(
24
- `style[${_}][${h}="${f}"]`
25
- ).forEach((e) => {
26
- const i = e.sheet;
27
- if (!i) return;
28
- let n;
29
- try {
30
- n = i.cssRules.length;
31
- } catch {
32
- return;
33
- }
34
- const c = d(e);
35
- t.stylesheets[c] || (t.stylesheets[c] = A(
36
- e
37
- ));
38
- const S = a.get(e) ?? 0;
39
- if (S !== n) {
40
- for (let u = S; u < n; u++) {
41
- const y = p(i.cssRules[u].cssText);
42
- y !== null && l.add(y);
43
- }
44
- a.set(e, n);
45
- }
46
- });
47
- }
48
- if (m !== "off") {
49
- const s = t.insertCSSRules.bind(t);
50
- t.insertCSSRules = (e) => {
51
- R(), s(e);
52
- };
53
- }
54
- return o = t, o;
55
- }
56
- export {
57
- L as getVoltRenderer
58
- };
59
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sources":["../../src/renderer/index.ts"],"sourcesContent":["import { createDOMRenderer, type GriffelRenderer } from \"@griffel/core\"\n\nimport { BUCKET_ATTR, GRIFFEL_CLASS_SALT, OWNER_ATTR } from \"./contract\"\nimport { ensureInsertionPoint } from \"./insertion-point\"\nimport { ruleClassKey } from \"./rule-key\"\nimport {\n adoptStyleSheetElement,\n getStyleSheetKeyFromElement,\n} from \"./sheet-adoption\"\nimport { ensureCoreTokens } from \"../tokens/install\"\n\nexport type DedupMode = \"autonomous\" | \"off\"\n\nexport type DedupStats = {\n /** Atoms this copy skipped because another copy had already inserted them. */\n skipped: number\n /** Atoms this copy actually inserted. */\n inserted: number\n /** Style elements owned by another copy that this one adopted rather than duplicating. */\n adoptedSheets: number\n}\n\nlet renderer: GriffelRenderer | null = null\nconst stats: DedupStats = { skipped: 0, inserted: 0, adoptedSheets: 0 }\n\nexport function getDedupStats(): DedupStats {\n return { ...stats }\n}\n\n/** Test-only: drop the module-private renderer so a fresh document can be used. */\nexport function __resetRendererForTests(): void {\n renderer = null\n stats.skipped = 0\n stats.inserted = 0\n stats.adoptedSheets = 0\n}\n\n/**\n * The per-copy renderer.\n *\n * Created on first use rather than at import. `createDOMRenderer` happens to do no DOM work of its\n * own, but relying on that would make the \"no import-time injection\" guarantee depend on a Griffel\n * implementation detail; a lazy accessor makes it structural, which is what `sideEffects: false`\n * promises consumers.\n */\nexport function getVoltRenderer(\n doc: Document = document,\n mode: DedupMode = \"autonomous\"\n): GriffelRenderer {\n if (renderer) return renderer\n\n // Tokens must exist before the first atom referencing them paints. Installed here rather than at\n // import for the same reason the renderer is lazy.\n ensureCoreTokens(doc)\n\n /** Atom class names known to be in the DOM already, whoever inserted them. */\n const seen = new Set<string>()\n /** Per adopted element, how many rules we have already accounted for. */\n const watermarks = new WeakMap<HTMLStyleElement, number>()\n\n const base = createDOMRenderer(doc, {\n classNameHashSalt: GRIFFEL_CLASS_SALT,\n insertionPoint: ensureInsertionPoint(doc),\n styleElementAttributes: { [OWNER_ATTR]: GRIFFEL_CLASS_SALT },\n unstable_filterCSSRule:\n mode === \"off\"\n ? undefined\n : (ruleCSS: string) => {\n const key = ruleClassKey(ruleCSS)\n if (key !== null && seen.has(key)) {\n stats.skipped++\n return false\n }\n if (key !== null) seen.add(key)\n stats.inserted++\n return true\n },\n })\n\n /**\n * Cross-copy dedup. Two jobs, both cheap when nothing has changed:\n *\n * 1. ADOPT — register style elements owned by this contract that another copy created, so N\n * copies write into ONE set of <style> elements rather than N sets.\n * 2. PRIME — read rules back out of the CSSOM (not `textContent`, which is empty for rules\n * inserted via `insertRule`) so this copy knows not to re-insert them.\n *\n * The watermark stops the cache going stale: if another copy has inserted since our last pass,\n * only the delta is scanned. Cost when idle is one integer compare per owned element.\n *\n * Failure mode is partial dedup, never breakage — a stale cache re-inserts an identical rule\n * into the same sheet, which costs bytes rather than correctness. That is safe precisely because\n * Griffel class names are content hashes: the same name always means the same rule.\n */\n function syncFromDOM(): void {\n const els = doc.head.querySelectorAll<HTMLStyleElement>(\n `style[${BUCKET_ATTR}][${OWNER_ATTR}=\"${GRIFFEL_CLASS_SALT}\"]`\n )\n els.forEach((el) => {\n const sheet = el.sheet\n if (!sheet) return\n\n let count: number\n try {\n count = sheet.cssRules.length\n } catch {\n return // cross-origin or detached — skip rather than throw in a render path\n }\n\n const key = getStyleSheetKeyFromElement(el)\n if (!base.stylesheets[key]) {\n base.stylesheets[key] = adoptStyleSheetElement(\n el\n ) as unknown as GriffelRenderer[\"stylesheets\"][string]\n stats.adoptedSheets++\n }\n\n const from = watermarks.get(el) ?? 0\n if (from === count) return\n for (let i = from; i < count; i++) {\n const ruleKey = ruleClassKey(sheet.cssRules[i].cssText)\n if (ruleKey !== null) seen.add(ruleKey)\n }\n watermarks.set(el, count)\n })\n }\n\n if (mode !== \"off\") {\n const originalInsert = base.insertCSSRules.bind(base)\n base.insertCSSRules = (cssRules) => {\n syncFromDOM()\n originalInsert(cssRules)\n }\n }\n\n renderer = base\n return renderer\n}\n"],"names":["renderer","getVoltRenderer","doc","mode","ensureCoreTokens","seen","watermarks","base","createDOMRenderer","GRIFFEL_CLASS_SALT","ensureInsertionPoint","OWNER_ATTR","ruleCSS","key","ruleClassKey","syncFromDOM","BUCKET_ATTR","el","sheet","count","getStyleSheetKeyFromElement","adoptStyleSheetElement","from","i","ruleKey","originalInsert","cssRules"],"mappings":";;;;;;;;AAsBA,IAAIA,IAAmC;AAuBhC,SAASC,EACdC,IAAgB,UAChBC,IAAkB,cACD;AACjB,MAAIH,EAAU,QAAOA;AAIrB,EAAAI,EAAiBF,CAAG;AAGpB,QAAMG,wBAAW,IAAA,GAEXC,wBAAiB,QAAA,GAEjBC,IAAOC,EAAkBN,GAAK;AAAA,IAClC,mBAAmBO;AAAA,IACnB,gBAAgBC,EAAqBR,CAAG;AAAA,IACxC,wBAAwB,EAAE,CAACS,CAAU,GAAGF,EAAA;AAAA,IACxC,wBACEN,MAAS,QACL,SACA,CAACS,MAAoB;AACnB,YAAMC,IAAMC,EAAaF,CAAO;AAChC,aAAIC,MAAQ,QAAQR,EAAK,IAAIQ,CAAG,IAEvB,MAELA,MAAQ,QAAMR,EAAK,IAAIQ,CAAG,GAEvB;AAAA,IACT;AAAA,EAAA,CACP;AAiBD,WAASE,IAAoB;AAI3B,IAHYb,EAAI,KAAK;AAAA,MACnB,SAASc,CAAW,KAAKL,CAAU,KAAKF,CAAkB;AAAA,IAAA,EAExD,QAAQ,CAACQ,MAAO;AAClB,YAAMC,IAAQD,EAAG;AACjB,UAAI,CAACC,EAAO;AAEZ,UAAIC;AACJ,UAAI;AACF,QAAAA,IAAQD,EAAM,SAAS;AAAA,MACzB,QAAQ;AACN;AAAA,MACF;AAEA,YAAML,IAAMO,EAA4BH,CAAE;AAC1C,MAAKV,EAAK,YAAYM,CAAG,MACvBN,EAAK,YAAYM,CAAG,IAAIQ;AAAA,QACtBJ;AAAA,MAAA;AAKJ,YAAMK,IAAOhB,EAAW,IAAIW,CAAE,KAAK;AACnC,UAAIK,MAASH,GACb;AAAA,iBAASI,IAAID,GAAMC,IAAIJ,GAAOI,KAAK;AACjC,gBAAMC,IAAUV,EAAaI,EAAM,SAASK,CAAC,EAAE,OAAO;AACtD,UAAIC,MAAY,QAAMnB,EAAK,IAAImB,CAAO;AAAA,QACxC;AACA,QAAAlB,EAAW,IAAIW,GAAIE,CAAK;AAAA;AAAA,IAC1B,CAAC;AAAA,EACH;AAEA,MAAIhB,MAAS,OAAO;AAClB,UAAMsB,IAAiBlB,EAAK,eAAe,KAAKA,CAAI;AACpD,IAAAA,EAAK,iBAAiB,CAACmB,MAAa;AAClC,MAAAX,EAAA,GACAU,EAAeC,CAAQ;AAAA,IACzB;AAAA,EACF;AAEA,SAAA1B,IAAWO,GACJP;AACT;"}