@jongh/ui 1.6.5 → 2.20260902.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 (316) hide show
  1. package/dist/base.css +1103 -0
  2. package/dist/blue.css +155 -0
  3. package/dist/chunks/component-accordion-CNhK3gho.js +27 -0
  4. package/dist/chunks/component-avatar-C5ox3FhU.js +15 -0
  5. package/dist/chunks/component-badge-GyL8C7n9.js +23 -0
  6. package/dist/chunks/component-box-BnXf833v.js +26 -0
  7. package/dist/chunks/component-button-cnnLKCl_.js +21 -0
  8. package/dist/chunks/component-calendar-D53mkOdW.js +240 -0
  9. package/dist/chunks/component-center-BIp6NkIt.js +32 -0
  10. package/dist/chunks/component-checkbox-cJlGSnlk.js +54 -0
  11. package/dist/chunks/component-dialog-yBIkthjw.js +35 -0
  12. package/dist/chunks/component-grid-BKLFatKL.js +38 -0
  13. package/dist/chunks/component-h-stack-ODw00BMb.js +36 -0
  14. package/dist/chunks/component-select-CHwGLpGT.js +52 -0
  15. package/dist/chunks/component-slider-Ba5H5eY3.js +16 -0
  16. package/dist/chunks/component-tabs-BIWU8zcA.js +58 -0
  17. package/dist/chunks/component-textfield-CCdnfRzb.js +53 -0
  18. package/dist/chunks/component-v-stack-_k842HHc.js +36 -0
  19. package/dist/chunks/recipe-accordion-recipe-DPDnNF9J.js +27 -0
  20. package/dist/chunks/recipe-avatar-recipe-HkwMS2OJ.js +24 -0
  21. package/dist/chunks/recipe-badge-recipe-DWojym5V.js +136 -0
  22. package/dist/chunks/recipe-button-recipe-BA1JNmBF.js +36 -0
  23. package/dist/chunks/recipe-calendar-recipe-CUjveeyt.js +31 -0
  24. package/dist/chunks/recipe-center-recipe-CBm4FTPj.js +24 -0
  25. package/dist/chunks/recipe-checkbox-recipe-CCDU79zw.js +31 -0
  26. package/dist/chunks/recipe-dialog-recipe-Dp_2WfN_.js +31 -0
  27. package/dist/chunks/recipe-layout-recipe-CXAjEcDn.js +20 -0
  28. package/dist/chunks/recipe-select-recipe-Chdpfb_N.js +33 -0
  29. package/dist/chunks/recipe-slider-recipe-Bn_q7Je8.js +25 -0
  30. package/dist/chunks/recipe-tabs-recipe-Bo5qcI1u.js +26 -0
  31. package/dist/chunks/recipe-textfield-recipe-szIwdV6q.js +27 -0
  32. package/dist/chunks/rolldown-runtime-CKyOoeiN.js +12 -0
  33. package/dist/index.d.ts +21694 -0
  34. package/dist/index.js +583 -0
  35. package/dist/purple.css +155 -0
  36. package/dist/recipes/accordion-recipe.css +118 -0
  37. package/dist/recipes/avatar-recipe.css +44 -0
  38. package/dist/recipes/badge-recipe.css +47 -0
  39. package/dist/recipes/button-recipe.css +153 -0
  40. package/dist/recipes/calendar-recipe.css +145 -0
  41. package/dist/recipes/center-recipe.css +13 -0
  42. package/dist/recipes/checkbox-recipe.css +156 -0
  43. package/dist/recipes/dialog-recipe.css +101 -0
  44. package/dist/recipes/layout-recipe.css +427 -0
  45. package/dist/recipes/select-recipe.css +175 -0
  46. package/dist/recipes/slider-recipe.css +60 -0
  47. package/dist/recipes/tabs-recipe.css +76 -0
  48. package/dist/recipes/textfield-recipe.css +95 -0
  49. package/dist/style.css +1 -0
  50. package/package.json +62 -37
  51. package/.storybook/index.css +0 -1
  52. package/.storybook/main.ts +0 -40
  53. package/.storybook/preview.ts +0 -16
  54. package/.storybook/vitest.setup.ts +0 -9
  55. package/.turbo/turbo-build.log +0 -79
  56. package/CHANGELOG.md +0 -54
  57. package/chromatic.config.json +0 -6
  58. package/eslint.config.mjs +0 -14
  59. package/index.html +0 -13
  60. package/panda.config.ts +0 -13
  61. package/postcss.config.cjs +0 -3
  62. package/preset.ts +0 -134
  63. package/src/component/accordion/ui/index.tsx +0 -80
  64. package/src/component/accordion/ui/recipe.ts +0 -65
  65. package/src/component/avatar/ui/index.tsx +0 -47
  66. package/src/component/avatar/ui/recipe.ts +0 -30
  67. package/src/component/button/ui/index.tsx +0 -29
  68. package/src/component/button/ui/recipe.ts +0 -102
  69. package/src/component/chip/ui/index.tsx +0 -30
  70. package/src/component/chip/ui/recipe.ts +0 -112
  71. package/src/component/dialog/ui/index.tsx +0 -73
  72. package/src/component/dialog/ui/recipe.ts +0 -92
  73. package/src/component/select/ui/index.tsx +0 -128
  74. package/src/component/select/ui/recipe.ts +0 -142
  75. package/src/component/slider/ui/index.tsx +0 -61
  76. package/src/component/slider/ui/recipe.ts +0 -52
  77. package/src/component/tabs/ui/index.tsx +0 -61
  78. package/src/component/tabs/ui/recipe.ts +0 -59
  79. package/src/hooks/createContext.tsx +0 -34
  80. package/src/hooks/useComposedRefs.ts +0 -20
  81. package/src/hooks/useControllableState.ts +0 -87
  82. package/src/hooks/useKeyboardEvent.ts +0 -58
  83. package/src/stories/accordion.stories.tsx +0 -63
  84. package/src/stories/avatar.stories.tsx +0 -33
  85. package/src/stories/button.stories.tsx +0 -53
  86. package/src/stories/chip.stories.tsx +0 -69
  87. package/src/stories/dialog.stories.tsx +0 -134
  88. package/src/stories/select.stories.tsx +0 -35
  89. package/src/stories/slider.stories.tsx +0 -31
  90. package/src/stories/tabs.stories.tsx +0 -63
  91. package/src/test/accordion.test.tsx +0 -66
  92. package/src/test/tabs.test.tsx +0 -30
  93. package/src/types/index.ts +0 -1
  94. package/src/utils/createStyleContext.tsx +0 -108
  95. package/src/utils/defineSafe.ts +0 -46
  96. package/src/utils/getObjectKeys.ts +0 -20
  97. package/src/vite-env.d.ts +0 -1
  98. package/storybook-static/assets/Color-F6OSRLHC-CrKta8Qx.js +0 -1
  99. package/storybook-static/assets/DocsRenderer-CFRXHY34-Crd9Mepd.js +0 -586
  100. package/storybook-static/assets/_commonjsHelpers-Cpj98o6Y.js +0 -1
  101. package/storybook-static/assets/accordion.stories-0Om0AnMm.js +0 -50
  102. package/storybook-static/assets/avatar.stories-DMDsrSks.js +0 -16
  103. package/storybook-static/assets/axe-Dzet_oDA.js +0 -30
  104. package/storybook-static/assets/button.stories-CuVC-3x-.js +0 -40
  105. package/storybook-static/assets/chip.stories-FBIp8XNi.js +0 -48
  106. package/storybook-static/assets/chunk-XP5HYGXS-D5tuasO7.js +0 -1
  107. package/storybook-static/assets/createLucideIcon-DmXe7Z8R.js +0 -21
  108. package/storybook-static/assets/dialog.stories-3WsEvXt4.js +0 -106
  109. package/storybook-static/assets/entry-preview-Bkgdgq1b.js +0 -10
  110. package/storybook-static/assets/entry-preview-docs-zLz1Es7d.js +0 -46
  111. package/storybook-static/assets/iframe-LPPPXabV.js +0 -199
  112. package/storybook-static/assets/index-Bklpsb39.js +0 -1
  113. package/storybook-static/assets/index-BrlJLjep.js +0 -24
  114. package/storybook-static/assets/index-C2tRLqin.js +0 -41
  115. package/storybook-static/assets/index-CBft-ReK.js +0 -8
  116. package/storybook-static/assets/index-CSbWd7UJ.js +0 -1
  117. package/storybook-static/assets/index-ClcD9ViR.js +0 -9
  118. package/storybook-static/assets/index-Cu4lwwaE.js +0 -1
  119. package/storybook-static/assets/index-Cvkemp2J.js +0 -1
  120. package/storybook-static/assets/index-D59aU5s_.js +0 -240
  121. package/storybook-static/assets/index-DNo8LKN3.js +0 -1
  122. package/storybook-static/assets/index-DUy19JZU.js +0 -1
  123. package/storybook-static/assets/index-D_35mznO.js +0 -1
  124. package/storybook-static/assets/index-DrFu-skq.js +0 -6
  125. package/storybook-static/assets/index-DvbTp2M2.js +0 -1
  126. package/storybook-static/assets/index-rtmQni2k.js +0 -1
  127. package/storybook-static/assets/jsx-runtime-BYYWji4R.js +0 -9
  128. package/storybook-static/assets/matchers-57EZJSQE-oeXCqs4p.js +0 -14
  129. package/storybook-static/assets/preview-1l6V4UsQ.js +0 -1
  130. package/storybook-static/assets/preview-B3PTUHS7.js +0 -1
  131. package/storybook-static/assets/preview-BBWR9nbA.js +0 -1
  132. package/storybook-static/assets/preview-BCV5r-Ja.js +0 -1
  133. package/storybook-static/assets/preview-BWzBA1C2.js +0 -396
  134. package/storybook-static/assets/preview-Bb56VplF.js +0 -2
  135. package/storybook-static/assets/preview-Bl8rsKRy.js +0 -1
  136. package/storybook-static/assets/preview-Bm-a94Ct.js +0 -2
  137. package/storybook-static/assets/preview-Br-h4d84.js +0 -1
  138. package/storybook-static/assets/preview-D77C14du.js +0 -34
  139. package/storybook-static/assets/preview-DC8N7cZb.css +0 -1
  140. package/storybook-static/assets/preview-DGUiP6tS.js +0 -7
  141. package/storybook-static/assets/react-18-BPs3tMGP.js +0 -1
  142. package/storybook-static/assets/select.stories-AN8Hb81Z.js +0 -20
  143. package/storybook-static/assets/slider.stories-CxOczq0y.js +0 -12
  144. package/storybook-static/assets/tabs.stories-BbTU4QU3.js +0 -28
  145. package/storybook-static/favicon.svg +0 -1
  146. package/storybook-static/iframe.html +0 -666
  147. package/storybook-static/index.html +0 -193
  148. package/storybook-static/index.json +0 -1
  149. package/storybook-static/nunito-sans-bold-italic.woff2 +0 -0
  150. package/storybook-static/nunito-sans-bold.woff2 +0 -0
  151. package/storybook-static/nunito-sans-italic.woff2 +0 -0
  152. package/storybook-static/nunito-sans-regular.woff2 +0 -0
  153. package/storybook-static/project.json +0 -1
  154. package/storybook-static/sb-addons/a11y-12/manager-bundle.js +0 -3
  155. package/storybook-static/sb-addons/a11y-12/manager-bundle.js.LEGAL.txt +0 -0
  156. package/storybook-static/sb-addons/chromatic-com-storybook-10/manager-bundle.js +0 -331
  157. package/storybook-static/sb-addons/chromatic-com-storybook-10/manager-bundle.js.LEGAL.txt +0 -51
  158. package/storybook-static/sb-addons/controls-11/manager-bundle.js +0 -391
  159. package/storybook-static/sb-addons/controls-11/manager-bundle.js.LEGAL.txt +0 -0
  160. package/storybook-static/sb-addons/essentials-actions-3/manager-bundle.js +0 -3
  161. package/storybook-static/sb-addons/essentials-actions-3/manager-bundle.js.LEGAL.txt +0 -0
  162. package/storybook-static/sb-addons/essentials-backgrounds-5/manager-bundle.js +0 -12
  163. package/storybook-static/sb-addons/essentials-backgrounds-5/manager-bundle.js.LEGAL.txt +0 -0
  164. package/storybook-static/sb-addons/essentials-controls-2/manager-bundle.js +0 -391
  165. package/storybook-static/sb-addons/essentials-controls-2/manager-bundle.js.LEGAL.txt +0 -0
  166. package/storybook-static/sb-addons/essentials-docs-4/manager-bundle.js +0 -230
  167. package/storybook-static/sb-addons/essentials-docs-4/manager-bundle.js.LEGAL.txt +0 -0
  168. package/storybook-static/sb-addons/essentials-measure-8/manager-bundle.js +0 -3
  169. package/storybook-static/sb-addons/essentials-measure-8/manager-bundle.js.LEGAL.txt +0 -0
  170. package/storybook-static/sb-addons/essentials-outline-9/manager-bundle.js +0 -3
  171. package/storybook-static/sb-addons/essentials-outline-9/manager-bundle.js.LEGAL.txt +0 -0
  172. package/storybook-static/sb-addons/essentials-toolbars-7/manager-bundle.js +0 -3
  173. package/storybook-static/sb-addons/essentials-toolbars-7/manager-bundle.js.LEGAL.txt +0 -0
  174. package/storybook-static/sb-addons/essentials-viewport-6/manager-bundle.js +0 -3
  175. package/storybook-static/sb-addons/essentials-viewport-6/manager-bundle.js.LEGAL.txt +0 -0
  176. package/storybook-static/sb-addons/links-1/manager-bundle.js +0 -3
  177. package/storybook-static/sb-addons/links-1/manager-bundle.js.LEGAL.txt +0 -0
  178. package/storybook-static/sb-addons/storybook-core-core-server-presets-0/common-manager-bundle.js +0 -3
  179. package/storybook-static/sb-addons/storybook-core-core-server-presets-0/common-manager-bundle.js.LEGAL.txt +0 -0
  180. package/storybook-static/sb-addons/storybook-experimental-addon-test-13/manager-bundle.js +0 -211
  181. package/storybook-static/sb-addons/storybook-experimental-addon-test-13/manager-bundle.js.LEGAL.txt +0 -0
  182. package/storybook-static/sb-common-assets/favicon.svg +0 -1
  183. package/storybook-static/sb-common-assets/nunito-sans-bold-italic.woff2 +0 -0
  184. package/storybook-static/sb-common-assets/nunito-sans-bold.woff2 +0 -0
  185. package/storybook-static/sb-common-assets/nunito-sans-italic.woff2 +0 -0
  186. package/storybook-static/sb-common-assets/nunito-sans-regular.woff2 +0 -0
  187. package/storybook-static/sb-manager/globals-module-info.js +0 -1037
  188. package/storybook-static/sb-manager/globals-runtime.js +0 -40857
  189. package/storybook-static/sb-manager/globals.js +0 -48
  190. package/storybook-static/sb-manager/runtime.js +0 -11963
  191. package/styled-system/css/conditions.mjs +0 -36
  192. package/styled-system/css/css.d.ts +0 -22
  193. package/styled-system/css/css.mjs +0 -45
  194. package/styled-system/css/cva.d.ts +0 -6
  195. package/styled-system/css/cva.mjs +0 -87
  196. package/styled-system/css/cx.d.ts +0 -5
  197. package/styled-system/css/cx.mjs +0 -15
  198. package/styled-system/css/index.d.ts +0 -5
  199. package/styled-system/css/index.mjs +0 -4
  200. package/styled-system/css/sva.d.ts +0 -4
  201. package/styled-system/css/sva.mjs +0 -41
  202. package/styled-system/helpers.mjs +0 -336
  203. package/styled-system/jsx/aspect-ratio.d.ts +0 -10
  204. package/styled-system/jsx/aspect-ratio.mjs +0 -14
  205. package/styled-system/jsx/bleed.d.ts +0 -10
  206. package/styled-system/jsx/bleed.mjs +0 -14
  207. package/styled-system/jsx/box.d.ts +0 -10
  208. package/styled-system/jsx/box.mjs +0 -14
  209. package/styled-system/jsx/center.d.ts +0 -10
  210. package/styled-system/jsx/center.mjs +0 -14
  211. package/styled-system/jsx/circle.d.ts +0 -10
  212. package/styled-system/jsx/circle.mjs +0 -14
  213. package/styled-system/jsx/container.d.ts +0 -10
  214. package/styled-system/jsx/container.mjs +0 -14
  215. package/styled-system/jsx/cq.d.ts +0 -10
  216. package/styled-system/jsx/cq.mjs +0 -14
  217. package/styled-system/jsx/divider.d.ts +0 -10
  218. package/styled-system/jsx/divider.mjs +0 -14
  219. package/styled-system/jsx/factory-helper.mjs +0 -22
  220. package/styled-system/jsx/factory.d.ts +0 -3
  221. package/styled-system/jsx/factory.mjs +0 -80
  222. package/styled-system/jsx/flex.d.ts +0 -10
  223. package/styled-system/jsx/flex.mjs +0 -14
  224. package/styled-system/jsx/float.d.ts +0 -10
  225. package/styled-system/jsx/float.mjs +0 -14
  226. package/styled-system/jsx/grid-item.d.ts +0 -10
  227. package/styled-system/jsx/grid-item.mjs +0 -14
  228. package/styled-system/jsx/grid.d.ts +0 -10
  229. package/styled-system/jsx/grid.mjs +0 -14
  230. package/styled-system/jsx/hstack.d.ts +0 -10
  231. package/styled-system/jsx/hstack.mjs +0 -14
  232. package/styled-system/jsx/index.d.ts +0 -24
  233. package/styled-system/jsx/index.mjs +0 -22
  234. package/styled-system/jsx/is-valid-prop.d.ts +0 -11
  235. package/styled-system/jsx/is-valid-prop.mjs +0 -17
  236. package/styled-system/jsx/link-overlay.d.ts +0 -10
  237. package/styled-system/jsx/link-overlay.mjs +0 -14
  238. package/styled-system/jsx/spacer.d.ts +0 -10
  239. package/styled-system/jsx/spacer.mjs +0 -14
  240. package/styled-system/jsx/square.d.ts +0 -10
  241. package/styled-system/jsx/square.mjs +0 -14
  242. package/styled-system/jsx/stack.d.ts +0 -10
  243. package/styled-system/jsx/stack.mjs +0 -14
  244. package/styled-system/jsx/visually-hidden.d.ts +0 -10
  245. package/styled-system/jsx/visually-hidden.mjs +0 -14
  246. package/styled-system/jsx/vstack.d.ts +0 -10
  247. package/styled-system/jsx/vstack.mjs +0 -14
  248. package/styled-system/jsx/wrap.d.ts +0 -10
  249. package/styled-system/jsx/wrap.mjs +0 -14
  250. package/styled-system/patterns/aspect-ratio.d.ts +0 -21
  251. package/styled-system/patterns/aspect-ratio.mjs +0 -38
  252. package/styled-system/patterns/bleed.d.ts +0 -22
  253. package/styled-system/patterns/bleed.mjs +0 -24
  254. package/styled-system/patterns/box.d.ts +0 -21
  255. package/styled-system/patterns/box.mjs +0 -15
  256. package/styled-system/patterns/center.d.ts +0 -21
  257. package/styled-system/patterns/center.mjs +0 -21
  258. package/styled-system/patterns/circle.d.ts +0 -21
  259. package/styled-system/patterns/circle.mjs +0 -25
  260. package/styled-system/patterns/container.d.ts +0 -21
  261. package/styled-system/patterns/container.mjs +0 -21
  262. package/styled-system/patterns/cq.d.ts +0 -22
  263. package/styled-system/patterns/cq.mjs +0 -21
  264. package/styled-system/patterns/divider.d.ts +0 -23
  265. package/styled-system/patterns/divider.mjs +0 -25
  266. package/styled-system/patterns/flex.d.ts +0 -27
  267. package/styled-system/patterns/flex.mjs +0 -26
  268. package/styled-system/patterns/float.d.ts +0 -24
  269. package/styled-system/patterns/float.mjs +0 -52
  270. package/styled-system/patterns/grid-item.d.ts +0 -26
  271. package/styled-system/patterns/grid-item.mjs +0 -25
  272. package/styled-system/patterns/grid.d.ts +0 -25
  273. package/styled-system/patterns/grid.mjs +0 -27
  274. package/styled-system/patterns/hstack.d.ts +0 -22
  275. package/styled-system/patterns/hstack.mjs +0 -24
  276. package/styled-system/patterns/index.d.ts +0 -21
  277. package/styled-system/patterns/index.mjs +0 -20
  278. package/styled-system/patterns/link-overlay.d.ts +0 -21
  279. package/styled-system/patterns/link-overlay.mjs +0 -24
  280. package/styled-system/patterns/spacer.d.ts +0 -21
  281. package/styled-system/patterns/spacer.mjs +0 -21
  282. package/styled-system/patterns/square.d.ts +0 -21
  283. package/styled-system/patterns/square.mjs +0 -24
  284. package/styled-system/patterns/stack.d.ts +0 -24
  285. package/styled-system/patterns/stack.mjs +0 -24
  286. package/styled-system/patterns/visually-hidden.d.ts +0 -21
  287. package/styled-system/patterns/visually-hidden.mjs +0 -18
  288. package/styled-system/patterns/vstack.d.ts +0 -22
  289. package/styled-system/patterns/vstack.mjs +0 -24
  290. package/styled-system/patterns/wrap.d.ts +0 -25
  291. package/styled-system/patterns/wrap.mjs +0 -25
  292. package/styled-system/tokens/index.d.ts +0 -9
  293. package/styled-system/tokens/index.mjs +0 -1992
  294. package/styled-system/tokens/tokens.d.ts +0 -60
  295. package/styled-system/types/composition.d.ts +0 -164
  296. package/styled-system/types/conditions.d.ts +0 -274
  297. package/styled-system/types/csstype.d.ts +0 -21298
  298. package/styled-system/types/global.d.ts +0 -20
  299. package/styled-system/types/index.d.ts +0 -8
  300. package/styled-system/types/jsx.d.ts +0 -52
  301. package/styled-system/types/parts.d.ts +0 -8
  302. package/styled-system/types/pattern.d.ts +0 -78
  303. package/styled-system/types/prop-type.d.ts +0 -235
  304. package/styled-system/types/recipe.d.ts +0 -181
  305. package/styled-system/types/selectors.d.ts +0 -59
  306. package/styled-system/types/static-css.d.ts +0 -56
  307. package/styled-system/types/style-props.d.ts +0 -7468
  308. package/styled-system/types/system-types.d.ts +0 -109
  309. package/tsconfig.json +0 -13
  310. package/turbo/generators/config.cjs +0 -7
  311. package/turbo/generators/stories.cjs +0 -23
  312. package/turbo/generators/templates/stories.tsx.hbs +0 -16
  313. package/turbo/generators/templates/ui.tsx.hbs +0 -8
  314. package/turbo/generators/ui.cjs +0 -19
  315. package/vite.config.ts +0 -7
  316. package/vitest.config.ts +0 -45
@@ -1,109 +0,0 @@
1
- /* eslint-disable */
2
- import type { ConditionalValue, Nested } from './conditions';
3
- import type { AtRule, PropertiesFallback } from './csstype';
4
- import type { SystemProperties, CssVarProperties } from './style-props';
5
-
6
- type String = string & {}
7
- type Number = number & {}
8
-
9
- export type Pretty<T> = { [K in keyof T]: T[K] } & {}
10
-
11
- export type DistributiveOmit<T, K extends keyof any> = T extends unknown ? Omit<T, K> : never
12
-
13
- export type DistributiveUnion<T, U> = {
14
- [K in keyof T]: K extends keyof U ? U[K] | T[K] : T[K]
15
- } & DistributiveOmit<U, keyof T>
16
-
17
- export type Assign<T, U> = {
18
- [K in keyof T]: K extends keyof U ? U[K] : T[K]
19
- } & U
20
-
21
- /* -----------------------------------------------------------------------------
22
- * Native css properties
23
- * -----------------------------------------------------------------------------*/
24
-
25
- export type CssProperty = keyof PropertiesFallback
26
-
27
- export interface CssProperties extends PropertiesFallback<String | Number>, CssVarProperties {}
28
-
29
- export interface CssKeyframes {
30
- [name: string]: {
31
- [time: string]: CssProperties
32
- }
33
- }
34
-
35
- /* -----------------------------------------------------------------------------
36
- * Conditional css properties
37
- * -----------------------------------------------------------------------------*/
38
-
39
- interface GenericProperties {
40
- [key: string]: ConditionalValue<String | Number | boolean>
41
- }
42
-
43
- /* -----------------------------------------------------------------------------
44
- * Native css props
45
- * -----------------------------------------------------------------------------*/
46
-
47
- export type NestedCssProperties = Nested<CssProperties>
48
-
49
- export type SystemStyleObject = Omit<Nested<SystemProperties & CssVarProperties>, 'base'>
50
-
51
- export interface GlobalStyleObject {
52
- [selector: string]: SystemStyleObject
53
- }
54
- export interface ExtendableGlobalStyleObject {
55
- [selector: string]: SystemStyleObject | undefined
56
- extend?: GlobalStyleObject | undefined
57
- }
58
-
59
- /* -----------------------------------------------------------------------------
60
- * Composition (text styles, layer styles)
61
- * -----------------------------------------------------------------------------*/
62
-
63
- type FilterStyleObject<P extends string> = {
64
- [K in P]?: K extends keyof SystemStyleObject ? SystemStyleObject[K] : unknown
65
- }
66
-
67
- export type CompositionStyleObject<Property extends string> = Nested<FilterStyleObject<Property> & CssVarProperties>
68
-
69
- /* -----------------------------------------------------------------------------
70
- * Font face
71
- * -----------------------------------------------------------------------------*/
72
-
73
- export type GlobalFontfaceRule = Omit<AtRule.FontFaceFallback, 'src'> & Required<Pick<AtRule.FontFaceFallback, 'src'>>
74
-
75
- export type FontfaceRule = Omit<GlobalFontfaceRule, 'fontFamily'>
76
-
77
- export interface GlobalFontface {
78
- [name: string]: FontfaceRule | FontfaceRule[]
79
- }
80
-
81
- export interface ExtendableGlobalFontface {
82
- [name: string]: FontfaceRule | FontfaceRule[] | GlobalFontface | undefined
83
- extend?: GlobalFontface | undefined
84
- }
85
-
86
- /* -----------------------------------------------------------------------------
87
- * Jsx style props
88
- * -----------------------------------------------------------------------------*/
89
- interface WithCss {
90
- css?: SystemStyleObject | SystemStyleObject[]
91
- }
92
-
93
- export type JsxStyleProps = SystemStyleObject & WithCss
94
-
95
- export interface PatchedHTMLProps {
96
- htmlWidth?: string | number
97
- htmlHeight?: string | number
98
- htmlTranslate?: 'yes' | 'no' | undefined
99
- htmlContent?: string
100
- }
101
-
102
- export type OmittedHTMLProps = 'color' | 'translate' | 'transition' | 'width' | 'height' | 'content'
103
-
104
- type WithHTMLProps<T> = DistributiveOmit<T, OmittedHTMLProps> & PatchedHTMLProps
105
-
106
- export type JsxHTMLProps<T extends Record<string, any>, P extends Record<string, any> = {}> = Assign<
107
- WithHTMLProps<T>,
108
- P
109
- >
package/tsconfig.json DELETED
@@ -1,13 +0,0 @@
1
- {
2
- "extends": "@jongh/tsconfig/react.json",
3
- "compilerOptions": {
4
- "outDir": "dist",
5
- "baseUrl": "./",
6
- "paths": {
7
- "@styled-system/*": ["styled-system/*"],
8
- "@utils/*": ["./src/utils/*"],
9
- "@/*": ["./src/*"]
10
- }
11
- },
12
- "exclude": ["node_modules", "dist"]
13
- }
@@ -1,7 +0,0 @@
1
- /* eslint-disable @typescript-eslint/no-require-imports */
2
- const storyGen = require("./stories.cjs")
3
- const uiGen = require("./ui.cjs")
4
- module.exports = function generator(plop) {
5
- storyGen(plop)
6
- uiGen(plop)
7
- }
@@ -1,23 +0,0 @@
1
- module.exports = function generator(plop) {
2
- plop.setGenerator("stories", {
3
- description: "create new storybook template",
4
- prompts: [
5
- {
6
- type: "input",
7
- name: "name",
8
- message: "What is the name of the new file to create?",
9
- validate: (input) => {
10
- console.log(input)
11
- return true
12
- },
13
- },
14
- ],
15
- actions: [
16
- {
17
- type: "add",
18
- path: "src/stories/{{camelCase name}}.stories.tsx",
19
- templateFile: "templates/stories.tsx.hbs",
20
- },
21
- ],
22
- })
23
- }
@@ -1,16 +0,0 @@
1
- import type { Meta, StoryObj } from "@storybook/react"
2
-
3
- import { {{pascalCase name}} } from "../components/{{pascalCase name}}/{{pascalCase name}}.tsx"
4
-
5
- const meta = {
6
- title: "{{pascalCase name}}",
7
- tags: ["autodocs"],
8
- } satisfies Meta<typeof {{pascalCase name}}>
9
-
10
- export default meta
11
-
12
- type Story = StoryObj<typeof meta>
13
-
14
- export const Primary: Story = {
15
- args: {},
16
- }
@@ -1,8 +0,0 @@
1
- import type { ReactNode } from "react"
2
-
3
- export type {{pascalCase name}}Props = {
4
- children?: ReactNode
5
- }
6
- export const {{pascalCase name}} = ({ children }: {{pascalCase name}}Props) => {
7
- return <div></div>
8
- }
@@ -1,19 +0,0 @@
1
- module.exports = function generator(plop) {
2
- plop.setGenerator("component", {
3
- description: "Create a new React component",
4
- prompts: [
5
- {
6
- type: "input",
7
- name: "name",
8
- message: "What is the name of the component?",
9
- },
10
- ],
11
- actions: [
12
- {
13
- type: "add",
14
- path: "src/component/{{camelCase name}}/ui/index.tsx",
15
- templateFile: "templates/ui.tsx.hbs",
16
- },
17
- ],
18
- })
19
- }
package/vite.config.ts DELETED
@@ -1,7 +0,0 @@
1
- import react from "@vitejs/plugin-react"
2
- import { defineConfig } from "vite"
3
- import tsconfigPaths from "vite-tsconfig-paths"
4
-
5
- export default defineConfig({
6
- plugins: [react(), tsconfigPaths({ root: "./" })],
7
- })
package/vitest.config.ts DELETED
@@ -1,45 +0,0 @@
1
- import path from "node:path"
2
- import { fileURLToPath } from "node:url"
3
-
4
- import { storybookTest } from "@storybook/experimental-addon-test/vitest-plugin"
5
- import { defineConfig, defineProject, mergeConfig } from "vitest/config"
6
-
7
- const dirname =
8
- typeof __dirname !== "undefined"
9
- ? __dirname
10
- : path.dirname(fileURLToPath(import.meta.url))
11
-
12
- // 👇 If you're using Next.js, apply this framework plugin as well
13
- // import { storybookNextJsPlugin } from '@storybook/experimental-nextjs-vite/vite-plugin';
14
- import viteConfig from "./vite.config"
15
-
16
- export default defineProject(
17
- mergeConfig(
18
- viteConfig,
19
- defineConfig({
20
- plugins: [
21
- storybookTest({
22
- configDir: path.join(dirname, ".storybook"),
23
- storybookScript: "pnpm storybook --ci",
24
- }),
25
- ],
26
- test: {
27
- browser: {
28
- instances: [
29
- {
30
- browser: "chromium",
31
- },
32
- ],
33
- enabled: true,
34
- provider: "playwright",
35
- headless: true,
36
- },
37
- // Speed up tests and better match how they run in Storybook itself
38
- // https://vitest.dev/config/#isolate
39
- // Consider removing this if you have flaky tests
40
- isolate: false,
41
- setupFiles: ["./.storybook/vitest.setup.ts"],
42
- },
43
- }),
44
- ),
45
- )