@luxonis/depthai-pipeline-lib 1.4.8

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 (240) hide show
  1. package/LICENSE.md +1 -0
  2. package/README.md +14 -0
  3. package/dist/index.css +3 -0
  4. package/dist/panda.css +1474 -0
  5. package/dist/src/components/Node.d.ts +5 -0
  6. package/dist/src/components/Node.js +42 -0
  7. package/dist/src/components/PipelineCanvas.d.ts +7 -0
  8. package/dist/src/components/PipelineCanvas.js +56 -0
  9. package/dist/src/index.d.ts +4 -0
  10. package/dist/src/index.js +2 -0
  11. package/dist/src/services/pipeline.d.ts +51 -0
  12. package/dist/src/services/pipeline.js +40 -0
  13. package/dist/src/styled-system/chunks/src__components__Node.css +195 -0
  14. package/dist/src/styled-system/chunks/src__components__PipelineCanvas.css +25 -0
  15. package/dist/src/styled-system/css/conditions.mjs +34 -0
  16. package/dist/src/styled-system/css/css.d.mts +9 -0
  17. package/dist/src/styled-system/css/css.mjs +44 -0
  18. package/dist/src/styled-system/css/cva.d.mts +6 -0
  19. package/dist/src/styled-system/css/cva.mjs +63 -0
  20. package/dist/src/styled-system/css/cx.d.mts +5 -0
  21. package/dist/src/styled-system/css/cx.mjs +15 -0
  22. package/dist/src/styled-system/css/index.d.mts +5 -0
  23. package/dist/src/styled-system/css/index.mjs +4 -0
  24. package/dist/src/styled-system/css/sva.d.mts +4 -0
  25. package/dist/src/styled-system/css/sva.mjs +35 -0
  26. package/dist/src/styled-system/global.css +70 -0
  27. package/dist/src/styled-system/helpers.mjs +282 -0
  28. package/dist/src/styled-system/patterns/aspect-ratio.d.mts +21 -0
  29. package/dist/src/styled-system/patterns/aspect-ratio.mjs +35 -0
  30. package/dist/src/styled-system/patterns/bleed.d.mts +22 -0
  31. package/dist/src/styled-system/patterns/bleed.mjs +19 -0
  32. package/dist/src/styled-system/patterns/box.d.mts +21 -0
  33. package/dist/src/styled-system/patterns/box.mjs +12 -0
  34. package/dist/src/styled-system/patterns/center.d.mts +21 -0
  35. package/dist/src/styled-system/patterns/center.mjs +18 -0
  36. package/dist/src/styled-system/patterns/circle.d.mts +21 -0
  37. package/dist/src/styled-system/patterns/circle.mjs +22 -0
  38. package/dist/src/styled-system/patterns/container.d.mts +21 -0
  39. package/dist/src/styled-system/patterns/container.mjs +18 -0
  40. package/dist/src/styled-system/patterns/divider.d.mts +23 -0
  41. package/dist/src/styled-system/patterns/divider.mjs +21 -0
  42. package/dist/src/styled-system/patterns/flex.d.mts +27 -0
  43. package/dist/src/styled-system/patterns/flex.mjs +23 -0
  44. package/dist/src/styled-system/patterns/float.d.mts +24 -0
  45. package/dist/src/styled-system/patterns/float.mjs +45 -0
  46. package/dist/src/styled-system/patterns/grid-item.d.mts +26 -0
  47. package/dist/src/styled-system/patterns/grid-item.mjs +22 -0
  48. package/dist/src/styled-system/patterns/grid.d.mts +25 -0
  49. package/dist/src/styled-system/patterns/grid.mjs +20 -0
  50. package/dist/src/styled-system/patterns/hstack.d.mts +22 -0
  51. package/dist/src/styled-system/patterns/hstack.mjs +20 -0
  52. package/dist/src/styled-system/patterns/index.d.mts +21 -0
  53. package/dist/src/styled-system/patterns/index.mjs +20 -0
  54. package/dist/src/styled-system/patterns/link-box.d.mts +21 -0
  55. package/dist/src/styled-system/patterns/link-box.mjs +19 -0
  56. package/dist/src/styled-system/patterns/link-overlay.d.mts +21 -0
  57. package/dist/src/styled-system/patterns/link-overlay.mjs +24 -0
  58. package/dist/src/styled-system/patterns/spacer.d.mts +21 -0
  59. package/dist/src/styled-system/patterns/spacer.mjs +18 -0
  60. package/dist/src/styled-system/patterns/square.d.mts +21 -0
  61. package/dist/src/styled-system/patterns/square.mjs +21 -0
  62. package/dist/src/styled-system/patterns/stack.d.mts +24 -0
  63. package/dist/src/styled-system/patterns/stack.mjs +20 -0
  64. package/dist/src/styled-system/patterns/visually-hidden.d.mts +21 -0
  65. package/dist/src/styled-system/patterns/visually-hidden.mjs +15 -0
  66. package/dist/src/styled-system/patterns/vstack.d.mts +22 -0
  67. package/dist/src/styled-system/patterns/vstack.mjs +20 -0
  68. package/dist/src/styled-system/patterns/wrap.d.mts +25 -0
  69. package/dist/src/styled-system/patterns/wrap.mjs +22 -0
  70. package/dist/src/styled-system/recipes/accordion.d.mts +28 -0
  71. package/dist/src/styled-system/recipes/accordion.mjs +46 -0
  72. package/dist/src/styled-system/recipes/alert-description.d.mts +28 -0
  73. package/dist/src/styled-system/recipes/alert-description.mjs +19 -0
  74. package/dist/src/styled-system/recipes/alert-dialog.d.mts +28 -0
  75. package/dist/src/styled-system/recipes/alert-dialog.mjs +70 -0
  76. package/dist/src/styled-system/recipes/alert-title.d.mts +28 -0
  77. package/dist/src/styled-system/recipes/alert-title.mjs +19 -0
  78. package/dist/src/styled-system/recipes/alert.d.mts +28 -0
  79. package/dist/src/styled-system/recipes/alert.mjs +26 -0
  80. package/dist/src/styled-system/recipes/avatar.d.mts +28 -0
  81. package/dist/src/styled-system/recipes/avatar.mjs +38 -0
  82. package/dist/src/styled-system/recipes/badge.d.mts +28 -0
  83. package/dist/src/styled-system/recipes/badge.mjs +28 -0
  84. package/dist/src/styled-system/recipes/blockquote.d.mts +28 -0
  85. package/dist/src/styled-system/recipes/blockquote.mjs +19 -0
  86. package/dist/src/styled-system/recipes/button.d.mts +29 -0
  87. package/dist/src/styled-system/recipes/button.mjs +37 -0
  88. package/dist/src/styled-system/recipes/calendar.d.mts +28 -0
  89. package/dist/src/styled-system/recipes/calendar.mjs +118 -0
  90. package/dist/src/styled-system/recipes/card-content.d.mts +28 -0
  91. package/dist/src/styled-system/recipes/card-content.mjs +19 -0
  92. package/dist/src/styled-system/recipes/card-description.d.mts +28 -0
  93. package/dist/src/styled-system/recipes/card-description.mjs +19 -0
  94. package/dist/src/styled-system/recipes/card-footer.d.mts +28 -0
  95. package/dist/src/styled-system/recipes/card-footer.mjs +19 -0
  96. package/dist/src/styled-system/recipes/card-header.d.mts +28 -0
  97. package/dist/src/styled-system/recipes/card-header.mjs +19 -0
  98. package/dist/src/styled-system/recipes/card-title.d.mts +28 -0
  99. package/dist/src/styled-system/recipes/card-title.mjs +19 -0
  100. package/dist/src/styled-system/recipes/card.d.mts +28 -0
  101. package/dist/src/styled-system/recipes/card.mjs +19 -0
  102. package/dist/src/styled-system/recipes/checkbox.d.mts +28 -0
  103. package/dist/src/styled-system/recipes/checkbox.mjs +34 -0
  104. package/dist/src/styled-system/recipes/collapsible.d.mts +28 -0
  105. package/dist/src/styled-system/recipes/collapsible.mjs +38 -0
  106. package/dist/src/styled-system/recipes/command-dialog.d.mts +28 -0
  107. package/dist/src/styled-system/recipes/command-dialog.mjs +34 -0
  108. package/dist/src/styled-system/recipes/command.d.mts +28 -0
  109. package/dist/src/styled-system/recipes/command.mjs +66 -0
  110. package/dist/src/styled-system/recipes/context-menu.d.mts +28 -0
  111. package/dist/src/styled-system/recipes/context-menu.mjs +98 -0
  112. package/dist/src/styled-system/recipes/create-recipe.d.mts +1 -0
  113. package/dist/src/styled-system/recipes/create-recipe.mjs +50 -0
  114. package/dist/src/styled-system/recipes/dialog.d.mts +28 -0
  115. package/dist/src/styled-system/recipes/dialog.mjs +66 -0
  116. package/dist/src/styled-system/recipes/dropdown-menu.d.mts +28 -0
  117. package/dist/src/styled-system/recipes/dropdown-menu.mjs +90 -0
  118. package/dist/src/styled-system/recipes/form-control.d.mts +28 -0
  119. package/dist/src/styled-system/recipes/form-control.mjs +19 -0
  120. package/dist/src/styled-system/recipes/form-description.d.mts +28 -0
  121. package/dist/src/styled-system/recipes/form-description.mjs +19 -0
  122. package/dist/src/styled-system/recipes/form-item.d.mts +28 -0
  123. package/dist/src/styled-system/recipes/form-item.mjs +19 -0
  124. package/dist/src/styled-system/recipes/form-label.d.mts +28 -0
  125. package/dist/src/styled-system/recipes/form-label.mjs +19 -0
  126. package/dist/src/styled-system/recipes/form-message.d.mts +28 -0
  127. package/dist/src/styled-system/recipes/form-message.mjs +19 -0
  128. package/dist/src/styled-system/recipes/h1.d.mts +28 -0
  129. package/dist/src/styled-system/recipes/h1.mjs +19 -0
  130. package/dist/src/styled-system/recipes/h2.d.mts +28 -0
  131. package/dist/src/styled-system/recipes/h2.mjs +19 -0
  132. package/dist/src/styled-system/recipes/h3.d.mts +28 -0
  133. package/dist/src/styled-system/recipes/h3.mjs +19 -0
  134. package/dist/src/styled-system/recipes/h4.d.mts +28 -0
  135. package/dist/src/styled-system/recipes/h4.mjs +19 -0
  136. package/dist/src/styled-system/recipes/hover-card.d.mts +28 -0
  137. package/dist/src/styled-system/recipes/hover-card.mjs +38 -0
  138. package/dist/src/styled-system/recipes/icon.d.mts +32 -0
  139. package/dist/src/styled-system/recipes/icon.mjs +49 -0
  140. package/dist/src/styled-system/recipes/index.d.mts +74 -0
  141. package/dist/src/styled-system/recipes/index.mjs +73 -0
  142. package/dist/src/styled-system/recipes/inline-code.d.mts +28 -0
  143. package/dist/src/styled-system/recipes/inline-code.mjs +19 -0
  144. package/dist/src/styled-system/recipes/input.d.mts +28 -0
  145. package/dist/src/styled-system/recipes/input.mjs +19 -0
  146. package/dist/src/styled-system/recipes/label.d.mts +28 -0
  147. package/dist/src/styled-system/recipes/label.mjs +19 -0
  148. package/dist/src/styled-system/recipes/large.d.mts +28 -0
  149. package/dist/src/styled-system/recipes/large.mjs +19 -0
  150. package/dist/src/styled-system/recipes/lead.d.mts +28 -0
  151. package/dist/src/styled-system/recipes/lead.mjs +19 -0
  152. package/dist/src/styled-system/recipes/link.d.mts +28 -0
  153. package/dist/src/styled-system/recipes/link.mjs +19 -0
  154. package/dist/src/styled-system/recipes/list.d.mts +28 -0
  155. package/dist/src/styled-system/recipes/list.mjs +19 -0
  156. package/dist/src/styled-system/recipes/menubar.d.mts +28 -0
  157. package/dist/src/styled-system/recipes/menubar.mjs +94 -0
  158. package/dist/src/styled-system/recipes/muted.d.mts +28 -0
  159. package/dist/src/styled-system/recipes/muted.mjs +19 -0
  160. package/dist/src/styled-system/recipes/navigation-menu.d.mts +28 -0
  161. package/dist/src/styled-system/recipes/navigation-menu.mjs +62 -0
  162. package/dist/src/styled-system/recipes/p.d.mts +28 -0
  163. package/dist/src/styled-system/recipes/p.mjs +19 -0
  164. package/dist/src/styled-system/recipes/popover.d.mts +28 -0
  165. package/dist/src/styled-system/recipes/popover.mjs +42 -0
  166. package/dist/src/styled-system/recipes/progress.d.mts +28 -0
  167. package/dist/src/styled-system/recipes/progress.mjs +34 -0
  168. package/dist/src/styled-system/recipes/radio-group.d.mts +28 -0
  169. package/dist/src/styled-system/recipes/radio-group.mjs +42 -0
  170. package/dist/src/styled-system/recipes/scroll-area.d.mts +28 -0
  171. package/dist/src/styled-system/recipes/scroll-area.mjs +46 -0
  172. package/dist/src/styled-system/recipes/select.d.mts +28 -0
  173. package/dist/src/styled-system/recipes/select.mjs +66 -0
  174. package/dist/src/styled-system/recipes/separator.d.mts +28 -0
  175. package/dist/src/styled-system/recipes/separator.mjs +26 -0
  176. package/dist/src/styled-system/recipes/sheet.d.mts +28 -0
  177. package/dist/src/styled-system/recipes/sheet.mjs +81 -0
  178. package/dist/src/styled-system/recipes/skeleton.d.mts +28 -0
  179. package/dist/src/styled-system/recipes/skeleton.mjs +19 -0
  180. package/dist/src/styled-system/recipes/slider.d.mts +28 -0
  181. package/dist/src/styled-system/recipes/slider.mjs +42 -0
  182. package/dist/src/styled-system/recipes/small.d.mts +28 -0
  183. package/dist/src/styled-system/recipes/small.mjs +19 -0
  184. package/dist/src/styled-system/recipes/switch-recipe.d.mts +28 -0
  185. package/dist/src/styled-system/recipes/switch-recipe.mjs +34 -0
  186. package/dist/src/styled-system/recipes/table-body.d.mts +28 -0
  187. package/dist/src/styled-system/recipes/table-body.mjs +19 -0
  188. package/dist/src/styled-system/recipes/table-caption.d.mts +28 -0
  189. package/dist/src/styled-system/recipes/table-caption.mjs +19 -0
  190. package/dist/src/styled-system/recipes/table-cell.d.mts +28 -0
  191. package/dist/src/styled-system/recipes/table-cell.mjs +19 -0
  192. package/dist/src/styled-system/recipes/table-container.d.mts +28 -0
  193. package/dist/src/styled-system/recipes/table-container.mjs +19 -0
  194. package/dist/src/styled-system/recipes/table-footer.d.mts +28 -0
  195. package/dist/src/styled-system/recipes/table-footer.mjs +19 -0
  196. package/dist/src/styled-system/recipes/table-head.d.mts +28 -0
  197. package/dist/src/styled-system/recipes/table-head.mjs +19 -0
  198. package/dist/src/styled-system/recipes/table-header.d.mts +28 -0
  199. package/dist/src/styled-system/recipes/table-header.mjs +19 -0
  200. package/dist/src/styled-system/recipes/table-row.d.mts +28 -0
  201. package/dist/src/styled-system/recipes/table-row.mjs +19 -0
  202. package/dist/src/styled-system/recipes/table.d.mts +28 -0
  203. package/dist/src/styled-system/recipes/table.mjs +19 -0
  204. package/dist/src/styled-system/recipes/tabs.d.mts +28 -0
  205. package/dist/src/styled-system/recipes/tabs.mjs +42 -0
  206. package/dist/src/styled-system/recipes/textarea.d.mts +28 -0
  207. package/dist/src/styled-system/recipes/textarea.mjs +19 -0
  208. package/dist/src/styled-system/recipes/toast-viewport.d.mts +28 -0
  209. package/dist/src/styled-system/recipes/toast-viewport.mjs +19 -0
  210. package/dist/src/styled-system/recipes/toast.d.mts +28 -0
  211. package/dist/src/styled-system/recipes/toast.mjs +59 -0
  212. package/dist/src/styled-system/recipes/toggle.d.mts +29 -0
  213. package/dist/src/styled-system/recipes/toggle.mjs +32 -0
  214. package/dist/src/styled-system/recipes/tooltip.d.mts +28 -0
  215. package/dist/src/styled-system/recipes/tooltip.mjs +38 -0
  216. package/dist/src/styled-system/recipes/typography-table-container.d.mts +28 -0
  217. package/dist/src/styled-system/recipes/typography-table-container.mjs +19 -0
  218. package/dist/src/styled-system/recipes/typography-table.d.mts +28 -0
  219. package/dist/src/styled-system/recipes/typography-table.mjs +19 -0
  220. package/dist/src/styled-system/reset.css +206 -0
  221. package/dist/src/styled-system/static.css +320 -0
  222. package/dist/src/styled-system/tokens/index.css +620 -0
  223. package/dist/src/styled-system/tokens/index.d.mts +9 -0
  224. package/dist/src/styled-system/tokens/index.mjs +2680 -0
  225. package/dist/src/styled-system/tokens/keyframes.css +56 -0
  226. package/dist/src/styled-system/tokens/tokens.d.mts +63 -0
  227. package/dist/src/styled-system/types/composition.d.mts +111 -0
  228. package/dist/src/styled-system/types/conditions.d.mts +266 -0
  229. package/dist/src/styled-system/types/csstype.d.mts +20749 -0
  230. package/dist/src/styled-system/types/global.d.mts +19 -0
  231. package/dist/src/styled-system/types/helpers.d.mts +2 -0
  232. package/dist/src/styled-system/types/index.d.mts +8 -0
  233. package/dist/src/styled-system/types/parts.d.mts +6 -0
  234. package/dist/src/styled-system/types/pattern.d.mts +61 -0
  235. package/dist/src/styled-system/types/prop-type.d.mts +340 -0
  236. package/dist/src/styled-system/types/recipe.d.mts +148 -0
  237. package/dist/src/styled-system/types/selectors.d.mts +59 -0
  238. package/dist/src/styled-system/types/style-props.d.mts +687 -0
  239. package/dist/src/styled-system/types/system-types.d.mts +85 -0
  240. package/package.json +63 -0
@@ -0,0 +1,56 @@
1
+ @layer tokens {
2
+ @keyframes spin {
3
+ to {
4
+ transform: rotate(360deg)
5
+ }
6
+ }
7
+ @keyframes ping {
8
+ 75%, 100% {
9
+ transform: scale(2);
10
+ opacity: 0
11
+ }
12
+ }
13
+ @keyframes pulse {
14
+ 50% {
15
+ opacity: .5
16
+ }
17
+ }
18
+ @keyframes bounce {
19
+ 0%, 100% {
20
+ transform: translateY(-25%);
21
+ animation-timing-function: cubic-bezier(0.8,0,1,1)
22
+ }
23
+ 50% {
24
+ transform: none;
25
+ animation-timing-function: cubic-bezier(0,0,0.2,1)
26
+ }
27
+ }
28
+ @keyframes enter {
29
+ from {
30
+ opacity: var(--shadow-panda-enter-opacity, 1);
31
+ transform: translate3d(var(--shadow-panda-enter-translate-x, 0), var(--shadow-panda-enter-translate-y, 0), 0) scale3d(var(--shadow-panda-enter-scale, 1), var(--shadow-panda-enter-scale, 1), var(--shadow-panda-enter-scale, 1)) rotate(var(--shadow-panda-enter-rotate, 0))
32
+ }
33
+ }
34
+ @keyframes exit {
35
+ to {
36
+ opacity: var(--shadow-panda-exit-opacity, 1);
37
+ transform: translate3d(var(--shadow-panda-exit-translate-x, 0), var(--shadow-panda-exit-translate-y, 0), 0) scale3d(var(--shadow-panda-exit-scale, 1), var(--shadow-panda-exit-scale, 1), var(--shadow-panda-exit-scale, 1)) rotate(var(--shadow-panda-exit-rotate, 0))
38
+ }
39
+ }
40
+ @keyframes accordion-down {
41
+ from {
42
+ height: 0
43
+ }
44
+ to {
45
+ height: var(--radix-accordion-content-height)
46
+ }
47
+ }
48
+ @keyframes accordion-up {
49
+ from {
50
+ height: var(--radix-accordion-content-height)
51
+ }
52
+ to {
53
+ height: 0
54
+ }
55
+ }
56
+ }
@@ -0,0 +1,63 @@
1
+ /* eslint-disable */
2
+ export type Token = "letterSpacings.tighter" | "letterSpacings.tight" | "letterSpacings.normal" | "letterSpacings.wide" | "letterSpacings.wider" | "letterSpacings.widest" | "blurs.sm" | "blurs.base" | "blurs.md" | "blurs.lg" | "blurs.xl" | "blurs.2xl" | "blurs.3xl" | "animations.spin" | "animations.ping" | "animations.pulse" | "animations.bounce" | "fontWeights.thin" | "fontWeights.extralight" | "fontWeights.light" | "fontWeights.normal" | "fontWeights.medium" | "fontWeights.semibold" | "fontWeights.bold" | "fontWeights.extrabold" | "fontWeights.black" | "fontWeights.primary" | "fontWeights.md" | "fontWeights.lg" | "fontWeights.xl" | "spacing.0" | "spacing.1" | "spacing.2" | "spacing.3" | "spacing.4" | "spacing.5" | "spacing.6" | "spacing.7" | "spacing.8" | "spacing.9" | "spacing.10" | "spacing.11" | "spacing.12" | "spacing.14" | "spacing.16" | "spacing.20" | "spacing.24" | "spacing.28" | "spacing.32" | "spacing.36" | "spacing.40" | "spacing.44" | "spacing.48" | "spacing.52" | "spacing.56" | "spacing.60" | "spacing.64" | "spacing.72" | "spacing.80" | "spacing.96" | "spacing.0.5" | "spacing.1.5" | "spacing.2.5" | "spacing.3.5" | "spacing.separator" | "spacing.smaller.xs" | "spacing.smaller.sm" | "spacing.smaller.md" | "spacing.xxs" | "spacing.xs" | "spacing.sm" | "spacing.3xs" | "spacing.md" | "spacing.lg" | "shadows.xl" | "shadows.2xl" | "shadows.inner" | "shadows.xs" | "shadows.sm" | "shadows.md" | "shadows.lg" | "borders.none" | "borders.outline.base" | "borders.border.base" | "borders.border.error" | "borders.border.success" | "borders.border.active" | "opacity.90" | "easings.default" | "easings.linear" | "easings.in" | "easings.out" | "easings.in-out" | "easings.easeInOut" | "durations.fastest" | "durations.faster" | "durations.normal" | "durations.slow" | "durations.slower" | "durations.slowest" | "durations.fast" | "fonts.serif" | "fonts.body" | "fonts.mono" | "fonts.sans" | "lineHeights.3" | "lineHeights.4" | "lineHeights.5" | "lineHeights.6" | "lineHeights.7" | "lineHeights.8" | "lineHeights.9" | "lineHeights.10" | "lineHeights.sm" | "lineHeights.primary" | "lineHeights.md" | "lineHeights.lg" | "lineHeights.none" | "lineHeights.tight" | "lineHeights.snug" | "lineHeights.normal" | "lineHeights.relaxed" | "lineHeights.loose" | "radii.xs" | "radii.sm" | "radii.md" | "radii.lg" | "radii.xl" | "radii.2xl" | "radii.3xl" | "radii.full" | "radii.common" | "radii.radius" | "fontSizes.2xs" | "fontSizes.2xl" | "fontSizes.3xl" | "fontSizes.4xl" | "fontSizes.5xl" | "fontSizes.6xl" | "fontSizes.7xl" | "fontSizes.8xl" | "fontSizes.9xl" | "fontSizes.xxs" | "fontSizes.xs" | "fontSizes.sm" | "fontSizes.primary" | "fontSizes.md" | "fontSizes.lg" | "fontSizes.xl" | "colors.current" | "colors.black" | "colors.white" | "colors.transparent" | "colors.rose.50" | "colors.rose.100" | "colors.rose.200" | "colors.rose.300" | "colors.rose.400" | "colors.rose.500" | "colors.rose.600" | "colors.rose.700" | "colors.rose.800" | "colors.rose.900" | "colors.rose.950" | "colors.pink.50" | "colors.pink.100" | "colors.pink.200" | "colors.pink.300" | "colors.pink.400" | "colors.pink.500" | "colors.pink.600" | "colors.pink.700" | "colors.pink.800" | "colors.pink.900" | "colors.pink.950" | "colors.fuchsia.50" | "colors.fuchsia.100" | "colors.fuchsia.200" | "colors.fuchsia.300" | "colors.fuchsia.400" | "colors.fuchsia.500" | "colors.fuchsia.600" | "colors.fuchsia.700" | "colors.fuchsia.800" | "colors.fuchsia.900" | "colors.fuchsia.950" | "colors.purple.50" | "colors.purple.100" | "colors.purple.200" | "colors.purple.300" | "colors.purple.400" | "colors.purple.500" | "colors.purple.600" | "colors.purple.700" | "colors.purple.800" | "colors.purple.900" | "colors.purple.950" | "colors.violet.50" | "colors.violet.100" | "colors.violet.200" | "colors.violet.300" | "colors.violet.400" | "colors.violet.500" | "colors.violet.600" | "colors.violet.700" | "colors.violet.800" | "colors.violet.900" | "colors.violet.950" | "colors.indigo.50" | "colors.indigo.100" | "colors.indigo.200" | "colors.indigo.300" | "colors.indigo.400" | "colors.indigo.500" | "colors.indigo.600" | "colors.indigo.700" | "colors.indigo.800" | "colors.indigo.900" | "colors.indigo.950" | "colors.blue.50" | "colors.blue.100" | "colors.blue.200" | "colors.blue.300" | "colors.blue.400" | "colors.blue.500" | "colors.blue.600" | "colors.blue.700" | "colors.blue.800" | "colors.blue.900" | "colors.blue.950" | "colors.sky.50" | "colors.sky.100" | "colors.sky.200" | "colors.sky.300" | "colors.sky.400" | "colors.sky.500" | "colors.sky.600" | "colors.sky.700" | "colors.sky.800" | "colors.sky.900" | "colors.sky.950" | "colors.cyan.50" | "colors.cyan.100" | "colors.cyan.200" | "colors.cyan.300" | "colors.cyan.400" | "colors.cyan.500" | "colors.cyan.600" | "colors.cyan.700" | "colors.cyan.800" | "colors.cyan.900" | "colors.cyan.950" | "colors.teal.50" | "colors.teal.100" | "colors.teal.200" | "colors.teal.300" | "colors.teal.400" | "colors.teal.500" | "colors.teal.600" | "colors.teal.700" | "colors.teal.800" | "colors.teal.900" | "colors.teal.950" | "colors.emerald.50" | "colors.emerald.100" | "colors.emerald.200" | "colors.emerald.300" | "colors.emerald.400" | "colors.emerald.500" | "colors.emerald.600" | "colors.emerald.700" | "colors.emerald.800" | "colors.emerald.900" | "colors.emerald.950" | "colors.green.50" | "colors.green.100" | "colors.green.200" | "colors.green.300" | "colors.green.400" | "colors.green.500" | "colors.green.600" | "colors.green.700" | "colors.green.800" | "colors.green.900" | "colors.green.950" | "colors.lime.50" | "colors.lime.100" | "colors.lime.200" | "colors.lime.300" | "colors.lime.400" | "colors.lime.500" | "colors.lime.600" | "colors.lime.700" | "colors.lime.800" | "colors.lime.900" | "colors.lime.950" | "colors.yellow.50" | "colors.yellow.100" | "colors.yellow.200" | "colors.yellow.300" | "colors.yellow.400" | "colors.yellow.500" | "colors.yellow.600" | "colors.yellow.700" | "colors.yellow.800" | "colors.yellow.900" | "colors.yellow.950" | "colors.amber.50" | "colors.amber.100" | "colors.amber.200" | "colors.amber.300" | "colors.amber.400" | "colors.amber.500" | "colors.amber.600" | "colors.amber.700" | "colors.amber.800" | "colors.amber.900" | "colors.amber.950" | "colors.orange.50" | "colors.orange.100" | "colors.orange.200" | "colors.orange.300" | "colors.orange.400" | "colors.orange.500" | "colors.orange.600" | "colors.orange.700" | "colors.orange.800" | "colors.orange.900" | "colors.orange.950" | "colors.red.50" | "colors.red.100" | "colors.red.200" | "colors.red.300" | "colors.red.400" | "colors.red.500" | "colors.red.600" | "colors.red.700" | "colors.red.800" | "colors.red.900" | "colors.red.950" | "colors.neutral.50" | "colors.neutral.100" | "colors.neutral.200" | "colors.neutral.300" | "colors.neutral.400" | "colors.neutral.500" | "colors.neutral.600" | "colors.neutral.700" | "colors.neutral.800" | "colors.neutral.900" | "colors.neutral.950" | "colors.stone.50" | "colors.stone.100" | "colors.stone.200" | "colors.stone.300" | "colors.stone.400" | "colors.stone.500" | "colors.stone.600" | "colors.stone.700" | "colors.stone.800" | "colors.stone.900" | "colors.stone.950" | "colors.zinc.50" | "colors.zinc.100" | "colors.zinc.200" | "colors.zinc.300" | "colors.zinc.400" | "colors.zinc.500" | "colors.zinc.600" | "colors.zinc.700" | "colors.zinc.800" | "colors.zinc.900" | "colors.zinc.950" | "colors.gray.50" | "colors.gray.100" | "colors.gray.200" | "colors.gray.300" | "colors.gray.400" | "colors.gray.500" | "colors.gray.600" | "colors.gray.700" | "colors.gray.800" | "colors.gray.900" | "colors.gray.950" | "colors.slate.50" | "colors.slate.100" | "colors.slate.200" | "colors.slate.300" | "colors.slate.400" | "colors.slate.500" | "colors.slate.600" | "colors.slate.700" | "colors.slate.800" | "colors.slate.900" | "colors.slate.950" | "colors.hover.light.success" | "colors.hover.light.warning" | "colors.hover.light.error" | "colors.hover.light.active" | "colors.hover.light.gray" | "colors.hover.dark.success" | "colors.hover.dark.warning" | "colors.hover.dark.error" | "colors.hover.dark.active" | "colors.hover.dark.gray" | "colors.light.success" | "colors.light.warning" | "colors.light.error" | "colors.light.active" | "colors.light.gray" | "colors.dark.success" | "colors.dark.warning" | "colors.dark.error" | "colors.dark.active" | "colors.dark.gray" | "colors.text.normal" | "colors.text.label" | "colors.text.light" | "colors.text.success" | "colors.text.warning" | "colors.text.error" | "colors.text.active" | "colors.text.gray" | "colors.decoration.success" | "colors.decoration.warning" | "colors.decoration.error" | "colors.decoration.active" | "colors.decoration.gray" | "colors.grayscale.0" | "colors.grayscale.50" | "colors.grayscale.100" | "colors.grayscale.200" | "colors.grayscale.300" | "colors.grayscale.400" | "colors.grayscale.500" | "colors.grayscale.600" | "colors.grayscale.700" | "colors.grayscale.800" | "colors.grayscale.900" | "colors.grayscale.950" | "sizes.0" | "sizes.1" | "sizes.2" | "sizes.3" | "sizes.4" | "sizes.5" | "sizes.6" | "sizes.7" | "sizes.8" | "sizes.9" | "sizes.10" | "sizes.11" | "sizes.12" | "sizes.14" | "sizes.16" | "sizes.20" | "sizes.24" | "sizes.28" | "sizes.32" | "sizes.36" | "sizes.40" | "sizes.44" | "sizes.48" | "sizes.52" | "sizes.56" | "sizes.60" | "sizes.64" | "sizes.72" | "sizes.80" | "sizes.96" | "sizes.0.5" | "sizes.1.5" | "sizes.2.5" | "sizes.3.5" | "sizes.xs" | "sizes.sm" | "sizes.md" | "sizes.lg" | "sizes.xl" | "sizes.2xl" | "sizes.3xl" | "sizes.4xl" | "sizes.5xl" | "sizes.6xl" | "sizes.7xl" | "sizes.8xl" | "sizes.prose" | "sizes.full" | "sizes.min" | "sizes.max" | "sizes.fit" | "sizes.basic.almost-full" | "sizes.card.xs" | "sizes.card.sm" | "sizes.responsive.card.xs" | "sizes.responsive.card.sm" | "sizes.circle" | "sizes.container.smaller.xxxs" | "sizes.container.smaller.xxs" | "sizes.container.smaller.xs" | "sizes.container.smaller.sm" | "sizes.container.bigger.xs" | "sizes.container.xxs" | "sizes.container.xs" | "sizes.container.sm" | "sizes.container.md" | "sizes.container.lg" | "sizes.container.xl" | "sizes.container.xxl" | "sizes.container.content-xl" | "sizes.container.content-2xl" | "sizes.container.grid.base-size" | "sizes.container.grid.label-height" | "sizes.container.grid.grid-gap" | "sizes.container.side-bar.collapsed" | "sizes.container.side-bar.expanded" | "sizes.table.cell.min-width" | "sizes.table.instances.name-cell" | "sizes.table.instances.name" | "sizes.table.instances.cell" | "sizes.sourcecode.width" | "sizes.slider.label" | "sizes.skeleton.height" | "sizes.skeleton.width" | "sizes.skeleton.button.width" | "sizes.skeleton.button.height" | "sizes.skeleton.input.width" | "sizes.skeleton.input.height" | "sizes.skeleton.textarea.width" | "sizes.skeleton.textarea.height" | "sizes.skeleton.avatar.width" | "sizes.skeleton.avatar.height" | "sizes.skeleton.grid.width.xs" | "sizes.skeleton.grid.width.sm" | "sizes.skeleton.grid.width.md" | "sizes.skeleton.grid.width.lg" | "sizes.skeleton.grid.width.xl" | "sizes.skeleton.grid.height.xs" | "sizes.skeleton.grid.height.sm" | "sizes.skeleton.grid.height.md" | "sizes.skeleton.grid.height.lg" | "sizes.skeleton.grid.height.xl" | "sizes.skeleton.table.height.sm" | "sizes.skeleton.table.height.md" | "sizes.skeleton.table.height.lg" | "sizes.skeleton.table.height.xl" | "sizes.icon.xxs" | "sizes.icon.xs" | "sizes.icon.sm" | "sizes.icon.md" | "sizes.icon.lg" | "sizes.icon.xl" | "sizes.icon.xxl" | "sizes.icon.smaller.xs" | "sizes.custom.handle.dot" | "sizes.breakpoint-2lg" | "sizes.breakpoint-sm" | "sizes.breakpoint-md" | "sizes.breakpoint-lg" | "sizes.breakpoint-xl" | "sizes.breakpoint-2xl" | "breakpoints.2lg" | "breakpoints.sm" | "breakpoints.md" | "breakpoints.lg" | "breakpoints.xl" | "breakpoints.2xl" | "sizes.icon.primary" | "colors.background" | "colors.foreground" | "colors.muted" | "colors.muted.foreground" | "colors.card" | "colors.card.foreground" | "colors.popover" | "colors.popover.foreground" | "colors.border" | "colors.input" | "colors.primary" | "colors.primary.foreground" | "colors.secondary" | "colors.secondary.foreground" | "colors.accent" | "colors.accent.foreground" | "colors.destructive" | "colors.destructive.foreground" | "colors.ring" | "borders.base" | "borders.input" | "borders.primary" | "borders.destructive" | "animations.accordion-down" | "animations.accordion-up" | "spacing.-1" | "spacing.-2" | "spacing.-3" | "spacing.-4" | "spacing.-5" | "spacing.-6" | "spacing.-7" | "spacing.-8" | "spacing.-9" | "spacing.-10" | "spacing.-11" | "spacing.-12" | "spacing.-14" | "spacing.-16" | "spacing.-20" | "spacing.-24" | "spacing.-28" | "spacing.-32" | "spacing.-36" | "spacing.-40" | "spacing.-44" | "spacing.-48" | "spacing.-52" | "spacing.-56" | "spacing.-60" | "spacing.-64" | "spacing.-72" | "spacing.-80" | "spacing.-96" | "spacing.-0.5" | "spacing.-1.5" | "spacing.-2.5" | "spacing.-3.5" | "spacing.-separator" | "spacing.smaller.-xs" | "spacing.smaller.-sm" | "spacing.smaller.-md" | "spacing.-xxs" | "spacing.-xs" | "spacing.-sm" | "spacing.-3xs" | "spacing.-md" | "spacing.-lg" | "colors.colorPalette.50" | "colors.colorPalette.100" | "colors.colorPalette.200" | "colors.colorPalette.300" | "colors.colorPalette.400" | "colors.colorPalette.500" | "colors.colorPalette.600" | "colors.colorPalette.700" | "colors.colorPalette.800" | "colors.colorPalette.900" | "colors.colorPalette.950" | "colors.colorPalette.light.success" | "colors.colorPalette.success" | "colors.colorPalette.light.warning" | "colors.colorPalette.warning" | "colors.colorPalette.light.error" | "colors.colorPalette.error" | "colors.colorPalette.light.active" | "colors.colorPalette.active" | "colors.colorPalette.light.gray" | "colors.colorPalette.gray" | "colors.colorPalette.dark.success" | "colors.colorPalette.dark.warning" | "colors.colorPalette.dark.error" | "colors.colorPalette.dark.active" | "colors.colorPalette.dark.gray" | "colors.colorPalette.normal" | "colors.colorPalette.label" | "colors.colorPalette.light" | "colors.colorPalette.0" | "colors.colorPalette.foreground"
3
+
4
+ export type ColorPalette = "rose" | "pink" | "fuchsia" | "purple" | "violet" | "indigo" | "blue" | "sky" | "cyan" | "teal" | "emerald" | "green" | "lime" | "yellow" | "amber" | "orange" | "red" | "neutral" | "stone" | "zinc" | "gray" | "slate" | "hover" | "hover.light" | "hover.dark" | "light" | "dark" | "text" | "decoration" | "grayscale" | "muted" | "card" | "popover" | "primary" | "secondary" | "accent" | "destructive"
5
+
6
+ export type LetterSpacingToken = "tighter" | "tight" | "normal" | "wide" | "wider" | "widest"
7
+
8
+ export type BlurToken = "sm" | "base" | "md" | "lg" | "xl" | "2xl" | "3xl"
9
+
10
+ export type AnimationToken = "spin" | "ping" | "pulse" | "bounce" | "accordion-down" | "accordion-up"
11
+
12
+ export type FontWeightToken = "thin" | "extralight" | "light" | "normal" | "medium" | "semibold" | "bold" | "extrabold" | "black" | "primary" | "md" | "lg" | "xl"
13
+
14
+ export type SpacingToken = "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "14" | "16" | "20" | "24" | "28" | "32" | "36" | "40" | "44" | "48" | "52" | "56" | "60" | "64" | "72" | "80" | "96" | "0.5" | "1.5" | "2.5" | "3.5" | "separator" | "smaller.xs" | "smaller.sm" | "smaller.md" | "xxs" | "xs" | "sm" | "3xs" | "md" | "lg" | "-1" | "-2" | "-3" | "-4" | "-5" | "-6" | "-7" | "-8" | "-9" | "-10" | "-11" | "-12" | "-14" | "-16" | "-20" | "-24" | "-28" | "-32" | "-36" | "-40" | "-44" | "-48" | "-52" | "-56" | "-60" | "-64" | "-72" | "-80" | "-96" | "-0.5" | "-1.5" | "-2.5" | "-3.5" | "-separator" | "-smaller.xs" | "-smaller.sm" | "-smaller.md" | "-xxs" | "-xs" | "-sm" | "-3xs" | "-md" | "-lg"
15
+
16
+ export type ShadowToken = "xl" | "2xl" | "inner" | "xs" | "sm" | "md" | "lg"
17
+
18
+ export type BorderToken = "none" | "outline.base" | "border.base" | "border.error" | "border.success" | "border.active" | "base" | "input" | "primary" | "destructive"
19
+
20
+ export type OpacityToken = "90"
21
+
22
+ export type EasingToken = "default" | "linear" | "in" | "out" | "in-out" | "easeInOut"
23
+
24
+ export type DurationToken = "fastest" | "faster" | "normal" | "slow" | "slower" | "slowest" | "fast"
25
+
26
+ export type FontToken = "serif" | "body" | "mono" | "sans"
27
+
28
+ export type LineHeightToken = "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "sm" | "primary" | "md" | "lg" | "none" | "tight" | "snug" | "normal" | "relaxed" | "loose"
29
+
30
+ export type RadiusToken = "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "common" | "radius"
31
+
32
+ export type FontSizeToken = "2xs" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | "9xl" | "xxs" | "xs" | "sm" | "primary" | "md" | "lg" | "xl"
33
+
34
+ export type ColorToken = "current" | "black" | "white" | "transparent" | "rose.50" | "rose.100" | "rose.200" | "rose.300" | "rose.400" | "rose.500" | "rose.600" | "rose.700" | "rose.800" | "rose.900" | "rose.950" | "pink.50" | "pink.100" | "pink.200" | "pink.300" | "pink.400" | "pink.500" | "pink.600" | "pink.700" | "pink.800" | "pink.900" | "pink.950" | "fuchsia.50" | "fuchsia.100" | "fuchsia.200" | "fuchsia.300" | "fuchsia.400" | "fuchsia.500" | "fuchsia.600" | "fuchsia.700" | "fuchsia.800" | "fuchsia.900" | "fuchsia.950" | "purple.50" | "purple.100" | "purple.200" | "purple.300" | "purple.400" | "purple.500" | "purple.600" | "purple.700" | "purple.800" | "purple.900" | "purple.950" | "violet.50" | "violet.100" | "violet.200" | "violet.300" | "violet.400" | "violet.500" | "violet.600" | "violet.700" | "violet.800" | "violet.900" | "violet.950" | "indigo.50" | "indigo.100" | "indigo.200" | "indigo.300" | "indigo.400" | "indigo.500" | "indigo.600" | "indigo.700" | "indigo.800" | "indigo.900" | "indigo.950" | "blue.50" | "blue.100" | "blue.200" | "blue.300" | "blue.400" | "blue.500" | "blue.600" | "blue.700" | "blue.800" | "blue.900" | "blue.950" | "sky.50" | "sky.100" | "sky.200" | "sky.300" | "sky.400" | "sky.500" | "sky.600" | "sky.700" | "sky.800" | "sky.900" | "sky.950" | "cyan.50" | "cyan.100" | "cyan.200" | "cyan.300" | "cyan.400" | "cyan.500" | "cyan.600" | "cyan.700" | "cyan.800" | "cyan.900" | "cyan.950" | "teal.50" | "teal.100" | "teal.200" | "teal.300" | "teal.400" | "teal.500" | "teal.600" | "teal.700" | "teal.800" | "teal.900" | "teal.950" | "emerald.50" | "emerald.100" | "emerald.200" | "emerald.300" | "emerald.400" | "emerald.500" | "emerald.600" | "emerald.700" | "emerald.800" | "emerald.900" | "emerald.950" | "green.50" | "green.100" | "green.200" | "green.300" | "green.400" | "green.500" | "green.600" | "green.700" | "green.800" | "green.900" | "green.950" | "lime.50" | "lime.100" | "lime.200" | "lime.300" | "lime.400" | "lime.500" | "lime.600" | "lime.700" | "lime.800" | "lime.900" | "lime.950" | "yellow.50" | "yellow.100" | "yellow.200" | "yellow.300" | "yellow.400" | "yellow.500" | "yellow.600" | "yellow.700" | "yellow.800" | "yellow.900" | "yellow.950" | "amber.50" | "amber.100" | "amber.200" | "amber.300" | "amber.400" | "amber.500" | "amber.600" | "amber.700" | "amber.800" | "amber.900" | "amber.950" | "orange.50" | "orange.100" | "orange.200" | "orange.300" | "orange.400" | "orange.500" | "orange.600" | "orange.700" | "orange.800" | "orange.900" | "orange.950" | "red.50" | "red.100" | "red.200" | "red.300" | "red.400" | "red.500" | "red.600" | "red.700" | "red.800" | "red.900" | "red.950" | "neutral.50" | "neutral.100" | "neutral.200" | "neutral.300" | "neutral.400" | "neutral.500" | "neutral.600" | "neutral.700" | "neutral.800" | "neutral.900" | "neutral.950" | "stone.50" | "stone.100" | "stone.200" | "stone.300" | "stone.400" | "stone.500" | "stone.600" | "stone.700" | "stone.800" | "stone.900" | "stone.950" | "zinc.50" | "zinc.100" | "zinc.200" | "zinc.300" | "zinc.400" | "zinc.500" | "zinc.600" | "zinc.700" | "zinc.800" | "zinc.900" | "zinc.950" | "gray.50" | "gray.100" | "gray.200" | "gray.300" | "gray.400" | "gray.500" | "gray.600" | "gray.700" | "gray.800" | "gray.900" | "gray.950" | "slate.50" | "slate.100" | "slate.200" | "slate.300" | "slate.400" | "slate.500" | "slate.600" | "slate.700" | "slate.800" | "slate.900" | "slate.950" | "hover.light.success" | "hover.light.warning" | "hover.light.error" | "hover.light.active" | "hover.light.gray" | "hover.dark.success" | "hover.dark.warning" | "hover.dark.error" | "hover.dark.active" | "hover.dark.gray" | "light.success" | "light.warning" | "light.error" | "light.active" | "light.gray" | "dark.success" | "dark.warning" | "dark.error" | "dark.active" | "dark.gray" | "text.normal" | "text.label" | "text.light" | "text.success" | "text.warning" | "text.error" | "text.active" | "text.gray" | "decoration.success" | "decoration.warning" | "decoration.error" | "decoration.active" | "decoration.gray" | "grayscale.0" | "grayscale.50" | "grayscale.100" | "grayscale.200" | "grayscale.300" | "grayscale.400" | "grayscale.500" | "grayscale.600" | "grayscale.700" | "grayscale.800" | "grayscale.900" | "grayscale.950" | "background" | "foreground" | "muted" | "muted.foreground" | "card" | "card.foreground" | "popover" | "popover.foreground" | "border" | "input" | "primary" | "primary.foreground" | "secondary" | "secondary.foreground" | "accent" | "accent.foreground" | "destructive" | "destructive.foreground" | "ring" | "colorPalette.50" | "colorPalette.100" | "colorPalette.200" | "colorPalette.300" | "colorPalette.400" | "colorPalette.500" | "colorPalette.600" | "colorPalette.700" | "colorPalette.800" | "colorPalette.900" | "colorPalette.950" | "colorPalette.light.success" | "colorPalette.success" | "colorPalette.light.warning" | "colorPalette.warning" | "colorPalette.light.error" | "colorPalette.error" | "colorPalette.light.active" | "colorPalette.active" | "colorPalette.light.gray" | "colorPalette.gray" | "colorPalette.dark.success" | "colorPalette.dark.warning" | "colorPalette.dark.error" | "colorPalette.dark.active" | "colorPalette.dark.gray" | "colorPalette.normal" | "colorPalette.label" | "colorPalette.light" | "colorPalette.0" | "colorPalette.foreground"
35
+
36
+ export type SizeToken = "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "14" | "16" | "20" | "24" | "28" | "32" | "36" | "40" | "44" | "48" | "52" | "56" | "60" | "64" | "72" | "80" | "96" | "0.5" | "1.5" | "2.5" | "3.5" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | "prose" | "full" | "min" | "max" | "fit" | "basic.almost-full" | "card.xs" | "card.sm" | "responsive.card.xs" | "responsive.card.sm" | "circle" | "container.smaller.xxxs" | "container.smaller.xxs" | "container.smaller.xs" | "container.smaller.sm" | "container.bigger.xs" | "container.xxs" | "container.xs" | "container.sm" | "container.md" | "container.lg" | "container.xl" | "container.xxl" | "container.content-xl" | "container.content-2xl" | "container.grid.base-size" | "container.grid.label-height" | "container.grid.grid-gap" | "container.side-bar.collapsed" | "container.side-bar.expanded" | "table.cell.min-width" | "table.instances.name-cell" | "table.instances.name" | "table.instances.cell" | "sourcecode.width" | "slider.label" | "skeleton.height" | "skeleton.width" | "skeleton.button.width" | "skeleton.button.height" | "skeleton.input.width" | "skeleton.input.height" | "skeleton.textarea.width" | "skeleton.textarea.height" | "skeleton.avatar.width" | "skeleton.avatar.height" | "skeleton.grid.width.xs" | "skeleton.grid.width.sm" | "skeleton.grid.width.md" | "skeleton.grid.width.lg" | "skeleton.grid.width.xl" | "skeleton.grid.height.xs" | "skeleton.grid.height.sm" | "skeleton.grid.height.md" | "skeleton.grid.height.lg" | "skeleton.grid.height.xl" | "skeleton.table.height.sm" | "skeleton.table.height.md" | "skeleton.table.height.lg" | "skeleton.table.height.xl" | "icon.xxs" | "icon.xs" | "icon.sm" | "icon.md" | "icon.lg" | "icon.xl" | "icon.xxl" | "icon.smaller.xs" | "custom.handle.dot" | "breakpoint-2lg" | "breakpoint-sm" | "breakpoint-md" | "breakpoint-lg" | "breakpoint-xl" | "breakpoint-2xl" | "icon.primary"
37
+
38
+ export type BreakpointToken = "2lg" | "sm" | "md" | "lg" | "xl" | "2xl"
39
+
40
+ export type AnimationName = "spin" | "ping" | "pulse" | "bounce" | "enter" | "exit" | "accordion-down" | "accordion-up"
41
+
42
+ export type Tokens = {
43
+ letterSpacings: LetterSpacingToken
44
+ blurs: BlurToken
45
+ animations: AnimationToken
46
+ fontWeights: FontWeightToken
47
+ spacing: SpacingToken
48
+ shadows: ShadowToken
49
+ borders: BorderToken
50
+ opacity: OpacityToken
51
+ easings: EasingToken
52
+ durations: DurationToken
53
+ fonts: FontToken
54
+ lineHeights: LineHeightToken
55
+ radii: RadiusToken
56
+ fontSizes: FontSizeToken
57
+ colors: ColorToken
58
+ sizes: SizeToken
59
+ breakpoints: BreakpointToken
60
+ animationName: AnimationName
61
+ } & { [token: string]: never }
62
+
63
+ export type TokenCategory = "zIndex" | "opacity" | "colors" | "fonts" | "fontSizes" | "fontWeights" | "lineHeights" | "letterSpacings" | "sizes" | "shadows" | "spacing" | "radii" | "borders" | "durations" | "easings" | "animations" | "blurs" | "gradients" | "breakpoints" | "assets"
@@ -0,0 +1,111 @@
1
+ /* eslint-disable */
2
+ import type { CompositionStyleObject } from './system-types.d.mts';
3
+
4
+ interface Recursive<T> {
5
+ [key: string]: Recursive<T> | T
6
+ }
7
+
8
+ export interface Token<Value = any> {
9
+ value: Value
10
+ description?: string
11
+ }
12
+
13
+ /* -----------------------------------------------------------------------------
14
+ * Text styles
15
+ * -----------------------------------------------------------------------------*/
16
+
17
+ type TextStyleProperty =
18
+ | 'fontSize'
19
+ | 'fontSizeAdjust'
20
+ | 'fontVariationSettings'
21
+ | 'fontVariantPosition'
22
+ | 'fontVariantCaps'
23
+ | 'fontVariantNumeric'
24
+ | 'fontVariantAlternates'
25
+ | 'fontVariantLigatures'
26
+ | 'fontFamily'
27
+ | 'fontWeight'
28
+ | 'fontSynthesis'
29
+ | 'fontStyle'
30
+ | 'fontVariant'
31
+ | 'lineHeight'
32
+ | 'letterSpacing'
33
+ | 'textDecoration'
34
+ | 'textTransform'
35
+ | 'textIndent'
36
+ | 'textDecorationColor'
37
+ | 'textDecorationLine'
38
+ | 'textDecorationStyle'
39
+ | 'textEmphasisColor'
40
+ | 'textEmphasisPosition'
41
+ | 'textEmphasisStyle'
42
+ | 'hyphenateCharacter'
43
+ | 'textOrientation'
44
+ | 'textOverflow'
45
+ | 'textRendering'
46
+
47
+ export type TextStyle = CompositionStyleObject<TextStyleProperty>
48
+
49
+ export type TextStyles = Recursive<Token<TextStyle>>
50
+
51
+ /* -----------------------------------------------------------------------------
52
+ * Layer styles
53
+ * -----------------------------------------------------------------------------*/
54
+
55
+ type Placement =
56
+ | 'Top'
57
+ | 'Right'
58
+ | 'Bottom'
59
+ | 'Left'
60
+ | 'Inline'
61
+ | 'Block'
62
+ | 'InlineStart'
63
+ | 'InlineEnd'
64
+ | 'BlockStart'
65
+ | 'BlockEnd'
66
+
67
+ type Radius =
68
+ | `Top${'Right' | 'Left'}`
69
+ | `Bottom${'Right' | 'Left'}`
70
+ | `Start${'Start' | 'End'}`
71
+ | `End${'Start' | 'End'}`
72
+
73
+ type LayerStyleProperty =
74
+ | 'background'
75
+ | 'backgroundColor'
76
+ | 'backgroundImage'
77
+ | 'borderRadius'
78
+ | 'border'
79
+ | 'borderWidth'
80
+ | 'borderColor'
81
+ | 'borderStyle'
82
+ | 'boxShadow'
83
+ | 'filter'
84
+ | 'backdropFilter'
85
+ | 'transform'
86
+ | 'color'
87
+ | 'opacity'
88
+ | 'backgroundBlendMode'
89
+ | 'backgroundAttachment'
90
+ | 'backgroundClip'
91
+ | 'backgroundOrigin'
92
+ | 'backgroundPosition'
93
+ | 'backgroundRepeat'
94
+ | 'backgroundSize'
95
+ | `border${Placement}`
96
+ | `border${Placement}Width`
97
+ | 'borderRadius'
98
+ | `border${Radius}Radius`
99
+ | `border${Placement}Color`
100
+ | `border${Placement}Style`
101
+ | 'padding'
102
+ | `padding${Placement}`
103
+
104
+ export type LayerStyle = CompositionStyleObject<LayerStyleProperty>
105
+
106
+ export type LayerStyles = Recursive<Token<LayerStyle>>
107
+
108
+ export interface CompositionStyles {
109
+ textStyles: TextStyles
110
+ layerStyles: LayerStyles
111
+ }
@@ -0,0 +1,266 @@
1
+ /* eslint-disable */
2
+ import type { AnySelector, Selectors } from './selectors.d.mts';
3
+
4
+ export interface Conditions {
5
+ /** `&:is(:hover, [data-hover])` */
6
+ "_hover": string
7
+ /** `&:is(:focus, [data-focus])` */
8
+ "_focus": string
9
+ /** `&:focus-within` */
10
+ "_focusWithin": string
11
+ /** `&:is(:focus-visible, [data-focus-visible])` */
12
+ "_focusVisible": string
13
+ /** `&:is(:disabled, [disabled], [data-disabled])` */
14
+ "_disabled": string
15
+ /** `&:is(:active, [data-active])` */
16
+ "_active": string
17
+ /** `&:visited` */
18
+ "_visited": string
19
+ /** `&:target` */
20
+ "_target": string
21
+ /** `&:is(:read-only, [data-read-only])` */
22
+ "_readOnly": string
23
+ /** `&:read-write` */
24
+ "_readWrite": string
25
+ /** `&:is(:empty, [data-empty])` */
26
+ "_empty": string
27
+ /** `&:is(:checked, [data-checked], [aria-checked=true], [data-state="checked"])` */
28
+ "_checked": string
29
+ /** `&:enabled` */
30
+ "_enabled": string
31
+ /** `&:is([aria-expanded=true], [data-expanded], [data-state="expanded"])` */
32
+ "_expanded": string
33
+ /** `&[data-highlighted]` */
34
+ "_highlighted": string
35
+ /** `&::before` */
36
+ "_before": string
37
+ /** `&::after` */
38
+ "_after": string
39
+ /** `&::first-letter` */
40
+ "_firstLetter": string
41
+ /** `&::first-line` */
42
+ "_firstLine": string
43
+ /** `&::marker` */
44
+ "_marker": string
45
+ /** `&::selection` */
46
+ "_selection": string
47
+ /** `&::file-selector-button` */
48
+ "_file": string
49
+ /** `&::backdrop` */
50
+ "_backdrop": string
51
+ /** `&:first-child` */
52
+ "_first": string
53
+ /** `&:last-child` */
54
+ "_last": string
55
+ /** `&:only-child` */
56
+ "_only": string
57
+ /** `&:nth-child(even)` */
58
+ "_even": string
59
+ /** `&:nth-child(odd)` */
60
+ "_odd": string
61
+ /** `&:first-of-type` */
62
+ "_firstOfType": string
63
+ /** `&:last-of-type` */
64
+ "_lastOfType": string
65
+ /** `&:only-of-type` */
66
+ "_onlyOfType": string
67
+ /** `.peer:is(:focus, [data-focus]) ~ &` */
68
+ "_peerFocus": string
69
+ /** `.peer:is(:hover, [data-hover]) ~ &` */
70
+ "_peerHover": string
71
+ /** `.peer:is(:active, [data-active]) ~ &` */
72
+ "_peerActive": string
73
+ /** `.peer:focus-within ~ &` */
74
+ "_peerFocusWithin": string
75
+ /** `.peer:is(:focus-visible, [data-focus-visible]) ~ &` */
76
+ "_peerFocusVisible": string
77
+ /** `.peer:is(:disabled, [disabled], [data-disabled]) ~ &` */
78
+ "_peerDisabled": string
79
+ /** `.peer:is(:checked, [data-checked], [aria-checked=true], [data-state="checked"]) ~ &` */
80
+ "_peerChecked": string
81
+ /** `.peer:is(:invalid, [data-invalid], [aria-invalid=true]) ~ &` */
82
+ "_peerInvalid": string
83
+ /** `.peer:is([aria-expanded=true], [data-expanded], [data-state="expanded"]) ~ &` */
84
+ "_peerExpanded": string
85
+ /** `.peer:placeholder-shown ~ &` */
86
+ "_peerPlaceholderShown": string
87
+ /** `.group:is(:focus, [data-focus]) &` */
88
+ "_groupFocus": string
89
+ /** `.group:is(:hover, [data-hover]) &` */
90
+ "_groupHover": string
91
+ /** `.group:is(:active, [data-active]) &` */
92
+ "_groupActive": string
93
+ /** `.group:focus-within &` */
94
+ "_groupFocusWithin": string
95
+ /** `.group:is(:focus-visible, [data-focus-visible]) &` */
96
+ "_groupFocusVisible": string
97
+ /** `.group:is(:disabled, [disabled], [data-disabled]) &` */
98
+ "_groupDisabled": string
99
+ /** `.group:is(:checked, [data-checked], [aria-checked=true], [data-state="checked"]) &` */
100
+ "_groupChecked": string
101
+ /** `.group:is([aria-expanded=true], [data-expanded], [data-state="expanded"]) &` */
102
+ "_groupExpanded": string
103
+ /** `.group:invalid &` */
104
+ "_groupInvalid": string
105
+ /** `&:is(:indeterminate, [data-indeterminate], [aria-checked=mixed], [data-state="indeterminate")` */
106
+ "_indeterminate": string
107
+ /** `&:required` */
108
+ "_required": string
109
+ /** `&:is(:valid, [data-valid])` */
110
+ "_valid": string
111
+ /** `&:is(:invalid, [data-invalid])` */
112
+ "_invalid": string
113
+ /** `&:autofill` */
114
+ "_autofill": string
115
+ /** `&:in-range` */
116
+ "_inRange": string
117
+ /** `&:out-of-range` */
118
+ "_outOfRange": string
119
+ /** `&::placeholder` */
120
+ "_placeholder": string
121
+ /** `&:placeholder-shown` */
122
+ "_placeholderShown": string
123
+ /** `&:is([aria-pressed=true], [data-pressed])` */
124
+ "_pressed": string
125
+ /** `&:is([aria-selected=true], [data-selected])` */
126
+ "_selected": string
127
+ /** `&:default` */
128
+ "_default": string
129
+ /** `&:optional` */
130
+ "_optional": string
131
+ /** `&:is([open], [data-open], [data-state="open"])` */
132
+ "_open": string
133
+ /** `&:fullscreen` */
134
+ "_fullscreen": string
135
+ /** `&:is([data-loading], [aria-busy=true])` */
136
+ "_loading": string
137
+ /** `&[aria-current=page]` */
138
+ "_currentPage": string
139
+ /** `&[aria-current=step]` */
140
+ "_currentStep": string
141
+ /** `@media (prefers-reduced-motion: reduce)` */
142
+ "_motionReduce": string
143
+ /** `@media (prefers-reduced-motion: no-preference)` */
144
+ "_motionSafe": string
145
+ /** `@media print` */
146
+ "_print": string
147
+ /** `@media (orientation: landscape)` */
148
+ "_landscape": string
149
+ /** `@media (orientation: portrait)` */
150
+ "_portrait": string
151
+ /** ` &.dark, .dark &` */
152
+ "_dark": string
153
+ /** ` &.light, .light &` */
154
+ "_light": string
155
+ /** `@media (prefers-color-scheme: dark)` */
156
+ "_osDark": string
157
+ /** `@media (prefers-color-scheme: light)` */
158
+ "_osLight": string
159
+ /** `@media (forced-colors: active)` */
160
+ "_highContrast": string
161
+ /** `@media (prefers-contrast: less)` */
162
+ "_lessContrast": string
163
+ /** `@media (prefers-contrast: more)` */
164
+ "_moreContrast": string
165
+ /** `[dir=ltr] &` */
166
+ "_ltr": string
167
+ /** `[dir=rtl] &` */
168
+ "_rtl": string
169
+ /** `&::-webkit-scrollbar` */
170
+ "_scrollbar": string
171
+ /** `&::-webkit-scrollbar-thumb` */
172
+ "_scrollbarThumb": string
173
+ /** `&::-webkit-scrollbar-track` */
174
+ "_scrollbarTrack": string
175
+ /** `&[data-orientation=horizontal]` */
176
+ "_horizontal": string
177
+ /** `&[data-orientation=vertical]` */
178
+ "_vertical": string
179
+ /** `@media screen and (min-width: 40em)` */
180
+ "sm": string
181
+ /** `@media screen and (min-width: 40em) and (max-width: 47.996875em)` */
182
+ "smOnly": string
183
+ /** `@media screen and (max-width: 40em)` */
184
+ "smDown": string
185
+ /** `@media screen and (min-width: 48em)` */
186
+ "md": string
187
+ /** `@media screen and (min-width: 48em) and (max-width: 63.996875em)` */
188
+ "mdOnly": string
189
+ /** `@media screen and (max-width: 48em)` */
190
+ "mdDown": string
191
+ /** `@media screen and (min-width: 64em)` */
192
+ "lg": string
193
+ /** `@media screen and (min-width: 64em) and (max-width: 68.746875em)` */
194
+ "lgOnly": string
195
+ /** `@media screen and (max-width: 64em)` */
196
+ "lgDown": string
197
+ /** `@media screen and (min-width: 68.75em)` */
198
+ "2lg": string
199
+ /** `@media screen and (min-width: 68.75em) and (max-width: 79.996875em)` */
200
+ "2lgOnly": string
201
+ /** `@media screen and (max-width: 68.75em)` */
202
+ "2lgDown": string
203
+ /** `@media screen and (min-width: 80em)` */
204
+ "xl": string
205
+ /** `@media screen and (min-width: 80em) and (max-width: 95.996875em)` */
206
+ "xlOnly": string
207
+ /** `@media screen and (max-width: 80em)` */
208
+ "xlDown": string
209
+ /** `@media screen and (min-width: 96em)` */
210
+ "2xl": string
211
+ /** `@media screen and (min-width: 96em)` */
212
+ "2xlOnly": string
213
+ /** `@media screen and (max-width: 96em)` */
214
+ "2xlDown": string
215
+ /** `@media screen and (min-width: 40em) and (max-width: 47.996875em)` */
216
+ "smToMd": string
217
+ /** `@media screen and (min-width: 40em) and (max-width: 63.996875em)` */
218
+ "smToLg": string
219
+ /** `@media screen and (min-width: 40em) and (max-width: 68.746875em)` */
220
+ "smTo2lg": string
221
+ /** `@media screen and (min-width: 40em) and (max-width: 79.996875em)` */
222
+ "smToXl": string
223
+ /** `@media screen and (min-width: 40em) and (max-width: 95.996875em)` */
224
+ "smTo2xl": string
225
+ /** `@media screen and (min-width: 48em) and (max-width: 63.996875em)` */
226
+ "mdToLg": string
227
+ /** `@media screen and (min-width: 48em) and (max-width: 68.746875em)` */
228
+ "mdTo2lg": string
229
+ /** `@media screen and (min-width: 48em) and (max-width: 79.996875em)` */
230
+ "mdToXl": string
231
+ /** `@media screen and (min-width: 48em) and (max-width: 95.996875em)` */
232
+ "mdTo2xl": string
233
+ /** `@media screen and (min-width: 64em) and (max-width: 68.746875em)` */
234
+ "lgTo2lg": string
235
+ /** `@media screen and (min-width: 64em) and (max-width: 79.996875em)` */
236
+ "lgToXl": string
237
+ /** `@media screen and (min-width: 64em) and (max-width: 95.996875em)` */
238
+ "lgTo2xl": string
239
+ /** `@media screen and (min-width: 68.75em) and (max-width: 79.996875em)` */
240
+ "2lgToXl": string
241
+ /** `@media screen and (min-width: 68.75em) and (max-width: 95.996875em)` */
242
+ "2lgTo2xl": string
243
+ /** `@media screen and (min-width: 80em) and (max-width: 95.996875em)` */
244
+ "xlTo2xl": string
245
+ /** The base (=no conditions) styles to apply */
246
+ "base": string
247
+ }
248
+
249
+ export type Condition = keyof Conditions
250
+
251
+ export type Conditional<V> =
252
+ | V
253
+ | Array<V | null>
254
+ | {
255
+ [K in keyof Conditions]?: Conditional<V>
256
+ }
257
+
258
+ export type ConditionalValue<T> = Conditional<T>
259
+
260
+ export type Nested<P> = P & {
261
+ [K in Selectors]?: Nested<P>
262
+ } & {
263
+ [K in AnySelector]?: Nested<P>
264
+ } & {
265
+ [K in keyof Conditions]?: Nested<P>
266
+ }