impaktapps-ui-builder 1.0.456 → 1.0.470-test.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/dist/impaktapps-ui-builder.es.js +6 -2
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +5 -5
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/build/buildEmptyBox.ts +3 -0
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/event/schema.ts +1 -1
- package/src/impaktapps-ui-builder/runtime/services/service.ts +1 -1
|
@@ -9523,7 +9523,8 @@ const EventSchema = {
|
|
|
9523
9523
|
{ title: "Fail", const: "Fail" },
|
|
9524
9524
|
{ title: "onClose", const: "onClose" },
|
|
9525
9525
|
{ title: "Key Down", const: "onKeyDown" },
|
|
9526
|
-
{ title: "Set Style", const: "setStyle" }
|
|
9526
|
+
{ title: "Set Style", const: "setStyle" },
|
|
9527
|
+
{ title: "Expand Node", const: "onNodeExpandChange" }
|
|
9527
9528
|
]
|
|
9528
9529
|
},
|
|
9529
9530
|
Handler: {
|
|
@@ -11000,7 +11001,7 @@ var service = (funcParams) => {
|
|
|
11000
11001
|
const apiBody = [
|
|
11001
11002
|
{ key: "expandedNodeId", value: param.expandedNodeId }
|
|
11002
11003
|
];
|
|
11003
|
-
const response = await this.callExecuteEvents(param, apiBody, "
|
|
11004
|
+
const response = await this.callExecuteEvents(param, apiBody, "onNodeExpandChange");
|
|
11004
11005
|
return response == null ? void 0 : response.data;
|
|
11005
11006
|
},
|
|
11006
11007
|
getSelectOptions: async function(param) {
|
|
@@ -12626,6 +12627,9 @@ const buildEmptyBox = (config2, componentScope2) => {
|
|
|
12626
12627
|
if (config2.layout) {
|
|
12627
12628
|
EmptyBox.config.layout = createLayoutFormat(config2.layout);
|
|
12628
12629
|
}
|
|
12630
|
+
if (config2.style) {
|
|
12631
|
+
EmptyBox.config.style = JSON.parse(config2.style);
|
|
12632
|
+
}
|
|
12629
12633
|
return EmptyBox;
|
|
12630
12634
|
};
|
|
12631
12635
|
const ArrayUiSchema = {
|