@elementor/editor-props 3.33.0-226 → 3.33.0-227

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 CHANGED
@@ -14,6 +14,7 @@ type Dependency = {
14
14
  };
15
15
  type BasePropType<TValue> = {
16
16
  default?: TValue | null;
17
+ initial_value?: TValue | null;
17
18
  settings: Record<string, unknown>;
18
19
  meta: Record<string, unknown>;
19
20
  dependencies?: Dependency;
package/dist/index.d.ts CHANGED
@@ -14,6 +14,7 @@ type Dependency = {
14
14
  };
15
15
  type BasePropType<TValue> = {
16
16
  default?: TValue | null;
17
+ initial_value?: TValue | null;
17
18
  settings: Record<string, unknown>;
18
19
  meta: Record<string, unknown>;
19
20
  dependencies?: Dependency;
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-226",
4
+ "version": "3.33.0-227",
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-226"
43
+ "@elementor/schema": "3.33.0-227"
44
44
  },
45
45
  "devDependencies": {
46
46
  "tsup": "^8.3.5"
package/src/types.ts CHANGED
@@ -28,6 +28,7 @@ export type Dependency = {
28
28
 
29
29
  type BasePropType< TValue > = {
30
30
  default?: TValue | null;
31
+ initial_value?: TValue | null;
31
32
  settings: Record< string, unknown >;
32
33
  meta: Record< string, unknown >;
33
34
  dependencies?: Dependency;