impaktapps-ui-builder 0.0.300 → 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 +13 -10
- 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 +17 -7
|
@@ -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,17 +8290,21 @@ var service = (funcParams) => {
|
|
|
8291
8290
|
serviceHolder: this,
|
|
8292
8291
|
eventGroups
|
|
8293
8292
|
};
|
|
8294
|
-
await executeRefreshHandler(executeEventsParameters);
|
|
8295
8293
|
funcParams.store.setSchema(
|
|
8296
|
-
|
|
8297
|
-
return {
|
|
8298
|
-
...funcParams.schema,
|
|
8299
|
-
properties: { ...funcParams.schema.properties, ...pre.properties }
|
|
8300
|
-
};
|
|
8301
|
-
}
|
|
8294
|
+
funcParams.schema
|
|
8302
8295
|
);
|
|
8303
8296
|
funcParams.uiSchema.elements.push(notifyUiSchema);
|
|
8304
8297
|
funcParams.store.setUiSchema(funcParams.uiSchema);
|
|
8298
|
+
await executeRefreshHandler({
|
|
8299
|
+
config: {},
|
|
8300
|
+
componentName: "",
|
|
8301
|
+
store: funcParams.store,
|
|
8302
|
+
dynamicData: funcParams.dynamicData,
|
|
8303
|
+
userValue: funcParams.userValue,
|
|
8304
|
+
service: funcParams.service,
|
|
8305
|
+
serviceHolder: this,
|
|
8306
|
+
eventGroups
|
|
8307
|
+
});
|
|
8305
8308
|
},
|
|
8306
8309
|
onClick: async function() {
|
|
8307
8310
|
var _a;
|