@acorex/platform 20.7.12 → 20.7.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/core/index.d.ts +1 -0
- package/fesm2022/acorex-platform-layout-entity.mjs +2 -2
- package/fesm2022/acorex-platform-layout-entity.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-widgets.mjs +16 -31
- package/fesm2022/acorex-platform-layout-widgets.mjs.map +1 -1
- package/layout/widgets/index.d.ts +3 -3
- package/package.json +9 -9
|
@@ -6,7 +6,7 @@ import { AXBasePageComponent } from '@acorex/components/page';
|
|
|
6
6
|
import * as _acorex_platform_core from '@acorex/platform/core';
|
|
7
7
|
import { AXPDeviceService, AXPValidationRule, AXPTag, AXPFileListItem, AXPExpressionEvaluatorService, AXPExecuteCommandResult, AXPActionMenuItem, AXPDataSourceDefinition } from '@acorex/platform/core';
|
|
8
8
|
import { AXStyleColorType, AXClickEvent, AXStyleLookType, AXDataSource, AXValueChangedEvent, AXDataSourceFilterOption, AXDirection, AXButtonClickEvent } from '@acorex/cdk/common';
|
|
9
|
-
import { AXPClipBoardService, AXPLanguage,
|
|
9
|
+
import { AXPClipBoardService, AXPLanguage, AXCFileUploaderCapabilities, AXCFileUploaderAction, AXPStatusDefinition, AXPStatusTransition, AXPStatusProvider } from '@acorex/platform/common';
|
|
10
10
|
import { AXDropListDroppedEvent } from '@acorex/cdk/drag-drop';
|
|
11
11
|
import { AXPDragDropListItem, AXPTableColumnDefinition } from '@acorex/platform/layout/components';
|
|
12
12
|
import { AXValidationService } from '@acorex/core/validation';
|
|
@@ -2225,7 +2225,7 @@ declare class AXPFileListComponent implements OnInit, OnDestroy {
|
|
|
2225
2225
|
options?: unknown;
|
|
2226
2226
|
}[] | undefined>;
|
|
2227
2227
|
excludePlugins: _angular_core.InputSignal<string[] | undefined>;
|
|
2228
|
-
|
|
2228
|
+
capabilities: _angular_core.InputSignal<AXCFileUploaderCapabilities | undefined>;
|
|
2229
2229
|
/**
|
|
2230
2230
|
* All files should be displayed, even those with `deleted` status.
|
|
2231
2231
|
* The template will handle the visual differences based on the status.
|
|
@@ -2257,7 +2257,7 @@ declare class AXPFileListComponent implements OnInit, OnDestroy {
|
|
|
2257
2257
|
runAction(action: any): Promise<void>;
|
|
2258
2258
|
protected getActionColor(action: any): string;
|
|
2259
2259
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPFileListComponent, never>;
|
|
2260
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPFileListComponent, "axp-file-list", never, { "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "fileEditable": { "alias": "fileEditable"; "required": false; "isSignal": true; }; "multiple": { "alias": "multiple"; "required": false; "isSignal": true; }; "files": { "alias": "files"; "required": false; "isSignal": true; }; "plugins": { "alias": "plugins"; "required": false; "isSignal": true; }; "excludePlugins": { "alias": "excludePlugins"; "required": false; "isSignal": true; }; "
|
|
2260
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPFileListComponent, "axp-file-list", never, { "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "fileEditable": { "alias": "fileEditable"; "required": false; "isSignal": true; }; "multiple": { "alias": "multiple"; "required": false; "isSignal": true; }; "files": { "alias": "files"; "required": false; "isSignal": true; }; "plugins": { "alias": "plugins"; "required": false; "isSignal": true; }; "excludePlugins": { "alias": "excludePlugins"; "required": false; "isSignal": true; }; "capabilities": { "alias": "capabilities"; "required": false; "isSignal": true; }; }, { "onRemove": "onRemove"; "onRevert": "onRevert"; "onRename": "onRename"; }, never, never, true, never>;
|
|
2261
2261
|
}
|
|
2262
2262
|
|
|
2263
2263
|
declare class AXPFileUploaderWidgetColumnComponent extends AXPColumnWidgetComponent<string[]> {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@acorex/platform",
|
|
3
|
-
"version": "20.7.
|
|
3
|
+
"version": "20.7.13",
|
|
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",
|
|
@@ -27,10 +27,6 @@
|
|
|
27
27
|
"types": "./index.d.ts",
|
|
28
28
|
"default": "./fesm2022/acorex-platform.mjs"
|
|
29
29
|
},
|
|
30
|
-
"./auth": {
|
|
31
|
-
"types": "./auth/index.d.ts",
|
|
32
|
-
"default": "./fesm2022/acorex-platform-auth.mjs"
|
|
33
|
-
},
|
|
34
30
|
"./common": {
|
|
35
31
|
"types": "./common/index.d.ts",
|
|
36
32
|
"default": "./fesm2022/acorex-platform-common.mjs"
|
|
@@ -39,6 +35,10 @@
|
|
|
39
35
|
"types": "./core/index.d.ts",
|
|
40
36
|
"default": "./fesm2022/acorex-platform-core.mjs"
|
|
41
37
|
},
|
|
38
|
+
"./auth": {
|
|
39
|
+
"types": "./auth/index.d.ts",
|
|
40
|
+
"default": "./fesm2022/acorex-platform-auth.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"
|