@elementor/editor-canvas 3.33.0-251 → 3.33.0-253
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 +1 -0
- package/dist/index.d.ts +1 -0
- package/package.json +16 -16
- package/src/legacy/types.ts +1 -0
package/dist/index.d.mts
CHANGED
|
@@ -152,6 +152,7 @@ type BackboneCollection<Model extends object> = {
|
|
|
152
152
|
type ElementModel = {
|
|
153
153
|
id: string;
|
|
154
154
|
settings: BackboneModel<Props>;
|
|
155
|
+
editor_settings: Record<string, unknown>;
|
|
155
156
|
widgetType: string;
|
|
156
157
|
editSettings?: BackboneModel<{
|
|
157
158
|
inactive?: boolean;
|
package/dist/index.d.ts
CHANGED
|
@@ -152,6 +152,7 @@ type BackboneCollection<Model extends object> = {
|
|
|
152
152
|
type ElementModel = {
|
|
153
153
|
id: string;
|
|
154
154
|
settings: BackboneModel<Props>;
|
|
155
|
+
editor_settings: Record<string, unknown>;
|
|
155
156
|
widgetType: string;
|
|
156
157
|
editSettings?: BackboneModel<{
|
|
157
158
|
inactive?: boolean;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elementor/editor-canvas",
|
|
3
3
|
"description": "Elementor Editor Canvas",
|
|
4
|
-
"version": "3.33.0-
|
|
4
|
+
"version": "3.33.0-253",
|
|
5
5
|
"private": false,
|
|
6
6
|
"author": "Elementor Team",
|
|
7
7
|
"homepage": "https://elementor.com/",
|
|
@@ -37,21 +37,21 @@
|
|
|
37
37
|
"react-dom": "^18.3.1"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@elementor/editor": "3.33.0-
|
|
41
|
-
"@elementor/editor-controls": "3.33.0-
|
|
42
|
-
"@elementor/editor-documents": "3.33.0-
|
|
43
|
-
"@elementor/editor-elements": "3.33.0-
|
|
44
|
-
"@elementor/editor-interactions": "3.33.0-
|
|
45
|
-
"@elementor/editor-notifications": "3.33.0-
|
|
46
|
-
"@elementor/editor-props": "3.33.0-
|
|
47
|
-
"@elementor/editor-responsive": "3.33.0-
|
|
48
|
-
"@elementor/editor-styles": "3.33.0-
|
|
49
|
-
"@elementor/editor-styles-repository": "3.33.0-
|
|
50
|
-
"@elementor/editor-v1-adapters": "3.33.0-
|
|
51
|
-
"@elementor/twing": "3.33.0-
|
|
52
|
-
"@elementor/ui": "1.36.
|
|
53
|
-
"@elementor/utils": "3.33.0-
|
|
54
|
-
"@elementor/wp-media": "3.33.0-
|
|
40
|
+
"@elementor/editor": "3.33.0-253",
|
|
41
|
+
"@elementor/editor-controls": "3.33.0-253",
|
|
42
|
+
"@elementor/editor-documents": "3.33.0-253",
|
|
43
|
+
"@elementor/editor-elements": "3.33.0-253",
|
|
44
|
+
"@elementor/editor-interactions": "3.33.0-253",
|
|
45
|
+
"@elementor/editor-notifications": "3.33.0-253",
|
|
46
|
+
"@elementor/editor-props": "3.33.0-253",
|
|
47
|
+
"@elementor/editor-responsive": "3.33.0-253",
|
|
48
|
+
"@elementor/editor-styles": "3.33.0-253",
|
|
49
|
+
"@elementor/editor-styles-repository": "3.33.0-253",
|
|
50
|
+
"@elementor/editor-v1-adapters": "3.33.0-253",
|
|
51
|
+
"@elementor/twing": "3.33.0-253",
|
|
52
|
+
"@elementor/ui": "1.36.17",
|
|
53
|
+
"@elementor/utils": "3.33.0-253",
|
|
54
|
+
"@elementor/wp-media": "3.33.0-253",
|
|
55
55
|
"@floating-ui/react": "^0.27.5",
|
|
56
56
|
"@wordpress/i18n": "^5.13.0"
|
|
57
57
|
},
|
package/src/legacy/types.ts
CHANGED
|
@@ -117,6 +117,7 @@ type BackboneCollection< Model extends object > = {
|
|
|
117
117
|
export type ElementModel = {
|
|
118
118
|
id: string;
|
|
119
119
|
settings: BackboneModel< Props >;
|
|
120
|
+
editor_settings: Record< string, unknown >;
|
|
120
121
|
widgetType: string;
|
|
121
122
|
editSettings?: BackboneModel< { inactive?: boolean } >;
|
|
122
123
|
elements?: BackboneCollection< ElementModel >;
|