@elementor/editor-components 3.35.0-353 → 3.35.0-354

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.mjs CHANGED
@@ -1697,7 +1697,7 @@ var componentInstanceOverridePropTypeUtil = createPropUtils(
1697
1697
  // src/prop-types/component-instance-overrides-prop-type.ts
1698
1698
  var componentInstanceOverridesPropTypeUtil = createPropUtils2(
1699
1699
  "overrides",
1700
- z3.array(componentInstanceOverridePropTypeUtil.schema)
1700
+ z3.array(componentInstanceOverridePropTypeUtil.schema).optional().default([])
1701
1701
  );
1702
1702
 
1703
1703
  // src/prop-types/component-instance-prop-type.ts
@@ -1705,7 +1705,7 @@ var componentInstancePropTypeUtil = createPropUtils3(
1705
1705
  "component-instance",
1706
1706
  z4.object({
1707
1707
  component_id: numberPropTypeUtil.schema,
1708
- overrides: componentInstanceOverridesPropTypeUtil.schema
1708
+ overrides: z4.optional(componentInstanceOverridesPropTypeUtil.schema)
1709
1709
  })
1710
1710
  );
1711
1711