@remotion/zod-types 4.0.47 → 4.0.49
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/LICENSE.md +7 -3
- package/dist/cjs/index.d.ts +2 -0
- package/dist/cjs/index.js +5 -1
- package/dist/cjs/z-textarea.d.ts +3 -0
- package/dist/cjs/z-textarea.js +7 -0
- package/dist/esm/index.d.ts +2 -0
- package/dist/esm/index.mjs +5 -1
- package/dist/esm/z-textarea.d.ts +3 -0
- package/package.json +2 -2
package/LICENSE.md
CHANGED
|
@@ -7,7 +7,7 @@ Depending on the type of your legal entity, you are granted permission to use Re
|
|
|
7
7
|
|
|
8
8
|
## Free license
|
|
9
9
|
|
|
10
|
-
Copyright © 2023 [Remotion](https://www.remotion.dev
|
|
10
|
+
Copyright © 2023 [Remotion](https://www.remotion.dev)
|
|
11
11
|
|
|
12
12
|
### Eligibility
|
|
13
13
|
|
|
@@ -36,6 +36,10 @@ Support is provided on a best-we-can-do basis via GitHub Issues and Discord.
|
|
|
36
36
|
|
|
37
37
|
## Company license
|
|
38
38
|
|
|
39
|
-
You are required to obtain a company license to use Remotion if you are not within the group of entities eligible for a free license. This license will enable you to use Remotion for the allowed use cases specified in the free license, and give you access to prioritized support (read the [Support Policy](/docs/support)).
|
|
39
|
+
You are required to obtain a company license to use Remotion if you are not within the group of entities eligible for a free license. This license will enable you to use Remotion for the allowed use cases specified in the free license, and give you access to prioritized support (read the [Support Policy](https://www.remotion.dev/docs/support)).
|
|
40
40
|
|
|
41
|
-
Visit [remotion.pro](https://www.remotion.pro) for pricing and to buy a license.
|
|
41
|
+
Visit [remotion.pro](https://www.remotion.pro/license) for pricing and to buy a license.
|
|
42
|
+
|
|
43
|
+
### FAQs
|
|
44
|
+
|
|
45
|
+
Are you not sure whether you need a company license because of an edge case? Here are some [frequently asked questions](https://www.remotion.pro/faq).
|
package/dist/cjs/index.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export { zColor } from './z-color.js';
|
|
2
|
+
export { zTextarea } from './z-textarea.js';
|
|
2
3
|
export declare const ZodZypesInternals: {
|
|
3
4
|
parseColor: (value: string) => {
|
|
4
5
|
a: number;
|
|
@@ -7,4 +8,5 @@ export declare const ZodZypesInternals: {
|
|
|
7
8
|
b: number;
|
|
8
9
|
};
|
|
9
10
|
REMOTION_COLOR_BRAND: string;
|
|
11
|
+
REMOTION_TEXTAREA_BRAND: string;
|
|
10
12
|
};
|
package/dist/cjs/index.js
CHANGED
|
@@ -1,10 +1,14 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ZodZypesInternals = exports.zColor = void 0;
|
|
3
|
+
exports.ZodZypesInternals = exports.zTextarea = exports.zColor = void 0;
|
|
4
4
|
const z_color_js_1 = require("./z-color.js");
|
|
5
|
+
const z_textarea_1 = require("./z-textarea");
|
|
5
6
|
var z_color_js_2 = require("./z-color.js");
|
|
6
7
|
Object.defineProperty(exports, "zColor", { enumerable: true, get: function () { return z_color_js_2.zColor; } });
|
|
8
|
+
var z_textarea_js_1 = require("./z-textarea.js");
|
|
9
|
+
Object.defineProperty(exports, "zTextarea", { enumerable: true, get: function () { return z_textarea_js_1.zTextarea; } });
|
|
7
10
|
exports.ZodZypesInternals = {
|
|
8
11
|
parseColor: z_color_js_1.parseColor,
|
|
9
12
|
REMOTION_COLOR_BRAND: z_color_js_1.REMOTION_COLOR_BRAND,
|
|
13
|
+
REMOTION_TEXTAREA_BRAND: z_textarea_1.REMOTION_TEXTAREA_BRAND,
|
|
10
14
|
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.zTextarea = exports.REMOTION_TEXTAREA_BRAND = void 0;
|
|
4
|
+
const zod_1 = require("zod");
|
|
5
|
+
exports.REMOTION_TEXTAREA_BRAND = '__remotion-textarea';
|
|
6
|
+
const zTextarea = () => zod_1.z.string().describe(exports.REMOTION_TEXTAREA_BRAND);
|
|
7
|
+
exports.zTextarea = zTextarea;
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export { zColor } from './z-color.js';
|
|
2
|
+
export { zTextarea } from './z-textarea.js';
|
|
2
3
|
export declare const ZodZypesInternals: {
|
|
3
4
|
parseColor: (value: string) => {
|
|
4
5
|
a: number;
|
|
@@ -7,4 +8,5 @@ export declare const ZodZypesInternals: {
|
|
|
7
8
|
b: number;
|
|
8
9
|
};
|
|
9
10
|
REMOTION_COLOR_BRAND: string;
|
|
11
|
+
REMOTION_TEXTAREA_BRAND: string;
|
|
10
12
|
};
|
package/dist/esm/index.mjs
CHANGED
|
@@ -23,9 +23,13 @@ const zColor = () => z
|
|
|
23
23
|
}, { message: 'Invalid color' })
|
|
24
24
|
.describe(REMOTION_COLOR_BRAND);
|
|
25
25
|
|
|
26
|
+
const REMOTION_TEXTAREA_BRAND = '__remotion-textarea';
|
|
27
|
+
const zTextarea = () => z.string().describe(REMOTION_TEXTAREA_BRAND);
|
|
28
|
+
|
|
26
29
|
const ZodZypesInternals = {
|
|
27
30
|
parseColor,
|
|
28
31
|
REMOTION_COLOR_BRAND,
|
|
32
|
+
REMOTION_TEXTAREA_BRAND,
|
|
29
33
|
};
|
|
30
34
|
|
|
31
|
-
export { ZodZypesInternals, zColor };
|
|
35
|
+
export { ZodZypesInternals, zColor, zTextarea };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@remotion/zod-types",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.49",
|
|
4
4
|
"description": "A color validator for Zod",
|
|
5
5
|
"main": "dist/cjs/index.js",
|
|
6
6
|
"types": "dist/cjs/index.d.ts",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"url": "https://github.com/remotion-dev/remotion/issues"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"remotion": "4.0.
|
|
19
|
+
"remotion": "4.0.49"
|
|
20
20
|
},
|
|
21
21
|
"peerDependencies": {
|
|
22
22
|
"zod": "^3.22.3"
|