@acorex/platform 20.8.7 → 20.8.8
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/common/index.d.ts +46 -44
- package/fesm2022/acorex-platform-common.mjs +60 -22
- package/fesm2022/acorex-platform-common.mjs.map +1 -1
- package/fesm2022/acorex-platform-core.mjs +5 -4
- package/fesm2022/acorex-platform-core.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-entity.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-widget-core.mjs +2 -2
- package/fesm2022/acorex-platform-layout-widget-core.mjs.map +1 -1
- package/layout/entity/index.d.ts +1 -1
- package/package.json +17 -17
package/layout/entity/index.d.ts
CHANGED
|
@@ -2260,7 +2260,7 @@ declare class AXPLookupWidgetEditComponent extends AXPValueWidgetComponent<any>
|
|
|
2260
2260
|
* Update expose data for empty state
|
|
2261
2261
|
*/
|
|
2262
2262
|
private expoesItems;
|
|
2263
|
-
|
|
2263
|
+
outputs(): (string | {
|
|
2264
2264
|
[name: string]: unknown;
|
|
2265
2265
|
})[];
|
|
2266
2266
|
private singleOrMultiple;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@acorex/platform",
|
|
3
|
-
"version": "20.8.
|
|
3
|
+
"version": "20.8.8",
|
|
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,6 +31,10 @@
|
|
|
31
31
|
"types": "./auth/index.d.ts",
|
|
32
32
|
"default": "./fesm2022/acorex-platform-auth.mjs"
|
|
33
33
|
},
|
|
34
|
+
"./common": {
|
|
35
|
+
"types": "./common/index.d.ts",
|
|
36
|
+
"default": "./fesm2022/acorex-platform-common.mjs"
|
|
37
|
+
},
|
|
34
38
|
"./core": {
|
|
35
39
|
"types": "./core/index.d.ts",
|
|
36
40
|
"default": "./fesm2022/acorex-platform-core.mjs"
|
|
@@ -39,10 +43,6 @@
|
|
|
39
43
|
"types": "./domain/index.d.ts",
|
|
40
44
|
"default": "./fesm2022/acorex-platform-domain.mjs"
|
|
41
45
|
},
|
|
42
|
-
"./common": {
|
|
43
|
-
"types": "./common/index.d.ts",
|
|
44
|
-
"default": "./fesm2022/acorex-platform-common.mjs"
|
|
45
|
-
},
|
|
46
46
|
"./native": {
|
|
47
47
|
"types": "./native/index.d.ts",
|
|
48
48
|
"default": "./fesm2022/acorex-platform-native.mjs"
|
|
@@ -55,34 +55,34 @@
|
|
|
55
55
|
"types": "./workflow/index.d.ts",
|
|
56
56
|
"default": "./fesm2022/acorex-platform-workflow.mjs"
|
|
57
57
|
},
|
|
58
|
-
"./layout/designer": {
|
|
59
|
-
"types": "./layout/designer/index.d.ts",
|
|
60
|
-
"default": "./fesm2022/acorex-platform-layout-designer.mjs"
|
|
61
|
-
},
|
|
62
58
|
"./layout/builder": {
|
|
63
59
|
"types": "./layout/builder/index.d.ts",
|
|
64
60
|
"default": "./fesm2022/acorex-platform-layout-builder.mjs"
|
|
65
61
|
},
|
|
66
|
-
"./layout/entity": {
|
|
67
|
-
"types": "./layout/entity/index.d.ts",
|
|
68
|
-
"default": "./fesm2022/acorex-platform-layout-entity.mjs"
|
|
69
|
-
},
|
|
70
62
|
"./layout/components": {
|
|
71
63
|
"types": "./layout/components/index.d.ts",
|
|
72
64
|
"default": "./fesm2022/acorex-platform-layout-components.mjs"
|
|
73
65
|
},
|
|
66
|
+
"./layout/designer": {
|
|
67
|
+
"types": "./layout/designer/index.d.ts",
|
|
68
|
+
"default": "./fesm2022/acorex-platform-layout-designer.mjs"
|
|
69
|
+
},
|
|
70
|
+
"./layout/entity": {
|
|
71
|
+
"types": "./layout/entity/index.d.ts",
|
|
72
|
+
"default": "./fesm2022/acorex-platform-layout-entity.mjs"
|
|
73
|
+
},
|
|
74
74
|
"./layout/views": {
|
|
75
75
|
"types": "./layout/views/index.d.ts",
|
|
76
76
|
"default": "./fesm2022/acorex-platform-layout-views.mjs"
|
|
77
77
|
},
|
|
78
|
-
"./layout/widgets": {
|
|
79
|
-
"types": "./layout/widgets/index.d.ts",
|
|
80
|
-
"default": "./fesm2022/acorex-platform-layout-widgets.mjs"
|
|
81
|
-
},
|
|
82
78
|
"./layout/widget-core": {
|
|
83
79
|
"types": "./layout/widget-core/index.d.ts",
|
|
84
80
|
"default": "./fesm2022/acorex-platform-layout-widget-core.mjs"
|
|
85
81
|
},
|
|
82
|
+
"./layout/widgets": {
|
|
83
|
+
"types": "./layout/widgets/index.d.ts",
|
|
84
|
+
"default": "./fesm2022/acorex-platform-layout-widgets.mjs"
|
|
85
|
+
},
|
|
86
86
|
"./themes/default": {
|
|
87
87
|
"types": "./themes/default/index.d.ts",
|
|
88
88
|
"default": "./fesm2022/acorex-platform-themes-default.mjs"
|