@saas-ui/react 2.11.2 → 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 -154
  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,80 @@
1
+ import { defineSlotRecipe } from '@chakra-ui/react'
2
+ import { dataListAnatomy } from '@chakra-ui/react/anatomy'
3
+
4
+ export const dataListSlotRecipe = defineSlotRecipe({
5
+ slots: dataListAnatomy.keys(),
6
+ className: 'chakra-data-list',
7
+ base: {
8
+ itemLabel: {
9
+ color: 'fg.muted',
10
+ display: 'flex',
11
+ alignItems: 'center',
12
+ gap: '1',
13
+ },
14
+ itemValue: {
15
+ display: 'flex',
16
+ minWidth: '0',
17
+ flex: '1',
18
+ },
19
+ },
20
+ variants: {
21
+ orientation: {
22
+ horizontal: {
23
+ root: {
24
+ display: 'flex',
25
+ flexDirection: 'column',
26
+ },
27
+ item: {
28
+ display: 'inline-flex',
29
+ alignItems: 'center',
30
+ gap: '4',
31
+ },
32
+ itemLabel: {
33
+ minWidth: '120px',
34
+ },
35
+ },
36
+ vertical: {
37
+ root: {
38
+ display: 'flex',
39
+ flexDirection: 'column',
40
+ },
41
+ item: {
42
+ display: 'flex',
43
+ flexDirection: 'column',
44
+ gap: '1',
45
+ },
46
+ },
47
+ },
48
+ size: {
49
+ sm: {
50
+ root: {
51
+ gap: '3',
52
+ },
53
+ item: {
54
+ textStyle: 'xs',
55
+ },
56
+ },
57
+ md: {
58
+ root: {
59
+ gap: '4',
60
+ },
61
+ item: {
62
+ textStyle: 'sm',
63
+ },
64
+ },
65
+ lg: {
66
+ root: {
67
+ gap: '5',
68
+ },
69
+ item: {
70
+ textStyle: 'md',
71
+ },
72
+ },
73
+ },
74
+ },
75
+
76
+ defaultVariants: {
77
+ size: 'md',
78
+ orientation: 'vertical',
79
+ },
80
+ })
@@ -0,0 +1,225 @@
1
+ import { defineSlotRecipe } from '@chakra-ui/react'
2
+ import { dialogAnatomy } from '@chakra-ui/react/anatomy'
3
+
4
+ export const dialogSlotRecipe = defineSlotRecipe({
5
+ slots: dialogAnatomy.keys(),
6
+ className: 'chakra-dialog',
7
+ base: {
8
+ backdrop: {
9
+ bg: 'blackAlpha.500',
10
+ pos: 'fixed',
11
+ left: 0,
12
+ top: 0,
13
+ w: '100vw',
14
+ h: '100dvh',
15
+ zIndex: 'modal',
16
+ _open: {
17
+ animationName: 'fade-in',
18
+ animationDuration: 'slow',
19
+ },
20
+ _closed: {
21
+ animationName: 'fade-out',
22
+ animationDuration: 'moderate',
23
+ },
24
+ },
25
+ positioner: {
26
+ display: 'flex',
27
+ width: '100vw',
28
+ height: '100dvh',
29
+ position: 'fixed',
30
+ left: 0,
31
+ top: 0,
32
+ '--dialog-z-index': 'zIndex.modal',
33
+ zIndex: 'calc(var(--dialog-z-index) + var(--layer-index, 0))',
34
+ justifyContent: 'center',
35
+ overscrollBehaviorY: 'none',
36
+ },
37
+ content: {
38
+ display: 'flex',
39
+ flexDirection: 'column',
40
+ position: 'relative',
41
+ width: '100%',
42
+ outline: 0,
43
+ borderRadius: 'l3',
44
+ textStyle: 'sm',
45
+ my: 'var(--dialog-margin, var(--dialog-base-margin))',
46
+ '--dialog-z-index': 'zIndex.modal',
47
+ zIndex: 'calc(var(--dialog-z-index) + var(--layer-index, 0))',
48
+ bg: 'bg.panel',
49
+ boxShadow: 'lg',
50
+ _open: {
51
+ animationDuration: 'moderate',
52
+ },
53
+ _closed: {
54
+ animationDuration: 'faster',
55
+ },
56
+ },
57
+ header: {
58
+ flex: 0,
59
+ px: '6',
60
+ pt: '6',
61
+ pb: '4',
62
+ },
63
+ body: {
64
+ flex: '1',
65
+ px: '6',
66
+ pt: '2',
67
+ pb: '6',
68
+ },
69
+ footer: {
70
+ display: 'flex',
71
+ alignItems: 'center',
72
+ justifyContent: 'flex-end',
73
+ gap: '3',
74
+ px: '6',
75
+ pt: '2',
76
+ pb: '4',
77
+ },
78
+ title: {
79
+ textStyle: 'lg',
80
+ fontWeight: 'semibold',
81
+ },
82
+ description: {
83
+ color: 'fg.muted',
84
+ },
85
+ },
86
+
87
+ variants: {
88
+ placement: {
89
+ center: {
90
+ positioner: {
91
+ alignItems: 'center',
92
+ },
93
+ content: {
94
+ '--dialog-base-margin': 'auto',
95
+ mx: 'auto',
96
+ },
97
+ },
98
+ top: {
99
+ positioner: {
100
+ alignItems: 'flex-start',
101
+ },
102
+ content: {
103
+ '--dialog-base-margin': 'spacing.16',
104
+ mx: 'auto',
105
+ },
106
+ },
107
+ bottom: {
108
+ positioner: {
109
+ alignItems: 'flex-end',
110
+ },
111
+ content: {
112
+ '--dialog-base-margin': 'spacing.16',
113
+ mx: 'auto',
114
+ },
115
+ },
116
+ },
117
+
118
+ scrollBehavior: {
119
+ inside: {
120
+ positioner: {
121
+ overflow: 'hidden',
122
+ },
123
+ content: {
124
+ maxH: 'calc(100% - 7.5rem)',
125
+ },
126
+ body: {
127
+ overflow: 'auto',
128
+ },
129
+ },
130
+ outside: {
131
+ positioner: {
132
+ overflow: 'auto',
133
+ pointerEvents: 'auto',
134
+ },
135
+ },
136
+ },
137
+
138
+ size: {
139
+ xs: {
140
+ content: {
141
+ maxW: 'sm',
142
+ },
143
+ },
144
+ sm: {
145
+ content: {
146
+ maxW: 'md',
147
+ },
148
+ },
149
+ md: {
150
+ content: {
151
+ maxW: 'lg',
152
+ },
153
+ },
154
+ lg: {
155
+ content: {
156
+ maxW: '2xl',
157
+ },
158
+ },
159
+ xl: {
160
+ content: {
161
+ maxW: '4xl',
162
+ },
163
+ },
164
+ cover: {
165
+ positioner: {
166
+ padding: '10',
167
+ },
168
+ content: {
169
+ width: '100%',
170
+ height: '100%',
171
+ '--dialog-margin': '0',
172
+ },
173
+ },
174
+ full: {
175
+ content: {
176
+ maxW: '100vw',
177
+ minH: '100vh',
178
+ '--dialog-margin': '0',
179
+ borderRadius: '0',
180
+ },
181
+ },
182
+ },
183
+
184
+ motionPreset: {
185
+ scale: {
186
+ content: {
187
+ _open: { animationName: 'scale-in, fade-in' },
188
+ _closed: { animationName: 'scale-out, fade-out' },
189
+ },
190
+ },
191
+ 'slide-in-bottom': {
192
+ content: {
193
+ _open: { animationName: 'slide-from-bottom, fade-in' },
194
+ _closed: { animationName: 'slide-to-bottom, fade-out' },
195
+ },
196
+ },
197
+ 'slide-in-top': {
198
+ content: {
199
+ _open: { animationName: 'slide-from-top, fade-in' },
200
+ _closed: { animationName: 'slide-to-top, fade-out' },
201
+ },
202
+ },
203
+ 'slide-in-left': {
204
+ content: {
205
+ _open: { animationName: 'slide-from-left, fade-in' },
206
+ _closed: { animationName: 'slide-to-left, fade-out' },
207
+ },
208
+ },
209
+ 'slide-in-right': {
210
+ content: {
211
+ _open: { animationName: 'slide-from-right, fade-in' },
212
+ _closed: { animationName: 'slide-to-right, fade-out' },
213
+ },
214
+ },
215
+ none: {},
216
+ },
217
+ },
218
+
219
+ defaultVariants: {
220
+ size: 'md',
221
+ scrollBehavior: 'outside',
222
+ placement: 'top',
223
+ motionPreset: 'scale',
224
+ },
225
+ })
@@ -0,0 +1,201 @@
1
+ import { defineSlotRecipe } from '@chakra-ui/react'
2
+ import { drawerAnatomy } from '@chakra-ui/react/anatomy'
3
+
4
+ export const drawerSlotRecipe = defineSlotRecipe({
5
+ slots: drawerAnatomy.keys(),
6
+ className: 'chakra-drawer',
7
+ base: {
8
+ backdrop: {
9
+ bg: 'blackAlpha.500',
10
+ pos: 'fixed',
11
+ insetInlineStart: 0,
12
+ top: 0,
13
+ w: '100vw',
14
+ h: '100dvh',
15
+ zIndex: 'modal',
16
+ _open: {
17
+ animationName: 'fade-in',
18
+ animationDuration: 'slow',
19
+ },
20
+ _closed: {
21
+ animationName: 'fade-out',
22
+ animationDuration: 'moderate',
23
+ },
24
+ },
25
+ positioner: {
26
+ display: 'flex',
27
+ width: '100vw',
28
+ height: '100dvh',
29
+ position: 'fixed',
30
+ insetInlineStart: 0,
31
+ top: 0,
32
+ zIndex: 'modal',
33
+ overscrollBehaviorY: 'none',
34
+ },
35
+ content: {
36
+ display: 'flex',
37
+ flexDirection: 'column',
38
+ position: 'relative',
39
+ width: '100%',
40
+ outline: 0,
41
+ zIndex: 'modal',
42
+ textStyle: 'sm',
43
+ maxH: '100dvh',
44
+ color: 'inherit',
45
+ bg: 'bg.panel',
46
+ boxShadow: 'lg',
47
+ _open: {
48
+ animationDuration: 'slowest',
49
+ animationTimingFunction: 'ease-in-smooth',
50
+ },
51
+ _closed: {
52
+ animationDuration: 'slower',
53
+ animationTimingFunction: 'ease-in-smooth',
54
+ },
55
+ },
56
+ header: {
57
+ flex: 0,
58
+ px: '6',
59
+ pt: '6',
60
+ pb: '4',
61
+ },
62
+ body: {
63
+ px: '6',
64
+ py: '2',
65
+ flex: '1',
66
+ overflow: 'auto',
67
+ },
68
+ footer: {
69
+ display: 'flex',
70
+ alignItems: 'center',
71
+ justifyContent: 'flex-end',
72
+ gap: '3',
73
+ px: '6',
74
+ pt: '2',
75
+ pb: '4',
76
+ },
77
+ title: {
78
+ textStyle: 'lg',
79
+ fontWeight: 'semibold',
80
+ },
81
+ description: {
82
+ color: 'fg.muted',
83
+ },
84
+ },
85
+
86
+ variants: {
87
+ size: {
88
+ xs: {
89
+ content: {
90
+ maxW: 'xs',
91
+ },
92
+ },
93
+ sm: {
94
+ content: {
95
+ maxW: 'md',
96
+ },
97
+ },
98
+ md: {
99
+ content: {
100
+ maxW: 'lg',
101
+ },
102
+ },
103
+ lg: {
104
+ content: {
105
+ maxW: '2xl',
106
+ },
107
+ },
108
+ xl: {
109
+ content: {
110
+ maxW: '4xl',
111
+ },
112
+ },
113
+ full: {
114
+ content: {
115
+ maxW: '100vw',
116
+ h: '100dvh',
117
+ },
118
+ },
119
+ },
120
+
121
+ placement: {
122
+ start: {
123
+ positioner: {
124
+ justifyContent: 'flex-start',
125
+ },
126
+ content: {
127
+ _open: {
128
+ animationName: {
129
+ base: 'slide-from-left-full, fade-in',
130
+ _rtl: 'slide-from-right-full, fade-in',
131
+ },
132
+ },
133
+ _closed: {
134
+ animationName: {
135
+ base: 'slide-to-left-full, fade-out',
136
+ _rtl: 'slide-to-right-full, fade-out',
137
+ },
138
+ },
139
+ },
140
+ },
141
+
142
+ end: {
143
+ positioner: {
144
+ justifyContent: 'flex-end',
145
+ },
146
+ content: {
147
+ _open: {
148
+ animationName: {
149
+ base: 'slide-from-right-full, fade-in',
150
+ _rtl: 'slide-from-left-full, fade-in',
151
+ },
152
+ },
153
+ _closed: {
154
+ animationName: {
155
+ base: 'slide-to-right-full, fade-out',
156
+ _rtl: 'slide-to-right-full, fade-out',
157
+ },
158
+ },
159
+ },
160
+ },
161
+
162
+ top: {
163
+ positioner: {
164
+ alignItems: 'flex-start',
165
+ },
166
+ content: {
167
+ maxW: '100%',
168
+ _open: { animationName: 'slide-from-top-full, fade-in' },
169
+ _closed: { animationName: 'slide-to-top-full, fade-out' },
170
+ },
171
+ },
172
+
173
+ bottom: {
174
+ positioner: {
175
+ alignItems: 'flex-end',
176
+ },
177
+ content: {
178
+ maxW: '100%',
179
+ _open: { animationName: 'slide-from-bottom-full, fade-in' },
180
+ _closed: { animationName: 'slide-to-bottom-full, fade-out' },
181
+ },
182
+ },
183
+ },
184
+
185
+ contained: {
186
+ true: {
187
+ positioner: {
188
+ padding: '4',
189
+ },
190
+ content: {
191
+ borderRadius: 'l3',
192
+ },
193
+ },
194
+ },
195
+ },
196
+
197
+ defaultVariants: {
198
+ size: 'xs',
199
+ placement: 'end',
200
+ },
201
+ })
@@ -0,0 +1,88 @@
1
+ import { defineSlotRecipe, defineStyle } from '@chakra-ui/react'
2
+ import { editableAnatomy } from '@chakra-ui/react/anatomy'
3
+
4
+ const sharedStyles = defineStyle({
5
+ fontSize: 'inherit',
6
+ fontWeight: 'inherit',
7
+ textAlign: 'inherit',
8
+ bg: 'transparent',
9
+ borderRadius: 'l2',
10
+ })
11
+
12
+ export const editableSlotRecipe = defineSlotRecipe({
13
+ slots: editableAnatomy.keys(),
14
+ className: 'chakra-editable',
15
+ base: {
16
+ root: {
17
+ display: 'inline-flex',
18
+ alignItems: 'center',
19
+ position: 'relative',
20
+ gap: '1.5',
21
+ width: 'full',
22
+ },
23
+ preview: {
24
+ ...sharedStyles,
25
+ py: '1',
26
+ px: '1',
27
+ display: 'inline-flex',
28
+ alignItems: 'center',
29
+ transitionProperty: 'common',
30
+ transitionDuration: 'normal',
31
+ cursor: 'text',
32
+ _hover: {
33
+ bg: 'bg.muted',
34
+ },
35
+ _disabled: {
36
+ userSelect: 'none',
37
+ },
38
+ },
39
+ input: {
40
+ ...sharedStyles,
41
+ outline: '0',
42
+ py: '1',
43
+ px: '1',
44
+ transitionProperty: 'common',
45
+ transitionDuration: 'normal',
46
+ width: 'full',
47
+ focusVisibleRing: 'inside',
48
+ focusRingWidth: '2px',
49
+ _placeholder: { opacity: 0.6 },
50
+ },
51
+
52
+ control: {
53
+ display: 'inline-flex',
54
+ alignItems: 'center',
55
+ gap: '1.5',
56
+ },
57
+ },
58
+
59
+ variants: {
60
+ size: {
61
+ sm: {
62
+ root: {
63
+ textStyle: 'sm',
64
+ },
65
+ preview: { minH: '8' },
66
+ input: { minH: '8' },
67
+ },
68
+ md: {
69
+ root: {
70
+ textStyle: 'sm',
71
+ },
72
+ preview: { minH: '9' },
73
+ input: { minH: '9' },
74
+ },
75
+ lg: {
76
+ root: {
77
+ textStyle: 'md',
78
+ },
79
+ preview: { minH: '10' },
80
+ input: { minH: '10' },
81
+ },
82
+ },
83
+ },
84
+
85
+ defaultVariants: {
86
+ size: 'md',
87
+ },
88
+ })
@@ -0,0 +1,88 @@
1
+ import { defineSlotRecipe } from '@chakra-ui/react'
2
+ import { emptyStateAnatomy } from '@chakra-ui/react/anatomy'
3
+
4
+ export const emptyStateSlotRecipe = defineSlotRecipe({
5
+ slots: emptyStateAnatomy.keys(),
6
+ className: 'chakra-empty-state',
7
+ base: {
8
+ root: {
9
+ width: 'full',
10
+ },
11
+ content: {
12
+ display: 'flex',
13
+ flexDirection: 'column',
14
+ alignItems: 'center',
15
+ justifyContent: 'center',
16
+ },
17
+ indicator: {
18
+ display: 'flex',
19
+ alignItems: 'center',
20
+ justifyContent: 'center',
21
+ color: 'fg.subtle',
22
+ _icon: {
23
+ boxSize: '1em',
24
+ },
25
+ },
26
+ title: {
27
+ fontWeight: 'semibold',
28
+ },
29
+ description: {
30
+ textStyle: 'sm',
31
+ color: 'fg.muted',
32
+ },
33
+ },
34
+
35
+ variants: {
36
+ size: {
37
+ sm: {
38
+ root: {
39
+ px: '4',
40
+ py: '6',
41
+ },
42
+ title: {
43
+ textStyle: 'md',
44
+ },
45
+ content: {
46
+ gap: '4',
47
+ },
48
+ indicator: {
49
+ textStyle: '2xl',
50
+ },
51
+ },
52
+ md: {
53
+ root: {
54
+ px: '8',
55
+ py: '12',
56
+ },
57
+ title: {
58
+ textStyle: 'lg',
59
+ },
60
+ content: {
61
+ gap: '6',
62
+ },
63
+ indicator: {
64
+ textStyle: '4xl',
65
+ },
66
+ },
67
+ lg: {
68
+ root: {
69
+ px: '12',
70
+ py: '16',
71
+ },
72
+ title: {
73
+ textStyle: 'xl',
74
+ },
75
+ content: {
76
+ gap: '8',
77
+ },
78
+ indicator: {
79
+ textStyle: '6xl',
80
+ },
81
+ },
82
+ },
83
+ },
84
+
85
+ defaultVariants: {
86
+ size: 'md',
87
+ },
88
+ })