@acorex/platform 20.6.0-next.15 → 20.6.0-next.17
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/fesm2022/acorex-platform-layout-components.mjs +13 -13
- package/fesm2022/acorex-platform-layout-components.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-entity.mjs +1617 -31
- package/fesm2022/acorex-platform-layout-entity.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-widgets.mjs +14 -2
- package/fesm2022/acorex-platform-layout-widgets.mjs.map +1 -1
- package/fesm2022/acorex-platform-themes-default-entity-master-create-view.component-xtWnr98z.mjs +136 -0
- package/fesm2022/acorex-platform-themes-default-entity-master-create-view.component-xtWnr98z.mjs.map +1 -0
- package/fesm2022/{acorex-platform-themes-default-entity-master-list-view.component-pBT9C2n8.mjs → acorex-platform-themes-default-entity-master-list-view.component-4nWLEm89.mjs} +207 -145
- package/fesm2022/acorex-platform-themes-default-entity-master-list-view.component-4nWLEm89.mjs.map +1 -0
- package/fesm2022/acorex-platform-themes-default.mjs +4 -4
- package/layout/components/index.d.ts +4 -4
- package/layout/entity/index.d.ts +241 -7
- package/layout/widgets/index.d.ts +4 -0
- package/package.json +1 -1
- package/fesm2022/acorex-platform-themes-default-entity-master-create-view.component-WbPPqDON.mjs +0 -115
- package/fesm2022/acorex-platform-themes-default-entity-master-create-view.component-WbPPqDON.mjs.map +0 -1
- package/fesm2022/acorex-platform-themes-default-entity-master-list-view.component-pBT9C2n8.mjs.map +0 -1
|
@@ -10761,6 +10761,8 @@ class AXPMapWidgetEditComponent extends AXPValueWidgetComponent {
|
|
|
10761
10761
|
this.fitToDraw = computed(() => this.options()['fitToDraw'] ?? false, ...(ngDevMode ? [{ debugName: "fitToDraw" }] : []));
|
|
10762
10762
|
this.limitDraw = computed(() => this.options()?.['limitDraw'] ?? undefined, ...(ngDevMode ? [{ debugName: "limitDraw" }] : []));
|
|
10763
10763
|
this.pois = computed(() => this.options()['pois'] ?? [], ...(ngDevMode ? [{ debugName: "pois" }] : []));
|
|
10764
|
+
this.disabled = computed(() => this.options()['disabled'] ?? false, ...(ngDevMode ? [{ debugName: "disabled" }] : []));
|
|
10765
|
+
this.readonly = computed(() => this.options()['readonly'] ?? false, ...(ngDevMode ? [{ debugName: "readonly" }] : []));
|
|
10764
10766
|
this.#af = afterNextRender(() => {
|
|
10765
10767
|
this.setStatus(AXPWidgetStatus.Rendered);
|
|
10766
10768
|
});
|
|
@@ -10791,9 +10793,11 @@ class AXPMapWidgetEditComponent extends AXPValueWidgetComponent {
|
|
|
10791
10793
|
[fitToDraw]="fitToDraw()"
|
|
10792
10794
|
[limitDraw]="limitDraw()!"
|
|
10793
10795
|
[pois]="pois()"
|
|
10796
|
+
[disabled]="disabled()"
|
|
10797
|
+
[readonly]="readonly()"
|
|
10794
10798
|
>
|
|
10795
10799
|
</ax-map>
|
|
10796
|
-
</div>`, isInline: true, dependencies: [{ kind: "ngmodule", type: AXMapModule }, { kind: "component", type: i1$c.AXMapComponent, selector: "ax-map", inputs: ["zoomLevel", "latitude", "longitude", "maxMarker", "maxPolygon", "hasDraw", "hasLocator", "fitToDraw", "limitDraw", "addPoiToFitDraw", "addMarkerOnTap", "markerPlace", "locatePlace", "poiMinZoom", "markers", "polygons", "pois"], outputs: ["zoomLevelChange", "latitudeChange", "longitudeChange", "onMarkerAdded", "onMarkerClick", "onMarkerChanged", "onPolygonAdded", "onPolygonClick", "onPolygonChanged", "onLocationFound", "onPoiChanged", "onPoiAdded", "onMapReady", "onLoadError"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
|
|
10800
|
+
</div>`, isInline: true, dependencies: [{ kind: "ngmodule", type: AXMapModule }, { kind: "component", type: i1$c.AXMapComponent, selector: "ax-map", inputs: ["zoomLevel", "latitude", "longitude", "maxMarker", "maxPolygon", "hasDraw", "hasLocator", "fitToDraw", "limitDraw", "addPoiToFitDraw", "addMarkerOnTap", "readonly", "disabled", "markerPlace", "locatePlace", "poiMinZoom", "markers", "polygons", "pois"], outputs: ["zoomLevelChange", "latitudeChange", "longitudeChange", "onMarkerAdded", "onMarkerClick", "onMarkerChanged", "onPolygonAdded", "onPolygonClick", "onPolygonChanged", "onLocationFound", "onPoiChanged", "onPoiAdded", "onMapReady", "onLoadError"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
|
|
10797
10801
|
}
|
|
10798
10802
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.12", ngImport: i0, type: AXPMapWidgetEditComponent, decorators: [{
|
|
10799
10803
|
type: Component,
|
|
@@ -10816,6 +10820,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.12", ngImpo
|
|
|
10816
10820
|
[fitToDraw]="fitToDraw()"
|
|
10817
10821
|
[limitDraw]="limitDraw()!"
|
|
10818
10822
|
[pois]="pois()"
|
|
10823
|
+
[disabled]="disabled()"
|
|
10824
|
+
[readonly]="readonly()"
|
|
10819
10825
|
>
|
|
10820
10826
|
</ax-map>
|
|
10821
10827
|
</div>`,
|
|
@@ -10842,6 +10848,8 @@ class AXPMapWidgetViewComponent extends AXPValueWidgetComponent {
|
|
|
10842
10848
|
this.zoomLevel = computed(() => this.options()['zoomLevel'] ?? 13, ...(ngDevMode ? [{ debugName: "zoomLevel" }] : []));
|
|
10843
10849
|
this.latitude = computed(() => this.options()['latitude'] ?? 35, ...(ngDevMode ? [{ debugName: "latitude" }] : []));
|
|
10844
10850
|
this.longitude = computed(() => this.options()['longitude'] ?? 51, ...(ngDevMode ? [{ debugName: "longitude" }] : []));
|
|
10851
|
+
this.disabled = computed(() => this.options()['disabled'] ?? false, ...(ngDevMode ? [{ debugName: "disabled" }] : []));
|
|
10852
|
+
this.readonly = computed(() => this.options()['readonly'] ?? false, ...(ngDevMode ? [{ debugName: "readonly" }] : []));
|
|
10845
10853
|
this.#af = afterNextRender(() => {
|
|
10846
10854
|
this.setStatus(AXPWidgetStatus.Rendered);
|
|
10847
10855
|
});
|
|
@@ -10856,8 +10864,10 @@ class AXPMapWidgetViewComponent extends AXPValueWidgetComponent {
|
|
|
10856
10864
|
[latitude]="latitude()"
|
|
10857
10865
|
[longitude]="longitude()"
|
|
10858
10866
|
[markers]="markers()"
|
|
10867
|
+
[disabled]="disabled()"
|
|
10868
|
+
[readonly]="readonly()"
|
|
10859
10869
|
></ax-map>
|
|
10860
|
-
</div>`, isInline: true, dependencies: [{ kind: "ngmodule", type: AXMapModule }, { kind: "component", type: i1$c.AXMapComponent, selector: "ax-map", inputs: ["zoomLevel", "latitude", "longitude", "maxMarker", "maxPolygon", "hasDraw", "hasLocator", "fitToDraw", "limitDraw", "addPoiToFitDraw", "addMarkerOnTap", "markerPlace", "locatePlace", "poiMinZoom", "markers", "polygons", "pois"], outputs: ["zoomLevelChange", "latitudeChange", "longitudeChange", "onMarkerAdded", "onMarkerClick", "onMarkerChanged", "onPolygonAdded", "onPolygonClick", "onPolygonChanged", "onLocationFound", "onPoiChanged", "onPoiAdded", "onMapReady", "onLoadError"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
|
|
10870
|
+
</div>`, isInline: true, dependencies: [{ kind: "ngmodule", type: AXMapModule }, { kind: "component", type: i1$c.AXMapComponent, selector: "ax-map", inputs: ["zoomLevel", "latitude", "longitude", "maxMarker", "maxPolygon", "hasDraw", "hasLocator", "fitToDraw", "limitDraw", "addPoiToFitDraw", "addMarkerOnTap", "readonly", "disabled", "markerPlace", "locatePlace", "poiMinZoom", "markers", "polygons", "pois"], outputs: ["zoomLevelChange", "latitudeChange", "longitudeChange", "onMarkerAdded", "onMarkerClick", "onMarkerChanged", "onPolygonAdded", "onPolygonClick", "onPolygonChanged", "onLocationFound", "onPoiChanged", "onPoiAdded", "onMapReady", "onLoadError"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
|
|
10861
10871
|
}
|
|
10862
10872
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.12", ngImport: i0, type: AXPMapWidgetViewComponent, decorators: [{
|
|
10863
10873
|
type: Component,
|
|
@@ -10870,6 +10880,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.12", ngImpo
|
|
|
10870
10880
|
[latitude]="latitude()"
|
|
10871
10881
|
[longitude]="longitude()"
|
|
10872
10882
|
[markers]="markers()"
|
|
10883
|
+
[disabled]="disabled()"
|
|
10884
|
+
[readonly]="readonly()"
|
|
10873
10885
|
></ax-map>
|
|
10874
10886
|
</div>`,
|
|
10875
10887
|
changeDetection: ChangeDetectionStrategy.OnPush,
|