@plitzi/sdk-variables 0.30.19 → 0.31.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/CHANGELOG.md +11 -0
- package/dist/components/SchemaVariables/SchemaVariables.mjs +1 -1
- package/dist/components/SchemaVariables/VariableDetails.mjs +1 -1
- package/dist/models/SchemaVariableForm/SchemaVariableForm.d.ts +2 -2
- package/dist/models/SchemaVariableForm/SchemaVariableForm.mjs +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -7,14 +7,14 @@ export declare const schemaVariableFormSchema: z.ZodObject<{
|
|
|
7
7
|
type: z.ZodEnum<{
|
|
8
8
|
number: "number";
|
|
9
9
|
color: "color";
|
|
10
|
+
checkbox: "checkbox";
|
|
11
|
+
switch: "switch";
|
|
10
12
|
text: "text";
|
|
11
13
|
email: "email";
|
|
12
14
|
password: "password";
|
|
13
15
|
select: "select";
|
|
14
16
|
select2: "select2";
|
|
15
|
-
checkbox: "checkbox";
|
|
16
17
|
textarea: "textarea";
|
|
17
|
-
switch: "switch";
|
|
18
18
|
}>;
|
|
19
19
|
value: z.ZodString;
|
|
20
20
|
subValues: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plitzi/sdk-variables",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.31.0",
|
|
4
4
|
"license": "AGPL-3.0",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist"
|
|
@@ -149,15 +149,15 @@
|
|
|
149
149
|
"build:prod": "vite build && node ../sdk-shared/scripts/generate-exports.mjs"
|
|
150
150
|
},
|
|
151
151
|
"dependencies": {
|
|
152
|
-
"@plitzi/plitzi-ui": "^1.6.
|
|
153
|
-
"@plitzi/sdk-shared": "0.
|
|
152
|
+
"@plitzi/plitzi-ui": "^1.6.9",
|
|
153
|
+
"@plitzi/sdk-shared": "0.31.0",
|
|
154
154
|
"clsx": "^2.1.1",
|
|
155
155
|
"eslint": "^9.39.4",
|
|
156
|
-
"zod": "^4.4.
|
|
156
|
+
"zod": "^4.4.3"
|
|
157
157
|
},
|
|
158
158
|
"devDependencies": {
|
|
159
159
|
"eslint": "^9.39.4",
|
|
160
160
|
"typescript": "^6.0.3",
|
|
161
|
-
"vite": "^8.0.
|
|
161
|
+
"vite": "^8.0.14"
|
|
162
162
|
}
|
|
163
163
|
}
|