@igo2/context 16.0.2 → 16.1.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/lib/context-import-export/context-import-export/context-import-export.component.mjs +9 -133
- package/esm2022/lib/context-import-export/context-import-export.module.mjs +42 -43
- package/esm2022/lib/context-import-export/shared/context-export.service.mjs +9 -9
- package/esm2022/lib/context-import-export/shared/context-import.service.mjs +9 -9
- package/esm2022/lib/context-manager/context-edit/context-edit-binding.directive.mjs +16 -18
- package/esm2022/lib/context-manager/context-edit/context-edit.component.mjs +11 -25
- package/esm2022/lib/context-manager/context-form/context-form.component.mjs +19 -69
- package/esm2022/lib/context-manager/context-item/context-item.component.mjs +33 -204
- package/esm2022/lib/context-manager/context-list/context-list-binding.directive.mjs +50 -52
- package/esm2022/lib/context-manager/context-list/context-list.component.mjs +45 -276
- package/esm2022/lib/context-manager/context-manager.module.mjs +94 -95
- package/esm2022/lib/context-manager/context-permissions/context-permissions-binding.directive.mjs +20 -22
- package/esm2022/lib/context-manager/context-permissions/context-permissions.component.mjs +17 -209
- package/esm2022/lib/context-manager/shared/context.service.mjs +11 -11
- package/esm2022/lib/context-manager/shared/layer-context.directive.mjs +13 -13
- package/esm2022/lib/context-manager/shared/map-context.directive.mjs +9 -9
- package/esm2022/lib/context-map-button/bookmark-button/bookmark-button.component.mjs +11 -20
- package/esm2022/lib/context-map-button/bookmark-button/bookmark-dialog.component.mjs +7 -37
- package/esm2022/lib/context-map-button/context-map-button.module.mjs +63 -64
- package/esm2022/lib/context-map-button/poi-button/poi-button.component.mjs +11 -50
- package/esm2022/lib/context-map-button/poi-button/poi-dialog.component.mjs +7 -37
- package/esm2022/lib/context-map-button/poi-button/shared/poi.service.mjs +6 -6
- package/esm2022/lib/context-map-button/user-button/user-button.component.mjs +11 -52
- package/esm2022/lib/context-map-button/user-button/user-dialog.component.mjs +8 -47
- package/esm2022/lib/context.module.mjs +22 -23
- package/esm2022/lib/share-map/share-map/share-map-api.component.mjs +10 -103
- package/esm2022/lib/share-map/share-map/share-map-url.component.mjs +9 -195
- package/esm2022/lib/share-map/share-map/share-map.component.mjs +9 -42
- package/esm2022/lib/share-map/share-map.module.mjs +34 -35
- package/esm2022/lib/share-map/shared/share-map.service.mjs +11 -11
- package/esm2022/lib/sidenav/sidenav.component.mjs +19 -90
- package/esm2022/lib/sidenav/sidenav.module.mjs +32 -33
- package/fesm2022/igo2-context.mjs +645 -2010
- package/fesm2022/igo2-context.mjs.map +1 -1
- package/package.json +22 -22
- /package/{context-theme.scss → src/context-theme.scss} +0 -0
- /package/{lib → src/lib}/context-manager/context-item/context-item.theming.scss +0 -0
- /package/{lib → src/lib}/context-manager/context-list/context-list.theming.scss +0 -0
- /package/{lib → src/lib}/context-manager/context-manager.theming.scss +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@igo2/context",
|
|
3
|
-
"version": "16.
|
|
3
|
+
"version": "16.1.1",
|
|
4
4
|
"description": "IGO Library",
|
|
5
5
|
"author": "IGO Community",
|
|
6
6
|
"keywords": [
|
|
@@ -15,6 +15,20 @@
|
|
|
15
15
|
"bugs": {
|
|
16
16
|
"url": "https://github.com/infra-geo-ouverte/igo2-lib/issues"
|
|
17
17
|
},
|
|
18
|
+
"exports": {
|
|
19
|
+
".": {
|
|
20
|
+
"types": "./index.d.ts",
|
|
21
|
+
"esm2022": "./esm2022/igo2-context.mjs",
|
|
22
|
+
"esm": "./esm2022/igo2-context.mjs",
|
|
23
|
+
"default": "./fesm2022/igo2-context.mjs"
|
|
24
|
+
},
|
|
25
|
+
"./theming": {
|
|
26
|
+
"sass": "./src/context-theme.scss"
|
|
27
|
+
},
|
|
28
|
+
"./package.json": {
|
|
29
|
+
"default": "./package.json"
|
|
30
|
+
}
|
|
31
|
+
},
|
|
18
32
|
"peerDependencies": {
|
|
19
33
|
"@angular/animations": "^16.2.5",
|
|
20
34
|
"@angular/common": "^16.2.5",
|
|
@@ -22,11 +36,11 @@
|
|
|
22
36
|
"@angular/forms": "^16.2.5",
|
|
23
37
|
"@angular/material": "^16.2.4",
|
|
24
38
|
"@angular/platform-browser": "^16.2.5",
|
|
25
|
-
"@igo2/auth": "^16.
|
|
26
|
-
"@igo2/common": "^16.
|
|
27
|
-
"@igo2/core": "^16.
|
|
28
|
-
"@igo2/
|
|
29
|
-
"@igo2/
|
|
39
|
+
"@igo2/auth": "^16.1.1",
|
|
40
|
+
"@igo2/common": "^16.1.1",
|
|
41
|
+
"@igo2/core": "^16.1.1",
|
|
42
|
+
"@igo2/geo": "^16.1.1",
|
|
43
|
+
"@igo2/utils": "^16.1.1",
|
|
30
44
|
"ol": "^7.5.2",
|
|
31
45
|
"rxjs": "^7.8.0"
|
|
32
46
|
},
|
|
@@ -38,19 +52,5 @@
|
|
|
38
52
|
},
|
|
39
53
|
"module": "fesm2022/igo2-context.mjs",
|
|
40
54
|
"typings": "index.d.ts",
|
|
41
|
-
"
|
|
42
|
-
|
|
43
|
-
"default": "./package.json"
|
|
44
|
-
},
|
|
45
|
-
".": {
|
|
46
|
-
"types": "./index.d.ts",
|
|
47
|
-
"esm2022": "./esm2022/igo2-context.mjs",
|
|
48
|
-
"esm": "./esm2022/igo2-context.mjs",
|
|
49
|
-
"default": "./fesm2022/igo2-context.mjs"
|
|
50
|
-
}
|
|
51
|
-
},
|
|
52
|
-
"sideEffects": false,
|
|
53
|
-
"scripts": {
|
|
54
|
-
|
|
55
|
-
}
|
|
56
|
-
}
|
|
55
|
+
"sideEffects": false
|
|
56
|
+
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|