@vygruppen/spor-react 11.3.10 → 12.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build.log +33 -11
- package/.turbo/turbo-typegen.log +22 -0
- package/CHANGELOG.md +247 -0
- package/dist/index.d.mts +2589 -8303
- package/dist/index.d.ts +2589 -8303
- package/dist/index.js +9609 -8608
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +9487 -8455
- package/dist/index.mjs.map +1 -1
- package/package.json +23 -15
- package/src/accordion/Accordion.tsx +96 -45
- package/src/accordion/Expandable.tsx +54 -127
- package/src/accordion/helpers.ts +31 -0
- package/src/accordion/types.ts +60 -0
- package/src/alert/Alert.tsx +101 -0
- package/src/alert/AlertIcon.tsx +63 -45
- package/src/alert/ExpandableAlert.tsx +96 -64
- package/src/alert/ServiceAlert.tsx +127 -125
- package/src/alert/{index.tsx → index.ts} +1 -2
- package/src/breadcrumb/Breadcrumb.tsx +39 -24
- package/src/button/Button.tsx +86 -105
- package/src/button/ButtonGroup.tsx +45 -20
- package/src/button/Clipboard.tsx +82 -0
- package/src/button/CloseButton.tsx +4 -3
- package/src/button/FloatingActionButton.tsx +35 -41
- package/src/button/IconButton.tsx +34 -30
- package/src/button/index.tsx +1 -0
- package/src/color-mode/color-mode.tsx +75 -0
- package/src/color-mode/index.ts +1 -0
- package/src/datepicker/Calendar.tsx +17 -8
- package/src/datepicker/CalendarCell.tsx +20 -13
- package/src/datepicker/CalendarGrid.tsx +18 -10
- package/src/datepicker/CalendarHeader.tsx +2 -0
- package/src/datepicker/CalendarNavigationButton.tsx +1 -0
- package/src/datepicker/CalendarTriggerButton.tsx +43 -45
- package/src/datepicker/DateField.tsx +21 -12
- package/src/datepicker/DatePicker.tsx +61 -58
- package/src/datepicker/DateRangePicker.tsx +52 -58
- package/src/datepicker/DateTimeSegment.tsx +13 -5
- package/src/datepicker/RangeCalendar.tsx +13 -7
- package/src/datepicker/StyledField.tsx +25 -17
- package/src/datepicker/TimeField.tsx +10 -8
- package/src/datepicker/TimePicker.tsx +48 -45
- package/src/datepicker/types.ts +5 -0
- package/src/dialog/Dialog.tsx +56 -0
- package/src/dialog/Drawer.tsx +187 -0
- package/src/dialog/index.ts +2 -0
- package/src/dialog/types.ts +26 -0
- package/src/image/index.tsx +2 -2
- package/src/index.tsx +5 -3
- package/src/input/AttachedInputs.tsx +17 -42
- package/src/input/CardSelect.tsx +75 -162
- package/src/input/Checkbox.tsx +30 -6
- package/src/input/CheckboxGroup.tsx +25 -16
- package/src/input/ChoiceChip.tsx +58 -77
- package/src/input/Combobox.tsx +172 -172
- package/src/input/CountryCodeSelect.tsx +42 -28
- package/src/input/Dialog.tsx +1 -0
- package/src/input/Field.tsx +71 -0
- package/src/input/Fieldset.tsx +7 -0
- package/src/input/Input.tsx +68 -73
- package/src/input/InputGroup.tsx +66 -0
- package/src/input/ListBox.tsx +83 -70
- package/src/input/NativeSelect.tsx +70 -33
- package/src/input/NumericStepper.tsx +173 -171
- package/src/input/PasswordInput.tsx +99 -52
- package/src/input/PhoneNumberInput.tsx +69 -72
- package/src/input/Popover.tsx +1 -0
- package/src/input/Radio.tsx +37 -17
- package/src/input/SearchInput.tsx +24 -86
- package/src/input/Select.tsx +237 -0
- package/src/input/Switch.tsx +60 -18
- package/src/input/Textarea.tsx +53 -101
- package/src/input/{index.tsx → index.ts} +2 -8
- package/src/layout/PressableCard.tsx +12 -21
- package/src/layout/RadioCard.tsx +68 -101
- package/src/layout/Separator.tsx +32 -0
- package/src/layout/StaticCard.tsx +13 -33
- package/src/layout/index.tsx +3 -7
- package/src/linjetag/InfoTag.tsx +16 -9
- package/src/linjetag/LineIcon.tsx +74 -28
- package/src/linjetag/TravelTag.tsx +38 -27
- package/src/link/TextLink.tsx +25 -16
- package/src/list/index.tsx +24 -2
- package/src/loader/ClientOnly.tsx +8 -7
- package/src/loader/ColorInlineLoader.tsx +4 -3
- package/src/loader/ColorSpinner.tsx +5 -4
- package/src/loader/ContentLoader.tsx +6 -4
- package/src/loader/DarkFullScreenLoader.tsx +11 -3
- package/src/loader/DarkInlineLoader.tsx +5 -3
- package/src/loader/DarkSpinner.tsx +7 -3
- package/src/loader/LightFullScreenLoader.tsx +11 -3
- package/src/loader/LightInlineLoader.tsx +11 -3
- package/src/loader/LightSpinner.tsx +5 -3
- package/src/loader/Lottie.tsx +3 -3
- package/src/loader/ProgressBar.tsx +83 -84
- package/src/loader/ProgressLoader.tsx +120 -75
- package/src/loader/Skeleton.tsx +94 -19
- package/src/loader/index.tsx +0 -2
- package/src/loader/useHydrated.tsx +1 -0
- package/src/loader/useRotatingLabel.tsx +2 -1
- package/src/logo/CargonetLogo.tsx +89 -89
- package/src/logo/VyLogo.tsx +61 -42
- package/src/logo/VyLogoPride.tsx +137 -139
- package/src/media-controller/JumpButton.tsx +48 -38
- package/src/media-controller/PlayPauseButton.tsx +31 -29
- package/src/media-controller/SkipButton.tsx +38 -37
- package/src/nudge/Nudge.tsx +195 -123
- package/src/nudge/index.tsx +0 -1
- package/src/pagination/Pagination.tsx +221 -118
- package/src/pagination/types.ts +23 -0
- package/src/popover/index.tsx +67 -0
- package/src/progress-indicator/ProgressDot.tsx +11 -10
- package/src/progress-indicator/ProgressIndicator.tsx +28 -15
- package/src/provider/SporProvider.tsx +17 -14
- package/src/stepper/Stepper.tsx +88 -85
- package/src/stepper/StepperContext.tsx +2 -1
- package/src/stepper/StepperStep.tsx +28 -21
- package/src/tab/Tabs.tsx +62 -12
- package/src/tab/index.tsx +1 -9
- package/src/table/Table.tsx +35 -30
- package/src/table/index.tsx +11 -7
- package/src/theme/brand.ts +7 -0
- package/src/theme/index.ts +45 -37
- package/src/theme/recipes/attached-inputs.ts +43 -0
- package/src/theme/recipes/badge.ts +104 -0
- package/src/theme/recipes/button.ts +124 -0
- package/src/theme/recipes/choice-chip.ts +144 -0
- package/src/theme/recipes/close-button.ts +41 -0
- package/src/theme/recipes/code.ts +14 -0
- package/src/theme/recipes/group.ts +19 -0
- package/src/theme/recipes/index.ts +29 -0
- package/src/theme/recipes/input.ts +89 -0
- package/src/theme/recipes/link.ts +64 -0
- package/src/theme/recipes/nudge.ts +12 -0
- package/src/theme/recipes/pressable-card.ts +83 -0
- package/src/theme/recipes/progress-loader.ts +14 -0
- package/src/theme/recipes/separator.ts +85 -0
- package/src/theme/recipes/skeleton.ts +57 -0
- package/src/theme/recipes/static-card.ts +39 -0
- package/src/theme/recipes/textarea.ts +27 -0
- package/src/theme/semantic-tokens/colors.ts +22 -0
- package/src/theme/semantic-tokens/index.ts +24 -0
- package/src/theme/semantic-tokens/radii.ts +14 -0
- package/src/theme/semantic-tokens/shadows.ts +17 -0
- package/src/theme/slot-recipes/accordion.ts +131 -0
- package/src/theme/slot-recipes/alert-expandable.ts +133 -0
- package/src/theme/slot-recipes/alert-service.ts +66 -0
- package/src/theme/slot-recipes/alert.ts +72 -0
- package/src/theme/slot-recipes/anatomy.ts +269 -0
- package/src/theme/slot-recipes/breadcrumb.ts +61 -0
- package/src/theme/slot-recipes/checkbox.ts +89 -0
- package/src/theme/slot-recipes/datepicker.ts +214 -0
- package/src/theme/slot-recipes/dialog.ts +221 -0
- package/src/theme/slot-recipes/drawer.ts +205 -0
- package/src/theme/slot-recipes/field.ts +79 -0
- package/src/theme/slot-recipes/floating-action-button.ts +131 -0
- package/src/theme/slot-recipes/index.ts +65 -0
- package/src/theme/slot-recipes/info-tag.ts +62 -0
- package/src/theme/slot-recipes/line-icon.ts +140 -0
- package/src/theme/slot-recipes/list.ts +45 -0
- package/src/theme/slot-recipes/listbox.ts +72 -0
- package/src/theme/slot-recipes/media-controller-button.ts +131 -0
- package/src/theme/slot-recipes/native-select.ts +54 -0
- package/src/theme/slot-recipes/numeric-stepper.ts +65 -0
- package/src/theme/slot-recipes/pagination.ts +41 -0
- package/src/theme/slot-recipes/popover.ts +78 -0
- package/src/theme/slot-recipes/progress-bar.ts +39 -0
- package/src/theme/slot-recipes/progress-indicator.ts +22 -0
- package/src/theme/slot-recipes/radio-card.ts +112 -0
- package/src/theme/slot-recipes/radio.ts +80 -0
- package/src/theme/slot-recipes/select.ts +243 -0
- package/src/theme/slot-recipes/stepper.ts +92 -0
- package/src/theme/slot-recipes/switch.ts +147 -0
- package/src/theme/slot-recipes/table.ts +200 -0
- package/src/theme/slot-recipes/tabs.ts +169 -0
- package/src/theme/slot-recipes/toast.ts +56 -0
- package/src/theme/slot-recipes/travel-tag.ts +192 -0
- package/src/theme/tokens/animation-styles.ts +50 -0
- package/src/theme/tokens/animations.ts +22 -0
- package/src/theme/tokens/aspect-ratios.ts +22 -0
- package/src/theme/tokens/blurs.ts +28 -0
- package/src/theme/tokens/borders.ts +26 -0
- package/src/theme/{foundations → tokens}/breakpoints.ts +0 -1
- package/src/theme/tokens/colors.ts +10 -0
- package/src/theme/tokens/config.ts +10 -0
- package/src/theme/tokens/cursor.ts +28 -0
- package/src/theme/tokens/durations.ts +25 -0
- package/src/theme/tokens/easings.ts +16 -0
- package/src/theme/tokens/font-sizes.ts +30 -0
- package/src/theme/tokens/font-weights.ts +31 -0
- package/src/theme/tokens/fonts.ts +8 -0
- package/src/theme/tokens/global-css.ts +18 -0
- package/src/theme/tokens/index.ts +37 -0
- package/src/theme/tokens/keyframes.ts +255 -0
- package/src/theme/tokens/letter-spacings.ts +19 -0
- package/src/theme/tokens/line-heights.ts +19 -0
- package/src/theme/tokens/radii.ts +13 -0
- package/src/theme/tokens/sizes.ts +51 -0
- package/src/theme/tokens/spacing.ts +20 -0
- package/src/theme/tokens/text-styles.ts +89 -0
- package/src/theme/tokens/z-index.ts +17 -0
- package/src/theme/utils/accent-utils.ts +8 -21
- package/src/theme/utils/bg-utils.ts +4 -6
- package/src/theme/utils/brand-utils.ts +6 -19
- package/src/theme/utils/core-utils.ts +91 -0
- package/src/theme/utils/floating-utils.ts +20 -39
- package/src/theme/utils/ghost-utils.ts +7 -21
- package/src/theme/utils/input-utils.ts +32 -37
- package/src/theme/utils/outline-utils.ts +4 -11
- package/src/theme/utils/surface-utils.ts +5 -19
- package/src/theme/utils/types.ts +1 -0
- package/src/toast/index.tsx +1 -1
- package/src/toast/toast.tsx +105 -0
- package/src/transition/index.ts +2 -8
- package/src/typography/Badge.tsx +15 -61
- package/src/typography/Code.tsx +16 -28
- package/src/typography/Heading.tsx +36 -21
- package/src/typography/Text.tsx +9 -6
- package/src/typography/{index.tsx → index.ts} +1 -0
- package/src/util/externals.tsx +13 -27
- package/tsconfig.json +5 -1
- package/src/accordion/Accordion.test.tsx +0 -20
- package/src/alert/BaseAlert.test.tsx +0 -37
- package/src/alert/BaseAlert.tsx +0 -34
- package/src/alert/ClosableAlert.test.tsx +0 -37
- package/src/alert/ClosableAlert.tsx +0 -85
- package/src/alert/ExpandableAlert.test.tsx +0 -84
- package/src/alert/StaticAlert.tsx +0 -33
- package/src/button/Button.test.tsx +0 -23
- package/src/datepicker/TimePicker.test.tsx +0 -74
- package/src/input/FormControl.tsx +0 -2
- package/src/input/FormErrorMessage.tsx +0 -95
- package/src/input/FormLabel.tsx +0 -11
- package/src/input/InfoSelect.tsx +0 -274
- package/src/input/InputElement.tsx +0 -44
- package/src/input/RadioGroup.tsx +0 -47
- package/src/layout/Divider.tsx +0 -27
- package/src/layout/RadioCardGroup.tsx +0 -79
- package/src/layout/Stack.tsx +0 -42
- package/src/loader/SkeletonCircle.tsx +0 -13
- package/src/loader/SkeletonText.tsx +0 -14
- package/src/media-controller/index.test.tsx +0 -59
- package/src/modal/Drawer.tsx +0 -120
- package/src/modal/FullScreenDrawer.tsx +0 -239
- package/src/modal/Modal.tsx +0 -15
- package/src/modal/ModalHeader.tsx +0 -31
- package/src/modal/SimpleDrawer.tsx +0 -51
- package/src/modal/index.tsx +0 -5
- package/src/nudge/WizardNudge.tsx +0 -107
- package/src/theme/components/accordion.ts +0 -102
- package/src/theme/components/alert-expandable.ts +0 -125
- package/src/theme/components/alert-service.ts +0 -98
- package/src/theme/components/alert.ts +0 -71
- package/src/theme/components/badge.ts +0 -109
- package/src/theme/components/breadcrumb.ts +0 -60
- package/src/theme/components/button.ts +0 -125
- package/src/theme/components/card-select.ts +0 -117
- package/src/theme/components/checkbox.ts +0 -88
- package/src/theme/components/choice-chip.ts +0 -161
- package/src/theme/components/close-button.ts +0 -48
- package/src/theme/components/code.ts +0 -17
- package/src/theme/components/datepicker.ts +0 -198
- package/src/theme/components/divider.ts +0 -50
- package/src/theme/components/drawer.ts +0 -95
- package/src/theme/components/fab.ts +0 -109
- package/src/theme/components/form-label.ts +0 -17
- package/src/theme/components/form.ts +0 -27
- package/src/theme/components/index.ts +0 -45
- package/src/theme/components/info-select.ts +0 -85
- package/src/theme/components/info-tag.ts +0 -63
- package/src/theme/components/input.ts +0 -28
- package/src/theme/components/line-icon.ts +0 -129
- package/src/theme/components/link.ts +0 -78
- package/src/theme/components/list.ts +0 -23
- package/src/theme/components/listbox.ts +0 -77
- package/src/theme/components/media-controller-button.ts +0 -97
- package/src/theme/components/modal.ts +0 -96
- package/src/theme/components/numeric-stepper.ts +0 -65
- package/src/theme/components/pagination.ts +0 -74
- package/src/theme/components/popover.ts +0 -68
- package/src/theme/components/pressable-card.ts +0 -72
- package/src/theme/components/progress-bar.ts +0 -47
- package/src/theme/components/progress-indicator.ts +0 -44
- package/src/theme/components/radio-card.ts +0 -134
- package/src/theme/components/radio.ts +0 -68
- package/src/theme/components/select.ts +0 -74
- package/src/theme/components/skeleton.ts +0 -40
- package/src/theme/components/static-card.ts +0 -82
- package/src/theme/components/stepper.ts +0 -100
- package/src/theme/components/switch.ts +0 -112
- package/src/theme/components/table.ts +0 -161
- package/src/theme/components/tabs.ts +0 -135
- package/src/theme/components/textarea.ts +0 -33
- package/src/theme/components/toast.ts +0 -28
- package/src/theme/components/travel-tag.ts +0 -256
- package/src/theme/foundations/borders.ts +0 -11
- package/src/theme/foundations/colors.ts +0 -12
- package/src/theme/foundations/config.ts +0 -5
- package/src/theme/foundations/fontSizes.ts +0 -29
- package/src/theme/foundations/fontWeights.ts +0 -5
- package/src/theme/foundations/fonts.ts +0 -7
- package/src/theme/foundations/index.ts +0 -15
- package/src/theme/foundations/lineHeights.ts +0 -6
- package/src/theme/foundations/radii.ts +0 -12
- package/src/theme/foundations/shadows.ts +0 -8
- package/src/theme/foundations/sizes.ts +0 -36
- package/src/theme/foundations/spacing.ts +0 -31
- package/src/theme/foundations/styles.ts +0 -12
- package/src/theme/foundations/textStyles.ts +0 -74
- package/src/theme/foundations/zIndices.ts +0 -17
- package/src/theme/utils/base-utils.ts +0 -104
- package/src/theme/utils/focus-utils.ts +0 -10
- package/src/toast/ActionToast.test.tsx +0 -22
- package/src/toast/ActionToast.tsx +0 -28
- package/src/toast/BaseToast.test.tsx +0 -27
- package/src/toast/BaseToast.tsx +0 -75
- package/src/toast/ClosableToast.test.tsx +0 -17
- package/src/toast/ClosableToast.tsx +0 -40
- package/src/toast/useToast.tsx +0 -121
- package/src/tooltip/Tooltip.tsx +0 -70
- package/src/tooltip/index.tsx +0 -1
@@ -0,0 +1,104 @@
|
|
1
|
+
import { defineRecipe } from "@chakra-ui/react";
|
2
|
+
|
3
|
+
export const badgeRecipie = defineRecipe({
|
4
|
+
base: {
|
5
|
+
display: "inline-flex",
|
6
|
+
alignItems: "center",
|
7
|
+
justifyContent: "center",
|
8
|
+
height: "fit-content",
|
9
|
+
gap: "0.5",
|
10
|
+
},
|
11
|
+
variants: {
|
12
|
+
colorPalette: {
|
13
|
+
neutral: {
|
14
|
+
backgroundColor: "surface.color.neutral",
|
15
|
+
color: "alert.neutral.text",
|
16
|
+
"& svg": {
|
17
|
+
color: "alert.neutral.icon",
|
18
|
+
},
|
19
|
+
},
|
20
|
+
grey: {
|
21
|
+
backgroundColor: "surface.color.grey",
|
22
|
+
color: "alert.neutral.text",
|
23
|
+
"& svg": {
|
24
|
+
color: "alert.neutral.icon",
|
25
|
+
},
|
26
|
+
},
|
27
|
+
green: {
|
28
|
+
backgroundColor: "surface.color.green",
|
29
|
+
color: "alert.success.text",
|
30
|
+
"& svg": {
|
31
|
+
color: "alert.success.icon",
|
32
|
+
},
|
33
|
+
},
|
34
|
+
blue: {
|
35
|
+
backgroundColor: "surface.color.blue",
|
36
|
+
color: "alert.info.text",
|
37
|
+
"& svg": {
|
38
|
+
color: "alert.info.icon",
|
39
|
+
},
|
40
|
+
},
|
41
|
+
cream: {
|
42
|
+
backgroundColor: "surface.color.cream",
|
43
|
+
color: "alert.important.text",
|
44
|
+
"& svg": {
|
45
|
+
color: "alert.important.icon",
|
46
|
+
},
|
47
|
+
},
|
48
|
+
yellow: {
|
49
|
+
backgroundColor: "surface.color.yellow",
|
50
|
+
color: "alert.alt.text",
|
51
|
+
"& svg": {
|
52
|
+
color: "alert.alt.icon",
|
53
|
+
},
|
54
|
+
},
|
55
|
+
orange: {
|
56
|
+
backgroundColor: "surface.color.orange",
|
57
|
+
color: "alert.error.text.secondary",
|
58
|
+
"& svg": {
|
59
|
+
color: "alert.error.icon.secondary",
|
60
|
+
},
|
61
|
+
},
|
62
|
+
red: {
|
63
|
+
backgroundColor: "surface.color.red",
|
64
|
+
color: "alert.error.text",
|
65
|
+
"& svg": {
|
66
|
+
color: "alert.error.icon",
|
67
|
+
},
|
68
|
+
},
|
69
|
+
},
|
70
|
+
size: {
|
71
|
+
sm: {
|
72
|
+
fontSize: "desktop.xs",
|
73
|
+
paddingX: "0.5",
|
74
|
+
paddingY: "0",
|
75
|
+
fontWeight: "normal",
|
76
|
+
borderRadius: "xxs",
|
77
|
+
},
|
78
|
+
md: {
|
79
|
+
fontSize: "desktop.xs",
|
80
|
+
paddingX: "1",
|
81
|
+
paddingY: "0.5",
|
82
|
+
fontWeight: "bold",
|
83
|
+
borderRadius: "xs",
|
84
|
+
},
|
85
|
+
lg: {
|
86
|
+
fontSize: "desktop.sm",
|
87
|
+
paddingX: "1.5",
|
88
|
+
paddingY: "0.5",
|
89
|
+
fontWeight: "bold",
|
90
|
+
borderRadius: "xs",
|
91
|
+
},
|
92
|
+
},
|
93
|
+
attached: {
|
94
|
+
true: {
|
95
|
+
borderBottomRadius: "none",
|
96
|
+
},
|
97
|
+
},
|
98
|
+
},
|
99
|
+
defaultVariants: {
|
100
|
+
colorPalette: "grey",
|
101
|
+
size: "md",
|
102
|
+
attached: false,
|
103
|
+
},
|
104
|
+
});
|
@@ -0,0 +1,124 @@
|
|
1
|
+
import { defineRecipe } from "@chakra-ui/react";
|
2
|
+
import tokens from "@vygruppen/spor-design-tokens";
|
3
|
+
|
4
|
+
export const buttonRecipe = defineRecipe({
|
5
|
+
className: "spor-button",
|
6
|
+
base: {
|
7
|
+
border: 0,
|
8
|
+
borderRadius: "xl",
|
9
|
+
display: "flex",
|
10
|
+
gap: "1",
|
11
|
+
alignItems: "center",
|
12
|
+
justifyContent: "center",
|
13
|
+
transitionProperty: "common",
|
14
|
+
transitionDuration: "normal",
|
15
|
+
cursor: "pointer",
|
16
|
+
textWrap: "wrap",
|
17
|
+
paddingX: 3,
|
18
|
+
paddingY: 1,
|
19
|
+
_disabled: {
|
20
|
+
cursor: "not-allowed",
|
21
|
+
pointerEvents: "none",
|
22
|
+
boxShadow: "none",
|
23
|
+
color: "text.disabled",
|
24
|
+
background: "surface.disabled",
|
25
|
+
},
|
26
|
+
_focus: {
|
27
|
+
outlineOffset: tokens.size.stroke.md,
|
28
|
+
},
|
29
|
+
},
|
30
|
+
variants: {
|
31
|
+
variant: {
|
32
|
+
primary: {
|
33
|
+
background: "brand.surface",
|
34
|
+
color: "brand.text",
|
35
|
+
_hover: {
|
36
|
+
background: "brand.surface.hover",
|
37
|
+
_active: {
|
38
|
+
background: "brand.surface.active",
|
39
|
+
},
|
40
|
+
},
|
41
|
+
},
|
42
|
+
secondary: {
|
43
|
+
background: "accent.surface",
|
44
|
+
color: "accent.text",
|
45
|
+
_hover: {
|
46
|
+
background: "accent.surface.hover",
|
47
|
+
_active: {
|
48
|
+
background: "accent.surface.active",
|
49
|
+
},
|
50
|
+
},
|
51
|
+
},
|
52
|
+
tertiary: {
|
53
|
+
color: "core.text",
|
54
|
+
outline: "solid",
|
55
|
+
outlineWidth: tokens.size.stroke.sm,
|
56
|
+
outlineColor: "core.outline",
|
57
|
+
_hover: {
|
58
|
+
outlineWidth: tokens.size.stroke.md,
|
59
|
+
outlineColor: "core.outline.hover",
|
60
|
+
_active: {
|
61
|
+
background: "core.surface.active",
|
62
|
+
outlineWidth: tokens.size.stroke.sm,
|
63
|
+
outlineColor: "core.outline",
|
64
|
+
},
|
65
|
+
},
|
66
|
+
_focus: {
|
67
|
+
outlineWidth: tokens.size.stroke.sm,
|
68
|
+
},
|
69
|
+
},
|
70
|
+
ghost: {
|
71
|
+
color: "ghost.text",
|
72
|
+
_hover: {
|
73
|
+
background: "ghost.surface.hover",
|
74
|
+
_active: {
|
75
|
+
background: "ghost.surface.active",
|
76
|
+
},
|
77
|
+
},
|
78
|
+
},
|
79
|
+
floating: {
|
80
|
+
color: "floating.text",
|
81
|
+
border: "sm",
|
82
|
+
borderColor: "floating.outline",
|
83
|
+
boxShadow:
|
84
|
+
"0px 1px 3px 0px var(--spor-colors-surface-disabled, rgba(0, 0, 0, 0.10))",
|
85
|
+
_hover: {
|
86
|
+
borderColor: "floating.outline.hover",
|
87
|
+
|
88
|
+
_active: {
|
89
|
+
background: "core.surface.active",
|
90
|
+
boxShadow: "none",
|
91
|
+
borderColor: "floating.outline",
|
92
|
+
},
|
93
|
+
},
|
94
|
+
},
|
95
|
+
},
|
96
|
+
size: {
|
97
|
+
xs: {
|
98
|
+
minHeight: 5,
|
99
|
+
minWidth: 5,
|
100
|
+
paddingY: 0.5,
|
101
|
+
fontSize: "xs",
|
102
|
+
fontWeight: "normal",
|
103
|
+
},
|
104
|
+
sm: {
|
105
|
+
minHeight: 6,
|
106
|
+
minWidth: 6,
|
107
|
+
fontSize: "xs",
|
108
|
+
fontWeight: "normal",
|
109
|
+
},
|
110
|
+
md: {
|
111
|
+
minHeight: 7,
|
112
|
+
minWidth: 7,
|
113
|
+
fontSize: "sm",
|
114
|
+
fontWeight: "bold",
|
115
|
+
},
|
116
|
+
lg: {
|
117
|
+
minHeight: 8,
|
118
|
+
minWidth: 8,
|
119
|
+
fontSize: "sm",
|
120
|
+
fontWeight: "bold",
|
121
|
+
},
|
122
|
+
},
|
123
|
+
},
|
124
|
+
});
|
@@ -0,0 +1,144 @@
|
|
1
|
+
import { defineRecipe } from "@chakra-ui/react";
|
2
|
+
|
3
|
+
export const choiceChipRecipe = defineRecipe({
|
4
|
+
base: {
|
5
|
+
display: "inline-flex",
|
6
|
+
alignItems: "center",
|
7
|
+
boxAlign: "center",
|
8
|
+
fontSize: "xs",
|
9
|
+
cursor: "pointer",
|
10
|
+
transitionProperty: "all",
|
11
|
+
borderRadius: "xl",
|
12
|
+
transitionDuration: "fast",
|
13
|
+
height: 6,
|
14
|
+
paddingInlineStart: "2",
|
15
|
+
paddingInlineEnd: "2",
|
16
|
+
|
17
|
+
outline: "1px solid",
|
18
|
+
outlineColor: "base.outline",
|
19
|
+
_checked: {
|
20
|
+
backgroundColor: "brand.surface",
|
21
|
+
borderRadius: "sm",
|
22
|
+
outline: "none",
|
23
|
+
color: "brand.text",
|
24
|
+
_hover: {
|
25
|
+
backgroundColor: "brand.surface.hover",
|
26
|
+
_active: {
|
27
|
+
backgroundColor: "brand.surface.active",
|
28
|
+
},
|
29
|
+
},
|
30
|
+
},
|
31
|
+
|
32
|
+
_focusVisible: {
|
33
|
+
outline: "2px solid",
|
34
|
+
outlineColor: "outline.focus",
|
35
|
+
outlineOffset: "1px",
|
36
|
+
},
|
37
|
+
|
38
|
+
_disabled: {
|
39
|
+
pointerEvents: "none",
|
40
|
+
boxShadow: "none",
|
41
|
+
backgroundColor: "surface.disabled",
|
42
|
+
color: "text.disabled",
|
43
|
+
outline: "none",
|
44
|
+
|
45
|
+
_hover: {
|
46
|
+
backgroundColor: "core.surface.disabled",
|
47
|
+
boxShadow: "none",
|
48
|
+
color: "core.text.disabled",
|
49
|
+
},
|
50
|
+
_checked: {
|
51
|
+
cursor: "not-allowed",
|
52
|
+
boxShadow: "none",
|
53
|
+
color: "core.text.disabled",
|
54
|
+
backgroundColor: "core.surface.disabled",
|
55
|
+
_hover: {
|
56
|
+
backgroundColor: "core.surface.disabled",
|
57
|
+
boxShadow: "none",
|
58
|
+
color: "core.text.disabled",
|
59
|
+
},
|
60
|
+
},
|
61
|
+
},
|
62
|
+
},
|
63
|
+
variants: {
|
64
|
+
variant: {
|
65
|
+
core: {
|
66
|
+
color: "core.text",
|
67
|
+
outlineColor: "core.outline",
|
68
|
+
|
69
|
+
_hover: {
|
70
|
+
outline: "2px solid",
|
71
|
+
outlineColor: "core.outline.hover",
|
72
|
+
|
73
|
+
_active: {
|
74
|
+
outline: "1px solid",
|
75
|
+
outlineColor: "core.outline",
|
76
|
+
backgroundColor: "core.surface.active",
|
77
|
+
},
|
78
|
+
},
|
79
|
+
},
|
80
|
+
accent: {
|
81
|
+
backgroundColor: "accent.surface",
|
82
|
+
color: "accent.text",
|
83
|
+
outline: "none",
|
84
|
+
|
85
|
+
_hover: {
|
86
|
+
backgroundColor: "accent.surface.hover",
|
87
|
+
|
88
|
+
_active: {
|
89
|
+
backgroundColor: "accent.surface.active",
|
90
|
+
},
|
91
|
+
},
|
92
|
+
},
|
93
|
+
floating: {
|
94
|
+
backgroundColor: "floating.surface",
|
95
|
+
outline: "1px solid",
|
96
|
+
outlineColor: "floating.outline",
|
97
|
+
color: "floating.text",
|
98
|
+
|
99
|
+
boxShadow: "sm",
|
100
|
+
_hover: {
|
101
|
+
backgroundColor: "floating.surface.hover",
|
102
|
+
outline: "1px solid",
|
103
|
+
outlineColor: "floating.outline.hover",
|
104
|
+
|
105
|
+
_active: {
|
106
|
+
backgroundColor: "floating.surface.active",
|
107
|
+
outline: "1px solid",
|
108
|
+
outlineColor: "floating.outline",
|
109
|
+
},
|
110
|
+
},
|
111
|
+
},
|
112
|
+
},
|
113
|
+
size: {
|
114
|
+
xs: {
|
115
|
+
_checked: {
|
116
|
+
borderRadius: "0.563rem",
|
117
|
+
},
|
118
|
+
height: 5,
|
119
|
+
paddingX: 1.5,
|
120
|
+
},
|
121
|
+
sm: {
|
122
|
+
_checked: {
|
123
|
+
borderRadius: "sm",
|
124
|
+
},
|
125
|
+
height: 6,
|
126
|
+
paddingX: 2,
|
127
|
+
},
|
128
|
+
md: {
|
129
|
+
_checked: {
|
130
|
+
borderRadius: "sm",
|
131
|
+
},
|
132
|
+
height: 7,
|
133
|
+
paddingX: 2,
|
134
|
+
},
|
135
|
+
lg: {
|
136
|
+
_checked: {
|
137
|
+
borderRadius: "md",
|
138
|
+
},
|
139
|
+
height: 8,
|
140
|
+
paddingX: 3,
|
141
|
+
},
|
142
|
+
},
|
143
|
+
},
|
144
|
+
});
|
@@ -0,0 +1,41 @@
|
|
1
|
+
import { defineRecipe } from "@chakra-ui/react";
|
2
|
+
import { ghostBackground } from "../utils/ghost-utils";
|
3
|
+
|
4
|
+
export const closeButtonRecipe = defineRecipe({
|
5
|
+
base: {
|
6
|
+
transitionProperty: "common",
|
7
|
+
transitionDuration: "normal",
|
8
|
+
borderRadius: "md",
|
9
|
+
backgroundColor: "transparent",
|
10
|
+
color: "darkGrey",
|
11
|
+
fontWeight: "normal",
|
12
|
+
_hover: {
|
13
|
+
...ghostBackground("hover"),
|
14
|
+
_disabled: {
|
15
|
+
color: "dimGrey",
|
16
|
+
},
|
17
|
+
_active: {
|
18
|
+
...ghostBackground("active"),
|
19
|
+
},
|
20
|
+
},
|
21
|
+
},
|
22
|
+
variants: {
|
23
|
+
size: {
|
24
|
+
lg: {
|
25
|
+
width: "40px",
|
26
|
+
height: "40px",
|
27
|
+
fontSize: "xs",
|
28
|
+
},
|
29
|
+
md: {
|
30
|
+
width: "32px",
|
31
|
+
height: "32px",
|
32
|
+
fontSize: "0.75rem",
|
33
|
+
},
|
34
|
+
sm: {
|
35
|
+
width: "24px",
|
36
|
+
height: "24px",
|
37
|
+
fontSize: "0.625rem",
|
38
|
+
},
|
39
|
+
},
|
40
|
+
},
|
41
|
+
});
|
@@ -0,0 +1,14 @@
|
|
1
|
+
import { defineRecipe } from "@chakra-ui/react";
|
2
|
+
import { badgeRecipie } from "./badge";
|
3
|
+
|
4
|
+
export const codeRecipie = defineRecipe({
|
5
|
+
base: {
|
6
|
+
fontFamily: "monospace",
|
7
|
+
fontSize: ["mobile.xs", "desktop.xs"],
|
8
|
+
borderRadius: "xs",
|
9
|
+
paddingX: 1,
|
10
|
+
},
|
11
|
+
variants: {
|
12
|
+
colorPalette: badgeRecipie.variants?.colorPalette ?? {},
|
13
|
+
},
|
14
|
+
});
|
@@ -0,0 +1,19 @@
|
|
1
|
+
import { defineRecipe } from "@chakra-ui/react";
|
2
|
+
|
3
|
+
export const groupRecipe = defineRecipe({
|
4
|
+
className: "spor-group",
|
5
|
+
base: {
|
6
|
+
fontSize: "lg",
|
7
|
+
},
|
8
|
+
variants: {
|
9
|
+
disabled: {
|
10
|
+
true: {
|
11
|
+
"& > *": {
|
12
|
+
pointerEvents: "none",
|
13
|
+
backgroundColor: "surface.disabled",
|
14
|
+
color: "text.disabled",
|
15
|
+
},
|
16
|
+
},
|
17
|
+
},
|
18
|
+
},
|
19
|
+
});
|
@@ -0,0 +1,29 @@
|
|
1
|
+
import { attachedInputsRecipe } from "./attached-inputs";
|
2
|
+
import { badgeRecipie } from "./badge";
|
3
|
+
import { buttonRecipe } from "./button";
|
4
|
+
import { closeButtonRecipe } from "./close-button";
|
5
|
+
import { codeRecipie } from "./code";
|
6
|
+
import { inputRecipe } from "./input";
|
7
|
+
import { linkRecipe } from "./link";
|
8
|
+
import { pressableCardRecipe } from "./pressable-card";
|
9
|
+
import { progressLoaderRecipe } from "./progress-loader";
|
10
|
+
import { separatorRecipe } from "./separator";
|
11
|
+
import { skeletonRecipe } from "./skeleton";
|
12
|
+
import { staticCardRecipe } from "./static-card";
|
13
|
+
import { textareaRecipe } from "./textarea";
|
14
|
+
|
15
|
+
export const recipes = {
|
16
|
+
attachedInputs: attachedInputsRecipe,
|
17
|
+
badge: badgeRecipie,
|
18
|
+
button: buttonRecipe,
|
19
|
+
closeButton: closeButtonRecipe,
|
20
|
+
code: codeRecipie,
|
21
|
+
input: inputRecipe,
|
22
|
+
link: linkRecipe,
|
23
|
+
pressableCard: pressableCardRecipe,
|
24
|
+
progressLoader: progressLoaderRecipe,
|
25
|
+
seperator: separatorRecipe,
|
26
|
+
skeleton: skeletonRecipe,
|
27
|
+
staticCard: staticCardRecipe,
|
28
|
+
textarea: textareaRecipe,
|
29
|
+
};
|
@@ -0,0 +1,89 @@
|
|
1
|
+
import { defineRecipe } from "@chakra-ui/react";
|
2
|
+
|
3
|
+
/* FYI: The styling in this file is also used in Textarea */
|
4
|
+
|
5
|
+
export const inputRecipe = defineRecipe({
|
6
|
+
base: {
|
7
|
+
appearance: "none",
|
8
|
+
width: "100%",
|
9
|
+
outline: "none",
|
10
|
+
border: 0,
|
11
|
+
borderRadius: "sm",
|
12
|
+
transitionProperty: "common",
|
13
|
+
transitionDuration: "fast",
|
14
|
+
position: "relative",
|
15
|
+
paddingX: 3,
|
16
|
+
paddingTop: 3,
|
17
|
+
height: 8,
|
18
|
+
fontSize: "mobile.md",
|
19
|
+
|
20
|
+
_disabled: {
|
21
|
+
backgroundColor: "surface.disabled",
|
22
|
+
outline: "1px solid",
|
23
|
+
outlineColor: "outline.disabled",
|
24
|
+
pointerEvents: "none",
|
25
|
+
},
|
26
|
+
_invalid: {
|
27
|
+
outline: "2px solid",
|
28
|
+
outlineColor: "outline.error",
|
29
|
+
_active: {
|
30
|
+
outline: "2px solid",
|
31
|
+
outlineColor: "outline.error",
|
32
|
+
},
|
33
|
+
_focus: {
|
34
|
+
outline: "2px solid",
|
35
|
+
outlineColor: "outline.error",
|
36
|
+
},
|
37
|
+
_hover: {
|
38
|
+
outline: "2px solid",
|
39
|
+
outlineColor: "core.outline",
|
40
|
+
},
|
41
|
+
},
|
42
|
+
},
|
43
|
+
variants: {
|
44
|
+
variant: {
|
45
|
+
core: {
|
46
|
+
backgroundColor: "transparent",
|
47
|
+
outline: "1px solid",
|
48
|
+
outlineColor: "core.outline",
|
49
|
+
_hover: {
|
50
|
+
outline: "2px solid",
|
51
|
+
outlineColor: "core.outline.hover",
|
52
|
+
_active: {
|
53
|
+
outline: "1px solid",
|
54
|
+
outlineColor: "outline.disabled",
|
55
|
+
backgroundColor: "core.surface.active",
|
56
|
+
},
|
57
|
+
},
|
58
|
+
_focus: {
|
59
|
+
outline: "2px solid",
|
60
|
+
outlineColor: "outline.focus",
|
61
|
+
},
|
62
|
+
},
|
63
|
+
floating: {
|
64
|
+
boxShadow: "sm",
|
65
|
+
bg: "floating.surface",
|
66
|
+
outline: "1px solid",
|
67
|
+
outlineColor: "floating.outline",
|
68
|
+
|
69
|
+
_hover: {
|
70
|
+
outline: "1px solid",
|
71
|
+
outlineColor: "floating.outline.hover",
|
72
|
+
},
|
73
|
+
_active: {
|
74
|
+
outline: "1px solid",
|
75
|
+
outlineColor: "floating.outline.active",
|
76
|
+
backgroundColor: "floating.surface.active",
|
77
|
+
},
|
78
|
+
|
79
|
+
focus: {
|
80
|
+
outline: "1px solid",
|
81
|
+
outlineColor: "outline.focus",
|
82
|
+
},
|
83
|
+
},
|
84
|
+
},
|
85
|
+
},
|
86
|
+
defaultVariants: {
|
87
|
+
variant: "core",
|
88
|
+
},
|
89
|
+
});
|
@@ -0,0 +1,64 @@
|
|
1
|
+
import { defineRecipe } from "@chakra-ui/react";
|
2
|
+
import { coreText } from "../utils/core-utils";
|
3
|
+
|
4
|
+
export const linkRecipe = defineRecipe({
|
5
|
+
base: {
|
6
|
+
transitionProperty: "common",
|
7
|
+
transitionDuration: "fast",
|
8
|
+
transitionTimingFunction: "ease-out",
|
9
|
+
cursor: "pointer",
|
10
|
+
backgroundImage: "linear-gradient(currentColor, currentColor)",
|
11
|
+
backgroundSize: "100% 1px",
|
12
|
+
backgroundPosition: "0 100%",
|
13
|
+
backgroundRepeat: "no-repeat",
|
14
|
+
borderRadius: "none",
|
15
|
+
paddingX: "2px",
|
16
|
+
paddingY: "0",
|
17
|
+
color: "inherit",
|
18
|
+
display: "inline-flex",
|
19
|
+
gap: "0",
|
20
|
+
position: "relative",
|
21
|
+
boxDecorationBreak: "clone",
|
22
|
+
textUnderlineOffset: "0",
|
23
|
+
|
24
|
+
"&:focus, &:focus-visible, &:active, &:hover": {
|
25
|
+
backgroundImage: "none",
|
26
|
+
backgroundSize: "100%",
|
27
|
+
outline: "none",
|
28
|
+
borderRadius: "xs",
|
29
|
+
},
|
30
|
+
|
31
|
+
"& svg": {
|
32
|
+
display: "inline-block",
|
33
|
+
width: "1.125em",
|
34
|
+
height: "1.125em",
|
35
|
+
position: "relative",
|
36
|
+
bottom: "1px",
|
37
|
+
scale: "0.8",
|
38
|
+
marginRight: "-2px",
|
39
|
+
},
|
40
|
+
},
|
41
|
+
variants: {
|
42
|
+
variant: {
|
43
|
+
primary: {
|
44
|
+
...coreText("default"),
|
45
|
+
_hover: {
|
46
|
+
color: "text.default",
|
47
|
+
_active: {
|
48
|
+
color: "text.disabled",
|
49
|
+
},
|
50
|
+
},
|
51
|
+
},
|
52
|
+
secondary: {
|
53
|
+
...coreText("highlight"),
|
54
|
+
padding: "2px",
|
55
|
+
_hover: {
|
56
|
+
...coreText("highlight"),
|
57
|
+
_active: {
|
58
|
+
color: "text.disabled",
|
59
|
+
},
|
60
|
+
},
|
61
|
+
},
|
62
|
+
},
|
63
|
+
},
|
64
|
+
});
|