@acorex/platform 19.1.11 → 19.1.13
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/fesm2022/acorex-platform-common.mjs +13 -8
- package/fesm2022/acorex-platform-common.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-entity.mjs +25 -12
- package/fesm2022/acorex-platform-layout-entity.mjs.map +1 -1
- package/fesm2022/acorex-platform-themes-default.mjs +2 -2
- package/fesm2022/acorex-platform-themes-default.mjs.map +1 -1
- package/fesm2022/acorex-platform-widgets.mjs +1495 -1329
- package/fesm2022/acorex-platform-widgets.mjs.map +1 -1
- package/fesm2022/acorex-platform-workflow.mjs +57 -1
- package/fesm2022/acorex-platform-workflow.mjs.map +1 -1
- package/package.json +5 -5
- package/widgets/index.d.ts +2 -1
- package/widgets/lib/properties/layout.props.d.ts +1 -0
- package/widgets/lib/widgets/editors/contact/contact-widget-edit.component.d.ts +1 -1
- package/widgets/lib/widgets/editors/contact/contact-widget-view.component.d.ts +1 -1
- package/widgets/lib/widgets/editors/select/select-box-widget-edit.component.d.ts +5 -1
- package/widgets/lib/widgets/index.d.ts +1 -0
- package/widgets/lib/widgets/layout/advanced-grid/advanced-grid-widget-designer.component.d.ts +5 -13
- package/widgets/lib/widgets/layout/grid/grid-widget-designer.component.d.ts +3 -2
- package/widgets/lib/widgets/property-editors/advanced-grid-options/advanced-grid-options-widget-editor.component.d.ts +32 -0
- package/widgets/lib/widgets/property-editors/advanced-grid-options/advanced-grid-options-widget.config.d.ts +7 -0
- package/widgets/lib/widgets/property-editors/advanced-grid-options/advanced-grid-options-widget.type.d.ts +6 -0
- package/widgets/lib/widgets/property-editors/advanced-grid-options/index.d.ts +2 -0
- package/widgets/lib/widgets/property-editors/flex-options/flex-options-widget-editor.component.d.ts +3 -3
- package/widgets/lib/widgets/property-editors/grid-options/grid-options-widget-editor.component.d.ts +5 -5
- package/widgets/lib/widgets/property-editors/grid-options/grid-options-widget.type.d.ts +1 -1
- package/widgets/lib/widgets.config.d.ts +7 -0
- package/workflow/lib/workflow-registery.service.d.ts +5 -1
|
@@ -2221,14 +2221,19 @@ class AXPToastAction extends AXPWorkflowAction {
|
|
|
2221
2221
|
this.translationService = inject(AXTranslationService);
|
|
2222
2222
|
}
|
|
2223
2223
|
async execute(context) {
|
|
2224
|
-
|
|
2225
|
-
|
|
2226
|
-
|
|
2227
|
-
|
|
2228
|
-
|
|
2229
|
-
|
|
2230
|
-
|
|
2231
|
-
|
|
2224
|
+
const options = context.getVariable('options');
|
|
2225
|
+
const process = options?.['process'];
|
|
2226
|
+
const showResult = process?.showResult ?? true;
|
|
2227
|
+
if (showResult) {
|
|
2228
|
+
this.toastService.show({
|
|
2229
|
+
color: this.color,
|
|
2230
|
+
title: await this.translationService.translateAsync(this.title),
|
|
2231
|
+
content: await this.translationService.translateAsync(this.content),
|
|
2232
|
+
closeButton: true,
|
|
2233
|
+
timeOut: 3000,
|
|
2234
|
+
timeOutProgress: true,
|
|
2235
|
+
});
|
|
2236
|
+
}
|
|
2232
2237
|
}
|
|
2233
2238
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXPToastAction, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2234
2239
|
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXPToastAction }); }
|