@yahoo/uds 3.164.0 → 3.165.0
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/cli/commands/sync.cjs +8 -0
- package/dist/cli/commands/sync.js +8 -0
- package/dist/components/client/Button/Button.cjs +5 -6
- package/dist/components/client/Button/Button.js +5 -6
- package/dist/components/client/Button/ButtonBase.cjs +4 -0
- package/dist/components/client/Button/ButtonBase.d.cts +2 -1
- package/dist/components/client/Button/ButtonBase.d.ts +2 -1
- package/dist/components/client/Button/ButtonBase.js +4 -0
- package/dist/components/client/Button/UDSButtonConfigProvider.cjs +45 -0
- package/dist/components/client/Button/UDSButtonConfigProvider.d.cts +33 -0
- package/dist/components/client/Button/UDSButtonConfigProvider.d.ts +34 -0
- package/dist/components/client/Button/UDSButtonConfigProvider.js +42 -0
- package/dist/components/client/Button/buttonConstants.cjs +1 -1
- package/dist/components/client/Button/buttonConstants.d.cts +3 -3
- package/dist/components/client/Button/buttonConstants.d.ts +3 -3
- package/dist/components/client/Button/buttonConstants.js +1 -1
- package/dist/components/client/Button/index.cjs +3 -0
- package/dist/components/client/Button/index.d.cts +2 -1
- package/dist/components/client/Button/index.d.ts +2 -1
- package/dist/components/client/Button/index.js +2 -1
- package/dist/components/client/IconButton/IconButton.cjs +3 -4
- package/dist/components/client/IconButton/IconButton.js +3 -4
- package/dist/components/client/IconButton/IconButtonBase.cjs +3 -0
- package/dist/components/client/IconButton/IconButtonBase.d.cts +2 -0
- package/dist/components/client/IconButton/IconButtonBase.d.ts +2 -0
- package/dist/components/client/IconButton/IconButtonBase.js +3 -0
- package/dist/components/client/IconButton/UDSIconButtonConfigProvider.cjs +46 -0
- package/dist/components/client/IconButton/UDSIconButtonConfigProvider.d.cts +34 -0
- package/dist/components/client/IconButton/UDSIconButtonConfigProvider.d.ts +35 -0
- package/dist/components/client/IconButton/UDSIconButtonConfigProvider.js +43 -0
- package/dist/components/client/IconButton/index.cjs +3 -0
- package/dist/components/client/IconButton/index.d.cts +2 -1
- package/dist/components/client/IconButton/index.d.ts +2 -1
- package/dist/components/client/IconButton/index.js +2 -1
- package/dist/components/client/Menu/Menu.ItemCheckbox.d.cts +1 -1
- package/dist/components/client/Menu/Menu.ItemCheckbox.d.ts +1 -1
- package/dist/components/client/index.cjs +6 -0
- package/dist/components/client/index.d.cts +3 -1
- package/dist/components/client/index.d.ts +3 -1
- package/dist/components/client/index.js +3 -1
- package/dist/components/client/providers/UDSConfigProvider.cjs +18 -10
- package/dist/components/client/providers/UDSConfigProvider.d.cts +2 -0
- package/dist/components/client/providers/UDSConfigProvider.d.ts +2 -0
- package/dist/components/client/providers/UDSConfigProvider.js +18 -10
- package/dist/components/index.cjs +6 -0
- package/dist/components/index.d.cts +3 -1
- package/dist/components/index.d.ts +3 -1
- package/dist/components/index.js +3 -1
- package/dist/config/dist/index.cjs +51 -142
- package/dist/config/dist/index.js +51 -142
- package/dist/css/dist/css/utils.cjs +12 -0
- package/dist/css/dist/css/utils.js +12 -0
- package/dist/css/dist/packages/config/dist/index.cjs +51 -142
- package/dist/css/dist/packages/config/dist/index.js +51 -142
- package/dist/css/dist/runtimeConfig/hookMetadata.cjs +67 -0
- package/dist/css/dist/runtimeConfig/hookMetadata.js +67 -0
- package/dist/css-animation/Button/Button.cjs +5 -6
- package/dist/css-animation/Button/Button.js +5 -6
- package/dist/css-animation/IconButton/IconButton.cjs +3 -4
- package/dist/css-animation/IconButton/IconButton.js +3 -4
- package/dist/index.cjs +10 -0
- package/dist/index.d.cts +5 -1
- package/dist/index.d.ts +5 -1
- package/dist/index.js +5 -1
- package/dist/runtime/buttonConfig.cjs +17 -0
- package/dist/runtime/buttonConfig.d.cts +13 -0
- package/dist/runtime/buttonConfig.d.ts +13 -0
- package/dist/runtime/buttonConfig.js +16 -0
- package/dist/runtime/iconButtonConfig.cjs +18 -0
- package/dist/runtime/iconButtonConfig.d.cts +13 -0
- package/dist/runtime/iconButtonConfig.d.ts +13 -0
- package/dist/runtime/iconButtonConfig.js +17 -0
- package/dist/runtime/index.cjs +4 -0
- package/dist/runtime/index.d.cts +3 -1
- package/dist/runtime/index.d.ts +3 -1
- package/dist/runtime/index.js +3 -1
- package/dist/runtime/udsConfig.cjs +4 -0
- package/dist/runtime/udsConfig.d.cts +4 -0
- package/dist/runtime/udsConfig.d.ts +4 -0
- package/dist/runtime/udsConfig.js +4 -0
- package/dist/styles/styler.d.cts +10 -10
- package/dist/styles/styler.d.ts +10 -10
- package/dist/tailwind-internal/dist/packages/config/dist/index.cjs +51 -142
- package/dist/tailwind-internal/dist/packages/config/dist/index.js +51 -142
- package/dist/uds/generated/componentData.cjs +251 -223
- package/dist/uds/generated/componentData.js +251 -223
- package/dist/uds/generated/tailwindPurge.cjs +9 -1
- package/dist/uds/generated/tailwindPurge.js +9 -1
- package/generated/componentData.json +491 -455
- package/generated/tailwindPurge.ts +3 -3
- package/package.json +1 -1
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/*! © 2026 Yahoo, Inc. UDS v0.0.0-development */
|
|
2
|
+
//#region src/runtime/iconButtonConfig.ts
|
|
3
|
+
const iconButtonSizes = [
|
|
4
|
+
"xs",
|
|
5
|
+
"sm",
|
|
6
|
+
"md",
|
|
7
|
+
"lg",
|
|
8
|
+
"xl"
|
|
9
|
+
];
|
|
10
|
+
const configToIconButtonConfigContext = ({ iconButton }) => {
|
|
11
|
+
return {
|
|
12
|
+
defaultSize: iconButton.defaults.size,
|
|
13
|
+
iconSize: Object.fromEntries(iconButtonSizes.map((s) => [s, iconButton.variables[`size/${s}/icon`].size.rest.value]))
|
|
14
|
+
};
|
|
15
|
+
};
|
|
16
|
+
//#endregion
|
|
17
|
+
export { configToIconButtonConfigContext };
|
package/dist/runtime/index.cjs
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
3
|
const require_runtime_bottomSheetConfig = require("./bottomSheetConfig.cjs");
|
|
4
4
|
const require_runtime_breakpointsConfig = require("./breakpointsConfig.cjs");
|
|
5
|
+
const require_runtime_buttonConfig = require("./buttonConfig.cjs");
|
|
6
|
+
const require_runtime_iconButtonConfig = require("./iconButtonConfig.cjs");
|
|
5
7
|
const require_runtime_modalConfig = require("./modalConfig.cjs");
|
|
6
8
|
const require_runtime_popoverConfig = require("./popoverConfig.cjs");
|
|
7
9
|
const require_runtime_toastConfig = require("./toastConfig.cjs");
|
|
@@ -9,6 +11,8 @@ const require_runtime_tooltipConfig = require("./tooltipConfig.cjs");
|
|
|
9
11
|
const require_runtime_udsConfig = require("./udsConfig.cjs");
|
|
10
12
|
exports.configToBottomSheetConfigContext = require_runtime_bottomSheetConfig.configToBottomSheetConfigContext;
|
|
11
13
|
exports.configToBreakpointsConfigContext = require_runtime_breakpointsConfig.configToBreakpointsConfigContext;
|
|
14
|
+
exports.configToButtonConfigContext = require_runtime_buttonConfig.configToButtonConfigContext;
|
|
15
|
+
exports.configToIconButtonConfigContext = require_runtime_iconButtonConfig.configToIconButtonConfigContext;
|
|
12
16
|
exports.configToModalConfigContext = require_runtime_modalConfig.configToModalConfigContext;
|
|
13
17
|
exports.configToPopoverConfigContext = require_runtime_popoverConfig.configToPopoverConfigContext;
|
|
14
18
|
exports.configToToastConfigContext = require_runtime_toastConfig.configToToastConfigContext;
|
package/dist/runtime/index.d.cts
CHANGED
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
|
|
2
2
|
import { UDSBottomSheetConfigContextType, configToBottomSheetConfigContext } from "./bottomSheetConfig.cjs";
|
|
3
|
+
import { UDSButtonConfigContextType, configToButtonConfigContext } from "./buttonConfig.cjs";
|
|
4
|
+
import { UDSIconButtonConfigContextType, configToIconButtonConfigContext } from "./iconButtonConfig.cjs";
|
|
3
5
|
import { UDSModalConfigContextType, configToModalConfigContext } from "./modalConfig.cjs";
|
|
4
6
|
import { UDSPopoverConfigContextType, configToPopoverConfigContext } from "./popoverConfig.cjs";
|
|
5
7
|
import { UDSBreakpointsConfigContextType, configToBreakpointsConfigContext } from "./breakpointsConfig.cjs";
|
|
6
8
|
import { UDSToastConfigContextType, configToToastConfigContext } from "./toastConfig.cjs";
|
|
7
9
|
import { UDSTooltipConfigContextType, configToTooltipConfigContext } from "./tooltipConfig.cjs";
|
|
8
10
|
import { UDSConfigContextType, configToUDSConfigContext } from "./udsConfig.cjs";
|
|
9
|
-
export { UDSBottomSheetConfigContextType, UDSBreakpointsConfigContextType, UDSConfigContextType, UDSModalConfigContextType, UDSPopoverConfigContextType, UDSToastConfigContextType, UDSTooltipConfigContextType, configToBottomSheetConfigContext, configToBreakpointsConfigContext, configToModalConfigContext, configToPopoverConfigContext, configToToastConfigContext, configToTooltipConfigContext, configToUDSConfigContext };
|
|
11
|
+
export { UDSBottomSheetConfigContextType, UDSBreakpointsConfigContextType, UDSButtonConfigContextType, UDSConfigContextType, UDSIconButtonConfigContextType, UDSModalConfigContextType, UDSPopoverConfigContextType, UDSToastConfigContextType, UDSTooltipConfigContextType, configToBottomSheetConfigContext, configToBreakpointsConfigContext, configToButtonConfigContext, configToIconButtonConfigContext, configToModalConfigContext, configToPopoverConfigContext, configToToastConfigContext, configToTooltipConfigContext, configToUDSConfigContext };
|
package/dist/runtime/index.d.ts
CHANGED
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
|
|
2
2
|
import { UDSBottomSheetConfigContextType, configToBottomSheetConfigContext } from "./bottomSheetConfig.js";
|
|
3
|
+
import { UDSButtonConfigContextType, configToButtonConfigContext } from "./buttonConfig.js";
|
|
4
|
+
import { UDSIconButtonConfigContextType, configToIconButtonConfigContext } from "./iconButtonConfig.js";
|
|
3
5
|
import { UDSModalConfigContextType, configToModalConfigContext } from "./modalConfig.js";
|
|
4
6
|
import { UDSPopoverConfigContextType, configToPopoverConfigContext } from "./popoverConfig.js";
|
|
5
7
|
import { UDSBreakpointsConfigContextType, configToBreakpointsConfigContext } from "./breakpointsConfig.js";
|
|
6
8
|
import { UDSToastConfigContextType, configToToastConfigContext } from "./toastConfig.js";
|
|
7
9
|
import { UDSTooltipConfigContextType, configToTooltipConfigContext } from "./tooltipConfig.js";
|
|
8
10
|
import { UDSConfigContextType, configToUDSConfigContext } from "./udsConfig.js";
|
|
9
|
-
export { UDSBottomSheetConfigContextType, UDSBreakpointsConfigContextType, UDSConfigContextType, UDSModalConfigContextType, UDSPopoverConfigContextType, UDSToastConfigContextType, UDSTooltipConfigContextType, configToBottomSheetConfigContext, configToBreakpointsConfigContext, configToModalConfigContext, configToPopoverConfigContext, configToToastConfigContext, configToTooltipConfigContext, configToUDSConfigContext };
|
|
11
|
+
export { UDSBottomSheetConfigContextType, UDSBreakpointsConfigContextType, UDSButtonConfigContextType, UDSConfigContextType, UDSIconButtonConfigContextType, UDSModalConfigContextType, UDSPopoverConfigContextType, UDSToastConfigContextType, UDSTooltipConfigContextType, configToBottomSheetConfigContext, configToBreakpointsConfigContext, configToButtonConfigContext, configToIconButtonConfigContext, configToModalConfigContext, configToPopoverConfigContext, configToToastConfigContext, configToTooltipConfigContext, configToUDSConfigContext };
|
package/dist/runtime/index.js
CHANGED
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
/*! © 2026 Yahoo, Inc. UDS v0.0.0-development */
|
|
2
2
|
import { configToBottomSheetConfigContext } from "./bottomSheetConfig.js";
|
|
3
3
|
import { configToBreakpointsConfigContext } from "./breakpointsConfig.js";
|
|
4
|
+
import { configToButtonConfigContext } from "./buttonConfig.js";
|
|
5
|
+
import { configToIconButtonConfigContext } from "./iconButtonConfig.js";
|
|
4
6
|
import { configToModalConfigContext } from "./modalConfig.js";
|
|
5
7
|
import { configToPopoverConfigContext } from "./popoverConfig.js";
|
|
6
8
|
import { configToToastConfigContext } from "./toastConfig.js";
|
|
7
9
|
import { configToTooltipConfigContext } from "./tooltipConfig.js";
|
|
8
10
|
import { configToUDSConfigContext } from "./udsConfig.js";
|
|
9
|
-
export { configToBottomSheetConfigContext, configToBreakpointsConfigContext, configToModalConfigContext, configToPopoverConfigContext, configToToastConfigContext, configToTooltipConfigContext, configToUDSConfigContext };
|
|
11
|
+
export { configToBottomSheetConfigContext, configToBreakpointsConfigContext, configToButtonConfigContext, configToIconButtonConfigContext, configToModalConfigContext, configToPopoverConfigContext, configToToastConfigContext, configToTooltipConfigContext, configToUDSConfigContext };
|
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
3
|
const require_runtime_bottomSheetConfig = require("./bottomSheetConfig.cjs");
|
|
4
4
|
const require_runtime_breakpointsConfig = require("./breakpointsConfig.cjs");
|
|
5
|
+
const require_runtime_buttonConfig = require("./buttonConfig.cjs");
|
|
6
|
+
const require_runtime_iconButtonConfig = require("./iconButtonConfig.cjs");
|
|
5
7
|
const require_runtime_modalConfig = require("./modalConfig.cjs");
|
|
6
8
|
const require_runtime_popoverConfig = require("./popoverConfig.cjs");
|
|
7
9
|
const require_runtime_toastConfig = require("./toastConfig.cjs");
|
|
@@ -11,6 +13,8 @@ const configToUDSConfigContext = (config) => {
|
|
|
11
13
|
return {
|
|
12
14
|
bottomSheet: require_runtime_bottomSheetConfig.configToBottomSheetConfigContext(config),
|
|
13
15
|
breakpoints: require_runtime_breakpointsConfig.configToBreakpointsConfigContext(config),
|
|
16
|
+
button: require_runtime_buttonConfig.configToButtonConfigContext(config),
|
|
17
|
+
iconButton: require_runtime_iconButtonConfig.configToIconButtonConfigContext(config),
|
|
14
18
|
modal: require_runtime_modalConfig.configToModalConfigContext(config),
|
|
15
19
|
popover: require_runtime_popoverConfig.configToPopoverConfigContext(config),
|
|
16
20
|
toast: require_runtime_toastConfig.configToToastConfigContext(config),
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
|
|
2
2
|
import { UniversalTokensConfig } from "../config/dist/index.cjs";
|
|
3
3
|
import { UDSBottomSheetConfigContextType } from "./bottomSheetConfig.cjs";
|
|
4
|
+
import { UDSButtonConfigContextType } from "./buttonConfig.cjs";
|
|
5
|
+
import { UDSIconButtonConfigContextType } from "./iconButtonConfig.cjs";
|
|
4
6
|
import { UDSModalConfigContextType } from "./modalConfig.cjs";
|
|
5
7
|
import { UDSPopoverConfigContextType } from "./popoverConfig.cjs";
|
|
6
8
|
import { UDSBreakpointsConfigContextType } from "./breakpointsConfig.cjs";
|
|
@@ -11,6 +13,8 @@ import { UDSTooltipConfigContextType } from "./tooltipConfig.cjs";
|
|
|
11
13
|
interface UDSConfigContextType {
|
|
12
14
|
bottomSheet: UDSBottomSheetConfigContextType;
|
|
13
15
|
breakpoints: UDSBreakpointsConfigContextType;
|
|
16
|
+
button: UDSButtonConfigContextType;
|
|
17
|
+
iconButton: UDSIconButtonConfigContextType;
|
|
14
18
|
toast: UDSToastConfigContextType;
|
|
15
19
|
modal: UDSModalConfigContextType;
|
|
16
20
|
tooltip: UDSTooltipConfigContextType;
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
|
|
2
2
|
import { UniversalTokensConfig } from "../config/dist/index.js";
|
|
3
3
|
import { UDSBottomSheetConfigContextType } from "./bottomSheetConfig.js";
|
|
4
|
+
import { UDSButtonConfigContextType } from "./buttonConfig.js";
|
|
5
|
+
import { UDSIconButtonConfigContextType } from "./iconButtonConfig.js";
|
|
4
6
|
import { UDSModalConfigContextType } from "./modalConfig.js";
|
|
5
7
|
import { UDSPopoverConfigContextType } from "./popoverConfig.js";
|
|
6
8
|
import { UDSBreakpointsConfigContextType } from "./breakpointsConfig.js";
|
|
@@ -11,6 +13,8 @@ import { UDSTooltipConfigContextType } from "./tooltipConfig.js";
|
|
|
11
13
|
interface UDSConfigContextType {
|
|
12
14
|
bottomSheet: UDSBottomSheetConfigContextType;
|
|
13
15
|
breakpoints: UDSBreakpointsConfigContextType;
|
|
16
|
+
button: UDSButtonConfigContextType;
|
|
17
|
+
iconButton: UDSIconButtonConfigContextType;
|
|
14
18
|
toast: UDSToastConfigContextType;
|
|
15
19
|
modal: UDSModalConfigContextType;
|
|
16
20
|
tooltip: UDSTooltipConfigContextType;
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
/*! © 2026 Yahoo, Inc. UDS v0.0.0-development */
|
|
2
2
|
import { configToBottomSheetConfigContext } from "./bottomSheetConfig.js";
|
|
3
3
|
import { configToBreakpointsConfigContext } from "./breakpointsConfig.js";
|
|
4
|
+
import { configToButtonConfigContext } from "./buttonConfig.js";
|
|
5
|
+
import { configToIconButtonConfigContext } from "./iconButtonConfig.js";
|
|
4
6
|
import { configToModalConfigContext } from "./modalConfig.js";
|
|
5
7
|
import { configToPopoverConfigContext } from "./popoverConfig.js";
|
|
6
8
|
import { configToToastConfigContext } from "./toastConfig.js";
|
|
@@ -10,6 +12,8 @@ const configToUDSConfigContext = (config) => {
|
|
|
10
12
|
return {
|
|
11
13
|
bottomSheet: configToBottomSheetConfigContext(config),
|
|
12
14
|
breakpoints: configToBreakpointsConfigContext(config),
|
|
15
|
+
button: configToButtonConfigContext(config),
|
|
16
|
+
iconButton: configToIconButtonConfigContext(config),
|
|
13
17
|
modal: configToModalConfigContext(config),
|
|
14
18
|
popover: configToPopoverConfigContext(config),
|
|
15
19
|
toast: configToToastConfigContext(config),
|
package/dist/styles/styler.d.cts
CHANGED
|
@@ -218,7 +218,7 @@ declare const getStylesInternal: (props?: ({
|
|
|
218
218
|
placeholderColor?: "primary" | "secondary" | "accent" | "brand" | "alert" | "positive" | "warning" | "info" | "brand-secondary" | "alert-secondary" | "positive-secondary" | "warning-secondary" | "info-secondary" | "white" | "black" | "transparent" | "current" | "always/white" | "always/black" | "always/transparent" | "always/current" | "always/brand" | "always/accent" | "tertiary" | "muted" | "on-color" | undefined;
|
|
219
219
|
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;
|
|
220
220
|
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;
|
|
221
|
-
fontWeight?: "
|
|
221
|
+
fontWeight?: "medium" | "black" | "thin" | "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" | "bold" | "extralight" | "light" | "regular" | "semibold" | "extrabold" | undefined;
|
|
222
222
|
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;
|
|
223
223
|
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;
|
|
224
224
|
textAlign?: "center" | "justify" | "start" | "end" | undefined;
|
|
@@ -250,13 +250,13 @@ declare const getStylesInternal: (props?: ({
|
|
|
250
250
|
borderTopEndRadius?: "none" | "xs" | "sm" | "md" | "lg" | "xl" | "full" | undefined;
|
|
251
251
|
borderBottomStartRadius?: "none" | "xs" | "sm" | "md" | "lg" | "xl" | "full" | undefined;
|
|
252
252
|
borderBottomEndRadius?: "none" | "xs" | "sm" | "md" | "lg" | "xl" | "full" | undefined;
|
|
253
|
-
borderWidth?: "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "none" | "thin" | "
|
|
254
|
-
borderVerticalWidth?: "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "none" | "thin" | "
|
|
255
|
-
borderHorizontalWidth?: "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "none" | "thin" | "
|
|
256
|
-
borderStartWidth?: "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "none" | "thin" | "
|
|
257
|
-
borderEndWidth?: "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "none" | "thin" | "
|
|
258
|
-
borderTopWidth?: "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "none" | "thin" | "
|
|
259
|
-
borderBottomWidth?: "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "none" | "thin" | "
|
|
253
|
+
borderWidth?: "medium" | "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "none" | "thin" | "thick" | undefined;
|
|
254
|
+
borderVerticalWidth?: "medium" | "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "none" | "thin" | "thick" | undefined;
|
|
255
|
+
borderHorizontalWidth?: "medium" | "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "none" | "thin" | "thick" | undefined;
|
|
256
|
+
borderStartWidth?: "medium" | "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "none" | "thin" | "thick" | undefined;
|
|
257
|
+
borderEndWidth?: "medium" | "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "none" | "thin" | "thick" | undefined;
|
|
258
|
+
borderTopWidth?: "medium" | "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "none" | "thin" | "thick" | undefined;
|
|
259
|
+
borderBottomWidth?: "medium" | "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "none" | "thin" | "thick" | undefined;
|
|
260
260
|
avatarSize?: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "2xs" | "3xl" | undefined;
|
|
261
261
|
iconSize?: "xs" | "sm" | "md" | "lg" | undefined;
|
|
262
262
|
alignContent?: "center" | "flex-start" | "flex-end" | "stretch" | "space-between" | "space-around" | undefined;
|
|
@@ -276,13 +276,13 @@ declare const getStylesInternal: (props?: ({
|
|
|
276
276
|
position?: "static" | "fixed" | "absolute" | "relative" | "sticky" | undefined;
|
|
277
277
|
contentFit?: "none" | "fill" | "cover" | "contain" | "scale-down" | undefined;
|
|
278
278
|
colorMode?: "light" | "dark" | undefined;
|
|
279
|
-
scaleMode?: "
|
|
279
|
+
scaleMode?: "xSmall" | "small" | "medium" | "large" | "xLarge" | "xxLarge" | "xxxLarge" | undefined;
|
|
280
280
|
width?: "full" | "fit" | "screen" | undefined;
|
|
281
281
|
height?: "full" | "fit" | "screen" | undefined;
|
|
282
282
|
dropShadow?: "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "none" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | undefined;
|
|
283
283
|
insetShadow?: "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "none" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "xs-invert" | "sm-invert" | "md-invert" | "lg-invert" | "xl-invert" | "2xl-invert" | undefined;
|
|
284
284
|
nestedBorderRadiusSize?: "none" | "xs" | "sm" | "md" | "lg" | "xl" | "full" | undefined;
|
|
285
|
-
nestedBorderRadiusWidth?: "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "none" | "thin" | "
|
|
285
|
+
nestedBorderRadiusWidth?: "medium" | "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "none" | "thin" | "thick" | undefined;
|
|
286
286
|
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;
|
|
287
287
|
nestedBorderRadius?: boolean | "first" | "last" | undefined;
|
|
288
288
|
} & {
|
package/dist/styles/styler.d.ts
CHANGED
|
@@ -218,7 +218,7 @@ declare const getStylesInternal: (props?: ({
|
|
|
218
218
|
placeholderColor?: "primary" | "secondary" | "accent" | "brand" | "alert" | "positive" | "warning" | "info" | "brand-secondary" | "alert-secondary" | "positive-secondary" | "warning-secondary" | "info-secondary" | "white" | "black" | "transparent" | "current" | "always/white" | "always/black" | "always/transparent" | "always/current" | "always/brand" | "always/accent" | "tertiary" | "muted" | "on-color" | undefined;
|
|
219
219
|
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;
|
|
220
220
|
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;
|
|
221
|
-
fontWeight?: "
|
|
221
|
+
fontWeight?: "medium" | "black" | "thin" | "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" | "bold" | "extralight" | "light" | "regular" | "semibold" | "extrabold" | undefined;
|
|
222
222
|
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;
|
|
223
223
|
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;
|
|
224
224
|
textAlign?: "center" | "justify" | "start" | "end" | undefined;
|
|
@@ -250,13 +250,13 @@ declare const getStylesInternal: (props?: ({
|
|
|
250
250
|
borderTopEndRadius?: "none" | "xs" | "sm" | "md" | "lg" | "xl" | "full" | undefined;
|
|
251
251
|
borderBottomStartRadius?: "none" | "xs" | "sm" | "md" | "lg" | "xl" | "full" | undefined;
|
|
252
252
|
borderBottomEndRadius?: "none" | "xs" | "sm" | "md" | "lg" | "xl" | "full" | undefined;
|
|
253
|
-
borderWidth?: "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "none" | "thin" | "
|
|
254
|
-
borderVerticalWidth?: "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "none" | "thin" | "
|
|
255
|
-
borderHorizontalWidth?: "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "none" | "thin" | "
|
|
256
|
-
borderStartWidth?: "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "none" | "thin" | "
|
|
257
|
-
borderEndWidth?: "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "none" | "thin" | "
|
|
258
|
-
borderTopWidth?: "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "none" | "thin" | "
|
|
259
|
-
borderBottomWidth?: "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "none" | "thin" | "
|
|
253
|
+
borderWidth?: "medium" | "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "none" | "thin" | "thick" | undefined;
|
|
254
|
+
borderVerticalWidth?: "medium" | "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "none" | "thin" | "thick" | undefined;
|
|
255
|
+
borderHorizontalWidth?: "medium" | "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "none" | "thin" | "thick" | undefined;
|
|
256
|
+
borderStartWidth?: "medium" | "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "none" | "thin" | "thick" | undefined;
|
|
257
|
+
borderEndWidth?: "medium" | "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "none" | "thin" | "thick" | undefined;
|
|
258
|
+
borderTopWidth?: "medium" | "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "none" | "thin" | "thick" | undefined;
|
|
259
|
+
borderBottomWidth?: "medium" | "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "none" | "thin" | "thick" | undefined;
|
|
260
260
|
avatarSize?: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "2xs" | "3xl" | undefined;
|
|
261
261
|
iconSize?: "xs" | "sm" | "md" | "lg" | undefined;
|
|
262
262
|
alignContent?: "center" | "flex-start" | "flex-end" | "stretch" | "space-between" | "space-around" | undefined;
|
|
@@ -276,13 +276,13 @@ declare const getStylesInternal: (props?: ({
|
|
|
276
276
|
position?: "static" | "fixed" | "absolute" | "relative" | "sticky" | undefined;
|
|
277
277
|
contentFit?: "none" | "fill" | "cover" | "contain" | "scale-down" | undefined;
|
|
278
278
|
colorMode?: "light" | "dark" | undefined;
|
|
279
|
-
scaleMode?: "
|
|
279
|
+
scaleMode?: "xSmall" | "small" | "medium" | "large" | "xLarge" | "xxLarge" | "xxxLarge" | undefined;
|
|
280
280
|
width?: "full" | "fit" | "screen" | undefined;
|
|
281
281
|
height?: "full" | "fit" | "screen" | undefined;
|
|
282
282
|
dropShadow?: "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "none" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | undefined;
|
|
283
283
|
insetShadow?: "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "none" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "xs-invert" | "sm-invert" | "md-invert" | "lg-invert" | "xl-invert" | "2xl-invert" | undefined;
|
|
284
284
|
nestedBorderRadiusSize?: "none" | "xs" | "sm" | "md" | "lg" | "xl" | "full" | undefined;
|
|
285
|
-
nestedBorderRadiusWidth?: "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "none" | "thin" | "
|
|
285
|
+
nestedBorderRadiusWidth?: "medium" | "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "none" | "thin" | "thick" | undefined;
|
|
286
286
|
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;
|
|
287
287
|
nestedBorderRadius?: boolean | "first" | "last" | undefined;
|
|
288
288
|
} & {
|
|
@@ -14798,9 +14798,9 @@ const defaultTokensConfig = {
|
|
|
14798
14798
|
"serif-alt": "yahoo-serif-text"
|
|
14799
14799
|
},
|
|
14800
14800
|
globalDefaults: {
|
|
14801
|
+
applyDefaultBreakpointInCode: false,
|
|
14801
14802
|
breakpoint: "lg",
|
|
14802
|
-
enableResponsiveType: true
|
|
14803
|
-
applyDefaultBreakpointInCode: false
|
|
14803
|
+
enableResponsiveType: true
|
|
14804
14804
|
},
|
|
14805
14805
|
iconButton: {
|
|
14806
14806
|
defaults: {
|
|
@@ -14810,12 +14810,12 @@ const defaultTokensConfig = {
|
|
|
14810
14810
|
variables: {
|
|
14811
14811
|
"size/lg/icon": { size: { rest: {
|
|
14812
14812
|
type: "iconSizes",
|
|
14813
|
-
value: "
|
|
14813
|
+
value: "md",
|
|
14814
14814
|
valueType: "alias"
|
|
14815
14815
|
} } },
|
|
14816
14816
|
"size/lg/root": { spacing: { rest: {
|
|
14817
14817
|
type: "spacingAliases",
|
|
14818
|
-
value: "
|
|
14818
|
+
value: "3.5",
|
|
14819
14819
|
valueType: "alias"
|
|
14820
14820
|
} } },
|
|
14821
14821
|
"size/md/icon": { size: { rest: {
|
|
@@ -14855,7 +14855,7 @@ const defaultTokensConfig = {
|
|
|
14855
14855
|
} } },
|
|
14856
14856
|
"size/xs/root": { spacing: { rest: {
|
|
14857
14857
|
type: "spacingAliases",
|
|
14858
|
-
value: "
|
|
14858
|
+
value: "2",
|
|
14859
14859
|
valueType: "alias"
|
|
14860
14860
|
} } }
|
|
14861
14861
|
}
|
|
@@ -16522,16 +16522,28 @@ const defaultTokensConfig = {
|
|
|
16522
16522
|
valueType: "alias"
|
|
16523
16523
|
} } },
|
|
16524
16524
|
"size/default/root": {},
|
|
16525
|
-
"size/default/text": { textVariant: { rest: {
|
|
16526
|
-
type: "textVariants",
|
|
16527
|
-
value: "ui1",
|
|
16528
|
-
valueType: "alias"
|
|
16529
|
-
} } },
|
|
16530
16525
|
"size/default/startIcon": { size: { rest: {
|
|
16531
16526
|
type: "iconSizes",
|
|
16532
16527
|
value: "sm",
|
|
16533
16528
|
valueType: "alias"
|
|
16534
|
-
} } }
|
|
16529
|
+
} } },
|
|
16530
|
+
"size/default/text": { textVariant: {
|
|
16531
|
+
focused: {
|
|
16532
|
+
type: "textVariants",
|
|
16533
|
+
value: "ui1",
|
|
16534
|
+
valueType: "alias"
|
|
16535
|
+
},
|
|
16536
|
+
hover: {
|
|
16537
|
+
type: "textVariants",
|
|
16538
|
+
value: "ui1",
|
|
16539
|
+
valueType: "alias"
|
|
16540
|
+
},
|
|
16541
|
+
rest: {
|
|
16542
|
+
type: "textVariants",
|
|
16543
|
+
value: "ui1",
|
|
16544
|
+
valueType: "alias"
|
|
16545
|
+
}
|
|
16546
|
+
} }
|
|
16535
16547
|
}
|
|
16536
16548
|
},
|
|
16537
16549
|
modal: {
|
|
@@ -18654,110 +18666,7 @@ const defaultTokensConfig = {
|
|
|
18654
18666
|
size: "md",
|
|
18655
18667
|
variant: "default"
|
|
18656
18668
|
},
|
|
18657
|
-
variables: {
|
|
18658
|
-
"variant/default/endIcon": { color: {
|
|
18659
|
-
"focus-within": {
|
|
18660
|
-
isEnabled: true,
|
|
18661
|
-
type: "foregroundPaletteColors",
|
|
18662
|
-
value: "primary",
|
|
18663
|
-
valueType: "alias"
|
|
18664
|
-
},
|
|
18665
|
-
hover: {
|
|
18666
|
-
isEnabled: true,
|
|
18667
|
-
type: "foregroundPaletteColors",
|
|
18668
|
-
value: "primary",
|
|
18669
|
-
valueType: "alias"
|
|
18670
|
-
},
|
|
18671
|
-
invalid: {
|
|
18672
|
-
isEnabled: true,
|
|
18673
|
-
type: "foregroundPaletteColors",
|
|
18674
|
-
value: "alert",
|
|
18675
|
-
valueType: "alias"
|
|
18676
|
-
},
|
|
18677
|
-
"invalid&hover": {
|
|
18678
|
-
isEnabled: true,
|
|
18679
|
-
type: "foregroundPaletteColors",
|
|
18680
|
-
value: "alert",
|
|
18681
|
-
valueType: "alias"
|
|
18682
|
-
},
|
|
18683
|
-
"invalid&pressed": {
|
|
18684
|
-
isEnabled: true,
|
|
18685
|
-
type: "foregroundPaletteColors",
|
|
18686
|
-
value: "alert",
|
|
18687
|
-
valueType: "alias"
|
|
18688
|
-
},
|
|
18689
|
-
pressed: {
|
|
18690
|
-
type: "foregroundPaletteColors",
|
|
18691
|
-
value: "muted",
|
|
18692
|
-
valueType: "alias"
|
|
18693
|
-
},
|
|
18694
|
-
readonly: {
|
|
18695
|
-
type: "foregroundPaletteColors",
|
|
18696
|
-
value: "muted",
|
|
18697
|
-
valueType: "alias"
|
|
18698
|
-
},
|
|
18699
|
-
rest: {
|
|
18700
|
-
type: "foregroundPaletteColors",
|
|
18701
|
-
value: "muted",
|
|
18702
|
-
valueType: "alias"
|
|
18703
|
-
}
|
|
18704
|
-
} },
|
|
18705
|
-
"variant/default/root": {},
|
|
18706
|
-
"variant/default/startIcon": { color: {
|
|
18707
|
-
"focus-within": {
|
|
18708
|
-
isEnabled: true,
|
|
18709
|
-
type: "foregroundPaletteColors",
|
|
18710
|
-
value: "primary",
|
|
18711
|
-
valueType: "alias"
|
|
18712
|
-
},
|
|
18713
|
-
hover: {
|
|
18714
|
-
isEnabled: true,
|
|
18715
|
-
type: "foregroundPaletteColors",
|
|
18716
|
-
value: "primary",
|
|
18717
|
-
valueType: "alias"
|
|
18718
|
-
},
|
|
18719
|
-
invalid: {
|
|
18720
|
-
isEnabled: true,
|
|
18721
|
-
type: "foregroundPaletteColors",
|
|
18722
|
-
value: "alert",
|
|
18723
|
-
valueType: "alias"
|
|
18724
|
-
},
|
|
18725
|
-
"invalid&hover": {
|
|
18726
|
-
isEnabled: true,
|
|
18727
|
-
type: "foregroundPaletteColors",
|
|
18728
|
-
value: "alert",
|
|
18729
|
-
valueType: "alias"
|
|
18730
|
-
},
|
|
18731
|
-
"invalid&pressed": {
|
|
18732
|
-
isEnabled: true,
|
|
18733
|
-
type: "foregroundPaletteColors",
|
|
18734
|
-
value: "alert",
|
|
18735
|
-
valueType: "alias"
|
|
18736
|
-
},
|
|
18737
|
-
pressed: {
|
|
18738
|
-
isEnabled: true,
|
|
18739
|
-
type: "foregroundPaletteColors",
|
|
18740
|
-
value: "primary",
|
|
18741
|
-
valueType: "alias"
|
|
18742
|
-
},
|
|
18743
|
-
readonly: {
|
|
18744
|
-
type: "foregroundPaletteColors",
|
|
18745
|
-
value: "muted",
|
|
18746
|
-
valueType: "alias"
|
|
18747
|
-
},
|
|
18748
|
-
rest: {
|
|
18749
|
-
type: "foregroundPaletteColors",
|
|
18750
|
-
value: "muted",
|
|
18751
|
-
valueType: "alias"
|
|
18752
|
-
}
|
|
18753
|
-
} },
|
|
18754
|
-
"variant/default/value/empty/endIcon": { color: { pressed: {
|
|
18755
|
-
isEnabled: true,
|
|
18756
|
-
type: "foregroundPaletteColors",
|
|
18757
|
-
value: "primary",
|
|
18758
|
-
valueType: "alias"
|
|
18759
|
-
} } }
|
|
18760
|
-
}
|
|
18669
|
+
variables: { "variant/default/root": {} }
|
|
18761
18670
|
},
|
|
18762
18671
|
selectContent: {
|
|
18763
18672
|
defaults: {
|
|
@@ -18842,51 +18751,51 @@ const defaultTokensConfig = {
|
|
|
18842
18751
|
valueType: "alias"
|
|
18843
18752
|
} }
|
|
18844
18753
|
},
|
|
18845
|
-
"item/variant/default/active/off/
|
|
18754
|
+
"item/variant/default/active/off/icon": { color: {
|
|
18846
18755
|
focused: {
|
|
18847
|
-
type: "
|
|
18848
|
-
value: "
|
|
18756
|
+
type: "foregroundPaletteColors",
|
|
18757
|
+
value: "brand",
|
|
18849
18758
|
valueType: "alias"
|
|
18850
18759
|
},
|
|
18851
18760
|
hover: {
|
|
18852
|
-
type: "
|
|
18853
|
-
value: "
|
|
18761
|
+
type: "foregroundPaletteColors",
|
|
18762
|
+
value: "brand",
|
|
18854
18763
|
valueType: "alias"
|
|
18855
18764
|
},
|
|
18856
18765
|
pressed: {
|
|
18857
|
-
type: "
|
|
18858
|
-
value: "
|
|
18766
|
+
type: "foregroundPaletteColors",
|
|
18767
|
+
value: "brand",
|
|
18859
18768
|
valueType: "alias"
|
|
18860
18769
|
},
|
|
18861
18770
|
rest: {
|
|
18862
|
-
type: "
|
|
18863
|
-
value: "
|
|
18771
|
+
type: "foregroundPaletteColors",
|
|
18772
|
+
value: "secondary",
|
|
18864
18773
|
valueType: "alias"
|
|
18865
18774
|
}
|
|
18866
18775
|
} },
|
|
18867
|
-
"item/variant/default/active/off/
|
|
18776
|
+
"item/variant/default/active/off/root": { backgroundColor: {
|
|
18868
18777
|
focused: {
|
|
18869
|
-
type: "
|
|
18870
|
-
value: "
|
|
18778
|
+
type: "backgroundPaletteColors",
|
|
18779
|
+
value: "secondary",
|
|
18871
18780
|
valueType: "alias"
|
|
18872
18781
|
},
|
|
18873
18782
|
hover: {
|
|
18874
|
-
type: "
|
|
18875
|
-
value: "
|
|
18783
|
+
type: "backgroundPaletteColors",
|
|
18784
|
+
value: "secondary",
|
|
18876
18785
|
valueType: "alias"
|
|
18877
18786
|
},
|
|
18878
18787
|
pressed: {
|
|
18879
|
-
type: "
|
|
18880
|
-
value: "
|
|
18788
|
+
type: "backgroundPaletteColors",
|
|
18789
|
+
value: "secondary",
|
|
18881
18790
|
valueType: "alias"
|
|
18882
18791
|
},
|
|
18883
18792
|
rest: {
|
|
18884
|
-
type: "
|
|
18885
|
-
value: "
|
|
18793
|
+
type: "backgroundPaletteColors",
|
|
18794
|
+
value: "primary",
|
|
18886
18795
|
valueType: "alias"
|
|
18887
18796
|
}
|
|
18888
18797
|
} },
|
|
18889
|
-
"item/variant/default/active/off/
|
|
18798
|
+
"item/variant/default/active/off/text": { color: {
|
|
18890
18799
|
focused: {
|
|
18891
18800
|
type: "foregroundPaletteColors",
|
|
18892
18801
|
value: "brand",
|
|
@@ -18974,20 +18883,20 @@ const defaultTokensConfig = {
|
|
|
18974
18883
|
valueType: "alias"
|
|
18975
18884
|
}
|
|
18976
18885
|
} },
|
|
18977
|
-
"size/default/
|
|
18978
|
-
|
|
18979
|
-
|
|
18980
|
-
value: "ui1",
|
|
18886
|
+
"size/default/endIcon": { size: { rest: {
|
|
18887
|
+
type: "iconSizes",
|
|
18888
|
+
value: "sm",
|
|
18981
18889
|
valueType: "alias"
|
|
18982
18890
|
} } },
|
|
18891
|
+
"size/default/root": {},
|
|
18983
18892
|
"size/default/startIcon": { size: { rest: {
|
|
18984
18893
|
type: "iconSizes",
|
|
18985
18894
|
value: "sm",
|
|
18986
18895
|
valueType: "alias"
|
|
18987
18896
|
} } },
|
|
18988
|
-
"size/default/
|
|
18989
|
-
type: "
|
|
18990
|
-
value: "
|
|
18897
|
+
"size/default/text": { textVariant: { rest: {
|
|
18898
|
+
type: "textVariants",
|
|
18899
|
+
value: "ui1",
|
|
18991
18900
|
valueType: "alias"
|
|
18992
18901
|
} } }
|
|
18993
18902
|
}
|
|
@@ -29210,7 +29119,7 @@ const defaultTokensConfig = {
|
|
|
29210
29119
|
}
|
|
29211
29120
|
}
|
|
29212
29121
|
},
|
|
29213
|
-
version: "v0.
|
|
29122
|
+
version: "v0.101.0",
|
|
29214
29123
|
version: "v0.101.0"
|
|
29215
29124
|
};
|
|
29216
29125
|
//#endregion
|