@acorex/platform 20.2.4-next.7 → 20.2.4-next.9
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 +3 -10
- package/fesm2022/acorex-platform-layout-builder.mjs +1097 -630
- package/fesm2022/acorex-platform-layout-builder.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-designer.mjs +79 -17
- package/fesm2022/acorex-platform-layout-designer.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-entity.mjs +16 -16
- package/fesm2022/acorex-platform-layout-entity.mjs.map +1 -1
- package/fesm2022/{acorex-platform-widgets-button-widget-designer.component-lNF95FJv.mjs → acorex-platform-widgets-button-widget-designer.component-BJtkWusr.mjs} +3 -3
- package/fesm2022/acorex-platform-widgets-button-widget-designer.component-BJtkWusr.mjs.map +1 -0
- package/fesm2022/{acorex-platform-widgets-page-widget-designer.component-DRsLkulH.mjs → acorex-platform-widgets-page-widget-designer.component-Cw9WcZze.mjs} +74 -64
- package/fesm2022/acorex-platform-widgets-page-widget-designer.component-Cw9WcZze.mjs.map +1 -0
- package/fesm2022/{acorex-platform-widgets-text-block-widget-designer.component-CCMQtH3e.mjs → acorex-platform-widgets-text-block-widget-designer.component-DaR4Nkv4.mjs} +8 -12
- package/fesm2022/acorex-platform-widgets-text-block-widget-designer.component-DaR4Nkv4.mjs.map +1 -0
- package/fesm2022/acorex-platform-widgets.mjs +3405 -3540
- package/fesm2022/acorex-platform-widgets.mjs.map +1 -1
- package/layout/builder/index.d.ts +355 -187
- package/layout/components/index.d.ts +2 -2
- package/layout/designer/index.d.ts +15 -3
- package/package.json +17 -31
- package/widgets/index.d.ts +152 -220
- package/fesm2022/acorex-platform-widgets-button-widget-designer.component-lNF95FJv.mjs.map +0 -1
- package/fesm2022/acorex-platform-widgets-page-widget-designer.component-DRsLkulH.mjs.map +0 -1
- package/fesm2022/acorex-platform-widgets-text-block-widget-designer.component-CCMQtH3e.mjs.map +0 -1
|
@@ -4,7 +4,7 @@ import { EventEmitter, OnChanges, OnDestroy, WritableSignal, NgZone, SimpleChang
|
|
|
4
4
|
import { AXBasePageComponent } from '@acorex/components/page';
|
|
5
5
|
import { AXTabStripChangedEvent } from '@acorex/components/tabs';
|
|
6
6
|
import * as _acorex_platform_layout_builder from '@acorex/platform/layout/builder';
|
|
7
|
-
import { AXPWidgetConfig, AXPWidgetCategory, AXPWidgetGroupEnum, AXPWidgetNode, AXPBaseWidgetComponent, AXPWidgetRegistryService,
|
|
7
|
+
import { AXPWidgetConfig, AXPWidgetCategory, AXPWidgetGroupEnum, AXPWidgetNode, AXPBaseWidgetComponent, AXPWidgetRegistryService, AXPLayoutBaseWidgetComponent, AXPLayoutContextChangeEvent } from '@acorex/platform/layout/builder';
|
|
8
8
|
import { AXPWidgetItemData, AXPWidgetItemClickEvent } from '@acorex/platform/layout/components';
|
|
9
9
|
import { AXMenuItem } from '@acorex/components/menu';
|
|
10
10
|
import { Subject } from 'rxjs';
|
|
@@ -38,6 +38,18 @@ declare class AXPDesignerAddWidgetMiniButtonComponent {
|
|
|
38
38
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPDesignerAddWidgetMiniButtonComponent, "axp-designer-add-widget-mini-button", never, {}, { "onClick": "onClick"; }, never, never, true, never>;
|
|
39
39
|
}
|
|
40
40
|
|
|
41
|
+
declare class AXPDesignerFlexDrawerComponent {
|
|
42
|
+
itemsCount: _angular_core.ModelSignal<number>;
|
|
43
|
+
onSelect: _angular_core.OutputEmitterRef<number>;
|
|
44
|
+
protected items: _angular_core.Signal<number[]>;
|
|
45
|
+
protected range: _angular_core.WritableSignal<number>;
|
|
46
|
+
protected handleMouseHover(c: number): void;
|
|
47
|
+
protected handleClick(c: number): void;
|
|
48
|
+
protected handleMouseLeave(event: MouseEvent): void;
|
|
49
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPDesignerFlexDrawerComponent, never>;
|
|
50
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPDesignerFlexDrawerComponent, "axp-designer-flex-drawer", never, { "itemsCount": { "alias": "items"; "required": false; "isSignal": true; }; }, { "itemsCount": "itemsChange"; "onSelect": "onSelect"; }, never, never, true, never>;
|
|
51
|
+
}
|
|
52
|
+
|
|
41
53
|
declare class AXPDesignerGridDrawerComponent {
|
|
42
54
|
rowsCount: _angular_core.ModelSignal<number>;
|
|
43
55
|
colsCount: _angular_core.ModelSignal<number>;
|
|
@@ -338,7 +350,7 @@ declare class AXPWidgetDesignerRendererDirective implements OnChanges, OnDestroy
|
|
|
338
350
|
private currentNodeId;
|
|
339
351
|
private service;
|
|
340
352
|
private viewContainerRef;
|
|
341
|
-
parentNode: _angular_core.InputSignal<
|
|
353
|
+
parentNode: _angular_core.InputSignal<AXPLayoutBaseWidgetComponent | null | undefined>;
|
|
342
354
|
index: _angular_core.InputSignal<number | null | undefined>;
|
|
343
355
|
locked: _angular_core.InputSignal<boolean>;
|
|
344
356
|
mode: _angular_core.InputSignal<keyof _acorex_platform_layout_builder.AXPWidgetConfigComponents>;
|
|
@@ -404,5 +416,5 @@ declare class AXPLayoutDesignerPreviewComponent extends AXBasePageComponent {
|
|
|
404
416
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPLayoutDesignerPreviewComponent, "axp-layout-preview", never, {}, {}, never, never, true, never>;
|
|
405
417
|
}
|
|
406
418
|
|
|
407
|
-
export { AXPDesignerAddWidgetButtonComponent, AXPDesignerAddWidgetLineButtonComponent, AXPDesignerAddWidgetMiniButtonComponent, AXPDesignerConnector, AXPDesignerGridDrawerComponent, AXPDesignerMessageKeys, AXPDesignerModes, AXPDesignerService, AXPDesignerWidgetPickerComponent, AXPLayoutDesignerComponent, AXPLayoutDesignerPreviewComponent, AXPLayoutDesignerPreviewViewerComponent, AXPTemplateLoadingStrategy, AXPWidgetDesignerRendererDirective, AXPWidgetPickerService, AXP_DESIGNER_ADD_WIDGET_MENU, AXP_DESIGNER_CLONE_MENU, AXP_DESIGNER_COPY_MENU, AXP_DESIGNER_CUT_MENU, AXP_DESIGNER_DELETE_WIDGET_MENU, AXP_DESIGNER_PASTE_MENU, AXP_DESIGNER_SAVE_AS_WIDGET_MENU, AXP_DESIGNER_SELECT_WIDGET_MENU, cloneWidgetMenu };
|
|
419
|
+
export { AXPDesignerAddWidgetButtonComponent, AXPDesignerAddWidgetLineButtonComponent, AXPDesignerAddWidgetMiniButtonComponent, AXPDesignerConnector, AXPDesignerFlexDrawerComponent, AXPDesignerGridDrawerComponent, AXPDesignerMessageKeys, AXPDesignerModes, AXPDesignerService, AXPDesignerWidgetPickerComponent, AXPLayoutDesignerComponent, AXPLayoutDesignerPreviewComponent, AXPLayoutDesignerPreviewViewerComponent, AXPTemplateLoadingStrategy, AXPWidgetDesignerRendererDirective, AXPWidgetPickerService, AXP_DESIGNER_ADD_WIDGET_MENU, AXP_DESIGNER_CLONE_MENU, AXP_DESIGNER_COPY_MENU, AXP_DESIGNER_CUT_MENU, AXP_DESIGNER_DELETE_WIDGET_MENU, AXP_DESIGNER_PASTE_MENU, AXP_DESIGNER_SAVE_AS_WIDGET_MENU, AXP_DESIGNER_SELECT_WIDGET_MENU, cloneWidgetMenu };
|
|
408
420
|
export type { AXPDesignerAddNodeCommand, AXPDesignerAddNodeEvent, AXPDesignerContent, AXPDesignerFocusCommand, AXPDesignerFocusEvent, AXPDesignerMode, AXPDesignerPreviewMessage, AXPDesignerPreviewSize, AXPDesignerRefreshCommand, AXPDesignerRefreshEvent, AXPDesignerRegisterCommand, AXPDesignerSaveFormMessage, AXPDesignerSelectCommand, AXPDesignerSelectEvent, AXPDesignerUpdateCommand, AXPDesignerUpdateEvent, AXPDesignerWidgetComponent, AXPDisplayWidgetConfig };
|
package/package.json
CHANGED
|
@@ -1,30 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@acorex/platform",
|
|
3
|
-
"version": "20.2.4-next.
|
|
3
|
+
"version": "20.2.4-next.9",
|
|
4
4
|
"peerDependencies": {
|
|
5
|
-
"@
|
|
6
|
-
"@
|
|
7
|
-
"@
|
|
8
|
-
"@
|
|
9
|
-
"@
|
|
10
|
-
"
|
|
11
|
-
"
|
|
12
|
-
"leaflet": "^1.9.4",
|
|
13
|
-
"leaflet-draw": "^1.0.4",
|
|
14
|
-
"leaflet.locatecontrol": "^0.81.1",
|
|
15
|
-
"lodash-es": "^4.17.21",
|
|
16
|
-
"@types/lodash-es": "^4.17.8",
|
|
17
|
-
"memoizee": "^0.4.15",
|
|
18
|
-
"oidc-client-ts": "^3.0.1",
|
|
19
|
-
"jspdf": "^2.5.1",
|
|
5
|
+
"@acorex/styles": ">=20.0.0",
|
|
6
|
+
"@acorex/core": ">=20.0.0",
|
|
7
|
+
"@acorex/components": ">=20.0.0",
|
|
8
|
+
"@angular/animations": "^20.0.0",
|
|
9
|
+
"@acorex/cdk": ">=20.0.0",
|
|
10
|
+
"@acorex/charts": ">=20.0.0",
|
|
11
|
+
"@ngrx/signals": "^20.0.0",
|
|
20
12
|
"dom-to-image": "^2.6.0",
|
|
21
|
-
"
|
|
22
|
-
"signature_pad": "^4.1.7",
|
|
23
|
-
"@acorex/styles": ">=19.0.0",
|
|
24
|
-
"@acorex/core": ">=19.0.0",
|
|
25
|
-
"@acorex/components": ">=19.0.0",
|
|
26
|
-
"@ngrx/signals": ">=19.0.0",
|
|
27
|
-
"@angular/animations": ">=19.0.0"
|
|
13
|
+
"signature_pad": "^4.1.7"
|
|
28
14
|
},
|
|
29
15
|
"dependencies": {
|
|
30
16
|
"tslib": "^2.3.0"
|
|
@@ -60,6 +46,10 @@
|
|
|
60
46
|
"types": "./native/index.d.ts",
|
|
61
47
|
"default": "./fesm2022/acorex-platform-native.mjs"
|
|
62
48
|
},
|
|
49
|
+
"./runtime": {
|
|
50
|
+
"types": "./runtime/index.d.ts",
|
|
51
|
+
"default": "./fesm2022/acorex-platform-runtime.mjs"
|
|
52
|
+
},
|
|
63
53
|
"./widgets": {
|
|
64
54
|
"types": "./widgets/index.d.ts",
|
|
65
55
|
"default": "./fesm2022/acorex-platform-widgets.mjs"
|
|
@@ -76,22 +66,18 @@
|
|
|
76
66
|
"types": "./layout/components/index.d.ts",
|
|
77
67
|
"default": "./fesm2022/acorex-platform-layout-components.mjs"
|
|
78
68
|
},
|
|
79
|
-
"./layout/entity": {
|
|
80
|
-
"types": "./layout/entity/index.d.ts",
|
|
81
|
-
"default": "./fesm2022/acorex-platform-layout-entity.mjs"
|
|
82
|
-
},
|
|
83
69
|
"./layout/designer": {
|
|
84
70
|
"types": "./layout/designer/index.d.ts",
|
|
85
71
|
"default": "./fesm2022/acorex-platform-layout-designer.mjs"
|
|
86
72
|
},
|
|
73
|
+
"./layout/entity": {
|
|
74
|
+
"types": "./layout/entity/index.d.ts",
|
|
75
|
+
"default": "./fesm2022/acorex-platform-layout-entity.mjs"
|
|
76
|
+
},
|
|
87
77
|
"./layout/views": {
|
|
88
78
|
"types": "./layout/views/index.d.ts",
|
|
89
79
|
"default": "./fesm2022/acorex-platform-layout-views.mjs"
|
|
90
80
|
},
|
|
91
|
-
"./runtime": {
|
|
92
|
-
"types": "./runtime/index.d.ts",
|
|
93
|
-
"default": "./fesm2022/acorex-platform-runtime.mjs"
|
|
94
|
-
},
|
|
95
81
|
"./themes/default": {
|
|
96
82
|
"types": "./themes/default/index.d.ts",
|
|
97
83
|
"default": "./fesm2022/acorex-platform-themes-default.mjs"
|