@acorex/platform 20.0.4 → 20.0.5
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/core/index.d.ts +1 -1
- package/fesm2022/acorex-platform-core.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-components.mjs +2 -4
- package/fesm2022/acorex-platform-layout-components.mjs.map +1 -1
- package/fesm2022/{acorex-platform-themes-default-entity-master-single-view.component-cvoKMP84.mjs → acorex-platform-themes-default-entity-master-single-view.component-D99jLndX.mjs} +4 -5
- package/fesm2022/acorex-platform-themes-default-entity-master-single-view.component-D99jLndX.mjs.map +1 -0
- package/fesm2022/acorex-platform-themes-default.mjs +2 -2
- package/package.json +1 -1
- package/fesm2022/acorex-platform-themes-default-entity-master-single-view.component-cvoKMP84.mjs.map +0 -1
|
@@ -891,17 +891,15 @@ class AXPComponentSlotDirective {
|
|
|
891
891
|
component = config.component;
|
|
892
892
|
}
|
|
893
893
|
// load options
|
|
894
|
+
debugger;
|
|
894
895
|
if (typeof config.options === 'function') {
|
|
895
896
|
runInInjectionContext(this.injector, () => {
|
|
896
897
|
const fun = config.options;
|
|
897
898
|
options = fun();
|
|
898
899
|
});
|
|
899
900
|
}
|
|
900
|
-
else if (this.evaluator.isExpression(config.options)) {
|
|
901
|
-
options = await this.evaluator.evaluate(config.options, {});
|
|
902
|
-
}
|
|
903
901
|
else if (config.options) {
|
|
904
|
-
options = config.options;
|
|
902
|
+
options = await this.evaluator.evaluate(config.options, {});
|
|
905
903
|
}
|
|
906
904
|
// apply options and host
|
|
907
905
|
const componentRef = this.viewContainerRef.createComponent(component);
|