@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.
- package/CHANGELOG.md +7 -154
- package/dist/index.cjs +8461 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +26 -0
- package/dist/index.d.ts +25 -7
- package/dist/index.js +8415 -35
- package/dist/index.js.map +1 -1
- package/package.json +24 -21
- package/src/components/accordion.tsx +47 -0
- package/src/components/action-bar.tsx +40 -0
- package/src/components/alert.tsx +51 -0
- package/src/components/app-shell/app-shell.recipe.ts +52 -0
- package/src/components/app-shell/app-shell.stories.tsx +51 -0
- package/src/components/app-shell/app-shell.tsx +94 -0
- package/src/components/app-shell/index.ts +3 -0
- package/src/components/avatar.tsx +74 -0
- package/src/components/blockquote.tsx +31 -0
- package/src/components/breadcrumbs/breadcrumb.stories.tsx +17 -0
- package/src/components/breadcrumbs/breadcrumb.tsx +36 -0
- package/src/components/breadcrumbs/index.ts +1 -0
- package/src/components/breadcrumbs/namespace.ts +8 -0
- package/src/components/button/button.recipe.ts +182 -0
- package/src/components/button/button.stories.tsx +99 -0
- package/src/components/button/button.tsx +55 -0
- package/src/components/button/index.ts +2 -0
- package/src/components/checkbox/checkbox.tsx +26 -0
- package/src/components/checkbox/index.ts +2 -0
- package/src/components/checkbox-card.tsx +57 -0
- package/src/components/checkbox.tsx +25 -0
- package/src/components/clipboard.tsx +107 -0
- package/src/components/close-button/close-button.stories.tsx +12 -0
- package/src/components/close-button/close-button.tsx +18 -0
- package/src/components/close-button/index.ts +2 -0
- package/src/components/color-mode.tsx +65 -0
- package/src/components/command/command.recipe.ts +17 -0
- package/src/components/command/command.stories.tsx +47 -0
- package/src/components/command/command.tsx +50 -0
- package/src/components/command/index.ts +1 -0
- package/src/components/data-list.tsx +37 -0
- package/src/components/dialog/dialog.tsx +66 -0
- package/src/components/dialog/index.ts +1 -0
- package/src/components/dialog/namespace.ts +18 -0
- package/src/components/drawer/drawer.tsx +56 -0
- package/src/components/drawer/index.ts +3 -0
- package/src/components/drawer/namespace.ts +19 -0
- package/src/components/empty-state.tsx +34 -0
- package/src/components/field.tsx +33 -0
- package/src/components/file-button.tsx +166 -0
- package/src/components/grid-list/grid-list.recipe.ts +113 -0
- package/src/components/hover-card.tsx +35 -0
- package/src/components/icon-badge/icon-badge.recipe.ts +57 -0
- package/src/components/icon-badge/icon-badge.stories.tsx +38 -0
- package/src/components/icon-badge/icon-badge.tsx +59 -0
- package/src/components/icon-badge/index.ts +2 -0
- package/src/components/icons/create-icon.tsx +41 -0
- package/src/components/icons/icons.tsx +121 -0
- package/src/components/icons/index.ts +1 -0
- package/src/components/input-group/index.ts +1 -0
- package/src/components/input-group/input-group.tsx +46 -0
- package/src/components/link/index.ts +2 -0
- package/src/components/link/link.stories.tsx +17 -0
- package/src/components/link/link.test.tsx +33 -0
- package/src/components/link/link.tsx +27 -0
- package/src/components/link-button.tsx +12 -0
- package/src/components/loading-overlay/index.ts +1 -0
- package/src/components/loading-overlay/loading-overlay.recipe.ts +61 -0
- package/src/components/loading-overlay/loading-overlay.stories.tsx +68 -0
- package/src/components/loading-overlay/loading-overlay.tsx +54 -0
- package/src/components/loading-overlay/namespace.ts +7 -0
- package/src/components/menu.tsx +108 -0
- package/src/components/native-select.tsx +57 -0
- package/src/components/navbar/index.ts +1 -0
- package/src/components/navbar/namespace.ts +9 -0
- package/src/components/navbar/navbar.recipe.ts +109 -0
- package/src/components/navbar/navbar.stories.tsx +435 -0
- package/src/components/navbar/navbar.test.tsx +49 -0
- package/src/components/navbar/navbar.tsx +39 -0
- package/src/components/number-input/index.ts +2 -0
- package/src/components/number-input/number-input.tsx +41 -0
- package/src/components/pagination.tsx +207 -0
- package/src/components/password-input/index.ts +2 -0
- package/src/components/password-input/password-input.tsx +98 -0
- package/src/components/persona/index.ts +2 -0
- package/src/components/persona/namespace.ts +18 -0
- package/src/components/persona/persona-primitive.tsx +220 -0
- package/src/components/persona/persona.recipe.ts +94 -0
- package/src/components/persona/persona.stories.tsx +101 -0
- package/src/components/persona/persona.tsx +143 -0
- package/src/components/pin-input/index.ts +2 -0
- package/src/components/pin-input/pin-input.tsx +36 -0
- package/src/components/popover.tsx +58 -0
- package/src/components/progress-circle.tsx +37 -0
- package/src/components/progress.tsx +40 -0
- package/src/components/prose.tsx +264 -0
- package/src/components/provider.tsx +12 -0
- package/src/components/radio/index.ts +2 -0
- package/src/components/radio/radio.tsx +27 -0
- package/src/components/radio-card.tsx +57 -0
- package/src/components/radio.tsx +24 -0
- package/src/components/rating.tsx +27 -0
- package/src/components/search-input/index.ts +2 -0
- package/src/components/search-input/search-input.stories.tsx +63 -0
- package/src/components/search-input/search-input.tsx +134 -0
- package/src/components/segmented-control.tsx +47 -0
- package/src/components/select/index.ts +1 -0
- package/src/components/select/namespace.ts +18 -0
- package/src/components/select/select.tsx +135 -0
- package/src/components/sidebar/index.ts +7 -0
- package/src/components/sidebar/namespace.ts +27 -0
- package/src/components/sidebar/sidebar-item.recipe.ts +65 -0
- package/src/components/sidebar/sidebar.recipe.ts +237 -0
- package/src/components/sidebar/sidebar.stories.tsx +903 -0
- package/src/components/sidebar/sidebar.tsx +204 -0
- package/src/components/skeleton.tsx +44 -0
- package/src/components/slider.tsx +53 -0
- package/src/components/spinner/index.ts +2 -0
- package/src/components/spinner/spinner.stories.tsx +19 -0
- package/src/components/spinner/spinner.tsx +21 -0
- package/src/components/stat.tsx +75 -0
- package/src/components/status.tsx +29 -0
- package/src/components/stepper-input.tsx +49 -0
- package/src/components/steps/index.ts +1 -0
- package/src/components/steps/namespace.ts +16 -0
- package/src/components/steps/steps.tsx +82 -0
- package/src/components/switch/index.ts +3 -0
- package/src/components/switch/switch.tsx +39 -0
- package/src/components/tag.tsx +39 -0
- package/src/components/timeline.tsx +17 -0
- package/src/components/toaster.tsx +43 -0
- package/src/components/toggle-tip.tsx +62 -0
- package/src/components/tooltip.tsx +46 -0
- package/src/index.ts +6 -7
- package/src/preset.ts +9 -0
- package/src/provider/index.ts +4 -0
- package/src/provider/sui-provider.tsx +34 -0
- package/src/provider/use-link.test.tsx +60 -0
- package/src/provider/use-link.tsx +13 -0
- package/src/theme/animation-styles.ts +53 -0
- package/src/theme/breakpoints.ts +11 -0
- package/src/theme/conditions.ts +26 -0
- package/src/theme/fluid-font-sizes.ts +65 -0
- package/src/theme/global-css.ts +94 -0
- package/src/theme/index.ts +72 -0
- package/src/theme/layer-styles.ts +116 -0
- package/src/theme/recipes/chakra/accordion.ts +145 -0
- package/src/theme/recipes/chakra/action-bar.ts +62 -0
- package/src/theme/recipes/chakra/alert.ts +157 -0
- package/src/theme/recipes/chakra/avatar.ts +141 -0
- package/src/theme/recipes/chakra/badge.ts +67 -0
- package/src/theme/recipes/chakra/blockquote.ts +83 -0
- package/src/theme/recipes/chakra/breadcrumb.ts +94 -0
- package/src/theme/recipes/chakra/card.ts +99 -0
- package/src/theme/recipes/chakra/checkbox-card.ts +212 -0
- package/src/theme/recipes/chakra/checkbox.ts +70 -0
- package/src/theme/recipes/chakra/checkmark.ts +83 -0
- package/src/theme/recipes/chakra/code.ts +17 -0
- package/src/theme/recipes/chakra/collapsible.ts +20 -0
- package/src/theme/recipes/chakra/container.ts +26 -0
- package/src/theme/recipes/chakra/data-list.ts +80 -0
- package/src/theme/recipes/chakra/dialog.ts +225 -0
- package/src/theme/recipes/chakra/drawer.ts +201 -0
- package/src/theme/recipes/chakra/editable.ts +88 -0
- package/src/theme/recipes/chakra/empty-state.ts +88 -0
- package/src/theme/recipes/chakra/field.ts +68 -0
- package/src/theme/recipes/chakra/fieldset.ts +62 -0
- package/src/theme/recipes/chakra/file-upload.ts +96 -0
- package/src/theme/recipes/chakra/heading.ts +27 -0
- package/src/theme/recipes/chakra/hover-card.ts +68 -0
- package/src/theme/recipes/chakra/icon.ts +30 -0
- package/src/theme/recipes/chakra/input-addon.ts +40 -0
- package/src/theme/recipes/chakra/input.ts +96 -0
- package/src/theme/recipes/chakra/kbd.ts +60 -0
- package/src/theme/recipes/chakra/link.ts +37 -0
- package/src/theme/recipes/chakra/list.ts +67 -0
- package/src/theme/recipes/chakra/mark.ts +27 -0
- package/src/theme/recipes/chakra/menu.ts +124 -0
- package/src/theme/recipes/chakra/native-select.ts +140 -0
- package/src/theme/recipes/chakra/number-input.ts +115 -0
- package/src/theme/recipes/chakra/pin-input.ts +27 -0
- package/src/theme/recipes/chakra/popover.ts +86 -0
- package/src/theme/recipes/chakra/progress-circle.ts +94 -0
- package/src/theme/recipes/chakra/progress.ts +127 -0
- package/src/theme/recipes/chakra/radio-card.ts +220 -0
- package/src/theme/recipes/chakra/radio-group.ts +72 -0
- package/src/theme/recipes/chakra/radiomark.ts +107 -0
- package/src/theme/recipes/chakra/rating-group.ts +94 -0
- package/src/theme/recipes/chakra/segment-group.ts +117 -0
- package/src/theme/recipes/chakra/select.ts +282 -0
- package/src/theme/recipes/chakra/separator.ts +51 -0
- package/src/theme/recipes/chakra/skeleton.ts +53 -0
- package/src/theme/recipes/chakra/skip-nav-link.ts +34 -0
- package/src/theme/recipes/chakra/slider.ts +178 -0
- package/src/theme/recipes/chakra/spinner.ts +32 -0
- package/src/theme/recipes/chakra/stat.ts +79 -0
- package/src/theme/recipes/chakra/status.ts +48 -0
- package/src/theme/recipes/chakra/steps.ts +218 -0
- package/src/theme/recipes/chakra/switch.ts +167 -0
- package/src/theme/recipes/chakra/table.ts +172 -0
- package/src/theme/recipes/chakra/tabs.ts +280 -0
- package/src/theme/recipes/chakra/tag.ts +131 -0
- package/src/theme/recipes/chakra/textarea.ts +88 -0
- package/src/theme/recipes/chakra/timeline.ts +138 -0
- package/src/theme/recipes/chakra/toast.ts +96 -0
- package/src/theme/recipes/chakra/tooltip.ts +40 -0
- package/src/theme/recipes.ts +46 -0
- package/src/theme/semantic-tokens/colors.ts +403 -0
- package/src/theme/semantic-tokens/radii.ts +7 -0
- package/src/theme/semantic-tokens/shadows.ts +52 -0
- package/src/theme/slot-recipes.ts +104 -0
- package/src/theme/text-styles.ts +39 -0
- package/src/theme/tokens/animations.ts +8 -0
- package/src/theme/tokens/aspect-ratios.ts +10 -0
- package/src/theme/tokens/blurs.ts +12 -0
- package/src/theme/tokens/borders.ts +9 -0
- package/src/theme/tokens/colors.ts +177 -0
- package/src/theme/tokens/cursor.ts +12 -0
- package/src/theme/tokens/durations.ts +11 -0
- package/src/theme/tokens/easings.ts +10 -0
- package/src/theme/tokens/font-sizes.ts +20 -0
- package/src/theme/tokens/font-weights.ts +13 -0
- package/src/theme/tokens/fonts.ts +15 -0
- package/src/theme/tokens/keyframes.ts +173 -0
- package/src/theme/tokens/letter-spacing.ts +9 -0
- package/src/theme/tokens/line-heights.ts +19 -0
- package/src/theme/tokens/radius.ts +18 -0
- package/src/theme/tokens/sizes.ts +71 -0
- package/src/theme/tokens/spacing.ts +38 -0
- package/src/theme/tokens/z-indices.ts +34 -0
- package/src/theme/utils.ts +46 -0
- package/dist/index.d.mts +0 -8
- package/dist/index.mjs +0 -11
- package/dist/index.mjs.map +0 -1
@@ -0,0 +1,237 @@
|
|
1
|
+
import { defineSlotRecipe } from '@chakra-ui/react'
|
2
|
+
|
3
|
+
export const sidebarSlotRecipe = defineSlotRecipe({
|
4
|
+
className: 'sui-sidebar',
|
5
|
+
slots: [
|
6
|
+
'root',
|
7
|
+
'backdrop',
|
8
|
+
'header',
|
9
|
+
'body',
|
10
|
+
'footer',
|
11
|
+
'trigger',
|
12
|
+
'flyoutTrigger',
|
13
|
+
'group',
|
14
|
+
'groupHeader',
|
15
|
+
'groupTitle',
|
16
|
+
'groupEndElement',
|
17
|
+
'groupContent',
|
18
|
+
'item',
|
19
|
+
'itemEndElement',
|
20
|
+
'track',
|
21
|
+
],
|
22
|
+
base: {
|
23
|
+
root: {
|
24
|
+
'--sidebar-z-index': 'zIndex.layer-3',
|
25
|
+
position: 'relative',
|
26
|
+
display: 'flex',
|
27
|
+
flexDirection: 'column',
|
28
|
+
},
|
29
|
+
backdrop: {
|
30
|
+
bg: 'blackAlpha.200',
|
31
|
+
position: 'fixed',
|
32
|
+
inset: 0,
|
33
|
+
'--sidebar-backdrop-z-index': 'zIndex.layer-3',
|
34
|
+
zIndex: 'calc(var(--sidebar-backdrop-z-index) - 2)',
|
35
|
+
_open: {
|
36
|
+
animationName: 'fade-in',
|
37
|
+
animationDuration: 'slow',
|
38
|
+
},
|
39
|
+
_closed: {
|
40
|
+
animationName: 'fade-out',
|
41
|
+
animationDuration: 'moderate',
|
42
|
+
},
|
43
|
+
},
|
44
|
+
trigger: {
|
45
|
+
display: 'inline-flex',
|
46
|
+
appearance: 'none',
|
47
|
+
alignItems: 'center',
|
48
|
+
justifyContent: 'center',
|
49
|
+
userSelect: 'none',
|
50
|
+
whiteSpace: 'nowrap',
|
51
|
+
verticalAlign: 'middle',
|
52
|
+
outline: 'none',
|
53
|
+
},
|
54
|
+
header: {
|
55
|
+
display: 'flex',
|
56
|
+
flexDirection: 'row',
|
57
|
+
py: 2,
|
58
|
+
},
|
59
|
+
body: {
|
60
|
+
display: 'flex',
|
61
|
+
flexDirection: 'column',
|
62
|
+
gap: 4,
|
63
|
+
flex: 1,
|
64
|
+
py: 3,
|
65
|
+
overflowY: 'auto',
|
66
|
+
},
|
67
|
+
footer: {
|
68
|
+
display: 'flex',
|
69
|
+
flexDirection: 'column',
|
70
|
+
py: 2,
|
71
|
+
},
|
72
|
+
group: {
|
73
|
+
position: 'relative',
|
74
|
+
},
|
75
|
+
groupHeader: {
|
76
|
+
display: 'flex',
|
77
|
+
flexDirection: 'row',
|
78
|
+
gap: 1,
|
79
|
+
height: 6,
|
80
|
+
borderRadius: 'md',
|
81
|
+
fontSize: 'xs',
|
82
|
+
transitionProperty: 'common',
|
83
|
+
transitionDuration: 'fast',
|
84
|
+
_groupCollapsible: {
|
85
|
+
cursor: 'button',
|
86
|
+
userSelect: 'none',
|
87
|
+
_hover: {
|
88
|
+
bg: 'sidebar.accent.bg/80',
|
89
|
+
},
|
90
|
+
},
|
91
|
+
},
|
92
|
+
groupTitle: {
|
93
|
+
display: 'flex',
|
94
|
+
alignItems: 'center',
|
95
|
+
flex: 1,
|
96
|
+
px: 2,
|
97
|
+
fontWeight: 'medium',
|
98
|
+
color: 'sidebar.fg/70',
|
99
|
+
},
|
100
|
+
groupEndElement: {
|
101
|
+
'& > button': {
|
102
|
+
boxSize: 6,
|
103
|
+
},
|
104
|
+
},
|
105
|
+
groupContent: {
|
106
|
+
display: 'flex',
|
107
|
+
flexDirection: 'column',
|
108
|
+
gap: '1',
|
109
|
+
},
|
110
|
+
track: {
|
111
|
+
display: 'flex',
|
112
|
+
justifyContent: 'center',
|
113
|
+
position: 'absolute',
|
114
|
+
top: 0,
|
115
|
+
right: '-4px',
|
116
|
+
bottom: 0,
|
117
|
+
width: '7px',
|
118
|
+
cursor: 'button',
|
119
|
+
_after: {
|
120
|
+
content: '""',
|
121
|
+
display: 'block',
|
122
|
+
height: '100%',
|
123
|
+
width: '2px',
|
124
|
+
opacity: 0,
|
125
|
+
transitionProperty: 'opacity',
|
126
|
+
transitionDuration: 'fast',
|
127
|
+
transitionDelay: '0.2s',
|
128
|
+
bg: 'sidebar.accent.fg/60',
|
129
|
+
pointerEvents: 'none',
|
130
|
+
},
|
131
|
+
_hover: {
|
132
|
+
_after: {
|
133
|
+
opacity: 1,
|
134
|
+
},
|
135
|
+
},
|
136
|
+
},
|
137
|
+
flyoutTrigger: {
|
138
|
+
display: 'none',
|
139
|
+
},
|
140
|
+
},
|
141
|
+
variants: {
|
142
|
+
mode: {
|
143
|
+
collapsible: {
|
144
|
+
root: {
|
145
|
+
base: {
|
146
|
+
position: 'fixed',
|
147
|
+
height: '100dvh',
|
148
|
+
zIndex: 'layer-3',
|
149
|
+
},
|
150
|
+
md: {
|
151
|
+
position: 'relative',
|
152
|
+
height: 'auto',
|
153
|
+
zIndex: 'unset',
|
154
|
+
},
|
155
|
+
width: 'var(--sidebar-width, 280px)',
|
156
|
+
maxWidth: ['100vw', 'var(--sidebar-max-width, 320px)'],
|
157
|
+
minWidth: 'var(--sidebar-min-width, 220px)',
|
158
|
+
bg: 'sidebar.bg',
|
159
|
+
transitionProperty: 'margin-left',
|
160
|
+
_open: {
|
161
|
+
marginLeft: 0,
|
162
|
+
transitionDuration: 'moderate',
|
163
|
+
transitionTimingFunction: 'bounce-in',
|
164
|
+
},
|
165
|
+
_closed: {
|
166
|
+
marginLeft: 'calc(var(--sidebar-width, 280px) * -1)',
|
167
|
+
transitionDuration: 'fast',
|
168
|
+
transitionTimingFunction: 'bounce-out',
|
169
|
+
},
|
170
|
+
},
|
171
|
+
},
|
172
|
+
flyout: {
|
173
|
+
root: {
|
174
|
+
position: 'fixed',
|
175
|
+
top: 2,
|
176
|
+
left: 2,
|
177
|
+
bottom: 2,
|
178
|
+
zIndex: 'var(--sidebar-z-index)',
|
179
|
+
width: 'var(--sidebar-width, 280px)',
|
180
|
+
maxWidth: ['100vw', 'var(--sidebar-max-width, 320px)'],
|
181
|
+
minWidth: 'var(--sidebar-min-width, 220px)',
|
182
|
+
bg: 'sidebar.bg',
|
183
|
+
borderColor: 'sidebar.border',
|
184
|
+
boxShadow: 'none',
|
185
|
+
borderWidth: '1px',
|
186
|
+
borderRadius: 'lg',
|
187
|
+
_open: {
|
188
|
+
transitionDuration: 'moderate',
|
189
|
+
transitionTimingFunction: 'ease-out',
|
190
|
+
boxShadow: 'lg',
|
191
|
+
},
|
192
|
+
_closed: {
|
193
|
+
left: 'calc(var(--sidebar-width, 280px) * -1)',
|
194
|
+
transitionDuration: 'fast',
|
195
|
+
transitionTimingFunction: 'ease-in-out',
|
196
|
+
},
|
197
|
+
},
|
198
|
+
flyoutTrigger: {
|
199
|
+
display: 'block',
|
200
|
+
position: 'absolute',
|
201
|
+
'--sidebar-flyout-trigger-z-index': 'zIndex.layer-3',
|
202
|
+
zIndex: 'calc(var(--sidebar-flyout-trigger-z-index) - 1)',
|
203
|
+
height: '100%',
|
204
|
+
width: '8px',
|
205
|
+
},
|
206
|
+
track: {
|
207
|
+
top: '8px',
|
208
|
+
bottom: '8px',
|
209
|
+
},
|
210
|
+
},
|
211
|
+
compact: {},
|
212
|
+
},
|
213
|
+
variant: {
|
214
|
+
muted: {},
|
215
|
+
solid: {},
|
216
|
+
subtle: {},
|
217
|
+
},
|
218
|
+
size: {
|
219
|
+
md: {
|
220
|
+
header: {
|
221
|
+
px: 3,
|
222
|
+
},
|
223
|
+
body: {
|
224
|
+
px: 3,
|
225
|
+
},
|
226
|
+
footer: {
|
227
|
+
px: 3,
|
228
|
+
},
|
229
|
+
},
|
230
|
+
},
|
231
|
+
},
|
232
|
+
defaultVariants: {
|
233
|
+
mode: 'collapsible',
|
234
|
+
variant: 'muted',
|
235
|
+
size: 'md',
|
236
|
+
},
|
237
|
+
})
|