@yahoo/uds-v5-wip 1.36.1 → 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.
- package/dist/config/dist/defineComponent.d.ts +1 -0
- package/dist/config/dist/index.js +1 -0
- package/dist/config/dist/refs.js +1 -0
- package/dist/{_virtual → foundational-presets/dist/_virtual}/_rolldown/runtime.js +1 -1
- package/dist/foundational-presets/dist/boldVibrant.d.ts +423 -423
- package/dist/foundational-presets/dist/brutalist.d.ts +423 -423
- package/dist/foundational-presets/dist/candy.d.ts +423 -423
- package/dist/foundational-presets/dist/cleanMinimalist.d.ts +423 -423
- package/dist/foundational-presets/dist/corporate.d.ts +423 -423
- package/dist/foundational-presets/dist/darkMoody.d.ts +423 -423
- package/dist/foundational-presets/dist/defaultPreset.d.ts +224 -224
- package/dist/foundational-presets/dist/forest.d.ts +423 -423
- package/dist/foundational-presets/dist/highContrast.d.ts +423 -423
- package/dist/foundational-presets/dist/lavender.d.ts +423 -423
- package/dist/foundational-presets/dist/luxury.d.ts +423 -423
- package/dist/foundational-presets/dist/monochrome.d.ts +423 -423
- package/dist/foundational-presets/dist/neonCyber.d.ts +423 -423
- package/dist/foundational-presets/dist/newspaper.d.ts +423 -423
- package/dist/foundational-presets/dist/ocean.d.ts +423 -423
- package/dist/foundational-presets/dist/slate.d.ts +423 -423
- package/dist/foundational-presets/dist/style-props.js +1 -1
- package/dist/foundational-presets/dist/sunset.d.ts +423 -423
- package/dist/foundational-presets/dist/terminal.d.ts +423 -423
- package/dist/foundational-presets/dist/warmOrganic.d.ts +423 -423
- package/dist/loader/dist/loader.d.ts +2 -1
- package/dist/loader/dist/next.d.ts +2 -1
- package/dist/presets/dist/boldVibrant.d.ts +2 -1
- package/dist/presets/dist/brutalist.d.ts +2 -1
- package/dist/presets/dist/candy.d.ts +2 -1
- package/dist/presets/dist/cleanMinimalist.d.ts +2 -1
- package/dist/presets/dist/corporate.d.ts +2 -1
- package/dist/presets/dist/darkMoody.d.ts +2 -1
- package/dist/presets/dist/defaultPreset.d.ts +2 -1
- package/dist/presets/dist/forest.d.ts +2 -1
- package/dist/presets/dist/highContrast.d.ts +2 -1
- package/dist/presets/dist/lavender.d.ts +2 -1
- package/dist/presets/dist/luxury.d.ts +2 -1
- package/dist/presets/dist/monochrome.d.ts +2 -1
- package/dist/presets/dist/neonCyber.d.ts +2 -1
- package/dist/presets/dist/newspaper.d.ts +2 -1
- package/dist/presets/dist/ocean.d.ts +2 -1
- package/dist/presets/dist/slate.d.ts +2 -1
- package/dist/presets/dist/sunset.d.ts +2 -1
- package/dist/presets/dist/terminal.d.ts +2 -1
- package/dist/presets/dist/warmOrganic.d.ts +2 -1
- package/dist/remotion/dist/components/image-slide.d.ts +2 -1
- package/dist/remotion/dist/components/lower-third.d.ts +2 -1
- package/dist/remotion/dist/components/quote-card.d.ts +2 -1
- package/dist/remotion/dist/components/split-screen.d.ts +2 -1
- package/dist/remotion/dist/components/stat-card.d.ts +2 -1
- package/dist/remotion/dist/components/text-overlay.d.ts +2 -1
- package/dist/remotion/dist/components/title-card.d.ts +2 -1
- package/dist/remotion/dist/components/typing-text.d.ts +2 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +3 -3
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { LoaderDefinitionFunction } from "webpack";
|
|
2
2
|
|
|
3
3
|
//#region ../loader/dist/loader.d.ts
|
|
4
|
+
//#region src/loader.d.ts
|
|
4
5
|
declare const transformLoader: LoaderDefinitionFunction;
|
|
5
|
-
declare const normal: LoaderDefinitionFunction<{}, {}>;
|
|
6
|
+
declare const normal: LoaderDefinitionFunction<{}, {}>; //#endregion
|
|
6
7
|
//#endregion
|
|
7
8
|
export { normal, transformLoader };
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { NextConfig } from "next";
|
|
2
2
|
|
|
3
3
|
//#region ../loader/dist/next.d.ts
|
|
4
|
+
//#region src/next.d.ts
|
|
4
5
|
interface WithUdsOptions {
|
|
5
6
|
/** Output directory for generated files (default: '.uds') */
|
|
6
7
|
outputDir?: string;
|
|
@@ -11,6 +12,6 @@ interface WithUdsOptions {
|
|
|
11
12
|
type NextConfigFn = (phase: string, ctx: {
|
|
12
13
|
defaultConfig: NextConfig;
|
|
13
14
|
}) => NextConfig | Promise<NextConfig>;
|
|
14
|
-
declare function withUds(nextConfigOrFn: NextConfig | NextConfigFn, options?: WithUdsOptions): NextConfig | NextConfigFn;
|
|
15
|
+
declare function withUds(nextConfigOrFn: NextConfig | NextConfigFn, options?: WithUdsOptions): NextConfig | NextConfigFn; //#endregion
|
|
15
16
|
//#endregion
|
|
16
17
|
export { WithUdsOptions, withUds };
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { boldVibrantFoundationPreset } from "../../foundational-presets/dist/boldVibrant.js";
|
|
2
2
|
//#region ../presets/dist/boldVibrant.d.ts
|
|
3
|
-
|
|
3
|
+
//#region src/boldVibrant.d.ts
|
|
4
|
+
declare const boldVibrantPreset: typeof boldVibrantFoundationPreset; //#endregion
|
|
4
5
|
//#endregion
|
|
5
6
|
export { boldVibrantPreset };
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { brutalistFoundationPreset } from "../../foundational-presets/dist/brutalist.js";
|
|
2
2
|
//#region ../presets/dist/brutalist.d.ts
|
|
3
|
-
|
|
3
|
+
//#region src/brutalist.d.ts
|
|
4
|
+
declare const brutalistPreset: typeof brutalistFoundationPreset; //#endregion
|
|
4
5
|
//#endregion
|
|
5
6
|
export { brutalistPreset };
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { candyFoundationPreset } from "../../foundational-presets/dist/candy.js";
|
|
2
2
|
//#region ../presets/dist/candy.d.ts
|
|
3
|
-
|
|
3
|
+
//#region src/candy.d.ts
|
|
4
|
+
declare const candyPreset: typeof candyFoundationPreset; //#endregion
|
|
4
5
|
//#endregion
|
|
5
6
|
export { candyPreset };
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { cleanMinimalistFoundationPreset } from "../../foundational-presets/dist/cleanMinimalist.js";
|
|
2
2
|
//#region ../presets/dist/cleanMinimalist.d.ts
|
|
3
|
-
|
|
3
|
+
//#region src/cleanMinimalist.d.ts
|
|
4
|
+
declare const cleanMinimalistPreset: typeof cleanMinimalistFoundationPreset; //#endregion
|
|
4
5
|
//#endregion
|
|
5
6
|
export { cleanMinimalistPreset };
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { corporateFoundationPreset } from "../../foundational-presets/dist/corporate.js";
|
|
2
2
|
//#region ../presets/dist/corporate.d.ts
|
|
3
|
-
|
|
3
|
+
//#region src/corporate.d.ts
|
|
4
|
+
declare const corporatePreset: typeof corporateFoundationPreset; //#endregion
|
|
4
5
|
//#endregion
|
|
5
6
|
export { corporatePreset };
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { darkMoodyFoundationPreset } from "../../foundational-presets/dist/darkMoody.js";
|
|
2
2
|
//#region ../presets/dist/darkMoody.d.ts
|
|
3
|
-
|
|
3
|
+
//#region src/darkMoody.d.ts
|
|
4
|
+
declare const darkMoodyPreset: typeof darkMoodyFoundationPreset; //#endregion
|
|
4
5
|
//#endregion
|
|
5
6
|
export { darkMoodyPreset };
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { defaultFoundationPreset } from "../../foundational-presets/dist/defaultPreset.js";
|
|
2
2
|
//#region ../presets/dist/defaultPreset.d.ts
|
|
3
|
-
|
|
3
|
+
//#region src/defaultPreset.d.ts
|
|
4
|
+
declare const defaultPreset: typeof defaultFoundationPreset; //#endregion
|
|
4
5
|
//#endregion
|
|
5
6
|
export { defaultPreset };
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { forestFoundationPreset } from "../../foundational-presets/dist/forest.js";
|
|
2
2
|
//#region ../presets/dist/forest.d.ts
|
|
3
|
-
|
|
3
|
+
//#region src/forest.d.ts
|
|
4
|
+
declare const forestPreset: typeof forestFoundationPreset; //#endregion
|
|
4
5
|
//#endregion
|
|
5
6
|
export { forestPreset };
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { highContrastFoundationPreset } from "../../foundational-presets/dist/highContrast.js";
|
|
2
2
|
//#region ../presets/dist/highContrast.d.ts
|
|
3
|
-
|
|
3
|
+
//#region src/highContrast.d.ts
|
|
4
|
+
declare const highContrastPreset: typeof highContrastFoundationPreset; //#endregion
|
|
4
5
|
//#endregion
|
|
5
6
|
export { highContrastPreset };
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { lavenderFoundationPreset } from "../../foundational-presets/dist/lavender.js";
|
|
2
2
|
//#region ../presets/dist/lavender.d.ts
|
|
3
|
-
|
|
3
|
+
//#region src/lavender.d.ts
|
|
4
|
+
declare const lavenderPreset: typeof lavenderFoundationPreset; //#endregion
|
|
4
5
|
//#endregion
|
|
5
6
|
export { lavenderPreset };
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { luxuryFoundationPreset } from "../../foundational-presets/dist/luxury.js";
|
|
2
2
|
//#region ../presets/dist/luxury.d.ts
|
|
3
|
-
|
|
3
|
+
//#region src/luxury.d.ts
|
|
4
|
+
declare const luxuryPreset: typeof luxuryFoundationPreset; //#endregion
|
|
4
5
|
//#endregion
|
|
5
6
|
export { luxuryPreset };
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { monochromeFoundationPreset } from "../../foundational-presets/dist/monochrome.js";
|
|
2
2
|
//#region ../presets/dist/monochrome.d.ts
|
|
3
|
-
|
|
3
|
+
//#region src/monochrome.d.ts
|
|
4
|
+
declare const monochromePreset: typeof monochromeFoundationPreset; //#endregion
|
|
4
5
|
//#endregion
|
|
5
6
|
export { monochromePreset };
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { neonCyberFoundationPreset } from "../../foundational-presets/dist/neonCyber.js";
|
|
2
2
|
//#region ../presets/dist/neonCyber.d.ts
|
|
3
|
-
|
|
3
|
+
//#region src/neonCyber.d.ts
|
|
4
|
+
declare const neonCyberPreset: typeof neonCyberFoundationPreset; //#endregion
|
|
4
5
|
//#endregion
|
|
5
6
|
export { neonCyberPreset };
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { newspaperFoundationPreset } from "../../foundational-presets/dist/newspaper.js";
|
|
2
2
|
//#region ../presets/dist/newspaper.d.ts
|
|
3
|
-
|
|
3
|
+
//#region src/newspaper.d.ts
|
|
4
|
+
declare const newspaperPreset: typeof newspaperFoundationPreset; //#endregion
|
|
4
5
|
//#endregion
|
|
5
6
|
export { newspaperPreset };
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { oceanFoundationPreset } from "../../foundational-presets/dist/ocean.js";
|
|
2
2
|
//#region ../presets/dist/ocean.d.ts
|
|
3
|
-
|
|
3
|
+
//#region src/ocean.d.ts
|
|
4
|
+
declare const oceanPreset: typeof oceanFoundationPreset; //#endregion
|
|
4
5
|
//#endregion
|
|
5
6
|
export { oceanPreset };
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { slateFoundationPreset } from "../../foundational-presets/dist/slate.js";
|
|
2
2
|
//#region ../presets/dist/slate.d.ts
|
|
3
|
-
|
|
3
|
+
//#region src/slate.d.ts
|
|
4
|
+
declare const slatePreset: typeof slateFoundationPreset; //#endregion
|
|
4
5
|
//#endregion
|
|
5
6
|
export { slatePreset };
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { sunsetFoundationPreset } from "../../foundational-presets/dist/sunset.js";
|
|
2
2
|
//#region ../presets/dist/sunset.d.ts
|
|
3
|
-
|
|
3
|
+
//#region src/sunset.d.ts
|
|
4
|
+
declare const sunsetPreset: typeof sunsetFoundationPreset; //#endregion
|
|
4
5
|
//#endregion
|
|
5
6
|
export { sunsetPreset };
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { terminalFoundationPreset } from "../../foundational-presets/dist/terminal.js";
|
|
2
2
|
//#region ../presets/dist/terminal.d.ts
|
|
3
|
-
|
|
3
|
+
//#region src/terminal.d.ts
|
|
4
|
+
declare const terminalPreset: typeof terminalFoundationPreset; //#endregion
|
|
4
5
|
//#endregion
|
|
5
6
|
export { terminalPreset };
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { warmOrganicFoundationPreset } from "../../foundational-presets/dist/warmOrganic.js";
|
|
2
2
|
//#region ../presets/dist/warmOrganic.d.ts
|
|
3
|
-
|
|
3
|
+
//#region src/warmOrganic.d.ts
|
|
4
|
+
declare const warmOrganicPreset: typeof warmOrganicFoundationPreset; //#endregion
|
|
4
5
|
//#endregion
|
|
5
6
|
export { warmOrganicPreset };
|
|
@@ -2,6 +2,7 @@ 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
|
|
5
6
|
/**
|
|
6
7
|
* @description Full-screen image slide with optional caption overlay
|
|
7
8
|
*/
|
|
@@ -14,6 +15,6 @@ declare const ImageSlide: _$react.FC<_$_uds_types0.CreateComponentProps<string,
|
|
|
14
15
|
root: "div";
|
|
15
16
|
image: "img";
|
|
16
17
|
caption: "div";
|
|
17
|
-
}>>;
|
|
18
|
+
}>>; //#endregion
|
|
18
19
|
//#endregion
|
|
19
20
|
export { ImageSlide };
|
|
@@ -2,6 +2,7 @@ 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
|
|
5
6
|
/**
|
|
6
7
|
* @description Lower-third overlay with title and optional subtitle
|
|
7
8
|
*/
|
|
@@ -15,6 +16,6 @@ declare const LowerThird: _$react.FC<_$_uds_types0.CreateComponentProps<string,
|
|
|
15
16
|
content: "div";
|
|
16
17
|
title: "div";
|
|
17
18
|
subtitle: "div";
|
|
18
|
-
}>>;
|
|
19
|
+
}>>; //#endregion
|
|
19
20
|
//#endregion
|
|
20
21
|
export { LowerThird };
|
|
@@ -2,6 +2,7 @@ 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
|
|
5
6
|
/**
|
|
6
7
|
* @description Full-screen quote display with optional attribution
|
|
7
8
|
*/
|
|
@@ -15,6 +16,6 @@ declare const QuoteCard: _$react.FC<_$_uds_types0.CreateComponentProps<string, {
|
|
|
15
16
|
quote: "div";
|
|
16
17
|
divider: "div";
|
|
17
18
|
attribution: "div";
|
|
18
|
-
}>>;
|
|
19
|
+
}>>; //#endregion
|
|
19
20
|
//#endregion
|
|
20
21
|
export { QuoteCard };
|
|
@@ -2,6 +2,7 @@ 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
|
|
5
6
|
/**
|
|
6
7
|
* @description Side-by-side split screen layout for comparing content
|
|
7
8
|
*/
|
|
@@ -19,6 +20,6 @@ declare const SplitScreen: _$react.FC<_$_uds_types0.CreateComponentProps<string,
|
|
|
19
20
|
leftBody: "div";
|
|
20
21
|
rightTitle: "div";
|
|
21
22
|
rightBody: "div";
|
|
22
|
-
}>>;
|
|
23
|
+
}>>; //#endregion
|
|
23
24
|
//#endregion
|
|
24
25
|
export { SplitScreen };
|
|
@@ -2,6 +2,7 @@ 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
|
|
5
6
|
/**
|
|
6
7
|
* @description Full-screen statistic display with large value and label
|
|
7
8
|
*/
|
|
@@ -13,6 +14,6 @@ declare const StatCard: _$react.FC<_$_uds_types0.CreateComponentProps<string, {
|
|
|
13
14
|
root: "div";
|
|
14
15
|
value: "div";
|
|
15
16
|
label: "div";
|
|
16
|
-
}>>;
|
|
17
|
+
}>>; //#endregion
|
|
17
18
|
//#endregion
|
|
18
19
|
export { StatCard };
|
|
@@ -2,6 +2,7 @@ import * as _$react from "react";
|
|
|
2
2
|
import * as _$_uds_types0 from "@uds/types";
|
|
3
3
|
|
|
4
4
|
//#region ../remotion/dist/components/text-overlay.d.ts
|
|
5
|
+
//#region src/components/text-overlay.d.ts
|
|
5
6
|
/**
|
|
6
7
|
* @description Full-screen text overlay for displaying text over video or images
|
|
7
8
|
*/
|
|
@@ -11,6 +12,6 @@ declare const TextOverlay: _$react.FC<_$_uds_types0.CreateComponentProps<string,
|
|
|
11
12
|
}, {
|
|
12
13
|
root: "div";
|
|
13
14
|
text: "div";
|
|
14
|
-
}>>;
|
|
15
|
+
}>>; //#endregion
|
|
15
16
|
//#endregion
|
|
16
17
|
export { TextOverlay };
|
|
@@ -2,6 +2,7 @@ import * as _$react from "react";
|
|
|
2
2
|
import * as _$_uds_types0 from "@uds/types";
|
|
3
3
|
|
|
4
4
|
//#region ../remotion/dist/components/title-card.d.ts
|
|
5
|
+
//#region src/components/title-card.d.ts
|
|
5
6
|
/**
|
|
6
7
|
* @description Full-screen title card with optional subtitle for video scenes
|
|
7
8
|
*/
|
|
@@ -13,6 +14,6 @@ declare const TitleCard: _$react.FC<_$_uds_types0.CreateComponentProps<string, {
|
|
|
13
14
|
root: "div";
|
|
14
15
|
title: "div";
|
|
15
16
|
subtitle: "div";
|
|
16
|
-
}>>;
|
|
17
|
+
}>>; //#endregion
|
|
17
18
|
//#endregion
|
|
18
19
|
export { TitleCard };
|
|
@@ -2,6 +2,7 @@ import * as _$react from "react";
|
|
|
2
2
|
import * as _$_uds_types0 from "@uds/types";
|
|
3
3
|
|
|
4
4
|
//#region ../remotion/dist/components/typing-text.d.ts
|
|
5
|
+
//#region src/components/typing-text.d.ts
|
|
5
6
|
/**
|
|
6
7
|
* @description Typing text animation that reveals characters frame by frame
|
|
7
8
|
*/
|
|
@@ -15,6 +16,6 @@ declare const TypingText: _$react.FC<_$_uds_types0.CreateComponentProps<string,
|
|
|
15
16
|
root: "div";
|
|
16
17
|
text: "div";
|
|
17
18
|
cursor: "div";
|
|
18
|
-
}>>;
|
|
19
|
+
}>>; //#endregion
|
|
19
20
|
//#endregion
|
|
20
21
|
export { TypingText };
|