impaktapps-ui-builder 1.0.80-schema.0 → 1.0.80-schema.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "impaktapps-ui-builder",
3
- "version": "1.0.80-schema.0",
3
+ "version": "1.0.80-schema.1",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "tsc && vite build",
@@ -99,8 +99,7 @@ export default (funcParams: funcParamsProps) => {
99
99
  })
100
100
  funcParams.store.setSchema((pre: any) => {
101
101
  const updatedSchema = {
102
- ...schema,
103
- ...pre,
102
+ required: [...(schema.required||[]), ...(pre.required||[])],
104
103
  properties: {
105
104
  ...schema.properties,
106
105
  ...pre.properties,