@elementor/editor-props 3.33.0-160 → 3.33.0-162
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/index.d.mts +2 -10
- package/dist/index.d.ts +2 -10
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -105,19 +105,11 @@ declare function createPropUtils<TKey extends string, TValue extends PropValue>(
|
|
|
105
105
|
$$type: z.ZodLiteral<TKey>;
|
|
106
106
|
value: z.ZodType<TValue, z.ZodTypeDef, TValue>;
|
|
107
107
|
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
108
|
-
}>, any> extends infer T ? { [k in keyof T]: z.
|
|
108
|
+
}>, any> extends infer T ? { [k in keyof T]: T[k]; } : never, z.baseObjectInputType<{
|
|
109
109
|
$$type: z.ZodLiteral<TKey>;
|
|
110
110
|
value: z.ZodType<TValue, z.ZodTypeDef, TValue>;
|
|
111
111
|
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
112
|
-
}
|
|
113
|
-
$$type: z.ZodLiteral<TKey>;
|
|
114
|
-
value: z.ZodType<TValue, z.ZodTypeDef, TValue>;
|
|
115
|
-
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
116
|
-
}> extends infer T_1 ? { [k_1 in keyof T_1]: z.baseObjectInputType<{
|
|
117
|
-
$$type: z.ZodLiteral<TKey>;
|
|
118
|
-
value: z.ZodType<TValue, z.ZodTypeDef, TValue>;
|
|
119
|
-
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
120
|
-
}>[k_1]; } : never>;
|
|
112
|
+
}> extends infer T_1 ? { [k_1 in keyof T_1]: T_1[k_1]; } : never>;
|
|
121
113
|
key: TKey;
|
|
122
114
|
};
|
|
123
115
|
declare function createArrayPropUtils<TKey extends string, TValue extends PropValue>(key: TKey, valueSchema: ZodType<TValue>, overrideKey?: string): {
|
package/dist/index.d.ts
CHANGED
|
@@ -105,19 +105,11 @@ declare function createPropUtils<TKey extends string, TValue extends PropValue>(
|
|
|
105
105
|
$$type: z.ZodLiteral<TKey>;
|
|
106
106
|
value: z.ZodType<TValue, z.ZodTypeDef, TValue>;
|
|
107
107
|
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
108
|
-
}>, any> extends infer T ? { [k in keyof T]: z.
|
|
108
|
+
}>, any> extends infer T ? { [k in keyof T]: T[k]; } : never, z.baseObjectInputType<{
|
|
109
109
|
$$type: z.ZodLiteral<TKey>;
|
|
110
110
|
value: z.ZodType<TValue, z.ZodTypeDef, TValue>;
|
|
111
111
|
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
112
|
-
}
|
|
113
|
-
$$type: z.ZodLiteral<TKey>;
|
|
114
|
-
value: z.ZodType<TValue, z.ZodTypeDef, TValue>;
|
|
115
|
-
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
116
|
-
}> extends infer T_1 ? { [k_1 in keyof T_1]: z.baseObjectInputType<{
|
|
117
|
-
$$type: z.ZodLiteral<TKey>;
|
|
118
|
-
value: z.ZodType<TValue, z.ZodTypeDef, TValue>;
|
|
119
|
-
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
120
|
-
}>[k_1]; } : never>;
|
|
112
|
+
}> extends infer T_1 ? { [k_1 in keyof T_1]: T_1[k_1]; } : never>;
|
|
121
113
|
key: TKey;
|
|
122
114
|
};
|
|
123
115
|
declare function createArrayPropUtils<TKey extends string, TValue extends PropValue>(key: TKey, valueSchema: ZodType<TValue>, overrideKey?: string): {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elementor/editor-props",
|
|
3
3
|
"description": "This package contains the props model for the Elementor editor",
|
|
4
|
-
"version": "3.33.0-
|
|
4
|
+
"version": "3.33.0-162",
|
|
5
5
|
"private": false,
|
|
6
6
|
"author": "Elementor Team",
|
|
7
7
|
"homepage": "https://elementor.com/",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"dev": "tsup --config=../../tsup.dev.ts"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@elementor/schema": "3.33.0-
|
|
43
|
+
"@elementor/schema": "3.33.0-162"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"tsup": "^8.3.5"
|