@saas-ui/react 2.11.2 → 3.0.0-alpha.1
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +13 -148
- package/dist/chunk-32JGENDB.js +19 -0
- package/dist/chunk-FZW2DYK3.js +19 -0
- package/dist/chunk-KHRLZUV4.js +35 -0
- package/dist/chunk-KTLWEUNW.js +1 -0
- package/dist/chunk-PKI6YH2V.js +31 -0
- package/dist/chunk-RTMS5TJN.js +10 -0
- package/dist/chunk-VBIVLREP.js +45 -0
- package/dist/chunk-VDXTEASE.js +117 -0
- package/dist/components/app-shell/index.cjs +68 -0
- package/dist/components/app-shell/index.d.cts +30 -0
- package/dist/components/app-shell/index.d.ts +30 -0
- package/dist/components/app-shell/index.js +45 -0
- package/dist/components/breadcrumbs/index.cjs +60 -0
- package/dist/components/breadcrumbs/index.d.cts +18 -0
- package/dist/components/breadcrumbs/index.d.ts +18 -0
- package/dist/components/breadcrumbs/index.js +37 -0
- package/dist/components/button/index.cjs +65 -0
- package/dist/components/button/index.d.cts +12 -0
- package/dist/components/button/index.d.ts +12 -0
- package/dist/components/button/index.js +45 -0
- package/dist/components/checkbox/index.cjs +45 -0
- package/dist/components/checkbox/index.d.cts +11 -0
- package/dist/components/checkbox/index.d.ts +11 -0
- package/dist/components/checkbox/index.js +20 -0
- package/dist/components/close-button/index.cjs +142 -0
- package/dist/components/close-button/index.d.cts +8 -0
- package/dist/components/close-button/index.d.ts +8 -0
- package/dist/components/close-button/index.js +9 -0
- package/dist/components/command/index.cjs +56 -0
- package/dist/components/command/index.d.cts +6 -0
- package/dist/components/command/index.d.ts +6 -0
- package/dist/components/command/index.js +33 -0
- package/dist/components/dialog/index.cjs +243 -0
- package/dist/components/dialog/index.d.cts +27 -0
- package/dist/components/dialog/index.d.ts +27 -0
- package/dist/components/dialog/index.js +73 -0
- package/dist/components/drawer/index.cjs +237 -0
- package/dist/components/drawer/index.d.cts +28 -0
- package/dist/components/drawer/index.d.ts +28 -0
- package/dist/components/drawer/index.js +65 -0
- package/dist/components/icon-badge/index.cjs +70 -0
- package/dist/components/icon-badge/index.d.cts +16 -0
- package/dist/components/icon-badge/index.d.ts +16 -0
- package/dist/components/icon-badge/index.js +38 -0
- package/dist/components/icons/index.cjs +155 -0
- package/dist/components/icons/index.d.cts +19 -0
- package/dist/components/icons/index.d.ts +19 -0
- package/dist/components/icons/index.js +35 -0
- package/dist/components/input-group/index.cjs +56 -0
- package/dist/components/input-group/index.d.cts +13 -0
- package/dist/components/input-group/index.d.ts +13 -0
- package/dist/components/input-group/index.js +8 -0
- package/dist/components/link/index.cjs +71 -0
- package/dist/components/link/index.d.cts +13 -0
- package/dist/components/link/index.d.ts +13 -0
- package/dist/components/link/index.js +20 -0
- package/dist/components/loading-overlay/index.cjs +1921 -0
- package/dist/components/loading-overlay/index.d.cts +13 -0
- package/dist/components/loading-overlay/index.d.ts +13 -0
- package/dist/components/loading-overlay/index.js +1878 -0
- package/dist/components/navbar/index.cjs +65 -0
- package/dist/components/navbar/index.d.cts +18 -0
- package/dist/components/navbar/index.d.ts +18 -0
- package/dist/components/navbar/index.js +42 -0
- package/dist/components/number-input/index.cjs +82 -0
- package/dist/components/number-input/index.d.cts +13 -0
- package/dist/components/number-input/index.d.ts +13 -0
- package/dist/components/number-input/index.js +32 -0
- package/dist/components/password-input/index.cjs +284 -0
- package/dist/components/password-input/index.d.cts +18 -0
- package/dist/components/password-input/index.d.ts +18 -0
- package/dist/components/password-input/index.js +231 -0
- package/dist/components/persona/index.cjs +181 -0
- package/dist/components/persona/index.d.cts +93 -0
- package/dist/components/persona/index.d.ts +93 -0
- package/dist/components/persona/index.js +149 -0
- package/dist/components/pin-input/index.cjs +51 -0
- package/dist/components/pin-input/index.d.cts +12 -0
- package/dist/components/pin-input/index.d.ts +12 -0
- package/dist/components/pin-input/index.js +26 -0
- package/dist/components/radio/index.cjs +48 -0
- package/dist/components/radio/index.d.cts +12 -0
- package/dist/components/radio/index.d.ts +12 -0
- package/dist/components/radio/index.js +22 -0
- package/dist/components/search-input/index.cjs +244 -0
- package/dist/components/search-input/index.d.cts +15 -0
- package/dist/components/search-input/index.d.ts +15 -0
- package/dist/components/search-input/index.js +120 -0
- package/dist/components/select/index.cjs +233 -0
- package/dist/components/select/index.d.cts +32 -0
- package/dist/components/select/index.d.ts +32 -0
- package/dist/components/select/index.js +100 -0
- package/dist/components/sidebar/index.cjs +134 -0
- package/dist/components/sidebar/index.d.cts +85 -0
- package/dist/components/sidebar/index.d.ts +85 -0
- package/dist/components/sidebar/index.js +108 -0
- package/dist/components/spinner/index.cjs +44 -0
- package/dist/components/spinner/index.d.cts +10 -0
- package/dist/components/spinner/index.d.ts +10 -0
- package/dist/components/spinner/index.js +8 -0
- package/dist/components/steps/index.cjs +191 -0
- package/dist/components/steps/index.d.cts +31 -0
- package/dist/components/steps/index.d.ts +31 -0
- package/dist/components/steps/index.js +71 -0
- package/dist/components/switch/index.cjs +48 -0
- package/dist/components/switch/index.d.cts +18 -0
- package/dist/components/switch/index.d.ts +18 -0
- package/dist/components/switch/index.js +23 -0
- package/dist/index.cjs +8460 -0
- package/dist/index.d.cts +26 -0
- package/dist/index.d.ts +25 -7
- package/dist/index.js +8395 -36
- package/package.json +26 -22
- 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/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/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/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/dialog/dialog.tsx +67 -0
- package/src/components/dialog/index.ts +1 -0
- package/src/components/dialog/namespace.ts +18 -0
- package/src/components/drawer/drawer.tsx +57 -0
- package/src/components/drawer/index.ts +3 -0
- package/src/components/drawer/namespace.ts +19 -0
- package/src/components/grid-list/grid-list.recipe.ts +113 -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 +119 -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/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/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/password-input/index.ts +2 -0
- package/src/components/password-input/password-input.tsx +93 -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 +142 -0
- package/src/components/pin-input/index.ts +2 -0
- package/src/components/pin-input/pin-input.tsx +36 -0
- package/src/components/radio/index.ts +2 -0
- package/src/components/radio/radio.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/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 +208 -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/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/compositions/accordion.tsx +47 -0
- package/src/compositions/action-bar.tsx +40 -0
- package/src/compositions/alert.tsx +51 -0
- package/src/compositions/avatar.tsx +74 -0
- package/src/compositions/blockquote.tsx +31 -0
- package/src/compositions/checkbox-card.tsx +57 -0
- package/src/compositions/checkbox.tsx +25 -0
- package/src/compositions/clipboard.tsx +107 -0
- package/src/compositions/color-mode.tsx +65 -0
- package/src/compositions/data-list.tsx +37 -0
- package/src/compositions/empty-state.tsx +34 -0
- package/src/compositions/field.tsx +33 -0
- package/src/compositions/file-button.tsx +166 -0
- package/src/compositions/hover-card.tsx +35 -0
- package/src/compositions/link-button.tsx +12 -0
- package/src/compositions/menu.tsx +108 -0
- package/src/compositions/native-select.tsx +57 -0
- package/src/compositions/pagination.tsx +207 -0
- package/src/compositions/popover.tsx +58 -0
- package/src/compositions/progress-circle.tsx +37 -0
- package/src/compositions/progress.tsx +40 -0
- package/src/compositions/prose.tsx +264 -0
- package/src/compositions/provider.tsx +12 -0
- package/src/compositions/radio-card.tsx +57 -0
- package/src/compositions/radio.tsx +24 -0
- package/src/compositions/rating.tsx +27 -0
- package/src/compositions/segmented-control.tsx +47 -0
- package/src/compositions/skeleton.tsx +44 -0
- package/src/compositions/slider.tsx +53 -0
- package/src/compositions/stat.tsx +75 -0
- package/src/compositions/status.tsx +29 -0
- package/src/compositions/stepper-input.tsx +49 -0
- package/src/compositions/tag.tsx +39 -0
- package/src/compositions/timeline.tsx +17 -0
- package/src/compositions/toaster.tsx +43 -0
- package/src/compositions/toggle-tip.tsx +62 -0
- package/src/compositions/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/styled-system/create-recipe-context.tsx +91 -0
- package/src/styled-system/create-slot-recipe-context.tsx +188 -0
- package/src/styled-system/empty.ts +7 -0
- package/src/styled-system/factory.types.ts +11 -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.js.map +0 -1
- package/dist/index.mjs +0 -11
- package/dist/index.mjs.map +0 -1
@@ -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
|
+
})
|
@@ -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
|
+
})
|