@things-factory/auth-ui 8.0.0-alpha.31 → 8.0.0-alpha.36

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.
Files changed (50) hide show
  1. package/client/components/abstract-auth-page.ts +10 -10
  2. package/client/components/abstract-password-reset.ts +9 -14
  3. package/client/components/abstract-sign.ts +13 -13
  4. package/client/components/contact-us.ts +11 -8
  5. package/client/components/create-user.ts +27 -5
  6. package/client/components/invite-user.ts +18 -10
  7. package/client/components/ownership-transfer-popup.ts +3 -3
  8. package/client/components/profile-component.ts +64 -4
  9. package/client/components/user-role-editor.ts +18 -18
  10. package/client/entries/auth/forgot-password.ts +11 -2
  11. package/client/entries/auth/signup.ts +13 -7
  12. package/client/index.ts +1 -1
  13. package/client/pages/user/user-management.ts +8 -9
  14. package/dist-client/components/abstract-auth-page.js +10 -10
  15. package/dist-client/components/abstract-auth-page.js.map +1 -1
  16. package/dist-client/components/abstract-password-reset.d.ts +1 -2
  17. package/dist-client/components/abstract-password-reset.js +7 -14
  18. package/dist-client/components/abstract-password-reset.js.map +1 -1
  19. package/dist-client/components/abstract-sign.js +12 -11
  20. package/dist-client/components/abstract-sign.js.map +1 -1
  21. package/dist-client/components/contact-us.d.ts +1 -1
  22. package/dist-client/components/contact-us.js +10 -7
  23. package/dist-client/components/contact-us.js.map +1 -1
  24. package/dist-client/components/create-user.js +28 -5
  25. package/dist-client/components/create-user.js.map +1 -1
  26. package/dist-client/components/invite-user.js +19 -11
  27. package/dist-client/components/invite-user.js.map +1 -1
  28. package/dist-client/components/ownership-transfer-popup.js +3 -3
  29. package/dist-client/components/ownership-transfer-popup.js.map +1 -1
  30. package/dist-client/components/profile-component.d.ts +5 -1
  31. package/dist-client/components/profile-component.js +64 -4
  32. package/dist-client/components/profile-component.js.map +1 -1
  33. package/dist-client/components/user-role-editor.js +18 -18
  34. package/dist-client/components/user-role-editor.js.map +1 -1
  35. package/dist-client/entries/auth/forgot-password.js +11 -2
  36. package/dist-client/entries/auth/forgot-password.js.map +1 -1
  37. package/dist-client/entries/auth/signup.js +13 -7
  38. package/dist-client/entries/auth/signup.js.map +1 -1
  39. package/dist-client/index.js +1 -1
  40. package/dist-client/index.js.map +1 -1
  41. package/dist-client/pages/user/user-management.d.ts +5 -1
  42. package/dist-client/pages/user/user-management.js +6 -7
  43. package/dist-client/pages/user/user-management.js.map +1 -1
  44. package/dist-client/tsconfig.tsbuildinfo +1 -1
  45. package/package.json +3 -3
  46. package/translations/en.json +4 -2
  47. package/translations/ja.json +4 -2
  48. package/translations/ko.json +4 -2
  49. package/translations/ms.json +4 -2
  50. package/translations/zh.json +4 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@things-factory/auth-ui",
3
- "version": "8.0.0-alpha.31",
3
+ "version": "8.0.0-alpha.36",
4
4
  "main": "dist-server/index.js",
5
5
  "browser": "dist-client/index.js",
6
6
  "things-factory": true,
@@ -36,10 +36,10 @@
36
36
  "@operato/moment-timezone-es": "^8.0.0-alpha",
37
37
  "@operato/p13n": "^8.0.0-alpha",
38
38
  "@operato/popup": "^8.0.0-alpha",
39
- "@things-factory/auth-base": "^8.0.0-alpha.29",
39
+ "@things-factory/auth-base": "^8.0.0-alpha.36",
40
40
  "@things-factory/more-base": "^8.0.0-alpha.29",
41
41
  "base64url": "^3.0.1",
42
42
  "clipboard": "^2.0.6"
43
43
  },
44
- "gitHead": "3d8df8131f3b0c1898c525d2928b7f9dc846840e"
44
+ "gitHead": "7529955cea0ce5eaa29069374ceac5de848ca1a0"
45
45
  }
@@ -22,7 +22,6 @@
22
22
  "error.new-password-and-confirm-password-do-not-match": "new password and confirm password do not match",
23
23
  "error.not valid pattern of type": "not valid pattern of {type}",
24
24
  "error.password-not-matched": "password not matched. after 5 failures, your account will be locked. (failure: {failCount})",
25
- "error.user duplicated.": "there is a user account using same email.",
26
25
  "error.user not found": "user not found",
27
26
  "error.user-deleted": "user account is deleted",
28
27
  "error.user-locked": "user account is locked",
@@ -54,7 +53,9 @@
54
53
  "field.tag": "tag",
55
54
  "field.tenant-id": "tenant id",
56
55
  "field.token": "token",
56
+ "field.user-id or email": "user id or email",
57
57
  "field.user-type": "user type",
58
+ "field.username": "user id",
58
59
  "label.access token": "access token",
59
60
  "label.activated-user": "activated",
60
61
  "label.admin-user": "admin",
@@ -95,6 +96,7 @@
95
96
  "label.subject": "subject",
96
97
  "label.superuser": "superuser",
97
98
  "label.user": "user",
99
+ "label.user-id": "user ID",
98
100
  "label.vendors": "vendors",
99
101
  "label.whitelist": "whitelist",
100
102
  "label.x description": "{x} description",
@@ -140,7 +142,7 @@
140
142
  "text.synchronize": "synchronize",
141
143
  "text.token expiry time": "token expiry time",
142
144
  "text.updated_successfully": "updated successfully",
143
- "text.user activated successfully": "user activated successfully",
145
+ "text.user invitation prompt": "Please enter the username or email address of the user you wish to invite.",
144
146
  "text.user management": "user management",
145
147
  "text.x_cannot_delete": "{x} cannot be deleted",
146
148
  "text.x_created_successfully": "{x} created successfully",
@@ -22,7 +22,6 @@
22
22
  "error.new-password-and-confirm-password-do-not-match": "新しいパスワードと確認パスワードが一致しません.",
23
23
  "error.not valid pattern of type": "正しい{type}形式ではありません.",
24
24
  "error.password-not-matched": "パスワードが一致しません. 5回失敗するとアカウントがロックされます. (失敗: {failCount})",
25
- "error.user duplicated": "同じメールで登録されたアカウントが存在します.",
26
25
  "error.user not found": "ユーザーが存在しません.",
27
26
  "error.user-deleted": "ユーザーが存在しません.",
28
27
  "error.user-locked": "アカウントがロックされました. メールで再アクティブ化してください.",
@@ -54,7 +53,9 @@
54
53
  "field.tag": "タグ",
55
54
  "field.tenant-id": "テナントID",
56
55
  "field.token": "認証トークン",
56
+ "field.user-id or email": "ユーザーIDまたはメール",
57
57
  "field.user-type": "ユーザー タイプ",
58
+ "field.username": "ユーザーID",
58
59
  "label.access token": "アクセストークン",
59
60
  "label.activated-user": "正常",
60
61
  "label.admin-user": "管理者",
@@ -95,6 +96,7 @@
95
96
  "label.subject": "タイトル",
96
97
  "label.superuser": "スーパーユーザー",
97
98
  "label.user": "ユーザー",
99
+ "label.user-id": "ユーザーID",
98
100
  "label.vendors": "ベンダー",
99
101
  "label.whitelist": "ホワイトリスト",
100
102
  "label.x description": "{x}説明",
@@ -139,7 +141,7 @@
139
141
  "text.synchronize": "同期",
140
142
  "text.token expiry time": "トークン有効期限",
141
143
  "text.updated_successfully": "正常にアップデートしました.",
142
- "text.user activated successfully": "ユーザーのアクティブ化に成功しました.",
144
+ "text.user invitation prompt": "招待したいユーザーのユーザー名またはメールアドレスを入力してください。",
143
145
  "text.user management": "ユーザー管理",
144
146
  "text.x_cannot_delete": "{x}は削除できません.",
145
147
  "text.x_created_successfully": "{x}が成功的に作成されました.",
@@ -22,7 +22,6 @@
22
22
  "error.new-password-and-confirm-password-do-not-match": "새 비밀번호와 확인 비밀번호가 일치하지 않습니다.",
23
23
  "error.not valid pattern of type": "올바른 {type} 형식이 아닙니다.",
24
24
  "error.password-not-matched": "비밀번호가 일치하지 않습니다. 5번 실패하면 계정이 잠깁니다. (실패: {failCount})",
25
- "error.user duplicated": "동일한 이메일로 가입된 계정이 이미 존재합니다.",
26
25
  "error.user not found": "사용자가 존재하지 않습니다.",
27
26
  "error.user-deleted": "사용자가 존재하지 않습니다.",
28
27
  "error.user-locked": "계정이 잠겼습니다. 이메일을 통해 재활성화하세요.",
@@ -54,7 +53,9 @@
54
53
  "field.tag": "태그",
55
54
  "field.tenant-id": "tenant id",
56
55
  "field.token": "인증 토큰",
56
+ "field.user-id or email": "사용자 아이디 또는 이메일",
57
57
  "field.user-type": "사용자유형",
58
+ "field.username": "사용자 아이디",
58
59
  "label.access token": "액세스 토큰",
59
60
  "label.activated-user": "정상",
60
61
  "label.admin-user": "관리자",
@@ -95,6 +96,7 @@
95
96
  "label.subject": "제목",
96
97
  "label.superuser": "수퍼유저",
97
98
  "label.user": "사용자",
99
+ "label.user-id": "사용자 아이디",
98
100
  "label.vendors": "공급 업체",
99
101
  "label.whitelist": "화이트리스트",
100
102
  "label.x description": "{x} 설명",
@@ -139,7 +141,7 @@
139
141
  "text.synchronize": "동기화",
140
142
  "text.token expiry time": "토큰 만료 시점",
141
143
  "text.updated_successfully": "성공적으로 업데이트 되었습니다.",
142
- "text.user activated successfully": "사용자를 성공적으로 활성화하였습니다.",
144
+ "text.user invitation prompt": "초대하고자 하는 사용자아이디나 이메일을 입력하세요。",
143
145
  "text.user management": "사용자 관리",
144
146
  "text.x_cannot_delete": "{x}은/는 삭제할 수 없습니다.",
145
147
  "text.x_created_successfully": "{x}이/가 성공적으로 생성되었습니다.",
@@ -22,7 +22,6 @@
22
22
  "error.new-password-and-confirm-password-do-not-match": "kata laluan baharu dan pengesahan berbeza",
23
23
  "error.not valid pattern of type": "tidak sah corak {type}",
24
24
  "error.password-not-matched": "salah kata kunci. akaun anda akan dikunci selepas 5 kali percubaan. (gagal: {failCount})",
25
- "error.user duplicated": "emel telah diguna oleh akaun lain",
26
25
  "error.user not found": "pengguna tidak wujud",
27
26
  "error.user-deleted": "pengguna tidak wujud",
28
27
  "error.user-locked": "pengguna dikunci",
@@ -54,7 +53,9 @@
54
53
  "field.tag": "tag",
55
54
  "field.tenant-id": "ID penyewa",
56
55
  "field.token": "token",
56
+ "field.user-id or email": "ID pengguna atau e-mel",
57
57
  "field.user-type": "jenis pengguna",
58
+ "field.username": "ID pengguna",
58
59
  "label.access token": "token akses",
59
60
  "label.activated-user": "diaktifkan",
60
61
  "label.admin-user": "admin",
@@ -95,6 +96,7 @@
95
96
  "label.subject": "subjek",
96
97
  "label.superuser": "superuser",
97
98
  "label.user": "pengguna",
99
+ "label.user-id": "ID pengguna",
98
100
  "label.vendors": "penjual",
99
101
  "label.whitelist": "senarai putih",
100
102
  "label.x description": "{x} penerangan",
@@ -140,7 +142,7 @@
140
142
  "text.synchronize": "menyamakan",
141
143
  "text.token expiry time": "masa tamat token",
142
144
  "text.updated_successfully": "berjaya dikemaskini",
143
- "text.user activated successfully": "pengguna berjaya diaktifkan",
145
+ "text.user invitation prompt": "sila masukkan nama pengguna atau alamat e-mel pengguna yang ingin anda jemput.",
144
146
  "text.user management": "pengurusan pengguna",
145
147
  "text.x_cannot_delete": "{x} tidak boleh dipadam",
146
148
  "text.x_created_successfully": "{x} berjaya dibina",
@@ -22,7 +22,6 @@
22
22
  "error.new-password-and-confirm-password-do-not-match": "新密码与认证密码不同",
23
23
  "error.not valid pattern of type": "{type}格式错误",
24
24
  "error.password-not-matched": "密码不匹配。 5次失败后,您的帐户将被锁定。(失败次数:{failCount})",
25
- "error.user duplicated": "有一个用户帐户使用相同的电子邮件",
26
25
  "error.user not found": "找不到用户",
27
26
  "error.user-deleted": "找不到用户",
28
27
  "error.user-locked": "用户帐户已锁定",
@@ -54,7 +53,9 @@
54
53
  "field.tag": "tag",
55
54
  "field.tenant-id": "租户ID",
56
55
  "field.token": "代币",
56
+ "field.user-id or email": "用户名或电子邮件",
57
57
  "field.user-type": "用户类型",
58
+ "field.username": "用户名",
58
59
  "label.access token": "访问令牌",
59
60
  "label.activated-user": "用户已激活",
60
61
  "label.admin-user": "管理用户",
@@ -95,6 +96,7 @@
95
96
  "label.subject": "主题",
96
97
  "label.superuser": "超级用户",
97
98
  "label.user": "用户",
99
+ "label.user-id": "用户ID",
98
100
  "label.vendors": "供应商",
99
101
  "label.whitelist": "白名单",
100
102
  "label.x description": "{x} 描述",
@@ -140,8 +142,8 @@
140
142
  "text.synchronize": "同步",
141
143
  "text.token expiry time": "令牌过期时间",
142
144
  "text.updated_successfully": "更新成功",
143
- "text.user activated successfully": "用户成功激活。",
144
145
  "text.user management": "用户管理",
146
+ "text.user invitation prompt": "请输入您希望邀请的用户的用户名或电子邮件地址。",
145
147
  "text.x_cannot_delete": "{x}无法删除",
146
148
  "text.x_created_successfully": "{x}创建成功",
147
149
  "text.x_deleted_successfully": "{x}删除成功",