@acorex/platform 20.3.0-next.19 → 20.3.0-next.20
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-core.mjs +0 -2
- package/fesm2022/acorex-platform-core.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-builder.mjs +101 -12
- package/fesm2022/acorex-platform-layout-builder.mjs.map +1 -1
- package/fesm2022/{acorex-platform-layout-entity-create-entity.command-CFBqiwfy.mjs → acorex-platform-layout-entity-create-entity.command-BXExgI3W.mjs} +3 -3
- package/fesm2022/acorex-platform-layout-entity-create-entity.command-BXExgI3W.mjs.map +1 -0
- package/fesm2022/acorex-platform-layout-entity.mjs +86 -63
- package/fesm2022/acorex-platform-layout-entity.mjs.map +1 -1
- package/layout/builder/index.d.ts +12 -0
- package/layout/entity/index.d.ts +17 -7
- package/package.json +1 -1
- package/fesm2022/acorex-platform-layout-entity-create-entity.command-CFBqiwfy.mjs.map +0 -1
|
@@ -2416,7 +2416,6 @@ class AXPDistributedEventListenerService {
|
|
|
2416
2416
|
const providers = await this.resolveProviders();
|
|
2417
2417
|
const matched = providers.filter(p => p.key === key);
|
|
2418
2418
|
if (!matched.length) {
|
|
2419
|
-
console.warn(`[AXPDistributedEventListenerService] No provider found for key='${key}'`);
|
|
2420
2419
|
return;
|
|
2421
2420
|
}
|
|
2422
2421
|
for (const provider of matched) {
|
|
@@ -2447,7 +2446,6 @@ class AXPDistributedEventListenerService {
|
|
|
2447
2446
|
const timer = setTimeout(() => {
|
|
2448
2447
|
if (!finished) {
|
|
2449
2448
|
if (n < options.retries) {
|
|
2450
|
-
console.warn(`[dispatchAsync] retrying key='${key}' (${n + 1}/${options.retries})`);
|
|
2451
2449
|
resolve(attempt(n + 1));
|
|
2452
2450
|
}
|
|
2453
2451
|
else {
|