impaktapps-ui-builder 0.0.301 → 0.0.303

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.
@@ -3,8 +3,7 @@ const PageMasterSchema = {
3
3
  properties: {
4
4
  name: {
5
5
  type: "string",
6
- minLength: 6,
7
- pattern: "^page_\\w+$"
6
+ minLength: 6
8
7
  },
9
8
  label: {
10
9
  type: "string"
@@ -7188,7 +7187,7 @@ const sectionLabels = {
7188
7187
  Button: ["Core", "Properties", "style", "Event", "Validation"],
7189
7188
  Array: ["Core", "Components", "Validation"],
7190
7189
  Radio: ["Core", "Properties", "style", "Event", "Validation"],
7191
- Text: ["Core", "Event", "Validation"]
7190
+ Text: ["Core", "style", "Event", "Validation"]
7192
7191
  };
7193
7192
  const refreshPage = (type, store2) => {
7194
7193
  var _a;
@@ -8291,6 +8290,16 @@ var service = (funcParams) => {
8291
8290
  serviceHolder: this,
8292
8291
  eventGroups
8293
8292
  };
8293
+ funcParams.store.setSchema(
8294
+ (pre) => {
8295
+ return {
8296
+ ...funcParams.schema,
8297
+ properties: { ...funcParams.schema.properties, ...pre.properties }
8298
+ };
8299
+ }
8300
+ );
8301
+ funcParams.uiSchema.elements.push(notifyUiSchema);
8302
+ funcParams.store.setUiSchema(funcParams.uiSchema);
8294
8303
  await executeRefreshHandler({
8295
8304
  config: {},
8296
8305
  componentName: "",
@@ -8301,11 +8310,6 @@ var service = (funcParams) => {
8301
8310
  serviceHolder: this,
8302
8311
  eventGroups
8303
8312
  });
8304
- funcParams.store.setSchema(
8305
- funcParams.schema
8306
- );
8307
- funcParams.uiSchema.elements.push(notifyUiSchema);
8308
- funcParams.store.setUiSchema(funcParams.uiSchema);
8309
8313
  },
8310
8314
  onClick: async function() {
8311
8315
  var _a;