@yahoo/uds 3.156.2 → 3.157.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/generated/autoVariants.cjs +9 -4
- package/dist/automated-config/dist/generated/autoVariants.d.cts +2 -1
- package/dist/automated-config/dist/generated/autoVariants.d.ts +2 -1
- package/dist/automated-config/dist/generated/autoVariants.js +9 -4
- package/dist/automated-config/dist/generated/generatedConfigs.cjs +3078 -3089
- package/dist/automated-config/dist/generated/generatedConfigs.d.cts +158 -141
- package/dist/automated-config/dist/generated/generatedConfigs.d.ts +158 -141
- package/dist/automated-config/dist/generated/generatedConfigs.js +3078 -3089
- package/dist/automated-config/dist/generated/universalTokensConfigAuto.cjs +1217 -491
- package/dist/automated-config/dist/generated/universalTokensConfigAuto.d.cts +4 -1
- package/dist/automated-config/dist/generated/universalTokensConfigAuto.d.ts +4 -1
- package/dist/automated-config/dist/generated/universalTokensConfigAuto.js +1217 -491
- package/dist/automated-config/dist/properties.cjs +9 -2
- package/dist/automated-config/dist/properties.d.cts +23 -0
- package/dist/automated-config/dist/properties.d.ts +23 -0
- package/dist/automated-config/dist/properties.js +9 -2
- package/dist/automated-config/dist/types/ComponentConfig.d.cts +77 -4
- package/dist/automated-config/dist/types/ComponentConfig.d.ts +77 -4
- package/dist/automated-config/dist/types/ConfigSchema.d.cts +14 -2
- package/dist/automated-config/dist/types/ConfigSchema.d.ts +14 -2
- package/dist/automated-config/dist/types/StateAxis.cjs +90 -0
- package/dist/automated-config/dist/types/StateAxis.d.cts +70 -0
- package/dist/automated-config/dist/types/StateAxis.d.ts +70 -0
- package/dist/automated-config/dist/types/StateAxis.js +84 -0
- package/dist/automated-config/dist/utils/buildConfigSchema.cjs +105 -82
- package/dist/automated-config/dist/utils/buildConfigSchema.d.cts +41 -12
- package/dist/automated-config/dist/utils/buildConfigSchema.d.ts +41 -12
- package/dist/automated-config/dist/utils/buildConfigSchema.js +106 -83
- package/dist/automated-config/dist/utils/canonicalizeStateKey.cjs +32 -0
- package/dist/automated-config/dist/utils/canonicalizeStateKey.d.cts +48 -0
- package/dist/automated-config/dist/utils/canonicalizeStateKey.d.ts +48 -0
- package/dist/automated-config/dist/utils/canonicalizeStateKey.js +31 -0
- package/dist/automated-config/dist/utils/getButtonControlHeight.cjs +129 -0
- package/dist/automated-config/dist/utils/getButtonControlHeight.d.cts +133 -0
- package/dist/automated-config/dist/utils/getButtonControlHeight.d.ts +133 -0
- package/dist/automated-config/dist/utils/getButtonControlHeight.js +122 -0
- package/dist/automated-config/dist/utils/getButtonControlHeightPx.cjs +114 -0
- package/dist/automated-config/dist/utils/getButtonControlHeightPx.d.cts +78 -0
- package/dist/automated-config/dist/utils/getButtonControlHeightPx.d.ts +78 -0
- package/dist/automated-config/dist/utils/getButtonControlHeightPx.js +108 -0
- package/dist/automated-config/dist/utils/getConfigComponentVariant.d.cts +8 -0
- package/dist/automated-config/dist/utils/getConfigComponentVariant.d.ts +8 -0
- package/dist/automated-config/dist/utils/getConfigVariantProperties.d.cts +3 -3
- package/dist/automated-config/dist/utils/getConfigVariantProperties.d.ts +3 -3
- package/dist/automated-config/dist/utils/getConfigVariantPseudoStates.cjs +12 -5
- package/dist/automated-config/dist/utils/getConfigVariantPseudoStates.d.cts +8 -1
- package/dist/automated-config/dist/utils/getConfigVariantPseudoStates.d.ts +8 -1
- package/dist/automated-config/dist/utils/getConfigVariantPseudoStates.js +12 -5
- package/dist/automated-config/dist/utils/iconButtonMatchButtonHeight.cjs +110 -0
- package/dist/automated-config/dist/utils/iconButtonMatchButtonHeight.d.cts +19 -0
- package/dist/automated-config/dist/utils/iconButtonMatchButtonHeight.d.ts +19 -0
- package/dist/automated-config/dist/utils/iconButtonMatchButtonHeight.js +108 -0
- package/dist/automated-config/dist/utils/index.cjs +478 -111
- package/dist/automated-config/dist/utils/index.d.cts +76 -15
- package/dist/automated-config/dist/utils/index.d.ts +76 -15
- package/dist/automated-config/dist/utils/index.js +479 -113
- package/dist/automated-config/dist/utils/isConfiguratorPropertyVisible.cjs +15 -0
- package/dist/automated-config/dist/utils/isConfiguratorPropertyVisible.d.cts +20 -0
- package/dist/automated-config/dist/utils/isConfiguratorPropertyVisible.d.ts +20 -0
- package/dist/automated-config/dist/utils/isConfiguratorPropertyVisible.js +15 -0
- package/dist/automated-config/dist/utils/pseudoStateSelectors.cjs +122 -0
- package/dist/automated-config/dist/utils/pseudoStateSelectors.d.cts +80 -0
- package/dist/automated-config/dist/utils/pseudoStateSelectors.d.ts +80 -0
- package/dist/automated-config/dist/utils/pseudoStateSelectors.js +120 -0
- package/dist/automated-config/dist/utils/resolvePropertyStates.cjs +131 -0
- package/dist/automated-config/dist/utils/resolvePropertyStates.d.cts +49 -0
- package/dist/automated-config/dist/utils/resolvePropertyStates.d.ts +49 -0
- package/dist/automated-config/dist/utils/resolvePropertyStates.js +130 -0
- package/dist/automated-config/dist/utils/resolveSlotByCascade.cjs +118 -0
- package/dist/automated-config/dist/utils/resolveSlotByCascade.d.cts +68 -0
- package/dist/automated-config/dist/utils/resolveSlotByCascade.d.ts +68 -0
- package/dist/automated-config/dist/utils/resolveSlotByCascade.js +117 -0
- package/dist/automated-config/dist/utils/variantConfigGuards.d.cts +13 -0
- package/dist/automated-config/dist/utils/variantConfigGuards.d.ts +13 -0
- package/dist/components/client/Button.cjs +3 -3
- package/dist/components/client/Button.js +3 -3
- package/dist/components/client/Input/Input.cjs +42 -6
- package/dist/components/client/Input/Input.d.cts +13 -0
- package/dist/components/client/Input/Input.d.ts +13 -0
- package/dist/components/client/Input/Input.js +42 -6
- package/dist/components/client/Menu/Menu.ItemCheckbox.d.cts +1 -1
- package/dist/components/client/Menu/Menu.ItemCheckbox.d.ts +1 -1
- package/dist/config/dist/index.cjs +224 -553
- package/dist/config/dist/index.js +224 -553
- package/dist/css/dist/commands/css.cjs +1 -0
- package/dist/css/dist/commands/css.helpers.cjs +6 -0
- package/dist/css/dist/commands/css.helpers.js +6 -0
- package/dist/css/dist/commands/css.js +1 -0
- package/dist/css/dist/css/generate.cjs +4 -2
- package/dist/css/dist/css/generate.d.cts +28 -0
- package/dist/css/dist/css/generate.d.ts +28 -0
- package/dist/css/dist/css/generate.helpers.cjs +5 -1
- package/dist/css/dist/css/generate.helpers.js +6 -2
- package/dist/css/dist/css/generate.js +4 -2
- package/dist/css/dist/css/postcss.cjs +81 -0
- package/dist/css/dist/css/postcss.helpers.cjs +60 -0
- package/dist/css/dist/css/postcss.helpers.js +59 -1
- package/dist/css/dist/css/postcss.js +82 -2
- package/dist/css/dist/css/runner.cjs +12 -2
- package/dist/css/dist/css/runner.js +12 -2
- package/dist/css/dist/css/theme.d.cts +6 -0
- package/dist/css/dist/css/theme.d.ts +6 -0
- package/dist/css/dist/packages/automated-config/dist/properties.cjs +9 -2
- package/dist/css/dist/packages/automated-config/dist/properties.js +9 -2
- package/dist/css/dist/packages/automated-config/dist/utils/index.d.cts +6 -0
- package/dist/css/dist/packages/automated-config/dist/utils/index.d.ts +6 -0
- package/dist/css/dist/packages/config/dist/index.cjs +224 -553
- package/dist/css/dist/packages/config/dist/index.js +224 -553
- package/dist/css/dist/utils/optimizeCSS.cjs +59 -0
- package/dist/css/dist/utils/optimizeCSS.js +59 -0
- package/dist/css-tokens/dist/index.cjs +2 -0
- package/dist/css-tokens/dist/index.d.cts +2 -1
- package/dist/css-tokens/dist/index.d.ts +2 -1
- package/dist/css-tokens/dist/index.js +2 -1
- package/dist/index.cjs +48 -0
- package/dist/index.d.cts +15 -4
- package/dist/index.d.ts +15 -4
- package/dist/index.js +14 -3
- package/dist/styles/styler.d.cts +8 -7
- package/dist/styles/styler.d.ts +8 -7
- package/dist/styles/variants.d.cts +9 -4
- package/dist/styles/variants.d.ts +9 -4
- package/dist/tailwind-internal/dist/packages/automated-config/dist/generated/generatedConfigs.cjs +3078 -3089
- package/dist/tailwind-internal/dist/packages/automated-config/dist/generated/generatedConfigs.js +3078 -3089
- package/dist/tailwind-internal/dist/packages/automated-config/dist/properties.cjs +9 -2
- package/dist/tailwind-internal/dist/packages/automated-config/dist/properties.js +9 -2
- package/dist/tailwind-internal/dist/packages/automated-config/dist/types/StateAxis.cjs +81 -0
- package/dist/tailwind-internal/dist/packages/automated-config/dist/types/StateAxis.js +76 -0
- package/dist/tailwind-internal/dist/packages/automated-config/dist/utils/canonicalizeStateKey.cjs +33 -0
- package/dist/tailwind-internal/dist/packages/automated-config/dist/utils/canonicalizeStateKey.js +32 -0
- package/dist/tailwind-internal/dist/packages/automated-config/dist/utils/componentStatePseudoStates.cjs +0 -7
- package/dist/tailwind-internal/dist/packages/automated-config/dist/utils/componentStatePseudoStates.js +1 -7
- package/dist/tailwind-internal/dist/packages/automated-config/dist/utils/getButtonControlHeight.cjs +126 -0
- package/dist/tailwind-internal/dist/packages/automated-config/dist/utils/getButtonControlHeight.js +123 -0
- package/dist/tailwind-internal/dist/packages/automated-config/dist/utils/iconButtonMatchButtonHeight.cjs +20 -0
- package/dist/tailwind-internal/dist/packages/automated-config/dist/utils/iconButtonMatchButtonHeight.js +20 -0
- package/dist/tailwind-internal/dist/packages/automated-config/dist/utils/index.cjs +422 -111
- package/dist/tailwind-internal/dist/packages/automated-config/dist/utils/index.d.cts +6 -0
- package/dist/tailwind-internal/dist/packages/automated-config/dist/utils/index.d.ts +6 -0
- package/dist/tailwind-internal/dist/packages/automated-config/dist/utils/index.js +423 -112
- package/dist/tailwind-internal/dist/packages/automated-config/dist/utils/pseudoStateSelectors.cjs +122 -0
- package/dist/tailwind-internal/dist/packages/automated-config/dist/utils/pseudoStateSelectors.js +121 -0
- package/dist/tailwind-internal/dist/packages/automated-config/dist/utils/resolvePropertyStates.cjs +132 -0
- package/dist/tailwind-internal/dist/packages/automated-config/dist/utils/resolvePropertyStates.js +131 -0
- package/dist/tailwind-internal/dist/packages/automated-config/dist/utils/resolveSlotByCascade.cjs +95 -0
- package/dist/tailwind-internal/dist/packages/automated-config/dist/utils/resolveSlotByCascade.js +95 -0
- package/dist/tailwind-internal/dist/packages/config/dist/index.cjs +224 -553
- package/dist/tailwind-internal/dist/packages/config/dist/index.js +224 -553
- package/dist/tailwind-internal/dist/packages/css-tokens/dist/index.cjs +2 -0
- package/dist/tailwind-internal/dist/packages/css-tokens/dist/index.js +2 -1
- package/dist/tailwind-internal/dist/plugins/components.cjs +28 -24
- package/dist/tailwind-internal/dist/plugins/components.js +28 -24
- package/dist/tailwind-internal/dist/utils/composeTailwindPlugins.d.cts +3 -0
- package/dist/tailwind-internal/dist/utils/composeTailwindPlugins.d.ts +3 -0
- package/dist/tailwind-internal/dist/utils/getShadowStyles.d.cts +2 -2
- package/dist/tailwind-internal/dist/utils/getShadowStyles.d.ts +2 -2
- package/dist/tokens/automation/index.cjs +47 -0
- package/dist/tokens/automation/index.d.cts +13 -2
- package/dist/tokens/automation/index.d.ts +13 -2
- package/dist/tokens/automation/index.js +13 -2
- package/dist/tokens/consts/cssTokens.cjs +1 -0
- package/dist/tokens/consts/cssTokens.d.cts +2 -2
- package/dist/tokens/consts/cssTokens.d.ts +2 -2
- package/dist/tokens/consts/cssTokens.js +2 -2
- package/dist/tokens/index.cjs +48 -0
- package/dist/tokens/index.d.cts +15 -4
- package/dist/tokens/index.d.ts +15 -4
- package/dist/tokens/index.js +14 -3
- package/dist/tokens/types.d.cts +1 -1
- package/dist/tokens/types.d.ts +1 -1
- package/dist/uds/generated/componentData.cjs +2177 -2172
- package/dist/uds/generated/componentData.js +2177 -2172
- package/dist/uds/generated/migrationSchemaVersion.cjs +1 -1
- package/dist/uds/generated/migrationSchemaVersion.js +1 -1
- package/dist/uds/generated/tailwindPurge.cjs +79 -78
- package/dist/uds/generated/tailwindPurge.js +79 -78
- package/generated/componentData.json +2718 -2713
- package/generated/migrationSchemaVersion.ts +1 -1
- package/generated/tailwindPurge.ts +2 -2
- package/package.json +1 -1
|
@@ -218,6 +218,64 @@ function aggregateDuplicateSelectorsPlugin() {
|
|
|
218
218
|
}
|
|
219
219
|
aggregateDuplicateSelectorsPlugin.postcss = true;
|
|
220
220
|
/**
|
|
221
|
+
* PostCSS plugin that merges *adjacent* sibling rules sharing an identical
|
|
222
|
+
* declaration block into a single comma-separated selector group, e.g.
|
|
223
|
+
*
|
|
224
|
+
* .a { color: red } .b { color: red } -> .a, .b { color: red }
|
|
225
|
+
*
|
|
226
|
+
* Cascade safety: only consecutive rule siblings (comments ignored) are
|
|
227
|
+
* merged. Because there is no rule between them, collapsing two identical
|
|
228
|
+
* declaration blocks into one grouped rule produces an identical computed
|
|
229
|
+
* result for every selector — no rule is hoisted past an intervening override.
|
|
230
|
+
* An at-rule, declaration, or a rule with a different declaration block breaks
|
|
231
|
+
* the adjacency run. Rules are never merged across container (e.g. `@media`)
|
|
232
|
+
* boundaries.
|
|
233
|
+
*
|
|
234
|
+
* This is the inverse of {@link aggregateDuplicateSelectorsPlugin} (which
|
|
235
|
+
* merges identical *selectors*); here we merge identical *declaration blocks*.
|
|
236
|
+
* It primarily benefits state-heavy components whose generator emits many
|
|
237
|
+
* consecutive rules with the same declaration across different state selectors.
|
|
238
|
+
*/
|
|
239
|
+
function mergeAdjacentIdenticalRulesPlugin() {
|
|
240
|
+
const fingerprint = (rule) => {
|
|
241
|
+
const decls = [];
|
|
242
|
+
for (const node of rule.nodes ?? []) if (node.type === "decl") decls.push(`${node.prop}:${node.value}${node.important ? "!important" : ""}`);
|
|
243
|
+
else return `\u0000nonmergeable`;
|
|
244
|
+
return decls.join(";");
|
|
245
|
+
};
|
|
246
|
+
const mergeContainer = (container) => {
|
|
247
|
+
let head = null;
|
|
248
|
+
let headFingerprint = "";
|
|
249
|
+
const children = container.nodes ? [...container.nodes] : [];
|
|
250
|
+
for (const node of children) {
|
|
251
|
+
if (node.type === "comment") continue;
|
|
252
|
+
if (node.type !== "rule") {
|
|
253
|
+
head = null;
|
|
254
|
+
headFingerprint = "";
|
|
255
|
+
continue;
|
|
256
|
+
}
|
|
257
|
+
const rule = node;
|
|
258
|
+
const ruleFingerprint = fingerprint(rule);
|
|
259
|
+
const isMergeable = ruleFingerprint.length > 0 && !ruleFingerprint.startsWith("\0");
|
|
260
|
+
if (head && isMergeable && ruleFingerprint === headFingerprint) {
|
|
261
|
+
head.selector = `${head.selector}, ${rule.selector}`;
|
|
262
|
+
rule.remove();
|
|
263
|
+
continue;
|
|
264
|
+
}
|
|
265
|
+
head = rule;
|
|
266
|
+
headFingerprint = isMergeable ? ruleFingerprint : "";
|
|
267
|
+
}
|
|
268
|
+
};
|
|
269
|
+
return {
|
|
270
|
+
postcssPlugin: "merge-adjacent-identical-rules",
|
|
271
|
+
OnceExit(root) {
|
|
272
|
+
mergeContainer(root);
|
|
273
|
+
root.walkAtRules((atRule) => mergeContainer(atRule));
|
|
274
|
+
}
|
|
275
|
+
};
|
|
276
|
+
}
|
|
277
|
+
mergeAdjacentIdenticalRulesPlugin.postcss = true;
|
|
278
|
+
/**
|
|
221
279
|
* Validates CSS syntax and returns any errors found.
|
|
222
280
|
*/
|
|
223
281
|
function validateCSS(css) {
|
|
@@ -383,6 +441,7 @@ async function optimizeCSS(css, options) {
|
|
|
383
441
|
}
|
|
384
442
|
if (options?.removeEmptyRules !== false) plugins.push(removeEmptyRulesPlugin());
|
|
385
443
|
if (options?.aggregateDuplicateSelectors !== false) plugins.push(aggregateDuplicateSelectorsPlugin());
|
|
444
|
+
if (options?.mergeIdenticalDeclarations !== false) plugins.push(mergeAdjacentIdenticalRulesPlugin());
|
|
386
445
|
const optimizedCSS = (plugins.length > 0 ? await (0, postcss.default)(plugins).process(css, { from: void 0 }) : { css }).css;
|
|
387
446
|
const optimizedSize = Buffer.byteLength(optimizedCSS, "utf8");
|
|
388
447
|
const fontFacesAfter = (optimizedCSS.match(/@font-face/g) || []).length;
|
|
@@ -216,6 +216,64 @@ function aggregateDuplicateSelectorsPlugin() {
|
|
|
216
216
|
}
|
|
217
217
|
aggregateDuplicateSelectorsPlugin.postcss = true;
|
|
218
218
|
/**
|
|
219
|
+
* PostCSS plugin that merges *adjacent* sibling rules sharing an identical
|
|
220
|
+
* declaration block into a single comma-separated selector group, e.g.
|
|
221
|
+
*
|
|
222
|
+
* .a { color: red } .b { color: red } -> .a, .b { color: red }
|
|
223
|
+
*
|
|
224
|
+
* Cascade safety: only consecutive rule siblings (comments ignored) are
|
|
225
|
+
* merged. Because there is no rule between them, collapsing two identical
|
|
226
|
+
* declaration blocks into one grouped rule produces an identical computed
|
|
227
|
+
* result for every selector — no rule is hoisted past an intervening override.
|
|
228
|
+
* An at-rule, declaration, or a rule with a different declaration block breaks
|
|
229
|
+
* the adjacency run. Rules are never merged across container (e.g. `@media`)
|
|
230
|
+
* boundaries.
|
|
231
|
+
*
|
|
232
|
+
* This is the inverse of {@link aggregateDuplicateSelectorsPlugin} (which
|
|
233
|
+
* merges identical *selectors*); here we merge identical *declaration blocks*.
|
|
234
|
+
* It primarily benefits state-heavy components whose generator emits many
|
|
235
|
+
* consecutive rules with the same declaration across different state selectors.
|
|
236
|
+
*/
|
|
237
|
+
function mergeAdjacentIdenticalRulesPlugin() {
|
|
238
|
+
const fingerprint = (rule) => {
|
|
239
|
+
const decls = [];
|
|
240
|
+
for (const node of rule.nodes ?? []) if (node.type === "decl") decls.push(`${node.prop}:${node.value}${node.important ? "!important" : ""}`);
|
|
241
|
+
else return `\u0000nonmergeable`;
|
|
242
|
+
return decls.join(";");
|
|
243
|
+
};
|
|
244
|
+
const mergeContainer = (container) => {
|
|
245
|
+
let head = null;
|
|
246
|
+
let headFingerprint = "";
|
|
247
|
+
const children = container.nodes ? [...container.nodes] : [];
|
|
248
|
+
for (const node of children) {
|
|
249
|
+
if (node.type === "comment") continue;
|
|
250
|
+
if (node.type !== "rule") {
|
|
251
|
+
head = null;
|
|
252
|
+
headFingerprint = "";
|
|
253
|
+
continue;
|
|
254
|
+
}
|
|
255
|
+
const rule = node;
|
|
256
|
+
const ruleFingerprint = fingerprint(rule);
|
|
257
|
+
const isMergeable = ruleFingerprint.length > 0 && !ruleFingerprint.startsWith("\0");
|
|
258
|
+
if (head && isMergeable && ruleFingerprint === headFingerprint) {
|
|
259
|
+
head.selector = `${head.selector}, ${rule.selector}`;
|
|
260
|
+
rule.remove();
|
|
261
|
+
continue;
|
|
262
|
+
}
|
|
263
|
+
head = rule;
|
|
264
|
+
headFingerprint = isMergeable ? ruleFingerprint : "";
|
|
265
|
+
}
|
|
266
|
+
};
|
|
267
|
+
return {
|
|
268
|
+
postcssPlugin: "merge-adjacent-identical-rules",
|
|
269
|
+
OnceExit(root) {
|
|
270
|
+
mergeContainer(root);
|
|
271
|
+
root.walkAtRules((atRule) => mergeContainer(atRule));
|
|
272
|
+
}
|
|
273
|
+
};
|
|
274
|
+
}
|
|
275
|
+
mergeAdjacentIdenticalRulesPlugin.postcss = true;
|
|
276
|
+
/**
|
|
219
277
|
* Validates CSS syntax and returns any errors found.
|
|
220
278
|
*/
|
|
221
279
|
function validateCSS(css) {
|
|
@@ -381,6 +439,7 @@ async function optimizeCSS(css, options) {
|
|
|
381
439
|
}
|
|
382
440
|
if (options?.removeEmptyRules !== false) plugins.push(removeEmptyRulesPlugin());
|
|
383
441
|
if (options?.aggregateDuplicateSelectors !== false) plugins.push(aggregateDuplicateSelectorsPlugin());
|
|
442
|
+
if (options?.mergeIdenticalDeclarations !== false) plugins.push(mergeAdjacentIdenticalRulesPlugin());
|
|
384
443
|
const optimizedCSS = (plugins.length > 0 ? await postcss(plugins).process(css, { from: void 0 }) : { css }).css;
|
|
385
444
|
const optimizedSize = Buffer.byteLength(optimizedCSS, "utf8");
|
|
386
445
|
const fontFacesAfter = (optimizedCSS.match(/@font-face/g) || []).length;
|
|
@@ -50,6 +50,7 @@ const TEXT_RESPONSIVE_BREAKPOINT_CLASSNAMES = {
|
|
|
50
50
|
"2xl": "uds-text-2xl"
|
|
51
51
|
};
|
|
52
52
|
const BUTTON_GAP_VAR = `--uds-button-gap`;
|
|
53
|
+
const BUTTON_CONTROL_HEIGHT_VAR = `--uds-button-control-height`;
|
|
53
54
|
const BUTTON_SCALE_EFFECT = `--uds-button-scale-effect`;
|
|
54
55
|
const BUTTON_SCALE_EFFECT_REST = `${BUTTON_SCALE_EFFECT}-rest`;
|
|
55
56
|
const BUTTON_SCALE_EFFECT_HOVER = `${BUTTON_SCALE_EFFECT}-hover`;
|
|
@@ -131,6 +132,7 @@ exports.BACKGROUND_BLUR_RADIUS_PREFIX = BACKGROUND_BLUR_RADIUS_PREFIX;
|
|
|
131
132
|
exports.BACKGROUND_COLOR_PREFIX = BACKGROUND_COLOR_PREFIX;
|
|
132
133
|
exports.BORDER_RADIUS_PREFIX = BORDER_RADIUS_PREFIX;
|
|
133
134
|
exports.BORDER_WIDTH_PREFIX = BORDER_WIDTH_PREFIX;
|
|
135
|
+
exports.BUTTON_CONTROL_HEIGHT_VAR = BUTTON_CONTROL_HEIGHT_VAR;
|
|
134
136
|
exports.BUTTON_GAP_VAR = BUTTON_GAP_VAR;
|
|
135
137
|
exports.BUTTON_SCALE_EFFECT = BUTTON_SCALE_EFFECT;
|
|
136
138
|
exports.BUTTON_SCALE_EFFECT_HOVER = BUTTON_SCALE_EFFECT_HOVER;
|
|
@@ -42,6 +42,7 @@ declare const DEFAULT_SCALE_MODE_CLASSNAME = "uds-scale-mode-large";
|
|
|
42
42
|
declare const TEXT_RESPONSIVE_CLASSNAME = "uds-text-responsive";
|
|
43
43
|
declare const TEXT_RESPONSIVE_BREAKPOINT_CLASSNAMES: Record<BreakpointWithBase | 'defaultBreakpoint', string>;
|
|
44
44
|
declare const BUTTON_GAP_VAR = "--uds-button-gap";
|
|
45
|
+
declare const BUTTON_CONTROL_HEIGHT_VAR = "--uds-button-control-height";
|
|
45
46
|
declare const BUTTON_SCALE_EFFECT = "--uds-button-scale-effect";
|
|
46
47
|
declare const BUTTON_SCALE_EFFECT_REST = "--uds-button-scale-effect-rest";
|
|
47
48
|
declare const BUTTON_SCALE_EFFECT_HOVER = "--uds-button-scale-effect-hover";
|
|
@@ -94,4 +95,4 @@ declare function getMotionVar({
|
|
|
94
95
|
control
|
|
95
96
|
}: GetMotionVarParams): string; //#endregion
|
|
96
97
|
//#endregion
|
|
97
|
-
export { AVATAR_SIZE_PREFIX, 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, DARK_COLOR_MODE_CLASSNAME, DEFAULT_COLOR_MODE_CLASSNAME, DEFAULT_SCALE_MODE_CLASSNAME, DROP_SHADOW_PREFIX, FONT_FAMILY_PREFIX, FONT_SIZE_PREFIX, FONT_SLANT_PREFIX, FONT_WEIGHT_PREFIX, FONT_WIDTH_PREFIX, GetMotionVarParams, ICON_SIZE_PREFIX, INSET_SHADOW_PREFIX, INVERT_COLOR_MODE_CLASSNAME, LARGE_SCALE_MODE_CLASSNAME, LETTER_SPACING_PREFIX, LIGHT_COLOR_MODE_CLASSNAME, LINE_COLOR_PREFIX, LINE_HEIGHT_PREFIX, MEDIUM_SCALE_MODE_CLASSNAME, MOTION_PREFIX, OUTLINE_PREFIX, PSEUDO_STYLE_SELECTOR_MAP, SMALL_SCALE_MODE_CLASSNAME, SPECTRUM_COLOR_PREFIX, SYSTEM_COLOR_MODE_CLASSNAME, TEXT_RESPONSIVE_BREAKPOINT_CLASSNAMES, TEXT_RESPONSIVE_CLASSNAME, TEXT_TRANSFORM_PREFIX, UDS_PREFIX, XLARGE_SCALE_MODE_CLASSNAME, XSMALL_SCALE_MODE_CLASSNAME, XXLARGE_SCALE_MODE_CLASSNAME, XXXLARGE_SCALE_MODE_CLASSNAME, getMotionVar, getShadowLayerValue, textVariantsSafe };
|
|
98
|
+
export { AVATAR_SIZE_PREFIX, BACKGROUND_BLUR_COLOR_PREFIX, BACKGROUND_BLUR_FALLBACK_COLOR_PREFIX, BACKGROUND_BLUR_RADIUS_PREFIX, BACKGROUND_COLOR_PREFIX, BORDER_RADIUS_PREFIX, BORDER_WIDTH_PREFIX, BUTTON_CONTROL_HEIGHT_VAR, BUTTON_GAP_VAR, BUTTON_SCALE_EFFECT, BUTTON_SCALE_EFFECT_HOVER, BUTTON_SCALE_EFFECT_PRESSED, BUTTON_SCALE_EFFECT_REST, DARK_COLOR_MODE_CLASSNAME, DEFAULT_COLOR_MODE_CLASSNAME, DEFAULT_SCALE_MODE_CLASSNAME, DROP_SHADOW_PREFIX, FONT_FAMILY_PREFIX, FONT_SIZE_PREFIX, FONT_SLANT_PREFIX, FONT_WEIGHT_PREFIX, FONT_WIDTH_PREFIX, GetMotionVarParams, ICON_SIZE_PREFIX, INSET_SHADOW_PREFIX, INVERT_COLOR_MODE_CLASSNAME, LARGE_SCALE_MODE_CLASSNAME, LETTER_SPACING_PREFIX, LIGHT_COLOR_MODE_CLASSNAME, LINE_COLOR_PREFIX, LINE_HEIGHT_PREFIX, MEDIUM_SCALE_MODE_CLASSNAME, MOTION_PREFIX, OUTLINE_PREFIX, PSEUDO_STYLE_SELECTOR_MAP, SMALL_SCALE_MODE_CLASSNAME, SPECTRUM_COLOR_PREFIX, SYSTEM_COLOR_MODE_CLASSNAME, TEXT_RESPONSIVE_BREAKPOINT_CLASSNAMES, TEXT_RESPONSIVE_CLASSNAME, TEXT_TRANSFORM_PREFIX, UDS_PREFIX, XLARGE_SCALE_MODE_CLASSNAME, XSMALL_SCALE_MODE_CLASSNAME, XXLARGE_SCALE_MODE_CLASSNAME, XXXLARGE_SCALE_MODE_CLASSNAME, getMotionVar, getShadowLayerValue, textVariantsSafe };
|
|
@@ -42,6 +42,7 @@ declare const DEFAULT_SCALE_MODE_CLASSNAME = "uds-scale-mode-large";
|
|
|
42
42
|
declare const TEXT_RESPONSIVE_CLASSNAME = "uds-text-responsive";
|
|
43
43
|
declare const TEXT_RESPONSIVE_BREAKPOINT_CLASSNAMES: Record<BreakpointWithBase | 'defaultBreakpoint', string>;
|
|
44
44
|
declare const BUTTON_GAP_VAR = "--uds-button-gap";
|
|
45
|
+
declare const BUTTON_CONTROL_HEIGHT_VAR = "--uds-button-control-height";
|
|
45
46
|
declare const BUTTON_SCALE_EFFECT = "--uds-button-scale-effect";
|
|
46
47
|
declare const BUTTON_SCALE_EFFECT_REST = "--uds-button-scale-effect-rest";
|
|
47
48
|
declare const BUTTON_SCALE_EFFECT_HOVER = "--uds-button-scale-effect-hover";
|
|
@@ -94,4 +95,4 @@ declare function getMotionVar({
|
|
|
94
95
|
control
|
|
95
96
|
}: GetMotionVarParams): string; //#endregion
|
|
96
97
|
//#endregion
|
|
97
|
-
export { AVATAR_SIZE_PREFIX, 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, DARK_COLOR_MODE_CLASSNAME, DEFAULT_COLOR_MODE_CLASSNAME, DEFAULT_SCALE_MODE_CLASSNAME, DROP_SHADOW_PREFIX, FONT_FAMILY_PREFIX, FONT_SIZE_PREFIX, FONT_SLANT_PREFIX, FONT_WEIGHT_PREFIX, FONT_WIDTH_PREFIX, GetMotionVarParams, ICON_SIZE_PREFIX, INSET_SHADOW_PREFIX, INVERT_COLOR_MODE_CLASSNAME, LARGE_SCALE_MODE_CLASSNAME, LETTER_SPACING_PREFIX, LIGHT_COLOR_MODE_CLASSNAME, LINE_COLOR_PREFIX, LINE_HEIGHT_PREFIX, MEDIUM_SCALE_MODE_CLASSNAME, MOTION_PREFIX, OUTLINE_PREFIX, PSEUDO_STYLE_SELECTOR_MAP, SMALL_SCALE_MODE_CLASSNAME, SPECTRUM_COLOR_PREFIX, SYSTEM_COLOR_MODE_CLASSNAME, TEXT_RESPONSIVE_BREAKPOINT_CLASSNAMES, TEXT_RESPONSIVE_CLASSNAME, TEXT_TRANSFORM_PREFIX, UDS_PREFIX, XLARGE_SCALE_MODE_CLASSNAME, XSMALL_SCALE_MODE_CLASSNAME, XXLARGE_SCALE_MODE_CLASSNAME, XXXLARGE_SCALE_MODE_CLASSNAME, getMotionVar, getShadowLayerValue, textVariantsSafe };
|
|
98
|
+
export { AVATAR_SIZE_PREFIX, BACKGROUND_BLUR_COLOR_PREFIX, BACKGROUND_BLUR_FALLBACK_COLOR_PREFIX, BACKGROUND_BLUR_RADIUS_PREFIX, BACKGROUND_COLOR_PREFIX, BORDER_RADIUS_PREFIX, BORDER_WIDTH_PREFIX, BUTTON_CONTROL_HEIGHT_VAR, BUTTON_GAP_VAR, BUTTON_SCALE_EFFECT, BUTTON_SCALE_EFFECT_HOVER, BUTTON_SCALE_EFFECT_PRESSED, BUTTON_SCALE_EFFECT_REST, DARK_COLOR_MODE_CLASSNAME, DEFAULT_COLOR_MODE_CLASSNAME, DEFAULT_SCALE_MODE_CLASSNAME, DROP_SHADOW_PREFIX, FONT_FAMILY_PREFIX, FONT_SIZE_PREFIX, FONT_SLANT_PREFIX, FONT_WEIGHT_PREFIX, FONT_WIDTH_PREFIX, GetMotionVarParams, ICON_SIZE_PREFIX, INSET_SHADOW_PREFIX, INVERT_COLOR_MODE_CLASSNAME, LARGE_SCALE_MODE_CLASSNAME, LETTER_SPACING_PREFIX, LIGHT_COLOR_MODE_CLASSNAME, LINE_COLOR_PREFIX, LINE_HEIGHT_PREFIX, MEDIUM_SCALE_MODE_CLASSNAME, MOTION_PREFIX, OUTLINE_PREFIX, PSEUDO_STYLE_SELECTOR_MAP, SMALL_SCALE_MODE_CLASSNAME, SPECTRUM_COLOR_PREFIX, SYSTEM_COLOR_MODE_CLASSNAME, TEXT_RESPONSIVE_BREAKPOINT_CLASSNAMES, TEXT_RESPONSIVE_CLASSNAME, TEXT_TRANSFORM_PREFIX, UDS_PREFIX, XLARGE_SCALE_MODE_CLASSNAME, XSMALL_SCALE_MODE_CLASSNAME, XXLARGE_SCALE_MODE_CLASSNAME, XXXLARGE_SCALE_MODE_CLASSNAME, getMotionVar, getShadowLayerValue, textVariantsSafe };
|
|
@@ -50,6 +50,7 @@ const TEXT_RESPONSIVE_BREAKPOINT_CLASSNAMES = {
|
|
|
50
50
|
"2xl": "uds-text-2xl"
|
|
51
51
|
};
|
|
52
52
|
const BUTTON_GAP_VAR = `--uds-button-gap`;
|
|
53
|
+
const BUTTON_CONTROL_HEIGHT_VAR = `--uds-button-control-height`;
|
|
53
54
|
const BUTTON_SCALE_EFFECT = `--uds-button-scale-effect`;
|
|
54
55
|
const BUTTON_SCALE_EFFECT_REST = `${BUTTON_SCALE_EFFECT}-rest`;
|
|
55
56
|
const BUTTON_SCALE_EFFECT_HOVER = `${BUTTON_SCALE_EFFECT}-hover`;
|
|
@@ -124,4 +125,4 @@ function getMotionVar({ variant, speed, control }) {
|
|
|
124
125
|
].join("-")}`;
|
|
125
126
|
}
|
|
126
127
|
//#endregion
|
|
127
|
-
export { AVATAR_SIZE_PREFIX, 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, DARK_COLOR_MODE_CLASSNAME, DEFAULT_COLOR_MODE_CLASSNAME, DEFAULT_SCALE_MODE_CLASSNAME, DROP_SHADOW_PREFIX, FONT_FAMILY_PREFIX, FONT_SIZE_PREFIX, FONT_SLANT_PREFIX, FONT_WEIGHT_PREFIX, FONT_WIDTH_PREFIX, ICON_SIZE_PREFIX, INSET_SHADOW_PREFIX, INVERT_COLOR_MODE_CLASSNAME, LARGE_SCALE_MODE_CLASSNAME, LETTER_SPACING_PREFIX, LIGHT_COLOR_MODE_CLASSNAME, LINE_COLOR_PREFIX, LINE_HEIGHT_PREFIX, MEDIUM_SCALE_MODE_CLASSNAME, MOTION_PREFIX, OUTLINE_PREFIX, PSEUDO_STYLE_SELECTOR_MAP, SMALL_SCALE_MODE_CLASSNAME, SPECTRUM_COLOR_PREFIX, SYSTEM_COLOR_MODE_CLASSNAME, TEXT_RESPONSIVE_BREAKPOINT_CLASSNAMES, TEXT_RESPONSIVE_CLASSNAME, TEXT_TRANSFORM_PREFIX, UDS_PREFIX, XLARGE_SCALE_MODE_CLASSNAME, XSMALL_SCALE_MODE_CLASSNAME, XXLARGE_SCALE_MODE_CLASSNAME, XXXLARGE_SCALE_MODE_CLASSNAME, getMotionVar, getShadowLayerValue, textVariantsSafe };
|
|
128
|
+
export { AVATAR_SIZE_PREFIX, BACKGROUND_BLUR_COLOR_PREFIX, BACKGROUND_BLUR_FALLBACK_COLOR_PREFIX, BACKGROUND_BLUR_RADIUS_PREFIX, BACKGROUND_COLOR_PREFIX, BORDER_RADIUS_PREFIX, BORDER_WIDTH_PREFIX, BUTTON_CONTROL_HEIGHT_VAR, BUTTON_GAP_VAR, BUTTON_SCALE_EFFECT, BUTTON_SCALE_EFFECT_HOVER, BUTTON_SCALE_EFFECT_PRESSED, BUTTON_SCALE_EFFECT_REST, DARK_COLOR_MODE_CLASSNAME, DEFAULT_COLOR_MODE_CLASSNAME, DEFAULT_SCALE_MODE_CLASSNAME, DROP_SHADOW_PREFIX, FONT_FAMILY_PREFIX, FONT_SIZE_PREFIX, FONT_SLANT_PREFIX, FONT_WEIGHT_PREFIX, FONT_WIDTH_PREFIX, ICON_SIZE_PREFIX, INSET_SHADOW_PREFIX, INVERT_COLOR_MODE_CLASSNAME, LARGE_SCALE_MODE_CLASSNAME, LETTER_SPACING_PREFIX, LIGHT_COLOR_MODE_CLASSNAME, LINE_COLOR_PREFIX, LINE_HEIGHT_PREFIX, MEDIUM_SCALE_MODE_CLASSNAME, MOTION_PREFIX, OUTLINE_PREFIX, PSEUDO_STYLE_SELECTOR_MAP, SMALL_SCALE_MODE_CLASSNAME, SPECTRUM_COLOR_PREFIX, SYSTEM_COLOR_MODE_CLASSNAME, TEXT_RESPONSIVE_BREAKPOINT_CLASSNAMES, TEXT_RESPONSIVE_CLASSNAME, TEXT_TRANSFORM_PREFIX, UDS_PREFIX, XLARGE_SCALE_MODE_CLASSNAME, XSMALL_SCALE_MODE_CLASSNAME, XXLARGE_SCALE_MODE_CLASSNAME, XXXLARGE_SCALE_MODE_CLASSNAME, getMotionVar, getShadowLayerValue, textVariantsSafe };
|
package/dist/index.cjs
CHANGED
|
@@ -36,19 +36,30 @@ const require_components_client_BottomSheet_BottomSheetTrigger = require("./comp
|
|
|
36
36
|
const require_entries = require("./utils/dist/entries.cjs");
|
|
37
37
|
const require_fromEntries = require("./utils/dist/fromEntries.cjs");
|
|
38
38
|
const require_mapValues = require("./utils/dist/mapValues.cjs");
|
|
39
|
+
const require_StateAxis = require("./automated-config/dist/types/StateAxis.cjs");
|
|
39
40
|
const require_generateSchemaKey = require("./automated-config/dist/utils/generateSchemaKey.cjs");
|
|
41
|
+
const require_canonicalizeStateKey = require("./automated-config/dist/utils/canonicalizeStateKey.cjs");
|
|
42
|
+
const require_resolvePropertyStates = require("./automated-config/dist/utils/resolvePropertyStates.cjs");
|
|
43
|
+
const require_variantConfigGuards = require("./automated-config/dist/utils/variantConfigGuards.cjs");
|
|
40
44
|
const require_buildConfigSchema = require("./automated-config/dist/utils/buildConfigSchema.cjs");
|
|
41
45
|
const require_generateDefaultClassName = require("./automated-config/dist/utils/generateDefaultClassName.cjs");
|
|
46
|
+
const require_getButtonControlHeight = require("./automated-config/dist/utils/getButtonControlHeight.cjs");
|
|
47
|
+
const require_iconButtonMatchButtonHeight = require("./automated-config/dist/utils/iconButtonMatchButtonHeight.cjs");
|
|
48
|
+
const require_getButtonControlHeightPx = require("./automated-config/dist/utils/getButtonControlHeightPx.cjs");
|
|
49
|
+
const require_pseudoStateSelectors = require("./automated-config/dist/utils/pseudoStateSelectors.cjs");
|
|
50
|
+
const require_resolveSlotByCascade = require("./automated-config/dist/utils/resolveSlotByCascade.cjs");
|
|
42
51
|
const require_cartesianProduct = require("./automated-config/dist/utils/cartesianProduct.cjs");
|
|
43
52
|
const require_subcomponents = require("./automated-config/dist/utils/subcomponents.cjs");
|
|
44
53
|
const require_coalesceConfigVariant = require("./automated-config/dist/utils/coalesceConfigVariant.cjs");
|
|
45
54
|
const require_defaults = require("./automated-config/dist/utils/defaults.cjs");
|
|
46
55
|
const require_generateKeyFromFlatConfigPath = require("./automated-config/dist/utils/generateKeyFromFlatConfigPath.cjs");
|
|
56
|
+
const require_getConfigComponentVariant = require("./automated-config/dist/utils/getConfigComponentVariant.cjs");
|
|
47
57
|
const require_getConfigVariantComponentStatesMatrix = require("./automated-config/dist/utils/getConfigVariantComponentStatesMatrix.cjs");
|
|
48
58
|
const require_getConfigVariantProperties = require("./automated-config/dist/utils/getConfigVariantProperties.cjs");
|
|
49
59
|
const require_getConfigVariantPseudoStates = require("./automated-config/dist/utils/getConfigVariantPseudoStates.cjs");
|
|
50
60
|
const require_getConfigVariants = require("./automated-config/dist/utils/getConfigVariants.cjs");
|
|
51
61
|
const require_getPaginationControlWidthPx = require("./automated-config/dist/utils/getPaginationControlWidthPx.cjs");
|
|
62
|
+
const require_isConfiguratorPropertyVisible = require("./automated-config/dist/utils/isConfiguratorPropertyVisible.cjs");
|
|
52
63
|
const require_index$2 = require("./automated-config/dist/utils/index.cjs");
|
|
53
64
|
const require_components_client_SpringMotionConfig = require("./components/client/SpringMotionConfig.cjs");
|
|
54
65
|
const require_components_client_Button = require("./components/client/Button.cjs");
|
|
@@ -131,6 +142,7 @@ exports.BACKGROUND_BLUR_RADIUS_PREFIX = require_index$1.BACKGROUND_BLUR_RADIUS_P
|
|
|
131
142
|
exports.BACKGROUND_COLOR_PREFIX = require_index$1.BACKGROUND_COLOR_PREFIX;
|
|
132
143
|
exports.BORDER_RADIUS_PREFIX = require_index$1.BORDER_RADIUS_PREFIX;
|
|
133
144
|
exports.BORDER_WIDTH_PREFIX = require_index$1.BORDER_WIDTH_PREFIX;
|
|
145
|
+
exports.BUTTON_CONTROL_HEIGHT_VAR = require_index$1.BUTTON_CONTROL_HEIGHT_VAR;
|
|
134
146
|
exports.BUTTON_GAP_VAR = require_index$1.BUTTON_GAP_VAR;
|
|
135
147
|
exports.BUTTON_SCALE_EFFECT = require_index$1.BUTTON_SCALE_EFFECT;
|
|
136
148
|
exports.BUTTON_SCALE_EFFECT_HOVER = require_index$1.BUTTON_SCALE_EFFECT_HOVER;
|
|
@@ -185,6 +197,7 @@ exports.FormLabel = require_components_FormLabel.FormLabel;
|
|
|
185
197
|
exports.HStack = require_components_HStack.HStack;
|
|
186
198
|
exports.ICON_SIZE_PREFIX = require_index$1.ICON_SIZE_PREFIX;
|
|
187
199
|
exports.INSET_SHADOW_PREFIX = require_index$1.INSET_SHADOW_PREFIX;
|
|
200
|
+
exports.INTERACTIVE_ATOMICS = require_StateAxis.INTERACTIVE_ATOMICS;
|
|
188
201
|
exports.INVERT_COLOR_MODE_CLASSNAME = require_index$1.INVERT_COLOR_MODE_CLASSNAME;
|
|
189
202
|
exports.Icon = require_components_Icon.Icon;
|
|
190
203
|
exports.IconButton = require_components_client_IconButton.IconButton;
|
|
@@ -200,7 +213,9 @@ exports.LINE_COLOR_PREFIX = require_index$1.LINE_COLOR_PREFIX;
|
|
|
200
213
|
exports.LINE_HEIGHT_PREFIX = require_index$1.LINE_HEIGHT_PREFIX;
|
|
201
214
|
exports.Link = require_components_Link.Link;
|
|
202
215
|
exports.LinkConfig = require_generatedConfigs.LinkConfig;
|
|
216
|
+
exports.MAX_MODIFIERS_PER_COMPOUND = require_StateAxis.MAX_MODIFIERS_PER_COMPOUND;
|
|
203
217
|
exports.MEDIUM_SCALE_MODE_CLASSNAME = require_index$1.MEDIUM_SCALE_MODE_CLASSNAME;
|
|
218
|
+
exports.MODIFIER_ATOMICS = require_StateAxis.MODIFIER_ATOMICS;
|
|
204
219
|
exports.MOTION_PREFIX = require_index$1.MOTION_PREFIX;
|
|
205
220
|
Object.defineProperty(exports, "Menu", {
|
|
206
221
|
enumerable: true,
|
|
@@ -240,6 +255,7 @@ exports.Pressable = require_components_client_Pressable.Pressable;
|
|
|
240
255
|
exports.Radio = require_components_client_Radio_Radio.Radio;
|
|
241
256
|
exports.RadioConfig = require_generatedConfigs.RadioConfig;
|
|
242
257
|
exports.RadioGroupProvider = require_components_client_Radio_RadioGroupProvider.RadioGroupProvider;
|
|
258
|
+
exports.SHARED_BUTTON_ICONBUTTON_SIZES = require_getButtonControlHeight.SHARED_BUTTON_ICONBUTTON_SIZES;
|
|
243
259
|
exports.SMALL_SCALE_MODE_CLASSNAME = require_index$1.SMALL_SCALE_MODE_CLASSNAME;
|
|
244
260
|
exports.SPECTRUM_COLOR_PREFIX = require_index$1.SPECTRUM_COLOR_PREFIX;
|
|
245
261
|
exports.SYSTEM_COLOR_MODE_CLASSNAME = require_index$1.SYSTEM_COLOR_MODE_CLASSNAME;
|
|
@@ -280,7 +296,10 @@ exports.XXLARGE_SCALE_MODE_CLASSNAME = require_index$1.XXLARGE_SCALE_MODE_CLASSN
|
|
|
280
296
|
exports.XXXLARGE_SCALE_MODE_CLASSNAME = require_index$1.XXXLARGE_SCALE_MODE_CLASSNAME;
|
|
281
297
|
exports.alwaysPalette = require_index.alwaysPalette;
|
|
282
298
|
exports.applyBoxShadowBorder = require_index$2.applyBoxShadowBorder;
|
|
299
|
+
exports.applyButtonControlHeightDeclarations = require_getButtonControlHeight.applyButtonControlHeightDeclarations;
|
|
300
|
+
exports.applyIconButtonControlHeightDeclarations = require_getButtonControlHeight.applyIconButtonControlHeightDeclarations;
|
|
283
301
|
exports.buildConfigSchema = require_buildConfigSchema.buildConfigSchema;
|
|
302
|
+
exports.canonicalizeStateKey = require_canonicalizeStateKey.canonicalizeStateKey;
|
|
284
303
|
exports.cartesianProduct = require_cartesianProduct.cartesianProduct;
|
|
285
304
|
exports.coalesceConfigVariant = require_coalesceConfigVariant.coalesceConfigVariant;
|
|
286
305
|
exports.configToBottomSheetConfigContext = require_runtime_bottomSheetConfig.configToBottomSheetConfigContext;
|
|
@@ -303,6 +322,8 @@ exports.cva = require_styles_styler.cva;
|
|
|
303
322
|
exports.cx = require_styles_styler.cx;
|
|
304
323
|
exports.defineTheme = require_theme.defineTheme;
|
|
305
324
|
exports.deprecatedAlwaysPalette = require_index.deprecatedAlwaysPalette;
|
|
325
|
+
exports.disableIconButtonMatchButtonHeight = require_iconButtonMatchButtonHeight.disableIconButtonMatchButtonHeight;
|
|
326
|
+
exports.enableIconButtonMatchButtonHeight = require_iconButtonMatchButtonHeight.enableIconButtonMatchButtonHeight;
|
|
306
327
|
exports.entries = require_entries.entries;
|
|
307
328
|
exports.findFixtureType = require_buildConfigSchema.findFixtureType;
|
|
308
329
|
exports.findFixtureTypeForValue = require_buildConfigSchema.findFixtureTypeForValue;
|
|
@@ -315,6 +336,12 @@ exports.generateDefaultClassName = require_generateDefaultClassName.generateDefa
|
|
|
315
336
|
exports.generateKeyFromFlatConfigPath = require_generateKeyFromFlatConfigPath.generateKeyFromFlatConfigPath;
|
|
316
337
|
exports.generateSchemaKey = require_generateSchemaKey.generateSchemaKey;
|
|
317
338
|
exports.generateStyles = require_index$2.generateStyles;
|
|
339
|
+
exports.getButtonContentLineHeight = require_getButtonControlHeight.getButtonContentLineHeight;
|
|
340
|
+
exports.getButtonControlContentSize = require_getButtonControlHeight.getButtonControlContentSize;
|
|
341
|
+
exports.getButtonControlHeight = require_getButtonControlHeight.getButtonControlHeight;
|
|
342
|
+
exports.getButtonControlHeightPx = require_getButtonControlHeightPx.getButtonControlHeightPx;
|
|
343
|
+
exports.getButtonIconSizeVar = require_getButtonControlHeight.getButtonIconSizeVar;
|
|
344
|
+
exports.getConfigComponentVariant = require_getConfigComponentVariant.getConfigComponentVariant;
|
|
318
345
|
exports.getConfigDefaultValue = require_defaults.getConfigDefaultValue;
|
|
319
346
|
exports.getConfigSubcomponents = require_subcomponents.getConfigSubcomponents;
|
|
320
347
|
exports.getConfigVariantComponentStates = require_getConfigVariantComponentStatesMatrix.getConfigVariantComponentStates;
|
|
@@ -324,18 +351,39 @@ exports.getConfigVariantPseudoStates = require_getConfigVariantPseudoStates.getC
|
|
|
324
351
|
exports.getConfigVariants = require_getConfigVariants.getConfigVariants;
|
|
325
352
|
exports.getFontUrls = require_tokens_utils_getFontUrls.getFontUrls;
|
|
326
353
|
exports.getFontUrlsByIds = require_tokens_utils_getFontUrls.getFontUrlsByIds;
|
|
354
|
+
exports.getIconButtonControlHeight = require_getButtonControlHeight.getIconButtonControlHeight;
|
|
355
|
+
exports.getIconButtonControlHeightPx = require_getButtonControlHeightPx.getIconButtonControlHeightPx;
|
|
356
|
+
exports.getIconButtonOnlyControlHeightPx = require_getButtonControlHeightPx.getIconButtonOnlyControlHeightPx;
|
|
327
357
|
exports.getMotionVar = require_index$1.getMotionVar;
|
|
328
358
|
exports.getPaginationControlWidthPx = require_getPaginationControlWidthPx.getPaginationControlWidthPx;
|
|
329
359
|
exports.getShadowLayerValue = require_index$1.getShadowLayerValue;
|
|
360
|
+
exports.getStateDocsClass = require_pseudoStateSelectors.getStateDocsClass;
|
|
361
|
+
exports.getStateSelector = require_pseudoStateSelectors.getStateSelector;
|
|
330
362
|
exports.getStyles = require_styles_styler.getStyles;
|
|
331
363
|
exports.getStylesCacheKeySymbol = require_styles_styler.getStylesCacheKeySymbol;
|
|
364
|
+
exports.isAtomicState = require_StateAxis.isAtomicState;
|
|
332
365
|
exports.isConfigDefaultValue = require_defaults.isConfigDefaultValue;
|
|
366
|
+
exports.isConfiguratorPropertyVisible = require_isConfiguratorPropertyVisible.isConfiguratorPropertyVisible;
|
|
367
|
+
exports.isIconButtonMatchButtonHeightEnabled = require_iconButtonMatchButtonHeight.isIconButtonMatchButtonHeightEnabled;
|
|
368
|
+
exports.isInteractiveAtomic = require_StateAxis.isInteractiveAtomic;
|
|
369
|
+
exports.isKnownStateAtom = require_pseudoStateSelectors.isKnownStateAtom;
|
|
370
|
+
exports.isModifierAtomic = require_StateAxis.isModifierAtomic;
|
|
371
|
+
exports.isVariantConfigWithComponentStates = require_variantConfigGuards.isVariantConfigWithComponentStates;
|
|
372
|
+
exports.isVariantConfigWithProperties = require_variantConfigGuards.isVariantConfigWithProperties;
|
|
333
373
|
exports.mapValues = require_mapValues.mapValues;
|
|
374
|
+
exports.mergeUniversalUnderOverride = require_index$2.mergeUniversalUnderOverride;
|
|
334
375
|
exports.newAlwaysPalette = require_index.newAlwaysPalette;
|
|
335
376
|
exports.parseButtonVariantFlat = require_tokens_parseButtonVariants.parseButtonVariantFlat;
|
|
377
|
+
exports.propertyUsesPerStateEnabled = require_resolveSlotByCascade.propertyUsesPerStateEnabled;
|
|
378
|
+
exports.resolvePropertyStates = require_resolvePropertyStates.resolvePropertyStates;
|
|
379
|
+
exports.resolveSlotByCascade = require_resolveSlotByCascade.resolveSlotByCascade;
|
|
336
380
|
exports.shadow = require_tokens_configs_shadow.shadow;
|
|
337
381
|
exports.spectrumRgbToString = require_tokens_utils_spectrum.spectrumRgbToString;
|
|
382
|
+
exports.splitStateKey = require_canonicalizeStateKey.splitStateKey;
|
|
338
383
|
exports.statePseudoMapDocsMode = require_index$2.statePseudoMapDocsMode;
|
|
384
|
+
exports.syncButtonControlHeightVarForSize = require_getButtonControlHeightPx.syncButtonControlHeightVarForSize;
|
|
385
|
+
exports.syncIconButtonControlHeightVarForSize = require_getButtonControlHeightPx.syncIconButtonControlHeightVarForSize;
|
|
386
|
+
exports.syncIconButtonOnlyControlHeightVarForSize = require_getButtonControlHeightPx.syncIconButtonOnlyControlHeightVarForSize;
|
|
339
387
|
exports.syncPaginationWidthVarForSize = require_getPaginationControlWidthPx.syncPaginationWidthVarForSize;
|
|
340
388
|
exports.textVariantsSafe = require_index$1.textVariantsSafe;
|
|
341
389
|
exports.toRgbChannel = require_tokens_utils_spectrum.toRgbChannel;
|
package/dist/index.d.cts
CHANGED
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
|
|
2
2
|
import { variants } from "./styles/variants.cjs";
|
|
3
3
|
import { AvatarConfig, BadgeConfig, BannerConfig, BottomSheetConfig, ButtonConfig, CheckboxConfig, ChipConfig, DividerConfig, IconButtonConfig, InputConfig, LinkConfig, MenuContentConfig, MenuItemConfig, ModalConfig, PaddleNavConfig, PaginationConfig, PopoverConfig, RadioConfig, ScrimConfig, SwitchConfig, TabConfig, TabsConfig, ToastConfig, TooltipConfig } from "./automated-config/dist/generated/generatedConfigs.cjs";
|
|
4
|
+
import { AtomicState, INTERACTIVE_ATOMICS, InteractiveAtomic, MAX_MODIFIERS_PER_COMPOUND, MODIFIER_ATOMICS, ModifierAtomic, isAtomicState, isInteractiveAtomic, isModifierAtomic } from "./automated-config/dist/types/StateAxis.cjs";
|
|
4
5
|
import { AlwaysPaletteAlias, AlwaysPaletteAliasWithPrefix, AlwaysPaletteColor, Animation, AriaAttribute, AvatarAbbreviationStrategy, AvatarShape, AvatarSize, AvatarSizeConfig, AvatarVariant, BackgroundColor, BackgroundPalette, BackgroundPaletteAlias, BackgroundStyleProps, BackwardsCompatibleReactElement, BadgeSize, BadgeVariant, BannerInnerShadowOption, BannerSize, BannerVariant, BorderRadius, BorderRadiusConfig, BorderStyleProps, BorderWidth, BorderWidthConfig, BorderWidthWithElevation, BottomSheetHeight, BottomSheetSnapPoints, BottomSheetVariant, Breakpoint, BreakpointValue, BreakpointWithBase, BreakpointsConfig, ButtonPalette, ButtonPaletteColor, ButtonSize, ButtonSpectrumColor, ButtonVariant, ButtonVariantFlat, CheckboxSize, CheckboxValue, CheckboxVariant, ChipSize, ChipVariant, ColorMode, ColorModeConfig, ColorModeForApp, ColorsConfig, CustomSizingStyleProps, DataAttribute, DeprecatedAlwaysPaletteAlias, Display, DividerVariant, ElevationAlias, ElevationBackgroundFillColor, ElevationBorderColor, ElevationConfig, ElevationCustomInsetShadows, ElevationCustomShadows, ElevationGlobalRampConfig, ElevationGlobalRampSettings, ElevationLevel, ElevationPreset, ElevationSurfaceColor, ExtractUrlFromFontFaceRule, Flex, FlexAlignContent, FlexAlignItems, FlexAlignSelf, FlexBasis, FlexDirection, FlexGrow, FlexJustifyContent, FlexShrink, FlexStyleProps, FlexWrap, FocusRingColor, FocusRingConfig, FocusRingModeConfig, FocusRingOffset, FocusRingWidth, FontAlias, FontConfig, FontCssVar, FontFamilyConfig, FontSize, FontSizeConfig, FontSlantConfig, FontType, FontWeightConfig, FontWeightDescriptive, FontWeightNumeric, FontWidthConfig, ForegroundColor, ForegroundPalette, ForegroundPaletteAlias, GenericIconComponent, GlobalDefaultsConfig, HighContrastMode, Hue, HueStep, IconButtonSize, IconPixelSize, IconSize, IconSizeConfig, IconSlotRenderProps, IconVariant, ImagePropsWithImgProps, ImageStyleProps, ImgElementProps, InputSize, LayoutStyleProps, LineClampAlias, LineColor, LineHeight, LineHeightConfig, LinePalette, LinePaletteAlias, LinkTextVariant, LinkVariant, LinkableValue, MaxLengthArray, ModalSize, ModalVariant, Modes, MotionConfig, MotionCssVar, MotionSpringConfig, MotionSpringConfigOptions, MotionVariant, MotionVariantSpeed, MotionVariantValues, NestedBorderRadiusStyleProps, OpacityStep, Overflow, PaddleNavOrientation, PaddleNavSize, PaddleNavVariant, PaginationEllipsisPlacement, PaginationSize, PaginationVariant, PaginationVisibleItem, Palette, PaletteConfig, PaletteType, PaletteValue, Percentage, PercentageUnit, PixelsUnit, PlatformMode, PopoverPlacement, PopoverSize, PopoverVariant, Position, PropertyToPaletteAliasMap, RGBAUnit, RGBColorValue, RGBUnit, RadioSize, RadioValue, RadioVariant, RegionMode, RemsUnit, SVGElementProps, ScaleConfig, ScaleEffect, ScaleMode, ScaleModeConfig, ScaleModeForApp, 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, StateStyleProps, StyleProps, SwitchSize, TShirtSize, TShirtSizeCommon, TextDecorationLine, TextProperty, TextStyleProps, TextTransform, TextTransformConfig, TextVariant, TextVariantTypography, TextVariantUi, TextVariantWithoutEmphasized, ToastPosition, ToastSize, ToastVariant, TooltipPlacement, TooltipSize, TooltipVariant, TransitionDelay, TransitionDuration, TransitionTiming, TypographyConfig, TypographyResponsiveProperty, TypographyStyle, TypographyStyleProperty, TypographyUnitValue, UdsCssVar, UnitlessUnit, UniversalAvatarBaseProps, UniversalAvatarIconProps, UniversalAvatarProps, UniversalAvatarTextProps, UniversalBadgeProps, UniversalBannerProps, UniversalBottomSheetContentProps, UniversalBottomSheetHeaderProps, UniversalBottomSheetProps, UniversalBoxProps, UniversalButtonProps, UniversalCheckboxProps, UniversalChipBaseProps, UniversalChipButtonProps, UniversalChipDismissibleProps, UniversalChipLinkProps, UniversalChipToggleProps, UniversalDividerProps, UniversalFormLabelProps, UniversalIconProps, UniversalIconSlot, UniversalImageProps, UniversalInputProps, UniversalLinkProps, UniversalMenuItemProps, UniversalModalActionsProps, UniversalModalContentProps, UniversalModalDescriptionProps, UniversalModalProps, UniversalModalTitleProps, UniversalPaddleNavContentProps, UniversalPaddleNavProps, UniversalPaginationItemProps, UniversalPaginationLinkProps, UniversalPaginationNextProps, UniversalPaginationNumbersProps, UniversalPaginationPrevProps, UniversalPaginationProps, UniversalPopoverContentProps, UniversalPopoverProps, UniversalPopoverTriggerProps, UniversalPressableProps, UniversalRadioGroupProps, UniversalRadioProps, UniversalStackProps, UniversalSwitchProps, UniversalTabListProps, UniversalTabPanelProps, UniversalTabProps, UniversalTabsProps, UniversalTabsVariant, UniversalTextProps, UniversalToastProps, UniversalTokensConfigAutoBase, UniversalTokensConfigBase, UniversalTokensConfigGeneric, UniversalTooltipContentProps, UniversalTooltipProps, UniversalTooltipTriggerProps } from "./types/dist/index.cjs";
|
|
5
|
-
import { AllPossibleProperties, ComponentConfig, ComponentStateConfig, LayerConfig, PossibleStates, PossibleStatesWithRest, SubComponentConfig, VariantConfig, VariantConfigWithComponentStates, VariantConfigWithProperties } from "./automated-config/dist/types/ComponentConfig.cjs";
|
|
6
6
|
import { ConfigurablePropertiesName, SelectedConfigurableProperty } from "./automated-config/dist/properties.cjs";
|
|
7
|
+
import { AllPossibleProperties, ComponentConfig, ComponentStateConfig, LayerConfig, PossibleStates, PossibleStatesWithRest, SubComponentConfig, VariantConfig, VariantConfigWithComponentStates, VariantConfigWithProperties } from "./automated-config/dist/types/ComponentConfig.cjs";
|
|
7
8
|
import { ComponentSchema, buildConfigSchema, findFixtureType, findFixtureTypeForValue } from "./automated-config/dist/utils/buildConfigSchema.cjs";
|
|
9
|
+
import { canonicalizeStateKey, splitStateKey } from "./automated-config/dist/utils/canonicalizeStateKey.cjs";
|
|
8
10
|
import { cartesianProduct } from "./automated-config/dist/utils/cartesianProduct.cjs";
|
|
9
11
|
import { coalesceConfigVariant } from "./automated-config/dist/utils/coalesceConfigVariant.cjs";
|
|
10
12
|
import { AllVariantKeys, AutoComponentName, UniversalTokensConfigAuto } from "./automated-config/dist/generated/universalTokensConfigAuto.cjs";
|
|
@@ -12,20 +14,29 @@ import { getConfigDefaultValue, isConfigDefaultValue } from "./automated-config/
|
|
|
12
14
|
import { generateDefaultClassName } from "./automated-config/dist/utils/generateDefaultClassName.cjs";
|
|
13
15
|
import { generateKeyFromFlatConfigPath } from "./automated-config/dist/utils/generateKeyFromFlatConfigPath.cjs";
|
|
14
16
|
import { generateSchemaKey } from "./automated-config/dist/utils/generateSchemaKey.cjs";
|
|
17
|
+
import { IconButtonMatchButtonHeightConfig, IconButtonMatchButtonHeightSize, disableIconButtonMatchButtonHeight, enableIconButtonMatchButtonHeight, isIconButtonMatchButtonHeightEnabled } from "./automated-config/dist/utils/iconButtonMatchButtonHeight.cjs";
|
|
18
|
+
import { ButtonControlSchema, SHARED_BUTTON_ICONBUTTON_SIZES, applyButtonControlHeightDeclarations, applyIconButtonControlHeightDeclarations, getButtonContentLineHeight, getButtonControlContentSize, getButtonControlHeight, getButtonIconSizeVar, getIconButtonControlHeight } from "./automated-config/dist/utils/getButtonControlHeight.cjs";
|
|
19
|
+
import { getButtonControlHeightPx, getIconButtonControlHeightPx, getIconButtonOnlyControlHeightPx, syncButtonControlHeightVarForSize, syncIconButtonControlHeightVarForSize, syncIconButtonOnlyControlHeightVarForSize } from "./automated-config/dist/utils/getButtonControlHeightPx.cjs";
|
|
20
|
+
import { getConfigComponentVariant } from "./automated-config/dist/utils/getConfigComponentVariant.cjs";
|
|
15
21
|
import { getConfigVariantComponentStates, getConfigVariantComponentStatesMatrix } from "./automated-config/dist/utils/getConfigVariantComponentStatesMatrix.cjs";
|
|
16
22
|
import { getConfigVariantProperties } from "./automated-config/dist/utils/getConfigVariantProperties.cjs";
|
|
17
23
|
import { getConfigVariantPseudoStates } from "./automated-config/dist/utils/getConfigVariantPseudoStates.cjs";
|
|
18
24
|
import { getConfigVariants } from "./automated-config/dist/utils/getConfigVariants.cjs";
|
|
19
25
|
import { PaginationWidthConfig, getPaginationControlWidthPx, syncPaginationWidthVarForSize } from "./automated-config/dist/utils/getPaginationControlWidthPx.cjs";
|
|
26
|
+
import { isConfiguratorPropertyVisible } from "./automated-config/dist/utils/isConfiguratorPropertyVisible.cjs";
|
|
27
|
+
import { getStateDocsClass, getStateSelector, isKnownStateAtom } from "./automated-config/dist/utils/pseudoStateSelectors.cjs";
|
|
28
|
+
import { resolvePropertyStates } from "./automated-config/dist/utils/resolvePropertyStates.cjs";
|
|
29
|
+
import { PropertyStates, StateSlot, propertyUsesPerStateEnabled, resolveSlotByCascade } from "./automated-config/dist/utils/resolveSlotByCascade.cjs";
|
|
20
30
|
import { getConfigSubcomponents } from "./automated-config/dist/utils/subcomponents.cjs";
|
|
21
|
-
import {
|
|
31
|
+
import { isVariantConfigWithComponentStates, isVariantConfigWithProperties } from "./automated-config/dist/utils/variantConfigGuards.cjs";
|
|
32
|
+
import { EmitMode, applyBoxShadowBorder, createComponentStates, createConfigurableProperty, createLayerConfig, createSubComponentConfig, createVariantConfig, createVariantConfigWithComponentStates, createVariantConfigWithProperties, generateClassName, generateConfigStyles, generateDeclaration, generateStyles, mergeUniversalUnderOverride, statePseudoMapDocsMode } from "./automated-config/dist/utils/index.cjs";
|
|
22
33
|
import { ALWAYS_PREFIX, alwaysPalette, deprecatedAlwaysPalette, newAlwaysPalette } from "./palette/dist/index.cjs";
|
|
23
34
|
import { ResolvedTokensConfig, UniversalTokensConfig } from "./config/dist/index.cjs";
|
|
24
35
|
import { FONT_DECLARATIONS_MAP, FontAxisConfig, FontDeclarationConfig, FontDeclarationItemConfig, FontDeclarationMap, FontFamilyCDNUrl, FontID, FontWeightForFont } from "./fonts/dist/index.cjs";
|
|
25
36
|
import { AllSelectors, BaseSelector, CssStyleObject, ParentVariantSelector } from "./automated-config/dist/types/ComponentStyles.cjs";
|
|
26
37
|
import { ConfigurableComponentName, IconPropsWithSVGProps, UniversalAvatarImageProps, UniversalChipProps, UniversalIconButtonProps, UniversalPaddleButtonProps } from "./tokens/types.cjs";
|
|
27
38
|
import { shadow } from "./tokens/configs/shadow.cjs";
|
|
28
|
-
import { AVATAR_SIZE_PREFIX, 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, DARK_COLOR_MODE_CLASSNAME, DEFAULT_COLOR_MODE_CLASSNAME, DEFAULT_SCALE_MODE_CLASSNAME, DROP_SHADOW_PREFIX, FONT_FAMILY_PREFIX, FONT_SIZE_PREFIX, FONT_SLANT_PREFIX, FONT_WEIGHT_PREFIX, FONT_WIDTH_PREFIX, GetMotionVarParams, ICON_SIZE_PREFIX, INSET_SHADOW_PREFIX, INVERT_COLOR_MODE_CLASSNAME, LARGE_SCALE_MODE_CLASSNAME, LETTER_SPACING_PREFIX, LIGHT_COLOR_MODE_CLASSNAME, LINE_COLOR_PREFIX, LINE_HEIGHT_PREFIX, MEDIUM_SCALE_MODE_CLASSNAME, MOTION_PREFIX, OUTLINE_PREFIX, PSEUDO_STYLE_SELECTOR_MAP, SMALL_SCALE_MODE_CLASSNAME, SPECTRUM_COLOR_PREFIX, SYSTEM_COLOR_MODE_CLASSNAME, TEXT_RESPONSIVE_BREAKPOINT_CLASSNAMES, TEXT_RESPONSIVE_CLASSNAME, TEXT_TRANSFORM_PREFIX, UDS_PREFIX, XLARGE_SCALE_MODE_CLASSNAME, XSMALL_SCALE_MODE_CLASSNAME, XXLARGE_SCALE_MODE_CLASSNAME, XXXLARGE_SCALE_MODE_CLASSNAME, getMotionVar, getShadowLayerValue, textVariantsSafe } from "./css-tokens/dist/index.cjs";
|
|
39
|
+
import { AVATAR_SIZE_PREFIX, BACKGROUND_BLUR_COLOR_PREFIX, BACKGROUND_BLUR_FALLBACK_COLOR_PREFIX, BACKGROUND_BLUR_RADIUS_PREFIX, BACKGROUND_COLOR_PREFIX, BORDER_RADIUS_PREFIX, BORDER_WIDTH_PREFIX, BUTTON_CONTROL_HEIGHT_VAR, BUTTON_GAP_VAR, BUTTON_SCALE_EFFECT, BUTTON_SCALE_EFFECT_HOVER, BUTTON_SCALE_EFFECT_PRESSED, BUTTON_SCALE_EFFECT_REST, DARK_COLOR_MODE_CLASSNAME, DEFAULT_COLOR_MODE_CLASSNAME, DEFAULT_SCALE_MODE_CLASSNAME, DROP_SHADOW_PREFIX, FONT_FAMILY_PREFIX, FONT_SIZE_PREFIX, FONT_SLANT_PREFIX, FONT_WEIGHT_PREFIX, FONT_WIDTH_PREFIX, GetMotionVarParams, ICON_SIZE_PREFIX, INSET_SHADOW_PREFIX, INVERT_COLOR_MODE_CLASSNAME, LARGE_SCALE_MODE_CLASSNAME, LETTER_SPACING_PREFIX, LIGHT_COLOR_MODE_CLASSNAME, LINE_COLOR_PREFIX, LINE_HEIGHT_PREFIX, MEDIUM_SCALE_MODE_CLASSNAME, MOTION_PREFIX, OUTLINE_PREFIX, PSEUDO_STYLE_SELECTOR_MAP, SMALL_SCALE_MODE_CLASSNAME, SPECTRUM_COLOR_PREFIX, SYSTEM_COLOR_MODE_CLASSNAME, TEXT_RESPONSIVE_BREAKPOINT_CLASSNAMES, TEXT_RESPONSIVE_CLASSNAME, TEXT_TRANSFORM_PREFIX, UDS_PREFIX, XLARGE_SCALE_MODE_CLASSNAME, XSMALL_SCALE_MODE_CLASSNAME, XXLARGE_SCALE_MODE_CLASSNAME, XXXLARGE_SCALE_MODE_CLASSNAME, getMotionVar, getShadowLayerValue, textVariantsSafe } from "./css-tokens/dist/index.cjs";
|
|
29
40
|
import { DEFAULT_COLOR_MODE, DEFAULT_COLOR_MODE_FOR_APP, DEFAULT_HIGH_CONTRAST_MODE, DEFAULT_REGION_MODE, DEFAULT_SCALE_MODE, DEFAULT_SCALE_MODE_FOR_APP } from "./modes/dist/index.cjs";
|
|
30
41
|
import { parseButtonVariantFlat } from "./tokens/parseButtonVariants.cjs";
|
|
31
42
|
import { entries } from "./utils/dist/entries.cjs";
|
|
@@ -132,4 +143,4 @@ import { UDSTooltipConfigProvider, UDSTooltipConfigProviderProps } from "./compo
|
|
|
132
143
|
import { SetState } from "./types.cjs";
|
|
133
144
|
import { UDSThemeConfig, UDSThemeConfigInput, UDSThemeContext, defineTheme } from "./css/dist/css/theme.cjs";
|
|
134
145
|
import { Modal, ModalProps } from "./components/client/Modal/Modal.cjs";
|
|
135
|
-
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, Banner, BannerConfig, BannerContent, BannerContentProps, BannerDescription, BannerDescriptionProps, BannerInnerShadowOption, BannerProps, BannerSize, BannerTitle, BannerTitleProps, BannerVariant, BaseSelector, BorderRadius, BorderRadiusConfig, BorderStyleProps, BorderWidth, BorderWidthConfig, BorderWidthWithElevation, BottomSheet, BottomSheetConfig, BottomSheetContent, BottomSheetContentProps, BottomSheetController, BottomSheetDismiss, BottomSheetDismissProps, BottomSheetHeader, BottomSheetHeaderProps, BottomSheetHeight, BottomSheetProps, BottomSheetProvider, BottomSheetProviderProps, BottomSheetSnapPoints, BottomSheetTrigger, BottomSheetTriggerProps, BottomSheetVariant, 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, DividerLabel, DividerLabelProps, DividerLine, DividerLineProps, DividerProps, DividerVariant, ElevationAlias, ElevationBackgroundFillColor, ElevationBorderColor, ElevationConfig, ElevationCustomInsetShadows, 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, INSET_SHADOW_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, Modal, ModalAPI, ModalActions, ModalActionsProps, ModalConfig, ModalContent, ModalContentProps, ModalDescription, ModalDescriptionProps, ModalPortal, ModalProps, ModalSize, ModalTitle, ModalTitleProps, ModalVariant, Modes, MotionConfig, MotionCssVar, MotionSpringConfig, MotionSpringConfigOptions, MotionVariant, MotionVariantSpeed, MotionVariantValues, NestedBorderRadiusStyleProps, OUTLINE_PREFIX, OpacityStep, Overflow, PSEUDO_STYLE_SELECTOR_MAP, PaddleButtonNext, PaddleButtonNextProps, PaddleButtonPrevious, PaddleButtonPreviousProps, PaddleNav, PaddleNavConfig, PaddleNavContent, PaddleNavContentProps, PaddleNavOrientation, PaddleNavProps, PaddleNavSize, PaddleNavVariant, Pagination, PaginationConfig, PaginationEllipsis, PaginationEllipsisPlacement, PaginationEllipsisProps, PaginationItem, PaginationItemProps, PaginationLink, PaginationLinkProps, PaginationNext, PaginationNextProps, PaginationNumbers, PaginationNumbersProps, PaginationPrev, PaginationPrevProps, PaginationProps, PaginationSize, PaginationVariant, PaginationVisibleItem, PaginationWidthConfig, Palette, PaletteConfig, PaletteType, PaletteValue, ParentVariantSelector, Percentage, PercentageUnit, PixelsUnit, PlatformMode, Popover, PopoverConfig, PopoverContent, UniversalPopoverContentProps as PopoverContentProps, PopoverPlacement, UniversalPopoverProps as PopoverProps, PopoverSize, PopoverTrigger, UniversalPopoverTriggerProps as PopoverTriggerProps, PopoverVariant, 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, Scrim, ScrimConfig, ScrimProps, 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, Tab, TabConfig, TabList, TabListProps, TabPanel, TabPanelProps, TabProps, Tabs, TabsConfig, TabsProps, TabsVariant, 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, UDSBottomSheetConfigContextType, UDSBreakpointsConfigContextType, UDSBreakpointsConfigProvider, UDSBreakpointsConfigProviderProps, UDSConfigContextType, UDSConfigProvider, UDSConfigProviderProps, UDSModalConfigContextType, UDSModalConfigProvider, UDSModalConfigProviderProps, UDSPopoverConfigContextType, UDSPopoverConfigProvider, UDSPopoverConfigProviderProps, type UDSThemeConfig, type UDSThemeConfigInput, type UDSThemeContext, UDSToastConfigContextType, UDSToastConfigProvider, UDSToastConfigProviderProps, UDSTooltipConfigContextType, UDSTooltipConfigProvider, UDSTooltipConfigProviderProps, UDS_PREFIX, UdsCssVar, UnitlessUnit, UniversalAvatarBaseProps, UniversalAvatarIconProps, UniversalAvatarImageProps, UniversalAvatarProps, UniversalAvatarTextProps, UniversalBadgeProps, UniversalBannerProps, UniversalBottomSheetContentProps, UniversalBottomSheetHeaderProps, UniversalBottomSheetProps, UniversalBoxProps, UniversalButtonProps, UniversalCheckboxProps, UniversalChipBaseProps, UniversalChipButtonProps, UniversalChipDismissibleProps, UniversalChipLinkProps, UniversalChipProps, UniversalChipToggleProps, UniversalDividerProps, UniversalFormLabelProps, UniversalIconButtonProps, UniversalIconProps, UniversalIconSlot, UniversalImageProps, UniversalInputProps, UniversalLinkProps, UniversalMenuItemProps, UniversalModalActionsProps, UniversalModalContentProps, UniversalModalDescriptionProps, UniversalModalProps, UniversalModalTitleProps, UniversalPaddleButtonProps, UniversalPaddleNavContentProps, UniversalPaddleNavProps, UniversalPaginationItemProps, UniversalPaginationLinkProps, UniversalPaginationNextProps, UniversalPaginationNumbersProps, UniversalPaginationPrevProps, UniversalPaginationProps, UniversalPopoverContentProps, UniversalPopoverProps, UniversalPopoverTriggerProps, UniversalPressableProps, UniversalRadioGroupProps, UniversalRadioProps, UniversalStackProps, UniversalSwitchProps, UniversalTabListProps, UniversalTabPanelProps, UniversalTabProps, UniversalTabsProps, UniversalTabsVariant, 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, applyBoxShadowBorder, buildConfigSchema, cartesianProduct, coalesceConfigVariant, configToBottomSheetConfigContext, configToBreakpointsConfigContext, configToModalConfigContext, configToPopoverConfigContext, configToToastConfigContext, configToTooltipConfigContext, configToUDSConfigContext, createComponentStates, createConfigurableProperty, createLayerConfig, createModal, createSubComponentConfig, createToast, createVariantConfig, createVariantConfigWithComponentStates, createVariantConfigWithProperties, cva, cx, defineTheme, deprecatedAlwaysPalette, entries, findFixtureType, findFixtureTypeForValue, fontUrls, fromEntries, generateClassName, generateConfigStyles, generateDeclaration, generateDefaultClassName, generateKeyFromFlatConfigPath, generateSchemaKey, generateStyles, getConfigDefaultValue, getConfigSubcomponents, getConfigVariantComponentStates, getConfigVariantComponentStatesMatrix, getConfigVariantProperties, getConfigVariantPseudoStates, getConfigVariants, getFontUrls, getFontUrlsByIds, getMotionVar, getPaginationControlWidthPx, getShadowLayerValue, getStyles, getStylesCacheKeySymbol, isConfigDefaultValue, mapValues, newAlwaysPalette, parseButtonVariantFlat, shadow, spectrumRgbToString, statePseudoMapDocsMode, syncPaginationWidthVarForSize, textVariantsSafe, toRgbChannel, toSpectrumValueEntry, useBottomSheetStore, useBreakpointsConfig, useModalConfig, useToastConfig, variants };
|
|
146
|
+
export { ALWAYS_PREFIX, AVATAR_SIZE_PREFIX, AllPossibleProperties, AllSelectors, AllVariantKeys, AlwaysPaletteAlias, AlwaysPaletteAliasWithPrefix, AlwaysPaletteColor, Animation, AriaAttribute, AtomicState, 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_CONTROL_HEIGHT_VAR, 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, Banner, BannerConfig, BannerContent, BannerContentProps, BannerDescription, BannerDescriptionProps, BannerInnerShadowOption, BannerProps, BannerSize, BannerTitle, BannerTitleProps, BannerVariant, BaseSelector, BorderRadius, BorderRadiusConfig, BorderStyleProps, BorderWidth, BorderWidthConfig, BorderWidthWithElevation, BottomSheet, BottomSheetConfig, BottomSheetContent, BottomSheetContentProps, BottomSheetController, BottomSheetDismiss, BottomSheetDismissProps, BottomSheetHeader, BottomSheetHeaderProps, BottomSheetHeight, BottomSheetProps, BottomSheetProvider, BottomSheetProviderProps, BottomSheetSnapPoints, BottomSheetTrigger, BottomSheetTriggerProps, BottomSheetVariant, Box, BoxProps, Breakpoint, BreakpointValue, BreakpointWithBase, BreakpointsConfig, Button, ButtonConfig, ButtonControlSchema, 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, DividerLabel, DividerLabelProps, DividerLine, DividerLineProps, DividerProps, DividerVariant, ElevationAlias, ElevationBackgroundFillColor, ElevationBorderColor, ElevationConfig, ElevationCustomInsetShadows, ElevationCustomShadows, ElevationGlobalRampConfig, ElevationGlobalRampSettings, ElevationLevel, ElevationPreset, ElevationSurfaceColor, EmitMode, 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, INSET_SHADOW_PREFIX, INTERACTIVE_ATOMICS, INVERT_COLOR_MODE_CLASSNAME, Icon, IconButton, IconButtonConfig, IconButtonMatchButtonHeightConfig, IconButtonMatchButtonHeightSize, IconButtonProps, IconButtonSize, IconPixelSize, IconProps, IconPropsWithSVGProps, IconSize, IconSizeConfig, IconSlotRenderProps, IconVariant, Image, ImageProps, ImagePropsWithImgProps, ImageStyleProps, ImgElementProps, Input, InputConfig, InputHelpText, InputHelpTextProps, InputProps, InputSize, InteractiveAtomic, 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, MAX_MODIFIERS_PER_COMPOUND, MEDIUM_SCALE_MODE_CLASSNAME, MODIFIER_ATOMICS, MOTION_PREFIX, MaxLengthArray, Menu_index_d_exports as Menu, MenuContentConfig, MenuContentProps, MenuDividerProps, MenuItemCheckboxProps, MenuItemConfig, MenuItemProps, MenuPlacement, MenuProviderProps, MenuTriggerProps, Modal, ModalAPI, ModalActions, ModalActionsProps, ModalConfig, ModalContent, ModalContentProps, ModalDescription, ModalDescriptionProps, ModalPortal, ModalProps, ModalSize, ModalTitle, ModalTitleProps, ModalVariant, Modes, ModifierAtomic, MotionConfig, MotionCssVar, MotionSpringConfig, MotionSpringConfigOptions, MotionVariant, MotionVariantSpeed, MotionVariantValues, NestedBorderRadiusStyleProps, OUTLINE_PREFIX, OpacityStep, Overflow, PSEUDO_STYLE_SELECTOR_MAP, PaddleButtonNext, PaddleButtonNextProps, PaddleButtonPrevious, PaddleButtonPreviousProps, PaddleNav, PaddleNavConfig, PaddleNavContent, PaddleNavContentProps, PaddleNavOrientation, PaddleNavProps, PaddleNavSize, PaddleNavVariant, Pagination, PaginationConfig, PaginationEllipsis, PaginationEllipsisPlacement, PaginationEllipsisProps, PaginationItem, PaginationItemProps, PaginationLink, PaginationLinkProps, PaginationNext, PaginationNextProps, PaginationNumbers, PaginationNumbersProps, PaginationPrev, PaginationPrevProps, PaginationProps, PaginationSize, PaginationVariant, PaginationVisibleItem, PaginationWidthConfig, Palette, PaletteConfig, PaletteType, PaletteValue, ParentVariantSelector, Percentage, PercentageUnit, PixelsUnit, PlatformMode, Popover, PopoverConfig, PopoverContent, UniversalPopoverContentProps as PopoverContentProps, PopoverPlacement, UniversalPopoverProps as PopoverProps, PopoverSize, PopoverTrigger, UniversalPopoverTriggerProps as PopoverTriggerProps, PopoverVariant, Position, PossibleStates, PossibleStatesWithRest, Pressable, PressableProps, PropertyStates, PropertyToPaletteAliasMap, RGBAUnit, RGBColorValue, RGBUnit, Radio, RadioConfig, RadioGroupProvider, RadioGroupProviderProps, RadioProps, RadioSize, RadioValue, RadioVariant, RegionMode, RemsUnit, ResolvedTokensConfig, SHARED_BUTTON_ICONBUTTON_SIZES, SMALL_SCALE_MODE_CLASSNAME, SPECTRUM_COLOR_PREFIX, SVGElementProps, SYSTEM_COLOR_MODE_CLASSNAME, ScaleConfig, ScaleEffect, ScaleMode, ScaleModeConfig, ScaleModeForApp, Scrim, ScrimConfig, ScrimProps, 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, StateSlot, StateStyleProps, StyleProps, SubComponentConfig, Switch, SwitchConfig, SwitchProps, SwitchSize, TEXT_RESPONSIVE_BREAKPOINT_CLASSNAMES, TEXT_RESPONSIVE_CLASSNAME, TEXT_TRANSFORM_PREFIX, TShirtSize, TShirtSizeCommon, Tab, TabConfig, TabList, TabListProps, TabPanel, TabPanelProps, TabProps, Tabs, TabsConfig, TabsProps, TabsVariant, 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, UDSBottomSheetConfigContextType, UDSBreakpointsConfigContextType, UDSBreakpointsConfigProvider, UDSBreakpointsConfigProviderProps, UDSConfigContextType, UDSConfigProvider, UDSConfigProviderProps, UDSModalConfigContextType, UDSModalConfigProvider, UDSModalConfigProviderProps, UDSPopoverConfigContextType, UDSPopoverConfigProvider, UDSPopoverConfigProviderProps, type UDSThemeConfig, type UDSThemeConfigInput, type UDSThemeContext, UDSToastConfigContextType, UDSToastConfigProvider, UDSToastConfigProviderProps, UDSTooltipConfigContextType, UDSTooltipConfigProvider, UDSTooltipConfigProviderProps, UDS_PREFIX, UdsCssVar, UnitlessUnit, UniversalAvatarBaseProps, UniversalAvatarIconProps, UniversalAvatarImageProps, UniversalAvatarProps, UniversalAvatarTextProps, UniversalBadgeProps, UniversalBannerProps, UniversalBottomSheetContentProps, UniversalBottomSheetHeaderProps, UniversalBottomSheetProps, UniversalBoxProps, UniversalButtonProps, UniversalCheckboxProps, UniversalChipBaseProps, UniversalChipButtonProps, UniversalChipDismissibleProps, UniversalChipLinkProps, UniversalChipProps, UniversalChipToggleProps, UniversalDividerProps, UniversalFormLabelProps, UniversalIconButtonProps, UniversalIconProps, UniversalIconSlot, UniversalImageProps, UniversalInputProps, UniversalLinkProps, UniversalMenuItemProps, UniversalModalActionsProps, UniversalModalContentProps, UniversalModalDescriptionProps, UniversalModalProps, UniversalModalTitleProps, UniversalPaddleButtonProps, UniversalPaddleNavContentProps, UniversalPaddleNavProps, UniversalPaginationItemProps, UniversalPaginationLinkProps, UniversalPaginationNextProps, UniversalPaginationNumbersProps, UniversalPaginationPrevProps, UniversalPaginationProps, UniversalPopoverContentProps, UniversalPopoverProps, UniversalPopoverTriggerProps, UniversalPressableProps, UniversalRadioGroupProps, UniversalRadioProps, UniversalStackProps, UniversalSwitchProps, UniversalTabListProps, UniversalTabPanelProps, UniversalTabProps, UniversalTabsProps, UniversalTabsVariant, 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, applyBoxShadowBorder, applyButtonControlHeightDeclarations, applyIconButtonControlHeightDeclarations, buildConfigSchema, canonicalizeStateKey, cartesianProduct, coalesceConfigVariant, configToBottomSheetConfigContext, configToBreakpointsConfigContext, configToModalConfigContext, configToPopoverConfigContext, configToToastConfigContext, configToTooltipConfigContext, configToUDSConfigContext, createComponentStates, createConfigurableProperty, createLayerConfig, createModal, createSubComponentConfig, createToast, createVariantConfig, createVariantConfigWithComponentStates, createVariantConfigWithProperties, cva, cx, defineTheme, deprecatedAlwaysPalette, disableIconButtonMatchButtonHeight, enableIconButtonMatchButtonHeight, entries, findFixtureType, findFixtureTypeForValue, fontUrls, fromEntries, generateClassName, generateConfigStyles, generateDeclaration, generateDefaultClassName, generateKeyFromFlatConfigPath, generateSchemaKey, generateStyles, getButtonContentLineHeight, getButtonControlContentSize, getButtonControlHeight, getButtonControlHeightPx, getButtonIconSizeVar, getConfigComponentVariant, getConfigDefaultValue, getConfigSubcomponents, getConfigVariantComponentStates, getConfigVariantComponentStatesMatrix, getConfigVariantProperties, getConfigVariantPseudoStates, getConfigVariants, getFontUrls, getFontUrlsByIds, getIconButtonControlHeight, getIconButtonControlHeightPx, getIconButtonOnlyControlHeightPx, getMotionVar, getPaginationControlWidthPx, getShadowLayerValue, getStateDocsClass, getStateSelector, getStyles, getStylesCacheKeySymbol, isAtomicState, isConfigDefaultValue, isConfiguratorPropertyVisible, isIconButtonMatchButtonHeightEnabled, isInteractiveAtomic, isKnownStateAtom, isModifierAtomic, isVariantConfigWithComponentStates, isVariantConfigWithProperties, mapValues, mergeUniversalUnderOverride, newAlwaysPalette, parseButtonVariantFlat, propertyUsesPerStateEnabled, resolvePropertyStates, resolveSlotByCascade, shadow, spectrumRgbToString, splitStateKey, statePseudoMapDocsMode, syncButtonControlHeightVarForSize, syncIconButtonControlHeightVarForSize, syncIconButtonOnlyControlHeightVarForSize, syncPaginationWidthVarForSize, textVariantsSafe, toRgbChannel, toSpectrumValueEntry, useBottomSheetStore, useBreakpointsConfig, useModalConfig, useToastConfig, variants };
|