@yahoo/uds 3.100.0-beta.1 → 3.100.0-beta.3
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/dist/automated-config/dist/generated/autoVariants.cjs +1 -0
- package/dist/automated-config/dist/generated/autoVariants.d.cts +1 -0
- package/dist/automated-config/dist/generated/autoVariants.d.ts +1 -0
- package/dist/automated-config/dist/generated/autoVariants.js +1 -0
- package/dist/automated-config/dist/generated/generatedConfigs.cjs +67 -15
- package/dist/automated-config/dist/generated/generatedConfigs.d.cts +27 -0
- package/dist/automated-config/dist/generated/generatedConfigs.d.ts +27 -0
- package/dist/automated-config/dist/generated/generatedConfigs.js +67 -15
- package/dist/automated-config/dist/generated/universalTokensConfigAuto.cjs +17 -5
- package/dist/automated-config/dist/generated/universalTokensConfigAuto.js +17 -5
- package/dist/automated-config/dist/properties.cjs +12 -1
- package/dist/automated-config/dist/properties.d.cts +7 -1
- package/dist/automated-config/dist/properties.d.ts +7 -1
- package/dist/automated-config/dist/properties.js +12 -1
- package/dist/automated-config/dist/utils/getConfigVariantProperties.d.cts +2 -2
- package/dist/automated-config/dist/utils/getConfigVariantProperties.d.ts +2 -2
- package/dist/automated-config/dist/utils/index.cjs +4 -4
- package/dist/automated-config/dist/utils/index.d.cts +4 -0
- package/dist/automated-config/dist/utils/index.d.ts +4 -0
- package/dist/automated-config/dist/utils/index.js +4 -4
- package/dist/components/client/Tooltip/TooltipContent.cjs +6 -4
- package/dist/components/client/Tooltip/TooltipContent.js +6 -4
- package/dist/config/dist/index.cjs +17 -5
- package/dist/config/dist/index.d.cts +16 -0
- package/dist/config/dist/index.d.ts +16 -0
- package/dist/config/dist/index.js +17 -5
- package/dist/runtime/tooltipConfig.cjs +0 -4
- package/dist/runtime/tooltipConfig.d.cts +1 -2
- package/dist/runtime/tooltipConfig.d.ts +1 -2
- package/dist/runtime/tooltipConfig.js +0 -4
- package/dist/styles/styler.d.cts +56 -55
- package/dist/styles/styler.d.ts +56 -55
- package/dist/styles/variants.d.cts +3 -0
- package/dist/styles/variants.d.ts +3 -0
- package/dist/tailwind/utils/getShadowStyles.d.cts +4 -4
- package/dist/tailwind/utils/getShadowStyles.d.ts +4 -4
- package/dist/uds/generated/tailwindPurge.cjs +4 -3
- package/dist/uds/generated/tailwindPurge.js +4 -3
- package/package.json +1 -1
|
@@ -93,6 +93,10 @@ declare function createConfigurableProperty<C extends ConfigurablePropertiesName
|
|
|
93
93
|
skipRestState?: boolean;
|
|
94
94
|
pseudoStates?: PossibleStates[];
|
|
95
95
|
supportsCustom?: boolean;
|
|
96
|
+
layerReference?: {
|
|
97
|
+
variablePath: string;
|
|
98
|
+
propertyName: string;
|
|
99
|
+
};
|
|
96
100
|
}): SelectedConfigurableProperty<C, O, T, V>;
|
|
97
101
|
declare function createVariantConfig(config: {
|
|
98
102
|
label: string;
|
|
@@ -111,11 +111,11 @@ function generateClassName({ componentName, subComponentName, variantKey, varian
|
|
|
111
111
|
if (layerOptionalPseudoSelector) className = `${className}${layerOptionalPseudoSelector}`;
|
|
112
112
|
return className.replaceAll(/\s+/g, "-");
|
|
113
113
|
}
|
|
114
|
-
const getTheCssPropertyValue = (schema, theme, propertyName, schemaStateValue, existingValue) => {
|
|
114
|
+
const getTheCssPropertyValue = (schema, theme, propertyName, schemaStateValue, existingValue, originalPropertyDefinition) => {
|
|
115
115
|
const { value, type } = schemaStateValue;
|
|
116
116
|
const propertyConfig = configurableProperties[propertyName];
|
|
117
117
|
let newValue;
|
|
118
|
-
if (propertyConfig.customValueRenderer) newValue = propertyConfig.customValueRenderer(schemaStateValue, schema, theme);
|
|
118
|
+
if (propertyConfig.customValueRenderer) newValue = propertyConfig.customValueRenderer(schemaStateValue, schema, theme, originalPropertyDefinition);
|
|
119
119
|
else {
|
|
120
120
|
const safeTwThemePath = propertyConfig.twThemePath;
|
|
121
121
|
newValue = theme(safeTwThemePath(type, String(value)));
|
|
@@ -218,10 +218,10 @@ function generateDeclaration({ componentName, subComponentName, variantKey, vari
|
|
|
218
218
|
}
|
|
219
219
|
} else if (typeof cssProperties === "string") {
|
|
220
220
|
const existingValue = currentStyles?.[fullClassName]?.[cssProperties];
|
|
221
|
-
cssDeclarations[cssProperties] = getTheCssPropertyValue(schema, theme, originalPropertyDefinition.name, schemaValueForState, existingValue);
|
|
221
|
+
cssDeclarations[cssProperties] = getTheCssPropertyValue(schema, theme, originalPropertyDefinition.name, schemaValueForState, existingValue, originalPropertyDefinition);
|
|
222
222
|
} else if (Array.isArray(cssProperties)) for (const cssProp of cssProperties) {
|
|
223
223
|
const existingValue = currentStyles?.[fullClassName]?.[cssProp];
|
|
224
|
-
cssDeclarations[cssProp] = getTheCssPropertyValue(schema, theme, originalPropertyDefinition.name, schemaValueForState, existingValue);
|
|
224
|
+
cssDeclarations[cssProp] = getTheCssPropertyValue(schema, theme, originalPropertyDefinition.name, schemaValueForState, existingValue, originalPropertyDefinition);
|
|
225
225
|
}
|
|
226
226
|
/**
|
|
227
227
|
* Button root layer workarounds & enhancements.
|
|
@@ -23,8 +23,7 @@ const TooltipContent = (0, react.forwardRef)(function TooltipContent({ children,
|
|
|
23
23
|
const currentPlacement = (0, _ariakit_react.useStoreState)(store, "currentPlacement");
|
|
24
24
|
const placement = (0, _ariakit_react.useStoreState)(store, "placement");
|
|
25
25
|
const effectivePlacement = currentPlacement ?? placement ?? "top";
|
|
26
|
-
const {
|
|
27
|
-
const defaultBackdropBlur = backdropBlur["default"];
|
|
26
|
+
const { borderRadius } = require_components_client_Tooltip_UDSTooltipConfigProvider.useTooltipConfig();
|
|
28
27
|
const defaultBorderRadius = borderRadius["default"];
|
|
29
28
|
const arrowRef = (0, react.useRef)(null);
|
|
30
29
|
const { internalRef, shadowFilterId, maxWidthClass, dimensions, shadows, shadowPadding, svgPath, blurStyle, childTransitionStyle, tooltipShift, onPositionUpdate } = require_components_client_Tooltip_useTooltipContent.useTooltipContent({
|
|
@@ -55,7 +54,10 @@ const TooltipContent = (0, react.forwardRef)(function TooltipContent({ children,
|
|
|
55
54
|
}),
|
|
56
55
|
title: require_styles_styler.getStyles({ tooltipSizeTitle: "default" }),
|
|
57
56
|
body: require_styles_styler.getStyles({ tooltipSizeBody: "default" }),
|
|
58
|
-
icon: require_styles_styler.getStyles({
|
|
57
|
+
icon: require_styles_styler.getStyles({
|
|
58
|
+
tooltipSizeIcon: "default",
|
|
59
|
+
tooltipVariantIcon: "default"
|
|
60
|
+
})
|
|
59
61
|
};
|
|
60
62
|
return /* @__PURE__ */ (0, react_jsx_runtime.jsxs)(_ariakit_react.Tooltip, {
|
|
61
63
|
ref: mergedRef,
|
|
@@ -66,7 +68,7 @@ const TooltipContent = (0, react.forwardRef)(function TooltipContent({ children,
|
|
|
66
68
|
updatePosition: onPositionUpdate,
|
|
67
69
|
style: tooltipShift.x !== 0 || tooltipShift.y !== 0 ? { transform: `translate(${tooltipShift.x}px, ${tooltipShift.y}px)` } : void 0,
|
|
68
70
|
children: [
|
|
69
|
-
|
|
71
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)(require_components_Box.Box, {
|
|
70
72
|
className: classNames.blur,
|
|
71
73
|
style: {
|
|
72
74
|
...blurStyle,
|
|
@@ -21,8 +21,7 @@ const TooltipContent = forwardRef(function TooltipContent({ children, maxWidth,
|
|
|
21
21
|
const currentPlacement = useStoreState(store, "currentPlacement");
|
|
22
22
|
const placement = useStoreState(store, "placement");
|
|
23
23
|
const effectivePlacement = currentPlacement ?? placement ?? "top";
|
|
24
|
-
const {
|
|
25
|
-
const defaultBackdropBlur = backdropBlur["default"];
|
|
24
|
+
const { borderRadius } = useTooltipConfig();
|
|
26
25
|
const defaultBorderRadius = borderRadius["default"];
|
|
27
26
|
const arrowRef = useRef(null);
|
|
28
27
|
const { internalRef, shadowFilterId, maxWidthClass, dimensions, shadows, shadowPadding, svgPath, blurStyle, childTransitionStyle, tooltipShift, onPositionUpdate } = useTooltipContent({
|
|
@@ -53,7 +52,10 @@ const TooltipContent = forwardRef(function TooltipContent({ children, maxWidth,
|
|
|
53
52
|
}),
|
|
54
53
|
title: getStyles({ tooltipSizeTitle: "default" }),
|
|
55
54
|
body: getStyles({ tooltipSizeBody: "default" }),
|
|
56
|
-
icon: getStyles({
|
|
55
|
+
icon: getStyles({
|
|
56
|
+
tooltipSizeIcon: "default",
|
|
57
|
+
tooltipVariantIcon: "default"
|
|
58
|
+
})
|
|
57
59
|
};
|
|
58
60
|
return /* @__PURE__ */ jsxs(Tooltip, {
|
|
59
61
|
ref: mergedRef,
|
|
@@ -64,7 +66,7 @@ const TooltipContent = forwardRef(function TooltipContent({ children, maxWidth,
|
|
|
64
66
|
updatePosition: onPositionUpdate,
|
|
65
67
|
style: tooltipShift.x !== 0 || tooltipShift.y !== 0 ? { transform: `translate(${tooltipShift.x}px, ${tooltipShift.y}px)` } : void 0,
|
|
66
68
|
children: [
|
|
67
|
-
|
|
69
|
+
/* @__PURE__ */ jsx(Box, {
|
|
68
70
|
className: classNames.blur,
|
|
69
71
|
style: {
|
|
70
72
|
...blurStyle,
|
|
@@ -27,11 +27,18 @@ const yosConfig = {
|
|
|
27
27
|
value: "1"
|
|
28
28
|
} }
|
|
29
29
|
},
|
|
30
|
-
"size/default/svg": {
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
30
|
+
"size/default/svg": {
|
|
31
|
+
borderRadius: { rest: {
|
|
32
|
+
type: "borderRadii",
|
|
33
|
+
valueType: "alias",
|
|
34
|
+
value: "md"
|
|
35
|
+
} },
|
|
36
|
+
strokeWidth: { rest: {
|
|
37
|
+
type: "borderWidths",
|
|
38
|
+
valueType: "alias",
|
|
39
|
+
value: "thin"
|
|
40
|
+
} }
|
|
41
|
+
},
|
|
35
42
|
"size/default/title": { textVariant: { rest: {
|
|
36
43
|
type: "textVariants",
|
|
37
44
|
valueType: "alias",
|
|
@@ -78,6 +85,11 @@ const yosConfig = {
|
|
|
78
85
|
type: "positiveIntegers",
|
|
79
86
|
valueType: "custom",
|
|
80
87
|
value: 0
|
|
88
|
+
} } },
|
|
89
|
+
"variant/default/icon": { color: { rest: {
|
|
90
|
+
type: "foregroundPaletteColors",
|
|
91
|
+
valueType: "alias",
|
|
92
|
+
value: "primary"
|
|
81
93
|
} } }
|
|
82
94
|
},
|
|
83
95
|
defaults: {
|
|
@@ -51,6 +51,13 @@ declare const yosConfig: {
|
|
|
51
51
|
readonly value: "md";
|
|
52
52
|
};
|
|
53
53
|
};
|
|
54
|
+
readonly strokeWidth: {
|
|
55
|
+
readonly rest: {
|
|
56
|
+
readonly type: "borderWidths";
|
|
57
|
+
readonly valueType: "alias";
|
|
58
|
+
readonly value: "thin";
|
|
59
|
+
};
|
|
60
|
+
};
|
|
54
61
|
};
|
|
55
62
|
readonly 'size/default/title': {
|
|
56
63
|
readonly textVariant: {
|
|
@@ -127,6 +134,15 @@ declare const yosConfig: {
|
|
|
127
134
|
};
|
|
128
135
|
};
|
|
129
136
|
};
|
|
137
|
+
readonly 'variant/default/icon': {
|
|
138
|
+
readonly color: {
|
|
139
|
+
readonly rest: {
|
|
140
|
+
readonly type: "foregroundPaletteColors";
|
|
141
|
+
readonly valueType: "alias";
|
|
142
|
+
readonly value: "primary";
|
|
143
|
+
};
|
|
144
|
+
};
|
|
145
|
+
};
|
|
130
146
|
};
|
|
131
147
|
readonly defaults: {
|
|
132
148
|
readonly size: "default";
|
|
@@ -51,6 +51,13 @@ declare const yosConfig: {
|
|
|
51
51
|
readonly value: "md";
|
|
52
52
|
};
|
|
53
53
|
};
|
|
54
|
+
readonly strokeWidth: {
|
|
55
|
+
readonly rest: {
|
|
56
|
+
readonly type: "borderWidths";
|
|
57
|
+
readonly valueType: "alias";
|
|
58
|
+
readonly value: "thin";
|
|
59
|
+
};
|
|
60
|
+
};
|
|
54
61
|
};
|
|
55
62
|
readonly 'size/default/title': {
|
|
56
63
|
readonly textVariant: {
|
|
@@ -127,6 +134,15 @@ declare const yosConfig: {
|
|
|
127
134
|
};
|
|
128
135
|
};
|
|
129
136
|
};
|
|
137
|
+
readonly 'variant/default/icon': {
|
|
138
|
+
readonly color: {
|
|
139
|
+
readonly rest: {
|
|
140
|
+
readonly type: "foregroundPaletteColors";
|
|
141
|
+
readonly valueType: "alias";
|
|
142
|
+
readonly value: "primary";
|
|
143
|
+
};
|
|
144
|
+
};
|
|
145
|
+
};
|
|
130
146
|
};
|
|
131
147
|
readonly defaults: {
|
|
132
148
|
readonly size: "default";
|
|
@@ -26,11 +26,18 @@ const yosConfig = {
|
|
|
26
26
|
value: "1"
|
|
27
27
|
} }
|
|
28
28
|
},
|
|
29
|
-
"size/default/svg": {
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
29
|
+
"size/default/svg": {
|
|
30
|
+
borderRadius: { rest: {
|
|
31
|
+
type: "borderRadii",
|
|
32
|
+
valueType: "alias",
|
|
33
|
+
value: "md"
|
|
34
|
+
} },
|
|
35
|
+
strokeWidth: { rest: {
|
|
36
|
+
type: "borderWidths",
|
|
37
|
+
valueType: "alias",
|
|
38
|
+
value: "thin"
|
|
39
|
+
} }
|
|
40
|
+
},
|
|
34
41
|
"size/default/title": { textVariant: { rest: {
|
|
35
42
|
type: "textVariants",
|
|
36
43
|
valueType: "alias",
|
|
@@ -77,6 +84,11 @@ const yosConfig = {
|
|
|
77
84
|
type: "positiveIntegers",
|
|
78
85
|
valueType: "custom",
|
|
79
86
|
value: 0
|
|
87
|
+
} } },
|
|
88
|
+
"variant/default/icon": { color: { rest: {
|
|
89
|
+
type: "foregroundPaletteColors",
|
|
90
|
+
valueType: "alias",
|
|
91
|
+
value: "primary"
|
|
80
92
|
} } }
|
|
81
93
|
},
|
|
82
94
|
defaults: {
|
|
@@ -4,7 +4,6 @@ const require_tokens_utils_fromEntries = require('../tokens/utils/fromEntries.cj
|
|
|
4
4
|
|
|
5
5
|
//#region src/runtime/tooltipConfig.ts
|
|
6
6
|
const tooltipSizes = ["default"];
|
|
7
|
-
const tooltipVariants = ["default"];
|
|
8
7
|
const placementMap = {
|
|
9
8
|
top: "top",
|
|
10
9
|
bottom: "bottom",
|
|
@@ -20,13 +19,10 @@ const placementMap = {
|
|
|
20
19
|
"end-bottom": "right-end"
|
|
21
20
|
};
|
|
22
21
|
const configToTooltipConfigContext = ({ tooltip, scaleMode }) => {
|
|
23
|
-
const backdropBlur = require_tokens_utils_fromEntries.fromEntries(tooltipVariants.map((v) => [v, tooltip.variables[`variant/${v}/blur`].backdropBlur.rest.value]));
|
|
24
22
|
const borderRadius = require_tokens_utils_fromEntries.fromEntries(tooltipSizes.map((s) => [s, scaleMode.medium.borderRadius[tooltip.variables[`size/${s}/svg`].borderRadius.rest.value]]));
|
|
25
|
-
if (Object.values(backdropBlur).some((b) => typeof b !== "number")) throw new Error("backdropBlur is not a number");
|
|
26
23
|
if (Object.values(borderRadius).some((b) => typeof b !== "number")) throw new Error("borderRadius is not a number");
|
|
27
24
|
return {
|
|
28
25
|
animationDuration: 200,
|
|
29
|
-
backdropBlur,
|
|
30
26
|
borderRadius,
|
|
31
27
|
placementMap
|
|
32
28
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
import { TooltipPlacement, TooltipSize
|
|
2
|
+
import { TooltipPlacement, TooltipSize } from "../types/dist/index.cjs";
|
|
3
3
|
import { UniversalTokensConfig } from "../config/dist/index.cjs";
|
|
4
4
|
import "../tokens/index.cjs";
|
|
5
5
|
import { TooltipProviderProps } from "@ariakit/react";
|
|
@@ -8,7 +8,6 @@ import { TooltipProviderProps } from "@ariakit/react";
|
|
|
8
8
|
type TooltipPlacementMap = Record<TooltipPlacement, TooltipProviderProps['placement']>;
|
|
9
9
|
interface UDSTooltipConfigContextType {
|
|
10
10
|
animationDuration: number;
|
|
11
|
-
backdropBlur: Record<TooltipVariant, number>;
|
|
12
11
|
borderRadius: Record<TooltipSize, number>;
|
|
13
12
|
placementMap: TooltipPlacementMap;
|
|
14
13
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
import { TooltipPlacement, TooltipSize
|
|
2
|
+
import { TooltipPlacement, TooltipSize } from "../types/dist/index.js";
|
|
3
3
|
import { UniversalTokensConfig } from "../config/dist/index.js";
|
|
4
4
|
import "../tokens/index.js";
|
|
5
5
|
import { TooltipProviderProps } from "@ariakit/react";
|
|
@@ -8,7 +8,6 @@ import { TooltipProviderProps } from "@ariakit/react";
|
|
|
8
8
|
type TooltipPlacementMap = Record<TooltipPlacement, TooltipProviderProps['placement']>;
|
|
9
9
|
interface UDSTooltipConfigContextType {
|
|
10
10
|
animationDuration: number;
|
|
11
|
-
backdropBlur: Record<TooltipVariant, number>;
|
|
12
11
|
borderRadius: Record<TooltipSize, number>;
|
|
13
12
|
placementMap: TooltipPlacementMap;
|
|
14
13
|
}
|
|
@@ -3,7 +3,6 @@ import { fromEntries } from "../tokens/utils/fromEntries.js";
|
|
|
3
3
|
|
|
4
4
|
//#region src/runtime/tooltipConfig.ts
|
|
5
5
|
const tooltipSizes = ["default"];
|
|
6
|
-
const tooltipVariants = ["default"];
|
|
7
6
|
const placementMap = {
|
|
8
7
|
top: "top",
|
|
9
8
|
bottom: "bottom",
|
|
@@ -19,13 +18,10 @@ const placementMap = {
|
|
|
19
18
|
"end-bottom": "right-end"
|
|
20
19
|
};
|
|
21
20
|
const configToTooltipConfigContext = ({ tooltip, scaleMode }) => {
|
|
22
|
-
const backdropBlur = fromEntries(tooltipVariants.map((v) => [v, tooltip.variables[`variant/${v}/blur`].backdropBlur.rest.value]));
|
|
23
21
|
const borderRadius = fromEntries(tooltipSizes.map((s) => [s, scaleMode.medium.borderRadius[tooltip.variables[`size/${s}/svg`].borderRadius.rest.value]]));
|
|
24
|
-
if (Object.values(backdropBlur).some((b) => typeof b !== "number")) throw new Error("backdropBlur is not a number");
|
|
25
22
|
if (Object.values(borderRadius).some((b) => typeof b !== "number")) throw new Error("borderRadius is not a number");
|
|
26
23
|
return {
|
|
27
24
|
animationDuration: 200,
|
|
28
|
-
backdropBlur,
|
|
29
25
|
borderRadius,
|
|
30
26
|
placementMap
|
|
31
27
|
};
|
package/dist/styles/styler.d.cts
CHANGED
|
@@ -12,22 +12,22 @@ declare const cva: CVA<string>;
|
|
|
12
12
|
declare const getStylesInternal: (props?: ({
|
|
13
13
|
avatarIconVariantRoot?: "primary" | "secondary" | undefined;
|
|
14
14
|
avatarImageVariantRoot?: "primary" | "secondary" | undefined;
|
|
15
|
-
avatarSizeIcon?: "
|
|
16
|
-
avatarSizeRoot?: "
|
|
15
|
+
avatarSizeIcon?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
16
|
+
avatarSizeRoot?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
17
17
|
avatarTextVariantRoot?: "primary" | "secondary" | undefined;
|
|
18
|
-
badgeSizeIcon?: "
|
|
19
|
-
badgeSizeRoot?: "
|
|
20
|
-
badgeVariantIcon?: "
|
|
21
|
-
badgeVariantRoot?: "
|
|
22
|
-
buttonSizeIcon?: "
|
|
23
|
-
buttonSizeRoot?: "
|
|
24
|
-
buttonVariantIcon?: "primary" | "secondary" | "
|
|
25
|
-
buttonVariantRoot?: "primary" | "secondary" | "
|
|
18
|
+
badgeSizeIcon?: "xs" | "sm" | "md" | "lg" | undefined;
|
|
19
|
+
badgeSizeRoot?: "xs" | "sm" | "md" | "lg" | undefined;
|
|
20
|
+
badgeVariantIcon?: "alert" | "primary" | "secondary" | "brand" | "positive" | "warning" | "info" | "alert-secondary" | "brand-secondary" | "positive-secondary" | "warning-secondary" | "info-secondary" | undefined;
|
|
21
|
+
badgeVariantRoot?: "alert" | "primary" | "secondary" | "brand" | "positive" | "warning" | "info" | "alert-secondary" | "brand-secondary" | "positive-secondary" | "warning-secondary" | "info-secondary" | undefined;
|
|
22
|
+
buttonSizeIcon?: "xs" | "sm" | "md" | "lg" | undefined;
|
|
23
|
+
buttonSizeRoot?: "xs" | "sm" | "md" | "lg" | undefined;
|
|
24
|
+
buttonVariantIcon?: "alert" | "primary" | "secondary" | "tertiary" | "brand" | "positive" | "warning" | "info" | "alert-secondary" | "brand-secondary" | "positive-secondary" | "warning-secondary" | "info-secondary" | "alert-tertiary" | "brand-tertiary" | "info-tertiary" | "positive-tertiary" | "warning-tertiary" | undefined;
|
|
25
|
+
buttonVariantRoot?: "alert" | "primary" | "secondary" | "tertiary" | "brand" | "positive" | "warning" | "info" | "alert-secondary" | "brand-secondary" | "positive-secondary" | "warning-secondary" | "info-secondary" | "alert-tertiary" | "brand-tertiary" | "info-tertiary" | "positive-tertiary" | "warning-tertiary" | undefined;
|
|
26
26
|
checkboxSizeCheckbox?: "sm" | "md" | undefined;
|
|
27
27
|
checkboxSizeRoot?: "sm" | "md" | undefined;
|
|
28
|
-
checkboxVariantCheckbox?: "
|
|
29
|
-
checkboxVariantCheckboxIcon?: "
|
|
30
|
-
checkboxVariantRoot?: "
|
|
28
|
+
checkboxVariantCheckbox?: "alert" | "primary" | "secondary" | "alert-secondary" | undefined;
|
|
29
|
+
checkboxVariantCheckboxIcon?: "alert" | "primary" | "secondary" | "alert-secondary" | undefined;
|
|
30
|
+
checkboxVariantRoot?: "alert" | "primary" | "secondary" | "alert-secondary" | undefined;
|
|
31
31
|
checkboxVariantValueCheckbox?: "checked" | "indeterminate" | "unchecked" | undefined;
|
|
32
32
|
checkboxVariantValueCheckboxIcon?: "checked" | "indeterminate" | "unchecked" | undefined;
|
|
33
33
|
checkboxVariantValueRoot?: "checked" | "indeterminate" | "unchecked" | undefined;
|
|
@@ -44,8 +44,8 @@ declare const getStylesInternal: (props?: ({
|
|
|
44
44
|
dividerVariantLabel?: "primary" | "secondary" | "tertiary" | "muted" | undefined;
|
|
45
45
|
dividerVariantLine?: "primary" | "secondary" | "tertiary" | "muted" | undefined;
|
|
46
46
|
dividerVariantRoot?: "primary" | "secondary" | "tertiary" | "muted" | undefined;
|
|
47
|
-
iconbuttonSizeIcon?: "
|
|
48
|
-
iconbuttonSizeRoot?: "
|
|
47
|
+
iconbuttonSizeIcon?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
48
|
+
iconbuttonSizeRoot?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
49
49
|
inputSizeEndIcon?: "md" | "lg" | undefined;
|
|
50
50
|
inputSizeHelperIcon?: "md" | "lg" | undefined;
|
|
51
51
|
inputSizeHelperText?: "md" | "lg" | undefined;
|
|
@@ -103,9 +103,9 @@ declare const getStylesInternal: (props?: ({
|
|
|
103
103
|
menuitemSizeStartIcon?: "default" | undefined;
|
|
104
104
|
radioSizeRadio?: "sm" | "md" | undefined;
|
|
105
105
|
radioSizeRoot?: "sm" | "md" | undefined;
|
|
106
|
-
radioVariantRadio?: "
|
|
107
|
-
radioVariantRadioCircle?: "
|
|
108
|
-
radioVariantRoot?: "
|
|
106
|
+
radioVariantRadio?: "alert" | "primary" | "secondary" | "alert-secondary" | undefined;
|
|
107
|
+
radioVariantRadioCircle?: "alert" | "primary" | "secondary" | "alert-secondary" | undefined;
|
|
108
|
+
radioVariantRoot?: "alert" | "primary" | "secondary" | "alert-secondary" | undefined;
|
|
109
109
|
radioVariantValueRadio?: "checked" | "unchecked" | undefined;
|
|
110
110
|
radioVariantValueRadioCircle?: "checked" | "unchecked" | undefined;
|
|
111
111
|
radioVariantValueRoot?: "checked" | "unchecked" | undefined;
|
|
@@ -136,16 +136,17 @@ declare const getStylesInternal: (props?: ({
|
|
|
136
136
|
tooltipSizeSvg?: "default" | undefined;
|
|
137
137
|
tooltipSizeTitle?: "default" | undefined;
|
|
138
138
|
tooltipVariantBlur?: "default" | undefined;
|
|
139
|
+
tooltipVariantIcon?: "default" | undefined;
|
|
139
140
|
tooltipVariantRoot?: "default" | undefined;
|
|
140
141
|
tooltipVariantSvg?: "default" | undefined;
|
|
141
|
-
color?: "primary" | "secondary" | "
|
|
142
|
-
placeholderColor?: "primary" | "secondary" | "
|
|
142
|
+
color?: "alert" | "primary" | "secondary" | "tertiary" | "muted" | "on-color" | "accent" | "brand" | "positive" | "warning" | "info" | "alert-secondary" | "brand-secondary" | "positive-secondary" | "warning-secondary" | "info-secondary" | "white" | "black" | "transparent" | "current" | "always/white" | "always/black" | "always/transparent" | "always/current" | "always/brand" | "always/accent" | undefined;
|
|
143
|
+
placeholderColor?: "alert" | "primary" | "secondary" | "tertiary" | "muted" | "on-color" | "accent" | "brand" | "positive" | "warning" | "info" | "alert-secondary" | "brand-secondary" | "positive-secondary" | "warning-secondary" | "info-secondary" | "white" | "black" | "transparent" | "current" | "always/white" | "always/black" | "always/transparent" | "always/current" | "always/brand" | "always/accent" | undefined;
|
|
143
144
|
fontFamily?: "display1" | "display2" | "display3" | "title1" | "title2" | "title3" | "title4" | "headline1" | "body1" | "label1" | "label2" | "label3" | "label4" | "caption1" | "caption2" | "legal1" | "ui1" | "ui2" | "ui3" | "ui4" | "ui5" | "ui6" | "display1/emphasized" | "display2/emphasized" | "display3/emphasized" | "title1/emphasized" | "title2/emphasized" | "title3/emphasized" | "title4/emphasized" | "headline1/emphasized" | "body1/emphasized" | "label1/emphasized" | "label2/emphasized" | "label3/emphasized" | "label4/emphasized" | "caption1/emphasized" | "caption2/emphasized" | "legal1/emphasized" | "ui1/emphasized" | "ui2/emphasized" | "ui3/emphasized" | "ui4/emphasized" | "ui5/emphasized" | "ui6/emphasized" | "sans" | "sans-alt" | "serif" | "serif-alt" | "mono" | undefined;
|
|
144
145
|
fontSize?: "display1" | "display2" | "display3" | "title1" | "title2" | "title3" | "title4" | "headline1" | "body1" | "label1" | "label2" | "label3" | "label4" | "caption1" | "caption2" | "legal1" | "ui1" | "ui2" | "ui3" | "ui4" | "ui5" | "ui6" | "display1/emphasized" | "display2/emphasized" | "display3/emphasized" | "title1/emphasized" | "title2/emphasized" | "title3/emphasized" | "title4/emphasized" | "headline1/emphasized" | "body1/emphasized" | "label1/emphasized" | "label2/emphasized" | "label3/emphasized" | "label4/emphasized" | "caption1/emphasized" | "caption2/emphasized" | "legal1/emphasized" | "ui1/emphasized" | "ui2/emphasized" | "ui3/emphasized" | "ui4/emphasized" | "ui5/emphasized" | "ui6/emphasized" | undefined;
|
|
145
|
-
fontWeight?: "black" | "
|
|
146
|
+
fontWeight?: "black" | "bold" | "display1" | "display2" | "display3" | "title1" | "title2" | "title3" | "title4" | "headline1" | "body1" | "label1" | "label2" | "label3" | "label4" | "caption1" | "caption2" | "legal1" | "ui1" | "ui2" | "ui3" | "ui4" | "ui5" | "ui6" | "display1/emphasized" | "display2/emphasized" | "display3/emphasized" | "title1/emphasized" | "title2/emphasized" | "title3/emphasized" | "title4/emphasized" | "headline1/emphasized" | "body1/emphasized" | "label1/emphasized" | "label2/emphasized" | "label3/emphasized" | "label4/emphasized" | "caption1/emphasized" | "caption2/emphasized" | "legal1/emphasized" | "ui1/emphasized" | "ui2/emphasized" | "ui3/emphasized" | "ui4/emphasized" | "ui5/emphasized" | "ui6/emphasized" | "thin" | "extralight" | "light" | "regular" | "medium" | "semibold" | "extrabold" | undefined;
|
|
146
147
|
lineHeight?: "display1" | "display2" | "display3" | "title1" | "title2" | "title3" | "title4" | "headline1" | "body1" | "label1" | "label2" | "label3" | "label4" | "caption1" | "caption2" | "legal1" | "ui1" | "ui2" | "ui3" | "ui4" | "ui5" | "ui6" | "display1/emphasized" | "display2/emphasized" | "display3/emphasized" | "title1/emphasized" | "title2/emphasized" | "title3/emphasized" | "title4/emphasized" | "headline1/emphasized" | "body1/emphasized" | "label1/emphasized" | "label2/emphasized" | "label3/emphasized" | "label4/emphasized" | "caption1/emphasized" | "caption2/emphasized" | "legal1/emphasized" | "ui1/emphasized" | "ui2/emphasized" | "ui3/emphasized" | "ui4/emphasized" | "ui5/emphasized" | "ui6/emphasized" | undefined;
|
|
147
148
|
letterSpacing?: "display1" | "display2" | "display3" | "title1" | "title2" | "title3" | "title4" | "headline1" | "body1" | "label1" | "label2" | "label3" | "label4" | "caption1" | "caption2" | "legal1" | "ui1" | "ui2" | "ui3" | "ui4" | "ui5" | "ui6" | "display1/emphasized" | "display2/emphasized" | "display3/emphasized" | "title1/emphasized" | "title2/emphasized" | "title3/emphasized" | "title4/emphasized" | "headline1/emphasized" | "body1/emphasized" | "label1/emphasized" | "label2/emphasized" | "label3/emphasized" | "label4/emphasized" | "caption1/emphasized" | "caption2/emphasized" | "legal1/emphasized" | "ui1/emphasized" | "ui2/emphasized" | "ui3/emphasized" | "ui4/emphasized" | "ui5/emphasized" | "ui6/emphasized" | undefined;
|
|
148
|
-
textAlign?: "
|
|
149
|
+
textAlign?: "center" | "justify" | "start" | "end" | undefined;
|
|
149
150
|
textTransform?: "none" | "display1" | "display2" | "display3" | "title1" | "title2" | "title3" | "title4" | "headline1" | "body1" | "label1" | "label2" | "label3" | "label4" | "caption1" | "caption2" | "legal1" | "ui1" | "ui2" | "ui3" | "ui4" | "ui5" | "ui6" | "display1/emphasized" | "display2/emphasized" | "display3/emphasized" | "title1/emphasized" | "title2/emphasized" | "title3/emphasized" | "title4/emphasized" | "headline1/emphasized" | "body1/emphasized" | "label1/emphasized" | "label2/emphasized" | "label3/emphasized" | "label4/emphasized" | "caption1/emphasized" | "caption2/emphasized" | "legal1/emphasized" | "ui1/emphasized" | "ui2/emphasized" | "ui3/emphasized" | "ui4/emphasized" | "ui5/emphasized" | "ui6/emphasized" | "uppercase" | "lowercase" | "capitalize" | undefined;
|
|
150
151
|
spacing?: "0" | "1" | "2" | "3" | "4" | "5" | "px" | "0.5" | "1.5" | "2.5" | "3.5" | "4.5" | "5.5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "14" | "16" | "20" | "24" | "28" | "32" | "36" | "40" | "44" | "48" | "52" | "56" | "60" | "64" | "72" | "80" | "96" | undefined;
|
|
151
152
|
spacingHorizontal?: "0" | "1" | "2" | "3" | "4" | "5" | "px" | "0.5" | "1.5" | "2.5" | "3.5" | "4.5" | "5.5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "14" | "16" | "20" | "24" | "28" | "32" | "36" | "40" | "44" | "48" | "52" | "56" | "60" | "64" | "72" | "80" | "96" | undefined;
|
|
@@ -163,50 +164,50 @@ declare const getStylesInternal: (props?: ({
|
|
|
163
164
|
offsetTop?: "0" | "1" | "2" | "3" | "4" | "5" | "px" | "0.5" | "1.5" | "2.5" | "3.5" | "4.5" | "5.5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "14" | "16" | "20" | "24" | "28" | "32" | "36" | "40" | "44" | "48" | "52" | "56" | "60" | "64" | "72" | "80" | "96" | undefined;
|
|
164
165
|
columnGap?: "0" | "1" | "2" | "3" | "4" | "5" | "px" | "0.5" | "1.5" | "2.5" | "3.5" | "4.5" | "5.5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "14" | "16" | "20" | "24" | "28" | "32" | "36" | "40" | "44" | "48" | "52" | "56" | "60" | "64" | "72" | "80" | "96" | undefined;
|
|
165
166
|
rowGap?: "0" | "1" | "2" | "3" | "4" | "5" | "px" | "0.5" | "1.5" | "2.5" | "3.5" | "4.5" | "5.5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "14" | "16" | "20" | "24" | "28" | "32" | "36" | "40" | "44" | "48" | "52" | "56" | "60" | "64" | "72" | "80" | "96" | undefined;
|
|
166
|
-
backgroundColor?: "
|
|
167
|
-
borderColor?: "primary" | "secondary" | "
|
|
168
|
-
borderStartColor?: "primary" | "secondary" | "
|
|
169
|
-
borderEndColor?: "primary" | "secondary" | "
|
|
170
|
-
borderBottomColor?: "primary" | "secondary" | "
|
|
171
|
-
borderTopColor?: "primary" | "secondary" | "
|
|
172
|
-
borderRadius?: "
|
|
173
|
-
borderTopStartRadius?: "
|
|
174
|
-
borderTopEndRadius?: "
|
|
175
|
-
borderBottomStartRadius?: "
|
|
176
|
-
borderBottomEndRadius?: "
|
|
177
|
-
borderWidth?: "
|
|
178
|
-
borderVerticalWidth?: "
|
|
179
|
-
borderHorizontalWidth?: "
|
|
180
|
-
borderStartWidth?: "
|
|
181
|
-
borderEndWidth?: "
|
|
182
|
-
borderTopWidth?: "
|
|
183
|
-
borderBottomWidth?: "
|
|
184
|
-
avatarSize?: "
|
|
185
|
-
iconSize?: "
|
|
186
|
-
alignContent?: "
|
|
187
|
-
alignItems?: "
|
|
188
|
-
alignSelf?: "
|
|
189
|
-
flex?: "
|
|
167
|
+
backgroundColor?: "alert" | "primary" | "secondary" | "accent" | "brand" | "positive" | "warning" | "info" | "alert-secondary" | "brand-secondary" | "positive-secondary" | "warning-secondary" | "info-secondary" | "white" | "black" | "transparent" | "current" | "always/white" | "always/black" | "always/transparent" | "always/current" | "always/brand" | "always/accent" | "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | undefined;
|
|
168
|
+
borderColor?: "alert" | "primary" | "secondary" | "tertiary" | "muted" | "accent" | "brand" | "positive" | "warning" | "info" | "alert-secondary" | "brand-secondary" | "positive-secondary" | "warning-secondary" | "info-secondary" | "white" | "black" | "transparent" | "current" | "always/white" | "always/black" | "always/transparent" | "always/current" | "always/brand" | "always/accent" | "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | undefined;
|
|
169
|
+
borderStartColor?: "alert" | "primary" | "secondary" | "tertiary" | "muted" | "accent" | "brand" | "positive" | "warning" | "info" | "alert-secondary" | "brand-secondary" | "positive-secondary" | "warning-secondary" | "info-secondary" | "white" | "black" | "transparent" | "current" | "always/white" | "always/black" | "always/transparent" | "always/current" | "always/brand" | "always/accent" | "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | undefined;
|
|
170
|
+
borderEndColor?: "alert" | "primary" | "secondary" | "tertiary" | "muted" | "accent" | "brand" | "positive" | "warning" | "info" | "alert-secondary" | "brand-secondary" | "positive-secondary" | "warning-secondary" | "info-secondary" | "white" | "black" | "transparent" | "current" | "always/white" | "always/black" | "always/transparent" | "always/current" | "always/brand" | "always/accent" | "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | undefined;
|
|
171
|
+
borderBottomColor?: "alert" | "primary" | "secondary" | "tertiary" | "muted" | "accent" | "brand" | "positive" | "warning" | "info" | "alert-secondary" | "brand-secondary" | "positive-secondary" | "warning-secondary" | "info-secondary" | "white" | "black" | "transparent" | "current" | "always/white" | "always/black" | "always/transparent" | "always/current" | "always/brand" | "always/accent" | "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | undefined;
|
|
172
|
+
borderTopColor?: "alert" | "primary" | "secondary" | "tertiary" | "muted" | "accent" | "brand" | "positive" | "warning" | "info" | "alert-secondary" | "brand-secondary" | "positive-secondary" | "warning-secondary" | "info-secondary" | "white" | "black" | "transparent" | "current" | "always/white" | "always/black" | "always/transparent" | "always/current" | "always/brand" | "always/accent" | "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | undefined;
|
|
173
|
+
borderRadius?: "none" | "xs" | "sm" | "md" | "lg" | "xl" | "full" | undefined;
|
|
174
|
+
borderTopStartRadius?: "none" | "xs" | "sm" | "md" | "lg" | "xl" | "full" | undefined;
|
|
175
|
+
borderTopEndRadius?: "none" | "xs" | "sm" | "md" | "lg" | "xl" | "full" | undefined;
|
|
176
|
+
borderBottomStartRadius?: "none" | "xs" | "sm" | "md" | "lg" | "xl" | "full" | undefined;
|
|
177
|
+
borderBottomEndRadius?: "none" | "xs" | "sm" | "md" | "lg" | "xl" | "full" | undefined;
|
|
178
|
+
borderWidth?: "none" | "thin" | "medium" | "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "thick" | undefined;
|
|
179
|
+
borderVerticalWidth?: "none" | "thin" | "medium" | "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "thick" | undefined;
|
|
180
|
+
borderHorizontalWidth?: "none" | "thin" | "medium" | "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "thick" | undefined;
|
|
181
|
+
borderStartWidth?: "none" | "thin" | "medium" | "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "thick" | undefined;
|
|
182
|
+
borderEndWidth?: "none" | "thin" | "medium" | "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "thick" | undefined;
|
|
183
|
+
borderTopWidth?: "none" | "thin" | "medium" | "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "thick" | undefined;
|
|
184
|
+
borderBottomWidth?: "none" | "thin" | "medium" | "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "thick" | undefined;
|
|
185
|
+
avatarSize?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
186
|
+
iconSize?: "xs" | "sm" | "md" | "lg" | undefined;
|
|
187
|
+
alignContent?: "center" | "flex-start" | "flex-end" | "stretch" | "space-between" | "space-around" | undefined;
|
|
188
|
+
alignItems?: "center" | "flex-start" | "flex-end" | "stretch" | "baseline" | undefined;
|
|
189
|
+
alignSelf?: "auto" | "center" | "flex-start" | "flex-end" | "stretch" | "baseline" | undefined;
|
|
190
|
+
flex?: "none" | "auto" | "1" | "initial" | undefined;
|
|
190
191
|
flexDirection?: "row" | "column" | "row-reverse" | "column-reverse" | undefined;
|
|
191
192
|
flexGrow?: "0" | "1" | "2" | "3" | undefined;
|
|
192
193
|
flexShrink?: "0" | "1" | undefined;
|
|
193
194
|
flexWrap?: "wrap" | "nowrap" | "wrap-reverse" | undefined;
|
|
194
|
-
justifyContent?: "
|
|
195
|
+
justifyContent?: "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
195
196
|
flexBasis?: "min-content" | undefined;
|
|
196
|
-
display?: "flex" | "none" | "block" | "inline-block" | "inline" | "inline-flex" | "
|
|
197
|
+
display?: "flex" | "none" | "grid" | "table" | "block" | "inline-block" | "inline" | "inline-flex" | "inline-table" | "table-caption" | "table-cell" | "table-column" | "table-column-group" | "table-footer-group" | "table-header-group" | "table-row-group" | "table-row" | "flow-root" | "contents" | undefined;
|
|
197
198
|
overflow?: "hidden" | "auto" | "clip" | "visible" | "scroll" | undefined;
|
|
198
199
|
overflowX?: "hidden" | "auto" | "clip" | "visible" | "scroll" | undefined;
|
|
199
200
|
overflowY?: "hidden" | "auto" | "clip" | "visible" | "scroll" | undefined;
|
|
200
|
-
position?: "
|
|
201
|
-
contentFit?: "none" | "
|
|
201
|
+
position?: "fixed" | "static" | "absolute" | "relative" | "sticky" | undefined;
|
|
202
|
+
contentFit?: "none" | "cover" | "contain" | "fill" | "scale-down" | undefined;
|
|
202
203
|
colorMode?: "light" | "dark" | undefined;
|
|
203
|
-
scaleMode?: "
|
|
204
|
+
scaleMode?: "small" | "medium" | "xSmall" | "large" | "xLarge" | "xxLarge" | "xxxLarge" | undefined;
|
|
204
205
|
width?: "full" | "fit" | "screen" | undefined;
|
|
205
206
|
height?: "full" | "fit" | "screen" | undefined;
|
|
206
|
-
dropShadow?: "
|
|
207
|
-
insetShadow?: "
|
|
208
|
-
nestedBorderRadiusSize?: "
|
|
209
|
-
nestedBorderRadiusWidth?: "
|
|
207
|
+
dropShadow?: "none" | "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | undefined;
|
|
208
|
+
insetShadow?: "none" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "xs-invert" | "sm-invert" | "md-invert" | "lg-invert" | "xl-invert" | "2xl-invert" | undefined;
|
|
209
|
+
nestedBorderRadiusSize?: "none" | "xs" | "sm" | "md" | "lg" | "xl" | "full" | undefined;
|
|
210
|
+
nestedBorderRadiusWidth?: "none" | "thin" | "medium" | "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "thick" | undefined;
|
|
210
211
|
nestedBorderRadiusSpacing?: "0" | "1" | "2" | "3" | "4" | "5" | "px" | "0.5" | "1.5" | "2.5" | "3.5" | "4.5" | "5.5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "14" | "16" | "20" | "24" | "28" | "32" | "36" | "40" | "44" | "48" | "52" | "56" | "60" | "64" | "72" | "80" | "96" | undefined;
|
|
211
212
|
nestedBorderRadius?: boolean | "first" | "last" | undefined;
|
|
212
213
|
} & {
|