@igo2/context 20.1.0-next.9 → 21.0.0-next.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.
@@ -58,6 +58,7 @@
58
58
  "sharedContexts": "Shared contexts",
59
59
  "filterPlaceHolder": "Filter by name",
60
60
  "sortAlphabetically": "Sort alphabetically",
61
+ "sortDefault": "Sort by default",
61
62
  "sortContextOrder": "Replace according to the creation date",
62
63
  "userAccount": "User account",
63
64
  "filterUser": "Filter by user group",
@@ -58,6 +58,7 @@
58
58
  "sharedContexts": "Contextes partagés",
59
59
  "filterPlaceHolder": "Filtrer par nom",
60
60
  "sortAlphabetically": "Trier en ordre alphabétique",
61
+ "sortDefault": "Trier par défaut",
61
62
  "sortContextOrder": "Replacer selon la date de création",
62
63
  "userAccount": "Profils utilisateurs",
63
64
  "filterUser": "Filtrer par groupe d'utilisateur",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@igo2/context",
3
- "version": "20.1.0-next.9",
3
+ "version": "21.0.0-next.1",
4
4
  "description": "IGO Library",
5
5
  "author": "IGO Community",
6
6
  "keywords": [
@@ -18,7 +18,7 @@
18
18
  },
19
19
  "exports": {
20
20
  ".": {
21
- "types": "./index.d.ts",
21
+ "types": "./types/igo2-context.d.ts",
22
22
  "default": "./fesm2022/igo2-context.mjs"
23
23
  },
24
24
  "./package.json": {
@@ -29,24 +29,25 @@
29
29
  "tslib": "^2.6.0"
30
30
  },
31
31
  "peerDependencies": {
32
- "@angular/animations": "^20.0.0",
33
- "@angular/common": "^20.0.0",
34
- "@angular/core": "^20.0.0",
35
- "@angular/forms": "^20.0.0",
36
- "@angular/material": "^20.0.0",
37
- "@angular/platform-browser": "^20.0.0",
38
- "@igo2/auth": "^20.1.0-next.9",
39
- "@igo2/common": "^20.1.0-next.9",
40
- "@igo2/core": "^20.1.0-next.9",
41
- "@igo2/geo": "^20.1.0-next.9",
42
- "@igo2/utils": "^20.1.0-next.9",
43
- "ol": "10.6.0",
32
+ "@angular/animations": "^21.0.0",
33
+ "@angular/common": "^21.0.0",
34
+ "@angular/core": "^21.0.0",
35
+ "@angular/forms": "^21.0.0",
36
+ "@angular/material": "^21.0.0",
37
+ "@angular/platform-browser": "^21.0.0",
38
+ "@igo2/auth": "^21.0.0-next.1",
39
+ "@igo2/common": "^21.0.0-next.1",
40
+ "@igo2/core": "^21.0.0-next.1",
41
+ "@igo2/geo": "^21.0.0-next.1",
42
+ "@igo2/utils": "^21.0.0-next.1",
43
+ "ol": "^10.0.0",
44
44
  "rxjs": "^7.8.0"
45
45
  },
46
46
  "engines": {
47
47
  "node": "^18.19.1 || ^20.11.1 || >=22.0.0"
48
48
  },
49
49
  "module": "fesm2022/igo2-context.mjs",
50
- "typings": "index.d.ts",
51
- "sideEffects": false
50
+ "typings": "types/igo2-context.d.ts",
51
+ "sideEffects": false,
52
+ "type": "module"
52
53
  }