@integration-app/react 2.0.2 → 2.0.3-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (377) hide show
  1. package/dist/cjs/_modules/awesome-debounce-promise.cjs +20 -0
  2. package/dist/cjs/components/Integrations/IntegrationAvatar/index.cjs +57 -0
  3. package/dist/cjs/components/Integrations/IntegrationItem/index.cjs +56 -0
  4. package/dist/cjs/components/Integrations/IntegrationItemSkeleton.cjs +45 -0
  5. package/dist/cjs/contexts/integration-app-context.cjs +48 -0
  6. package/dist/cjs/hooks/actions/useAction.cjs +37 -0
  7. package/dist/cjs/hooks/actions/useActionInstance.cjs +51 -0
  8. package/dist/cjs/hooks/actions/useActionInstances.cjs +21 -0
  9. package/dist/cjs/hooks/actions/useActions.cjs +21 -0
  10. package/dist/cjs/hooks/app-data-schemas/useAppDataSchema.cjs +23 -0
  11. package/dist/cjs/hooks/app-data-schemas/useAppDataSchemaInstance.cjs +38 -0
  12. package/dist/cjs/hooks/app-data-schemas/useAppDataSchemaInstances.cjs +24 -0
  13. package/dist/cjs/hooks/app-data-schemas/useAppDataSchemas.cjs +21 -0
  14. package/dist/cjs/hooks/app-events/useAppEventSubscription.cjs +23 -0
  15. package/dist/cjs/hooks/app-events/useAppEventSubscriptions.cjs +24 -0
  16. package/dist/cjs/hooks/app-events/useAppEventType.cjs +23 -0
  17. package/dist/cjs/hooks/app-events/useAppEventTypes.cjs +21 -0
  18. package/dist/cjs/hooks/app-events/useAppEvents.cjs +21 -0
  19. package/dist/cjs/hooks/customers/useCustomer.cjs +23 -0
  20. package/dist/cjs/hooks/customers/useCustomers.cjs +21 -0
  21. package/dist/cjs/hooks/data-collections/useDataCollectionSpec.cjs +31 -0
  22. package/dist/cjs/hooks/data-links/useDataLinkTable.cjs +23 -0
  23. package/dist/cjs/hooks/data-links/useDataLinkTableInstance.cjs +36 -0
  24. package/dist/cjs/hooks/data-links/useDataLinkTableInstances.cjs +24 -0
  25. package/dist/cjs/hooks/data-links/useDataLinkTables.cjs +21 -0
  26. package/dist/cjs/hooks/data-sources/useDataSource.cjs +37 -0
  27. package/dist/cjs/hooks/data-sources/useDataSourceInstance.cjs +79 -0
  28. package/dist/cjs/hooks/data-sources/useDataSourceInstanceCollection.cjs +32 -0
  29. package/dist/cjs/hooks/data-sources/useDataSourceInstances.cjs +24 -0
  30. package/dist/cjs/hooks/data-sources/useDataSources.cjs +21 -0
  31. package/dist/cjs/hooks/external-events/useExternalEventSubscription.cjs +58 -0
  32. package/dist/cjs/hooks/external-events/useExternalEventSubscriptions.cjs +24 -0
  33. package/dist/cjs/hooks/field-mappings/useFieldMapping.cjs +37 -0
  34. package/dist/cjs/hooks/field-mappings/useFieldMappingInstance.cjs +47 -0
  35. package/dist/cjs/hooks/field-mappings/useFieldMappingInstances.cjs +24 -0
  36. package/dist/cjs/hooks/field-mappings/useFieldMappings.cjs +21 -0
  37. package/dist/cjs/hooks/flows/useFlow.cjs +37 -0
  38. package/dist/cjs/hooks/flows/useFlowInstance.cjs +65 -0
  39. package/dist/cjs/hooks/flows/useFlowInstances.cjs +21 -0
  40. package/dist/cjs/hooks/flows/useFlowRun.cjs +35 -0
  41. package/dist/cjs/hooks/flows/useFlowRuns.cjs +21 -0
  42. package/dist/cjs/hooks/flows/useFlows.cjs +21 -0
  43. package/dist/cjs/hooks/integrations/useConnection.cjs +26 -0
  44. package/dist/cjs/hooks/integrations/useConnections.cjs +21 -0
  45. package/dist/cjs/hooks/integrations/useConnectorSpec.cjs +23 -0
  46. package/dist/cjs/hooks/integrations/useIntegration.cjs +23 -0
  47. package/dist/cjs/hooks/integrations/useIntegrations.cjs +21 -0
  48. package/dist/cjs/hooks/scenarios/useScenario.cjs +23 -0
  49. package/dist/cjs/hooks/scenarios/useScenarios.cjs +21 -0
  50. package/dist/cjs/hooks/screens/useScreen.cjs +23 -0
  51. package/dist/cjs/hooks/useElement.cjs +124 -0
  52. package/dist/cjs/hooks/useElements.cjs +76 -0
  53. package/dist/cjs/hooks/useIntegrationAppSWR.cjs +23 -0
  54. package/dist/cjs/index.cjs +129 -0
  55. package/dist/cjs/styled-system/css/conditions.cjs +47 -0
  56. package/dist/cjs/styled-system/css/css.cjs +58 -0
  57. package/dist/cjs/styled-system/css/cva.cjs +100 -0
  58. package/dist/cjs/styled-system/css/cx.cjs +24 -0
  59. package/dist/cjs/styled-system/helpers.cjs +300 -0
  60. package/dist/cjs/styled-system/jsx/box.cjs +24 -0
  61. package/dist/cjs/styled-system/jsx/center.cjs +24 -0
  62. package/dist/cjs/styled-system/jsx/circle.cjs +24 -0
  63. package/dist/cjs/styled-system/jsx/factory-helper.cjs +36 -0
  64. package/dist/cjs/styled-system/jsx/factory.cjs +93 -0
  65. package/dist/cjs/styled-system/jsx/flex.cjs +24 -0
  66. package/dist/cjs/styled-system/jsx/is-valid-prop.cjs +24 -0
  67. package/dist/cjs/styled-system/jsx/visually-hidden.cjs +24 -0
  68. package/dist/cjs/styled-system/patterns/box.cjs +23 -0
  69. package/dist/cjs/styled-system/patterns/center.cjs +29 -0
  70. package/dist/cjs/styled-system/patterns/circle.cjs +33 -0
  71. package/dist/cjs/styled-system/patterns/flex.cjs +34 -0
  72. package/dist/cjs/styled-system/patterns/visually-hidden.cjs +26 -0
  73. package/dist/cjs/styled-system/recipes/avatar.cjs +64 -0
  74. package/dist/cjs/styled-system/recipes/button.cjs +54 -0
  75. package/dist/cjs/styled-system/recipes/create-recipe.cjs +94 -0
  76. package/dist/cjs/styled-system/recipes/icon.cjs +46 -0
  77. package/dist/cjs/styled-system/recipes/skeleton.cjs +35 -0
  78. package/dist/cjs/styled-system/recipes/spinner.cjs +45 -0
  79. package/dist/cjs/styled-system/recipes/text.cjs +52 -0
  80. package/dist/cjs/ui-kit/avatar.cjs +40 -0
  81. package/dist/cjs/ui-kit/button.cjs +44 -0
  82. package/dist/cjs/ui-kit/spinner.cjs +36 -0
  83. package/dist/cjs/ui-kit/styled/avatar.cjs +31 -0
  84. package/dist/cjs/ui-kit/styled/button.cjs +22 -0
  85. package/dist/cjs/ui-kit/styled/icon.cjs +24 -0
  86. package/dist/cjs/ui-kit/styled/skeleton.cjs +34 -0
  87. package/dist/cjs/ui-kit/styled/spinner.cjs +22 -0
  88. package/dist/cjs/ui-kit/styled/text.cjs +21 -0
  89. package/dist/cjs/ui-kit/styled/utils/create-style-context.cjs +76 -0
  90. package/dist/esm/_modules/awesome-debounce-promise.mjs +16 -0
  91. package/dist/esm/components/Integrations/IntegrationAvatar/index.mjs +55 -0
  92. package/dist/esm/components/Integrations/IntegrationItem/index.mjs +54 -0
  93. package/dist/esm/components/Integrations/IntegrationItemSkeleton.mjs +43 -0
  94. package/dist/esm/contexts/integration-app-context.mjs +45 -0
  95. package/dist/esm/hooks/actions/useAction.mjs +35 -0
  96. package/dist/esm/hooks/actions/useActionInstance.mjs +49 -0
  97. package/dist/esm/hooks/actions/useActionInstances.mjs +19 -0
  98. package/dist/esm/hooks/actions/useActions.mjs +19 -0
  99. package/dist/esm/hooks/app-data-schemas/useAppDataSchema.mjs +21 -0
  100. package/dist/esm/hooks/app-data-schemas/useAppDataSchemaInstance.mjs +36 -0
  101. package/dist/esm/hooks/app-data-schemas/useAppDataSchemaInstances.mjs +22 -0
  102. package/dist/esm/hooks/app-data-schemas/useAppDataSchemas.mjs +19 -0
  103. package/dist/esm/hooks/app-events/useAppEventSubscription.mjs +21 -0
  104. package/dist/esm/hooks/app-events/useAppEventSubscriptions.mjs +22 -0
  105. package/dist/esm/hooks/app-events/useAppEventType.mjs +21 -0
  106. package/dist/esm/hooks/app-events/useAppEventTypes.mjs +19 -0
  107. package/dist/esm/hooks/app-events/useAppEvents.mjs +19 -0
  108. package/dist/esm/hooks/customers/useCustomer.mjs +21 -0
  109. package/dist/esm/hooks/customers/useCustomers.mjs +19 -0
  110. package/dist/esm/hooks/data-collections/useDataCollectionSpec.mjs +29 -0
  111. package/dist/esm/hooks/data-links/useDataLinkTable.mjs +21 -0
  112. package/dist/esm/hooks/data-links/useDataLinkTableInstance.mjs +34 -0
  113. package/dist/esm/hooks/data-links/useDataLinkTableInstances.mjs +22 -0
  114. package/dist/esm/hooks/data-links/useDataLinkTables.mjs +19 -0
  115. package/dist/esm/hooks/data-sources/useDataSource.mjs +35 -0
  116. package/dist/esm/hooks/data-sources/useDataSourceInstance.mjs +77 -0
  117. package/dist/esm/hooks/data-sources/useDataSourceInstanceCollection.mjs +30 -0
  118. package/dist/esm/hooks/data-sources/useDataSourceInstances.mjs +22 -0
  119. package/dist/esm/hooks/data-sources/useDataSources.mjs +19 -0
  120. package/dist/esm/hooks/external-events/useExternalEventSubscription.mjs +56 -0
  121. package/dist/esm/hooks/external-events/useExternalEventSubscriptions.mjs +22 -0
  122. package/dist/esm/hooks/field-mappings/useFieldMapping.mjs +35 -0
  123. package/dist/esm/hooks/field-mappings/useFieldMappingInstance.mjs +45 -0
  124. package/dist/esm/hooks/field-mappings/useFieldMappingInstances.mjs +22 -0
  125. package/dist/esm/hooks/field-mappings/useFieldMappings.mjs +19 -0
  126. package/dist/esm/hooks/flows/useFlow.mjs +35 -0
  127. package/dist/esm/hooks/flows/useFlowInstance.mjs +63 -0
  128. package/dist/esm/hooks/flows/useFlowInstances.mjs +19 -0
  129. package/dist/esm/hooks/flows/useFlowRun.mjs +33 -0
  130. package/dist/esm/hooks/flows/useFlowRuns.mjs +19 -0
  131. package/dist/esm/hooks/flows/useFlows.mjs +19 -0
  132. package/dist/esm/hooks/integrations/useConnection.mjs +24 -0
  133. package/dist/esm/hooks/integrations/useConnections.mjs +19 -0
  134. package/dist/esm/hooks/integrations/useConnectorSpec.mjs +21 -0
  135. package/dist/esm/hooks/integrations/useIntegration.mjs +21 -0
  136. package/dist/esm/hooks/integrations/useIntegrations.mjs +19 -0
  137. package/dist/esm/hooks/scenarios/useScenario.mjs +21 -0
  138. package/dist/esm/hooks/scenarios/useScenarios.mjs +19 -0
  139. package/dist/esm/hooks/screens/useScreen.mjs +21 -0
  140. package/dist/esm/hooks/useElement.mjs +122 -0
  141. package/dist/esm/hooks/useElements.mjs +74 -0
  142. package/dist/esm/hooks/useIntegrationAppSWR.mjs +21 -0
  143. package/dist/esm/index.mjs +62 -0
  144. package/dist/esm/styled-system/css/conditions.mjs +43 -0
  145. package/dist/esm/styled-system/css/css.mjs +54 -0
  146. package/dist/esm/styled-system/css/cva.mjs +96 -0
  147. package/dist/esm/styled-system/css/cx.mjs +22 -0
  148. package/dist/esm/styled-system/helpers.mjs +280 -0
  149. package/dist/esm/styled-system/jsx/box.mjs +22 -0
  150. package/dist/esm/styled-system/jsx/center.mjs +22 -0
  151. package/dist/esm/styled-system/jsx/circle.mjs +22 -0
  152. package/dist/esm/styled-system/jsx/factory-helper.mjs +31 -0
  153. package/dist/esm/styled-system/jsx/factory.mjs +91 -0
  154. package/dist/esm/styled-system/jsx/flex.mjs +22 -0
  155. package/dist/esm/styled-system/jsx/is-valid-prop.mjs +21 -0
  156. package/dist/esm/styled-system/jsx/visually-hidden.mjs +22 -0
  157. package/dist/esm/styled-system/patterns/box.mjs +21 -0
  158. package/dist/esm/styled-system/patterns/center.mjs +27 -0
  159. package/dist/esm/styled-system/patterns/circle.mjs +31 -0
  160. package/dist/esm/styled-system/patterns/flex.mjs +32 -0
  161. package/dist/esm/styled-system/patterns/visually-hidden.mjs +24 -0
  162. package/dist/esm/styled-system/recipes/avatar.mjs +62 -0
  163. package/dist/esm/styled-system/recipes/button.mjs +52 -0
  164. package/dist/esm/styled-system/recipes/create-recipe.mjs +91 -0
  165. package/dist/esm/styled-system/recipes/icon.mjs +44 -0
  166. package/dist/esm/styled-system/recipes/skeleton.mjs +33 -0
  167. package/dist/esm/styled-system/recipes/spinner.mjs +43 -0
  168. package/dist/esm/styled-system/recipes/text.mjs +50 -0
  169. package/dist/esm/ui-kit/avatar.mjs +38 -0
  170. package/dist/esm/ui-kit/button.mjs +42 -0
  171. package/dist/esm/ui-kit/spinner.mjs +34 -0
  172. package/dist/esm/ui-kit/styled/avatar.mjs +24 -0
  173. package/dist/esm/ui-kit/styled/button.mjs +20 -0
  174. package/dist/esm/ui-kit/styled/icon.mjs +22 -0
  175. package/dist/esm/ui-kit/styled/skeleton.mjs +32 -0
  176. package/dist/esm/ui-kit/styled/spinner.mjs +20 -0
  177. package/dist/esm/ui-kit/styled/text.mjs +19 -0
  178. package/dist/esm/ui-kit/styled/utils/create-style-context.mjs +74 -0
  179. package/dist/styles.css +13918 -0
  180. package/dist/types/_modules/awesome-debounce-promise.d.ts +2 -0
  181. package/dist/types/components/Integrations/IntegrationAvatar/index.d.ts +6 -0
  182. package/dist/types/components/Integrations/IntegrationItem/index.d.ts +8 -0
  183. package/dist/types/components/Integrations/IntegrationItemSkeleton.d.ts +4 -0
  184. package/dist/types/components/Integrations/index.d.ts +3 -0
  185. package/dist/types/contexts/index.d.ts +2 -0
  186. package/dist/types/contexts/integration-app-context.d.ts +14 -0
  187. package/dist/types/hooks/actions/useAction.d.ts +16 -0
  188. package/dist/types/hooks/actions/useActionInstance.d.ts +18 -0
  189. package/dist/types/hooks/actions/useActionInstances.d.ts +11 -0
  190. package/dist/types/hooks/actions/useActions.d.ts +11 -0
  191. package/dist/types/hooks/app-data-schemas/useAppDataSchema.d.ts +14 -0
  192. package/dist/types/hooks/app-data-schemas/useAppDataSchemaInstance.d.ts +15 -0
  193. package/dist/types/hooks/app-data-schemas/useAppDataSchemaInstances.d.ts +11 -0
  194. package/dist/types/hooks/app-data-schemas/useAppDataSchemas.d.ts +11 -0
  195. package/dist/types/hooks/app-events/useAppEventSubscription.d.ts +14 -0
  196. package/dist/types/hooks/app-events/useAppEventSubscriptions.d.ts +11 -0
  197. package/dist/types/hooks/app-events/useAppEventType.d.ts +15 -0
  198. package/dist/types/hooks/app-events/useAppEventTypes.d.ts +11 -0
  199. package/dist/types/hooks/app-events/useAppEvents.d.ts +11 -0
  200. package/dist/types/hooks/customers/useCustomer.d.ts +14 -0
  201. package/dist/types/hooks/customers/useCustomers.d.ts +11 -0
  202. package/dist/types/hooks/data-collections/useDataCollectionSpec.d.ts +6 -0
  203. package/dist/types/hooks/data-form/index.d.ts +1 -0
  204. package/dist/types/hooks/data-links/useDataLinkTable.d.ts +14 -0
  205. package/dist/types/hooks/data-links/useDataLinkTableInstance.d.ts +17 -0
  206. package/dist/types/hooks/data-links/useDataLinkTableInstances.d.ts +11 -0
  207. package/dist/types/hooks/data-links/useDataLinkTables.d.ts +11 -0
  208. package/dist/types/hooks/data-sources/useDataSource.d.ts +16 -0
  209. package/dist/types/hooks/data-sources/useDataSourceInstance.d.ts +25 -0
  210. package/dist/types/hooks/data-sources/useDataSourceInstanceCollection.d.ts +7 -0
  211. package/dist/types/hooks/data-sources/useDataSourceInstances.d.ts +11 -0
  212. package/dist/types/hooks/data-sources/useDataSources.d.ts +11 -0
  213. package/dist/types/hooks/external-events/useExternalEventSubscription.d.ts +19 -0
  214. package/dist/types/hooks/external-events/useExternalEventSubscriptions.d.ts +11 -0
  215. package/dist/types/hooks/field-mappings/useFieldMapping.d.ts +16 -0
  216. package/dist/types/hooks/field-mappings/useFieldMappingInstance.d.ts +17 -0
  217. package/dist/types/hooks/field-mappings/useFieldMappingInstances.d.ts +11 -0
  218. package/dist/types/hooks/field-mappings/useFieldMappings.d.ts +11 -0
  219. package/dist/types/hooks/flows/useFlow.d.ts +16 -0
  220. package/dist/types/hooks/flows/useFlowInstance.d.ts +21 -0
  221. package/dist/types/hooks/flows/useFlowInstances.d.ts +11 -0
  222. package/dist/types/hooks/flows/useFlowRun.d.ts +8 -0
  223. package/dist/types/hooks/flows/useFlowRuns.d.ts +11 -0
  224. package/dist/types/hooks/flows/useFlows.d.ts +11 -0
  225. package/dist/types/hooks/integrations/useConnection.d.ts +14 -0
  226. package/dist/types/hooks/integrations/useConnections.d.ts +11 -0
  227. package/dist/types/hooks/integrations/useConnectorSpec.d.ts +6 -0
  228. package/dist/types/hooks/integrations/useIntegration.d.ts +14 -0
  229. package/dist/types/hooks/integrations/useIntegrations.d.ts +11 -0
  230. package/dist/types/hooks/scenarios/useScenario.d.ts +14 -0
  231. package/dist/types/hooks/scenarios/useScenarios.d.ts +11 -0
  232. package/dist/types/hooks/screens/useScreen.d.ts +14 -0
  233. package/dist/types/hooks/useElement.d.ts +22 -0
  234. package/dist/types/hooks/useElements.d.ts +9 -0
  235. package/dist/types/hooks/useIntegrationAppSWR.d.ts +1 -0
  236. package/dist/types/index.d.ts +52 -0
  237. package/dist/types/storybook-helpers/withColorPalette.d.ts +6 -0
  238. package/dist/types/styled-system/css/css.d.ts +22 -0
  239. package/dist/types/styled-system/css/cva.d.ts +6 -0
  240. package/dist/types/styled-system/css/cx.d.ts +5 -0
  241. package/dist/types/styled-system/css/index.d.ts +5 -0
  242. package/dist/types/styled-system/css/sva.d.ts +4 -0
  243. package/dist/types/styled-system/jsx/aspect-ratio.d.ts +10 -0
  244. package/dist/types/styled-system/jsx/bleed.d.ts +10 -0
  245. package/dist/types/styled-system/jsx/box.d.ts +10 -0
  246. package/dist/types/styled-system/jsx/center.d.ts +10 -0
  247. package/dist/types/styled-system/jsx/circle.d.ts +10 -0
  248. package/dist/types/styled-system/jsx/container.d.ts +10 -0
  249. package/dist/types/styled-system/jsx/cq.d.ts +10 -0
  250. package/dist/types/styled-system/jsx/divider.d.ts +10 -0
  251. package/dist/types/styled-system/jsx/factory.d.ts +3 -0
  252. package/dist/types/styled-system/jsx/flex.d.ts +10 -0
  253. package/dist/types/styled-system/jsx/float.d.ts +10 -0
  254. package/dist/types/styled-system/jsx/grid-item.d.ts +10 -0
  255. package/dist/types/styled-system/jsx/grid.d.ts +10 -0
  256. package/dist/types/styled-system/jsx/hstack.d.ts +10 -0
  257. package/dist/types/styled-system/jsx/index.d.ts +24 -0
  258. package/dist/types/styled-system/jsx/is-valid-prop.d.ts +11 -0
  259. package/dist/types/styled-system/jsx/link-overlay.d.ts +10 -0
  260. package/dist/types/styled-system/jsx/spacer.d.ts +10 -0
  261. package/dist/types/styled-system/jsx/square.d.ts +10 -0
  262. package/dist/types/styled-system/jsx/stack.d.ts +10 -0
  263. package/dist/types/styled-system/jsx/visually-hidden.d.ts +10 -0
  264. package/dist/types/styled-system/jsx/vstack.d.ts +10 -0
  265. package/dist/types/styled-system/jsx/wrap.d.ts +10 -0
  266. package/dist/types/styled-system/patterns/aspect-ratio.d.ts +21 -0
  267. package/dist/types/styled-system/patterns/bleed.d.ts +22 -0
  268. package/dist/types/styled-system/patterns/box.d.ts +21 -0
  269. package/dist/types/styled-system/patterns/center.d.ts +21 -0
  270. package/dist/types/styled-system/patterns/circle.d.ts +21 -0
  271. package/dist/types/styled-system/patterns/container.d.ts +21 -0
  272. package/dist/types/styled-system/patterns/cq.d.ts +22 -0
  273. package/dist/types/styled-system/patterns/divider.d.ts +23 -0
  274. package/dist/types/styled-system/patterns/flex.d.ts +27 -0
  275. package/dist/types/styled-system/patterns/float.d.ts +24 -0
  276. package/dist/types/styled-system/patterns/grid-item.d.ts +26 -0
  277. package/dist/types/styled-system/patterns/grid.d.ts +25 -0
  278. package/dist/types/styled-system/patterns/hstack.d.ts +22 -0
  279. package/dist/types/styled-system/patterns/index.d.ts +21 -0
  280. package/dist/types/styled-system/patterns/link-overlay.d.ts +21 -0
  281. package/dist/types/styled-system/patterns/spacer.d.ts +21 -0
  282. package/dist/types/styled-system/patterns/square.d.ts +21 -0
  283. package/dist/types/styled-system/patterns/stack.d.ts +24 -0
  284. package/dist/types/styled-system/patterns/visually-hidden.d.ts +21 -0
  285. package/dist/types/styled-system/patterns/vstack.d.ts +22 -0
  286. package/dist/types/styled-system/patterns/wrap.d.ts +25 -0
  287. package/dist/types/styled-system/recipes/accordion.d.ts +31 -0
  288. package/dist/types/styled-system/recipes/alert.d.ts +28 -0
  289. package/dist/types/styled-system/recipes/avatar.d.ts +31 -0
  290. package/dist/types/styled-system/recipes/badge.d.ts +35 -0
  291. package/dist/types/styled-system/recipes/button.d.ts +35 -0
  292. package/dist/types/styled-system/recipes/card.d.ts +28 -0
  293. package/dist/types/styled-system/recipes/carousel.d.ts +31 -0
  294. package/dist/types/styled-system/recipes/checkbox.d.ts +31 -0
  295. package/dist/types/styled-system/recipes/clipboard.d.ts +28 -0
  296. package/dist/types/styled-system/recipes/code.d.ts +35 -0
  297. package/dist/types/styled-system/recipes/collapsible.d.ts +28 -0
  298. package/dist/types/styled-system/recipes/color-picker.d.ts +28 -0
  299. package/dist/types/styled-system/recipes/combobox.d.ts +31 -0
  300. package/dist/types/styled-system/recipes/date-picker.d.ts +28 -0
  301. package/dist/types/styled-system/recipes/dialog.d.ts +28 -0
  302. package/dist/types/styled-system/recipes/drawer.d.ts +31 -0
  303. package/dist/types/styled-system/recipes/editable.d.ts +28 -0
  304. package/dist/types/styled-system/recipes/field.d.ts +28 -0
  305. package/dist/types/styled-system/recipes/fieldset.d.ts +28 -0
  306. package/dist/types/styled-system/recipes/file-upload.d.ts +28 -0
  307. package/dist/types/styled-system/recipes/form-label.d.ts +31 -0
  308. package/dist/types/styled-system/recipes/hover-card.d.ts +28 -0
  309. package/dist/types/styled-system/recipes/icon.d.ts +31 -0
  310. package/dist/types/styled-system/recipes/index.d.ts +54 -0
  311. package/dist/types/styled-system/recipes/input.d.ts +31 -0
  312. package/dist/types/styled-system/recipes/kbd.d.ts +31 -0
  313. package/dist/types/styled-system/recipes/link.d.ts +28 -0
  314. package/dist/types/styled-system/recipes/menu.d.ts +31 -0
  315. package/dist/types/styled-system/recipes/number-input.d.ts +31 -0
  316. package/dist/types/styled-system/recipes/pagination.d.ts +28 -0
  317. package/dist/types/styled-system/recipes/pin-input.d.ts +31 -0
  318. package/dist/types/styled-system/recipes/popover.d.ts +28 -0
  319. package/dist/types/styled-system/recipes/progress.d.ts +31 -0
  320. package/dist/types/styled-system/recipes/qr-code.d.ts +28 -0
  321. package/dist/types/styled-system/recipes/radio-button-group.d.ts +35 -0
  322. package/dist/types/styled-system/recipes/radio-group.d.ts +31 -0
  323. package/dist/types/styled-system/recipes/rating-group.d.ts +31 -0
  324. package/dist/types/styled-system/recipes/segment-group.d.ts +31 -0
  325. package/dist/types/styled-system/recipes/select.d.ts +35 -0
  326. package/dist/types/styled-system/recipes/signature-pad.d.ts +28 -0
  327. package/dist/types/styled-system/recipes/skeleton.d.ts +28 -0
  328. package/dist/types/styled-system/recipes/slider.d.ts +31 -0
  329. package/dist/types/styled-system/recipes/spinner.d.ts +31 -0
  330. package/dist/types/styled-system/recipes/splitter.d.ts +28 -0
  331. package/dist/types/styled-system/recipes/switch-recipe.d.ts +31 -0
  332. package/dist/types/styled-system/recipes/table.d.ts +35 -0
  333. package/dist/types/styled-system/recipes/tabs.d.ts +35 -0
  334. package/dist/types/styled-system/recipes/tags-input.d.ts +31 -0
  335. package/dist/types/styled-system/recipes/text.d.ts +29 -0
  336. package/dist/types/styled-system/recipes/textarea.d.ts +31 -0
  337. package/dist/types/styled-system/recipes/toast.d.ts +28 -0
  338. package/dist/types/styled-system/recipes/toggle-group.d.ts +35 -0
  339. package/dist/types/styled-system/recipes/tooltip.d.ts +28 -0
  340. package/dist/types/styled-system/recipes/tree-view.d.ts +28 -0
  341. package/dist/types/styled-system/tokens/index.d.ts +9 -0
  342. package/dist/types/styled-system/tokens/tokens.d.ts +60 -0
  343. package/dist/types/styled-system/types/composition.d.ts +138 -0
  344. package/dist/types/styled-system/types/conditions.d.ts +264 -0
  345. package/dist/types/styled-system/types/csstype.d.ts +21298 -0
  346. package/dist/types/styled-system/types/global.d.ts +19 -0
  347. package/dist/types/styled-system/types/index.d.ts +8 -0
  348. package/dist/types/styled-system/types/jsx.d.ts +52 -0
  349. package/dist/types/styled-system/types/parts.d.ts +8 -0
  350. package/dist/types/styled-system/types/pattern.d.ts +78 -0
  351. package/dist/types/styled-system/types/prop-type.d.ts +245 -0
  352. package/dist/types/styled-system/types/recipe.d.ts +181 -0
  353. package/dist/types/styled-system/types/selectors.d.ts +59 -0
  354. package/dist/types/styled-system/types/static-css.d.ts +51 -0
  355. package/dist/types/styled-system/types/style-props.d.ts +7468 -0
  356. package/dist/types/styled-system/types/system-types.d.ts +109 -0
  357. package/dist/types/ui-kit/avatar.d.ts +6 -0
  358. package/dist/types/ui-kit/button.d.ts +9 -0
  359. package/dist/types/ui-kit/icon.d.ts +1 -0
  360. package/dist/types/ui-kit/skeleton.d.ts +1 -0
  361. package/dist/types/ui-kit/spinner.d.ts +5 -0
  362. package/dist/types/ui-kit/styled/avatar.d.ts +12 -0
  363. package/dist/types/ui-kit/styled/button.d.ts +5 -0
  364. package/dist/types/ui-kit/styled/icon.d.ts +5 -0
  365. package/dist/types/ui-kit/styled/skeleton.d.ts +7 -0
  366. package/dist/types/ui-kit/styled/spinner.d.ts +5 -0
  367. package/dist/types/ui-kit/styled/text.d.ts +8 -0
  368. package/dist/types/ui-kit/styled/utils/create-style-context.d.ts +20 -0
  369. package/dist/types/ui-kit/text.d.ts +1 -0
  370. package/dist/types/utils/types.d.ts +8 -0
  371. package/package.json +63 -25
  372. package/dist/index.d.ts +0 -625
  373. package/dist/index.js +0 -801
  374. package/dist/index.js.map +0 -1
  375. package/dist/index.module.d.mts +0 -625
  376. package/dist/index.module.mjs +0 -743
  377. package/dist/index.module.mjs.map +0 -1
@@ -0,0 +1,31 @@
1
+ /* eslint-disable */
2
+ import type { ConditionalValue } from '../types/index';
3
+ import type { DistributiveOmit, Pretty } from '../types/system-types';
4
+
5
+ interface MenuVariant {
6
+ /**
7
+ * @default "md"
8
+ */
9
+ size: "xs" | "sm" | "md" | "lg"
10
+ }
11
+
12
+ type MenuVariantMap = {
13
+ [key in keyof MenuVariant]: Array<MenuVariant[key]>
14
+ }
15
+
16
+ export type MenuVariantProps = {
17
+ [key in keyof MenuVariant]?: ConditionalValue<MenuVariant[key]> | undefined
18
+ }
19
+
20
+ export interface MenuRecipe {
21
+ __type: MenuVariantProps
22
+ (props?: MenuVariantProps): Pretty<Record<"arrow" | "arrowTip" | "content" | "contextTrigger" | "indicator" | "item" | "itemGroup" | "itemGroupLabel" | "itemIndicator" | "itemText" | "positioner" | "separator" | "trigger" | "triggerItem", string>>
23
+ raw: (props?: MenuVariantProps) => MenuVariantProps
24
+ variantMap: MenuVariantMap
25
+ variantKeys: Array<keyof MenuVariant>
26
+ splitVariantProps<Props extends MenuVariantProps>(props: Props): [MenuVariantProps, Pretty<DistributiveOmit<Props, keyof MenuVariantProps>>]
27
+ getVariantProps: (props?: MenuVariantProps) => MenuVariantProps
28
+ }
29
+
30
+
31
+ export declare const menu: MenuRecipe
@@ -0,0 +1,31 @@
1
+ /* eslint-disable */
2
+ import type { ConditionalValue } from '../types/index';
3
+ import type { DistributiveOmit, Pretty } from '../types/system-types';
4
+
5
+ interface NumberInputVariant {
6
+ /**
7
+ * @default "md"
8
+ */
9
+ size: "md" | "lg" | "xl"
10
+ }
11
+
12
+ type NumberInputVariantMap = {
13
+ [key in keyof NumberInputVariant]: Array<NumberInputVariant[key]>
14
+ }
15
+
16
+ export type NumberInputVariantProps = {
17
+ [key in keyof NumberInputVariant]?: ConditionalValue<NumberInputVariant[key]> | undefined
18
+ }
19
+
20
+ export interface NumberInputRecipe {
21
+ __type: NumberInputVariantProps
22
+ (props?: NumberInputVariantProps): Pretty<Record<"root" | "label" | "input" | "control" | "valueText" | "incrementTrigger" | "decrementTrigger" | "scrubber", string>>
23
+ raw: (props?: NumberInputVariantProps) => NumberInputVariantProps
24
+ variantMap: NumberInputVariantMap
25
+ variantKeys: Array<keyof NumberInputVariant>
26
+ splitVariantProps<Props extends NumberInputVariantProps>(props: Props): [NumberInputVariantProps, Pretty<DistributiveOmit<Props, keyof NumberInputVariantProps>>]
27
+ getVariantProps: (props?: NumberInputVariantProps) => NumberInputVariantProps
28
+ }
29
+
30
+
31
+ export declare const numberInput: NumberInputRecipe
@@ -0,0 +1,28 @@
1
+ /* eslint-disable */
2
+ import type { ConditionalValue } from '../types/index';
3
+ import type { DistributiveOmit, Pretty } from '../types/system-types';
4
+
5
+ interface PaginationVariant {
6
+
7
+ }
8
+
9
+ type PaginationVariantMap = {
10
+ [key in keyof PaginationVariant]: Array<PaginationVariant[key]>
11
+ }
12
+
13
+ export type PaginationVariantProps = {
14
+ [key in keyof PaginationVariant]?: ConditionalValue<PaginationVariant[key]> | undefined
15
+ }
16
+
17
+ export interface PaginationRecipe {
18
+ __type: PaginationVariantProps
19
+ (props?: PaginationVariantProps): Pretty<Record<"root" | "item" | "ellipsis" | "prevTrigger" | "nextTrigger", string>>
20
+ raw: (props?: PaginationVariantProps) => PaginationVariantProps
21
+ variantMap: PaginationVariantMap
22
+ variantKeys: Array<keyof PaginationVariant>
23
+ splitVariantProps<Props extends PaginationVariantProps>(props: Props): [PaginationVariantProps, Pretty<DistributiveOmit<Props, keyof PaginationVariantProps>>]
24
+ getVariantProps: (props?: PaginationVariantProps) => PaginationVariantProps
25
+ }
26
+
27
+
28
+ export declare const pagination: PaginationRecipe
@@ -0,0 +1,31 @@
1
+ /* eslint-disable */
2
+ import type { ConditionalValue } from '../types/index';
3
+ import type { DistributiveOmit, Pretty } from '../types/system-types';
4
+
5
+ interface PinInputVariant {
6
+ /**
7
+ * @default "md"
8
+ */
9
+ size: "xs" | "sm" | "md" | "lg" | "xl" | "2xl"
10
+ }
11
+
12
+ type PinInputVariantMap = {
13
+ [key in keyof PinInputVariant]: Array<PinInputVariant[key]>
14
+ }
15
+
16
+ export type PinInputVariantProps = {
17
+ [key in keyof PinInputVariant]?: ConditionalValue<PinInputVariant[key]> | undefined
18
+ }
19
+
20
+ export interface PinInputRecipe {
21
+ __type: PinInputVariantProps
22
+ (props?: PinInputVariantProps): Pretty<Record<"root" | "label" | "input" | "control", string>>
23
+ raw: (props?: PinInputVariantProps) => PinInputVariantProps
24
+ variantMap: PinInputVariantMap
25
+ variantKeys: Array<keyof PinInputVariant>
26
+ splitVariantProps<Props extends PinInputVariantProps>(props: Props): [PinInputVariantProps, Pretty<DistributiveOmit<Props, keyof PinInputVariantProps>>]
27
+ getVariantProps: (props?: PinInputVariantProps) => PinInputVariantProps
28
+ }
29
+
30
+
31
+ export declare const pinInput: PinInputRecipe
@@ -0,0 +1,28 @@
1
+ /* eslint-disable */
2
+ import type { ConditionalValue } from '../types/index';
3
+ import type { DistributiveOmit, Pretty } from '../types/system-types';
4
+
5
+ interface PopoverVariant {
6
+
7
+ }
8
+
9
+ type PopoverVariantMap = {
10
+ [key in keyof PopoverVariant]: Array<PopoverVariant[key]>
11
+ }
12
+
13
+ export type PopoverVariantProps = {
14
+ [key in keyof PopoverVariant]?: ConditionalValue<PopoverVariant[key]> | undefined
15
+ }
16
+
17
+ export interface PopoverRecipe {
18
+ __type: PopoverVariantProps
19
+ (props?: PopoverVariantProps): Pretty<Record<"arrow" | "arrowTip" | "anchor" | "trigger" | "indicator" | "positioner" | "content" | "title" | "description" | "closeTrigger", string>>
20
+ raw: (props?: PopoverVariantProps) => PopoverVariantProps
21
+ variantMap: PopoverVariantMap
22
+ variantKeys: Array<keyof PopoverVariant>
23
+ splitVariantProps<Props extends PopoverVariantProps>(props: Props): [PopoverVariantProps, Pretty<DistributiveOmit<Props, keyof PopoverVariantProps>>]
24
+ getVariantProps: (props?: PopoverVariantProps) => PopoverVariantProps
25
+ }
26
+
27
+
28
+ export declare const popover: PopoverRecipe
@@ -0,0 +1,31 @@
1
+ /* eslint-disable */
2
+ import type { ConditionalValue } from '../types/index';
3
+ import type { DistributiveOmit, Pretty } from '../types/system-types';
4
+
5
+ interface ProgressVariant {
6
+ /**
7
+ * @default "md"
8
+ */
9
+ size: "sm" | "md" | "lg"
10
+ }
11
+
12
+ type ProgressVariantMap = {
13
+ [key in keyof ProgressVariant]: Array<ProgressVariant[key]>
14
+ }
15
+
16
+ export type ProgressVariantProps = {
17
+ [key in keyof ProgressVariant]?: ConditionalValue<ProgressVariant[key]> | undefined
18
+ }
19
+
20
+ export interface ProgressRecipe {
21
+ __type: ProgressVariantProps
22
+ (props?: ProgressVariantProps): Pretty<Record<"root" | "label" | "track" | "range" | "valueText" | "view" | "circle" | "circleTrack" | "circleRange", string>>
23
+ raw: (props?: ProgressVariantProps) => ProgressVariantProps
24
+ variantMap: ProgressVariantMap
25
+ variantKeys: Array<keyof ProgressVariant>
26
+ splitVariantProps<Props extends ProgressVariantProps>(props: Props): [ProgressVariantProps, Pretty<DistributiveOmit<Props, keyof ProgressVariantProps>>]
27
+ getVariantProps: (props?: ProgressVariantProps) => ProgressVariantProps
28
+ }
29
+
30
+
31
+ export declare const progress: ProgressRecipe
@@ -0,0 +1,28 @@
1
+ /* eslint-disable */
2
+ import type { ConditionalValue } from '../types/index';
3
+ import type { DistributiveOmit, Pretty } from '../types/system-types';
4
+
5
+ interface QrCodeVariant {
6
+
7
+ }
8
+
9
+ type QrCodeVariantMap = {
10
+ [key in keyof QrCodeVariant]: Array<QrCodeVariant[key]>
11
+ }
12
+
13
+ export type QrCodeVariantProps = {
14
+ [key in keyof QrCodeVariant]?: ConditionalValue<QrCodeVariant[key]> | undefined
15
+ }
16
+
17
+ export interface QrCodeRecipe {
18
+ __type: QrCodeVariantProps
19
+ (props?: QrCodeVariantProps): Pretty<Record<"root" | "frame" | "pattern" | "overlay", string>>
20
+ raw: (props?: QrCodeVariantProps) => QrCodeVariantProps
21
+ variantMap: QrCodeVariantMap
22
+ variantKeys: Array<keyof QrCodeVariant>
23
+ splitVariantProps<Props extends QrCodeVariantProps>(props: Props): [QrCodeVariantProps, Pretty<DistributiveOmit<Props, keyof QrCodeVariantProps>>]
24
+ getVariantProps: (props?: QrCodeVariantProps) => QrCodeVariantProps
25
+ }
26
+
27
+
28
+ export declare const qrCode: QrCodeRecipe
@@ -0,0 +1,35 @@
1
+ /* eslint-disable */
2
+ import type { ConditionalValue } from '../types/index';
3
+ import type { DistributiveOmit, Pretty } from '../types/system-types';
4
+
5
+ interface RadioButtonGroupVariant {
6
+ /**
7
+ * @default "solid"
8
+ */
9
+ variant: "solid" | "outline"
10
+ /**
11
+ * @default "md"
12
+ */
13
+ size: "sm" | "md" | "lg" | "xl"
14
+ }
15
+
16
+ type RadioButtonGroupVariantMap = {
17
+ [key in keyof RadioButtonGroupVariant]: Array<RadioButtonGroupVariant[key]>
18
+ }
19
+
20
+ export type RadioButtonGroupVariantProps = {
21
+ [key in keyof RadioButtonGroupVariant]?: ConditionalValue<RadioButtonGroupVariant[key]> | undefined
22
+ }
23
+
24
+ export interface RadioButtonGroupRecipe {
25
+ __type: RadioButtonGroupVariantProps
26
+ (props?: RadioButtonGroupVariantProps): Pretty<Record<"root" | "label" | "item" | "itemText" | "itemControl" | "indicator", string>>
27
+ raw: (props?: RadioButtonGroupVariantProps) => RadioButtonGroupVariantProps
28
+ variantMap: RadioButtonGroupVariantMap
29
+ variantKeys: Array<keyof RadioButtonGroupVariant>
30
+ splitVariantProps<Props extends RadioButtonGroupVariantProps>(props: Props): [RadioButtonGroupVariantProps, Pretty<DistributiveOmit<Props, keyof RadioButtonGroupVariantProps>>]
31
+ getVariantProps: (props?: RadioButtonGroupVariantProps) => RadioButtonGroupVariantProps
32
+ }
33
+
34
+
35
+ export declare const radioButtonGroup: RadioButtonGroupRecipe
@@ -0,0 +1,31 @@
1
+ /* eslint-disable */
2
+ import type { ConditionalValue } from '../types/index';
3
+ import type { DistributiveOmit, Pretty } from '../types/system-types';
4
+
5
+ interface RadioGroupVariant {
6
+ /**
7
+ * @default "md"
8
+ */
9
+ size: "sm" | "md" | "lg"
10
+ }
11
+
12
+ type RadioGroupVariantMap = {
13
+ [key in keyof RadioGroupVariant]: Array<RadioGroupVariant[key]>
14
+ }
15
+
16
+ export type RadioGroupVariantProps = {
17
+ [key in keyof RadioGroupVariant]?: ConditionalValue<RadioGroupVariant[key]> | undefined
18
+ }
19
+
20
+ export interface RadioGroupRecipe {
21
+ __type: RadioGroupVariantProps
22
+ (props?: RadioGroupVariantProps): Pretty<Record<"root" | "label" | "item" | "itemText" | "itemControl" | "indicator", string>>
23
+ raw: (props?: RadioGroupVariantProps) => RadioGroupVariantProps
24
+ variantMap: RadioGroupVariantMap
25
+ variantKeys: Array<keyof RadioGroupVariant>
26
+ splitVariantProps<Props extends RadioGroupVariantProps>(props: Props): [RadioGroupVariantProps, Pretty<DistributiveOmit<Props, keyof RadioGroupVariantProps>>]
27
+ getVariantProps: (props?: RadioGroupVariantProps) => RadioGroupVariantProps
28
+ }
29
+
30
+
31
+ export declare const radioGroup: RadioGroupRecipe
@@ -0,0 +1,31 @@
1
+ /* eslint-disable */
2
+ import type { ConditionalValue } from '../types/index';
3
+ import type { DistributiveOmit, Pretty } from '../types/system-types';
4
+
5
+ interface RatingGroupVariant {
6
+ /**
7
+ * @default "md"
8
+ */
9
+ size: "sm" | "md" | "lg"
10
+ }
11
+
12
+ type RatingGroupVariantMap = {
13
+ [key in keyof RatingGroupVariant]: Array<RatingGroupVariant[key]>
14
+ }
15
+
16
+ export type RatingGroupVariantProps = {
17
+ [key in keyof RatingGroupVariant]?: ConditionalValue<RatingGroupVariant[key]> | undefined
18
+ }
19
+
20
+ export interface RatingGroupRecipe {
21
+ __type: RatingGroupVariantProps
22
+ (props?: RatingGroupVariantProps): Pretty<Record<"root" | "label" | "item" | "control", string>>
23
+ raw: (props?: RatingGroupVariantProps) => RatingGroupVariantProps
24
+ variantMap: RatingGroupVariantMap
25
+ variantKeys: Array<keyof RatingGroupVariant>
26
+ splitVariantProps<Props extends RatingGroupVariantProps>(props: Props): [RatingGroupVariantProps, Pretty<DistributiveOmit<Props, keyof RatingGroupVariantProps>>]
27
+ getVariantProps: (props?: RatingGroupVariantProps) => RatingGroupVariantProps
28
+ }
29
+
30
+
31
+ export declare const ratingGroup: RatingGroupRecipe
@@ -0,0 +1,31 @@
1
+ /* eslint-disable */
2
+ import type { ConditionalValue } from '../types/index';
3
+ import type { DistributiveOmit, Pretty } from '../types/system-types';
4
+
5
+ interface SegmentGroupVariant {
6
+ /**
7
+ * @default "md"
8
+ */
9
+ size: "sm" | "md"
10
+ }
11
+
12
+ type SegmentGroupVariantMap = {
13
+ [key in keyof SegmentGroupVariant]: Array<SegmentGroupVariant[key]>
14
+ }
15
+
16
+ export type SegmentGroupVariantProps = {
17
+ [key in keyof SegmentGroupVariant]?: ConditionalValue<SegmentGroupVariant[key]> | undefined
18
+ }
19
+
20
+ export interface SegmentGroupRecipe {
21
+ __type: SegmentGroupVariantProps
22
+ (props?: SegmentGroupVariantProps): Pretty<Record<"root" | "label" | "item" | "itemText" | "itemControl" | "indicator", string>>
23
+ raw: (props?: SegmentGroupVariantProps) => SegmentGroupVariantProps
24
+ variantMap: SegmentGroupVariantMap
25
+ variantKeys: Array<keyof SegmentGroupVariant>
26
+ splitVariantProps<Props extends SegmentGroupVariantProps>(props: Props): [SegmentGroupVariantProps, Pretty<DistributiveOmit<Props, keyof SegmentGroupVariantProps>>]
27
+ getVariantProps: (props?: SegmentGroupVariantProps) => SegmentGroupVariantProps
28
+ }
29
+
30
+
31
+ export declare const segmentGroup: SegmentGroupRecipe
@@ -0,0 +1,35 @@
1
+ /* eslint-disable */
2
+ import type { ConditionalValue } from '../types/index';
3
+ import type { DistributiveOmit, Pretty } from '../types/system-types';
4
+
5
+ interface SelectVariant {
6
+ /**
7
+ * @default "outline"
8
+ */
9
+ variant: "outline" | "ghost"
10
+ /**
11
+ * @default "md"
12
+ */
13
+ size: "sm" | "md" | "lg"
14
+ }
15
+
16
+ type SelectVariantMap = {
17
+ [key in keyof SelectVariant]: Array<SelectVariant[key]>
18
+ }
19
+
20
+ export type SelectVariantProps = {
21
+ [key in keyof SelectVariant]?: ConditionalValue<SelectVariant[key]> | undefined
22
+ }
23
+
24
+ export interface SelectRecipe {
25
+ __type: SelectVariantProps
26
+ (props?: SelectVariantProps): Pretty<Record<"label" | "positioner" | "trigger" | "indicator" | "clearTrigger" | "item" | "itemText" | "itemIndicator" | "itemGroup" | "itemGroupLabel" | "list" | "content" | "root" | "control" | "valueText", string>>
27
+ raw: (props?: SelectVariantProps) => SelectVariantProps
28
+ variantMap: SelectVariantMap
29
+ variantKeys: Array<keyof SelectVariant>
30
+ splitVariantProps<Props extends SelectVariantProps>(props: Props): [SelectVariantProps, Pretty<DistributiveOmit<Props, keyof SelectVariantProps>>]
31
+ getVariantProps: (props?: SelectVariantProps) => SelectVariantProps
32
+ }
33
+
34
+
35
+ export declare const select: SelectRecipe
@@ -0,0 +1,28 @@
1
+ /* eslint-disable */
2
+ import type { ConditionalValue } from '../types/index';
3
+ import type { DistributiveOmit, Pretty } from '../types/system-types';
4
+
5
+ interface SignaturePadVariant {
6
+
7
+ }
8
+
9
+ type SignaturePadVariantMap = {
10
+ [key in keyof SignaturePadVariant]: Array<SignaturePadVariant[key]>
11
+ }
12
+
13
+ export type SignaturePadVariantProps = {
14
+ [key in keyof SignaturePadVariant]?: ConditionalValue<SignaturePadVariant[key]> | undefined
15
+ }
16
+
17
+ export interface SignaturePadRecipe {
18
+ __type: SignaturePadVariantProps
19
+ (props?: SignaturePadVariantProps): Pretty<Record<"root" | "control" | "segment" | "segmentPath" | "guide" | "clearTrigger" | "label", string>>
20
+ raw: (props?: SignaturePadVariantProps) => SignaturePadVariantProps
21
+ variantMap: SignaturePadVariantMap
22
+ variantKeys: Array<keyof SignaturePadVariant>
23
+ splitVariantProps<Props extends SignaturePadVariantProps>(props: Props): [SignaturePadVariantProps, Pretty<DistributiveOmit<Props, keyof SignaturePadVariantProps>>]
24
+ getVariantProps: (props?: SignaturePadVariantProps) => SignaturePadVariantProps
25
+ }
26
+
27
+
28
+ export declare const signaturePad: SignaturePadRecipe
@@ -0,0 +1,28 @@
1
+ /* eslint-disable */
2
+ import type { ConditionalValue } from '../types/index';
3
+ import type { DistributiveOmit, Pretty } from '../types/system-types';
4
+
5
+ interface SkeletonVariant {
6
+
7
+ }
8
+
9
+ type SkeletonVariantMap = {
10
+ [key in keyof SkeletonVariant]: Array<SkeletonVariant[key]>
11
+ }
12
+
13
+ export type SkeletonVariantProps = {
14
+ [key in keyof SkeletonVariant]?: ConditionalValue<SkeletonVariant[key]> | undefined
15
+ }
16
+
17
+ export interface SkeletonRecipe {
18
+ __type: SkeletonVariantProps
19
+ (props?: SkeletonVariantProps): string
20
+ raw: (props?: SkeletonVariantProps) => SkeletonVariantProps
21
+ variantMap: SkeletonVariantMap
22
+ variantKeys: Array<keyof SkeletonVariant>
23
+ splitVariantProps<Props extends SkeletonVariantProps>(props: Props): [SkeletonVariantProps, Pretty<DistributiveOmit<Props, keyof SkeletonVariantProps>>]
24
+ getVariantProps: (props?: SkeletonVariantProps) => SkeletonVariantProps
25
+ }
26
+
27
+
28
+ export declare const skeleton: SkeletonRecipe
@@ -0,0 +1,31 @@
1
+ /* eslint-disable */
2
+ import type { ConditionalValue } from '../types/index';
3
+ import type { DistributiveOmit, Pretty } from '../types/system-types';
4
+
5
+ interface SliderVariant {
6
+ /**
7
+ * @default "md"
8
+ */
9
+ size: "sm" | "md" | "lg"
10
+ }
11
+
12
+ type SliderVariantMap = {
13
+ [key in keyof SliderVariant]: Array<SliderVariant[key]>
14
+ }
15
+
16
+ export type SliderVariantProps = {
17
+ [key in keyof SliderVariant]?: ConditionalValue<SliderVariant[key]> | undefined
18
+ }
19
+
20
+ export interface SliderRecipe {
21
+ __type: SliderVariantProps
22
+ (props?: SliderVariantProps): Pretty<Record<"root" | "label" | "thumb" | "valueText" | "track" | "range" | "control" | "markerGroup" | "marker", string>>
23
+ raw: (props?: SliderVariantProps) => SliderVariantProps
24
+ variantMap: SliderVariantMap
25
+ variantKeys: Array<keyof SliderVariant>
26
+ splitVariantProps<Props extends SliderVariantProps>(props: Props): [SliderVariantProps, Pretty<DistributiveOmit<Props, keyof SliderVariantProps>>]
27
+ getVariantProps: (props?: SliderVariantProps) => SliderVariantProps
28
+ }
29
+
30
+
31
+ export declare const slider: SliderRecipe
@@ -0,0 +1,31 @@
1
+ /* eslint-disable */
2
+ import type { ConditionalValue } from '../types/index';
3
+ import type { DistributiveOmit, Pretty } from '../types/system-types';
4
+
5
+ interface SpinnerVariant {
6
+ /**
7
+ * @default "md"
8
+ */
9
+ size: "xs" | "sm" | "md" | "lg" | "xl"
10
+ }
11
+
12
+ type SpinnerVariantMap = {
13
+ [key in keyof SpinnerVariant]: Array<SpinnerVariant[key]>
14
+ }
15
+
16
+ export type SpinnerVariantProps = {
17
+ [key in keyof SpinnerVariant]?: ConditionalValue<SpinnerVariant[key]> | undefined
18
+ }
19
+
20
+ export interface SpinnerRecipe {
21
+ __type: SpinnerVariantProps
22
+ (props?: SpinnerVariantProps): string
23
+ raw: (props?: SpinnerVariantProps) => SpinnerVariantProps
24
+ variantMap: SpinnerVariantMap
25
+ variantKeys: Array<keyof SpinnerVariant>
26
+ splitVariantProps<Props extends SpinnerVariantProps>(props: Props): [SpinnerVariantProps, Pretty<DistributiveOmit<Props, keyof SpinnerVariantProps>>]
27
+ getVariantProps: (props?: SpinnerVariantProps) => SpinnerVariantProps
28
+ }
29
+
30
+
31
+ export declare const spinner: SpinnerRecipe
@@ -0,0 +1,28 @@
1
+ /* eslint-disable */
2
+ import type { ConditionalValue } from '../types/index';
3
+ import type { DistributiveOmit, Pretty } from '../types/system-types';
4
+
5
+ interface SplitterVariant {
6
+
7
+ }
8
+
9
+ type SplitterVariantMap = {
10
+ [key in keyof SplitterVariant]: Array<SplitterVariant[key]>
11
+ }
12
+
13
+ export type SplitterVariantProps = {
14
+ [key in keyof SplitterVariant]?: ConditionalValue<SplitterVariant[key]> | undefined
15
+ }
16
+
17
+ export interface SplitterRecipe {
18
+ __type: SplitterVariantProps
19
+ (props?: SplitterVariantProps): Pretty<Record<"root" | "panel" | "resizeTrigger", string>>
20
+ raw: (props?: SplitterVariantProps) => SplitterVariantProps
21
+ variantMap: SplitterVariantMap
22
+ variantKeys: Array<keyof SplitterVariant>
23
+ splitVariantProps<Props extends SplitterVariantProps>(props: Props): [SplitterVariantProps, Pretty<DistributiveOmit<Props, keyof SplitterVariantProps>>]
24
+ getVariantProps: (props?: SplitterVariantProps) => SplitterVariantProps
25
+ }
26
+
27
+
28
+ export declare const splitter: SplitterRecipe
@@ -0,0 +1,31 @@
1
+ /* eslint-disable */
2
+ import type { ConditionalValue } from '../types/index';
3
+ import type { DistributiveOmit, Pretty } from '../types/system-types';
4
+
5
+ interface SwitchRecipeVariant {
6
+ /**
7
+ * @default "md"
8
+ */
9
+ size: "sm" | "md" | "lg"
10
+ }
11
+
12
+ type SwitchRecipeVariantMap = {
13
+ [key in keyof SwitchRecipeVariant]: Array<SwitchRecipeVariant[key]>
14
+ }
15
+
16
+ export type SwitchRecipeVariantProps = {
17
+ [key in keyof SwitchRecipeVariant]?: ConditionalValue<SwitchRecipeVariant[key]> | undefined
18
+ }
19
+
20
+ export interface SwitchRecipeRecipe {
21
+ __type: SwitchRecipeVariantProps
22
+ (props?: SwitchRecipeVariantProps): Pretty<Record<"root" | "label" | "control" | "thumb", string>>
23
+ raw: (props?: SwitchRecipeVariantProps) => SwitchRecipeVariantProps
24
+ variantMap: SwitchRecipeVariantMap
25
+ variantKeys: Array<keyof SwitchRecipeVariant>
26
+ splitVariantProps<Props extends SwitchRecipeVariantProps>(props: Props): [SwitchRecipeVariantProps, Pretty<DistributiveOmit<Props, keyof SwitchRecipeVariantProps>>]
27
+ getVariantProps: (props?: SwitchRecipeVariantProps) => SwitchRecipeVariantProps
28
+ }
29
+
30
+
31
+ export declare const switchRecipe: SwitchRecipeRecipe
@@ -0,0 +1,35 @@
1
+ /* eslint-disable */
2
+ import type { ConditionalValue } from '../types/index';
3
+ import type { DistributiveOmit, Pretty } from '../types/system-types';
4
+
5
+ interface TableVariant {
6
+ /**
7
+ * @default "plain"
8
+ */
9
+ variant: "outline" | "plain"
10
+ /**
11
+ * @default "md"
12
+ */
13
+ size: "sm" | "md"
14
+ }
15
+
16
+ type TableVariantMap = {
17
+ [key in keyof TableVariant]: Array<TableVariant[key]>
18
+ }
19
+
20
+ export type TableVariantProps = {
21
+ [key in keyof TableVariant]?: ConditionalValue<TableVariant[key]> | undefined
22
+ }
23
+
24
+ export interface TableRecipe {
25
+ __type: TableVariantProps
26
+ (props?: TableVariantProps): Pretty<Record<"root" | "body" | "cell" | "footer" | "head" | "header" | "row" | "caption", string>>
27
+ raw: (props?: TableVariantProps) => TableVariantProps
28
+ variantMap: TableVariantMap
29
+ variantKeys: Array<keyof TableVariant>
30
+ splitVariantProps<Props extends TableVariantProps>(props: Props): [TableVariantProps, Pretty<DistributiveOmit<Props, keyof TableVariantProps>>]
31
+ getVariantProps: (props?: TableVariantProps) => TableVariantProps
32
+ }
33
+
34
+
35
+ export declare const table: TableRecipe
@@ -0,0 +1,35 @@
1
+ /* eslint-disable */
2
+ import type { ConditionalValue } from '../types/index';
3
+ import type { DistributiveOmit, Pretty } from '../types/system-types';
4
+
5
+ interface TabsVariant {
6
+ /**
7
+ * @default "line"
8
+ */
9
+ variant: "enclosed" | "line" | "outline"
10
+ /**
11
+ * @default "md"
12
+ */
13
+ size: "sm" | "md" | "lg"
14
+ }
15
+
16
+ type TabsVariantMap = {
17
+ [key in keyof TabsVariant]: Array<TabsVariant[key]>
18
+ }
19
+
20
+ export type TabsVariantProps = {
21
+ [key in keyof TabsVariant]?: TabsVariant[key] | undefined
22
+ }
23
+
24
+ export interface TabsRecipe {
25
+ __type: TabsVariantProps
26
+ (props?: TabsVariantProps): Pretty<Record<"root" | "list" | "trigger" | "content" | "indicator", string>>
27
+ raw: (props?: TabsVariantProps) => TabsVariantProps
28
+ variantMap: TabsVariantMap
29
+ variantKeys: Array<keyof TabsVariant>
30
+ splitVariantProps<Props extends TabsVariantProps>(props: Props): [TabsVariantProps, Pretty<DistributiveOmit<Props, keyof TabsVariantProps>>]
31
+ getVariantProps: (props?: TabsVariantProps) => TabsVariantProps
32
+ }
33
+
34
+
35
+ export declare const tabs: TabsRecipe