@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,124 @@
1
+ import { defineSlotRecipe } from '@chakra-ui/react'
2
+ import { menuAnatomy } from '@chakra-ui/react/anatomy'
3
+
4
+ export const menuSlotRecipe = defineSlotRecipe({
5
+ className: 'chakra-menu',
6
+ slots: menuAnatomy.keys(),
7
+ base: {
8
+ content: {
9
+ outline: 0,
10
+ bg: 'bg.panel',
11
+ boxShadow: 'lg',
12
+ color: 'fg',
13
+ '--menu-z-index': 'zIndex.dropdown',
14
+ zIndex: 'calc(var(--menu-z-index) + var(--layer-index, 0))',
15
+ borderRadius: 'l2',
16
+ overflow: 'hidden',
17
+ _open: {
18
+ animationStyle: 'slide-fade-in',
19
+ animationDuration: 'fast',
20
+ },
21
+ _closed: {
22
+ animationStyle: 'slide-fade-out',
23
+ animationDuration: 'faster',
24
+ },
25
+ },
26
+ item: {
27
+ textDecoration: 'none',
28
+ color: 'fg',
29
+ userSelect: 'none',
30
+ borderRadius: 'l3',
31
+ width: '100%',
32
+ display: 'flex',
33
+ cursor: 'menuitem',
34
+ alignItems: 'center',
35
+ textAlign: 'start',
36
+ position: 'relative',
37
+ flex: '0 0 auto',
38
+ outline: 0,
39
+ _disabled: {
40
+ layerStyle: 'disabled',
41
+ },
42
+ },
43
+ itemText: {
44
+ flex: '1',
45
+ },
46
+ itemGroupLabel: {
47
+ px: '2',
48
+ py: '1.5',
49
+ fontWeight: 'semibold',
50
+ textStyle: 'sm',
51
+ },
52
+ indicator: {
53
+ display: 'inline-flex',
54
+ alignItems: 'center',
55
+ justifyContent: 'center',
56
+ flexShrink: '0',
57
+ },
58
+ itemCommand: {
59
+ opacity: '0.6',
60
+ textStyle: 'xs',
61
+ ms: 'auto',
62
+ ps: '4',
63
+ letterSpacing: 'widest',
64
+ },
65
+ separator: {
66
+ height: '1px',
67
+ bg: 'bg.muted',
68
+ my: '1',
69
+ mx: '-1',
70
+ },
71
+ },
72
+
73
+ variants: {
74
+ variant: {
75
+ subtle: {
76
+ item: {
77
+ _highlighted: {
78
+ bg: 'bg.subtle',
79
+ },
80
+ },
81
+ },
82
+ solid: {
83
+ item: {
84
+ _highlighted: {
85
+ bg: 'colorPalette.solid',
86
+ color: 'colorPalette.contrast',
87
+ },
88
+ },
89
+ },
90
+ },
91
+
92
+ size: {
93
+ sm: {
94
+ content: {
95
+ minW: '8rem',
96
+ padding: '1',
97
+ },
98
+ item: {
99
+ gap: '1',
100
+ textStyle: 'xs',
101
+ py: '1',
102
+ px: '1.5',
103
+ },
104
+ },
105
+ md: {
106
+ content: {
107
+ minW: '8rem',
108
+ padding: '1.5',
109
+ },
110
+ item: {
111
+ gap: '2',
112
+ textStyle: 'sm',
113
+ py: '1.5',
114
+ px: '2',
115
+ },
116
+ },
117
+ },
118
+ },
119
+
120
+ defaultVariants: {
121
+ size: 'md',
122
+ variant: 'subtle',
123
+ },
124
+ })
@@ -0,0 +1,140 @@
1
+ import { defineSlotRecipe } from '@chakra-ui/react'
2
+ import { nativeSelectAnatomy } from '@chakra-ui/react/anatomy'
3
+
4
+ import { selectSlotRecipe } from './select'
5
+
6
+ export const nativeSelectSlotRecipe = defineSlotRecipe({
7
+ className: 'chakra-native-select',
8
+ slots: nativeSelectAnatomy.keys(),
9
+
10
+ base: {
11
+ root: {
12
+ height: 'fit-content',
13
+ display: 'flex',
14
+ width: '100%',
15
+ position: 'relative',
16
+ },
17
+ field: {
18
+ width: '100%',
19
+ minWidth: '0',
20
+ outline: '0',
21
+ appearance: 'none',
22
+ borderRadius: 'l2',
23
+ _disabled: {
24
+ layerStyle: 'disabled',
25
+ },
26
+ _invalid: {
27
+ borderColor: 'border.error',
28
+ },
29
+ focusVisibleRing: 'inside',
30
+ lineHeight: 'normal',
31
+ '& > option, & > optgroup': {
32
+ bg: 'inherit',
33
+ },
34
+ },
35
+ indicator: {
36
+ position: 'absolute',
37
+ display: 'inline-flex',
38
+ alignItems: 'center',
39
+ justifyContent: 'center',
40
+ pointerEvents: 'none',
41
+ top: '50%',
42
+ transform: 'translateY(-50%)',
43
+ height: '100%',
44
+ color: 'fg.muted',
45
+ _disabled: {
46
+ opacity: '0.5',
47
+ },
48
+ _invalid: {
49
+ color: 'fg.error',
50
+ },
51
+ _icon: {
52
+ width: '1em',
53
+ height: '1em',
54
+ },
55
+ },
56
+ },
57
+
58
+ variants: {
59
+ variant: {
60
+ outline: {
61
+ field: selectSlotRecipe.variants?.variant.outline.trigger,
62
+ },
63
+ subtle: {
64
+ field: selectSlotRecipe.variants?.variant.subtle.trigger,
65
+ },
66
+ plain: {
67
+ field: {
68
+ bg: 'transparent',
69
+ color: 'fg',
70
+ focusRingWidth: '2px',
71
+ },
72
+ },
73
+ },
74
+
75
+ size: {
76
+ xs: {
77
+ field: {
78
+ textStyle: 'xs',
79
+ ps: '2',
80
+ pe: '6',
81
+ height: '6',
82
+ },
83
+ indicator: {
84
+ textStyle: 'sm',
85
+ insetEnd: '1.5',
86
+ },
87
+ },
88
+ sm: {
89
+ field: {
90
+ textStyle: 'sm',
91
+ ps: '2.5',
92
+ pe: '8',
93
+ height: '8',
94
+ },
95
+ indicator: {
96
+ textStyle: 'md',
97
+ insetEnd: '2',
98
+ },
99
+ },
100
+ md: {
101
+ field: {
102
+ textStyle: 'sm',
103
+ ps: '3',
104
+ pe: '8',
105
+ height: '10',
106
+ },
107
+ indicator: {
108
+ textStyle: 'lg',
109
+ insetEnd: '2',
110
+ },
111
+ },
112
+ lg: {
113
+ field: {
114
+ textStyle: 'md',
115
+ ps: '4',
116
+ pe: '8',
117
+ height: '11',
118
+ },
119
+ indicator: {
120
+ textStyle: 'xl',
121
+ insetEnd: '3',
122
+ },
123
+ },
124
+ xl: {
125
+ field: {
126
+ textStyle: 'md',
127
+ ps: '4.5',
128
+ pe: '10',
129
+ height: '12',
130
+ },
131
+ indicator: {
132
+ textStyle: 'xl',
133
+ insetEnd: '3',
134
+ },
135
+ },
136
+ },
137
+ },
138
+
139
+ defaultVariants: selectSlotRecipe.defaultVariants,
140
+ })
@@ -0,0 +1,115 @@
1
+ import { defineSlotRecipe, defineStyle } from '@chakra-ui/react'
2
+ import { numberInputAnatomy } from '@chakra-ui/react/anatomy'
3
+
4
+ import { mapEntries } from '../../utils.ts'
5
+ import { inputRecipe } from './input.ts'
6
+
7
+ const triggerStyle = defineStyle({
8
+ display: 'flex',
9
+ justifyContent: 'center',
10
+ alignItems: 'center',
11
+ flex: '1',
12
+ userSelect: 'none',
13
+ cursor: 'button',
14
+ lineHeight: '1',
15
+ color: 'fg.muted',
16
+ '--stepper-base-radius': 'radii.xs',
17
+ '--stepper-radius': 'calc(var(--stepper-base-radius) + 1px)',
18
+ _icon: {
19
+ boxSize: '1em',
20
+ },
21
+ _disabled: {
22
+ opacity: '0.5',
23
+ },
24
+ _hover: {
25
+ bg: 'bg.muted',
26
+ },
27
+ _active: {
28
+ bg: 'bg.emphasized',
29
+ },
30
+ })
31
+
32
+ export const numberInputSlotRecipe = defineSlotRecipe({
33
+ className: 'chakra-number-input',
34
+ slots: numberInputAnatomy.keys(),
35
+ base: {
36
+ root: {
37
+ position: 'relative',
38
+ zIndex: '0',
39
+ isolation: 'isolate',
40
+ },
41
+ input: {
42
+ ...inputRecipe.base,
43
+ verticalAlign: 'top',
44
+ pe: 'calc(var(--stepper-width) + 0.5rem)',
45
+ },
46
+ control: {
47
+ display: 'flex',
48
+ flexDirection: 'column',
49
+ position: 'absolute',
50
+ top: '0',
51
+ insetEnd: '0px',
52
+ margin: '1px',
53
+ width: 'var(--stepper-width)',
54
+ height: 'calc(100% - 2px)',
55
+ zIndex: '1',
56
+ borderStartWidth: '1px',
57
+ divideY: '1px',
58
+ },
59
+ incrementTrigger: {
60
+ ...triggerStyle,
61
+ borderTopEndRadius: 'var(--stepper-radius)',
62
+ },
63
+ decrementTrigger: {
64
+ ...triggerStyle,
65
+ borderBottomEndRadius: 'var(--stepper-radius)',
66
+ },
67
+ valueText: {
68
+ fontWeight: 'medium',
69
+ fontFeatureSettings: 'pnum',
70
+ fontVariantNumeric: 'proportional-nums',
71
+ },
72
+ },
73
+ variants: {
74
+ size: {
75
+ xs: {
76
+ input: inputRecipe.variants!.size.xs,
77
+ control: {
78
+ fontSize: '2xs',
79
+ '--stepper-width': 'sizes.4',
80
+ },
81
+ },
82
+ sm: {
83
+ input: inputRecipe.variants!.size.sm,
84
+ control: {
85
+ fontSize: 'xs',
86
+ '--stepper-width': 'sizes.5',
87
+ },
88
+ },
89
+ md: {
90
+ input: inputRecipe.variants!.size.md,
91
+ control: {
92
+ fontSize: 'sm',
93
+ '--stepper-width': 'sizes.6',
94
+ },
95
+ },
96
+ lg: {
97
+ input: inputRecipe.variants!.size.lg,
98
+ control: {
99
+ fontSize: 'sm',
100
+ '--stepper-width': 'sizes.6',
101
+ },
102
+ },
103
+ },
104
+
105
+ variant: mapEntries(inputRecipe.variants!.variant, (key, variantStyles) => [
106
+ key,
107
+ { input: variantStyles },
108
+ ]),
109
+ },
110
+
111
+ defaultVariants: {
112
+ size: 'md',
113
+ variant: 'outline',
114
+ },
115
+ })
@@ -0,0 +1,27 @@
1
+ import { defineSlotRecipe } from '@chakra-ui/react'
2
+ import { pinInputAnatomy } from '@chakra-ui/react/anatomy'
3
+
4
+ import { mapEntries } from '../../utils.ts'
5
+ import { inputRecipe } from './input'
6
+
7
+ const { variants, defaultVariants } = inputRecipe
8
+
9
+ export const pinInputSlotRecipe = defineSlotRecipe({
10
+ className: 'chakra-pin-input',
11
+ slots: pinInputAnatomy.keys(),
12
+ base: {
13
+ input: {
14
+ ...inputRecipe.base,
15
+ textAlign: 'center',
16
+ width: 'var(--input-height)',
17
+ },
18
+ },
19
+ variants: {
20
+ size: mapEntries(variants!.size, (key, value) => [key, { input: value }]),
21
+ variant: mapEntries(variants!.variant, (key, value) => [
22
+ key,
23
+ { input: value },
24
+ ]),
25
+ },
26
+ defaultVariants: defaultVariants,
27
+ })
@@ -0,0 +1,86 @@
1
+ import { defineSlotRecipe } from '@chakra-ui/react'
2
+ import { popoverAnatomy } from '@chakra-ui/react/anatomy'
3
+
4
+ export const popoverSlotRecipe = defineSlotRecipe({
5
+ className: 'chakra-popover',
6
+ slots: popoverAnatomy.keys(),
7
+ base: {
8
+ content: {
9
+ position: 'relative',
10
+ display: 'flex',
11
+ flexDirection: 'column',
12
+ textStyle: 'sm',
13
+ '--popover-bg': 'colors.bg.panel',
14
+ bg: 'var(--popover-bg)',
15
+ boxShadow: 'lg',
16
+ '--popover-size': 'sizes.xs',
17
+ '--popover-mobile-size': 'calc(100dvw - 1rem)',
18
+ width: {
19
+ base: 'min(var(--popover-mobile-size), var(--popover-size))',
20
+ sm: 'var(--popover-size)',
21
+ },
22
+ borderRadius: 'l3',
23
+ '--popover-z-index': 'zIndex.popover',
24
+ zIndex: 'calc(var(--popover-z-index) + var(--layer-index, 0))',
25
+ outline: '0',
26
+ transformOrigin: 'var(--transform-origin)',
27
+ _open: {
28
+ animationStyle: 'scale-fade-in',
29
+ animationDuration: 'fast',
30
+ },
31
+ _closed: {
32
+ animationStyle: 'scale-fade-out',
33
+ animationDuration: 'faster',
34
+ },
35
+ },
36
+ header: {
37
+ paddingInline: 'var(--popover-padding)',
38
+ paddingTop: 'var(--popover-padding)',
39
+ },
40
+ body: {
41
+ padding: 'var(--popover-padding)',
42
+ flex: '1',
43
+ },
44
+ footer: {
45
+ display: 'flex',
46
+ alignItems: 'center',
47
+ paddingInline: 'var(--popover-padding)',
48
+ paddingBottom: 'var(--popover-padding)',
49
+ },
50
+ arrow: {
51
+ '--arrow-size': 'sizes.3',
52
+ '--arrow-background': 'var(--popover-bg)',
53
+ },
54
+ arrowTip: {
55
+ borderTopWidth: '1px',
56
+ borderInlineStartWidth: '1px',
57
+ },
58
+ },
59
+ variants: {
60
+ size: {
61
+ xs: {
62
+ content: {
63
+ '--popover-padding': 'spacing.3',
64
+ },
65
+ },
66
+ sm: {
67
+ content: {
68
+ '--popover-padding': 'spacing.4',
69
+ },
70
+ },
71
+ md: {
72
+ content: {
73
+ '--popover-padding': 'spacing.5',
74
+ },
75
+ },
76
+ lg: {
77
+ content: {
78
+ '--popover-padding': 'spacing.6',
79
+ },
80
+ },
81
+ },
82
+ },
83
+ defaultVariants: {
84
+ size: 'md',
85
+ },
86
+ })
@@ -0,0 +1,94 @@
1
+ import { defineSlotRecipe } from '@chakra-ui/react'
2
+ import { progressAnatomy } from '@chakra-ui/react/anatomy'
3
+
4
+ export const progressCircleSlotRecipe = defineSlotRecipe({
5
+ className: 'chakra-progress-circle',
6
+ slots: progressAnatomy.keys(),
7
+ base: {
8
+ root: {
9
+ display: 'inline-flex',
10
+ textStyle: 'sm',
11
+ position: 'relative',
12
+ },
13
+ circle: {
14
+ _indeterminate: {
15
+ animation: 'spin 2s linear infinite',
16
+ },
17
+ },
18
+ circleTrack: {
19
+ '--track-color': 'colors.colorPalette.muted',
20
+ stroke: 'var(--track-color)',
21
+ },
22
+ circleRange: {
23
+ stroke: 'colorPalette.solid',
24
+ transitionProperty: 'stroke-dasharray',
25
+ transitionDuration: '0.6s',
26
+ _indeterminate: {
27
+ animation: 'circular-progress 1.5s linear infinite',
28
+ },
29
+ },
30
+ label: {
31
+ display: 'inline-flex',
32
+ },
33
+ valueText: {
34
+ lineHeight: '1',
35
+ fontWeight: 'medium',
36
+ letterSpacing: 'tight',
37
+ fontVariantNumeric: 'tabular-nums',
38
+ },
39
+ },
40
+
41
+ variants: {
42
+ size: {
43
+ xs: {
44
+ circle: {
45
+ '--size': '24px',
46
+ '--thickness': '4px',
47
+ },
48
+ valueText: {
49
+ textStyle: '2xs',
50
+ },
51
+ },
52
+ sm: {
53
+ circle: {
54
+ '--size': '32px',
55
+ '--thickness': '5px',
56
+ },
57
+ valueText: {
58
+ textStyle: '2xs',
59
+ },
60
+ },
61
+ md: {
62
+ circle: {
63
+ '--size': '40px',
64
+ '--thickness': '6px',
65
+ },
66
+ valueText: {
67
+ textStyle: 'xs',
68
+ },
69
+ },
70
+ lg: {
71
+ circle: {
72
+ '--size': '48px',
73
+ '--thickness': '7px',
74
+ },
75
+ valueText: {
76
+ textStyle: 'sm',
77
+ },
78
+ },
79
+ xl: {
80
+ circle: {
81
+ '--size': '64px',
82
+ '--thickness': '8px',
83
+ },
84
+ valueText: {
85
+ textStyle: 'sm',
86
+ },
87
+ },
88
+ },
89
+ },
90
+
91
+ defaultVariants: {
92
+ size: 'md',
93
+ },
94
+ })
@@ -0,0 +1,127 @@
1
+ import { defineSlotRecipe } from '@chakra-ui/react'
2
+ import { progressAnatomy } from '@chakra-ui/react/anatomy'
3
+
4
+ export const progressSlotRecipe = defineSlotRecipe({
5
+ slots: progressAnatomy.keys(),
6
+ className: 'chakra-progress',
7
+ base: {
8
+ root: {
9
+ textStyle: 'sm',
10
+ position: 'relative',
11
+ },
12
+ track: {
13
+ overflow: 'hidden',
14
+ position: 'relative',
15
+ },
16
+ range: {
17
+ display: 'flex',
18
+ alignItems: 'center',
19
+ justifyContent: 'center',
20
+ transitionProperty: 'width, height',
21
+ transitionDuration: 'slow',
22
+ height: '100%',
23
+ bgColor: 'var(--track-color)',
24
+ _indeterminate: {
25
+ '--animate-from-x': '-40%',
26
+ '--animate-to-x': '100%',
27
+ position: 'absolute',
28
+ willChange: 'left',
29
+ minWidth: '50%',
30
+ animation: 'position 1s ease infinite normal none running',
31
+ backgroundImage: `linear-gradient(to right, transparent 0%, var(--track-color) 50%, transparent 100%)`,
32
+ },
33
+ },
34
+ label: {
35
+ display: 'inline-flex',
36
+ fontWeight: 'medium',
37
+ },
38
+ valueText: {
39
+ textStyle: 'xs',
40
+ lineHeight: '1',
41
+ fontWeight: 'medium',
42
+ },
43
+ },
44
+
45
+ variants: {
46
+ variant: {
47
+ outline: {
48
+ track: {
49
+ shadow: 'inset',
50
+ bgColor: 'bg.muted',
51
+ },
52
+ range: {
53
+ bgColor: 'colorPalette.solid',
54
+ },
55
+ },
56
+ subtle: {
57
+ track: {
58
+ bgColor: 'colorPalette.muted',
59
+ },
60
+ range: {
61
+ bgColor: 'colorPalette.solid/72',
62
+ },
63
+ },
64
+ },
65
+
66
+ shape: {
67
+ square: {},
68
+ rounded: {
69
+ track: {
70
+ borderRadius: 'l1',
71
+ },
72
+ },
73
+ full: {
74
+ track: {
75
+ borderRadius: 'full',
76
+ },
77
+ },
78
+ },
79
+
80
+ striped: {
81
+ true: {
82
+ range: {
83
+ backgroundImage: `linear-gradient(45deg, var(--stripe-color) 25%, transparent 25%, transparent 50%, var(--stripe-color) 50%, var(--stripe-color) 75%, transparent 75%, transparent)`,
84
+ backgroundSize: `var(--stripe-size) var(--stripe-size)`,
85
+ '--stripe-size': '1rem',
86
+ '--stripe-color': {
87
+ _light: 'rgba(255, 255, 255, 0.3)',
88
+ _dark: 'rgba(0, 0, 0, 0.3)',
89
+ },
90
+ },
91
+ },
92
+ },
93
+
94
+ animated: {
95
+ true: {
96
+ range: {
97
+ '--animate-from': 'var(--stripe-size)',
98
+ animation: 'bg-position 1s linear infinite',
99
+ },
100
+ },
101
+ },
102
+
103
+ size: {
104
+ xs: {
105
+ track: { h: '1.5' },
106
+ },
107
+ sm: {
108
+ track: { h: '2' },
109
+ },
110
+ md: {
111
+ track: { h: '2.5' },
112
+ },
113
+ lg: {
114
+ track: { h: '3' },
115
+ },
116
+ xl: {
117
+ track: { h: '4' },
118
+ },
119
+ },
120
+ },
121
+
122
+ defaultVariants: {
123
+ variant: 'outline',
124
+ size: 'md',
125
+ shape: 'rounded',
126
+ },
127
+ })