create-video 4.0.223 → 4.0.225
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/templates.d.ts +1 -2
- package/dist/templates.js +12 -3
- package/package.json +1 -1
package/dist/templates.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import type { ReactNode } from 'react';
|
|
2
1
|
type DynamicTemplate = {
|
|
3
2
|
type: 'video';
|
|
4
3
|
promoVideo: {
|
|
@@ -20,7 +19,7 @@ export type Template = {
|
|
|
20
19
|
org: string;
|
|
21
20
|
repoName: string;
|
|
22
21
|
homePageLabel: string;
|
|
23
|
-
longerDescription:
|
|
22
|
+
longerDescription: string;
|
|
24
23
|
cliId: 'hello-world' | 'javascript' | 'blank' | 'next' | 'next-tailwind' | 'next-pages-dir' | 'remix' | 'three' | 'still' | 'tts' | 'google-tts' | 'audiogram' | 'skia' | 'overlay' | 'stargazer' | 'tiktok' | 'code-hike';
|
|
25
24
|
defaultBranch: string;
|
|
26
25
|
featuredOnHomePage: string | null;
|
package/dist/templates.js
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.FEATURED_TEMPLATES = void 0;
|
|
4
|
-
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
4
|
function truthy(value) {
|
|
6
5
|
return Boolean(value);
|
|
7
6
|
}
|
|
@@ -272,7 +271,13 @@ exports.FEATURED_TEMPLATES = [
|
|
|
272
271
|
org: 'remotion-dev',
|
|
273
272
|
repoName: 'template-overlay',
|
|
274
273
|
description: 'Overlays for video editing software',
|
|
275
|
-
longerDescription:
|
|
274
|
+
longerDescription: `
|
|
275
|
+
<span>
|
|
276
|
+
A starter template to create overlays to use in conventional video
|
|
277
|
+
editing software.{' '}
|
|
278
|
+
<a href="/docs/overlay">Read more about creating overlays.</a>
|
|
279
|
+
</span>
|
|
280
|
+
`,
|
|
276
281
|
promoVideo: {
|
|
277
282
|
muxId: 'zgy7XK01009y33Vfzhns02cZS00rOyeZ6WaanaxcrDysqmU',
|
|
278
283
|
height: 720,
|
|
@@ -292,7 +297,11 @@ exports.FEATURED_TEMPLATES = [
|
|
|
292
297
|
org: 'remotion-dev',
|
|
293
298
|
repoName: 'template-code-hike',
|
|
294
299
|
description: 'Beautiful code animations',
|
|
295
|
-
longerDescription:
|
|
300
|
+
longerDescription: `
|
|
301
|
+
Add code snippets and animate between them using{' '}
|
|
302
|
+
<a href="https://codehike.org/">Code Hike</a>. Supports many languages,
|
|
303
|
+
TypeScript error annotations, and many themes.
|
|
304
|
+
`,
|
|
296
305
|
promoVideo: {
|
|
297
306
|
muxId: 'fKwnpTAOqvnZpu00fwEezi00cpF3927NumGcS1gGdUj8A',
|
|
298
307
|
width: 1080,
|
package/package.json
CHANGED