@igo2/context 18.0.1-next.2 → 18.0.1
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/igo2-context.mjs +5 -0
- package/esm2022/lib/context-import-export/context-import-export/context-import-export.component.mjs +156 -0
- package/esm2022/lib/context-import-export/context-import-export.module.mjs +24 -0
- package/esm2022/lib/context-import-export/index.mjs +3 -0
- package/esm2022/lib/context-import-export/shared/context-export.errors.mjs +15 -0
- package/esm2022/lib/context-import-export/shared/context-export.interface.mjs +2 -0
- package/esm2022/lib/context-import-export/shared/context-export.service.mjs +38 -0
- package/esm2022/lib/context-import-export/shared/context-export.utils.mjs +15 -0
- package/esm2022/lib/context-import-export/shared/context-import.errors.mjs +33 -0
- package/esm2022/lib/context-import-export/shared/context-import.service.mjs +82 -0
- package/esm2022/lib/context-import-export/shared/context-import.utils.mjs +148 -0
- package/esm2022/lib/context-import-export/shared/index.mjs +8 -0
- package/esm2022/lib/context-manager/context-edit/context-edit-binding.directive.mjs +56 -0
- package/esm2022/lib/context-manager/context-edit/context-edit.component.mjs +35 -0
- package/esm2022/lib/context-manager/context-edit/index.mjs +3 -0
- package/esm2022/lib/context-manager/context-form/context-form.component.mjs +117 -0
- package/esm2022/lib/context-manager/context-form/index.mjs +2 -0
- package/esm2022/lib/context-manager/context-item/context-item.component.mjs +96 -0
- package/esm2022/lib/context-manager/context-item/index.mjs +2 -0
- package/esm2022/lib/context-manager/context-list/context-list-binding.directive.mjs +259 -0
- package/esm2022/lib/context-manager/context-list/context-list.component.mjs +424 -0
- package/esm2022/lib/context-manager/context-list/context-list.enum.mjs +7 -0
- package/esm2022/lib/context-manager/context-list/index.mjs +3 -0
- package/esm2022/lib/context-manager/context-manager.directive.mjs +19 -0
- package/esm2022/lib/context-manager/context-manager.module.mjs +77 -0
- package/esm2022/lib/context-manager/context-permissions/context-permissions-binding.directive.mjs +109 -0
- package/esm2022/lib/context-manager/context-permissions/context-permissions.component.mjs +170 -0
- package/esm2022/lib/context-manager/context-permissions/index.mjs +3 -0
- package/esm2022/lib/context-manager/index.mjs +8 -0
- package/esm2022/lib/context-manager/shared/context.enum.mjs +13 -0
- package/esm2022/lib/context-manager/shared/context.interface.mjs +2 -0
- package/esm2022/lib/context-manager/shared/context.service.mjs +616 -0
- package/esm2022/lib/context-manager/shared/index.mjs +6 -0
- package/esm2022/lib/context-manager/shared/layer-context.directive.mjs +176 -0
- package/esm2022/lib/context-manager/shared/map-context.directive.mjs +68 -0
- package/esm2022/lib/context-map-button/bookmark-button/bookmark-button.component.mjs +69 -0
- package/esm2022/lib/context-map-button/bookmark-button/bookmark-dialog.component.mjs +37 -0
- package/esm2022/lib/context-map-button/bookmark-button/index.mjs +3 -0
- package/esm2022/lib/context-map-button/context-map-button.directive.mjs +10 -0
- package/esm2022/lib/context-map-button/context-map-button.module.mjs +48 -0
- package/esm2022/lib/context-map-button/index.mjs +5 -0
- package/esm2022/lib/context-map-button/poi-button/index.mjs +4 -0
- package/esm2022/lib/context-map-button/poi-button/poi-button.component.mjs +160 -0
- package/esm2022/lib/context-map-button/poi-button/poi-dialog.component.mjs +37 -0
- package/esm2022/lib/context-map-button/poi-button/shared/index.mjs +3 -0
- package/esm2022/lib/context-map-button/poi-button/shared/poi.interface.mjs +2 -0
- package/esm2022/lib/context-map-button/poi-button/shared/poi.service.mjs +38 -0
- package/esm2022/lib/context-map-button/user-button/index.mjs +3 -0
- package/esm2022/lib/context-map-button/user-button/user-button.animation.mjs +17 -0
- package/esm2022/lib/context-map-button/user-button/user-button.component.mjs +82 -0
- package/esm2022/lib/context-map-button/user-button/user-dialog.component.mjs +43 -0
- package/esm2022/lib/context.module.mjs +42 -0
- package/esm2022/lib/environment/environment.interface.mjs +2 -0
- package/esm2022/lib/environment/index.mjs +2 -0
- package/esm2022/lib/share-map/index.mjs +6 -0
- package/esm2022/lib/share-map/share-map/share-map-api.component.mjs +111 -0
- package/esm2022/lib/share-map/share-map/share-map-url.component.mjs +78 -0
- package/esm2022/lib/share-map/share-map/share-map.component.mjs +35 -0
- package/esm2022/lib/share-map/share-map.module.mjs +31 -0
- package/esm2022/lib/share-map/shared/index.mjs +2 -0
- package/esm2022/lib/share-map/shared/share-map.service.mjs +223 -0
- package/esm2022/lib/sidenav/index.mjs +2 -0
- package/esm2022/lib/sidenav/sidenav.component.mjs +122 -0
- package/esm2022/lib/sidenav/sidenav.module.mjs +24 -0
- package/esm2022/public_api.mjs +16 -0
- package/fesm2022/igo2-context.mjs +118 -118
- package/fesm2022/igo2-context.mjs.map +1 -1
- package/package.json +14 -12
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@igo2/context",
|
|
3
|
-
"version": "18.0.1
|
|
3
|
+
"version": "18.0.1",
|
|
4
4
|
"description": "IGO Library",
|
|
5
5
|
"author": "IGO Community",
|
|
6
6
|
"keywords": [
|
|
@@ -18,6 +18,8 @@
|
|
|
18
18
|
"exports": {
|
|
19
19
|
".": {
|
|
20
20
|
"types": "./index.d.ts",
|
|
21
|
+
"esm2022": "./esm2022/igo2-context.mjs",
|
|
22
|
+
"esm": "./esm2022/igo2-context.mjs",
|
|
21
23
|
"default": "./fesm2022/igo2-context.mjs"
|
|
22
24
|
},
|
|
23
25
|
"./theme": {
|
|
@@ -28,17 +30,17 @@
|
|
|
28
30
|
}
|
|
29
31
|
},
|
|
30
32
|
"peerDependencies": {
|
|
31
|
-
"@angular/animations": "^
|
|
32
|
-
"@angular/common": "^
|
|
33
|
-
"@angular/core": "^
|
|
34
|
-
"@angular/forms": "^
|
|
35
|
-
"@angular/material": "^
|
|
36
|
-
"@angular/platform-browser": "^
|
|
37
|
-
"@igo2/auth": "^18.0.1
|
|
38
|
-
"@igo2/common": "^18.0.1
|
|
39
|
-
"@igo2/core": "^18.0.1
|
|
40
|
-
"@igo2/geo": "^18.0.1
|
|
41
|
-
"@igo2/utils": "^18.0.1
|
|
33
|
+
"@angular/animations": "^18.0.0",
|
|
34
|
+
"@angular/common": "^18.0.0",
|
|
35
|
+
"@angular/core": "^18.0.0",
|
|
36
|
+
"@angular/forms": "^18.0.0",
|
|
37
|
+
"@angular/material": "^18.0.0",
|
|
38
|
+
"@angular/platform-browser": "^18.0.0",
|
|
39
|
+
"@igo2/auth": "^18.0.1",
|
|
40
|
+
"@igo2/common": "^18.0.1",
|
|
41
|
+
"@igo2/core": "^18.0.1",
|
|
42
|
+
"@igo2/geo": "^18.0.1",
|
|
43
|
+
"@igo2/utils": "^18.0.1",
|
|
42
44
|
"ol": "9.1.0",
|
|
43
45
|
"rxjs": "^7.8.0"
|
|
44
46
|
},
|