@saas-ui/react 2.11.1 → 3.0.0-alpha.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (232) hide show
  1. package/CHANGELOG.md +7 -140
  2. package/dist/index.cjs +8461 -0
  3. package/dist/index.cjs.map +1 -0
  4. package/dist/index.d.cts +26 -0
  5. package/dist/index.d.ts +25 -7
  6. package/dist/index.js +8415 -35
  7. package/dist/index.js.map +1 -1
  8. package/package.json +24 -21
  9. package/src/components/accordion.tsx +47 -0
  10. package/src/components/action-bar.tsx +40 -0
  11. package/src/components/alert.tsx +51 -0
  12. package/src/components/app-shell/app-shell.recipe.ts +52 -0
  13. package/src/components/app-shell/app-shell.stories.tsx +51 -0
  14. package/src/components/app-shell/app-shell.tsx +94 -0
  15. package/src/components/app-shell/index.ts +3 -0
  16. package/src/components/avatar.tsx +74 -0
  17. package/src/components/blockquote.tsx +31 -0
  18. package/src/components/breadcrumbs/breadcrumb.stories.tsx +17 -0
  19. package/src/components/breadcrumbs/breadcrumb.tsx +36 -0
  20. package/src/components/breadcrumbs/index.ts +1 -0
  21. package/src/components/breadcrumbs/namespace.ts +8 -0
  22. package/src/components/button/button.recipe.ts +182 -0
  23. package/src/components/button/button.stories.tsx +99 -0
  24. package/src/components/button/button.tsx +55 -0
  25. package/src/components/button/index.ts +2 -0
  26. package/src/components/checkbox/checkbox.tsx +26 -0
  27. package/src/components/checkbox/index.ts +2 -0
  28. package/src/components/checkbox-card.tsx +57 -0
  29. package/src/components/checkbox.tsx +25 -0
  30. package/src/components/clipboard.tsx +107 -0
  31. package/src/components/close-button/close-button.stories.tsx +12 -0
  32. package/src/components/close-button/close-button.tsx +18 -0
  33. package/src/components/close-button/index.ts +2 -0
  34. package/src/components/color-mode.tsx +65 -0
  35. package/src/components/command/command.recipe.ts +17 -0
  36. package/src/components/command/command.stories.tsx +47 -0
  37. package/src/components/command/command.tsx +50 -0
  38. package/src/components/command/index.ts +1 -0
  39. package/src/components/data-list.tsx +37 -0
  40. package/src/components/dialog/dialog.tsx +66 -0
  41. package/src/components/dialog/index.ts +1 -0
  42. package/src/components/dialog/namespace.ts +18 -0
  43. package/src/components/drawer/drawer.tsx +56 -0
  44. package/src/components/drawer/index.ts +3 -0
  45. package/src/components/drawer/namespace.ts +19 -0
  46. package/src/components/empty-state.tsx +34 -0
  47. package/src/components/field.tsx +33 -0
  48. package/src/components/file-button.tsx +166 -0
  49. package/src/components/grid-list/grid-list.recipe.ts +113 -0
  50. package/src/components/hover-card.tsx +35 -0
  51. package/src/components/icon-badge/icon-badge.recipe.ts +57 -0
  52. package/src/components/icon-badge/icon-badge.stories.tsx +38 -0
  53. package/src/components/icon-badge/icon-badge.tsx +59 -0
  54. package/src/components/icon-badge/index.ts +2 -0
  55. package/src/components/icons/create-icon.tsx +41 -0
  56. package/src/components/icons/icons.tsx +121 -0
  57. package/src/components/icons/index.ts +1 -0
  58. package/src/components/input-group/index.ts +1 -0
  59. package/src/components/input-group/input-group.tsx +46 -0
  60. package/src/components/link/index.ts +2 -0
  61. package/src/components/link/link.stories.tsx +17 -0
  62. package/src/components/link/link.test.tsx +33 -0
  63. package/src/components/link/link.tsx +27 -0
  64. package/src/components/link-button.tsx +12 -0
  65. package/src/components/loading-overlay/index.ts +1 -0
  66. package/src/components/loading-overlay/loading-overlay.recipe.ts +61 -0
  67. package/src/components/loading-overlay/loading-overlay.stories.tsx +68 -0
  68. package/src/components/loading-overlay/loading-overlay.tsx +54 -0
  69. package/src/components/loading-overlay/namespace.ts +7 -0
  70. package/src/components/menu.tsx +108 -0
  71. package/src/components/native-select.tsx +57 -0
  72. package/src/components/navbar/index.ts +1 -0
  73. package/src/components/navbar/namespace.ts +9 -0
  74. package/src/components/navbar/navbar.recipe.ts +109 -0
  75. package/src/components/navbar/navbar.stories.tsx +435 -0
  76. package/src/components/navbar/navbar.test.tsx +49 -0
  77. package/src/components/navbar/navbar.tsx +39 -0
  78. package/src/components/number-input/index.ts +2 -0
  79. package/src/components/number-input/number-input.tsx +41 -0
  80. package/src/components/pagination.tsx +207 -0
  81. package/src/components/password-input/index.ts +2 -0
  82. package/src/components/password-input/password-input.tsx +98 -0
  83. package/src/components/persona/index.ts +2 -0
  84. package/src/components/persona/namespace.ts +18 -0
  85. package/src/components/persona/persona-primitive.tsx +220 -0
  86. package/src/components/persona/persona.recipe.ts +94 -0
  87. package/src/components/persona/persona.stories.tsx +101 -0
  88. package/src/components/persona/persona.tsx +143 -0
  89. package/src/components/pin-input/index.ts +2 -0
  90. package/src/components/pin-input/pin-input.tsx +36 -0
  91. package/src/components/popover.tsx +58 -0
  92. package/src/components/progress-circle.tsx +37 -0
  93. package/src/components/progress.tsx +40 -0
  94. package/src/components/prose.tsx +264 -0
  95. package/src/components/provider.tsx +12 -0
  96. package/src/components/radio/index.ts +2 -0
  97. package/src/components/radio/radio.tsx +27 -0
  98. package/src/components/radio-card.tsx +57 -0
  99. package/src/components/radio.tsx +24 -0
  100. package/src/components/rating.tsx +27 -0
  101. package/src/components/search-input/index.ts +2 -0
  102. package/src/components/search-input/search-input.stories.tsx +63 -0
  103. package/src/components/search-input/search-input.tsx +134 -0
  104. package/src/components/segmented-control.tsx +47 -0
  105. package/src/components/select/index.ts +1 -0
  106. package/src/components/select/namespace.ts +18 -0
  107. package/src/components/select/select.tsx +135 -0
  108. package/src/components/sidebar/index.ts +7 -0
  109. package/src/components/sidebar/namespace.ts +27 -0
  110. package/src/components/sidebar/sidebar-item.recipe.ts +65 -0
  111. package/src/components/sidebar/sidebar.recipe.ts +237 -0
  112. package/src/components/sidebar/sidebar.stories.tsx +903 -0
  113. package/src/components/sidebar/sidebar.tsx +204 -0
  114. package/src/components/skeleton.tsx +44 -0
  115. package/src/components/slider.tsx +53 -0
  116. package/src/components/spinner/index.ts +2 -0
  117. package/src/components/spinner/spinner.stories.tsx +19 -0
  118. package/src/components/spinner/spinner.tsx +21 -0
  119. package/src/components/stat.tsx +75 -0
  120. package/src/components/status.tsx +29 -0
  121. package/src/components/stepper-input.tsx +49 -0
  122. package/src/components/steps/index.ts +1 -0
  123. package/src/components/steps/namespace.ts +16 -0
  124. package/src/components/steps/steps.tsx +82 -0
  125. package/src/components/switch/index.ts +3 -0
  126. package/src/components/switch/switch.tsx +39 -0
  127. package/src/components/tag.tsx +39 -0
  128. package/src/components/timeline.tsx +17 -0
  129. package/src/components/toaster.tsx +43 -0
  130. package/src/components/toggle-tip.tsx +62 -0
  131. package/src/components/tooltip.tsx +46 -0
  132. package/src/index.ts +6 -7
  133. package/src/preset.ts +9 -0
  134. package/src/provider/index.ts +4 -0
  135. package/src/provider/sui-provider.tsx +34 -0
  136. package/src/provider/use-link.test.tsx +60 -0
  137. package/src/provider/use-link.tsx +13 -0
  138. package/src/theme/animation-styles.ts +53 -0
  139. package/src/theme/breakpoints.ts +11 -0
  140. package/src/theme/conditions.ts +26 -0
  141. package/src/theme/fluid-font-sizes.ts +65 -0
  142. package/src/theme/global-css.ts +94 -0
  143. package/src/theme/index.ts +72 -0
  144. package/src/theme/layer-styles.ts +116 -0
  145. package/src/theme/recipes/chakra/accordion.ts +145 -0
  146. package/src/theme/recipes/chakra/action-bar.ts +62 -0
  147. package/src/theme/recipes/chakra/alert.ts +157 -0
  148. package/src/theme/recipes/chakra/avatar.ts +141 -0
  149. package/src/theme/recipes/chakra/badge.ts +67 -0
  150. package/src/theme/recipes/chakra/blockquote.ts +83 -0
  151. package/src/theme/recipes/chakra/breadcrumb.ts +94 -0
  152. package/src/theme/recipes/chakra/card.ts +99 -0
  153. package/src/theme/recipes/chakra/checkbox-card.ts +212 -0
  154. package/src/theme/recipes/chakra/checkbox.ts +70 -0
  155. package/src/theme/recipes/chakra/checkmark.ts +83 -0
  156. package/src/theme/recipes/chakra/code.ts +17 -0
  157. package/src/theme/recipes/chakra/collapsible.ts +20 -0
  158. package/src/theme/recipes/chakra/container.ts +26 -0
  159. package/src/theme/recipes/chakra/data-list.ts +80 -0
  160. package/src/theme/recipes/chakra/dialog.ts +225 -0
  161. package/src/theme/recipes/chakra/drawer.ts +201 -0
  162. package/src/theme/recipes/chakra/editable.ts +88 -0
  163. package/src/theme/recipes/chakra/empty-state.ts +88 -0
  164. package/src/theme/recipes/chakra/field.ts +68 -0
  165. package/src/theme/recipes/chakra/fieldset.ts +62 -0
  166. package/src/theme/recipes/chakra/file-upload.ts +96 -0
  167. package/src/theme/recipes/chakra/heading.ts +27 -0
  168. package/src/theme/recipes/chakra/hover-card.ts +68 -0
  169. package/src/theme/recipes/chakra/icon.ts +30 -0
  170. package/src/theme/recipes/chakra/input-addon.ts +40 -0
  171. package/src/theme/recipes/chakra/input.ts +96 -0
  172. package/src/theme/recipes/chakra/kbd.ts +60 -0
  173. package/src/theme/recipes/chakra/link.ts +37 -0
  174. package/src/theme/recipes/chakra/list.ts +67 -0
  175. package/src/theme/recipes/chakra/mark.ts +27 -0
  176. package/src/theme/recipes/chakra/menu.ts +124 -0
  177. package/src/theme/recipes/chakra/native-select.ts +140 -0
  178. package/src/theme/recipes/chakra/number-input.ts +115 -0
  179. package/src/theme/recipes/chakra/pin-input.ts +27 -0
  180. package/src/theme/recipes/chakra/popover.ts +86 -0
  181. package/src/theme/recipes/chakra/progress-circle.ts +94 -0
  182. package/src/theme/recipes/chakra/progress.ts +127 -0
  183. package/src/theme/recipes/chakra/radio-card.ts +220 -0
  184. package/src/theme/recipes/chakra/radio-group.ts +72 -0
  185. package/src/theme/recipes/chakra/radiomark.ts +107 -0
  186. package/src/theme/recipes/chakra/rating-group.ts +94 -0
  187. package/src/theme/recipes/chakra/segment-group.ts +117 -0
  188. package/src/theme/recipes/chakra/select.ts +282 -0
  189. package/src/theme/recipes/chakra/separator.ts +51 -0
  190. package/src/theme/recipes/chakra/skeleton.ts +53 -0
  191. package/src/theme/recipes/chakra/skip-nav-link.ts +34 -0
  192. package/src/theme/recipes/chakra/slider.ts +178 -0
  193. package/src/theme/recipes/chakra/spinner.ts +32 -0
  194. package/src/theme/recipes/chakra/stat.ts +79 -0
  195. package/src/theme/recipes/chakra/status.ts +48 -0
  196. package/src/theme/recipes/chakra/steps.ts +218 -0
  197. package/src/theme/recipes/chakra/switch.ts +167 -0
  198. package/src/theme/recipes/chakra/table.ts +172 -0
  199. package/src/theme/recipes/chakra/tabs.ts +280 -0
  200. package/src/theme/recipes/chakra/tag.ts +131 -0
  201. package/src/theme/recipes/chakra/textarea.ts +88 -0
  202. package/src/theme/recipes/chakra/timeline.ts +138 -0
  203. package/src/theme/recipes/chakra/toast.ts +96 -0
  204. package/src/theme/recipes/chakra/tooltip.ts +40 -0
  205. package/src/theme/recipes.ts +46 -0
  206. package/src/theme/semantic-tokens/colors.ts +403 -0
  207. package/src/theme/semantic-tokens/radii.ts +7 -0
  208. package/src/theme/semantic-tokens/shadows.ts +52 -0
  209. package/src/theme/slot-recipes.ts +104 -0
  210. package/src/theme/text-styles.ts +39 -0
  211. package/src/theme/tokens/animations.ts +8 -0
  212. package/src/theme/tokens/aspect-ratios.ts +10 -0
  213. package/src/theme/tokens/blurs.ts +12 -0
  214. package/src/theme/tokens/borders.ts +9 -0
  215. package/src/theme/tokens/colors.ts +177 -0
  216. package/src/theme/tokens/cursor.ts +12 -0
  217. package/src/theme/tokens/durations.ts +11 -0
  218. package/src/theme/tokens/easings.ts +10 -0
  219. package/src/theme/tokens/font-sizes.ts +20 -0
  220. package/src/theme/tokens/font-weights.ts +13 -0
  221. package/src/theme/tokens/fonts.ts +15 -0
  222. package/src/theme/tokens/keyframes.ts +173 -0
  223. package/src/theme/tokens/letter-spacing.ts +9 -0
  224. package/src/theme/tokens/line-heights.ts +19 -0
  225. package/src/theme/tokens/radius.ts +18 -0
  226. package/src/theme/tokens/sizes.ts +71 -0
  227. package/src/theme/tokens/spacing.ts +38 -0
  228. package/src/theme/tokens/z-indices.ts +34 -0
  229. package/src/theme/utils.ts +46 -0
  230. package/dist/index.d.mts +0 -8
  231. package/dist/index.mjs +0 -11
  232. package/dist/index.mjs.map +0 -1
@@ -0,0 +1,68 @@
1
+ import { defineSlotRecipe } from '@chakra-ui/react'
2
+ import { fieldAnatomy } from '@chakra-ui/react/anatomy'
3
+
4
+ export const fieldSlotRecipe = defineSlotRecipe({
5
+ className: 'chakra-field',
6
+ slots: fieldAnatomy.keys(),
7
+ base: {
8
+ requiredIndicator: {
9
+ color: 'fg.error',
10
+ lineHeight: '1',
11
+ },
12
+ root: {
13
+ display: 'flex',
14
+ width: '100%',
15
+ position: 'relative',
16
+ gap: '1.5',
17
+ },
18
+ label: {
19
+ display: 'flex',
20
+ alignItems: 'center',
21
+ textAlign: 'start',
22
+ textStyle: 'sm',
23
+ fontWeight: 'medium',
24
+ gap: '1',
25
+ userSelect: 'none',
26
+ _disabled: {
27
+ opacity: '0.5',
28
+ },
29
+ },
30
+ errorText: {
31
+ display: 'inline-flex',
32
+ alignItems: 'center',
33
+ fontWeight: 'medium',
34
+ gap: '1',
35
+ color: 'fg.error',
36
+ textStyle: 'xs',
37
+ },
38
+ helperText: {
39
+ color: 'fg.muted',
40
+ textStyle: 'xs',
41
+ },
42
+ },
43
+
44
+ variants: {
45
+ orientation: {
46
+ vertical: {
47
+ root: {
48
+ flexDirection: 'column',
49
+ alignItems: 'flex-start',
50
+ },
51
+ },
52
+ horizontal: {
53
+ root: {
54
+ flexDirection: 'row',
55
+ alignItems: 'center',
56
+ justifyContent: 'space-between',
57
+ },
58
+ label: {
59
+ flex: '0 0 var(--field-label-width, 80px)',
60
+ },
61
+ },
62
+ },
63
+ },
64
+
65
+ defaultVariants: {
66
+ orientation: 'vertical',
67
+ },
68
+ })
@@ -0,0 +1,62 @@
1
+ import { fieldsetAnatomy } from '@ark-ui/anatomy'
2
+ import { defineSlotRecipe } from '@chakra-ui/react'
3
+
4
+ export const fieldsetSlotRecipe = defineSlotRecipe({
5
+ className: 'fieldset',
6
+ slots: [...fieldsetAnatomy.keys(), 'content'],
7
+ base: {
8
+ root: {
9
+ display: 'flex',
10
+ flexDirection: 'column',
11
+ width: 'full',
12
+ },
13
+ content: {
14
+ display: 'flex',
15
+ flexDirection: 'column',
16
+ width: 'full',
17
+ },
18
+ legend: {
19
+ color: 'fg',
20
+ fontWeight: 'medium',
21
+ _disabled: {
22
+ opacity: '0.5',
23
+ },
24
+ },
25
+ helperText: {
26
+ color: 'fg.muted',
27
+ textStyle: 'sm',
28
+ },
29
+ errorText: {
30
+ display: 'inline-flex',
31
+ alignItems: 'center',
32
+ color: 'fg.error',
33
+ gap: '2',
34
+ fontWeight: 'medium',
35
+ textStyle: 'sm',
36
+ },
37
+ },
38
+
39
+ variants: {
40
+ size: {
41
+ sm: {
42
+ root: { spaceY: '2' },
43
+ content: { gap: '1.5' },
44
+ legend: { textStyle: 'sm' },
45
+ },
46
+ md: {
47
+ root: { spaceY: '4' },
48
+ content: { gap: '4' },
49
+ legend: { textStyle: 'sm' },
50
+ },
51
+ lg: {
52
+ root: { spaceY: '6' },
53
+ content: { gap: '4' },
54
+ legend: { textStyle: 'md' },
55
+ },
56
+ },
57
+ },
58
+
59
+ defaultVariants: {
60
+ size: 'md',
61
+ },
62
+ })
@@ -0,0 +1,96 @@
1
+ import { defineSlotRecipe } from '@chakra-ui/react'
2
+ import { fileUploadAnatomy } from '@chakra-ui/react/anatomy'
3
+
4
+ export const fileUploadSlotRecipe = defineSlotRecipe({
5
+ className: 'chakra-file-upload',
6
+ slots: fileUploadAnatomy.keys(),
7
+ base: {
8
+ root: {
9
+ display: 'flex',
10
+ flexDirection: 'column',
11
+ gap: '4',
12
+ width: '100%',
13
+ alignItems: 'flex-start',
14
+ },
15
+ label: {
16
+ fontWeight: 'medium',
17
+ textStyle: 'sm',
18
+ },
19
+ dropzone: {
20
+ background: 'bg',
21
+ borderRadius: 'l3',
22
+ borderWidth: '2px',
23
+ borderStyle: 'dashed',
24
+ display: 'flex',
25
+ alignItems: 'center',
26
+ flexDirection: 'column',
27
+ gap: '4',
28
+ justifyContent: 'center',
29
+ minHeight: '2xs',
30
+ px: '3',
31
+ py: '2',
32
+ transition: 'backgrounds',
33
+ focusVisibleRing: 'outside',
34
+ _hover: {
35
+ bg: 'bg.subtle',
36
+ },
37
+ _dragging: {
38
+ bg: 'colorPalette.subtle',
39
+ borderStyle: 'solid',
40
+ borderColor: 'colorPalette.solid',
41
+ },
42
+ },
43
+ dropzoneContent: {
44
+ display: 'flex',
45
+ flexDirection: 'column',
46
+ alignItems: 'center',
47
+ textAlign: 'center',
48
+ gap: '1',
49
+ textStyle: 'sm',
50
+ },
51
+ item: {
52
+ textStyle: 'sm',
53
+ animationName: 'fade-in',
54
+ animationDuration: 'moderate',
55
+ background: 'bg',
56
+ borderRadius: 'l2',
57
+ borderWidth: '1px',
58
+ width: '100%',
59
+ display: 'flex',
60
+ alignItems: 'center',
61
+ gap: '3',
62
+ p: '4',
63
+ },
64
+ itemGroup: {
65
+ width: '100%',
66
+ display: 'flex',
67
+ flexDirection: 'column',
68
+ gap: '3',
69
+ },
70
+ itemName: {
71
+ color: 'fg',
72
+ fontWeight: 'medium',
73
+ lineClamp: '1',
74
+ },
75
+ itemContent: {
76
+ display: 'flex',
77
+ flexDirection: 'column',
78
+ gap: '0.5',
79
+ flex: '1',
80
+ },
81
+ itemSizeText: {
82
+ color: 'fg.muted',
83
+ textStyle: 'xs',
84
+ },
85
+ itemDeleteTrigger: {
86
+ alignSelf: 'flex-start',
87
+ },
88
+ itemPreviewImage: {
89
+ width: '10',
90
+ height: '10',
91
+ objectFit: 'scale-down',
92
+ },
93
+ },
94
+
95
+ defaultVariants: {},
96
+ })
@@ -0,0 +1,27 @@
1
+ import { defineRecipe } from '@chakra-ui/react'
2
+
3
+ export const headingRecipe = defineRecipe({
4
+ className: 'chakra-heading',
5
+ base: {
6
+ fontFamily: 'heading',
7
+ fontWeight: 'semibold',
8
+ },
9
+ variants: {
10
+ size: {
11
+ xs: { textStyle: 'xs' },
12
+ sm: { textStyle: 'sm' },
13
+ md: { textStyle: 'md' },
14
+ lg: { textStyle: 'lg' },
15
+ xl: { textStyle: 'xl' },
16
+ '2xl': { textStyle: '2xl' },
17
+ '3xl': { textStyle: '3xl' },
18
+ '4xl': { textStyle: '4xl' },
19
+ '5xl': { textStyle: '5xl' },
20
+ '6xl': { textStyle: '6xl' },
21
+ '7xl': { textStyle: '7xl' },
22
+ },
23
+ },
24
+ defaultVariants: {
25
+ size: 'xl',
26
+ },
27
+ })
@@ -0,0 +1,68 @@
1
+ import { defineSlotRecipe } from '@chakra-ui/react'
2
+ import { hoverCardAnatomy } from '@chakra-ui/react/anatomy'
3
+
4
+ export const hoverCardSlotRecipe = defineSlotRecipe({
5
+ className: 'chakra-hover-card',
6
+ slots: hoverCardAnatomy.keys(),
7
+ base: {
8
+ content: {
9
+ position: 'relative',
10
+ display: 'flex',
11
+ flexDirection: 'column',
12
+ textStyle: 'sm',
13
+ '--hovercard-bg': 'colors.bg.panel',
14
+ bg: 'var(--hovercard-bg)',
15
+ boxShadow: 'lg',
16
+ maxWidth: '80',
17
+ borderRadius: 'l3',
18
+ zIndex: 'popover',
19
+ transformOrigin: 'var(--transform-origin)',
20
+ outline: '0',
21
+ _open: {
22
+ animationStyle: 'slide-fade-in',
23
+ animationDuration: 'fast',
24
+ },
25
+ _closed: {
26
+ animationStyle: 'slide-fade-out',
27
+ animationDuration: 'faster',
28
+ },
29
+ },
30
+ arrow: {
31
+ '--arrow-size': 'sizes.3',
32
+ '--arrow-background': 'var(--hovercard-bg)',
33
+ },
34
+ arrowTip: {
35
+ borderTopWidth: '0.5px',
36
+ borderInlineStartWidth: '0.5px',
37
+ },
38
+ },
39
+
40
+ variants: {
41
+ size: {
42
+ xs: {
43
+ content: {
44
+ padding: '3',
45
+ },
46
+ },
47
+ sm: {
48
+ content: {
49
+ padding: '4',
50
+ },
51
+ },
52
+ md: {
53
+ content: {
54
+ padding: '5',
55
+ },
56
+ },
57
+ lg: {
58
+ content: {
59
+ padding: '6',
60
+ },
61
+ },
62
+ },
63
+ },
64
+
65
+ defaultVariants: {
66
+ size: 'md',
67
+ },
68
+ })
@@ -0,0 +1,30 @@
1
+ import { defineRecipe } from '@chakra-ui/react'
2
+
3
+ export const iconRecipe = defineRecipe({
4
+ className: 'chakra-icon',
5
+ base: {
6
+ display: 'inline-block',
7
+ lineHeight: '1em',
8
+ flexShrink: '0',
9
+ color: 'currentcolor',
10
+ verticalAlign: 'middle',
11
+ width: 'var(--icon-size)',
12
+ height: 'var(--icon-size)',
13
+ },
14
+
15
+ variants: {
16
+ size: {
17
+ inherit: { '--icon-size': '1em' },
18
+ xs: { '--icon-size': 'sizes.3' },
19
+ sm: { '--icon-size': 'sizes.4' },
20
+ md: { '--icon-size': 'sizes.5' },
21
+ lg: { '--icon-size': 'sizes.6' },
22
+ xl: { '--icon-size': 'sizes.7' },
23
+ '2xl': { '--icon-size': 'sizes.8' },
24
+ },
25
+ },
26
+
27
+ defaultVariants: {
28
+ size: 'inherit',
29
+ },
30
+ })
@@ -0,0 +1,40 @@
1
+ import { defineRecipe } from '@chakra-ui/react'
2
+
3
+ import { inputRecipe } from './input'
4
+
5
+ export const inputAddonRecipe = defineRecipe({
6
+ className: 'chakra-input-addon',
7
+ base: {
8
+ flex: '0 0 auto',
9
+ width: 'auto',
10
+ display: 'flex',
11
+ alignItems: 'center',
12
+ whiteSpace: 'nowrap',
13
+ },
14
+ variants: {
15
+ size: inputRecipe.variants!.size,
16
+ variant: {
17
+ outline: {
18
+ border: '1px solid',
19
+ borderColor: { _light: 'border', _dark: 'whiteAlpha.50' },
20
+ bg: 'bg.muted',
21
+ },
22
+ subtle: {
23
+ border: '2px solid',
24
+ borderColor: 'transparent',
25
+ bg: { _light: 'gray.100', _dark: 'whiteAlpha.50' },
26
+ },
27
+ flushed: {
28
+ borderBottom: '1px solid',
29
+ borderColor: 'inherit',
30
+ borderRadius: '0',
31
+ px: '0',
32
+ bg: 'transparent',
33
+ },
34
+ },
35
+ },
36
+ defaultVariants: {
37
+ size: 'md',
38
+ variant: 'outline',
39
+ },
40
+ })
@@ -0,0 +1,96 @@
1
+ import { defineRecipe } from '@chakra-ui/react'
2
+
3
+ export const inputRecipe = defineRecipe({
4
+ className: 'chakra-input',
5
+ base: {
6
+ width: '100%',
7
+ minWidth: '0',
8
+ outline: '0',
9
+ position: 'relative',
10
+ appearance: 'none',
11
+ textAlign: 'start',
12
+ borderRadius: 'l2',
13
+ _disabled: {
14
+ layerStyle: 'disabled',
15
+ },
16
+ height: 'var(--input-height)',
17
+ minW: 'var(--input-height)',
18
+ '--focus-color': 'colors.colorPalette.focusRing',
19
+ '--error-color': 'colors.border.error',
20
+ _invalid: {
21
+ focusRingColor: 'var(--error-color)',
22
+ borderColor: 'var(--error-color)',
23
+ },
24
+ },
25
+
26
+ variants: {
27
+ size: {
28
+ '2xs': {
29
+ textStyle: 'xs',
30
+ px: '2',
31
+ '--input-height': 'sizes.7',
32
+ },
33
+ xs: {
34
+ textStyle: 'xs',
35
+ px: '2',
36
+ '--input-height': 'sizes.8',
37
+ },
38
+ sm: {
39
+ textStyle: 'sm',
40
+ px: '2.5',
41
+ '--input-height': 'sizes.9',
42
+ },
43
+ md: {
44
+ textStyle: 'sm',
45
+ px: '3',
46
+ '--input-height': 'sizes.10',
47
+ },
48
+ lg: {
49
+ textStyle: 'md',
50
+ px: '4',
51
+ '--input-height': 'sizes.11',
52
+ },
53
+ xl: {
54
+ textStyle: 'md',
55
+ px: '4.5',
56
+ '--input-height': 'sizes.12',
57
+ },
58
+ '2xl': {
59
+ textStyle: 'lg',
60
+ px: '5',
61
+ '--input-height': 'sizes.16',
62
+ },
63
+ },
64
+
65
+ variant: {
66
+ outline: {
67
+ bg: 'transparent',
68
+ borderWidth: '1px',
69
+ borderColor: 'border',
70
+ focusVisibleRing: 'inside',
71
+ },
72
+ subtle: {
73
+ borderWidth: '1px',
74
+ borderColor: 'transparent',
75
+ bg: 'bg.muted',
76
+ focusVisibleRing: 'inside',
77
+ },
78
+ flushed: {
79
+ bg: 'transparent',
80
+ borderBottomWidth: '1px',
81
+ borderBottomColor: 'border',
82
+ borderRadius: '0',
83
+ px: '0',
84
+ _focusVisible: {
85
+ borderColor: 'var(--focus-color)',
86
+ boxShadow: '0px 1px 0px 0px var(--focus-color)',
87
+ },
88
+ },
89
+ },
90
+ },
91
+
92
+ defaultVariants: {
93
+ size: 'md',
94
+ variant: 'outline',
95
+ },
96
+ })
@@ -0,0 +1,60 @@
1
+ import { defineRecipe } from '@chakra-ui/react'
2
+
3
+ export const kbdRecipe = defineRecipe({
4
+ className: 'chakra-kbd',
5
+ base: {
6
+ display: 'inline-flex',
7
+ alignItems: 'center',
8
+ fontWeight: 'medium',
9
+ fontFamily: 'mono',
10
+ flexShrink: '0',
11
+ whiteSpace: 'nowrap',
12
+ wordSpacing: '-0.5em',
13
+ userSelect: 'none',
14
+ px: '1',
15
+ borderRadius: 'l2',
16
+ },
17
+
18
+ variants: {
19
+ variant: {
20
+ raised: {
21
+ bg: 'colorPalette.subtle',
22
+ color: 'colorPalette.fg',
23
+ borderWidth: '1px',
24
+ borderBottomWidth: '2px',
25
+ borderColor: 'colorPalette.muted',
26
+ },
27
+ outline: {
28
+ borderWidth: '1px',
29
+ color: 'colorPalette.fg',
30
+ },
31
+ subtle: {
32
+ bg: 'colorPalette.muted',
33
+ color: 'colorPalette.fg',
34
+ },
35
+ plain: {
36
+ color: 'colorPalette.fg',
37
+ },
38
+ },
39
+
40
+ size: {
41
+ sm: {
42
+ textStyle: 'xs',
43
+ height: '4.5',
44
+ },
45
+ md: {
46
+ textStyle: 'sm',
47
+ height: '5',
48
+ },
49
+ lg: {
50
+ textStyle: 'md',
51
+ height: '6',
52
+ },
53
+ },
54
+ },
55
+
56
+ defaultVariants: {
57
+ size: 'md',
58
+ variant: 'raised',
59
+ },
60
+ })
@@ -0,0 +1,37 @@
1
+ import { defineRecipe } from '@chakra-ui/react'
2
+
3
+ export const linkRecipe = defineRecipe({
4
+ className: 'chakra-link',
5
+ base: {
6
+ display: 'inline-flex',
7
+ alignItems: 'center',
8
+ outline: 'none',
9
+ gap: '1.5',
10
+ cursor: 'pointer',
11
+ borderRadius: 'l1',
12
+ focusRing: 'outside',
13
+ },
14
+
15
+ variants: {
16
+ variant: {
17
+ underline: {
18
+ color: 'colorPalette.fg',
19
+ textDecoration: 'underline',
20
+ textUnderlineOffset: '3px',
21
+ textDecorationColor: 'currentColor/20',
22
+ },
23
+ plain: {
24
+ color: 'colorPalette.fg',
25
+ _hover: {
26
+ textDecoration: 'underline',
27
+ textUnderlineOffset: '3px',
28
+ textDecorationColor: 'currentColor/20',
29
+ },
30
+ },
31
+ },
32
+ },
33
+
34
+ defaultVariants: {
35
+ variant: 'plain',
36
+ },
37
+ })
@@ -0,0 +1,67 @@
1
+ import { defineSlotRecipe } from '@chakra-ui/react'
2
+ import { listAnatomy } from '@chakra-ui/react/anatomy'
3
+
4
+ export const listSlotRecipe = defineSlotRecipe({
5
+ className: 'chakra-list',
6
+ slots: listAnatomy.keys(),
7
+ base: {
8
+ root: {
9
+ display: 'flex',
10
+ flexDirection: 'column',
11
+ gap: 'var(--list-gap)',
12
+ '& :where(ul, ol)': {
13
+ marginTop: 'var(--list-gap)',
14
+ },
15
+ },
16
+ item: {
17
+ whiteSpace: 'normal',
18
+ display: 'list-item',
19
+ },
20
+ indicator: {
21
+ marginEnd: '2',
22
+ minHeight: '1lh',
23
+ flexShrink: 0,
24
+ display: 'inline-block',
25
+ verticalAlign: 'middle',
26
+ },
27
+ },
28
+
29
+ variants: {
30
+ variant: {
31
+ marker: {
32
+ root: {
33
+ listStyle: 'revert',
34
+ listStylePosition: 'inside',
35
+ },
36
+ item: {
37
+ _marker: {
38
+ color: 'fg.subtle',
39
+ },
40
+ },
41
+ },
42
+
43
+ plain: {
44
+ item: {
45
+ alignItems: 'flex-start',
46
+ display: 'inline-flex',
47
+ },
48
+ },
49
+ },
50
+
51
+ align: {
52
+ center: {
53
+ item: { alignItems: 'center' },
54
+ },
55
+ start: {
56
+ item: { alignItems: 'flex-start' },
57
+ },
58
+ end: {
59
+ item: { alignItems: 'flex-end' },
60
+ },
61
+ },
62
+ },
63
+
64
+ defaultVariants: {
65
+ variant: 'marker',
66
+ },
67
+ })
@@ -0,0 +1,27 @@
1
+ import { defineRecipe } from '@chakra-ui/react'
2
+
3
+ export const markRecipe = defineRecipe({
4
+ className: 'chakra-mark',
5
+ base: {
6
+ bg: 'transparent',
7
+ color: 'inherit',
8
+ whiteSpace: 'nowrap',
9
+ },
10
+
11
+ variants: {
12
+ variant: {
13
+ subtle: {
14
+ bg: 'colorPalette.subtle',
15
+ color: 'inherit',
16
+ },
17
+ solid: {
18
+ bg: 'colorPalette.solid',
19
+ color: 'colorPalette.contrast',
20
+ },
21
+ text: {
22
+ fontWeight: 'medium',
23
+ },
24
+ plain: {},
25
+ },
26
+ },
27
+ })