impaktapps-ui-builder 0.0.301 → 0.0.302
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/impaktapps-ui-builder.es.js +7 -8
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +2 -2
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/dist/src/impaktapps-ui-builder/builder/elements/UiSchema/PageMaster/schema.d.ts +0 -1
- package/dist/src/impaktapps-ui-builder/builder/services/pageMaster.d.ts +0 -1
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/PageMaster/schema.ts +1 -1
- package/src/impaktapps-ui-builder/builder/services/component.ts +1 -1
- package/src/impaktapps-ui-builder/runtime/services/service.ts +6 -5
|
@@ -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,11 @@ var service = (funcParams) => {
|
|
|
8291
8290
|
serviceHolder: this,
|
|
8292
8291
|
eventGroups
|
|
8293
8292
|
};
|
|
8293
|
+
funcParams.store.setSchema(
|
|
8294
|
+
funcParams.schema
|
|
8295
|
+
);
|
|
8296
|
+
funcParams.uiSchema.elements.push(notifyUiSchema);
|
|
8297
|
+
funcParams.store.setUiSchema(funcParams.uiSchema);
|
|
8294
8298
|
await executeRefreshHandler({
|
|
8295
8299
|
config: {},
|
|
8296
8300
|
componentName: "",
|
|
@@ -8301,11 +8305,6 @@ var service = (funcParams) => {
|
|
|
8301
8305
|
serviceHolder: this,
|
|
8302
8306
|
eventGroups
|
|
8303
8307
|
});
|
|
8304
|
-
funcParams.store.setSchema(
|
|
8305
|
-
funcParams.schema
|
|
8306
|
-
);
|
|
8307
|
-
funcParams.uiSchema.elements.push(notifyUiSchema);
|
|
8308
|
-
funcParams.store.setUiSchema(funcParams.uiSchema);
|
|
8309
8308
|
},
|
|
8310
8309
|
onClick: async function() {
|
|
8311
8310
|
var _a;
|