@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,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
|
+
})
|
@@ -0,0 +1,220 @@
|
|
1
|
+
import { defineSlotRecipe } from '@chakra-ui/react'
|
2
|
+
import { radioCardAnatomy } from '@chakra-ui/react/anatomy'
|
3
|
+
|
4
|
+
import { radiomarkRecipe } from './radiomark'
|
5
|
+
|
6
|
+
export const radioCardSlotRecipe = defineSlotRecipe({
|
7
|
+
className: 'chakra-radio-card',
|
8
|
+
slots: radioCardAnatomy.keys(),
|
9
|
+
base: {
|
10
|
+
root: {
|
11
|
+
display: 'flex',
|
12
|
+
flexDirection: 'column',
|
13
|
+
gap: '1.5',
|
14
|
+
isolation: 'isolate',
|
15
|
+
},
|
16
|
+
item: {
|
17
|
+
flex: '1',
|
18
|
+
display: 'flex',
|
19
|
+
flexDirection: 'column',
|
20
|
+
userSelect: 'none',
|
21
|
+
position: 'relative',
|
22
|
+
borderRadius: 'l2',
|
23
|
+
_focus: {
|
24
|
+
bg: 'colorPalette.muted/20',
|
25
|
+
},
|
26
|
+
_disabled: {
|
27
|
+
opacity: '0.8',
|
28
|
+
borderColor: 'border.disabled',
|
29
|
+
},
|
30
|
+
_checked: {
|
31
|
+
zIndex: '1',
|
32
|
+
},
|
33
|
+
},
|
34
|
+
label: {
|
35
|
+
display: 'inline-flex',
|
36
|
+
fontWeight: 'medium',
|
37
|
+
textStyle: 'sm',
|
38
|
+
_disabled: {
|
39
|
+
opacity: '0.5',
|
40
|
+
},
|
41
|
+
},
|
42
|
+
itemText: {
|
43
|
+
fontWeight: 'medium',
|
44
|
+
},
|
45
|
+
itemDescription: {
|
46
|
+
opacity: '0.64',
|
47
|
+
textStyle: 'sm',
|
48
|
+
},
|
49
|
+
itemControl: {
|
50
|
+
display: 'inline-flex',
|
51
|
+
flex: '1',
|
52
|
+
pos: 'relative',
|
53
|
+
rounded: 'inherit',
|
54
|
+
justifyContent: 'var(--radio-card-justify)',
|
55
|
+
alignItems: 'var(--radio-card-align)',
|
56
|
+
_disabled: {
|
57
|
+
bg: 'bg.muted',
|
58
|
+
},
|
59
|
+
},
|
60
|
+
itemIndicator: radiomarkRecipe.base,
|
61
|
+
itemAddon: {
|
62
|
+
roundedBottom: 'inherit',
|
63
|
+
_disabled: {
|
64
|
+
color: 'fg.muted',
|
65
|
+
},
|
66
|
+
},
|
67
|
+
itemContent: {
|
68
|
+
display: 'flex',
|
69
|
+
flexDirection: 'column',
|
70
|
+
flex: '1',
|
71
|
+
gap: '1',
|
72
|
+
justifyContent: 'var(--radio-card-justify)',
|
73
|
+
alignItems: 'var(--radio-card-align)',
|
74
|
+
},
|
75
|
+
},
|
76
|
+
|
77
|
+
variants: {
|
78
|
+
size: {
|
79
|
+
sm: {
|
80
|
+
item: {
|
81
|
+
textStyle: 'sm',
|
82
|
+
},
|
83
|
+
itemControl: {
|
84
|
+
padding: '3',
|
85
|
+
gap: '1.5',
|
86
|
+
},
|
87
|
+
itemAddon: {
|
88
|
+
px: '3',
|
89
|
+
py: '1.5',
|
90
|
+
borderTopWidth: '1px',
|
91
|
+
},
|
92
|
+
itemIndicator: radiomarkRecipe.variants?.size.sm,
|
93
|
+
},
|
94
|
+
md: {
|
95
|
+
item: {
|
96
|
+
textStyle: 'sm',
|
97
|
+
},
|
98
|
+
itemControl: {
|
99
|
+
padding: '4',
|
100
|
+
gap: '2.5',
|
101
|
+
},
|
102
|
+
itemAddon: {
|
103
|
+
px: '4',
|
104
|
+
py: '2',
|
105
|
+
borderTopWidth: '1px',
|
106
|
+
},
|
107
|
+
itemIndicator: radiomarkRecipe.variants?.size.md,
|
108
|
+
},
|
109
|
+
lg: {
|
110
|
+
item: {
|
111
|
+
textStyle: 'md',
|
112
|
+
},
|
113
|
+
itemControl: {
|
114
|
+
padding: '4',
|
115
|
+
gap: '3.5',
|
116
|
+
},
|
117
|
+
itemAddon: {
|
118
|
+
px: '4',
|
119
|
+
py: '2',
|
120
|
+
borderTopWidth: '1px',
|
121
|
+
},
|
122
|
+
itemIndicator: radiomarkRecipe.variants?.size.lg,
|
123
|
+
},
|
124
|
+
},
|
125
|
+
|
126
|
+
variant: {
|
127
|
+
surface: {
|
128
|
+
item: {
|
129
|
+
borderWidth: '1px',
|
130
|
+
_checked: {
|
131
|
+
bg: 'colorPalette.subtle',
|
132
|
+
color: 'colorPalette.fg',
|
133
|
+
borderColor: 'colorPalette.muted',
|
134
|
+
},
|
135
|
+
},
|
136
|
+
itemIndicator: radiomarkRecipe.variants?.variant.solid,
|
137
|
+
},
|
138
|
+
|
139
|
+
subtle: {
|
140
|
+
item: {
|
141
|
+
bg: 'bg.muted',
|
142
|
+
},
|
143
|
+
itemControl: {
|
144
|
+
_checked: {
|
145
|
+
bg: 'colorPalette.muted',
|
146
|
+
color: 'colorPalette.fg',
|
147
|
+
},
|
148
|
+
},
|
149
|
+
itemIndicator: radiomarkRecipe.variants?.variant.outline,
|
150
|
+
},
|
151
|
+
|
152
|
+
outline: {
|
153
|
+
item: {
|
154
|
+
borderWidth: '1px',
|
155
|
+
_checked: {
|
156
|
+
boxShadow: '0 0 0 1px var(--shadow-color)',
|
157
|
+
boxShadowColor: 'colorPalette.solid',
|
158
|
+
borderColor: 'colorPalette.solid',
|
159
|
+
},
|
160
|
+
},
|
161
|
+
itemIndicator: radiomarkRecipe.variants?.variant.solid,
|
162
|
+
},
|
163
|
+
|
164
|
+
solid: {
|
165
|
+
item: {
|
166
|
+
borderWidth: '1px',
|
167
|
+
_checked: {
|
168
|
+
bg: 'colorPalette.solid',
|
169
|
+
color: 'colorPalette.contrast',
|
170
|
+
borderColor: 'colorPalette.solid',
|
171
|
+
},
|
172
|
+
},
|
173
|
+
itemIndicator: radiomarkRecipe.variants?.variant.inverted,
|
174
|
+
},
|
175
|
+
},
|
176
|
+
|
177
|
+
justify: {
|
178
|
+
start: {
|
179
|
+
item: { '--radio-card-justify': 'flex-start' },
|
180
|
+
},
|
181
|
+
end: {
|
182
|
+
item: { '--radio-card-justify': 'flex-end' },
|
183
|
+
},
|
184
|
+
center: {
|
185
|
+
item: { '--radio-card-justify': 'center' },
|
186
|
+
},
|
187
|
+
},
|
188
|
+
|
189
|
+
align: {
|
190
|
+
start: {
|
191
|
+
item: { '--radio-card-align': 'flex-start' },
|
192
|
+
itemControl: { textAlign: 'start' },
|
193
|
+
},
|
194
|
+
end: {
|
195
|
+
item: { '--radio-card-align': 'flex-end' },
|
196
|
+
itemControl: { textAlign: 'end' },
|
197
|
+
},
|
198
|
+
center: {
|
199
|
+
item: { '--radio-card-align': 'center' },
|
200
|
+
itemControl: { textAlign: 'center' },
|
201
|
+
},
|
202
|
+
},
|
203
|
+
|
204
|
+
orientation: {
|
205
|
+
vertical: {
|
206
|
+
itemControl: { flexDirection: 'column' },
|
207
|
+
},
|
208
|
+
horizontal: {
|
209
|
+
itemControl: { flexDirection: 'row' },
|
210
|
+
},
|
211
|
+
},
|
212
|
+
},
|
213
|
+
|
214
|
+
defaultVariants: {
|
215
|
+
size: 'md',
|
216
|
+
variant: 'outline',
|
217
|
+
align: 'start',
|
218
|
+
orientation: 'horizontal',
|
219
|
+
},
|
220
|
+
})
|
@@ -0,0 +1,72 @@
|
|
1
|
+
import { defineSlotRecipe } from '@chakra-ui/react'
|
2
|
+
import { radioGroupAnatomy } from '@chakra-ui/react/anatomy'
|
3
|
+
|
4
|
+
import { radiomarkRecipe } from './radiomark'
|
5
|
+
|
6
|
+
export const radioGroupSlotRecipe = defineSlotRecipe({
|
7
|
+
className: 'chakra-radio-group',
|
8
|
+
slots: radioGroupAnatomy.keys(),
|
9
|
+
base: {
|
10
|
+
item: {
|
11
|
+
display: 'inline-flex',
|
12
|
+
alignItems: 'center',
|
13
|
+
position: 'relative',
|
14
|
+
fontWeight: 'medium',
|
15
|
+
_disabled: {
|
16
|
+
cursor: 'disabled',
|
17
|
+
},
|
18
|
+
},
|
19
|
+
|
20
|
+
itemControl: radiomarkRecipe.base,
|
21
|
+
|
22
|
+
label: {
|
23
|
+
userSelect: 'none',
|
24
|
+
textStyle: 'sm',
|
25
|
+
_disabled: {
|
26
|
+
opacity: '0.5',
|
27
|
+
},
|
28
|
+
},
|
29
|
+
},
|
30
|
+
variants: {
|
31
|
+
variant: {
|
32
|
+
outline: {
|
33
|
+
itemControl: radiomarkRecipe.variants?.variant?.outline,
|
34
|
+
},
|
35
|
+
|
36
|
+
subtle: {
|
37
|
+
itemControl: radiomarkRecipe.variants?.variant?.subtle,
|
38
|
+
},
|
39
|
+
|
40
|
+
solid: {
|
41
|
+
itemControl: radiomarkRecipe.variants?.variant?.solid,
|
42
|
+
},
|
43
|
+
},
|
44
|
+
|
45
|
+
size: {
|
46
|
+
xs: {
|
47
|
+
item: { textStyle: 'xs', gap: '1.5' },
|
48
|
+
itemControl: radiomarkRecipe.variants?.size?.xs,
|
49
|
+
},
|
50
|
+
|
51
|
+
sm: {
|
52
|
+
item: { textStyle: 'sm', gap: '2' },
|
53
|
+
itemControl: radiomarkRecipe.variants?.size?.sm,
|
54
|
+
},
|
55
|
+
|
56
|
+
md: {
|
57
|
+
item: { textStyle: 'sm', gap: '2.5' },
|
58
|
+
itemControl: radiomarkRecipe.variants?.size?.md,
|
59
|
+
},
|
60
|
+
|
61
|
+
lg: {
|
62
|
+
item: { textStyle: 'md', gap: '3' },
|
63
|
+
itemControl: radiomarkRecipe.variants?.size?.lg,
|
64
|
+
},
|
65
|
+
},
|
66
|
+
},
|
67
|
+
|
68
|
+
defaultVariants: {
|
69
|
+
size: 'md',
|
70
|
+
variant: 'solid',
|
71
|
+
},
|
72
|
+
})
|
@@ -0,0 +1,107 @@
|
|
1
|
+
import { defineRecipe } from '@chakra-ui/react'
|
2
|
+
|
3
|
+
export const radiomarkRecipe = defineRecipe({
|
4
|
+
className: 'chakra-radiomark',
|
5
|
+
base: {
|
6
|
+
display: 'inline-flex',
|
7
|
+
alignItems: 'center',
|
8
|
+
justifyContent: 'center',
|
9
|
+
flexShrink: 0,
|
10
|
+
verticalAlign: 'top',
|
11
|
+
color: 'white',
|
12
|
+
borderWidth: '1px',
|
13
|
+
borderColor: 'transparent',
|
14
|
+
borderRadius: 'full',
|
15
|
+
cursor: 'radio',
|
16
|
+
_focusVisible: {
|
17
|
+
outline: '2px solid',
|
18
|
+
outlineColor: 'colorPalette.focusRing',
|
19
|
+
outlineOffset: '2px',
|
20
|
+
},
|
21
|
+
_invalid: {
|
22
|
+
colorPalette: 'red',
|
23
|
+
borderColor: 'red.500',
|
24
|
+
},
|
25
|
+
_disabled: {
|
26
|
+
opacity: '0.5',
|
27
|
+
cursor: 'disabled',
|
28
|
+
},
|
29
|
+
|
30
|
+
'& .dot': {
|
31
|
+
height: '100%',
|
32
|
+
width: '100%',
|
33
|
+
borderRadius: 'full',
|
34
|
+
bg: 'currentColor',
|
35
|
+
scale: '0.4',
|
36
|
+
},
|
37
|
+
},
|
38
|
+
|
39
|
+
variants: {
|
40
|
+
variant: {
|
41
|
+
solid: {
|
42
|
+
borderWidth: '1px',
|
43
|
+
borderColor: 'border',
|
44
|
+
_checked: {
|
45
|
+
bg: 'colorPalette.solid',
|
46
|
+
color: 'colorPalette.contrast',
|
47
|
+
borderColor: 'colorPalette.solid',
|
48
|
+
},
|
49
|
+
},
|
50
|
+
|
51
|
+
subtle: {
|
52
|
+
borderWidth: '1px',
|
53
|
+
bg: 'colorPalette.muted',
|
54
|
+
borderColor: 'colorPalette.muted',
|
55
|
+
color: 'transparent',
|
56
|
+
_checked: {
|
57
|
+
color: 'colorPalette.fg',
|
58
|
+
},
|
59
|
+
},
|
60
|
+
|
61
|
+
outline: {
|
62
|
+
borderWidth: '1px',
|
63
|
+
borderColor: 'inherit',
|
64
|
+
_checked: {
|
65
|
+
color: 'colorPalette.fg',
|
66
|
+
borderColor: 'colorPalette.solid',
|
67
|
+
},
|
68
|
+
'& .dot': {
|
69
|
+
scale: '0.6',
|
70
|
+
},
|
71
|
+
},
|
72
|
+
|
73
|
+
inverted: {
|
74
|
+
bg: 'bg',
|
75
|
+
borderWidth: '1px',
|
76
|
+
borderColor: 'inherit',
|
77
|
+
_checked: {
|
78
|
+
color: 'colorPalette.solid',
|
79
|
+
borderColor: 'currentcolor',
|
80
|
+
},
|
81
|
+
},
|
82
|
+
},
|
83
|
+
|
84
|
+
size: {
|
85
|
+
xs: {
|
86
|
+
boxSize: '3',
|
87
|
+
},
|
88
|
+
|
89
|
+
sm: {
|
90
|
+
boxSize: '4',
|
91
|
+
},
|
92
|
+
|
93
|
+
md: {
|
94
|
+
boxSize: '5',
|
95
|
+
},
|
96
|
+
|
97
|
+
lg: {
|
98
|
+
boxSize: '6',
|
99
|
+
},
|
100
|
+
},
|
101
|
+
},
|
102
|
+
|
103
|
+
defaultVariants: {
|
104
|
+
variant: 'solid',
|
105
|
+
size: 'md',
|
106
|
+
},
|
107
|
+
})
|
@@ -0,0 +1,94 @@
|
|
1
|
+
import { defineSlotRecipe } from '@chakra-ui/react'
|
2
|
+
import { ratingGroupAnatomy } from '@chakra-ui/react/anatomy'
|
3
|
+
|
4
|
+
export const ratingGroupSlotRecipe = defineSlotRecipe({
|
5
|
+
className: 'chakra-rating-group',
|
6
|
+
slots: ratingGroupAnatomy.keys(),
|
7
|
+
base: {
|
8
|
+
root: {
|
9
|
+
display: 'inline-flex',
|
10
|
+
},
|
11
|
+
|
12
|
+
control: {
|
13
|
+
display: 'inline-flex',
|
14
|
+
alignItems: 'center',
|
15
|
+
},
|
16
|
+
|
17
|
+
item: {
|
18
|
+
display: 'inline-flex',
|
19
|
+
alignItems: 'center',
|
20
|
+
justifyContent: 'center',
|
21
|
+
userSelect: 'none',
|
22
|
+
},
|
23
|
+
|
24
|
+
itemIndicator: {
|
25
|
+
display: 'inline-flex',
|
26
|
+
alignItems: 'center',
|
27
|
+
justifyContent: 'center',
|
28
|
+
width: '1em',
|
29
|
+
height: '1em',
|
30
|
+
position: 'relative',
|
31
|
+
|
32
|
+
_icon: {
|
33
|
+
stroke: 'currentColor',
|
34
|
+
width: '100%',
|
35
|
+
height: '100%',
|
36
|
+
display: 'inline-block',
|
37
|
+
flexShrink: 0,
|
38
|
+
position: 'absolute',
|
39
|
+
left: 0,
|
40
|
+
top: 0,
|
41
|
+
},
|
42
|
+
|
43
|
+
'& [data-bg]': {
|
44
|
+
color: 'bg.emphasized',
|
45
|
+
},
|
46
|
+
|
47
|
+
'& [data-fg]': {
|
48
|
+
color: 'transparent',
|
49
|
+
},
|
50
|
+
|
51
|
+
'&[data-highlighted]:not([data-half])': {
|
52
|
+
'& [data-fg]': {
|
53
|
+
color: 'colorPalette.solid',
|
54
|
+
},
|
55
|
+
},
|
56
|
+
|
57
|
+
'&[data-half]': {
|
58
|
+
'& [data-fg]': {
|
59
|
+
color: 'colorPalette.solid',
|
60
|
+
clipPath: 'inset(0 50% 0 0)',
|
61
|
+
},
|
62
|
+
},
|
63
|
+
},
|
64
|
+
},
|
65
|
+
|
66
|
+
variants: {
|
67
|
+
size: {
|
68
|
+
xs: {
|
69
|
+
item: {
|
70
|
+
textStyle: 'sm',
|
71
|
+
},
|
72
|
+
},
|
73
|
+
sm: {
|
74
|
+
item: {
|
75
|
+
textStyle: 'md',
|
76
|
+
},
|
77
|
+
},
|
78
|
+
md: {
|
79
|
+
item: {
|
80
|
+
textStyle: 'xl',
|
81
|
+
},
|
82
|
+
},
|
83
|
+
lg: {
|
84
|
+
item: {
|
85
|
+
textStyle: '2xl',
|
86
|
+
},
|
87
|
+
},
|
88
|
+
},
|
89
|
+
},
|
90
|
+
|
91
|
+
defaultVariants: {
|
92
|
+
size: 'md',
|
93
|
+
},
|
94
|
+
})
|