@yahoo/uds-v5-wip 1.37.0 → 1.37.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.
Files changed (32) hide show
  1. package/dist/config/dist/component-resolution.d.ts +1 -1
  2. package/dist/config/dist/consts/defaultColors.d.ts +1 -2
  3. package/dist/config/dist/createConfig.d.ts +1 -13
  4. package/dist/config/dist/defineStyleProp.d.ts +1 -12
  5. package/dist/config/dist/index.d.ts +1 -1
  6. package/dist/config/dist/resolveStyleProp.d.ts +0 -7
  7. package/dist/config/dist/serialize.d.ts +1 -2
  8. package/dist/config/dist/types/css-values.d.ts +1 -2
  9. package/dist/config/dist/types.d.ts +1 -2
  10. package/dist/config.d.ts +184 -184
  11. package/dist/foundational-presets/dist/boldVibrant.d.ts +357 -358
  12. package/dist/foundational-presets/dist/brutalist.d.ts +357 -358
  13. package/dist/foundational-presets/dist/candy.d.ts +357 -358
  14. package/dist/foundational-presets/dist/cleanMinimalist.d.ts +357 -358
  15. package/dist/foundational-presets/dist/corporate.d.ts +357 -358
  16. package/dist/foundational-presets/dist/darkMoody.d.ts +357 -358
  17. package/dist/foundational-presets/dist/defaultPreset.d.ts +184 -185
  18. package/dist/foundational-presets/dist/forest.d.ts +357 -358
  19. package/dist/foundational-presets/dist/highContrast.d.ts +357 -358
  20. package/dist/foundational-presets/dist/lavender.d.ts +357 -358
  21. package/dist/foundational-presets/dist/luxury.d.ts +357 -358
  22. package/dist/foundational-presets/dist/monochrome.d.ts +357 -358
  23. package/dist/foundational-presets/dist/motion.d.ts +1 -2
  24. package/dist/foundational-presets/dist/neonCyber.d.ts +357 -358
  25. package/dist/foundational-presets/dist/newspaper.d.ts +357 -358
  26. package/dist/foundational-presets/dist/ocean.d.ts +357 -358
  27. package/dist/foundational-presets/dist/slate.d.ts +357 -358
  28. package/dist/foundational-presets/dist/sunset.d.ts +357 -358
  29. package/dist/foundational-presets/dist/terminal.d.ts +357 -358
  30. package/dist/foundational-presets/dist/warmOrganic.d.ts +357 -358
  31. package/dist/tsconfig.tsbuildinfo +1 -1
  32. package/package.json +3 -3
@@ -1 +1 @@
1
- export { };
1
+ import { ComponentsConfig } from "@uds/types";
@@ -1,5 +1,4 @@
1
1
  //#region ../config/dist/consts/defaultColors.d.ts
2
- //#region src/consts/defaultColors.d.ts
3
2
  declare const defaultColors: {
4
3
  inherit: string;
5
4
  current: string;
@@ -248,6 +247,6 @@ declare const defaultColors: {
248
247
  'rose-800': string;
249
248
  'rose-900': string;
250
249
  'rose-950': string;
251
- }; //#endregion
250
+ };
252
251
  //#endregion
253
252
  export { defaultColors };
@@ -1,10 +1,9 @@
1
1
  import { AnyStyleProp } from "./defineStyleProp.js";
2
- import { TokenType, VarsConfig } from "./types.js";
3
2
  import { ResolvedStyleProp } from "./resolveStyleProp.js";
3
+ import { TokenType, VarsConfig } from "./types.js";
4
4
  import { BaseModifierProp, ComponentsConfig, CompositeStylesConfig, ConfigurableProp, ModifierProp, MotionPreset, RemotionComponentDef, RemotionConfig, RemotionTransitionDef } from "@uds/types";
5
5
 
6
6
  //#region ../config/dist/createConfig.d.ts
7
- //#region src/createConfig.d.ts
8
7
  type MotionPresetsDef = Record<string, MotionPreset>;
9
8
  type MotionAliasValue<TMotion> = TMotion extends Record<string, infer V> ? Extract<V, string> : never;
10
9
  type EmptyMotion = {};
@@ -77,12 +76,6 @@ type GetModifierFromInput<I extends ModesInput> = { [SetKey in keyof I]: { [OptK
77
76
  } ? M extends ModifierNameShape ? M : never : OptKey extends string ? `_${OptKey}` : never }[keyof I[SetKey]['options']] }[keyof I];
78
77
  /** Reject any input whose derived/explicit modifiers collide with reserved names. */
79
78
  type CheckForReservedModifiersInput<I extends ModesInput> = true extends HasReservedModifier<GetModifierFromInput<I>> ? 'ERROR: Cannot use reserved modifier names from ModifierProp. Please use a different modifier name.' : I;
80
- /**
81
- * Convert the authored object-keyed input into the internal `ModeGroup[]` shape.
82
- * Derives `_${optionKey}` modifiers when no explicit `modifier` is provided.
83
- * Never sets `default: true` — the new API has no concept of a default option;
84
- * downstream consumers treat "no option active" as the implicit default.
85
- */
86
79
  interface ModifierDef {
87
80
  modifier: ModifierNameShape;
88
81
  selector: string;
@@ -162,7 +155,6 @@ type VarsToTokens<TVars extends VarsConfig> = { [K in keyof TVars]: { [T in Excl
162
155
  type MergeTokens<A, B> = { [K in keyof A | keyof B]: K extends keyof B ? K extends keyof A ? A[K] & B[K] : B[K] : K extends keyof A ? A[K] : never };
163
156
  /** Build a structured token reference object from atomic tokens */
164
157
  declare function buildTokenReference(atomic: AtomicToken<ModifierNameShape>[], configPrefix: string): Record<string, Record<string, string>>;
165
- /** Build a structured composite-styles reference object for use in defineModifiers context */
166
158
  /** Global styles definition — CSS selector → style props */
167
159
  type GlobalStylesDef = Record<string, Record<string, any>>;
168
160
  /** CSS properties for the example wrapper element */
@@ -321,10 +313,6 @@ interface UdsConfig<TModifier extends ModifierNameShape = ModifierProp, TTokens
321
313
  type AnyUdsConfig = UdsConfig<ModifierNameShape, any, any, any, any, any, any>;
322
314
  /** Extract the raw config data from a builder instance */
323
315
  declare function resolveConfig(config: AnyUdsConfig): UdsConfigData;
324
- /**
325
- * Resolve configuration with all token references replaced by their raw values.
326
- * Useful for tools that need the actual values (e.g. anatomy generation).
327
- */
328
316
  declare function createConfigBuilder<TModifier extends ModifierNameShape = ModifierProp, TTokens = EmptyTokens, TMotion = EmptyMotion, TExt extends Record<string, any> = {}, TCompositeStyles = EmptyCompositeStyles, TModeModifiers extends ModifierNameShape = never, TVars extends VarsConfig = EmptyVars>(data: UdsConfigData, extensions?: TExt): UdsConfig<TModifier, TTokens, TMotion, TExt, TCompositeStyles, TModeModifiers, TVars> & TExt;
329
317
  interface InterpolateMarker {
330
318
  __type: 'interpolate';
@@ -1,4 +1,4 @@
1
- import { CssValueTypeName } from "./types/css-values.js";
1
+ import { CssValue, CssValueTypeName } from "./types/css-values.js";
2
2
 
3
3
  //#region ../config/dist/defineStyleProp.d.ts
4
4
  /** Runtime input type for `toCss` based on the entry's `type`. */
@@ -22,20 +22,10 @@ type ArbitraryEntry = { [T in CssValueTypeName]: {
22
22
  * - An array of {@link ArbitraryEntry} for multi-shape acceptance.
23
23
  */
24
24
  type ArbitrarySpec = CssValueTypeName | readonly ArbitraryEntry[];
25
- /**
26
- * The literal-keyword subset of values a property accepts, derived from
27
- * {@link CssPropertyValues}[P]. For custom CSS properties (`--*`) the value
28
- * type is governed by the required `cssType` field instead, so any string
29
- * is accepted at the type level.
30
- */
31
25
  type StylePropMetadata = {
32
26
  label?: string;
33
27
  description?: string;
34
28
  };
35
- /**
36
- * A finalized style prop. Returned by `defineStyleProp(spec).metadata(meta)`.
37
- * Consumers wrap these in `uds.registerStyleProps({ <propName>: ... })`.
38
- */
39
29
  /**
40
30
  * Structurally-loose form of {@link StyleProp}. Any concrete `StyleProp<P>`
41
31
  * is assignable to this. Used at registration / resolution boundaries where
@@ -51,6 +41,5 @@ interface AnyStyleProp {
51
41
  readonly cssType?: CssValueTypeName;
52
42
  readonly metadata: StylePropMetadata;
53
43
  }
54
- /** Intermediate builder — the only callable method is `.metadata()`. */
55
44
  //#endregion
56
45
  export { AnyStyleProp, ArbitraryEntry, ArbitrarySpec, StylePropMetadata };
@@ -1,9 +1,9 @@
1
1
  import { defaultColors } from "./consts/defaultColors.js";
2
2
  import { ColorFn, ColorKeyword, CssAngle, CssColor, CssLength, CssPercentage, CssRatio, CssTime, CssValue, CssValueTypeName, HexColor, HslColor, RgbColor } from "./types/css-values.js";
3
3
  import { AnyStyleProp, ArbitraryEntry, ArbitrarySpec, StylePropMetadata } from "./defineStyleProp.js";
4
+ import { ResolvedStyleProp, ResolvedToken } from "./resolveStyleProp.js";
4
5
  import { TokenType, VarGroupDef, VarTokenDef, VarsConfig } from "./types.js";
5
6
  import { AtomicToken, BuildOptions, CheckForReservedModifiersInput, ComponentConfig, DefineComponentInput, DefineComponentMotionInput, ExampleDef, ExampleEntryDef, ExampleLayoutStyles, GetModifierFromInput, GlobalStylesDef, InterpolateMarker, ModeGroup, ModeOption, ModeOptionInput, ModeSetInput, ModesInput, ModifierDef, MotionPresetsDef, UdsConfig, UdsConfigData, buildTokenReference, createConfigBuilder, darker, lighter, resolveConfig } from "./createConfig.js";
6
- import { ResolvedStyleProp, ResolvedToken } from "./resolveStyleProp.js";
7
7
  import { SerializedConfig, TokenRef, buildReverseMap, deserializeConfig, serializeConfig } from "./serialize.js";
8
8
  import { ComponentsConfig as ComponentsConfig$1 } from "@uds/types";
9
9
  export { type ComponentsConfig$1 as ComponentsConfig };
@@ -1,7 +1,6 @@
1
1
  import { CssValueTypeName } from "./types/css-values.js";
2
2
  import { ArbitrarySpec, StylePropMetadata } from "./defineStyleProp.js";
3
3
  //#region ../config/dist/resolveStyleProp.d.ts
4
- //#region src/resolveStyleProp.d.ts
5
4
  interface ResolvedToken {
6
5
  /** The token's raw key, e.g. `'brand'`. */
7
6
  readonly name: string;
@@ -52,11 +51,5 @@ interface ResolvedStyleProp {
52
51
  readonly arbitrary: ArbitrarySpec | undefined;
53
52
  readonly metadata: StylePropMetadata;
54
53
  }
55
- /**
56
- * Structurally-loose input shape for the resolver. Any `StyleProp<P>` from
57
- * `defineStyleProp` is assignable to this. Defined locally so the
58
- * resolver's signature doesn't expand `ValuesEntry<P>` over the full CSS
59
- * property union (TS2590).
60
- */
61
54
  //#endregion
62
55
  export { ResolvedStyleProp, ResolvedToken };
@@ -3,7 +3,6 @@ import { AtomicToken, ExampleDef, ModeGroup, ModifierDef, MotionPresetsDef, UdsC
3
3
  import { CompositeStylesConfig } from "@uds/types";
4
4
 
5
5
  //#region ../config/dist/serialize.d.ts
6
- //#region src/serialize.d.ts
7
6
  type ModifierNameShape = `_${string}`;
8
7
  type TokenRef = {
9
8
  $ref: string;
@@ -68,6 +67,6 @@ declare function serializeConfig(config: UdsConfig): SerializedConfig;
68
67
  * Resolves `$ref` markers back to `var()` strings using the atomic token
69
68
  * definitions, then reconstructs the builder chain.
70
69
  */
71
- declare function deserializeConfig(data: SerializedConfig): UdsConfig; //#endregion
70
+ declare function deserializeConfig(data: SerializedConfig): UdsConfig;
72
71
  //#endregion
73
72
  export { SerializedConfig, TokenRef, buildReverseMap, deserializeConfig, serializeConfig };
@@ -1,5 +1,4 @@
1
1
  //#region ../config/dist/types/css-values.d.ts
2
- //#region src/types/css-values.d.ts
3
2
  /**
4
3
  * CSS value-type primitives — building blocks used by {@link CssPropertyValues}
5
4
  * in `./css-properties` and by `defineStyleProp` to constrain authored values.
@@ -56,6 +55,6 @@ type CssValue = {
56
55
  ident: string;
57
56
  string: string;
58
57
  };
59
- type CssValueTypeName = keyof CssValue; //#endregion
58
+ type CssValueTypeName = keyof CssValue;
60
59
  //#endregion
61
60
  export { ColorFn, ColorKeyword, CssAngle, CssColor, CssLength, CssPercentage, CssRatio, CssTime, CssValue, CssValueTypeName, HexColor, HslColor, RgbColor };
@@ -1,5 +1,4 @@
1
1
  //#region ../config/dist/types.d.ts
2
- //#region src/types.d.ts
3
2
  /**
4
3
  * Scalar DTCG-aligned token types. Composite types (shadow, gradient,
5
4
  * typography, border, transition, cubicBezier) are intentionally deferred
@@ -60,6 +59,6 @@ type VarGroupDef<M extends `_${string}` = `_${string}`> = {
60
59
  * spacing: { $type: 'dimension', 1: { value: '0.25rem' }, 2: { value: '0.5rem' } },
61
60
  * }
62
61
  */
63
- type VarsConfig<M extends `_${string}` = `_${string}`> = Record<string, VarGroupDef<M>>; //#endregion
62
+ type VarsConfig<M extends `_${string}` = `_${string}`> = Record<string, VarGroupDef<M>>;
64
63
  //#endregion
65
64
  export { TokenType, VarGroupDef, VarTokenDef, VarsConfig };
package/dist/config.d.ts CHANGED
@@ -35,50 +35,9 @@ declare const defaultPreset: UdsConfig<_$_uds_types0.ModifierProp | GetModifierF
35
35
  };
36
36
  };
37
37
  }>, {
38
- opacity: {
39
- 0: string;
40
- 5: string;
41
- 10: string;
42
- 20: string;
43
- 40: string;
44
- 60: string;
45
- 80: string;
46
- 25: string;
47
- 30: string;
48
- 50: string;
49
- 70: string;
50
- 75: string;
51
- 90: string;
52
- 95: string;
53
- 100: string;
54
- };
55
- scale: {
56
- 0: string;
57
- 50: string;
58
- 75: string;
59
- 90: string;
60
- 95: string;
61
- 100: string;
62
- 105: string;
63
- 110: string;
64
- 125: string;
65
- 150: string;
66
- 200: string;
67
- };
68
- rotate: {
69
- 0: string;
70
- 1: string;
71
- 2: string;
72
- 3: string;
73
- 6: string;
74
- 12: string;
75
- 90: string;
76
- 45: string;
77
- 180: string;
78
- };
79
38
  color: {
80
- inherit: string;
81
39
  transparent: string;
40
+ inherit: string;
82
41
  current: string;
83
42
  "always/black": string;
84
43
  "always/white": string;
@@ -101,22 +60,16 @@ declare const defaultPreset: UdsConfig<_$_uds_types0.ModifierProp | GetModifierF
101
60
  inverse: string;
102
61
  "on-inverse": string;
103
62
  };
104
- borderColor: {
105
- brand: string;
106
- accent: string;
107
- alert: string;
108
- positive: string;
109
- warning: string;
110
- primary: string;
111
- secondary: string;
112
- tertiary: string;
113
- inverse: string;
114
- surface: string;
115
- "brand-wash": string;
116
- "accent-wash": string;
117
- "alert-wash": string;
118
- "positive-wash": string;
119
- "warning-wash": string;
63
+ shadow: {
64
+ none: string;
65
+ sm: string;
66
+ md: string;
67
+ lg: string;
68
+ xl: string;
69
+ "2xl": string;
70
+ xs: string;
71
+ "2xs": string;
72
+ inner: string;
120
73
  };
121
74
  position: {
122
75
  auto: string;
@@ -128,17 +81,111 @@ declare const defaultPreset: UdsConfig<_$_uds_types0.ModifierProp | GetModifierF
128
81
  "2/4": string;
129
82
  "3/4": string;
130
83
  };
84
+ flex: {
85
+ 1: string;
86
+ initial: string;
87
+ auto: string;
88
+ none: string;
89
+ };
90
+ rotate: {
91
+ 0: string;
92
+ 1: string;
93
+ 2: string;
94
+ 3: string;
95
+ 6: string;
96
+ 12: string;
97
+ 90: string;
98
+ 45: string;
99
+ 180: string;
100
+ };
101
+ scale: {
102
+ 0: string;
103
+ 50: string;
104
+ 75: string;
105
+ 90: string;
106
+ 95: string;
107
+ 100: string;
108
+ 105: string;
109
+ 110: string;
110
+ 125: string;
111
+ 150: string;
112
+ 200: string;
113
+ };
114
+ translate: {
115
+ 0: string;
116
+ 1: string;
117
+ full: string;
118
+ "1/2": string;
119
+ "1/3": string;
120
+ "2/3": string;
121
+ "1/4": string;
122
+ "3/4": string;
123
+ 2: string;
124
+ 4: string;
125
+ 8: string;
126
+ 0.5: string;
127
+ 1.5: string;
128
+ 2.5: string;
129
+ 3: string;
130
+ 3.5: string;
131
+ 5: string;
132
+ 6: string;
133
+ 7: string;
134
+ 9: string;
135
+ 10: string;
136
+ 11: string;
137
+ 12: string;
138
+ 14: string;
139
+ 16: string;
140
+ 20: string;
141
+ 24: string;
142
+ 28: string;
143
+ 32: string;
144
+ 36: string;
145
+ 40: string;
146
+ 44: string;
147
+ 48: string;
148
+ 52: string;
149
+ 56: string;
150
+ 60: string;
151
+ 64: string;
152
+ 72: string;
153
+ 80: string;
154
+ 96: string;
155
+ };
156
+ animation: {
157
+ none: string;
158
+ spin: string;
159
+ ping: string;
160
+ };
161
+ opacity: {
162
+ 0: string;
163
+ 5: string;
164
+ 10: string;
165
+ 20: string;
166
+ 40: string;
167
+ 60: string;
168
+ 80: string;
169
+ 25: string;
170
+ 30: string;
171
+ 50: string;
172
+ 70: string;
173
+ 75: string;
174
+ 90: string;
175
+ 95: string;
176
+ 100: string;
177
+ };
131
178
  size: {
132
179
  auto: string;
133
180
  full: string;
134
- max: string;
135
- min: string;
136
181
  "1/2": string;
137
182
  "1/3": string;
138
183
  "2/3": string;
139
184
  "1/4": string;
140
185
  "2/4": string;
141
186
  "3/4": string;
187
+ min: string;
188
+ max: string;
142
189
  fit: string;
143
190
  "1/5": string;
144
191
  "2/5": string;
@@ -150,11 +197,6 @@ declare const defaultPreset: UdsConfig<_$_uds_types0.ModifierProp | GetModifierF
150
197
  "4/6": string;
151
198
  "5/6": string;
152
199
  };
153
- animation: {
154
- none: string;
155
- ping: string;
156
- spin: string;
157
- };
158
200
  bg: {
159
201
  overlay: string;
160
202
  brand: string;
@@ -176,6 +218,32 @@ declare const defaultPreset: UdsConfig<_$_uds_types0.ModifierProp | GetModifierF
176
218
  "positive-wash": string;
177
219
  "warning-wash": string;
178
220
  };
221
+ radius: {
222
+ none: string;
223
+ sm: string;
224
+ md: string;
225
+ lg: string;
226
+ xl: string;
227
+ full: string;
228
+ xs: string;
229
+ };
230
+ borderColor: {
231
+ brand: string;
232
+ accent: string;
233
+ alert: string;
234
+ positive: string;
235
+ warning: string;
236
+ primary: string;
237
+ secondary: string;
238
+ tertiary: string;
239
+ inverse: string;
240
+ surface: string;
241
+ "brand-wash": string;
242
+ "accent-wash": string;
243
+ "alert-wash": string;
244
+ "positive-wash": string;
245
+ "warning-wash": string;
246
+ };
179
247
  borderWidth: {
180
248
  none: string;
181
249
  thin: string;
@@ -184,16 +252,19 @@ declare const defaultPreset: UdsConfig<_$_uds_types0.ModifierProp | GetModifierF
184
252
  };
185
253
  divideWidth: {
186
254
  0: string;
187
- 4: string;
188
255
  reverse: string;
189
256
  2: string;
257
+ 4: string;
190
258
  8: string;
191
259
  };
192
- flex: {
260
+ blur: {
193
261
  none: string;
194
- initial: string;
195
- auto: string;
196
- 1: string;
262
+ sm: string;
263
+ md: string;
264
+ lg: string;
265
+ xl: string;
266
+ "2xl": string;
267
+ "3xl": string;
197
268
  };
198
269
  flexGrow: {
199
270
  0: string;
@@ -202,29 +273,12 @@ declare const defaultPreset: UdsConfig<_$_uds_types0.ModifierProp | GetModifierF
202
273
  flexShrink: {
203
274
  0: string;
204
275
  };
205
- aspectRatio: {
206
- square: string;
207
- landscape: string;
208
- portrait: string;
209
- widescreen: string;
210
- ultrawide: string;
211
- golden: string;
212
- };
213
- zIndex: {
214
- 0: string;
215
- auto: string;
216
- 10: string;
217
- 20: string;
218
- 40: string;
219
- 30: string;
220
- 50: string;
221
- };
222
276
  spacing: {
223
277
  0: string;
224
- 4: string;
225
278
  1: string;
226
279
  px: string;
227
280
  2: string;
281
+ 4: string;
228
282
  8: string;
229
283
  0.5: string;
230
284
  1.5: string;
@@ -256,57 +310,62 @@ declare const defaultPreset: UdsConfig<_$_uds_types0.ModifierProp | GetModifierF
256
310
  80: string;
257
311
  96: string;
258
312
  };
259
- w: {
260
- screen: string;
261
- svw: string;
262
- lvw: string;
263
- dvw: string;
264
- };
265
- outlineWidth: {
313
+ zIndex: {
266
314
  0: string;
267
- 4: string;
268
- 1: string;
269
- 2: string;
270
- 8: string;
315
+ auto: string;
316
+ 10: string;
317
+ 20: string;
318
+ 40: string;
319
+ 30: string;
320
+ 50: string;
271
321
  };
272
322
  outlineOffset: {
273
323
  0: string;
274
- 4: string;
275
324
  1: string;
276
325
  2: string;
326
+ 4: string;
277
327
  8: string;
278
328
  };
279
329
  ringWidth: {
280
330
  0: string;
281
- 4: string;
282
- inset: string;
283
331
  1: string;
332
+ inset: string;
284
333
  2: string;
334
+ 4: string;
285
335
  8: string;
286
336
  };
287
337
  ringOffsetWidth: {
288
338
  0: string;
289
- 4: string;
290
339
  1: string;
291
340
  2: string;
341
+ 4: string;
292
342
  8: string;
293
343
  };
294
- shadow: {
295
- none: string;
296
- sm: string;
297
- md: string;
298
- lg: string;
299
- xl: string;
300
- "2xl": string;
301
- "2xs": string;
302
- xs: string;
303
- inner: string;
344
+ h: {
345
+ screen: string;
346
+ svh: string;
347
+ lvh: string;
348
+ dvh: string;
349
+ };
350
+ w: {
351
+ screen: string;
352
+ svw: string;
353
+ lvw: string;
354
+ dvw: string;
304
355
  };
305
356
  strokeWidth: {
306
357
  0: string;
307
358
  1: string;
308
359
  2: string;
309
360
  };
361
+ skew: {
362
+ 0: string;
363
+ 1: string;
364
+ 2: string;
365
+ 3: string;
366
+ 6: string;
367
+ 12: string;
368
+ };
310
369
  fontFamily: {
311
370
  sans: string;
312
371
  serif: string;
@@ -314,8 +373,8 @@ declare const defaultPreset: UdsConfig<_$_uds_types0.ModifierProp | GetModifierF
314
373
  };
315
374
  fontWeight: {
316
375
  normal: string;
317
- thin: string;
318
376
  bold: string;
377
+ thin: string;
319
378
  medium: string;
320
379
  extralight: string;
321
380
  light: string;
@@ -332,8 +391,8 @@ declare const defaultPreset: UdsConfig<_$_uds_types0.ModifierProp | GetModifierF
332
391
  widest: string;
333
392
  };
334
393
  lineHeight: {
335
- none: string;
336
394
  normal: string;
395
+ none: string;
337
396
  tight: string;
338
397
  relaxed: string;
339
398
  };
@@ -342,82 +401,23 @@ declare const defaultPreset: UdsConfig<_$_uds_types0.ModifierProp | GetModifierF
342
401
  sm: string;
343
402
  md: string;
344
403
  lg: string;
345
- "2xs": string;
346
404
  xs: string;
405
+ "2xs": string;
347
406
  };
348
- blur: {
349
- none: string;
350
- sm: string;
351
- md: string;
352
- lg: string;
353
- xl: string;
354
- "2xl": string;
355
- "3xl": string;
356
- };
357
- translate: {
407
+ outlineWidth: {
358
408
  0: string;
359
- 4: string;
360
- full: string;
361
409
  1: string;
362
- "1/2": string;
363
- "1/3": string;
364
- "2/3": string;
365
- "1/4": string;
366
- "3/4": string;
367
410
  2: string;
411
+ 4: string;
368
412
  8: string;
369
- 0.5: string;
370
- 1.5: string;
371
- 2.5: string;
372
- 3: string;
373
- 3.5: string;
374
- 5: string;
375
- 6: string;
376
- 7: string;
377
- 9: string;
378
- 10: string;
379
- 11: string;
380
- 12: string;
381
- 14: string;
382
- 16: string;
383
- 20: string;
384
- 24: string;
385
- 28: string;
386
- 32: string;
387
- 36: string;
388
- 40: string;
389
- 44: string;
390
- 48: string;
391
- 52: string;
392
- 56: string;
393
- 60: string;
394
- 64: string;
395
- 72: string;
396
- 80: string;
397
- 96: string;
398
- };
399
- radius: {
400
- none: string;
401
- sm: string;
402
- md: string;
403
- lg: string;
404
- xl: string;
405
- xs: string;
406
- full: string;
407
- };
408
- h: {
409
- screen: string;
410
- svh: string;
411
- lvh: string;
412
- dvh: string;
413
413
  };
414
- skew: {
415
- 0: string;
416
- 1: string;
417
- 2: string;
418
- 3: string;
419
- 6: string;
420
- 12: string;
414
+ aspectRatio: {
415
+ square: string;
416
+ landscape: string;
417
+ portrait: string;
418
+ widescreen: string;
419
+ ultrawide: string;
420
+ golden: string;
421
421
  };
422
422
  }, {}, {}, {}, GetModifierFromInput<{
423
423
  readonly colorMode: {