@myrmidon/auth-jwt-admin 0.0.3 → 0.1.0
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/esm2020/lib/auth-jwt-admin.module.mjs +23 -25
- package/esm2020/lib/components/auth-jwt-registration/auth-jwt-registration.component.mjs +12 -12
- package/esm2020/lib/components/confirm-dialog/confirm-dialog.component.mjs +4 -4
- package/esm2020/lib/components/password-strength-bar/password-strength-bar.component.mjs +3 -3
- package/esm2020/lib/components/state/users.query.mjs +3 -3
- package/esm2020/lib/components/state/users.service.mjs +3 -3
- package/esm2020/lib/components/state/users.store.mjs +3 -3
- package/esm2020/lib/components/user-editor/user-editor.component.mjs +11 -11
- package/esm2020/lib/components/user-filter/user-filter.component.mjs +9 -9
- package/esm2020/lib/components/user-list/user-list.component.mjs +14 -14
- package/esm2020/lib/services/auth-jwt-account.service.mjs +3 -3
- package/esm2020/lib/services/dialog.service.mjs +3 -3
- package/fesm2015/myrmidon-auth-jwt-admin.mjs +75 -77
- package/fesm2015/myrmidon-auth-jwt-admin.mjs.map +1 -1
- package/fesm2020/myrmidon-auth-jwt-admin.mjs +75 -77
- package/fesm2020/myrmidon-auth-jwt-admin.mjs.map +1 -1
- package/{myrmidon-auth-jwt-admin.d.ts → index.d.ts} +0 -0
- package/lib/components/auth-jwt-registration/auth-jwt-registration.component.d.ts +11 -11
- package/lib/components/confirm-dialog/confirm-dialog.component.d.ts +1 -1
- package/lib/components/password-strength-bar/password-strength-bar.component.d.ts +1 -1
- package/lib/components/user-editor/user-editor.component.d.ts +10 -10
- package/lib/components/user-filter/user-filter.component.d.ts +5 -5
- package/lib/components/user-list/user-list.component.d.ts +4 -4
- package/package.json +7 -7
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@myrmidon/auth-jwt-admin",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "0.1.0",
|
|
4
4
|
"peerDependencies": {
|
|
5
|
-
"@angular/common": "^
|
|
6
|
-
"@angular/core": "^
|
|
7
|
-
"@angular/material": "^
|
|
8
|
-
"@myrmidon/auth-jwt-login": "^0.0
|
|
5
|
+
"@angular/common": "^14.0.0",
|
|
6
|
+
"@angular/core": "^14.0.0",
|
|
7
|
+
"@angular/material": "^14.0.0",
|
|
8
|
+
"@myrmidon/auth-jwt-login": "^0.1.0",
|
|
9
9
|
"@myrmidon/ng-tools": "^0.0.1"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
@@ -16,13 +16,13 @@
|
|
|
16
16
|
"esm2020": "esm2020/myrmidon-auth-jwt-admin.mjs",
|
|
17
17
|
"fesm2020": "fesm2020/myrmidon-auth-jwt-admin.mjs",
|
|
18
18
|
"fesm2015": "fesm2015/myrmidon-auth-jwt-admin.mjs",
|
|
19
|
-
"typings": "
|
|
19
|
+
"typings": "index.d.ts",
|
|
20
20
|
"exports": {
|
|
21
21
|
"./package.json": {
|
|
22
22
|
"default": "./package.json"
|
|
23
23
|
},
|
|
24
24
|
".": {
|
|
25
|
-
"types": "./
|
|
25
|
+
"types": "./index.d.ts",
|
|
26
26
|
"esm2020": "./esm2020/myrmidon-auth-jwt-admin.mjs",
|
|
27
27
|
"es2020": "./fesm2020/myrmidon-auth-jwt-admin.mjs",
|
|
28
28
|
"es2015": "./fesm2015/myrmidon-auth-jwt-admin.mjs",
|