@acorex/platform 20.2.4-next.8 → 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 +2 -2
- package/layout/builder/index.d.ts +12 -12
- package/layout/components/index.d.ts +2 -2
- package/package.json +9 -23
package/core/index.d.ts
CHANGED
|
@@ -19,8 +19,8 @@ declare class AXPContextChangeEvent {
|
|
|
19
19
|
declare const AXPContextStore: i0.Type<{
|
|
20
20
|
data: i0.Signal<AXPContextData>;
|
|
21
21
|
state: i0.Signal<AXPContextState>;
|
|
22
|
-
initialSnapshot:
|
|
23
|
-
previousSnapshot:
|
|
22
|
+
initialSnapshot: i0.Signal<{}>;
|
|
23
|
+
previousSnapshot: i0.Signal<{}>;
|
|
24
24
|
lastChange: _ngrx_signals.DeepSignal<AXPContextChangeEvent>;
|
|
25
25
|
isChanged: i0.Signal<boolean>;
|
|
26
26
|
isReset: i0.Signal<boolean>;
|
|
@@ -350,10 +350,10 @@ declare abstract class AXPBaseWidgetComponent extends AXPLayoutElement {
|
|
|
350
350
|
readonly host: HTMLDivElement;
|
|
351
351
|
protected readonly layoutService: AXPLayoutBuilderService;
|
|
352
352
|
protected readonly contextService: {
|
|
353
|
-
data:
|
|
353
|
+
data: _angular_core.Signal<{}>;
|
|
354
354
|
state: _angular_core.Signal<_acorex_platform_layout_builder.AXPLayoutContextState>;
|
|
355
|
-
initialSnapshot:
|
|
356
|
-
previousSnapshot:
|
|
355
|
+
initialSnapshot: _angular_core.Signal<{}>;
|
|
356
|
+
previousSnapshot: _angular_core.Signal<{}>;
|
|
357
357
|
lastChange: _ngrx_signals.DeepSignal<_acorex_platform_layout_builder.AXPLayoutContextChangeEvent>;
|
|
358
358
|
isChanged: _angular_core.Signal<boolean>;
|
|
359
359
|
isReset: _angular_core.Signal<boolean>;
|
|
@@ -631,10 +631,10 @@ declare class AXPLayoutContextChangeEvent {
|
|
|
631
631
|
data: any;
|
|
632
632
|
}
|
|
633
633
|
declare const AXPLayoutBuilderContextStore: _angular_core.Type<{
|
|
634
|
-
data:
|
|
634
|
+
data: _angular_core.Signal<{}>;
|
|
635
635
|
state: _angular_core.Signal<AXPLayoutContextState>;
|
|
636
|
-
initialSnapshot:
|
|
637
|
-
previousSnapshot:
|
|
636
|
+
initialSnapshot: _angular_core.Signal<{}>;
|
|
637
|
+
previousSnapshot: _angular_core.Signal<{}>;
|
|
638
638
|
lastChange: _ngrx_signals.DeepSignal<AXPLayoutContextChangeEvent>;
|
|
639
639
|
isChanged: _angular_core.Signal<boolean>;
|
|
640
640
|
isReset: _angular_core.Signal<boolean>;
|
|
@@ -660,10 +660,10 @@ declare const AXPLayoutBuilderContextStore: _angular_core.Type<{
|
|
|
660
660
|
|
|
661
661
|
declare class AXPWidgetContainerComponent {
|
|
662
662
|
readonly contextService: {
|
|
663
|
-
data:
|
|
663
|
+
data: _angular_core.Signal<{}>;
|
|
664
664
|
state: _angular_core.Signal<_acorex_platform_layout_builder.AXPLayoutContextState>;
|
|
665
|
-
initialSnapshot:
|
|
666
|
-
previousSnapshot:
|
|
665
|
+
initialSnapshot: _angular_core.Signal<{}>;
|
|
666
|
+
previousSnapshot: _angular_core.Signal<{}>;
|
|
667
667
|
lastChange: _ngrx_signals.DeepSignal<AXPLayoutContextChangeEvent>;
|
|
668
668
|
isChanged: _angular_core.Signal<boolean>;
|
|
669
669
|
isReset: _angular_core.Signal<boolean>;
|
|
@@ -768,10 +768,10 @@ declare class AXPWidgetRendererDirective {
|
|
|
768
768
|
private injector;
|
|
769
769
|
protected builderService: AXPLayoutBuilderService;
|
|
770
770
|
protected contextService: {
|
|
771
|
-
data:
|
|
771
|
+
data: _angular_core.Signal<{}>;
|
|
772
772
|
state: _angular_core.Signal<_acorex_platform_layout_builder.AXPLayoutContextState>;
|
|
773
|
-
initialSnapshot:
|
|
774
|
-
previousSnapshot:
|
|
773
|
+
initialSnapshot: _angular_core.Signal<{}>;
|
|
774
|
+
previousSnapshot: _angular_core.Signal<{}>;
|
|
775
775
|
lastChange: _ngrx_signals.DeepSignal<_acorex_platform_layout_builder.AXPLayoutContextChangeEvent>;
|
|
776
776
|
isChanged: _angular_core.Signal<boolean>;
|
|
777
777
|
isReset: _angular_core.Signal<boolean>;
|
|
@@ -301,8 +301,8 @@ declare class AXPComponentSlotDirective implements OnInit {
|
|
|
301
301
|
contextStore: {
|
|
302
302
|
data: _angular_core.Signal<AXPContextData>;
|
|
303
303
|
state: _angular_core.Signal<_acorex_platform_core.AXPContextState>;
|
|
304
|
-
initialSnapshot:
|
|
305
|
-
previousSnapshot:
|
|
304
|
+
initialSnapshot: _angular_core.Signal<{}>;
|
|
305
|
+
previousSnapshot: _angular_core.Signal<{}>;
|
|
306
306
|
lastChange: _ngrx_signals.DeepSignal<_acorex_platform_core.AXPContextChangeEvent>;
|
|
307
307
|
isChanged: _angular_core.Signal<boolean>;
|
|
308
308
|
isReset: _angular_core.Signal<boolean>;
|
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
|
-
"jwt-decode": "^4.0.0",
|
|
13
|
-
"leaflet": "^1.9.4",
|
|
14
|
-
"leaflet-draw": "^1.0.4",
|
|
15
|
-
"leaflet.locatecontrol": "^0.81.1",
|
|
16
|
-
"lodash-es": "^4.17.21",
|
|
17
|
-
"@types/lodash-es": "^4.17.8",
|
|
18
|
-
"memoizee": "^0.4.15",
|
|
19
|
-
"oidc-client-ts": "^3.0.1",
|
|
20
|
-
"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",
|
|
21
12
|
"dom-to-image": "^2.6.0",
|
|
22
|
-
"
|
|
23
|
-
"signature_pad": "^4.1.7",
|
|
24
|
-
"@acorex/styles": "^20.0.0",
|
|
25
|
-
"@acorex/core": "^20.0.0",
|
|
26
|
-
"@acorex/components": "^20.0.0",
|
|
27
|
-
"@angular/animations": "^20.0.0"
|
|
13
|
+
"signature_pad": "^4.1.7"
|
|
28
14
|
},
|
|
29
15
|
"dependencies": {
|
|
30
16
|
"tslib": "^2.3.0"
|