@yahoo/uds-v5-wip 1.15.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.
- package/dist/core/dist/createComponent.d.ts +2 -1
- package/dist/core/dist/createComponentExample.d.ts +2 -1
- package/dist/core/dist/createProvider.d.ts +2 -1
- package/dist/core/dist/generated/stylePropsTwMap.d.ts +2 -1
- package/dist/core/dist/getComponentStyles.d.ts +2 -1
- package/dist/core/dist/getStyles.d.ts +2 -1
- package/dist/core/dist/macros.d.ts +2 -1
- package/dist/core/dist/propMappings.d.ts +2 -1
- package/dist/core/dist/resolveMotionState.d.ts +2 -1
- package/dist/core/dist/transformPreset.d.ts +2 -1
- package/dist/core/dist/withDefaultStyleProps.d.ts +2 -1
- package/dist/foundational-presets/dist/boldVibrant.d.ts +0 -1
- package/dist/foundational-presets/dist/brutalist.d.ts +0 -1
- package/dist/foundational-presets/dist/candy.d.ts +0 -1
- package/dist/foundational-presets/dist/cleanMinimalist.d.ts +0 -1
- package/dist/foundational-presets/dist/corporate.d.ts +0 -1
- package/dist/foundational-presets/dist/darkMoody.d.ts +0 -1
- package/dist/foundational-presets/dist/defaultPreset.d.ts +0 -1
- package/dist/foundational-presets/dist/forest.d.ts +0 -1
- package/dist/foundational-presets/dist/highContrast.d.ts +0 -1
- package/dist/foundational-presets/dist/lavender.d.ts +0 -1
- package/dist/foundational-presets/dist/luxury.d.ts +0 -1
- package/dist/foundational-presets/dist/monochrome.d.ts +0 -1
- package/dist/foundational-presets/dist/motion.d.ts +1 -2
- package/dist/foundational-presets/dist/neonCyber.d.ts +0 -1
- package/dist/foundational-presets/dist/newspaper.d.ts +0 -1
- package/dist/foundational-presets/dist/ocean.d.ts +0 -1
- package/dist/foundational-presets/dist/slate.d.ts +0 -1
- package/dist/foundational-presets/dist/sunset.d.ts +0 -1
- package/dist/foundational-presets/dist/terminal.d.ts +0 -1
- package/dist/foundational-presets/dist/warmOrganic.d.ts +0 -1
- package/dist/loader/dist/_virtual/_rolldown/runtime.js +1 -1
- package/dist/loader/dist/node_modules/react/cjs/react.development.js +1 -1
- package/dist/loader/dist/node_modules/react/cjs/react.production.js +1 -1
- package/dist/remotion/dist/components/image-slide.d.ts +1 -2
- package/dist/remotion/dist/components/image-slide.js +3 -3
- package/dist/remotion/dist/components/index.js +7 -7
- package/dist/remotion/dist/components/lower-third.d.ts +1 -2
- package/dist/remotion/dist/components/lower-third.js +5 -5
- package/dist/remotion/dist/components/quote-card.d.ts +1 -2
- package/dist/remotion/dist/components/quote-card.js +4 -4
- package/dist/remotion/dist/components/split-screen.d.ts +1 -2
- package/dist/remotion/dist/components/split-screen.js +7 -7
- package/dist/remotion/dist/components/stat-card.d.ts +1 -2
- package/dist/remotion/dist/components/stat-card.js +3 -3
- package/dist/remotion/dist/components/text-overlay.d.ts +1 -2
- package/dist/remotion/dist/components/text-overlay.js +2 -2
- package/dist/remotion/dist/components/title-card.d.ts +1 -2
- package/dist/remotion/dist/components/title-card.js +3 -3
- package/dist/remotion/dist/components/typing-text.d.ts +1 -2
- package/dist/remotion/dist/components/typing-text.js +3 -3
- package/dist/tsconfig.tsbuildinfo +1 -1
- 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
|
-
|
|
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,7 +2,6 @@ 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", {
|
|
@@ -2,7 +2,6 @@ import { UdsConfig } from "../../config/dist/createConfig.js";
|
|
|
2
2
|
import * as _$_uds_types0 from "@uds/types";
|
|
3
3
|
|
|
4
4
|
//#region ../foundational-presets/dist/brutalist.d.ts
|
|
5
|
-
//#region src/brutalist.d.ts
|
|
6
5
|
declare const brutalistFoundationPreset: 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", {
|
|
@@ -2,7 +2,6 @@ import { UdsConfig } from "../../config/dist/createConfig.js";
|
|
|
2
2
|
import * as _$_uds_types0 from "@uds/types";
|
|
3
3
|
|
|
4
4
|
//#region ../foundational-presets/dist/candy.d.ts
|
|
5
|
-
//#region src/candy.d.ts
|
|
6
5
|
declare const candyFoundationPreset: 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", {
|
|
@@ -2,7 +2,6 @@ import { UdsConfig } from "../../config/dist/createConfig.js";
|
|
|
2
2
|
import * as _$_uds_types0 from "@uds/types";
|
|
3
3
|
|
|
4
4
|
//#region ../foundational-presets/dist/cleanMinimalist.d.ts
|
|
5
|
-
//#region src/cleanMinimalist.d.ts
|
|
6
5
|
declare const cleanMinimalistFoundationPreset: 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", {
|
|
@@ -2,7 +2,6 @@ import { UdsConfig } from "../../config/dist/createConfig.js";
|
|
|
2
2
|
import * as _$_uds_types0 from "@uds/types";
|
|
3
3
|
|
|
4
4
|
//#region ../foundational-presets/dist/corporate.d.ts
|
|
5
|
-
//#region src/corporate.d.ts
|
|
6
5
|
declare const corporateFoundationPreset: 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", {
|
|
@@ -2,7 +2,6 @@ import { UdsConfig } from "../../config/dist/createConfig.js";
|
|
|
2
2
|
import * as _$_uds_types0 from "@uds/types";
|
|
3
3
|
|
|
4
4
|
//#region ../foundational-presets/dist/darkMoody.d.ts
|
|
5
|
-
//#region src/darkMoody.d.ts
|
|
6
5
|
declare const darkMoodyFoundationPreset: 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", {
|
|
@@ -2,7 +2,6 @@ import { UdsConfig } from "../../config/dist/createConfig.js";
|
|
|
2
2
|
import * as _$_uds_types0 from "@uds/types";
|
|
3
3
|
|
|
4
4
|
//#region ../foundational-presets/dist/defaultPreset.d.ts
|
|
5
|
-
//#region src/defaultPreset.d.ts
|
|
6
5
|
declare const defaultFoundationPreset: 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", {
|
|
@@ -2,7 +2,6 @@ import { UdsConfig } from "../../config/dist/createConfig.js";
|
|
|
2
2
|
import * as _$_uds_types0 from "@uds/types";
|
|
3
3
|
|
|
4
4
|
//#region ../foundational-presets/dist/forest.d.ts
|
|
5
|
-
//#region src/forest.d.ts
|
|
6
5
|
declare const forestFoundationPreset: 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", {
|
|
@@ -2,7 +2,6 @@ import { UdsConfig } from "../../config/dist/createConfig.js";
|
|
|
2
2
|
import * as _$_uds_types0 from "@uds/types";
|
|
3
3
|
|
|
4
4
|
//#region ../foundational-presets/dist/highContrast.d.ts
|
|
5
|
-
//#region src/highContrast.d.ts
|
|
6
5
|
declare const highContrastFoundationPreset: 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", {
|
|
@@ -2,7 +2,6 @@ import { UdsConfig } from "../../config/dist/createConfig.js";
|
|
|
2
2
|
import * as _$_uds_types0 from "@uds/types";
|
|
3
3
|
|
|
4
4
|
//#region ../foundational-presets/dist/lavender.d.ts
|
|
5
|
-
//#region src/lavender.d.ts
|
|
6
5
|
declare const lavenderFoundationPreset: 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", {
|
|
@@ -2,7 +2,6 @@ import { UdsConfig } from "../../config/dist/createConfig.js";
|
|
|
2
2
|
import * as _$_uds_types0 from "@uds/types";
|
|
3
3
|
|
|
4
4
|
//#region ../foundational-presets/dist/luxury.d.ts
|
|
5
|
-
//#region src/luxury.d.ts
|
|
6
5
|
declare const luxuryFoundationPreset: 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", {
|
|
@@ -2,7 +2,6 @@ import { UdsConfig } from "../../config/dist/createConfig.js";
|
|
|
2
2
|
import * as _$_uds_types0 from "@uds/types";
|
|
3
3
|
|
|
4
4
|
//#region ../foundational-presets/dist/monochrome.d.ts
|
|
5
|
-
//#region src/monochrome.d.ts
|
|
6
5
|
declare const monochromeFoundationPreset: 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", {
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
//#region ../foundational-presets/dist/motion.d.ts
|
|
2
|
-
//#region src/motion.d.ts
|
|
3
2
|
interface InterpolateMarker {
|
|
4
3
|
__type: 'interpolate';
|
|
5
4
|
output: number[];
|
|
@@ -8,6 +7,6 @@ interface InterpolateMarker {
|
|
|
8
7
|
declare function interpolate(config: {
|
|
9
8
|
output: number[];
|
|
10
9
|
extrapolate?: 'clamp' | 'extend' | 'identity';
|
|
11
|
-
}): InterpolateMarker;
|
|
10
|
+
}): InterpolateMarker;
|
|
12
11
|
//#endregion
|
|
13
12
|
export { InterpolateMarker, interpolate };
|
|
@@ -2,7 +2,6 @@ import { UdsConfig } from "../../config/dist/createConfig.js";
|
|
|
2
2
|
import * as _$_uds_types0 from "@uds/types";
|
|
3
3
|
|
|
4
4
|
//#region ../foundational-presets/dist/neonCyber.d.ts
|
|
5
|
-
//#region src/neonCyber.d.ts
|
|
6
5
|
declare const neonCyberFoundationPreset: 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", {
|
|
@@ -2,7 +2,6 @@ import { UdsConfig } from "../../config/dist/createConfig.js";
|
|
|
2
2
|
import * as _$_uds_types0 from "@uds/types";
|
|
3
3
|
|
|
4
4
|
//#region ../foundational-presets/dist/newspaper.d.ts
|
|
5
|
-
//#region src/newspaper.d.ts
|
|
6
5
|
declare const newspaperFoundationPreset: 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", {
|
|
@@ -2,7 +2,6 @@ import { UdsConfig } from "../../config/dist/createConfig.js";
|
|
|
2
2
|
import * as _$_uds_types0 from "@uds/types";
|
|
3
3
|
|
|
4
4
|
//#region ../foundational-presets/dist/ocean.d.ts
|
|
5
|
-
//#region src/ocean.d.ts
|
|
6
5
|
declare const oceanFoundationPreset: 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", {
|
|
@@ -2,7 +2,6 @@ import { UdsConfig } from "../../config/dist/createConfig.js";
|
|
|
2
2
|
import * as _$_uds_types0 from "@uds/types";
|
|
3
3
|
|
|
4
4
|
//#region ../foundational-presets/dist/slate.d.ts
|
|
5
|
-
//#region src/slate.d.ts
|
|
6
5
|
declare const slateFoundationPreset: 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", {
|
|
@@ -2,7 +2,6 @@ import { UdsConfig } from "../../config/dist/createConfig.js";
|
|
|
2
2
|
import * as _$_uds_types0 from "@uds/types";
|
|
3
3
|
|
|
4
4
|
//#region ../foundational-presets/dist/sunset.d.ts
|
|
5
|
-
//#region src/sunset.d.ts
|
|
6
5
|
declare const sunsetFoundationPreset: 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", {
|
|
@@ -2,7 +2,6 @@ import { UdsConfig } from "../../config/dist/createConfig.js";
|
|
|
2
2
|
import * as _$_uds_types0 from "@uds/types";
|
|
3
3
|
|
|
4
4
|
//#region ../foundational-presets/dist/terminal.d.ts
|
|
5
|
-
//#region src/terminal.d.ts
|
|
6
5
|
declare const terminalFoundationPreset: 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", {
|
|
@@ -2,7 +2,6 @@ import { UdsConfig } from "../../config/dist/createConfig.js";
|
|
|
2
2
|
import * as _$_uds_types0 from "@uds/types";
|
|
3
3
|
|
|
4
4
|
//#region ../foundational-presets/dist/warmOrganic.d.ts
|
|
5
|
-
//#region src/warmOrganic.d.ts
|
|
6
5
|
declare const warmOrganicFoundationPreset: 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", {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { createRequire } from "node:module";
|
|
2
2
|
//#region ../loader/dist/_virtual/_rolldown/runtime.js
|
|
3
|
-
var __commonJSMin = (cb, mod) => () => (mod || cb((mod = { exports: {} }).exports, mod), mod.exports);
|
|
3
|
+
var __commonJSMin = (cb, mod) => () => (mod || (cb((mod = { exports: {} }).exports, mod), cb = null), mod.exports);
|
|
4
4
|
var __require = /* @__PURE__ */ createRequire(import.meta.url);
|
|
5
5
|
//#endregion
|
|
6
6
|
export { __commonJSMin, __require };
|
|
@@ -753,7 +753,7 @@ var require_react_development = /* @__PURE__ */ __commonJSMin(((exports, module)
|
|
|
753
753
|
exports.useTransition = function() {
|
|
754
754
|
return resolveDispatcher().useTransition();
|
|
755
755
|
};
|
|
756
|
-
exports.version = "19.2.
|
|
756
|
+
exports.version = "19.2.5";
|
|
757
757
|
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop && __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop(Error());
|
|
758
758
|
})();
|
|
759
759
|
}));
|
|
@@ -346,6 +346,6 @@ import { __commonJSMin } from "../../../_virtual/_rolldown/runtime.js";
|
|
|
346
346
|
exports.useTransition = function() {
|
|
347
347
|
return ReactSharedInternals.H.useTransition();
|
|
348
348
|
};
|
|
349
|
-
exports.version = "19.2.
|
|
349
|
+
exports.version = "19.2.5";
|
|
350
350
|
})))();
|
|
351
351
|
//#endregion
|
|
@@ -2,7 +2,6 @@ import * as _$react from "react";
|
|
|
2
2
|
import * as _$_uds_types0 from "@uds/types";
|
|
3
3
|
|
|
4
4
|
//#region ../remotion/dist/components/image-slide.d.ts
|
|
5
|
-
//#region src/components/image-slide.d.ts
|
|
6
5
|
/**
|
|
7
6
|
* @description Full-screen image slide with optional caption overlay
|
|
8
7
|
*/
|
|
@@ -15,6 +14,6 @@ declare const ImageSlide: _$react.FC<_$_uds_types0.CreateComponentProps<string,
|
|
|
15
14
|
root: "div";
|
|
16
15
|
image: "img";
|
|
17
16
|
caption: "div";
|
|
18
|
-
}>>;
|
|
17
|
+
}>>;
|
|
19
18
|
//#endregion
|
|
20
19
|
export { ImageSlide };
|
|
@@ -5,15 +5,15 @@ import { jsx, jsxs } from "react/jsx-runtime";
|
|
|
5
5
|
/**
|
|
6
6
|
* @description Full-screen image slide with optional caption overlay
|
|
7
7
|
*/
|
|
8
|
-
const ImageSlide = createComponent(({ props, src, alt, caption, children }) =>
|
|
8
|
+
const ImageSlide = createComponent(({ props, src, alt, caption, children }) => jsxs("div", {
|
|
9
9
|
...props.root,
|
|
10
10
|
children: [
|
|
11
|
-
|
|
11
|
+
jsx("img", {
|
|
12
12
|
...props.image,
|
|
13
13
|
src,
|
|
14
14
|
alt: alt ?? ""
|
|
15
15
|
}),
|
|
16
|
-
caption &&
|
|
16
|
+
caption && jsx("div", {
|
|
17
17
|
...props.caption,
|
|
18
18
|
children: caption
|
|
19
19
|
}),
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import "./image-slide.js";
|
|
2
|
-
import "./lower-third.js";
|
|
3
|
-
import "./quote-card.js";
|
|
4
|
-
import "./split-screen.js";
|
|
5
|
-
import "./stat-card.js";
|
|
6
|
-
import "./text-overlay.js";
|
|
7
|
-
import "./title-card.js";
|
|
8
|
-
import "./typing-text.js";
|
|
9
2
|
import "./image-slide.config.js";
|
|
3
|
+
import "./lower-third.js";
|
|
10
4
|
import "./lower-third.config.js";
|
|
5
|
+
import "./quote-card.js";
|
|
11
6
|
import "./quote-card.config.js";
|
|
7
|
+
import "./split-screen.js";
|
|
12
8
|
import "./split-screen.config.js";
|
|
9
|
+
import "./stat-card.js";
|
|
13
10
|
import "./stat-card.config.js";
|
|
11
|
+
import "./text-overlay.js";
|
|
14
12
|
import "./text-overlay.config.js";
|
|
13
|
+
import "./title-card.js";
|
|
15
14
|
import "./title-card.config.js";
|
|
15
|
+
import "./typing-text.js";
|
|
16
16
|
import "./typing-text.config.js";
|
|
@@ -2,7 +2,6 @@ import * as _$react from "react";
|
|
|
2
2
|
import * as _$_uds_types0 from "@uds/types";
|
|
3
3
|
|
|
4
4
|
//#region ../remotion/dist/components/lower-third.d.ts
|
|
5
|
-
//#region src/components/lower-third.d.ts
|
|
6
5
|
/**
|
|
7
6
|
* @description Lower-third overlay with title and optional subtitle
|
|
8
7
|
*/
|
|
@@ -16,6 +15,6 @@ declare const LowerThird: _$react.FC<_$_uds_types0.CreateComponentProps<string,
|
|
|
16
15
|
content: "div";
|
|
17
16
|
title: "div";
|
|
18
17
|
subtitle: "div";
|
|
19
|
-
}>>;
|
|
18
|
+
}>>;
|
|
20
19
|
//#endregion
|
|
21
20
|
export { LowerThird };
|
|
@@ -5,16 +5,16 @@ import { jsx, jsxs } from "react/jsx-runtime";
|
|
|
5
5
|
/**
|
|
6
6
|
* @description Lower-third overlay with title and optional subtitle
|
|
7
7
|
*/
|
|
8
|
-
const LowerThird = createComponent(({ props, title, subtitle, children }) =>
|
|
8
|
+
const LowerThird = createComponent(({ props, title, subtitle, children }) => jsxs("div", {
|
|
9
9
|
...props.root,
|
|
10
10
|
children: [
|
|
11
|
-
|
|
12
|
-
|
|
11
|
+
jsx("div", { ...props.bar }),
|
|
12
|
+
jsxs("div", {
|
|
13
13
|
...props.content,
|
|
14
|
-
children: [
|
|
14
|
+
children: [jsx("div", {
|
|
15
15
|
...props.title,
|
|
16
16
|
children: title
|
|
17
|
-
}), subtitle &&
|
|
17
|
+
}), subtitle && jsx("div", {
|
|
18
18
|
...props.subtitle,
|
|
19
19
|
children: subtitle
|
|
20
20
|
})]
|
|
@@ -2,7 +2,6 @@ import * as _$react from "react";
|
|
|
2
2
|
import * as _$_uds_types0 from "@uds/types";
|
|
3
3
|
|
|
4
4
|
//#region ../remotion/dist/components/quote-card.d.ts
|
|
5
|
-
//#region src/components/quote-card.d.ts
|
|
6
5
|
/**
|
|
7
6
|
* @description Full-screen quote display with optional attribution
|
|
8
7
|
*/
|
|
@@ -16,6 +15,6 @@ declare const QuoteCard: _$react.FC<_$_uds_types0.CreateComponentProps<string, {
|
|
|
16
15
|
quote: "div";
|
|
17
16
|
divider: "div";
|
|
18
17
|
attribution: "div";
|
|
19
|
-
}>>;
|
|
18
|
+
}>>;
|
|
20
19
|
//#endregion
|
|
21
20
|
export { QuoteCard };
|
|
@@ -5,18 +5,18 @@ import { Fragment, jsx, jsxs } from "react/jsx-runtime";
|
|
|
5
5
|
/**
|
|
6
6
|
* @description Full-screen quote display with optional attribution
|
|
7
7
|
*/
|
|
8
|
-
const QuoteCard = createComponent(({ props, quote, attribution, children }) =>
|
|
8
|
+
const QuoteCard = createComponent(({ props, quote, attribution, children }) => jsxs("div", {
|
|
9
9
|
...props.root,
|
|
10
10
|
children: [
|
|
11
|
-
|
|
11
|
+
jsx("div", {
|
|
12
12
|
...props.mark,
|
|
13
13
|
children: "“"
|
|
14
14
|
}),
|
|
15
|
-
|
|
15
|
+
jsx("div", {
|
|
16
16
|
...props.quote,
|
|
17
17
|
children: quote
|
|
18
18
|
}),
|
|
19
|
-
attribution &&
|
|
19
|
+
attribution && jsxs(Fragment, { children: [jsx("div", { ...props.divider }), jsx("div", {
|
|
20
20
|
...props.attribution,
|
|
21
21
|
children: attribution
|
|
22
22
|
})] }),
|
|
@@ -2,7 +2,6 @@ import * as _$react from "react";
|
|
|
2
2
|
import * as _$_uds_types0 from "@uds/types";
|
|
3
3
|
|
|
4
4
|
//#region ../remotion/dist/components/split-screen.d.ts
|
|
5
|
-
//#region src/components/split-screen.d.ts
|
|
6
5
|
/**
|
|
7
6
|
* @description Side-by-side split screen layout for comparing content
|
|
8
7
|
*/
|
|
@@ -20,6 +19,6 @@ declare const SplitScreen: _$react.FC<_$_uds_types0.CreateComponentProps<string,
|
|
|
20
19
|
leftBody: "div";
|
|
21
20
|
rightTitle: "div";
|
|
22
21
|
rightBody: "div";
|
|
23
|
-
}>>;
|
|
22
|
+
}>>;
|
|
24
23
|
//#endregion
|
|
25
24
|
export { SplitScreen };
|
|
@@ -5,25 +5,25 @@ import { jsx, jsxs } from "react/jsx-runtime";
|
|
|
5
5
|
/**
|
|
6
6
|
* @description Side-by-side split screen layout for comparing content
|
|
7
7
|
*/
|
|
8
|
-
const SplitScreen = createComponent(({ props, leftTitle, leftBody, rightTitle, rightBody, children }) =>
|
|
8
|
+
const SplitScreen = createComponent(({ props, leftTitle, leftBody, rightTitle, rightBody, children }) => jsxs("div", {
|
|
9
9
|
...props.root,
|
|
10
10
|
children: [
|
|
11
|
-
|
|
11
|
+
jsxs("div", {
|
|
12
12
|
...props.left,
|
|
13
|
-
children: [leftTitle &&
|
|
13
|
+
children: [leftTitle && jsx("div", {
|
|
14
14
|
...props.leftTitle,
|
|
15
15
|
children: leftTitle
|
|
16
|
-
}), leftBody &&
|
|
16
|
+
}), leftBody && jsx("div", {
|
|
17
17
|
...props.leftBody,
|
|
18
18
|
children: leftBody
|
|
19
19
|
})]
|
|
20
20
|
}),
|
|
21
|
-
|
|
21
|
+
jsxs("div", {
|
|
22
22
|
...props.right,
|
|
23
|
-
children: [rightTitle &&
|
|
23
|
+
children: [rightTitle && jsx("div", {
|
|
24
24
|
...props.rightTitle,
|
|
25
25
|
children: rightTitle
|
|
26
|
-
}), rightBody &&
|
|
26
|
+
}), rightBody && jsx("div", {
|
|
27
27
|
...props.rightBody,
|
|
28
28
|
children: rightBody
|
|
29
29
|
})]
|
|
@@ -2,7 +2,6 @@ import * as _$react from "react";
|
|
|
2
2
|
import * as _$_uds_types0 from "@uds/types";
|
|
3
3
|
|
|
4
4
|
//#region ../remotion/dist/components/stat-card.d.ts
|
|
5
|
-
//#region src/components/stat-card.d.ts
|
|
6
5
|
/**
|
|
7
6
|
* @description Full-screen statistic display with large value and label
|
|
8
7
|
*/
|
|
@@ -14,6 +13,6 @@ declare const StatCard: _$react.FC<_$_uds_types0.CreateComponentProps<string, {
|
|
|
14
13
|
root: "div";
|
|
15
14
|
value: "div";
|
|
16
15
|
label: "div";
|
|
17
|
-
}>>;
|
|
16
|
+
}>>;
|
|
18
17
|
//#endregion
|
|
19
18
|
export { StatCard };
|
|
@@ -5,14 +5,14 @@ import { jsx, jsxs } from "react/jsx-runtime";
|
|
|
5
5
|
/**
|
|
6
6
|
* @description Full-screen statistic display with large value and label
|
|
7
7
|
*/
|
|
8
|
-
const StatCard = createComponent(({ props, value, label, children }) =>
|
|
8
|
+
const StatCard = createComponent(({ props, value, label, children }) => jsxs("div", {
|
|
9
9
|
...props.root,
|
|
10
10
|
children: [
|
|
11
|
-
|
|
11
|
+
jsx("div", {
|
|
12
12
|
...props.value,
|
|
13
13
|
children: value
|
|
14
14
|
}),
|
|
15
|
-
label &&
|
|
15
|
+
label && jsx("div", {
|
|
16
16
|
...props.label,
|
|
17
17
|
children: label
|
|
18
18
|
}),
|