@yahoo/uds 3.113.0 → 3.114.0-beta.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/dist/automated-config/dist/mapTextVariantFixtureToValue.cjs +12 -1
- package/dist/automated-config/dist/mapTextVariantFixtureToValue.js +12 -1
- package/dist/automated-config/dist/properties.cjs +1 -1
- package/dist/automated-config/dist/properties.js +1 -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/cli/commands/sync.cjs +1 -3
- package/dist/cli/commands/sync.d.cts +1 -1
- package/dist/cli/commands/sync.d.ts +1 -1
- package/dist/cli/commands/sync.js +1 -3
- package/dist/cli/commands/version.cjs +0 -2
- package/dist/cli/commands/version.d.cts +1 -1
- package/dist/cli/commands/version.d.ts +1 -1
- package/dist/cli/commands/version.js +0 -2
- package/dist/cli/dist/cli.cjs +1 -1
- package/dist/cli/dist/cli.js +1 -1
- package/dist/cli/dist/commands/editor-rules.cjs +2 -2
- package/dist/cli/dist/commands/editor-rules.js +2 -2
- package/dist/cli/dist/lib/logger.cjs +66 -0
- package/dist/cli/dist/lib/logger.js +66 -0
- package/dist/cli/dist/utils/rules/config.cjs +1 -1
- package/dist/cli/dist/utils/rules/config.js +1 -1
- package/dist/cli/runner.cjs +11 -2
- package/dist/cli/runner.js +11 -2
- package/dist/components/client/Menu/Menu.ItemCheckbox.d.cts +1 -1
- package/dist/components/client/Menu/Menu.ItemCheckbox.d.ts +1 -1
- package/dist/index.cjs +2 -0
- package/dist/index.d.cts +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +2 -1
- package/dist/styles/styler.d.cts +42 -42
- package/dist/styles/styler.d.ts +42 -42
- package/dist/styles/variants.cjs +278 -278
- package/dist/styles/variants.js +278 -278
- package/dist/tailwind/dist/commands/css.cjs +79 -0
- package/dist/tailwind/dist/commands/css.d.ts +3 -0
- package/dist/tailwind/dist/commands/css.helpers.cjs +32 -0
- package/dist/tailwind/dist/commands/css.helpers.js +28 -0
- package/dist/tailwind/dist/commands/css.js +79 -0
- package/dist/tailwind/dist/commands/generateComponentData.cjs +33 -31
- package/dist/tailwind/dist/commands/generateComponentData.d.ts +1 -1
- package/dist/tailwind/dist/commands/generateComponentData.js +33 -31
- package/dist/tailwind/dist/commands/generatePurgeCSSData.d.ts +1 -1
- package/dist/tailwind/dist/commands/purge.cjs +3 -4
- package/dist/tailwind/dist/commands/purge.d.ts +1 -1
- package/dist/tailwind/dist/commands/purge.js +3 -4
- package/dist/tailwind/dist/css/generate.cjs +116 -0
- package/dist/tailwind/dist/css/generate.d.cts +30 -0
- package/dist/tailwind/dist/css/generate.d.ts +31 -0
- package/dist/tailwind/dist/css/generate.helpers.cjs +112 -0
- package/dist/tailwind/dist/css/generate.helpers.js +100 -0
- package/dist/tailwind/dist/css/generate.js +111 -0
- package/dist/tailwind/dist/css/postcss.cjs +35 -0
- package/dist/tailwind/dist/css/postcss.helpers.cjs +27 -0
- package/dist/tailwind/dist/css/postcss.helpers.js +26 -0
- package/dist/tailwind/dist/css/postcss.js +35 -0
- package/dist/tailwind/dist/css/runner.cjs +277 -0
- package/dist/tailwind/dist/css/runner.helpers.cjs +26 -0
- package/dist/tailwind/dist/css/runner.helpers.js +23 -0
- package/dist/tailwind/dist/css/runner.js +274 -0
- package/dist/tailwind/dist/css/theme.cjs +12 -0
- package/dist/tailwind/dist/css/theme.d.cts +66 -0
- package/dist/tailwind/dist/css/theme.d.ts +66 -0
- package/dist/tailwind/dist/css/theme.js +11 -0
- package/dist/tailwind/dist/css/utils.cjs +234 -0
- package/dist/tailwind/dist/css/utils.js +223 -0
- package/dist/tailwind/dist/index.d.cts +1 -0
- package/dist/tailwind/dist/index.d.ts +5 -3
- package/dist/tailwind/dist/purger/legacy/purgeCSS.cjs +4 -3
- package/dist/tailwind/dist/purger/legacy/purgeCSS.js +4 -3
- package/dist/tailwind/dist/purger/optimized/ast/expressions.cjs +122 -125
- package/dist/tailwind/dist/purger/optimized/ast/expressions.js +122 -125
- package/dist/tailwind/dist/purger/optimized/ast/jsx.cjs +1 -8
- package/dist/tailwind/dist/purger/optimized/ast/jsx.js +1 -8
- package/dist/tailwind/dist/purger/optimized/purge.cjs +11 -10
- package/dist/tailwind/dist/purger/optimized/purge.js +10 -9
- package/dist/tailwind/dist/purger/optimized/purgeFromCode.cjs +232 -127
- package/dist/tailwind/dist/purger/optimized/purgeFromCode.js +232 -127
- package/dist/tailwind/dist/purger/optimized/utils/componentAnalyzer.cjs +313 -251
- package/dist/tailwind/dist/purger/optimized/utils/componentAnalyzer.js +313 -251
- package/dist/tailwind/dist/purger/optimized/utils/files.cjs +4 -3
- package/dist/tailwind/dist/purger/optimized/utils/files.js +4 -3
- package/dist/tailwind/dist/purger/optimized/utils/safelist.cjs +13 -21
- package/dist/tailwind/dist/purger/optimized/utils/safelist.js +13 -21
- package/dist/tailwind/dist/tailwind/plugins/typography.cjs +41 -13
- package/dist/tailwind/dist/tailwind/plugins/typography.js +41 -13
- package/dist/tailwind/dist/tailwind/utils/composeTailwindPlugins.cjs +4 -2
- package/dist/tailwind/dist/tailwind/utils/composeTailwindPlugins.d.cts +10 -1
- package/dist/tailwind/dist/tailwind/utils/composeTailwindPlugins.d.ts +10 -1
- package/dist/tailwind/dist/tailwind/utils/composeTailwindPlugins.js +4 -2
- package/dist/tailwind/dist/tailwind/utils/getFontStyles.d.cts +1 -1
- package/dist/tailwind/dist/tailwind/utils/getFontStyles.d.ts +1 -1
- package/dist/tailwind/dist/utils/optimizeCSS.cjs +405 -0
- package/dist/tailwind/dist/utils/optimizeCSS.js +403 -0
- package/dist/tailwind/dist/utils/postcssPreserveVars.cjs +67 -0
- package/dist/tailwind/dist/utils/postcssPreserveVars.js +65 -0
- package/dist/tailwind/dist/utils/tsMorph.cjs +1 -1
- package/dist/uds/generated/componentData.cjs +23 -8
- package/dist/uds/generated/componentData.js +23 -8
- package/dist/uds/package.cjs +10 -4
- package/dist/uds/package.js +10 -4
- package/generated/componentData.json +2397 -0
- package/generated/tailwindPurge.ts +4560 -0
- package/package.json +7 -4
|
@@ -1,9 +1,20 @@
|
|
|
1
1
|
/*! © 2026 Yahoo, Inc. UDS v0.0.0-development */
|
|
2
2
|
const require_index = require('../../css-tokens/dist/index.cjs');
|
|
3
|
+
const require_assertUnreachable = require('./utils/assertUnreachable.cjs');
|
|
3
4
|
|
|
4
5
|
//#region ../automated-config/dist/mapTextVariantFixtureToValue.js
|
|
5
6
|
/*! © 2026 Yahoo, Inc. UDS Default Config v0.0.0-development */
|
|
6
|
-
const mapTextVariantFixtureToValue = (key) => (selected, value) =>
|
|
7
|
+
const mapTextVariantFixtureToValue = (key) => (selected, value) => {
|
|
8
|
+
switch (key) {
|
|
9
|
+
case "fontFamily": return `udsFontFamily[${require_index.textVariantsSafe(value)}]`;
|
|
10
|
+
case "fontSize": return `udsFontSize[${require_index.textVariantsSafe(value)}]`;
|
|
11
|
+
case "lineHeight": return `udsLineHeight[${require_index.textVariantsSafe(value)}]`;
|
|
12
|
+
case "letterSpacing": return `udsLetterSpacing[${require_index.textVariantsSafe(value)}]`;
|
|
13
|
+
case "textTransform": return `udsTextTransform[${require_index.textVariantsSafe(value)}]`;
|
|
14
|
+
case "fontWeight": return `udsFontWeight[${require_index.textVariantsSafe(value)}]`;
|
|
15
|
+
}
|
|
16
|
+
return require_assertUnreachable.assertUnreachable(key);
|
|
17
|
+
};
|
|
7
18
|
|
|
8
19
|
//#endregion
|
|
9
20
|
exports.mapTextVariantFixtureToValue = mapTextVariantFixtureToValue;
|
|
@@ -1,9 +1,20 @@
|
|
|
1
1
|
/*! © 2026 Yahoo, Inc. UDS v0.0.0-development */
|
|
2
2
|
import { textVariantsSafe } from "../../css-tokens/dist/index.js";
|
|
3
|
+
import { assertUnreachable } from "./utils/assertUnreachable.js";
|
|
3
4
|
|
|
4
5
|
//#region ../automated-config/dist/mapTextVariantFixtureToValue.js
|
|
5
6
|
/*! © 2026 Yahoo, Inc. UDS Default Config v0.0.0-development */
|
|
6
|
-
const mapTextVariantFixtureToValue = (key) => (selected, value) =>
|
|
7
|
+
const mapTextVariantFixtureToValue = (key) => (selected, value) => {
|
|
8
|
+
switch (key) {
|
|
9
|
+
case "fontFamily": return `udsFontFamily[${textVariantsSafe(value)}]`;
|
|
10
|
+
case "fontSize": return `udsFontSize[${textVariantsSafe(value)}]`;
|
|
11
|
+
case "lineHeight": return `udsLineHeight[${textVariantsSafe(value)}]`;
|
|
12
|
+
case "letterSpacing": return `udsLetterSpacing[${textVariantsSafe(value)}]`;
|
|
13
|
+
case "textTransform": return `udsTextTransform[${textVariantsSafe(value)}]`;
|
|
14
|
+
case "fontWeight": return `udsFontWeight[${textVariantsSafe(value)}]`;
|
|
15
|
+
}
|
|
16
|
+
return assertUnreachable(key);
|
|
17
|
+
};
|
|
7
18
|
|
|
8
19
|
//#endregion
|
|
9
20
|
export { mapTextVariantFixtureToValue };
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*! © 2026 Yahoo, Inc. UDS v0.0.0-development */
|
|
2
2
|
const require_index = require('../../css-tokens/dist/index.cjs');
|
|
3
|
-
const require_mapTextVariantFixtureToValue = require('./mapTextVariantFixtureToValue.cjs');
|
|
4
3
|
const require_assertUnreachable = require('./utils/assertUnreachable.cjs');
|
|
4
|
+
const require_mapTextVariantFixtureToValue = require('./mapTextVariantFixtureToValue.cjs');
|
|
5
5
|
const require_mapColorFixtureToValue = require('./utils/mapColorFixtureToValue.cjs');
|
|
6
6
|
const require_index$1 = require('../../motion-tokens/dist/index.cjs');
|
|
7
7
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*! © 2026 Yahoo, Inc. UDS v0.0.0-development */
|
|
2
2
|
import { BACKGROUND_BLUR_COLOR_PREFIX, BACKGROUND_BLUR_FALLBACK_COLOR_PREFIX, BORDER_RADIUS_PREFIX, BUTTON_SCALE_EFFECT, DROP_SHADOW_PREFIX, getShadowLayerValue, textVariantsSafe } from "../../css-tokens/dist/index.js";
|
|
3
|
-
import { mapTextVariantFixtureToValue } from "./mapTextVariantFixtureToValue.js";
|
|
4
3
|
import { assertUnreachable } from "./utils/assertUnreachable.js";
|
|
4
|
+
import { mapTextVariantFixtureToValue } from "./mapTextVariantFixtureToValue.js";
|
|
5
5
|
import { mapColorFixtureToValue } from "./utils/mapColorFixtureToValue.js";
|
|
6
6
|
import { SCALE_EFFECTS } from "../../motion-tokens/dist/index.js";
|
|
7
7
|
|
|
@@ -11,8 +11,8 @@ import { SelectedConfigurableProperty } from "../properties.cjs";
|
|
|
11
11
|
* @returns A Record of layer names to their properties, or null if no properties are found
|
|
12
12
|
*/
|
|
13
13
|
declare function getConfigVariantProperties(variant?: VariantConfig): {
|
|
14
|
-
[x: string]: Readonly<Record<string, SelectedConfigurableProperty<"
|
|
15
|
-
root: Readonly<Record<string, SelectedConfigurableProperty<"
|
|
14
|
+
[x: string]: Readonly<Record<string, SelectedConfigurableProperty<"textTransform" | "fontSize" | "fontWeight" | "lineHeight" | "fontFamily" | "letterSpacing" | "backgroundColor" | "borderWidth" | "strokeWidth" | "borderRadius" | "borderRadiusVar" | "borderColor" | "stroke" | "buttonSize" | "buttonVariant" | "fontVariationSettings" | "gap" | "color" | "opacity" | "fillOpacity" | "iconSize" | "spacing" | "iconVariant" | "spacingHorizontal" | "spacingVertical" | "textVariant" | "textDecorationLine" | "shadow" | "shadowVar" | "insetShadow" | "height" | "width" | "scaleEffect" | "backdropBlur" | "blurBackgroundColor" | "blurBackgroundColorFallback", string, readonly ("backgroundPaletteColors" | "spectrumColors" | "alwaysPaletteAliases" | "elevationAliases")[] | readonly ("elevationAliases" | "borderWidths" | "spacingAliases")[] | readonly "borderRadii"[] | readonly ("spectrumColors" | "alwaysPaletteAliases" | "elevationAliases" | "linePaletteColors")[] | readonly "buttonSizes"[] | readonly "buttonVariantsFlat"[] | readonly "textVariants"[] | readonly "spacingAliases"[] | readonly ("spectrumColors" | "alwaysPaletteAliases" | "foregroundPaletteColors")[] | readonly "opacitySteps"[] | readonly "iconSizes"[] | readonly "iconVariants"[] | readonly "textDecorationLines"[] | readonly ("elevationAliases" | "shadowVariants" | "shadowVariantConfig")[] | readonly ("shadowVariantConfig" | "shadowVariantsWithInvert")[] | readonly "scaleEffects"[] | readonly "positiveIntegers"[], readonly (readonly unknown[])[]>>>;
|
|
15
|
+
root: Readonly<Record<string, SelectedConfigurableProperty<"textTransform" | "fontSize" | "fontWeight" | "lineHeight" | "fontFamily" | "letterSpacing" | "backgroundColor" | "borderWidth" | "strokeWidth" | "borderRadius" | "borderRadiusVar" | "borderColor" | "stroke" | "buttonSize" | "buttonVariant" | "fontVariationSettings" | "gap" | "color" | "opacity" | "fillOpacity" | "iconSize" | "spacing" | "iconVariant" | "spacingHorizontal" | "spacingVertical" | "textVariant" | "textDecorationLine" | "shadow" | "shadowVar" | "insetShadow" | "height" | "width" | "scaleEffect" | "backdropBlur" | "blurBackgroundColor" | "blurBackgroundColorFallback", string, readonly ("backgroundPaletteColors" | "spectrumColors" | "alwaysPaletteAliases" | "elevationAliases")[] | readonly ("elevationAliases" | "borderWidths" | "spacingAliases")[] | readonly "borderRadii"[] | readonly ("spectrumColors" | "alwaysPaletteAliases" | "elevationAliases" | "linePaletteColors")[] | readonly "buttonSizes"[] | readonly "buttonVariantsFlat"[] | readonly "textVariants"[] | readonly "spacingAliases"[] | readonly ("spectrumColors" | "alwaysPaletteAliases" | "foregroundPaletteColors")[] | readonly "opacitySteps"[] | readonly "iconSizes"[] | readonly "iconVariants"[] | readonly "textDecorationLines"[] | readonly ("elevationAliases" | "shadowVariants" | "shadowVariantConfig")[] | readonly ("shadowVariantConfig" | "shadowVariantsWithInvert")[] | readonly "scaleEffects"[] | readonly "positiveIntegers"[], readonly (readonly unknown[])[]>>>;
|
|
16
16
|
} | null; //#endregion
|
|
17
17
|
//#endregion
|
|
18
18
|
export { getConfigVariantProperties };
|
|
@@ -11,8 +11,8 @@ import { SelectedConfigurableProperty } from "../properties.js";
|
|
|
11
11
|
* @returns A Record of layer names to their properties, or null if no properties are found
|
|
12
12
|
*/
|
|
13
13
|
declare function getConfigVariantProperties(variant?: VariantConfig): {
|
|
14
|
-
[x: string]: Readonly<Record<string, SelectedConfigurableProperty<"
|
|
15
|
-
root: Readonly<Record<string, SelectedConfigurableProperty<"
|
|
14
|
+
[x: string]: Readonly<Record<string, SelectedConfigurableProperty<"textTransform" | "fontSize" | "fontWeight" | "lineHeight" | "fontFamily" | "letterSpacing" | "backgroundColor" | "borderWidth" | "strokeWidth" | "borderRadius" | "borderRadiusVar" | "borderColor" | "stroke" | "buttonSize" | "buttonVariant" | "fontVariationSettings" | "gap" | "color" | "opacity" | "fillOpacity" | "iconSize" | "spacing" | "iconVariant" | "spacingHorizontal" | "spacingVertical" | "textVariant" | "textDecorationLine" | "shadow" | "shadowVar" | "insetShadow" | "height" | "width" | "scaleEffect" | "backdropBlur" | "blurBackgroundColor" | "blurBackgroundColorFallback", string, readonly ("backgroundPaletteColors" | "spectrumColors" | "alwaysPaletteAliases" | "elevationAliases")[] | readonly ("elevationAliases" | "borderWidths" | "spacingAliases")[] | readonly "borderRadii"[] | readonly ("spectrumColors" | "alwaysPaletteAliases" | "elevationAliases" | "linePaletteColors")[] | readonly "buttonSizes"[] | readonly "buttonVariantsFlat"[] | readonly "textVariants"[] | readonly "spacingAliases"[] | readonly ("spectrumColors" | "alwaysPaletteAliases" | "foregroundPaletteColors")[] | readonly "opacitySteps"[] | readonly "iconSizes"[] | readonly "iconVariants"[] | readonly "textDecorationLines"[] | readonly ("elevationAliases" | "shadowVariants" | "shadowVariantConfig")[] | readonly ("shadowVariantConfig" | "shadowVariantsWithInvert")[] | readonly "scaleEffects"[] | readonly "positiveIntegers"[], readonly (readonly unknown[])[]>>>;
|
|
15
|
+
root: Readonly<Record<string, SelectedConfigurableProperty<"textTransform" | "fontSize" | "fontWeight" | "lineHeight" | "fontFamily" | "letterSpacing" | "backgroundColor" | "borderWidth" | "strokeWidth" | "borderRadius" | "borderRadiusVar" | "borderColor" | "stroke" | "buttonSize" | "buttonVariant" | "fontVariationSettings" | "gap" | "color" | "opacity" | "fillOpacity" | "iconSize" | "spacing" | "iconVariant" | "spacingHorizontal" | "spacingVertical" | "textVariant" | "textDecorationLine" | "shadow" | "shadowVar" | "insetShadow" | "height" | "width" | "scaleEffect" | "backdropBlur" | "blurBackgroundColor" | "blurBackgroundColorFallback", string, readonly ("backgroundPaletteColors" | "spectrumColors" | "alwaysPaletteAliases" | "elevationAliases")[] | readonly ("elevationAliases" | "borderWidths" | "spacingAliases")[] | readonly "borderRadii"[] | readonly ("spectrumColors" | "alwaysPaletteAliases" | "elevationAliases" | "linePaletteColors")[] | readonly "buttonSizes"[] | readonly "buttonVariantsFlat"[] | readonly "textVariants"[] | readonly "spacingAliases"[] | readonly ("spectrumColors" | "alwaysPaletteAliases" | "foregroundPaletteColors")[] | readonly "opacitySteps"[] | readonly "iconSizes"[] | readonly "iconVariants"[] | readonly "textDecorationLines"[] | readonly ("elevationAliases" | "shadowVariants" | "shadowVariantConfig")[] | readonly ("shadowVariantConfig" | "shadowVariantsWithInvert")[] | readonly "scaleEffects"[] | readonly "positiveIntegers"[], readonly (readonly unknown[])[]>>>;
|
|
16
16
|
} | null; //#endregion
|
|
17
17
|
//#endregion
|
|
18
18
|
export { getConfigVariantProperties };
|
|
@@ -5,15 +5,14 @@ const require_defaultTokensConfig = require('../../defaultTokensConfig.cjs');
|
|
|
5
5
|
const require_runtime_breakpointsConfig = require('../../runtime/breakpointsConfig.cjs');
|
|
6
6
|
const require_runtime_toastConfig = require('../../runtime/toastConfig.cjs');
|
|
7
7
|
const require_runtime_tooltipConfig = require('../../runtime/tooltipConfig.cjs');
|
|
8
|
-
const require_analytics = require('../dist/utils/analytics.cjs');
|
|
9
8
|
const require_colors = require('../dist/lib/colors.cjs');
|
|
10
9
|
const require_print = require('../dist/lib/print.cjs');
|
|
11
10
|
const require_box = require('../dist/lib/box.cjs');
|
|
12
11
|
const require_config = require('../dist/utils/rules/config.cjs');
|
|
13
12
|
const require_cli_commands_utils_sortKeys = require('./utils/sortKeys.cjs');
|
|
13
|
+
let node_fs = require("node:fs");
|
|
14
14
|
let node_path = require("node:path");
|
|
15
15
|
node_path = require_runtime.__toESM(node_path);
|
|
16
|
-
let node_fs = require("node:fs");
|
|
17
16
|
|
|
18
17
|
//#region src/cli/commands/sync.ts
|
|
19
18
|
const PRODUCTION_ENDPOINT = "https://config.uds.build/api/config";
|
|
@@ -91,7 +90,6 @@ const syncCommand = {
|
|
|
91
90
|
require_print.print(require_colors.green(`✅ Synced UDS config ${id} to ${fullPath}`));
|
|
92
91
|
const staleEditors = require_config.getEditorsWithStaleRules(process.cwd());
|
|
93
92
|
if (staleEditors.length > 0) require_box.printBox([require_colors.bold(`Updated UDS rules are available for ${staleEditors.join(" and ")}.`), `Run ${require_colors.cyan("`uds editor-rules`")} to update.`]);
|
|
94
|
-
await require_analytics.trackEvent("sync", { id });
|
|
95
93
|
} catch (error) {
|
|
96
94
|
require_print.print(require_colors.red(`❌ ${error.message}`));
|
|
97
95
|
require_print.print(require_colors.yellow("Please reach out to #uds-ask channel for support."));
|
|
@@ -3,14 +3,13 @@ import { defaultTokensConfig } from "../../defaultTokensConfig.js";
|
|
|
3
3
|
import { configToBreakpointsConfigContext } from "../../runtime/breakpointsConfig.js";
|
|
4
4
|
import { configToToastConfigContext } from "../../runtime/toastConfig.js";
|
|
5
5
|
import { configToTooltipConfigContext } from "../../runtime/tooltipConfig.js";
|
|
6
|
-
import { trackEvent } from "../dist/utils/analytics.js";
|
|
7
6
|
import { bold, cyan, green, magenta, red, yellow } from "../dist/lib/colors.js";
|
|
8
7
|
import { print } from "../dist/lib/print.js";
|
|
9
8
|
import { printBox } from "../dist/lib/box.js";
|
|
10
9
|
import { getEditorsWithStaleRules } from "../dist/utils/rules/config.js";
|
|
11
10
|
import { sortKeys } from "./utils/sortKeys.js";
|
|
12
|
-
import path from "node:path";
|
|
13
11
|
import { writeFileSync } from "node:fs";
|
|
12
|
+
import path from "node:path";
|
|
14
13
|
|
|
15
14
|
//#region src/cli/commands/sync.ts
|
|
16
15
|
const PRODUCTION_ENDPOINT = "https://config.uds.build/api/config";
|
|
@@ -88,7 +87,6 @@ const syncCommand = {
|
|
|
88
87
|
print(green(`✅ Synced UDS config ${id} to ${fullPath}`));
|
|
89
88
|
const staleEditors = getEditorsWithStaleRules(process.cwd());
|
|
90
89
|
if (staleEditors.length > 0) printBox([bold(`Updated UDS rules are available for ${staleEditors.join(" and ")}.`), `Run ${cyan("`uds editor-rules`")} to update.`]);
|
|
91
|
-
await trackEvent("sync", { id });
|
|
92
90
|
} catch (error) {
|
|
93
91
|
print(red(`❌ ${error.message}`));
|
|
94
92
|
print(yellow("Please reach out to #uds-ask channel for support."));
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
/*! © 2026 Yahoo, Inc. UDS v0.0.0-development */
|
|
2
2
|
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
3
3
|
const require_runtime = require('../../_virtual/_rolldown/runtime.cjs');
|
|
4
|
-
const require_analytics = require('../dist/utils/analytics.cjs');
|
|
5
4
|
const require_print = require('../dist/lib/print.cjs');
|
|
6
5
|
let _yahoo_uds_package_json = require("@yahoo/uds/package.json");
|
|
7
6
|
_yahoo_uds_package_json = require_runtime.__toESM(_yahoo_uds_package_json);
|
|
@@ -13,7 +12,6 @@ const versionCommand = {
|
|
|
13
12
|
description: `Display CLI version (${version})`,
|
|
14
13
|
run: async () => {
|
|
15
14
|
require_print.print(version);
|
|
16
|
-
await require_analytics.trackEvent("version", { version });
|
|
17
15
|
}
|
|
18
16
|
};
|
|
19
17
|
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
/*! © 2026 Yahoo, Inc. UDS v0.0.0-development */
|
|
2
|
-
import { trackEvent } from "../dist/utils/analytics.js";
|
|
3
2
|
import { print } from "../dist/lib/print.js";
|
|
4
3
|
import pkg from "@yahoo/uds/package.json" with { type: "json" };
|
|
5
4
|
|
|
@@ -10,7 +9,6 @@ const versionCommand = {
|
|
|
10
9
|
description: `Display CLI version (${version})`,
|
|
11
10
|
run: async () => {
|
|
12
11
|
print(version);
|
|
13
|
-
await trackEvent("version", { version });
|
|
14
12
|
}
|
|
15
13
|
};
|
|
16
14
|
|
package/dist/cli/dist/cli.cjs
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/*! © 2026 Yahoo, Inc. UDS v0.0.0-development */
|
|
2
|
-
const require_analytics = require('./utils/analytics.cjs');
|
|
3
2
|
const require_args = require('./lib/args.cjs');
|
|
4
3
|
const require_colors = require('./lib/colors.cjs');
|
|
5
4
|
const require_print = require('./lib/print.cjs');
|
|
5
|
+
const require_analytics = require('./utils/analytics.cjs');
|
|
6
6
|
const require_getCommandHelp = require('./utils/getCommandHelp.cjs');
|
|
7
7
|
const require_codemod = require('./commands/codemod/codemod.cjs');
|
|
8
8
|
const require_editor_rules = require('./commands/editor-rules.cjs');
|
package/dist/cli/dist/cli.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/*! © 2026 Yahoo, Inc. UDS v0.0.0-development */
|
|
2
|
-
import { trackEvent } from "./utils/analytics.js";
|
|
3
2
|
import { parseArgs } from "./lib/args.js";
|
|
4
3
|
import { cyan, gray, green, magenta, red, white } from "./lib/colors.js";
|
|
5
4
|
import { print } from "./lib/print.js";
|
|
5
|
+
import { trackEvent } from "./utils/analytics.js";
|
|
6
6
|
import { CODEMOD_SUBCOMMANDS } from "./utils/getCommandHelp.js";
|
|
7
7
|
import { codemod_default } from "./commands/codemod/codemod.js";
|
|
8
8
|
import { editor_rules_default } from "./commands/editor-rules.js";
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
/*! © 2026 Yahoo, Inc. UDS v0.0.0-development */
|
|
2
2
|
const require_runtime = require('../../../_virtual/_rolldown/runtime.cjs');
|
|
3
|
-
const require_analytics = require('../utils/analytics.cjs');
|
|
4
3
|
const require_colors = require('../lib/colors.cjs');
|
|
5
4
|
const require_print = require('../lib/print.cjs');
|
|
5
|
+
const require_analytics = require('../utils/analytics.cjs');
|
|
6
6
|
const require_config = require('../utils/rules/config.cjs');
|
|
7
|
-
let node_path = require("node:path");
|
|
8
7
|
let node_fs = require("node:fs");
|
|
8
|
+
let node_path = require("node:path");
|
|
9
9
|
|
|
10
10
|
//#region ../cli/dist/commands/editor-rules.mjs
|
|
11
11
|
/*! © 2026 Yahoo, Inc. UDS CLI v0.0.0-development */
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
/*! © 2026 Yahoo, Inc. UDS v0.0.0-development */
|
|
2
|
-
import { trackEvent } from "../utils/analytics.js";
|
|
3
2
|
import { blue, green, red, yellow } from "../lib/colors.js";
|
|
4
3
|
import { print } from "../lib/print.js";
|
|
4
|
+
import { trackEvent } from "../utils/analytics.js";
|
|
5
5
|
import { getAvailableEditors, getEditorConfig, getRuleContent } from "../utils/rules/config.js";
|
|
6
|
-
import { join } from "node:path";
|
|
7
6
|
import { existsSync, mkdirSync, readFileSync, writeFileSync } from "node:fs";
|
|
7
|
+
import { join } from "node:path";
|
|
8
8
|
|
|
9
9
|
//#region ../cli/dist/commands/editor-rules.mjs
|
|
10
10
|
/*! © 2026 Yahoo, Inc. UDS CLI v0.0.0-development */
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
/*! © 2026 Yahoo, Inc. UDS v0.0.0-development */
|
|
2
|
+
const require_colors = require('./colors.cjs');
|
|
3
|
+
const require_print = require('./print.cjs');
|
|
4
|
+
const require_spinner = require('./spinner.cjs');
|
|
5
|
+
|
|
6
|
+
//#region ../cli/dist/lib/logger.mjs
|
|
7
|
+
/*! © 2026 Yahoo, Inc. UDS CLI v0.0.0-development */
|
|
8
|
+
/**
|
|
9
|
+
* Logger utility for CLI commands.
|
|
10
|
+
* Centralizes logging behavior with support for silent mode.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
* Create a logger instance with optional silent mode.
|
|
14
|
+
* When silent, all logging methods become no-ops.
|
|
15
|
+
*/
|
|
16
|
+
function createLogger(options = {}) {
|
|
17
|
+
const isSilent = options.silent ?? false;
|
|
18
|
+
return {
|
|
19
|
+
isSilent,
|
|
20
|
+
print: (message) => {
|
|
21
|
+
if (!isSilent) require_print.print(message);
|
|
22
|
+
},
|
|
23
|
+
printAlways: (message) => {
|
|
24
|
+
require_print.print(message);
|
|
25
|
+
},
|
|
26
|
+
spinStart: (message) => {
|
|
27
|
+
if (!isSilent) require_spinner.spinStart(message);
|
|
28
|
+
},
|
|
29
|
+
spinStop: (icon, message) => {
|
|
30
|
+
if (!isSilent) require_spinner.spinStop(icon, message);
|
|
31
|
+
},
|
|
32
|
+
success: (message) => {
|
|
33
|
+
if (!isSilent) require_print.print(require_colors.green(`✅ ${message}`));
|
|
34
|
+
},
|
|
35
|
+
warn: (message) => {
|
|
36
|
+
if (!isSilent) require_print.print(require_colors.yellow(`⚠️ ${message}`));
|
|
37
|
+
},
|
|
38
|
+
error: (message) => {
|
|
39
|
+
require_print.print(require_colors.red(`❌ ${message}`));
|
|
40
|
+
},
|
|
41
|
+
info: (message) => {
|
|
42
|
+
if (!isSilent) require_print.print(require_colors.cyan(message));
|
|
43
|
+
},
|
|
44
|
+
label: (label, value) => {
|
|
45
|
+
if (!isSilent) require_print.print(`${require_colors.magenta(label)} ${require_colors.cyan(value)}`);
|
|
46
|
+
},
|
|
47
|
+
listItem: (text) => {
|
|
48
|
+
if (!isSilent) require_print.print(` ${require_colors.gray("•")} ${text}`);
|
|
49
|
+
},
|
|
50
|
+
timestamp: (message, color = "green") => {
|
|
51
|
+
if (isSilent) return;
|
|
52
|
+
const time = (/* @__PURE__ */ new Date()).toLocaleTimeString();
|
|
53
|
+
const colorFn = color === "green" ? require_colors.green : color === "yellow" ? require_colors.yellow : require_colors.red;
|
|
54
|
+
require_print.print(`${require_colors.gray(`[${time}]`)} ${colorFn(message)}`);
|
|
55
|
+
},
|
|
56
|
+
newline: () => {
|
|
57
|
+
if (!isSilent) require_print.print("");
|
|
58
|
+
},
|
|
59
|
+
child: (childOptions = {}) => {
|
|
60
|
+
return createLogger({ silent: childOptions.silent ?? isSilent });
|
|
61
|
+
}
|
|
62
|
+
};
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
//#endregion
|
|
66
|
+
exports.createLogger = createLogger;
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
/*! © 2026 Yahoo, Inc. UDS v0.0.0-development */
|
|
2
|
+
import { cyan, gray, green, magenta, red, yellow } from "./colors.js";
|
|
3
|
+
import { print } from "./print.js";
|
|
4
|
+
import { spinStart, spinStop } from "./spinner.js";
|
|
5
|
+
|
|
6
|
+
//#region ../cli/dist/lib/logger.mjs
|
|
7
|
+
/*! © 2026 Yahoo, Inc. UDS CLI v0.0.0-development */
|
|
8
|
+
/**
|
|
9
|
+
* Logger utility for CLI commands.
|
|
10
|
+
* Centralizes logging behavior with support for silent mode.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
* Create a logger instance with optional silent mode.
|
|
14
|
+
* When silent, all logging methods become no-ops.
|
|
15
|
+
*/
|
|
16
|
+
function createLogger(options = {}) {
|
|
17
|
+
const isSilent = options.silent ?? false;
|
|
18
|
+
return {
|
|
19
|
+
isSilent,
|
|
20
|
+
print: (message) => {
|
|
21
|
+
if (!isSilent) print(message);
|
|
22
|
+
},
|
|
23
|
+
printAlways: (message) => {
|
|
24
|
+
print(message);
|
|
25
|
+
},
|
|
26
|
+
spinStart: (message) => {
|
|
27
|
+
if (!isSilent) spinStart(message);
|
|
28
|
+
},
|
|
29
|
+
spinStop: (icon, message) => {
|
|
30
|
+
if (!isSilent) spinStop(icon, message);
|
|
31
|
+
},
|
|
32
|
+
success: (message) => {
|
|
33
|
+
if (!isSilent) print(green(`✅ ${message}`));
|
|
34
|
+
},
|
|
35
|
+
warn: (message) => {
|
|
36
|
+
if (!isSilent) print(yellow(`⚠️ ${message}`));
|
|
37
|
+
},
|
|
38
|
+
error: (message) => {
|
|
39
|
+
print(red(`❌ ${message}`));
|
|
40
|
+
},
|
|
41
|
+
info: (message) => {
|
|
42
|
+
if (!isSilent) print(cyan(message));
|
|
43
|
+
},
|
|
44
|
+
label: (label, value) => {
|
|
45
|
+
if (!isSilent) print(`${magenta(label)} ${cyan(value)}`);
|
|
46
|
+
},
|
|
47
|
+
listItem: (text) => {
|
|
48
|
+
if (!isSilent) print(` ${gray("•")} ${text}`);
|
|
49
|
+
},
|
|
50
|
+
timestamp: (message, color = "green") => {
|
|
51
|
+
if (isSilent) return;
|
|
52
|
+
const time = (/* @__PURE__ */ new Date()).toLocaleTimeString();
|
|
53
|
+
const colorFn = color === "green" ? green : color === "yellow" ? yellow : red;
|
|
54
|
+
print(`${gray(`[${time}]`)} ${colorFn(message)}`);
|
|
55
|
+
},
|
|
56
|
+
newline: () => {
|
|
57
|
+
if (!isSilent) print("");
|
|
58
|
+
},
|
|
59
|
+
child: (childOptions = {}) => {
|
|
60
|
+
return createLogger({ silent: childOptions.silent ?? isSilent });
|
|
61
|
+
}
|
|
62
|
+
};
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
//#endregion
|
|
66
|
+
export { createLogger };
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*! © 2026 Yahoo, Inc. UDS v0.0.0-development */
|
|
2
2
|
const require_runtime = require('../../../../_virtual/_rolldown/runtime.cjs');
|
|
3
|
-
let node_path = require("node:path");
|
|
4
3
|
let node_fs = require("node:fs");
|
|
4
|
+
let node_path = require("node:path");
|
|
5
5
|
let node_url = require("node:url");
|
|
6
6
|
|
|
7
7
|
//#region ../cli/dist/utils/rules/config.mjs
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*! © 2026 Yahoo, Inc. UDS v0.0.0-development */
|
|
2
|
-
import { dirname, join } from "node:path";
|
|
3
2
|
import { existsSync, readFileSync } from "node:fs";
|
|
3
|
+
import { dirname, join } from "node:path";
|
|
4
4
|
import { fileURLToPath } from "node:url";
|
|
5
5
|
|
|
6
6
|
//#region ../cli/dist/utils/rules/config.mjs
|
package/dist/cli/runner.cjs
CHANGED
|
@@ -2,16 +2,17 @@
|
|
|
2
2
|
const require_runtime = require('../_virtual/_rolldown/runtime.cjs');
|
|
3
3
|
const require_styles_variants = require('../styles/variants.cjs');
|
|
4
4
|
const require_components_index = require('../components/index.cjs');
|
|
5
|
-
const
|
|
5
|
+
const require_css = require('../tailwind/dist/commands/css.cjs');
|
|
6
6
|
const require_generateComponentData = require('../tailwind/dist/commands/generateComponentData.cjs');
|
|
7
7
|
const require_generatePurgeCSSData = require('../tailwind/dist/commands/generatePurgeCSSData.cjs');
|
|
8
8
|
const require_purge = require('../tailwind/dist/commands/purge.cjs');
|
|
9
|
+
const require_cli = require('./dist/cli.cjs');
|
|
9
10
|
const require_package = require('../uds/package.cjs');
|
|
10
11
|
const require_components_experimental_index = require('../components/experimental/index.cjs');
|
|
11
12
|
const require_cli_commands_sync = require('./commands/sync.cjs');
|
|
12
13
|
const require_cli_commands_version = require('./commands/version.cjs');
|
|
13
|
-
let node_path = require("node:path");
|
|
14
14
|
let ts_morph = require("ts-morph");
|
|
15
|
+
let node_path = require("node:path");
|
|
15
16
|
|
|
16
17
|
//#region src/cli/runner.ts
|
|
17
18
|
require_cli.run([
|
|
@@ -44,6 +45,14 @@ require_cli.run([
|
|
|
44
45
|
outputFile: (0, node_path.join)(process.cwd(), "generated/componentData.json")
|
|
45
46
|
};
|
|
46
47
|
}),
|
|
48
|
+
require_css.makeCSSCommand(async () => {
|
|
49
|
+
const componentData = await Promise.resolve().then(() => require("../uds/generated/componentData.cjs"));
|
|
50
|
+
return {
|
|
51
|
+
variants: require_styles_variants.variants,
|
|
52
|
+
autoVariants: (await Promise.resolve().then(() => require("../automated-config/dist/generated/autoVariants.cjs"))).autoVariants,
|
|
53
|
+
componentData
|
|
54
|
+
};
|
|
55
|
+
}),
|
|
47
56
|
require_cli_commands_sync.syncCommand
|
|
48
57
|
]);
|
|
49
58
|
|
package/dist/cli/runner.js
CHANGED
|
@@ -1,16 +1,17 @@
|
|
|
1
1
|
/*! © 2026 Yahoo, Inc. UDS v0.0.0-development */
|
|
2
2
|
import { variants } from "../styles/variants.js";
|
|
3
3
|
import { components_exports } from "../components/index.js";
|
|
4
|
-
import {
|
|
4
|
+
import { makeCSSCommand } from "../tailwind/dist/commands/css.js";
|
|
5
5
|
import { makeGenerateComponentDataCommand } from "../tailwind/dist/commands/generateComponentData.js";
|
|
6
6
|
import { makeGeneratePurgeCSSDataCommand } from "../tailwind/dist/commands/generatePurgeCSSData.js";
|
|
7
7
|
import { makePurgeCommand } from "../tailwind/dist/commands/purge.js";
|
|
8
|
+
import { run } from "./dist/cli.js";
|
|
8
9
|
import package_default from "../uds/package.js";
|
|
9
10
|
import { experimental_exports } from "../components/experimental/index.js";
|
|
10
11
|
import { syncCommand } from "./commands/sync.js";
|
|
11
12
|
import { versionCommand } from "./commands/version.js";
|
|
12
|
-
import { join } from "node:path";
|
|
13
13
|
import { Project } from "ts-morph";
|
|
14
|
+
import { join } from "node:path";
|
|
14
15
|
|
|
15
16
|
//#region src/cli/runner.ts
|
|
16
17
|
run([
|
|
@@ -43,6 +44,14 @@ run([
|
|
|
43
44
|
outputFile: join(process.cwd(), "generated/componentData.json")
|
|
44
45
|
};
|
|
45
46
|
}),
|
|
47
|
+
makeCSSCommand(async () => {
|
|
48
|
+
const componentData = await import("../uds/generated/componentData.js");
|
|
49
|
+
return {
|
|
50
|
+
variants,
|
|
51
|
+
autoVariants: (await import("../automated-config/dist/generated/autoVariants.js")).autoVariants,
|
|
52
|
+
componentData
|
|
53
|
+
};
|
|
54
|
+
}),
|
|
46
55
|
syncCommand
|
|
47
56
|
]);
|
|
48
57
|
|
|
@@ -88,6 +88,6 @@ interface MenuItemCheckboxProps extends Omit<PressableProps, 'asChild'>, HtmlBut
|
|
|
88
88
|
*
|
|
89
89
|
* @related [Menu](https://uds.build/docs/components/menu), [Menu.Item](https://uds.build/docs/components/menu-item)
|
|
90
90
|
**/
|
|
91
|
-
declare const MenuItemCheckbox: react.ForwardRefExoticComponent<Omit<MenuItemCheckboxProps, "
|
|
91
|
+
declare const MenuItemCheckbox: react.ForwardRefExoticComponent<Omit<MenuItemCheckboxProps, "active" | "hideEndIcon" | "rootProps"> & react.RefAttributes<HTMLDivElement>>;
|
|
92
92
|
//#endregion
|
|
93
93
|
export { MenuItemCheckbox, type MenuItemCheckboxProps };
|
|
@@ -88,6 +88,6 @@ interface MenuItemCheckboxProps extends Omit<PressableProps, 'asChild'>, HtmlBut
|
|
|
88
88
|
*
|
|
89
89
|
* @related [Menu](https://uds.build/docs/components/menu), [Menu.Item](https://uds.build/docs/components/menu-item)
|
|
90
90
|
**/
|
|
91
|
-
declare const MenuItemCheckbox: react.ForwardRefExoticComponent<Omit<MenuItemCheckboxProps, "
|
|
91
|
+
declare const MenuItemCheckbox: react.ForwardRefExoticComponent<Omit<MenuItemCheckboxProps, "active" | "hideEndIcon" | "rootProps"> & react.RefAttributes<HTMLDivElement>>;
|
|
92
92
|
//#endregion
|
|
93
93
|
export { MenuItemCheckbox, type MenuItemCheckboxProps };
|
package/dist/index.cjs
CHANGED
|
@@ -72,6 +72,7 @@ const require_runtime_breakpointsConfig = require('./runtime/breakpointsConfig.c
|
|
|
72
72
|
const require_runtime_toastConfig = require('./runtime/toastConfig.cjs');
|
|
73
73
|
const require_runtime_tooltipConfig = require('./runtime/tooltipConfig.cjs');
|
|
74
74
|
const require_runtime_udsConfig = require('./runtime/udsConfig.cjs');
|
|
75
|
+
const require_theme = require('./tailwind/dist/css/theme.cjs');
|
|
75
76
|
|
|
76
77
|
exports.ALWAYS_PREFIX = require_index.ALWAYS_PREFIX;
|
|
77
78
|
exports.AVATAR_SIZE_PREFIX = require_index$1.AVATAR_SIZE_PREFIX;
|
|
@@ -202,6 +203,7 @@ exports.createVariantConfigWithComponentStates = require_index$2.createVariantCo
|
|
|
202
203
|
exports.createVariantConfigWithProperties = require_index$2.createVariantConfigWithProperties;
|
|
203
204
|
exports.cva = require_styles_styler.cva;
|
|
204
205
|
exports.cx = require_styles_styler.cx;
|
|
206
|
+
exports.defineTheme = require_theme.defineTheme;
|
|
205
207
|
exports.deprecatedAlwaysPalette = require_index.deprecatedAlwaysPalette;
|
|
206
208
|
exports.entries = require_tokens_utils_entries.entries;
|
|
207
209
|
exports.findFixtureType = require_buildConfigSchema.findFixtureType;
|
package/dist/index.d.cts
CHANGED
|
@@ -88,4 +88,6 @@ import { UDSConfigProvider, UDSConfigProviderProps } from "./components/client/p
|
|
|
88
88
|
import "./components/index.cjs";
|
|
89
89
|
import "./runtime/index.cjs";
|
|
90
90
|
import { SetState } from "./types.cjs";
|
|
91
|
-
|
|
91
|
+
import { defineTheme } from "./tailwind/dist/css/theme.cjs";
|
|
92
|
+
import "./tailwind/dist/index.cjs";
|
|
93
|
+
export { ALWAYS_PREFIX, AVATAR_SIZE_PREFIX, AllPossibleProperties, AllSelectors, AllVariantKeys, AlwaysPaletteAlias, AlwaysPaletteAliasWithPrefix, AlwaysPaletteColor, Animation, AriaAttribute, AutoComponentName, Avatar, AvatarAbbreviationStrategy, AvatarConfig, AvatarIcon, AvatarIconProps, AvatarImage, AvatarImageProps, AvatarProps, AvatarShape, AvatarSize, AvatarSizeConfig, AvatarText, AvatarTextProps, AvatarVariant, BACKGROUND_BLUR_COLOR_PREFIX, BACKGROUND_BLUR_FALLBACK_COLOR_PREFIX, BACKGROUND_BLUR_RADIUS_PREFIX, BACKGROUND_COLOR_PREFIX, BORDER_RADIUS_PREFIX, BORDER_WIDTH_PREFIX, BUTTON_GAP_VAR, BUTTON_SCALE_EFFECT, BUTTON_SCALE_EFFECT_HOVER, BUTTON_SCALE_EFFECT_PRESSED, BUTTON_SCALE_EFFECT_REST, BackgroundColor, BackgroundPalette, BackgroundPaletteAlias, BackgroundStyleProps, BackwardsCompatibleReactElement, Badge, BadgeConfig, BadgeProps, BadgeSize, BadgeVariant, BaseSelector, BorderRadius, BorderRadiusConfig, BorderStyleProps, BorderWidth, BorderWidthConfig, BorderWidthWithElevation, Box, BoxProps, Breakpoint, BreakpointValue, BreakpointWithBase, BreakpointsConfig, Button, ButtonConfig, ButtonPalette, ButtonPaletteColor, ButtonProps, ButtonSize, ButtonSpectrumColor, ButtonVariant, ButtonVariantFlat, Checkbox, CheckboxConfig, CheckboxProps, CheckboxSize, CheckboxValue, CheckboxVariant, Chip, ChipButton, ChipButtonProps, ChipConfig, ChipDismissible, ChipDismissibleProps, ChipLink, ChipLinkProps, ChipProps, ChipSize, ChipToggle, ChipToggleProps, ChipVariant, ColorMode, ColorModeConfig, ColorModeForApp, ColorsConfig, ComponentConfig, ComponentSchema, ComponentStateConfig, ConfigurableComponentName, ConfigurablePropertiesName, CssStyleObject, CustomSizingStyleProps, DARK_COLOR_MODE_CLASSNAME, DEFAULT_COLOR_MODE, DEFAULT_COLOR_MODE_CLASSNAME, DEFAULT_COLOR_MODE_FOR_APP, DEFAULT_HIGH_CONTRAST_MODE, DEFAULT_REGION_MODE, DEFAULT_SCALE_MODE, DEFAULT_SCALE_MODE_CLASSNAME, DEFAULT_SCALE_MODE_FOR_APP, DROP_SHADOW_PREFIX, DataAttribute, DeprecatedAlwaysPaletteAlias, Display, Divider, DividerConfig, DividerProps, DividerVariant, ElevationAlias, ElevationBackgroundFillColor, ElevationBorderColor, ElevationConfig, ElevationCustomShadows, ElevationGlobalRampConfig, ElevationGlobalRampSettings, ElevationLevel, ElevationPreset, ElevationSurfaceColor, ExtractUrlFromFontFaceRule, FONT_DECLARATIONS_MAP, FONT_FAMILY_PREFIX, FONT_SIZE_PREFIX, FONT_SLANT_PREFIX, FONT_WEIGHT_PREFIX, FONT_WIDTH_PREFIX, Flex, FlexAlignContent, FlexAlignItems, FlexAlignSelf, FlexBasis, FlexDirection, FlexGrow, FlexJustifyContent, FlexShrink, FlexStyleProps, FlexWrap, FocusRingColor, FocusRingConfig, FocusRingModeConfig, FocusRingOffset, FocusRingWidth, FontAlias, FontAxisConfig, FontConfig, FontCssVar, FontDeclarationConfig, FontDeclarationItemConfig, FontDeclarationMap, FontFamilyCDNUrl, FontFamilyConfig, FontID, FontSize, FontSizeConfig, FontSlantConfig, FontType, FontUrlConfig, FontUrlMap, FontWeightConfig, FontWeightDescriptive, FontWeightForFont, FontWeightNumeric, FontWidthConfig, ForegroundColor, ForegroundPalette, ForegroundPaletteAlias, FormLabel, FormLabelProps, GenericIconComponent, GetMotionVarParams, GlobalDefaultsConfig, HStack, HStackProps, HighContrastMode, Hue, HueStep, ICON_SIZE_PREFIX, INVERT_COLOR_MODE_CLASSNAME, Icon, IconButton, IconButtonConfig, IconButtonProps, IconButtonSize, IconPixelSize, IconProps, IconPropsWithSVGProps, IconSize, IconSizeConfig, IconSlotRenderProps, IconVariant, Image, ImageProps, ImagePropsWithImgProps, ImageStyleProps, ImgElementProps, Input, InputConfig, InputHelpText, InputHelpTextProps, InputProps, InputSize, LARGE_SCALE_MODE_CLASSNAME, LETTER_SPACING_PREFIX, LIGHT_COLOR_MODE_CLASSNAME, LINE_COLOR_PREFIX, LINE_HEIGHT_PREFIX, LayerConfig, LayoutStyleProps, LineClampAlias, LineColor, LineHeight, LineHeightConfig, LinePalette, LinePaletteAlias, Link, LinkConfig, LinkProps, LinkTextVariant, LinkVariant, LinkableValue, MEDIUM_SCALE_MODE_CLASSNAME, MOTION_PREFIX, MaxLengthArray, Menu_index_d_exports as Menu, MenuContentConfig, MenuContentProps, MenuDividerProps, MenuItemCheckboxProps, MenuItemConfig, MenuItemProps, MenuPlacement, MenuProviderProps, MenuTriggerProps, Modes, MotionConfig, MotionCssVar, MotionSpringConfig, MotionSpringConfigOptions, MotionVariant, MotionVariantSpeed, MotionVariantValues, NestedBorderRadiusStyleProps, OUTLINE_PREFIX, OpacityStep, Overflow, PSEUDO_STYLE_SELECTOR_MAP, Palette, PaletteConfig, PaletteType, PaletteValue, ParentVariantSelector, Percentage, PercentageUnit, PixelsUnit, PlatformMode, Position, PossibleStates, PossibleStatesWithRest, Pressable, PressableProps, PropertyToPaletteAliasMap, RGBAUnit, RGBColorValue, RGBUnit, Radio, RadioConfig, RadioGroupProvider, RadioGroupProviderProps, RadioProps, RadioSize, RadioValue, RadioVariant, RegionMode, RemsUnit, ResolvedTokensConfig, SMALL_SCALE_MODE_CLASSNAME, SPECTRUM_COLOR_PREFIX, SVGElementProps, SYSTEM_COLOR_MODE_CLASSNAME, ScaleConfig, ScaleEffect, ScaleMode, ScaleModeConfig, ScaleModeForApp, SelectedConfigurableProperty, SetState, ShadowAlwaysColor, ShadowColor, ShadowColorConfig, ShadowConfig, ShadowOffset, ShadowOpacity, ShadowPalette, ShadowPaletteAlias, ShadowPaletteColor, ShadowPreset, ShadowSpectrumColor, ShadowSpreadRadius, ShadowStyleProps, ShadowType, ShadowTypeConfig, ShadowVariant, ShadowVariantConfig, ShadowVariantInvert, ShadowVariantWithElevation, ShadowVariantWithInvert, SharedPaletteAlias, SizeStyleProps, SpacingAlias, SpacingConfig, SpacingStyleProps, SpectrumColor, SpectrumConfig, SpectrumRGB, SpectrumValue, SpectrumValueEntry, SpringMotionConfig, SpringMotionConfigProps, StateStyleProps, StyleProps, SubComponentConfig, Switch, SwitchConfig, SwitchProps, SwitchSize, TEXT_RESPONSIVE_BREAKPOINT_CLASSNAMES, TEXT_RESPONSIVE_CLASSNAME, TEXT_TRANSFORM_PREFIX, TShirtSize, TShirtSizeCommon, Text, TextDecorationLine, TextProperty, TextProps, TextStyleProps, TextTransform, TextTransformConfig, TextVariant, TextVariantTypography, TextVariantUi, TextVariantWithoutEmphasized, Toast, ToastConfig, ToastContainer, ToastContainerProps, ToastLoadingPromise, ToastPortal, ToastPortalProps, ToastPosition, ToastProps, ToastSize, ToastVariant, Tooltip, TooltipConfig, TooltipContent, UniversalTooltipContentProps as TooltipContentProps, TooltipPlacement, UniversalTooltipProps as TooltipProps, TooltipSize, TooltipTrigger, UniversalTooltipTriggerProps as TooltipTriggerProps, TooltipVariant, TransitionDelay, TransitionDuration, TransitionTiming, TypographyConfig, TypographyResponsiveProperty, TypographyStyle, TypographyStyleProperty, TypographyUnitValue, UDSBreakpointsConfigContextType, UDSBreakpointsConfigProvider, UDSBreakpointsConfigProviderProps, UDSConfigContextType, UDSConfigProvider, UDSConfigProviderProps, UDSToastConfigContextType, UDSToastConfigProvider, UDSToastConfigProviderProps, UDSTooltipConfigContextType, UDSTooltipConfigProvider, UDSTooltipConfigProviderProps, UDS_PREFIX, UdsCssVar, UnitlessUnit, UniversalAvatarBaseProps, UniversalAvatarIconProps, UniversalAvatarImageProps, UniversalAvatarProps, UniversalAvatarTextProps, UniversalBadgeProps, UniversalBoxProps, UniversalButtonProps, UniversalCheckboxProps, UniversalChipBaseProps, UniversalChipButtonProps, UniversalChipDismissibleProps, UniversalChipLinkProps, UniversalChipProps, UniversalChipToggleProps, UniversalDividerProps, UniversalFormLabelProps, UniversalIconButtonProps, UniversalIconProps, UniversalIconSlot, UniversalImageProps, UniversalInputProps, UniversalLinkProps, UniversalMenuItemProps, UniversalPressableProps, UniversalRadioGroupProps, UniversalRadioProps, UniversalStackProps, UniversalSwitchProps, UniversalTextProps, UniversalToastProps, UniversalTokensConfig, UniversalTokensConfigAuto, UniversalTokensConfigAutoBase, UniversalTokensConfigBase, UniversalTokensConfigGeneric, UniversalTooltipContentProps, UniversalTooltipProps, UniversalTooltipTriggerProps, VStack, VStackProps, VariantConfig, VariantConfigWithComponentStates, VariantConfigWithProperties, XLARGE_SCALE_MODE_CLASSNAME, XSMALL_SCALE_MODE_CLASSNAME, XXLARGE_SCALE_MODE_CLASSNAME, XXXLARGE_SCALE_MODE_CLASSNAME, alwaysPalette, buildConfigSchema, cartesianProduct, coalesceConfigVariant, configToBreakpointsConfigContext, configToToastConfigContext, configToTooltipConfigContext, configToUDSConfigContext, createComponentStates, createConfigurableProperty, createLayerConfig, createSubComponentConfig, createToast, createVariantConfig, createVariantConfigWithComponentStates, createVariantConfigWithProperties, cva, cx, defineTheme, deprecatedAlwaysPalette, entries, findFixtureType, fontUrls, fromEntries, generateClassName, generateConfigStyles, generateDeclaration, generateDefaultClassName, generateKeyFromFlatConfigPath, generateSchemaKey, generateStyles, getConfigDefaultValue, getConfigSubcomponents, getConfigVariantComponentStates, getConfigVariantComponentStatesMatrix, getConfigVariantProperties, getConfigVariantPseudoStates, getConfigVariants, getFontUrls, getFontUrlsByIds, getMotionVar, getShadowLayerValue, getStyles, getStylesCacheKeySymbol, isConfigDefaultValue, mapValues, newAlwaysPalette, parseButtonVariantFlat, shadow, spectrumRgbToString, statePseudoMapDocsMode, textVariantsSafe, toRgbChannel, toSpectrumValueEntry, useBreakpointsConfig, useToastConfig, variants };
|