@yahoo/uds-v5-wip 1.14.0 → 1.16.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (63) hide show
  1. package/dist/config/dist/createConfig.d.ts +14 -2
  2. package/dist/config/dist/createConfig.js +36 -7
  3. package/dist/config/dist/index.d.ts +1 -1
  4. package/dist/config/dist/index.js +1 -0
  5. package/dist/config/dist/preset-merge.js +3 -0
  6. package/dist/config/dist/resolveTokenTypes.d.ts +1 -0
  7. package/dist/config/dist/resolveTokenTypes.js +149 -0
  8. package/dist/config/dist/types.d.ts +32 -5
  9. package/dist/config.d.ts +44 -2
  10. package/dist/core/dist/createComponent.d.ts +2 -1
  11. package/dist/core/dist/createComponentExample.d.ts +2 -1
  12. package/dist/core/dist/createProvider.d.ts +2 -1
  13. package/dist/core/dist/generated/stylePropsTwMap.d.ts +2 -1
  14. package/dist/core/dist/getComponentStyles.d.ts +2 -1
  15. package/dist/core/dist/getStyles.d.ts +2 -1
  16. package/dist/core/dist/macros.d.ts +2 -1
  17. package/dist/core/dist/propMappings.d.ts +2 -1
  18. package/dist/core/dist/resolveMotionState.d.ts +2 -1
  19. package/dist/core/dist/transformPreset.d.ts +2 -1
  20. package/dist/core/dist/withDefaultStyleProps.d.ts +2 -1
  21. package/dist/foundational-presets/dist/boldVibrant.d.ts +42 -1
  22. package/dist/foundational-presets/dist/brutalist.d.ts +42 -1
  23. package/dist/foundational-presets/dist/candy.d.ts +42 -1
  24. package/dist/foundational-presets/dist/cleanMinimalist.d.ts +42 -1
  25. package/dist/foundational-presets/dist/corporate.d.ts +42 -1
  26. package/dist/foundational-presets/dist/darkMoody.d.ts +42 -1
  27. package/dist/foundational-presets/dist/defaultPreset.d.ts +42 -1
  28. package/dist/foundational-presets/dist/defaultPreset.js +69 -9
  29. package/dist/foundational-presets/dist/forest.d.ts +42 -1
  30. package/dist/foundational-presets/dist/highContrast.d.ts +42 -1
  31. package/dist/foundational-presets/dist/lavender.d.ts +42 -1
  32. package/dist/foundational-presets/dist/luxury.d.ts +42 -1
  33. package/dist/foundational-presets/dist/monochrome.d.ts +42 -1
  34. package/dist/foundational-presets/dist/motion.d.ts +1 -2
  35. package/dist/foundational-presets/dist/neonCyber.d.ts +42 -1
  36. package/dist/foundational-presets/dist/newspaper.d.ts +42 -1
  37. package/dist/foundational-presets/dist/ocean.d.ts +42 -1
  38. package/dist/foundational-presets/dist/slate.d.ts +42 -1
  39. package/dist/foundational-presets/dist/sunset.d.ts +42 -1
  40. package/dist/foundational-presets/dist/terminal.d.ts +42 -1
  41. package/dist/foundational-presets/dist/warmOrganic.d.ts +42 -1
  42. package/dist/loader/dist/_virtual/_rolldown/runtime.js +1 -1
  43. package/dist/loader/dist/node_modules/react/cjs/react.development.js +1 -1
  44. package/dist/loader/dist/node_modules/react/cjs/react.production.js +1 -1
  45. package/dist/remotion/dist/components/image-slide.d.ts +1 -2
  46. package/dist/remotion/dist/components/image-slide.js +3 -3
  47. package/dist/remotion/dist/components/index.js +7 -7
  48. package/dist/remotion/dist/components/lower-third.d.ts +1 -2
  49. package/dist/remotion/dist/components/lower-third.js +5 -5
  50. package/dist/remotion/dist/components/quote-card.d.ts +1 -2
  51. package/dist/remotion/dist/components/quote-card.js +4 -4
  52. package/dist/remotion/dist/components/split-screen.d.ts +1 -2
  53. package/dist/remotion/dist/components/split-screen.js +7 -7
  54. package/dist/remotion/dist/components/stat-card.d.ts +1 -2
  55. package/dist/remotion/dist/components/stat-card.js +3 -3
  56. package/dist/remotion/dist/components/text-overlay.d.ts +1 -2
  57. package/dist/remotion/dist/components/text-overlay.js +2 -2
  58. package/dist/remotion/dist/components/title-card.d.ts +1 -2
  59. package/dist/remotion/dist/components/title-card.js +3 -3
  60. package/dist/remotion/dist/components/typing-text.d.ts +1 -2
  61. package/dist/remotion/dist/components/typing-text.js +3 -3
  62. package/dist/tsconfig.tsbuildinfo +1 -1
  63. package/package.json +3 -3
@@ -1,6 +1,7 @@
1
1
  import { CreateComponentConfig, CreateComponentProps, CreateComponentRenderFn, CreateComponentSlotTagConfig, CreateComponentTypeInput } from "@uds/types";
2
2
 
3
3
  //#region ../core/dist/createComponent.d.ts
4
+ //#region src/createComponent.d.ts
4
5
  type PrimitiveTag = keyof React.JSX.IntrinsicElements;
5
6
  type SpecConfig<TSpec> = TSpec extends {
6
7
  config: infer TConfig extends CreateComponentTypeInput;
@@ -51,6 +52,6 @@ declare function createComponent<TSpecOrProps = {}>(tag: PrimitiveTag): React.FC
51
52
  props: infer TOwnProps;
52
53
  } ? CreateComponentProps<TConfig, TOwnProps, PrimitiveTag> : PrimitiveOwnProps<TSpecOrProps>>;
53
54
  declare function createComponent<TSpec>(renderFn: CreateComponentRenderFn<SpecConfig<TSpec>, SpecOwnProps<TSpec>, SpecSlotConfig<TSpec>>): React.FC<CreateComponentProps<SpecConfig<TSpec>, SpecOwnProps<TSpec>, SpecSlotConfig<TSpec>>>;
54
- declare function createComponent(config: CreateComponentConfig<string>, renderFn: CreateComponentRenderFn<any, any, any>): React.FC<any>;
55
+ declare function createComponent(config: CreateComponentConfig<string>, renderFn: CreateComponentRenderFn<any, any, any>): React.FC<any>; //#endregion
55
56
  //#endregion
56
57
  export { createComponent };
@@ -1,6 +1,7 @@
1
1
  import { ComponentProps, ComponentType } from "react";
2
2
 
3
3
  //#region ../core/dist/createComponentExample.d.ts
4
+ //#region src/createComponentExample.d.ts
4
5
  /**
5
6
  * Extracts variant fixtures from a Component's props type.
6
7
  * If Button has `variant?: 'brand' | 'outline'` and `size?: 'sm' | 'md'`,
@@ -36,6 +37,6 @@ type ExamplesResult<TComponent extends ComponentType<any>> = {
36
37
  * }));
37
38
  * ```
38
39
  */
39
- declare function createComponentExample<TComponent extends ComponentType<any>, T extends Record<string, ExampleFn<TComponent>>>(Component: TComponent, examplesFn: (fixtures: VariantFixtures<TComponent>) => ExamplesResult<TComponent>): ComponentExample<T>;
40
+ declare function createComponentExample<TComponent extends ComponentType<any>, T extends Record<string, ExampleFn<TComponent>>>(Component: TComponent, examplesFn: (fixtures: VariantFixtures<TComponent>) => ExamplesResult<TComponent>): ComponentExample<T>; //#endregion
40
41
  //#endregion
41
42
  export { ComponentExample, createComponentExample };
@@ -1,4 +1,5 @@
1
1
  //#region ../core/dist/createProvider.d.ts
2
+ //#region src/createProvider.d.ts
2
3
  type ProviderRenderFn<TContext, TProps = Record<never, never>> = (props: {
3
4
  children: React.ReactNode;
4
5
  } & TProps) => {
@@ -7,6 +8,6 @@ type ProviderRenderFn<TContext, TProps = Record<never, never>> = (props: {
7
8
  };
8
9
  declare function createProvider<TContext, TProps = Record<never, never>>(name: string, renderFn: ProviderRenderFn<TContext, TProps>): [React.FC<{
9
10
  children: React.ReactNode;
10
- } & TProps>, () => TContext];
11
+ } & TProps>, () => TContext]; //#endregion
11
12
  //#endregion
12
13
  export { createProvider };
@@ -1,4 +1,5 @@
1
1
  //#region ../core/dist/generated/stylePropsTwMap.d.ts
2
+ //#region src/generated/stylePropsTwMap.d.ts
2
3
  declare const stylePropsTwMap: {
3
4
  readonly "border-boolean": {
4
5
  readonly border: "boolean";
@@ -1695,6 +1696,6 @@ declare const stylePropsTwMap: {
1695
1696
  readonly "hyphens-manual": {
1696
1697
  readonly hyphens: "manual";
1697
1698
  };
1698
- };
1699
+ }; //#endregion
1699
1700
  //#endregion
1700
1701
  export { stylePropsTwMap };
@@ -1,6 +1,7 @@
1
1
  import { ComponentRegistry, ComponentSlotsOf, ComponentVariantsOf } from "@uds/types";
2
2
 
3
3
  //#region ../core/dist/getComponentStyles.d.ts
4
+ //#region src/getComponentStyles.d.ts
4
5
  type ResolveSlots<Name extends string> = Name extends keyof ComponentRegistry ? ComponentSlotsOf<Name> : string;
5
6
  type ResolveVariants<Name extends string> = Name extends keyof ComponentRegistry ? ComponentVariantsOf<Name> : Record<string, string>;
6
7
  interface UdsRuntimeMeta {
@@ -44,6 +45,6 @@ interface ComponentStyler<Name extends string> {
44
45
  * @param slots - Array of slot names
45
46
  * @param element - Optional HTML element tag for element-specific prop forwarding
46
47
  */
47
- declare function createComponentStyler<Name extends string>(componentName: Name, slots: readonly string[], element?: string, variants?: readonly string[]): ComponentStyler<Name>;
48
+ declare function createComponentStyler<Name extends string>(componentName: Name, slots: readonly string[], element?: string, variants?: readonly string[]): ComponentStyler<Name>; //#endregion
48
49
  //#endregion
49
50
  export { createComponentStyler };
@@ -2,6 +2,7 @@ import { ClassValue } from "clsx";
2
2
  import { ModifierProp, ModifierProps, StyleAndModifierProps, StyleProps } from "@uds/types";
3
3
 
4
4
  //#region ../core/dist/getStyles.d.ts
5
+ //#region src/getStyles.d.ts
5
6
  /** Convert kebab-case CSS property to camelCase for React inline styles.
6
7
  * CSS custom properties (--*) are kept as-is since React supports them verbatim. */
7
8
  declare function toCamelCase(str: string): string;
@@ -37,6 +38,6 @@ interface GetStylesParams extends StyleProps, ModifierProps {
37
38
  * so they can be included in the CSS safelist.
38
39
  */
39
40
  declare function getStyles(props: GetStylesParams): string;
40
- declare function getVariantClassName(componentName: string, variant: string | undefined): string;
41
+ declare function getVariantClassName(componentName: string, variant: string | undefined): string; //#endregion
41
42
  //#endregion
42
43
  export { createVariants, cx, getStyles, getVariantClassName, processStyleProps, toCamelCase };
@@ -1,6 +1,7 @@
1
1
  import { MacroConfig } from "@uds/types";
2
2
 
3
3
  //#region ../core/dist/macros.d.ts
4
+ //#region src/macros.d.ts
4
5
  /** Set the macro config (called by loader at build time) */
5
6
  declare function setMacroConfig(config: MacroConfig): void;
6
7
  /** Get the current macro config */
@@ -16,6 +17,6 @@ declare function getMacroConfig(): MacroConfig;
16
17
  declare function expandMacros(props: Record<string, unknown>, config?: MacroConfig): {
17
18
  expanded: Record<string, unknown>;
18
19
  markerClasses: string[];
19
- };
20
+ }; //#endregion
20
21
  //#endregion
21
22
  export { expandMacros, getMacroConfig, setMacroConfig };
@@ -1,6 +1,7 @@
1
1
  import { ConfigurableProp, ModifierProp, StyleProp } from "@uds/types";
2
2
 
3
3
  //#region ../core/dist/propMappings.d.ts
4
+ //#region src/propMappings.d.ts
4
5
  interface PropMapping {
5
6
  /** Class name prefix for runtime class generation. 'no-prefix' means value IS the class. */
6
7
  classPrefix: string;
@@ -71,6 +72,6 @@ interface ModifierEntry {
71
72
  *
72
73
  * e.g. `bg="primary"` + `bgOpacity="75"` → class `bg-primary_75`
73
74
  */
74
- declare const colorPropToOpacityProp: Record<string, string>;
75
+ declare const colorPropToOpacityProp: Record<string, string>; //#endregion
75
76
  //#endregion
76
77
  export { ConfigurablePropertyEntry, CssVariablePrefixEntry, ModifierEntry, PropMapping, colorPropToOpacityProp, getConfigurablePropMapping, getConfigurableProperties, getCssVariablePrefixes, modifierMappings, propMappings };
@@ -1,4 +1,5 @@
1
1
  //#region ../core/dist/resolveMotionState.d.ts
2
- declare function resolveMotionState(stateKeyframe: Record<string, unknown>, index: number): Record<string, number>;
2
+ //#region src/resolveMotionState.d.ts
3
+ declare function resolveMotionState(stateKeyframe: Record<string, unknown>, index: number): Record<string, number>; //#endregion
3
4
  //#endregion
4
5
  export { resolveMotionState };
@@ -1,6 +1,7 @@
1
1
  import { MotionPreset } from "@uds/types";
2
2
 
3
3
  //#region ../core/dist/transformPreset.d.ts
4
+ //#region src/transformPreset.d.ts
4
5
  interface TransformedMotionProps {
5
6
  initial?: Record<string, unknown>;
6
7
  animate?: Record<string, unknown>;
@@ -12,6 +13,6 @@ interface TransformedMotionProps {
12
13
  /**
13
14
  * Convert a JS-runtime MotionPreset to a motion/react-compatible props object.
14
15
  */
15
- declare function transformPreset(preset: MotionPreset): TransformedMotionProps;
16
+ declare function transformPreset(preset: MotionPreset): TransformedMotionProps; //#endregion
16
17
  //#endregion
17
18
  export { TransformedMotionProps, transformPreset };
@@ -1,6 +1,7 @@
1
1
  import { BorderRadius, GridSpan, GridStartEnd, GridTemplate, StyleAndModifierProps } from "@uds/types";
2
2
 
3
3
  //#region ../core/dist/withDefaultStyleProps.d.ts
4
+ //#region src/withDefaultStyleProps.d.ts
4
5
  interface StackDefaultsInput extends StyleAndModifierProps {
5
6
  gap?: StyleAndModifierProps['gap'];
6
7
  }
@@ -38,6 +39,6 @@ declare const withDefaultStyleProps: {
38
39
  shape?: BorderRadius;
39
40
  }) => StyleAndModifierProps;
40
41
  Svg: (props: SvgDefaultsInput) => StyleAndModifierProps;
41
- };
42
+ }; //#endregion
42
43
  //#endregion
43
44
  export { withDefaultStyleProps };
@@ -2,11 +2,11 @@ import { UdsConfig } from "../../config/dist/createConfig.js";
2
2
  import * as _$_uds_types0 from "@uds/types";
3
3
 
4
4
  //#region ../foundational-presets/dist/boldVibrant.d.ts
5
- //#region src/boldVibrant.d.ts
6
5
  declare const boldVibrantFoundationPreset: UdsConfig<_$_uds_types0.ModifierProp | "_light" | "_dark" | "_sm" | "_md" | "_lg" | "_xl" | "_2xl", {
7
6
  [x: string]: Record<string, string>;
8
7
  }, {}, {}, {}, "_light" | "_dark" | "_sm" | "_md" | "_lg" | "_xl" | "_2xl", {
9
8
  readonly color: {
9
+ readonly $type: "color";
10
10
  readonly inherit: {
11
11
  readonly value: "inherit";
12
12
  };
@@ -96,6 +96,7 @@ declare const boldVibrantFoundationPreset: UdsConfig<_$_uds_types0.ModifierProp
96
96
  };
97
97
  };
98
98
  readonly bg: {
99
+ readonly $type: "color";
99
100
  readonly brand: {
100
101
  readonly value: "#1e6ff5";
101
102
  readonly _dark: "#71affb";
@@ -174,6 +175,7 @@ declare const boldVibrantFoundationPreset: UdsConfig<_$_uds_types0.ModifierProp
174
175
  };
175
176
  };
176
177
  readonly borderColor: {
178
+ readonly $type: "color";
177
179
  readonly brand: {
178
180
  readonly value: "#1e6ff5";
179
181
  readonly _dark: "#71affb";
@@ -236,6 +238,7 @@ declare const boldVibrantFoundationPreset: UdsConfig<_$_uds_types0.ModifierProp
236
238
  };
237
239
  };
238
240
  readonly borderWidth: {
241
+ readonly $type: "dimension";
239
242
  readonly none: {
240
243
  readonly value: "0px";
241
244
  };
@@ -250,6 +253,7 @@ declare const boldVibrantFoundationPreset: UdsConfig<_$_uds_types0.ModifierProp
250
253
  };
251
254
  };
252
255
  readonly outlineWidth: {
256
+ readonly $type: "dimension";
253
257
  readonly 0: {
254
258
  readonly value: "0px";
255
259
  };
@@ -267,6 +271,7 @@ declare const boldVibrantFoundationPreset: UdsConfig<_$_uds_types0.ModifierProp
267
271
  };
268
272
  };
269
273
  readonly outlineOffset: {
274
+ readonly $type: "dimension";
270
275
  readonly 0: {
271
276
  readonly value: "0px";
272
277
  };
@@ -284,6 +289,7 @@ declare const boldVibrantFoundationPreset: UdsConfig<_$_uds_types0.ModifierProp
284
289
  };
285
290
  };
286
291
  readonly divideWidth: {
292
+ readonly $type: "dimension";
287
293
  readonly 0: {
288
294
  readonly value: "0px";
289
295
  };
@@ -298,9 +304,11 @@ declare const boldVibrantFoundationPreset: UdsConfig<_$_uds_types0.ModifierProp
298
304
  };
299
305
  readonly reverse: {
300
306
  readonly value: "reverse";
307
+ readonly $type: "string";
301
308
  };
302
309
  };
303
310
  readonly ringWidth: {
311
+ readonly $type: "dimension";
304
312
  readonly 0: {
305
313
  readonly value: "0px";
306
314
  };
@@ -318,9 +326,11 @@ declare const boldVibrantFoundationPreset: UdsConfig<_$_uds_types0.ModifierProp
318
326
  };
319
327
  readonly inset: {
320
328
  readonly value: "inset";
329
+ readonly $type: "string";
321
330
  };
322
331
  };
323
332
  readonly ringOffsetWidth: {
333
+ readonly $type: "dimension";
324
334
  readonly 0: {
325
335
  readonly value: "0px";
326
336
  };
@@ -338,6 +348,7 @@ declare const boldVibrantFoundationPreset: UdsConfig<_$_uds_types0.ModifierProp
338
348
  };
339
349
  };
340
350
  readonly fontWeight: {
351
+ readonly $type: "fontWeight";
341
352
  readonly thin: {
342
353
  readonly value: "100";
343
354
  };
@@ -367,6 +378,7 @@ declare const boldVibrantFoundationPreset: UdsConfig<_$_uds_types0.ModifierProp
367
378
  };
368
379
  };
369
380
  readonly lineHeight: {
381
+ readonly $type: "number";
370
382
  readonly none: {
371
383
  readonly value: "1";
372
384
  };
@@ -381,6 +393,7 @@ declare const boldVibrantFoundationPreset: UdsConfig<_$_uds_types0.ModifierProp
381
393
  };
382
394
  };
383
395
  readonly letterSpacing: {
396
+ readonly $type: "dimension";
384
397
  readonly tighter: {
385
398
  readonly value: "-0.05em";
386
399
  };
@@ -401,6 +414,7 @@ declare const boldVibrantFoundationPreset: UdsConfig<_$_uds_types0.ModifierProp
401
414
  };
402
415
  };
403
416
  readonly spacing: {
417
+ readonly $type: "dimension";
404
418
  readonly px: {
405
419
  readonly value: "1px";
406
420
  };
@@ -508,8 +522,10 @@ declare const boldVibrantFoundationPreset: UdsConfig<_$_uds_types0.ModifierProp
508
522
  };
509
523
  };
510
524
  readonly position: {
525
+ readonly $type: "dimension";
511
526
  readonly auto: {
512
527
  readonly value: "auto";
528
+ readonly $type: "string";
513
529
  };
514
530
  readonly full: {
515
531
  readonly value: "100%";
@@ -534,6 +550,7 @@ declare const boldVibrantFoundationPreset: UdsConfig<_$_uds_types0.ModifierProp
534
550
  };
535
551
  };
536
552
  readonly aspectRatio: {
553
+ readonly $type: "string";
537
554
  readonly square: {
538
555
  readonly value: "1 / 1";
539
556
  };
@@ -554,6 +571,7 @@ declare const boldVibrantFoundationPreset: UdsConfig<_$_uds_types0.ModifierProp
554
571
  };
555
572
  };
556
573
  readonly flex: {
574
+ readonly $type: "string";
557
575
  readonly 1: {
558
576
  readonly value: "1 1 0%";
559
577
  };
@@ -568,6 +586,7 @@ declare const boldVibrantFoundationPreset: UdsConfig<_$_uds_types0.ModifierProp
568
586
  };
569
587
  };
570
588
  readonly flexGrow: {
589
+ readonly $type: "number";
571
590
  readonly 0: {
572
591
  readonly value: "0";
573
592
  };
@@ -576,11 +595,13 @@ declare const boldVibrantFoundationPreset: UdsConfig<_$_uds_types0.ModifierProp
576
595
  };
577
596
  };
578
597
  readonly flexShrink: {
598
+ readonly $type: "number";
579
599
  readonly 0: {
580
600
  readonly value: "0";
581
601
  };
582
602
  };
583
603
  readonly opacity: {
604
+ readonly $type: "number";
584
605
  readonly 0: {
585
606
  readonly value: "0";
586
607
  };
@@ -628,6 +649,7 @@ declare const boldVibrantFoundationPreset: UdsConfig<_$_uds_types0.ModifierProp
628
649
  };
629
650
  };
630
651
  readonly radius: {
652
+ readonly $type: "dimension";
631
653
  readonly none: {
632
654
  readonly value: "0px";
633
655
  };
@@ -651,6 +673,7 @@ declare const boldVibrantFoundationPreset: UdsConfig<_$_uds_types0.ModifierProp
651
673
  };
652
674
  };
653
675
  readonly animation: {
676
+ readonly $type: "string";
654
677
  readonly none: {
655
678
  readonly value: "none";
656
679
  };
@@ -662,6 +685,7 @@ declare const boldVibrantFoundationPreset: UdsConfig<_$_uds_types0.ModifierProp
662
685
  };
663
686
  };
664
687
  readonly shadow: {
688
+ readonly $type: "string";
665
689
  readonly '2xs': {
666
690
  readonly value: "0 1px rgb(0 0 0 / 0.05)";
667
691
  };
@@ -691,6 +715,7 @@ declare const boldVibrantFoundationPreset: UdsConfig<_$_uds_types0.ModifierProp
691
715
  };
692
716
  };
693
717
  readonly blur: {
718
+ readonly $type: "string";
694
719
  readonly none: {
695
720
  readonly value: "blur(0)";
696
721
  };
@@ -714,6 +739,7 @@ declare const boldVibrantFoundationPreset: UdsConfig<_$_uds_types0.ModifierProp
714
739
  };
715
740
  };
716
741
  readonly textShadow: {
742
+ readonly $type: "string";
717
743
  readonly '2xs': {
718
744
  readonly value: "0 1px 0 rgb(0 0 0 / 0.15)";
719
745
  };
@@ -734,8 +760,10 @@ declare const boldVibrantFoundationPreset: UdsConfig<_$_uds_types0.ModifierProp
734
760
  };
735
761
  };
736
762
  readonly zIndex: {
763
+ readonly $type: "number";
737
764
  readonly auto: {
738
765
  readonly value: "auto";
766
+ readonly $type: "string";
739
767
  };
740
768
  readonly 0: {
741
769
  readonly value: "0";
@@ -757,20 +785,25 @@ declare const boldVibrantFoundationPreset: UdsConfig<_$_uds_types0.ModifierProp
757
785
  };
758
786
  };
759
787
  readonly size: {
788
+ readonly $type: "dimension";
760
789
  readonly auto: {
761
790
  readonly value: "auto";
791
+ readonly $type: "string";
762
792
  };
763
793
  readonly full: {
764
794
  readonly value: "100%";
765
795
  };
766
796
  readonly min: {
767
797
  readonly value: "min-content";
798
+ readonly $type: "string";
768
799
  };
769
800
  readonly max: {
770
801
  readonly value: "max-content";
802
+ readonly $type: "string";
771
803
  };
772
804
  readonly fit: {
773
805
  readonly value: "fit-content";
806
+ readonly $type: "string";
774
807
  };
775
808
  readonly '1/2': {
776
809
  readonly value: "50%";
@@ -819,6 +852,7 @@ declare const boldVibrantFoundationPreset: UdsConfig<_$_uds_types0.ModifierProp
819
852
  };
820
853
  };
821
854
  readonly w: {
855
+ readonly $type: "dimension";
822
856
  readonly screen: {
823
857
  readonly value: "100vw";
824
858
  };
@@ -833,6 +867,7 @@ declare const boldVibrantFoundationPreset: UdsConfig<_$_uds_types0.ModifierProp
833
867
  };
834
868
  };
835
869
  readonly h: {
870
+ readonly $type: "dimension";
836
871
  readonly screen: {
837
872
  readonly value: "100vh";
838
873
  };
@@ -847,6 +882,7 @@ declare const boldVibrantFoundationPreset: UdsConfig<_$_uds_types0.ModifierProp
847
882
  };
848
883
  };
849
884
  readonly rotate: {
885
+ readonly $type: "dimension";
850
886
  readonly 0: {
851
887
  readonly value: "0deg";
852
888
  };
@@ -876,6 +912,7 @@ declare const boldVibrantFoundationPreset: UdsConfig<_$_uds_types0.ModifierProp
876
912
  };
877
913
  };
878
914
  readonly scale: {
915
+ readonly $type: "number";
879
916
  readonly 0: {
880
917
  readonly value: "0";
881
918
  };
@@ -911,6 +948,7 @@ declare const boldVibrantFoundationPreset: UdsConfig<_$_uds_types0.ModifierProp
911
948
  };
912
949
  };
913
950
  readonly skew: {
951
+ readonly $type: "dimension";
914
952
  readonly 0: {
915
953
  readonly value: "0deg";
916
954
  };
@@ -931,6 +969,7 @@ declare const boldVibrantFoundationPreset: UdsConfig<_$_uds_types0.ModifierProp
931
969
  };
932
970
  };
933
971
  readonly translate: {
972
+ readonly $type: "dimension";
934
973
  readonly 0: {
935
974
  readonly value: "0px";
936
975
  };
@@ -1053,6 +1092,7 @@ declare const boldVibrantFoundationPreset: UdsConfig<_$_uds_types0.ModifierProp
1053
1092
  };
1054
1093
  };
1055
1094
  readonly strokeWidth: {
1095
+ readonly $type: "dimension";
1056
1096
  readonly 0: {
1057
1097
  readonly value: "0px";
1058
1098
  };
@@ -1064,6 +1104,7 @@ declare const boldVibrantFoundationPreset: UdsConfig<_$_uds_types0.ModifierProp
1064
1104
  };
1065
1105
  };
1066
1106
  readonly fontFamily: {
1107
+ readonly $type: "fontFamily";
1067
1108
  readonly sans: {
1068
1109
  readonly value: "var(--uds-font-family-geist, ui-sans-serif, system-ui, sans-serif)";
1069
1110
  };