@yahoo/uds-v5-wip 1.53.0 → 1.55.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 (43) hide show
  1. package/dist/config/dist/Props.d.ts +0 -5
  2. package/dist/config/dist/component-config.d.ts +79 -42
  3. package/dist/config/dist/component-refs.d.ts +0 -13
  4. package/dist/config/dist/component-resolution.d.ts +1 -1
  5. package/dist/config/dist/consts/defaultColors.d.ts +1 -2
  6. package/dist/config/dist/createComponent.js +1 -1
  7. package/dist/config/dist/createConfig.d.ts +0 -12
  8. package/dist/config/dist/createConfig.js +11 -3
  9. package/dist/config/dist/defineComponent.d.ts +0 -7
  10. package/dist/config/dist/defineStyleProp.d.ts +1 -31
  11. package/dist/config/dist/index.d.ts +2 -2
  12. package/dist/config/dist/index.js +0 -1
  13. package/dist/config/dist/refs.js +16 -8
  14. package/dist/config/dist/resolveStyleProp.d.ts +0 -7
  15. package/dist/config/dist/serialize.d.ts +1 -2
  16. package/dist/config/dist/style-prop-runtime.d.ts +1 -0
  17. package/dist/config/dist/types/css-values.d.ts +1 -2
  18. package/dist/config/dist/types.d.ts +1 -2
  19. package/dist/config.d.ts +185 -185
  20. package/dist/core/dist/createComponent.js +1 -1
  21. package/dist/core/dist/getStyles.js +1 -1
  22. package/dist/foundational-presets/dist/defaultPreset.d.ts +186 -185
  23. package/dist/foundational-presets/dist/motion.d.ts +2 -1
  24. package/dist/loader/dist/packages/core/dist/getStyles.js +1 -1
  25. package/dist/remotion/dist/components/image-slide.d.ts +2 -1
  26. package/dist/remotion/dist/components/image-slide.js +3 -3
  27. package/dist/remotion/dist/components/index.js +7 -7
  28. package/dist/remotion/dist/components/lower-third.d.ts +2 -1
  29. package/dist/remotion/dist/components/lower-third.js +5 -5
  30. package/dist/remotion/dist/components/quote-card.d.ts +2 -1
  31. package/dist/remotion/dist/components/quote-card.js +4 -4
  32. package/dist/remotion/dist/components/split-screen.d.ts +2 -1
  33. package/dist/remotion/dist/components/split-screen.js +7 -7
  34. package/dist/remotion/dist/components/stat-card.d.ts +2 -1
  35. package/dist/remotion/dist/components/stat-card.js +3 -3
  36. package/dist/remotion/dist/components/text-overlay.d.ts +2 -1
  37. package/dist/remotion/dist/components/text-overlay.js +2 -2
  38. package/dist/remotion/dist/components/title-card.d.ts +2 -1
  39. package/dist/remotion/dist/components/title-card.js +3 -3
  40. package/dist/remotion/dist/components/typing-text.d.ts +2 -1
  41. package/dist/remotion/dist/components/typing-text.js +3 -3
  42. package/dist/tsconfig.tsbuildinfo +1 -1
  43. package/package.json +3 -3
@@ -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 }) => jsxs("div", {
8
+ const SplitScreen = createComponent(({ props, leftTitle, leftBody, rightTitle, rightBody, children }) => /* @__PURE__ */ jsxs("div", {
9
9
  ...props.root,
10
10
  children: [
11
- jsxs("div", {
11
+ /* @__PURE__ */ jsxs("div", {
12
12
  ...props.left,
13
- children: [leftTitle && jsx("div", {
13
+ children: [leftTitle && /* @__PURE__ */ jsx("div", {
14
14
  ...props.leftTitle,
15
15
  children: leftTitle
16
- }), leftBody && jsx("div", {
16
+ }), leftBody && /* @__PURE__ */ jsx("div", {
17
17
  ...props.leftBody,
18
18
  children: leftBody
19
19
  })]
20
20
  }),
21
- jsxs("div", {
21
+ /* @__PURE__ */ jsxs("div", {
22
22
  ...props.right,
23
- children: [rightTitle && jsx("div", {
23
+ children: [rightTitle && /* @__PURE__ */ jsx("div", {
24
24
  ...props.rightTitle,
25
25
  children: rightTitle
26
- }), rightBody && jsx("div", {
26
+ }), rightBody && /* @__PURE__ */ jsx("div", {
27
27
  ...props.rightBody,
28
28
  children: rightBody
29
29
  })]
@@ -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 };
@@ -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 }) => jsxs("div", {
8
+ const StatCard = createComponent(({ props, value, label, children }) => /* @__PURE__ */ jsxs("div", {
9
9
  ...props.root,
10
10
  children: [
11
- jsx("div", {
11
+ /* @__PURE__ */ jsx("div", {
12
12
  ...props.value,
13
13
  children: value
14
14
  }),
15
- label && jsx("div", {
15
+ label && /* @__PURE__ */ jsx("div", {
16
16
  ...props.label,
17
17
  children: label
18
18
  }),
@@ -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 };
@@ -5,9 +5,9 @@ import { jsx, jsxs } from "react/jsx-runtime";
5
5
  /**
6
6
  * @description Full-screen text overlay for displaying text over video or images
7
7
  */
8
- const TextOverlay = createComponent(({ props, text, children }) => jsxs("div", {
8
+ const TextOverlay = createComponent(({ props, text, children }) => /* @__PURE__ */ jsxs("div", {
9
9
  ...props.root,
10
- children: [jsx("div", {
10
+ children: [/* @__PURE__ */ jsx("div", {
11
11
  ...props.text,
12
12
  children: text
13
13
  }), children]
@@ -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 };
@@ -5,14 +5,14 @@ import { jsx, jsxs } from "react/jsx-runtime";
5
5
  /**
6
6
  * @description Full-screen title card with optional subtitle for video scenes
7
7
  */
8
- const TitleCard = createComponent(({ props, title, subtitle, children }) => jsxs("div", {
8
+ const TitleCard = createComponent(({ props, title, subtitle, children }) => /* @__PURE__ */ jsxs("div", {
9
9
  ...props.root,
10
10
  children: [
11
- jsx("div", {
11
+ /* @__PURE__ */ jsx("div", {
12
12
  ...props.title,
13
13
  children: title
14
14
  }),
15
- subtitle && jsx("div", {
15
+ subtitle && /* @__PURE__ */ jsx("div", {
16
16
  ...props.subtitle,
17
17
  children: subtitle
18
18
  }),
@@ -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 };
@@ -11,11 +11,11 @@ const TypingText = createComponent(({ props, text, speed = 1, delay = 0, frame,
11
11
  const charsToShow = isAnimating ? Math.min(Math.floor(effectiveFrame * speed), text.length) : text.length;
12
12
  const visibleText = text.slice(0, charsToShow);
13
13
  const showCursor = isAnimating && charsToShow < text.length;
14
- return jsxs("div", {
14
+ return /* @__PURE__ */ jsxs("div", {
15
15
  ...props.root,
16
- children: [jsxs("div", {
16
+ children: [/* @__PURE__ */ jsxs("div", {
17
17
  ...props.text,
18
- children: [visibleText, showCursor && jsx("span", { ...props.cursor })]
18
+ children: [visibleText, showCursor && /* @__PURE__ */ jsx("span", { ...props.cursor })]
19
19
  }), children]
20
20
  });
21
21
  });