@igo2/context 17.0.0-next.6 → 17.0.0-next.7
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/esm2022/lib/context-import-export/context-import-export/context-import-export.component.mjs +5 -5
- package/esm2022/lib/context-manager/context-edit/context-edit.component.mjs +4 -4
- package/esm2022/lib/context-manager/context-form/context-form.component.mjs +4 -4
- package/esm2022/lib/context-manager/context-item/context-item.component.mjs +6 -5
- package/esm2022/lib/context-manager/context-list/context-list-binding.directive.mjs +3 -3
- package/esm2022/lib/context-manager/context-list/context-list.component.mjs +7 -5
- package/esm2022/lib/context-manager/context-manager.directive.mjs +19 -0
- package/esm2022/lib/context-manager/context-permissions/context-permissions.component.mjs +7 -5
- package/esm2022/lib/context-manager/index.mjs +2 -19
- package/esm2022/lib/context-manager/shared/context.interface.mjs +1 -1
- package/esm2022/lib/context-manager/shared/context.service.mjs +4 -9
- package/esm2022/lib/context-map-button/bookmark-button/bookmark-button.component.mjs +4 -4
- package/esm2022/lib/context-map-button/bookmark-button/bookmark-dialog.component.mjs +4 -4
- package/esm2022/lib/context-map-button/context-map-button.directive.mjs +10 -0
- package/esm2022/lib/context-map-button/index.mjs +2 -10
- package/esm2022/lib/context-map-button/poi-button/poi-button.component.mjs +7 -6
- package/esm2022/lib/context-map-button/poi-button/poi-dialog.component.mjs +4 -4
- package/esm2022/lib/context-map-button/user-button/user-button.component.mjs +4 -4
- package/esm2022/lib/context-map-button/user-button/user-dialog.component.mjs +4 -4
- package/esm2022/lib/share-map/index.mjs +2 -9
- package/esm2022/lib/share-map/share-map/share-map-api.component.mjs +4 -4
- package/esm2022/lib/share-map/share-map/share-map-url.component.mjs +5 -5
- package/esm2022/lib/share-map/share-map/share-map.component.mjs +4 -4
- package/esm2022/lib/share-map/share-map.module.mjs +6 -1
- package/esm2022/lib/sidenav/sidenav.component.mjs +7 -5
- package/fesm2022/igo2-context.mjs +54 -51
- package/fesm2022/igo2-context.mjs.map +1 -1
- package/lib/context-manager/context-list/context-list-binding.directive.d.ts +1 -1
- package/lib/context-manager/context-list/context-list.component.d.ts +1 -1
- package/lib/context-manager/context-manager.directive.d.ts +7 -0
- package/lib/context-manager/index.d.ts +1 -7
- package/lib/context-manager/shared/context.interface.d.ts +1 -1
- package/lib/context-manager/shared/context.service.d.ts +1 -1
- package/lib/context-map-button/context-map-button.directive.d.ts +4 -0
- package/lib/context-map-button/index.d.ts +1 -4
- package/lib/context-map-button/poi-button/poi-button.component.d.ts +1 -1
- package/lib/share-map/index.d.ts +1 -4
- package/lib/share-map/share-map.module.d.ts +4 -0
- package/lib/sidenav/sidenav.component.d.ts +2 -1
- package/package.json +6 -6
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ChangeDetectorRef, OnDestroy, OnInit } from '@angular/core';
|
|
2
2
|
import { AuthService } from '@igo2/auth';
|
|
3
|
-
import { ConfirmDialogService } from '@igo2/common';
|
|
3
|
+
import { ConfirmDialogService } from '@igo2/common/confirm-dialog';
|
|
4
4
|
import { LanguageService } from '@igo2/core/language';
|
|
5
5
|
import { MessageService } from '@igo2/core/message';
|
|
6
6
|
import { StorageService } from '@igo2/core/storage';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ChangeDetectorRef, EventEmitter, OnDestroy, OnInit } from '@angular/core';
|
|
2
2
|
import { MatDialog } from '@angular/material/dialog';
|
|
3
3
|
import { AuthService } from '@igo2/auth';
|
|
4
|
-
import { ActionStore, ActionbarMode } from '@igo2/common';
|
|
4
|
+
import { ActionStore, ActionbarMode } from '@igo2/common/action';
|
|
5
5
|
import { ConfigService } from '@igo2/core/config';
|
|
6
6
|
import { LanguageService } from '@igo2/core/language';
|
|
7
7
|
import { StorageService } from '@igo2/core/storage';
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { ContextEditBindingDirective, ContextEditComponent } from './context-edit';
|
|
2
|
+
import { ContextFormComponent } from './context-form';
|
|
3
|
+
import { ContextItemComponent } from './context-item';
|
|
4
|
+
import { ContextListBindingDirective, ContextListComponent } from './context-list';
|
|
5
|
+
import { ContextPermissionsBindingDirective, ContextPermissionsComponent } from './context-permissions';
|
|
6
|
+
import { LayerContextDirective, MapContextDirective } from './shared';
|
|
7
|
+
export declare const CONTEXT_MANAGER_DIRECTIVES: readonly [typeof ContextListComponent, typeof ContextListBindingDirective, typeof ContextItemComponent, typeof ContextFormComponent, typeof ContextEditComponent, typeof ContextEditBindingDirective, typeof ContextPermissionsComponent, typeof ContextPermissionsBindingDirective, typeof MapContextDirective, typeof LayerContextDirective];
|
|
@@ -1,13 +1,7 @@
|
|
|
1
|
-
import { ContextEditBindingDirective, ContextEditComponent } from './context-edit';
|
|
2
|
-
import { ContextFormComponent } from './context-form';
|
|
3
|
-
import { ContextItemComponent } from './context-item';
|
|
4
|
-
import { ContextListBindingDirective, ContextListComponent } from './context-list';
|
|
5
|
-
import { ContextPermissionsBindingDirective, ContextPermissionsComponent } from './context-permissions';
|
|
6
|
-
import { LayerContextDirective, MapContextDirective } from './shared';
|
|
7
1
|
export * from './shared';
|
|
8
2
|
export * from './context-list';
|
|
9
3
|
export * from './context-item';
|
|
10
4
|
export * from './context-form';
|
|
11
5
|
export * from './context-edit';
|
|
12
6
|
export * from './context-permissions';
|
|
13
|
-
export
|
|
7
|
+
export * from './context-manager.directive';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Tool } from '@igo2/common';
|
|
1
|
+
import { Tool } from '@igo2/common/tool';
|
|
2
2
|
import { Message } from '@igo2/core/message';
|
|
3
3
|
import { LayerOptions, MapAttributionOptions, MapExtent, MapScaleLineOptions, MapViewOptions } from '@igo2/geo';
|
|
4
4
|
import { FeatureCollection } from 'geojson';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { HttpClient } from '@angular/common/http';
|
|
2
2
|
import { AuthService } from '@igo2/auth';
|
|
3
|
-
import { Tool } from '@igo2/common';
|
|
3
|
+
import { Tool } from '@igo2/common/tool';
|
|
4
4
|
import { ConfigService } from '@igo2/core/config';
|
|
5
5
|
import { LanguageService } from '@igo2/core/language';
|
|
6
6
|
import { MessageService } from '@igo2/core/message';
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { BookmarkButtonComponent, BookmarkDialogComponent } from './bookmark-button';
|
|
2
|
+
import { PoiButtonComponent } from './poi-button';
|
|
3
|
+
import { UserButtonComponent } from './user-button';
|
|
4
|
+
export declare const CONTEXT_MAP_BUTTON_DIRECTIVES: readonly [typeof BookmarkButtonComponent, typeof BookmarkDialogComponent, typeof PoiButtonComponent, typeof UserButtonComponent];
|
|
@@ -1,7 +1,4 @@
|
|
|
1
|
-
import { BookmarkButtonComponent, BookmarkDialogComponent } from './bookmark-button';
|
|
2
|
-
import { PoiButtonComponent } from './poi-button';
|
|
3
|
-
import { UserButtonComponent } from './user-button';
|
|
4
1
|
export * from './bookmark-button';
|
|
5
2
|
export * from './poi-button';
|
|
6
3
|
export * from './user-button';
|
|
7
|
-
export
|
|
4
|
+
export * from './context-map-button.directive';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { OnDestroy, OnInit } from '@angular/core';
|
|
2
2
|
import { MatDialog } from '@angular/material/dialog';
|
|
3
3
|
import { AuthService } from '@igo2/auth';
|
|
4
|
-
import { ConfirmDialogService } from '@igo2/common';
|
|
4
|
+
import { ConfirmDialogService } from '@igo2/common/confirm-dialog';
|
|
5
5
|
import { LanguageService } from '@igo2/core/language';
|
|
6
6
|
import { MessageService } from '@igo2/core/message';
|
|
7
7
|
import type { IgoMap } from '@igo2/geo';
|
package/lib/share-map/index.d.ts
CHANGED
|
@@ -1,8 +1,5 @@
|
|
|
1
|
-
import { ShareMapApiComponent } from './share-map/share-map-api.component';
|
|
2
|
-
import { ShareMapUrlComponent } from './share-map/share-map-url.component';
|
|
3
|
-
import { ShareMapComponent } from './share-map/share-map.component';
|
|
4
1
|
export * from './shared';
|
|
2
|
+
export * from './share-map.module';
|
|
5
3
|
export * from './share-map/share-map.component';
|
|
6
4
|
export * from './share-map/share-map-url.component';
|
|
7
5
|
export * from './share-map/share-map-api.component';
|
|
8
|
-
export declare const SHARE_MAP_DIRECTIVES: readonly [typeof ShareMapComponent, typeof ShareMapUrlComponent, typeof ShareMapApiComponent];
|
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
import { ModuleWithProviders } from '@angular/core';
|
|
2
|
+
import { ShareMapApiComponent } from './share-map/share-map-api.component';
|
|
3
|
+
import { ShareMapUrlComponent } from './share-map/share-map-url.component';
|
|
4
|
+
import { ShareMapComponent } from './share-map/share-map.component';
|
|
2
5
|
import * as i0 from "@angular/core";
|
|
3
6
|
import * as i1 from "./share-map/share-map.component";
|
|
4
7
|
import * as i2 from "./share-map/share-map-url.component";
|
|
5
8
|
import * as i3 from "./share-map/share-map-api.component";
|
|
9
|
+
export declare const SHARE_MAP_DIRECTIVES: readonly [typeof ShareMapComponent, typeof ShareMapUrlComponent, typeof ShareMapApiComponent];
|
|
6
10
|
/**
|
|
7
11
|
* @deprecated import the components/directives directly or SHARE_MAP_DIRECTIVES for the set
|
|
8
12
|
*/
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { Title } from '@angular/platform-browser';
|
|
2
|
-
import { FlexibleState
|
|
2
|
+
import { FlexibleState } from '@igo2/common/flexible';
|
|
3
|
+
import { Tool } from '@igo2/common/tool';
|
|
3
4
|
import type { Media } from '@igo2/core/media';
|
|
4
5
|
import { Feature } from '@igo2/geo';
|
|
5
6
|
import type { IgoMap } from '@igo2/geo';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@igo2/context",
|
|
3
|
-
"version": "17.0.0-next.
|
|
3
|
+
"version": "17.0.0-next.7",
|
|
4
4
|
"description": "IGO Library",
|
|
5
5
|
"author": "IGO Community",
|
|
6
6
|
"keywords": [
|
|
@@ -36,11 +36,11 @@
|
|
|
36
36
|
"@angular/forms": "^17.0.6",
|
|
37
37
|
"@angular/material": "^17.0.3",
|
|
38
38
|
"@angular/platform-browser": "^17.0.6",
|
|
39
|
-
"@igo2/auth": "^17.0.0-next.
|
|
40
|
-
"@igo2/common": "^17.0.0-next.
|
|
41
|
-
"@igo2/core": "^17.0.0-next.
|
|
42
|
-
"@igo2/geo": "^17.0.0-next.
|
|
43
|
-
"@igo2/utils": "^17.0.0-next.
|
|
39
|
+
"@igo2/auth": "^17.0.0-next.7",
|
|
40
|
+
"@igo2/common": "^17.0.0-next.7",
|
|
41
|
+
"@igo2/core": "^17.0.0-next.7",
|
|
42
|
+
"@igo2/geo": "^17.0.0-next.7",
|
|
43
|
+
"@igo2/utils": "^17.0.0-next.7",
|
|
44
44
|
"ol": "^9.0.0",
|
|
45
45
|
"rxjs": "^7.8.0"
|
|
46
46
|
},
|