@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,28 @@
1
+ /* eslint-disable */
2
+ import type { ConditionalValue } from '../types/index.d.mts';
3
+ import type { Pretty } from '../types/helpers.d.mts';
4
+ import type { DistributiveOmit } from '../types/system-types.d.mts';
5
+
6
+ interface LargeVariant {
7
+
8
+ }
9
+
10
+ type LargeVariantMap = {
11
+ [key in keyof LargeVariant]: Array<LargeVariant[key]>
12
+ }
13
+
14
+ export type LargeVariantProps = {
15
+ [key in keyof LargeVariant]?: ConditionalValue<LargeVariant[key]>
16
+ }
17
+
18
+ export interface LargeRecipe {
19
+ __type: LargeVariantProps
20
+ (props?: LargeVariantProps): string
21
+ raw: (props?: LargeVariantProps) => LargeVariantProps
22
+ variantMap: LargeVariantMap
23
+ variantKeys: Array<keyof LargeVariant>
24
+ splitVariantProps<Props extends LargeVariantProps>(props: Props): [LargeVariantProps, Pretty<DistributiveOmit<Props, keyof LargeVariantProps>>]
25
+ }
26
+
27
+ /** Typography - Large style */
28
+ export declare const large: LargeRecipe
@@ -0,0 +1,19 @@
1
+ import { splitProps } from '../helpers.mjs';
2
+ import { createRecipe } from './create-recipe.mjs';
3
+
4
+ const largeFn = /* @__PURE__ */ createRecipe('large', {}, [])
5
+
6
+ const largeVariantMap = {}
7
+
8
+ const largeVariantKeys = Object.keys(largeVariantMap)
9
+
10
+ export const large = /* @__PURE__ */ Object.assign(largeFn, {
11
+ __recipe__: true,
12
+ __name__: 'large',
13
+ raw: (props) => props,
14
+ variantKeys: largeVariantKeys,
15
+ variantMap: largeVariantMap,
16
+ splitVariantProps(props) {
17
+ return splitProps(props, largeVariantKeys)
18
+ },
19
+ })
@@ -0,0 +1,28 @@
1
+ /* eslint-disable */
2
+ import type { ConditionalValue } from '../types/index.d.mts';
3
+ import type { Pretty } from '../types/helpers.d.mts';
4
+ import type { DistributiveOmit } from '../types/system-types.d.mts';
5
+
6
+ interface LeadVariant {
7
+
8
+ }
9
+
10
+ type LeadVariantMap = {
11
+ [key in keyof LeadVariant]: Array<LeadVariant[key]>
12
+ }
13
+
14
+ export type LeadVariantProps = {
15
+ [key in keyof LeadVariant]?: ConditionalValue<LeadVariant[key]>
16
+ }
17
+
18
+ export interface LeadRecipe {
19
+ __type: LeadVariantProps
20
+ (props?: LeadVariantProps): string
21
+ raw: (props?: LeadVariantProps) => LeadVariantProps
22
+ variantMap: LeadVariantMap
23
+ variantKeys: Array<keyof LeadVariant>
24
+ splitVariantProps<Props extends LeadVariantProps>(props: Props): [LeadVariantProps, Pretty<DistributiveOmit<Props, keyof LeadVariantProps>>]
25
+ }
26
+
27
+ /** Typography - Lead style */
28
+ export declare const lead: LeadRecipe
@@ -0,0 +1,19 @@
1
+ import { splitProps } from '../helpers.mjs';
2
+ import { createRecipe } from './create-recipe.mjs';
3
+
4
+ const leadFn = /* @__PURE__ */ createRecipe('lead', {}, [])
5
+
6
+ const leadVariantMap = {}
7
+
8
+ const leadVariantKeys = Object.keys(leadVariantMap)
9
+
10
+ export const lead = /* @__PURE__ */ Object.assign(leadFn, {
11
+ __recipe__: true,
12
+ __name__: 'lead',
13
+ raw: (props) => props,
14
+ variantKeys: leadVariantKeys,
15
+ variantMap: leadVariantMap,
16
+ splitVariantProps(props) {
17
+ return splitProps(props, leadVariantKeys)
18
+ },
19
+ })
@@ -0,0 +1,28 @@
1
+ /* eslint-disable */
2
+ import type { ConditionalValue } from '../types/index.d.mts';
3
+ import type { Pretty } from '../types/helpers.d.mts';
4
+ import type { DistributiveOmit } from '../types/system-types.d.mts';
5
+
6
+ interface LinkVariant {
7
+
8
+ }
9
+
10
+ type LinkVariantMap = {
11
+ [key in keyof LinkVariant]: Array<LinkVariant[key]>
12
+ }
13
+
14
+ export type LinkVariantProps = {
15
+ [key in keyof LinkVariant]?: ConditionalValue<LinkVariant[key]>
16
+ }
17
+
18
+ export interface LinkRecipe {
19
+ __type: LinkVariantProps
20
+ (props?: LinkVariantProps): string
21
+ raw: (props?: LinkVariantProps) => LinkVariantProps
22
+ variantMap: LinkVariantMap
23
+ variantKeys: Array<keyof LinkVariant>
24
+ splitVariantProps<Props extends LinkVariantProps>(props: Props): [LinkVariantProps, Pretty<DistributiveOmit<Props, keyof LinkVariantProps>>]
25
+ }
26
+
27
+ /** Typography - Link style */
28
+ export declare const link: LinkRecipe
@@ -0,0 +1,19 @@
1
+ import { splitProps } from '../helpers.mjs';
2
+ import { createRecipe } from './create-recipe.mjs';
3
+
4
+ const linkFn = /* @__PURE__ */ createRecipe('link', {}, [])
5
+
6
+ const linkVariantMap = {}
7
+
8
+ const linkVariantKeys = Object.keys(linkVariantMap)
9
+
10
+ export const link = /* @__PURE__ */ Object.assign(linkFn, {
11
+ __recipe__: true,
12
+ __name__: 'link',
13
+ raw: (props) => props,
14
+ variantKeys: linkVariantKeys,
15
+ variantMap: linkVariantMap,
16
+ splitVariantProps(props) {
17
+ return splitProps(props, linkVariantKeys)
18
+ },
19
+ })
@@ -0,0 +1,28 @@
1
+ /* eslint-disable */
2
+ import type { ConditionalValue } from '../types/index.d.mts';
3
+ import type { Pretty } from '../types/helpers.d.mts';
4
+ import type { DistributiveOmit } from '../types/system-types.d.mts';
5
+
6
+ interface ListVariant {
7
+
8
+ }
9
+
10
+ type ListVariantMap = {
11
+ [key in keyof ListVariant]: Array<ListVariant[key]>
12
+ }
13
+
14
+ export type ListVariantProps = {
15
+ [key in keyof ListVariant]?: ConditionalValue<ListVariant[key]>
16
+ }
17
+
18
+ export interface ListRecipe {
19
+ __type: ListVariantProps
20
+ (props?: ListVariantProps): string
21
+ raw: (props?: ListVariantProps) => ListVariantProps
22
+ variantMap: ListVariantMap
23
+ variantKeys: Array<keyof ListVariant>
24
+ splitVariantProps<Props extends ListVariantProps>(props: Props): [ListVariantProps, Pretty<DistributiveOmit<Props, keyof ListVariantProps>>]
25
+ }
26
+
27
+ /** Typography - list style */
28
+ export declare const list: ListRecipe
@@ -0,0 +1,19 @@
1
+ import { splitProps } from '../helpers.mjs';
2
+ import { createRecipe } from './create-recipe.mjs';
3
+
4
+ const listFn = /* @__PURE__ */ createRecipe('list', {}, [])
5
+
6
+ const listVariantMap = {}
7
+
8
+ const listVariantKeys = Object.keys(listVariantMap)
9
+
10
+ export const list = /* @__PURE__ */ Object.assign(listFn, {
11
+ __recipe__: true,
12
+ __name__: 'list',
13
+ raw: (props) => props,
14
+ variantKeys: listVariantKeys,
15
+ variantMap: listVariantMap,
16
+ splitVariantProps(props) {
17
+ return splitProps(props, listVariantKeys)
18
+ },
19
+ })
@@ -0,0 +1,28 @@
1
+ /* eslint-disable */
2
+ import type { ConditionalValue } from '../types/index.d.mts';
3
+ import type { Pretty } from '../types/helpers.d.mts';
4
+ import type { DistributiveOmit } from '../types/system-types.d.mts';
5
+
6
+ interface MenubarVariant {
7
+
8
+ }
9
+
10
+ type MenubarVariantMap = {
11
+ [key in keyof MenubarVariant]: Array<MenubarVariant[key]>
12
+ }
13
+
14
+ export type MenubarVariantProps = {
15
+ [key in keyof MenubarVariant]?: ConditionalValue<MenubarVariant[key]>
16
+ }
17
+
18
+ export interface MenubarRecipe {
19
+ __type: MenubarVariantProps
20
+ (props?: MenubarVariantProps): Pretty<Record<"root" | "menu" | "group" | "portal" | "sub" | "radioGroup" | "trigger" | "subTrigger" | "subContent" | "content" | "item" | "checkboxItem" | "radioItem" | "itemIndicator" | "label" | "separator" | "shortcut", string>>
21
+ raw: (props?: MenubarVariantProps) => MenubarVariantProps
22
+ variantMap: MenubarVariantMap
23
+ variantKeys: Array<keyof MenubarVariant>
24
+ splitVariantProps<Props extends MenubarVariantProps>(props: Props): [MenubarVariantProps, Pretty<DistributiveOmit<Props, keyof MenubarVariantProps>>]
25
+ }
26
+
27
+ /** Styles for the Menubar component */
28
+ export declare const menubar: MenubarRecipe
@@ -0,0 +1,94 @@
1
+ import { splitProps, getSlotCompoundVariant } from '../helpers.mjs';
2
+ import { createRecipe } from './create-recipe.mjs';
3
+
4
+ const menubarDefaultVariants = {}
5
+ const menubarCompoundVariants = []
6
+
7
+ const menubarSlotNames = [
8
+ [
9
+ "root",
10
+ "menubar__root"
11
+ ],
12
+ [
13
+ "menu",
14
+ "menubar__menu"
15
+ ],
16
+ [
17
+ "group",
18
+ "menubar__group"
19
+ ],
20
+ [
21
+ "portal",
22
+ "menubar__portal"
23
+ ],
24
+ [
25
+ "sub",
26
+ "menubar__sub"
27
+ ],
28
+ [
29
+ "radioGroup",
30
+ "menubar__radioGroup"
31
+ ],
32
+ [
33
+ "trigger",
34
+ "menubar__trigger"
35
+ ],
36
+ [
37
+ "subTrigger",
38
+ "menubar__subTrigger"
39
+ ],
40
+ [
41
+ "subContent",
42
+ "menubar__subContent"
43
+ ],
44
+ [
45
+ "content",
46
+ "menubar__content"
47
+ ],
48
+ [
49
+ "item",
50
+ "menubar__item"
51
+ ],
52
+ [
53
+ "checkboxItem",
54
+ "menubar__checkboxItem"
55
+ ],
56
+ [
57
+ "radioItem",
58
+ "menubar__radioItem"
59
+ ],
60
+ [
61
+ "itemIndicator",
62
+ "menubar__itemIndicator"
63
+ ],
64
+ [
65
+ "label",
66
+ "menubar__label"
67
+ ],
68
+ [
69
+ "separator",
70
+ "menubar__separator"
71
+ ],
72
+ [
73
+ "shortcut",
74
+ "menubar__shortcut"
75
+ ]
76
+ ]
77
+ const menubarSlotFns = /* @__PURE__ */ menubarSlotNames.map(([slotName, slotKey]) => [slotName, createRecipe(slotKey, menubarDefaultVariants, getSlotCompoundVariant(menubarCompoundVariants, slotName))])
78
+
79
+ const menubarFn = (props = {}) => {
80
+ return Object.fromEntries(menubarSlotFns.map(([slotName, slotFn]) => [slotName, slotFn(props)]))
81
+ }
82
+
83
+ const menubarVariantKeys = []
84
+
85
+ export const menubar = /* @__PURE__ */ Object.assign(menubarFn, {
86
+ __recipe__: false,
87
+ __name__: 'menubar',
88
+ raw: (props) => props,
89
+ variantKeys: menubarVariantKeys,
90
+ variantMap: {},
91
+ splitVariantProps(props) {
92
+ return splitProps(props, menubarVariantKeys)
93
+ },
94
+ })
@@ -0,0 +1,28 @@
1
+ /* eslint-disable */
2
+ import type { ConditionalValue } from '../types/index.d.mts';
3
+ import type { Pretty } from '../types/helpers.d.mts';
4
+ import type { DistributiveOmit } from '../types/system-types.d.mts';
5
+
6
+ interface MutedVariant {
7
+
8
+ }
9
+
10
+ type MutedVariantMap = {
11
+ [key in keyof MutedVariant]: Array<MutedVariant[key]>
12
+ }
13
+
14
+ export type MutedVariantProps = {
15
+ [key in keyof MutedVariant]?: ConditionalValue<MutedVariant[key]>
16
+ }
17
+
18
+ export interface MutedRecipe {
19
+ __type: MutedVariantProps
20
+ (props?: MutedVariantProps): string
21
+ raw: (props?: MutedVariantProps) => MutedVariantProps
22
+ variantMap: MutedVariantMap
23
+ variantKeys: Array<keyof MutedVariant>
24
+ splitVariantProps<Props extends MutedVariantProps>(props: Props): [MutedVariantProps, Pretty<DistributiveOmit<Props, keyof MutedVariantProps>>]
25
+ }
26
+
27
+ /** Typography - Muted style */
28
+ export declare const muted: MutedRecipe
@@ -0,0 +1,19 @@
1
+ import { splitProps } from '../helpers.mjs';
2
+ import { createRecipe } from './create-recipe.mjs';
3
+
4
+ const mutedFn = /* @__PURE__ */ createRecipe('muted', {}, [])
5
+
6
+ const mutedVariantMap = {}
7
+
8
+ const mutedVariantKeys = Object.keys(mutedVariantMap)
9
+
10
+ export const muted = /* @__PURE__ */ Object.assign(mutedFn, {
11
+ __recipe__: true,
12
+ __name__: 'muted',
13
+ raw: (props) => props,
14
+ variantKeys: mutedVariantKeys,
15
+ variantMap: mutedVariantMap,
16
+ splitVariantProps(props) {
17
+ return splitProps(props, mutedVariantKeys)
18
+ },
19
+ })
@@ -0,0 +1,28 @@
1
+ /* eslint-disable */
2
+ import type { ConditionalValue } from '../types/index.d.mts';
3
+ import type { Pretty } from '../types/helpers.d.mts';
4
+ import type { DistributiveOmit } from '../types/system-types.d.mts';
5
+
6
+ interface NavigationMenuVariant {
7
+
8
+ }
9
+
10
+ type NavigationMenuVariantMap = {
11
+ [key in keyof NavigationMenuVariant]: Array<NavigationMenuVariant[key]>
12
+ }
13
+
14
+ export type NavigationMenuVariantProps = {
15
+ [key in keyof NavigationMenuVariant]?: ConditionalValue<NavigationMenuVariant[key]>
16
+ }
17
+
18
+ export interface NavigationMenuRecipe {
19
+ __type: NavigationMenuVariantProps
20
+ (props?: NavigationMenuVariantProps): Pretty<Record<"root" | "list" | "item" | "trigger" | "content" | "link" | "viewportWrapper" | "viewport" | "indicator", string>>
21
+ raw: (props?: NavigationMenuVariantProps) => NavigationMenuVariantProps
22
+ variantMap: NavigationMenuVariantMap
23
+ variantKeys: Array<keyof NavigationMenuVariant>
24
+ splitVariantProps<Props extends NavigationMenuVariantProps>(props: Props): [NavigationMenuVariantProps, Pretty<DistributiveOmit<Props, keyof NavigationMenuVariantProps>>]
25
+ }
26
+
27
+ /** Styles for the NavigationMenu component */
28
+ export declare const navigationMenu: NavigationMenuRecipe
@@ -0,0 +1,62 @@
1
+ import { splitProps, getSlotCompoundVariant } from '../helpers.mjs';
2
+ import { createRecipe } from './create-recipe.mjs';
3
+
4
+ const navigationMenuDefaultVariants = {}
5
+ const navigationMenuCompoundVariants = []
6
+
7
+ const navigationMenuSlotNames = [
8
+ [
9
+ "root",
10
+ "navigationMenu__root"
11
+ ],
12
+ [
13
+ "list",
14
+ "navigationMenu__list"
15
+ ],
16
+ [
17
+ "item",
18
+ "navigationMenu__item"
19
+ ],
20
+ [
21
+ "trigger",
22
+ "navigationMenu__trigger"
23
+ ],
24
+ [
25
+ "content",
26
+ "navigationMenu__content"
27
+ ],
28
+ [
29
+ "link",
30
+ "navigationMenu__link"
31
+ ],
32
+ [
33
+ "viewportWrapper",
34
+ "navigationMenu__viewportWrapper"
35
+ ],
36
+ [
37
+ "viewport",
38
+ "navigationMenu__viewport"
39
+ ],
40
+ [
41
+ "indicator",
42
+ "navigationMenu__indicator"
43
+ ]
44
+ ]
45
+ const navigationMenuSlotFns = /* @__PURE__ */ navigationMenuSlotNames.map(([slotName, slotKey]) => [slotName, createRecipe(slotKey, navigationMenuDefaultVariants, getSlotCompoundVariant(navigationMenuCompoundVariants, slotName))])
46
+
47
+ const navigationMenuFn = (props = {}) => {
48
+ return Object.fromEntries(navigationMenuSlotFns.map(([slotName, slotFn]) => [slotName, slotFn(props)]))
49
+ }
50
+
51
+ const navigationMenuVariantKeys = []
52
+
53
+ export const navigationMenu = /* @__PURE__ */ Object.assign(navigationMenuFn, {
54
+ __recipe__: false,
55
+ __name__: 'navigationMenu',
56
+ raw: (props) => props,
57
+ variantKeys: navigationMenuVariantKeys,
58
+ variantMap: {},
59
+ splitVariantProps(props) {
60
+ return splitProps(props, navigationMenuVariantKeys)
61
+ },
62
+ })
@@ -0,0 +1,28 @@
1
+ /* eslint-disable */
2
+ import type { ConditionalValue } from '../types/index.d.mts';
3
+ import type { Pretty } from '../types/helpers.d.mts';
4
+ import type { DistributiveOmit } from '../types/system-types.d.mts';
5
+
6
+ interface PVariant {
7
+
8
+ }
9
+
10
+ type PVariantMap = {
11
+ [key in keyof PVariant]: Array<PVariant[key]>
12
+ }
13
+
14
+ export type PVariantProps = {
15
+ [key in keyof PVariant]?: ConditionalValue<PVariant[key]>
16
+ }
17
+
18
+ export interface PRecipe {
19
+ __type: PVariantProps
20
+ (props?: PVariantProps): string
21
+ raw: (props?: PVariantProps) => PVariantProps
22
+ variantMap: PVariantMap
23
+ variantKeys: Array<keyof PVariant>
24
+ splitVariantProps<Props extends PVariantProps>(props: Props): [PVariantProps, Pretty<DistributiveOmit<Props, keyof PVariantProps>>]
25
+ }
26
+
27
+ /** Typography - p style */
28
+ export declare const p: PRecipe
@@ -0,0 +1,19 @@
1
+ import { splitProps } from '../helpers.mjs';
2
+ import { createRecipe } from './create-recipe.mjs';
3
+
4
+ const pFn = /* @__PURE__ */ createRecipe('p', {}, [])
5
+
6
+ const pVariantMap = {}
7
+
8
+ const pVariantKeys = Object.keys(pVariantMap)
9
+
10
+ export const p = /* @__PURE__ */ Object.assign(pFn, {
11
+ __recipe__: true,
12
+ __name__: 'p',
13
+ raw: (props) => props,
14
+ variantKeys: pVariantKeys,
15
+ variantMap: pVariantMap,
16
+ splitVariantProps(props) {
17
+ return splitProps(props, pVariantKeys)
18
+ },
19
+ })
@@ -0,0 +1,28 @@
1
+ /* eslint-disable */
2
+ import type { ConditionalValue } from '../types/index.d.mts';
3
+ import type { Pretty } from '../types/helpers.d.mts';
4
+ import type { DistributiveOmit } from '../types/system-types.d.mts';
5
+
6
+ interface PopoverVariant {
7
+
8
+ }
9
+
10
+ type PopoverVariantMap = {
11
+ [key in keyof PopoverVariant]: Array<PopoverVariant[key]>
12
+ }
13
+
14
+ export type PopoverVariantProps = {
15
+ [key in keyof PopoverVariant]?: ConditionalValue<PopoverVariant[key]>
16
+ }
17
+
18
+ export interface PopoverRecipe {
19
+ __type: PopoverVariantProps
20
+ (props?: PopoverVariantProps): Pretty<Record<"root" | "trigger" | "portal" | "content", string>>
21
+ raw: (props?: PopoverVariantProps) => PopoverVariantProps
22
+ variantMap: PopoverVariantMap
23
+ variantKeys: Array<keyof PopoverVariant>
24
+ splitVariantProps<Props extends PopoverVariantProps>(props: Props): [PopoverVariantProps, Pretty<DistributiveOmit<Props, keyof PopoverVariantProps>>]
25
+ }
26
+
27
+ /** Styles for the Popover component */
28
+ export declare const popover: PopoverRecipe
@@ -0,0 +1,42 @@
1
+ import { splitProps, getSlotCompoundVariant } from '../helpers.mjs';
2
+ import { createRecipe } from './create-recipe.mjs';
3
+
4
+ const popoverDefaultVariants = {}
5
+ const popoverCompoundVariants = []
6
+
7
+ const popoverSlotNames = [
8
+ [
9
+ "root",
10
+ "popover__root"
11
+ ],
12
+ [
13
+ "trigger",
14
+ "popover__trigger"
15
+ ],
16
+ [
17
+ "portal",
18
+ "popover__portal"
19
+ ],
20
+ [
21
+ "content",
22
+ "popover__content"
23
+ ]
24
+ ]
25
+ const popoverSlotFns = /* @__PURE__ */ popoverSlotNames.map(([slotName, slotKey]) => [slotName, createRecipe(slotKey, popoverDefaultVariants, getSlotCompoundVariant(popoverCompoundVariants, slotName))])
26
+
27
+ const popoverFn = (props = {}) => {
28
+ return Object.fromEntries(popoverSlotFns.map(([slotName, slotFn]) => [slotName, slotFn(props)]))
29
+ }
30
+
31
+ const popoverVariantKeys = []
32
+
33
+ export const popover = /* @__PURE__ */ Object.assign(popoverFn, {
34
+ __recipe__: false,
35
+ __name__: 'popover',
36
+ raw: (props) => props,
37
+ variantKeys: popoverVariantKeys,
38
+ variantMap: {},
39
+ splitVariantProps(props) {
40
+ return splitProps(props, popoverVariantKeys)
41
+ },
42
+ })
@@ -0,0 +1,28 @@
1
+ /* eslint-disable */
2
+ import type { ConditionalValue } from '../types/index.d.mts';
3
+ import type { Pretty } from '../types/helpers.d.mts';
4
+ import type { DistributiveOmit } from '../types/system-types.d.mts';
5
+
6
+ interface ProgressVariant {
7
+
8
+ }
9
+
10
+ type ProgressVariantMap = {
11
+ [key in keyof ProgressVariant]: Array<ProgressVariant[key]>
12
+ }
13
+
14
+ export type ProgressVariantProps = {
15
+ [key in keyof ProgressVariant]?: ConditionalValue<ProgressVariant[key]>
16
+ }
17
+
18
+ export interface ProgressRecipe {
19
+ __type: ProgressVariantProps
20
+ (props?: ProgressVariantProps): Pretty<Record<"root" | "indicator", string>>
21
+ raw: (props?: ProgressVariantProps) => ProgressVariantProps
22
+ variantMap: ProgressVariantMap
23
+ variantKeys: Array<keyof ProgressVariant>
24
+ splitVariantProps<Props extends ProgressVariantProps>(props: Props): [ProgressVariantProps, Pretty<DistributiveOmit<Props, keyof ProgressVariantProps>>]
25
+ }
26
+
27
+ /** Styles for the Progress component */
28
+ export declare const progress: ProgressRecipe
@@ -0,0 +1,34 @@
1
+ import { splitProps, getSlotCompoundVariant } from '../helpers.mjs';
2
+ import { createRecipe } from './create-recipe.mjs';
3
+
4
+ const progressDefaultVariants = {}
5
+ const progressCompoundVariants = []
6
+
7
+ const progressSlotNames = [
8
+ [
9
+ "root",
10
+ "progress__root"
11
+ ],
12
+ [
13
+ "indicator",
14
+ "progress__indicator"
15
+ ]
16
+ ]
17
+ const progressSlotFns = /* @__PURE__ */ progressSlotNames.map(([slotName, slotKey]) => [slotName, createRecipe(slotKey, progressDefaultVariants, getSlotCompoundVariant(progressCompoundVariants, slotName))])
18
+
19
+ const progressFn = (props = {}) => {
20
+ return Object.fromEntries(progressSlotFns.map(([slotName, slotFn]) => [slotName, slotFn(props)]))
21
+ }
22
+
23
+ const progressVariantKeys = []
24
+
25
+ export const progress = /* @__PURE__ */ Object.assign(progressFn, {
26
+ __recipe__: false,
27
+ __name__: 'progress',
28
+ raw: (props) => props,
29
+ variantKeys: progressVariantKeys,
30
+ variantMap: {},
31
+ splitVariantProps(props) {
32
+ return splitProps(props, progressVariantKeys)
33
+ },
34
+ })
@@ -0,0 +1,28 @@
1
+ /* eslint-disable */
2
+ import type { ConditionalValue } from '../types/index.d.mts';
3
+ import type { Pretty } from '../types/helpers.d.mts';
4
+ import type { DistributiveOmit } from '../types/system-types.d.mts';
5
+
6
+ interface RadioGroupVariant {
7
+
8
+ }
9
+
10
+ type RadioGroupVariantMap = {
11
+ [key in keyof RadioGroupVariant]: Array<RadioGroupVariant[key]>
12
+ }
13
+
14
+ export type RadioGroupVariantProps = {
15
+ [key in keyof RadioGroupVariant]?: ConditionalValue<RadioGroupVariant[key]>
16
+ }
17
+
18
+ export interface RadioGroupRecipe {
19
+ __type: RadioGroupVariantProps
20
+ (props?: RadioGroupVariantProps): Pretty<Record<"root" | "item" | "indicator" | "icon", string>>
21
+ raw: (props?: RadioGroupVariantProps) => RadioGroupVariantProps
22
+ variantMap: RadioGroupVariantMap
23
+ variantKeys: Array<keyof RadioGroupVariant>
24
+ splitVariantProps<Props extends RadioGroupVariantProps>(props: Props): [RadioGroupVariantProps, Pretty<DistributiveOmit<Props, keyof RadioGroupVariantProps>>]
25
+ }
26
+
27
+ /** Styles for the RadioGroup component */
28
+ export declare const radioGroup: RadioGroupRecipe