@igo2/integration 19.0.0-next.13 → 19.0.0-next.14
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/igo2-integration.mjs +34 -9
- package/fesm2022/igo2-integration.mjs.map +1 -1
- package/lib/workspace/shared/feature-actions.service.d.ts +3 -1
- package/lib/workspace/shared/wfs-actions.service.d.ts +3 -2
- package/lib/workspace/shared/workspace.utils.d.ts +1 -1
- package/locale/en.integration.json +3 -1
- package/locale/fr.integration.json +3 -1
- package/package.json +4 -4
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { OnDestroy } from '@angular/core';
|
|
2
2
|
import { Action } from '@igo2/common/action';
|
|
3
|
+
import { Widget } from '@igo2/common/widget';
|
|
3
4
|
import { LanguageService } from '@igo2/core/language';
|
|
4
5
|
import { MediaService } from '@igo2/core/media';
|
|
5
6
|
import { StorageService } from '@igo2/core/storage';
|
|
@@ -9,6 +10,7 @@ import { StorageState } from '../../storage/storage.state';
|
|
|
9
10
|
import { ToolState } from '../../tool/tool.state';
|
|
10
11
|
import * as i0 from "@angular/core";
|
|
11
12
|
export declare class FeatureActionsService implements OnDestroy {
|
|
13
|
+
private interactiveSelectionFormWidget;
|
|
12
14
|
private storageState;
|
|
13
15
|
languageService: LanguageService;
|
|
14
16
|
private toolState;
|
|
@@ -18,7 +20,7 @@ export declare class FeatureActionsService implements OnDestroy {
|
|
|
18
20
|
private storageChange$$;
|
|
19
21
|
get storageService(): StorageService;
|
|
20
22
|
get zoomAuto(): boolean;
|
|
21
|
-
constructor(storageState: StorageState, languageService: LanguageService, toolState: ToolState, mediaService: MediaService);
|
|
23
|
+
constructor(interactiveSelectionFormWidget: Widget, storageState: StorageState, languageService: LanguageService, toolState: ToolState, mediaService: MediaService);
|
|
22
24
|
ngOnDestroy(): void;
|
|
23
25
|
loadActions(workspace: FeatureWorkspace, rowsInMapExtentCheckCondition$: BehaviorSubject<boolean>, selectOnlyCheckCondition$: BehaviorSubject<boolean>): void;
|
|
24
26
|
buildActions(workspace: FeatureWorkspace, rowsInMapExtentCheckCondition$: BehaviorSubject<boolean>, selectOnlyCheckCondition$: BehaviorSubject<boolean>): Action[];
|
|
@@ -10,6 +10,7 @@ import { StorageState } from '../../storage/storage.state';
|
|
|
10
10
|
import { ToolState } from '../../tool/tool.state';
|
|
11
11
|
import * as i0 from "@angular/core";
|
|
12
12
|
export declare class WfsActionsService implements OnDestroy {
|
|
13
|
+
private interactiveSelectionFormWidget;
|
|
13
14
|
private ogcFilterWidget;
|
|
14
15
|
private storageState;
|
|
15
16
|
languageService: LanguageService;
|
|
@@ -21,10 +22,10 @@ export declare class WfsActionsService implements OnDestroy {
|
|
|
21
22
|
private storageChange$$;
|
|
22
23
|
get storageService(): StorageService;
|
|
23
24
|
get zoomAuto(): boolean;
|
|
24
|
-
constructor(ogcFilterWidget: Widget, storageState: StorageState, languageService: LanguageService, mediaService: MediaService, toolState: ToolState);
|
|
25
|
+
constructor(interactiveSelectionFormWidget: Widget, ogcFilterWidget: Widget, storageState: StorageState, languageService: LanguageService, mediaService: MediaService, toolState: ToolState);
|
|
25
26
|
ngOnDestroy(): void;
|
|
26
27
|
loadActions(workspace: WfsWorkspace, rowsInMapExtentCheckCondition$: BehaviorSubject<boolean>, selectOnlyCheckCondition$: BehaviorSubject<boolean>): void;
|
|
27
28
|
buildActions(workspace: WfsWorkspace, rowsInMapExtentCheckCondition$: BehaviorSubject<boolean>, selectOnlyCheckCondition$: BehaviorSubject<boolean>): Action[];
|
|
28
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<WfsActionsService, [{ optional: true; }, null, null, null, null]>;
|
|
29
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<WfsActionsService, [{ optional: true; }, { optional: true; }, null, null, null, null]>;
|
|
29
30
|
static ɵprov: i0.ɵɵInjectableDeclaration<WfsActionsService>;
|
|
30
31
|
}
|
|
@@ -7,4 +7,4 @@ import { EditionWorkspace, FeatureWorkspace, WfsWorkspace } from '@igo2/geo';
|
|
|
7
7
|
import { BehaviorSubject } from 'rxjs';
|
|
8
8
|
import { ToolState } from '../../tool';
|
|
9
9
|
export declare function handleZoomAuto(workspace: FeatureWorkspace | WfsWorkspace | EditionWorkspace, storageService: any): void;
|
|
10
|
-
export declare function getWorkspaceActions(workspace: FeatureWorkspace | WfsWorkspace | EditionWorkspace, rowsInMapExtentCheckCondition$: BehaviorSubject<boolean>, selectOnlyCheckCondition$: BehaviorSubject<boolean>, ogcFilterWidget: Widget, zoomAuto$: BehaviorSubject<boolean>, maximize$: BehaviorSubject<boolean>, storageService: StorageService, languageService: LanguageService, mediaService: MediaService, toolState: ToolState): Action[];
|
|
10
|
+
export declare function getWorkspaceActions(workspace: FeatureWorkspace | WfsWorkspace | EditionWorkspace, rowsInMapExtentCheckCondition$: BehaviorSubject<boolean>, selectOnlyCheckCondition$: BehaviorSubject<boolean>, ogcFilterWidget: Widget, zoomAuto$: BehaviorSubject<boolean>, maximize$: BehaviorSubject<boolean>, storageService: StorageService, languageService: LanguageService, mediaService: MediaService, toolState: ToolState, interactiveSelectionFormWidget?: Widget): Action[];
|
|
@@ -101,7 +101,9 @@
|
|
|
101
101
|
"maximize": "Extend",
|
|
102
102
|
"maximizeTooltip": "Extend panel",
|
|
103
103
|
"standardExtent": "Reduce",
|
|
104
|
-
"standardExtentTooltip": "Reduce panel"
|
|
104
|
+
"standardExtentTooltip": "Reduce panel",
|
|
105
|
+
"interactiveSelection.title": "Select features by geometry",
|
|
106
|
+
"interactiveSelection.tooltip": "Select features by geometry"
|
|
105
107
|
},
|
|
106
108
|
"directions": {
|
|
107
109
|
"warning": {
|
|
@@ -102,7 +102,9 @@
|
|
|
102
102
|
"maximize": "Agrandir",
|
|
103
103
|
"maximizeTooltip": "Agrandir la fenêtre",
|
|
104
104
|
"standardExtent": "Réduire",
|
|
105
|
-
"standardExtentTooltip": "Réduire la fenêtre"
|
|
105
|
+
"standardExtentTooltip": "Réduire la fenêtre",
|
|
106
|
+
"interactiveSelection.title": "Sélectioner les entités par géométrie",
|
|
107
|
+
"interactiveSelection.tooltip": "Sélectioner les entités par géométrie"
|
|
106
108
|
},
|
|
107
109
|
"directions": {
|
|
108
110
|
"warning": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@igo2/integration",
|
|
3
|
-
"version": "19.0.0-next.
|
|
3
|
+
"version": "19.0.0-next.14",
|
|
4
4
|
"description": "IGO Library",
|
|
5
5
|
"author": "IGO Community",
|
|
6
6
|
"keywords": [
|
|
@@ -33,9 +33,9 @@
|
|
|
33
33
|
"peerDependencies": {
|
|
34
34
|
"@angular/common": "^19.0.0",
|
|
35
35
|
"@angular/core": "^19.0.0",
|
|
36
|
-
"@igo2/auth": "^19.0.0-next.
|
|
37
|
-
"@igo2/context": "^19.0.0-next.
|
|
38
|
-
"@igo2/geo": "^19.0.0-next.
|
|
36
|
+
"@igo2/auth": "^19.0.0-next.14",
|
|
37
|
+
"@igo2/context": "^19.0.0-next.14",
|
|
38
|
+
"@igo2/geo": "^19.0.0-next.14",
|
|
39
39
|
"rxjs": "^7.8.0"
|
|
40
40
|
},
|
|
41
41
|
"engines": {
|