@acorex/platform 20.8.4 → 20.8.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/layout/entity/index.d.ts
CHANGED
|
@@ -661,6 +661,15 @@ declare const AXPEntityPreloadFiltersViewModelResolver: ResolveFn<Promise<AXPEnt
|
|
|
661
661
|
|
|
662
662
|
interface AXPEntityModifierContext {
|
|
663
663
|
readonly entity: AXPEntity;
|
|
664
|
+
plugins: {
|
|
665
|
+
list(): NonNullable<AXPEntity['plugins']>;
|
|
666
|
+
add(...items: NonNullable<AXPEntity['plugins']>): AXPEntityModifierContext;
|
|
667
|
+
remove(predicate: (p: NonNullable<AXPEntity['plugins']>[number]) => boolean): AXPEntityModifierContext;
|
|
668
|
+
find(name: string): {
|
|
669
|
+
get(): NonNullable<AXPEntity['plugins']>[number] | undefined;
|
|
670
|
+
update(updater: (p: NonNullable<AXPEntity['plugins']>[number]) => NonNullable<AXPEntity['plugins']>[number]): AXPEntityModifierContext;
|
|
671
|
+
};
|
|
672
|
+
};
|
|
664
673
|
title: {
|
|
665
674
|
get(): string;
|
|
666
675
|
set(newTitle: string): AXPEntityModifierContext;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@acorex/platform",
|
|
3
|
-
"version": "20.8.
|
|
3
|
+
"version": "20.8.5",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@acorex/cdk": "^19.0.0 || ^20.0.0 || ^21.0.0-next.0",
|
|
6
6
|
"@acorex/core": "^19.0.0 || ^20.0.0 || ^21.0.0-next.0",
|
|
@@ -31,14 +31,14 @@
|
|
|
31
31
|
"types": "./auth/index.d.ts",
|
|
32
32
|
"default": "./fesm2022/acorex-platform-auth.mjs"
|
|
33
33
|
},
|
|
34
|
-
"./core": {
|
|
35
|
-
"types": "./core/index.d.ts",
|
|
36
|
-
"default": "./fesm2022/acorex-platform-core.mjs"
|
|
37
|
-
},
|
|
38
34
|
"./common": {
|
|
39
35
|
"types": "./common/index.d.ts",
|
|
40
36
|
"default": "./fesm2022/acorex-platform-common.mjs"
|
|
41
37
|
},
|
|
38
|
+
"./core": {
|
|
39
|
+
"types": "./core/index.d.ts",
|
|
40
|
+
"default": "./fesm2022/acorex-platform-core.mjs"
|
|
41
|
+
},
|
|
42
42
|
"./domain": {
|
|
43
43
|
"types": "./domain/index.d.ts",
|
|
44
44
|
"default": "./fesm2022/acorex-platform-domain.mjs"
|
|
@@ -55,14 +55,14 @@
|
|
|
55
55
|
"types": "./workflow/index.d.ts",
|
|
56
56
|
"default": "./fesm2022/acorex-platform-workflow.mjs"
|
|
57
57
|
},
|
|
58
|
-
"./layout/builder": {
|
|
59
|
-
"types": "./layout/builder/index.d.ts",
|
|
60
|
-
"default": "./fesm2022/acorex-platform-layout-builder.mjs"
|
|
61
|
-
},
|
|
62
58
|
"./layout/components": {
|
|
63
59
|
"types": "./layout/components/index.d.ts",
|
|
64
60
|
"default": "./fesm2022/acorex-platform-layout-components.mjs"
|
|
65
61
|
},
|
|
62
|
+
"./layout/builder": {
|
|
63
|
+
"types": "./layout/builder/index.d.ts",
|
|
64
|
+
"default": "./fesm2022/acorex-platform-layout-builder.mjs"
|
|
65
|
+
},
|
|
66
66
|
"./layout/designer": {
|
|
67
67
|
"types": "./layout/designer/index.d.ts",
|
|
68
68
|
"default": "./fesm2022/acorex-platform-layout-designer.mjs"
|