@yahoo/uds-v5-wip 1.39.0 → 1.40.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.
@@ -3,7 +3,6 @@ import { ComponentConfigValue, HtmlTag, LayerInput, PropBinding } from "./compon
3
3
  import { ComponentPropsWithoutRef, HTMLAttributes, JSX } from "react";
4
4
 
5
5
  //#region ../config/dist/Props.d.ts
6
- //#region src/Props.d.ts
7
6
  /**
8
7
  * Resolve the native HTML-attribute surface for the config's root tag.
9
8
  *
@@ -66,9 +65,5 @@ interface DataAttrs {
66
65
  type Props<TConfig extends ComponentConfigValue<Record<string, LayerInput>, Record<string, PropBinding>, HtmlTag | undefined>> = TConfig extends ComponentConfigValue<Record<string, LayerInput>, infer TProps extends Record<string, PropBinding>, infer TTag extends HtmlTag | undefined> ? Prettify<PropsFromConfig<TProps> & Omit<ElementProps<TTag>, keyof TProps> & DataAttrs & {
67
66
  as?: string;
68
67
  }> : never;
69
- /**
70
- * `Props<typeof boxConfig>` for the common 'use the config's inferred
71
- * type' invocation. Keeps `box.tsx` from having to repeat the generic.
72
- */
73
68
  //#endregion
74
69
  export { Props };
@@ -2,7 +2,6 @@ import { ComponentRef, CompositeRef, RegisteredComponents, StylePropRef } from "
2
2
  import { ReactNode } from "react";
3
3
 
4
4
  //#region ../config/dist/component-config.d.ts
5
- //#region src/component-config.d.ts
6
5
  /**
7
6
  * HTML tag literal. The TypeScript type is `string` (any tag name);
8
7
  * runtime renders it via `React.createElement(tag, ...)`.
@@ -159,14 +158,6 @@ type PrimitivePropBinding = StylePropShorthand | VerbosePropBinding;
159
158
  * tighter `VerbosePropBinding`.
160
159
  */
161
160
  type PropBinding = PrimitivePropBinding;
162
- /**
163
- * Marker for a boolean JSX prop. Use inside the `props` block:
164
- *
165
- * props: {
166
- * loading: bool(),
167
- * disabled: bool(),
168
- * }
169
- */
170
161
  /**
171
162
  * Branded shape returned by `defineComponent({...})`. Carries `layers`,
172
163
  * `props`, AND a phantom `__tag` slot as const-narrowed types so
@@ -192,10 +183,5 @@ interface ComponentConfigValue<TLayers extends Record<string, LayerInput>, TProp
192
183
  readonly props?: TProps;
193
184
  readonly defaultProps?: Record<string, unknown>;
194
185
  }
195
- /**
196
- * The bundle passed to the render function for each layer — a ready-to-
197
- * spread object with `className` and any forwarded attrs. The render
198
- * function destructures `props.<layerName>` into the JSX position.
199
- */
200
186
  //#endregion
201
187
  export { BoolMarker, ComponentConfigValue, ComposedLayer, CompositeBinding, EnumMarker, HtmlTag, LayerInput, PrimitiveLayer, PrimitivePropBinding, PropBinding, RootTag, SingleLayerCompositeBinding, StylePropBinding, StylePropShorthand, SurfaceForward, VerbosePropBinding };
@@ -1,5 +1,4 @@
1
1
  //#region ../config/dist/component-refs.d.ts
2
- //#region src/component-refs.d.ts
3
2
  /**
4
3
  * Augmentable registries + template-literal ref types for the
5
4
  * component-API surface.
@@ -64,14 +63,6 @@ interface RegisteredStyleProps {}
64
63
  * call.
65
64
  */
66
65
  interface RegisteredComposites {}
67
- /**
68
- * Registered motion-preset names. Each key is the preset identifier
69
- * (`'{fadeIn}'`); value is `void`.
70
- *
71
- * Populated by codegen from `uds.config.ts`'s `.defineMotion({...})`
72
- * (motion has no separate `.registerMotion` step today; the entries
73
- * come directly from `defineMotion` keys).
74
- */
75
66
  /**
76
67
  * Brace-wrapped reference to a registered React component. Falls open
77
68
  * to `'{${string}}'` when the registry is unaugmented (e.g. inside
@@ -90,9 +81,5 @@ type StylePropRef = [keyof RegisteredStyleProps] extends [never] ? `{${string}}`
90
81
  * when unaugmented.
91
82
  */
92
83
  type CompositeRef = [keyof RegisteredComposites] extends [never] ? `{${string}}` : `{${Extract<keyof RegisteredComposites, string>}}`;
93
- /**
94
- * Brace-wrapped reference to a registered motion preset. Falls open
95
- * when unaugmented.
96
- */
97
84
  //#endregion
98
85
  export { ComponentRef, CompositeRef, RegisteredComponents, RegisteredComposites, RegisteredStyleProps, StylePropRef };
@@ -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,12 +1,11 @@
1
1
  import { ComponentConfigValue } from "./component-config.js";
2
2
  import { BoundComponent } from "./defineComponent.js";
3
3
  import { AnyStyleProp } from "./defineStyleProp.js";
4
- import { TokenType, VarsConfig } from "./types.js";
5
4
  import { ResolvedStyleProp } from "./resolveStyleProp.js";
5
+ import { TokenType, VarsConfig } from "./types.js";
6
6
  import { BaseModifierProp, ComponentsConfig, CompositeStylesConfig, ConfigurableProp, ModifierProp, MotionPreset, RemotionComponentDef, RemotionConfig, RemotionTransitionDef } from "@uds/types";
7
7
 
8
8
  //#region ../config/dist/createConfig.d.ts
9
- //#region src/createConfig.d.ts
10
9
  type MotionPresetsDef = Record<string, MotionPreset>;
11
10
  type MotionAliasValue<TMotion> = TMotion extends Record<string, infer V> ? Extract<V, string> : never;
12
11
  type EmptyMotion = {};
@@ -79,12 +78,6 @@ type GetModifierFromInput<I extends ModesInput> = { [SetKey in keyof I]: { [OptK
79
78
  } ? M extends ModifierNameShape ? M : never : OptKey extends string ? `_${OptKey}` : never }[keyof I[SetKey]['options']] }[keyof I];
80
79
  /** Reject any input whose derived/explicit modifiers collide with reserved names. */
81
80
  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;
82
- /**
83
- * Convert the authored object-keyed input into the internal `ModeGroup[]` shape.
84
- * Derives `_${optionKey}` modifiers when no explicit `modifier` is provided.
85
- * Never sets `default: true` — the new API has no concept of a default option;
86
- * downstream consumers treat "no option active" as the implicit default.
87
- */
88
81
  interface ModifierDef {
89
82
  modifier: ModifierNameShape;
90
83
  selector: string;
@@ -164,7 +157,6 @@ type VarsToTokens<TVars extends VarsConfig> = { [K in keyof TVars]: { [T in Excl
164
157
  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 };
165
158
  /** Build a structured token reference object from atomic tokens */
166
159
  declare function buildTokenReference(atomic: AtomicToken<ModifierNameShape>[], configPrefix: string): Record<string, Record<string, string>>;
167
- /** Build a structured composite-styles reference object for use in defineModifiers context */
168
160
  /** Global styles definition — CSS selector → style props */
169
161
  type GlobalStylesDef = Record<string, Record<string, any>>;
170
162
  /** CSS properties for the example wrapper element */
@@ -357,10 +349,6 @@ interface UdsConfig<TModifier extends ModifierNameShape = ModifierProp, TTokens
357
349
  type AnyUdsConfig = UdsConfig<ModifierNameShape, any, any, any, any, any, any>;
358
350
  /** Extract the raw config data from a builder instance */
359
351
  declare function resolveConfig(config: AnyUdsConfig): UdsConfigData;
360
- /**
361
- * Resolve configuration with all token references replaced by their raw values.
362
- * Useful for tools that need the actual values (e.g. anatomy generation).
363
- */
364
352
  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;
365
353
  interface InterpolateMarker {
366
354
  __type: 'interpolate';
@@ -4,9 +4,9 @@ import "../../utils/dist/index.js";
4
4
  import { getConfigurablePropMapping } from "../../core/dist/configurable-prop-helpers.js";
5
5
  import "../../core/dist/index.js";
6
6
  import { buildMotionReference, resolveComponentMotionAliases, validateComponentVariants } from "./component-resolution.js";
7
+ import { applyPresetToData, deepMerge, mergeAtomic } from "./preset-merge.js";
7
8
  import { resolveTokenType, sniffTokenTypeFromValue } from "./resolveTokenTypes.js";
8
9
  import { resolveStyleProp } from "./resolveStyleProp.js";
9
- import { applyPresetToData, deepMerge, mergeAtomic } from "./preset-merge.js";
10
10
  //#region ../config/dist/createConfig.js
11
11
  /** biome-ignore-all lint/suspicious/noExplicitAny: necessary for dynamic builder to work correctly */
12
12
  /**
@@ -3,7 +3,6 @@ import { Props } from "./Props.js";
3
3
  import { ReactNode } from "react";
4
4
 
5
5
  //#region ../config/dist/defineComponent.d.ts
6
- //#region src/defineComponent.d.ts
7
6
  /**
8
7
  * A React component bound to a `defineComponent` config, with the
9
8
  * source config attached as a phantom type slot. Tools (codegen,
@@ -14,11 +13,5 @@ import { ReactNode } from "react";
14
13
  type BoundComponent<TConfig extends ComponentConfigValue<Record<string, LayerInput>, any, HtmlTag | undefined>, TExtra extends Record<string, unknown> = {}> = React.FC<Props<TConfig> & TExtra> & {
15
14
  readonly __config: TConfig;
16
15
  };
17
- /**
18
- * A `defineComponent({...})` config value with a `.render(fn)` builder
19
- * method bolted on. The builder is non-enumerable so JSON serialization
20
- * still produces pure data — codegen can read `__kind`, `layers`,
21
- * `props`, and `defaultProps` without seeing the render hook.
22
- */
23
16
  //#endregion
24
17
  export { BoundComponent };
@@ -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 };
@@ -4,9 +4,9 @@ import { Props } from "./Props.js";
4
4
  import { BoundComponent } from "./defineComponent.js";
5
5
  import { ColorFn, ColorKeyword, CssAngle, CssColor, CssLength, CssPercentage, CssRatio, CssTime, CssValue, CssValueTypeName, HexColor, HslColor, RgbColor } from "./types/css-values.js";
6
6
  import { AnyStyleProp, ArbitraryEntry, ArbitrarySpec, StylePropMetadata } from "./defineStyleProp.js";
7
+ import { ResolvedStyleProp, ResolvedToken } from "./resolveStyleProp.js";
7
8
  import { TokenType, VarGroupDef, VarTokenDef, VarsConfig } from "./types.js";
8
9
  import { AtomicToken, BuildOptions, CheckForReservedModifiersInput, ComponentConfig, DefineComponentInput, DefineComponentMotionInput, ExampleDef, ExampleEntryDef, ExampleLayoutStyles, GetModifierFromInput, GlobalStylesDef, InterpolateMarker, ModeGroup, ModeOption, ModeOptionInput, ModeSetInput, ModesInput, ModifierDef, MotionPresetsDef, SingleComponentDef, UdsConfig, UdsConfigData, buildTokenReference, createConfigBuilder, darker, lighter, resolveConfig } from "./createConfig.js";
9
- import { ResolvedStyleProp, ResolvedToken } from "./resolveStyleProp.js";
10
10
  import { defaultColors } from "./consts/defaultColors.js";
11
11
  import { SerializedConfig, TokenRef, buildReverseMap, deserializeConfig, serializeConfig } from "./serialize.js";
12
12
  import { ComponentsConfig as ComponentsConfig$1 } from "@uds/types";
@@ -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;
@@ -59,11 +58,5 @@ interface ResolvedStyleProp {
59
58
  readonly arbitrary: ArbitrarySpec | undefined;
60
59
  readonly metadata: StylePropMetadata;
61
60
  }
62
- /**
63
- * Structurally-loose input shape for the resolver. Any `StyleProp<P>` from
64
- * `defineStyleProp` is assignable to this. Defined locally so the
65
- * resolver's signature doesn't expand `ValuesEntry<P>` over the full CSS
66
- * property union (TS2590).
67
- */
68
61
  //#endregion
69
62
  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 };
@@ -1,4 +1,5 @@
1
1
  //#region ../foundational-presets/dist/motion.d.ts
2
+ //#region src/motion.d.ts
2
3
  interface InterpolateMarker {
3
4
  __type: 'interpolate';
4
5
  output: number[];
@@ -7,6 +8,6 @@ interface InterpolateMarker {
7
8
  declare function interpolate(config: {
8
9
  output: number[];
9
10
  extrapolate?: 'clamp' | 'extend' | 'identity';
10
- }): InterpolateMarker;
11
+ }): InterpolateMarker; //#endregion
11
12
  //#endregion
12
13
  export { InterpolateMarker, interpolate };