@acorex/platform 19.4.9 → 19.4.10
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 -3
- package/core/lib/types/file.types.d.ts +2 -3
- package/fesm2022/acorex-platform-core.mjs +357 -385
- package/fesm2022/acorex-platform-core.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-entity.mjs +5 -2
- package/fesm2022/acorex-platform-layout-entity.mjs.map +1 -1
- package/fesm2022/acorex-platform-widgets-file-list-popup.component-TNxbcVav.mjs.map +1 -1
- package/fesm2022/acorex-platform-widgets.mjs +82 -19
- package/fesm2022/acorex-platform-widgets.mjs.map +1 -1
- package/package.json +1 -1
- package/widgets/lib/widgets/advance/file-uploader/file-list/file-list.component.d.ts +1 -0
- package/widgets/lib/widgets/advance/map/map-box-widget-edit.component.d.ts +2 -1
- package/core/lib/icon/icon-resolver.service.d.ts +0 -5
- package/core/lib/icon/icon.types.d.ts +0 -8
- package/core/lib/icon/index.d.ts +0 -2
package/package.json
CHANGED
|
@@ -3,6 +3,7 @@ import { AXPFileListItem } from '@acorex/platform/core';
|
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class AXPFileListComponent implements OnInit, OnDestroy {
|
|
5
5
|
private fileTypeService;
|
|
6
|
+
private fileStorageService;
|
|
6
7
|
protected isLoading: import("@angular/core").WritableSignal<boolean>;
|
|
7
8
|
private fileTypes;
|
|
8
9
|
onRemove: import("@angular/core").OutputEmitterRef<AXPFileListItem>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AXMapData, AXMapPolygon } from '@acorex/components/map';
|
|
1
|
+
import { AXMapData, AXMapPolygon, AXPoiMarker } from '@acorex/components/map';
|
|
2
2
|
import { AXPValueWidgetComponent } from '@acorex/platform/layout/builder';
|
|
3
3
|
import { ChangeDetectorRef } from '@angular/core';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
@@ -16,6 +16,7 @@ export declare class AXPMapBoxWidgetEditComponent extends AXPValueWidgetComponen
|
|
|
16
16
|
height: import("@angular/core").Signal<number>;
|
|
17
17
|
fitToDraw: import("@angular/core").Signal<boolean>;
|
|
18
18
|
limitDraw: import("@angular/core").Signal<AXMapPolygon[] | undefined>;
|
|
19
|
+
pois: import("@angular/core").Signal<AXPoiMarker[]>;
|
|
19
20
|
onMarkerChanged($event: import('@acorex/components/map').AXMapMarker[]): void;
|
|
20
21
|
onPolygonChanged($event: import('@acorex/components/map').AXMapPolygon[]): void;
|
|
21
22
|
private get __class();
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { InjectionToken } from "@angular/core";
|
|
2
|
-
export declare abstract class AXPIconResolver {
|
|
3
|
-
abstract resolve(icon: string): Promise<string>;
|
|
4
|
-
}
|
|
5
|
-
export declare const AXP_ICON_RESOLVER: InjectionToken<AXPIconResolver>;
|
|
6
|
-
export declare class AXPIconResolverDefault extends AXPIconResolver {
|
|
7
|
-
resolve(icon: string): Promise<string>;
|
|
8
|
-
}
|
package/core/lib/icon/index.d.ts
DELETED