@igo2/integration 19.0.0-next.14 → 19.0.0-next.15
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.
|
@@ -1817,11 +1817,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
|
|
|
1817
1817
|
}] }, { type: StorageState }, { type: i2$1.LanguageService }, { type: i3$1.MediaService }, { type: ToolState }] });
|
|
1818
1818
|
|
|
1819
1819
|
class FeatureActionsService {
|
|
1820
|
-
interactiveSelectionFormWidget;
|
|
1821
1820
|
storageState;
|
|
1822
1821
|
languageService;
|
|
1823
1822
|
toolState;
|
|
1824
1823
|
mediaService;
|
|
1824
|
+
interactiveSelectionFormWidget;
|
|
1825
1825
|
maximize$;
|
|
1826
1826
|
zoomAuto$ = new BehaviorSubject(false);
|
|
1827
1827
|
storageChange$$;
|
|
@@ -1831,12 +1831,12 @@ class FeatureActionsService {
|
|
|
1831
1831
|
get zoomAuto() {
|
|
1832
1832
|
return this.storageService.get('zoomAuto');
|
|
1833
1833
|
}
|
|
1834
|
-
constructor(
|
|
1835
|
-
this.interactiveSelectionFormWidget = interactiveSelectionFormWidget;
|
|
1834
|
+
constructor(storageState, languageService, toolState, mediaService, interactiveSelectionFormWidget) {
|
|
1836
1835
|
this.storageState = storageState;
|
|
1837
1836
|
this.languageService = languageService;
|
|
1838
1837
|
this.toolState = toolState;
|
|
1839
1838
|
this.mediaService = mediaService;
|
|
1839
|
+
this.interactiveSelectionFormWidget = interactiveSelectionFormWidget;
|
|
1840
1840
|
this.maximize$ = new BehaviorSubject(this.storageService.get('workspaceMaximize'));
|
|
1841
1841
|
}
|
|
1842
1842
|
ngOnDestroy() {
|
|
@@ -1859,7 +1859,7 @@ class FeatureActionsService {
|
|
|
1859
1859
|
});
|
|
1860
1860
|
return getWorkspaceActions(workspace, rowsInMapExtentCheckCondition$, selectOnlyCheckCondition$, undefined, this.zoomAuto$, this.maximize$, this.storageService, this.languageService, this.mediaService, this.toolState, this.interactiveSelectionFormWidget);
|
|
1861
1861
|
}
|
|
1862
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: FeatureActionsService, deps: [{ token:
|
|
1862
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: FeatureActionsService, deps: [{ token: StorageState }, { token: i2$1.LanguageService }, { token: ToolState }, { token: i3$1.MediaService }, { token: InteractiveSelectionFormWidget, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1863
1863
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: FeatureActionsService, providedIn: 'root' });
|
|
1864
1864
|
}
|
|
1865
1865
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: FeatureActionsService, decorators: [{
|
|
@@ -1867,18 +1867,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
|
|
|
1867
1867
|
args: [{
|
|
1868
1868
|
providedIn: 'root'
|
|
1869
1869
|
}]
|
|
1870
|
-
}], ctorParameters: () => [{ type: i5$1.Widget, decorators: [{
|
|
1870
|
+
}], ctorParameters: () => [{ type: StorageState }, { type: i2$1.LanguageService }, { type: ToolState }, { type: i3$1.MediaService }, { type: i5$1.Widget, decorators: [{
|
|
1871
|
+
type: Optional
|
|
1872
|
+
}, {
|
|
1871
1873
|
type: Inject,
|
|
1872
1874
|
args: [InteractiveSelectionFormWidget]
|
|
1873
|
-
}] }
|
|
1875
|
+
}] }] });
|
|
1874
1876
|
|
|
1875
1877
|
class WfsActionsService {
|
|
1876
|
-
interactiveSelectionFormWidget;
|
|
1877
|
-
ogcFilterWidget;
|
|
1878
1878
|
storageState;
|
|
1879
1879
|
languageService;
|
|
1880
1880
|
mediaService;
|
|
1881
1881
|
toolState;
|
|
1882
|
+
interactiveSelectionFormWidget;
|
|
1883
|
+
ogcFilterWidget;
|
|
1882
1884
|
maximize$;
|
|
1883
1885
|
selectOnlyCheckCondition$ = new BehaviorSubject(false);
|
|
1884
1886
|
// rowsInMapExtentCheckCondition$: BehaviorSubject<boolean> = new BehaviorSubject(true);
|
|
@@ -1890,13 +1892,13 @@ class WfsActionsService {
|
|
|
1890
1892
|
get zoomAuto() {
|
|
1891
1893
|
return this.storageService.get('zoomAuto');
|
|
1892
1894
|
}
|
|
1893
|
-
constructor(
|
|
1894
|
-
this.interactiveSelectionFormWidget = interactiveSelectionFormWidget;
|
|
1895
|
-
this.ogcFilterWidget = ogcFilterWidget;
|
|
1895
|
+
constructor(storageState, languageService, mediaService, toolState, interactiveSelectionFormWidget, ogcFilterWidget) {
|
|
1896
1896
|
this.storageState = storageState;
|
|
1897
1897
|
this.languageService = languageService;
|
|
1898
1898
|
this.mediaService = mediaService;
|
|
1899
1899
|
this.toolState = toolState;
|
|
1900
|
+
this.interactiveSelectionFormWidget = interactiveSelectionFormWidget;
|
|
1901
|
+
this.ogcFilterWidget = ogcFilterWidget;
|
|
1900
1902
|
this.maximize$ = new BehaviorSubject(this.storageService.get('workspaceMaximize'));
|
|
1901
1903
|
}
|
|
1902
1904
|
ngOnDestroy() {
|
|
@@ -1919,7 +1921,7 @@ class WfsActionsService {
|
|
|
1919
1921
|
});
|
|
1920
1922
|
return getWorkspaceActions(workspace, rowsInMapExtentCheckCondition$, selectOnlyCheckCondition$, this.ogcFilterWidget, this.zoomAuto$, this.maximize$, this.storageService, this.languageService, this.mediaService, this.toolState, this.interactiveSelectionFormWidget);
|
|
1921
1923
|
}
|
|
1922
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: WfsActionsService, deps: [{ token:
|
|
1924
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: WfsActionsService, deps: [{ token: StorageState }, { token: i2$1.LanguageService }, { token: i3$1.MediaService }, { token: ToolState }, { token: InteractiveSelectionFormWidget, optional: true }, { token: OgcFilterWidget, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1923
1925
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: WfsActionsService, providedIn: 'root' });
|
|
1924
1926
|
}
|
|
1925
1927
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: WfsActionsService, decorators: [{
|
|
@@ -1927,7 +1929,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
|
|
|
1927
1929
|
args: [{
|
|
1928
1930
|
providedIn: 'root'
|
|
1929
1931
|
}]
|
|
1930
|
-
}], ctorParameters: () => [{ type: i5$1.Widget, decorators: [{
|
|
1932
|
+
}], ctorParameters: () => [{ type: StorageState }, { type: i2$1.LanguageService }, { type: i3$1.MediaService }, { type: ToolState }, { type: i5$1.Widget, decorators: [{
|
|
1931
1933
|
type: Optional
|
|
1932
1934
|
}, {
|
|
1933
1935
|
type: Inject,
|
|
@@ -1937,7 +1939,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImpor
|
|
|
1937
1939
|
}, {
|
|
1938
1940
|
type: Inject,
|
|
1939
1941
|
args: [OgcFilterWidget]
|
|
1940
|
-
}] }
|
|
1942
|
+
}] }] });
|
|
1941
1943
|
|
|
1942
1944
|
/**
|
|
1943
1945
|
* Service that holds the state of the workspace module
|