@authup/client-web-kit 1.0.0-beta.21 → 1.0.0-beta.22

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 (57) hide show
  1. package/dist/components/client/AClient.d.ts +1 -1
  2. package/dist/components/client/AClientForm.d.ts +2 -2
  3. package/dist/components/client-scope/AClientScope.d.ts +1 -1
  4. package/dist/components/client-scope/AClientScopeAssignment.d.ts +1 -1
  5. package/dist/components/identity-provider/AIdentityProvider.d.ts +1 -1
  6. package/dist/components/identity-provider/AIdentityProviderForm.d.ts.map +1 -1
  7. package/dist/components/identity-provider/AIdentityProviderLdapForm.d.ts +1 -1
  8. package/dist/components/identity-provider/AIdentityProviderOAuth2Form.d.ts +1 -1
  9. package/dist/components/identity-provider/AIdentityProviderPicker.vue.d.ts +56 -0
  10. package/dist/components/identity-provider/AIdentityProviderPicker.vue.d.ts.map +1 -0
  11. package/dist/components/identity-provider-role/AIdentityProviderRoleAssignment.d.ts +1 -1
  12. package/dist/components/permission/APermission.d.ts +1 -1
  13. package/dist/components/permission/APermissionForm.d.ts +1 -1
  14. package/dist/components/realm/ARealm.d.ts +1 -1
  15. package/dist/components/realm/ARealmForm.d.ts +1 -1
  16. package/dist/components/robot/ARobot.d.ts +1 -1
  17. package/dist/components/robot/ARobotForm.d.ts +2 -2
  18. package/dist/components/robot-permission/ARobotPermissionAssignment.d.ts +1 -1
  19. package/dist/components/robot-role/ARobotRoleAssignment.d.ts +1 -1
  20. package/dist/components/role/ARole.d.ts +1 -1
  21. package/dist/components/role/ARoleForm.d.ts +1 -1
  22. package/dist/components/role-permission/ARolePermissionAssignment.d.ts +1 -1
  23. package/dist/components/scope/AScope.d.ts +1 -1
  24. package/dist/components/scope/AScopeForm.d.ts +1 -1
  25. package/dist/components/user/AUser.d.ts +1 -1
  26. package/dist/components/user/AUserForm.d.ts +1 -1
  27. package/dist/components/user-permission/AUserPermissionAssignment.d.ts +1 -1
  28. package/dist/components/user-role/AUserRoleAssignment.d.ts +1 -1
  29. package/dist/core/http-client/install.d.ts.map +1 -1
  30. package/dist/core/list/module.d.ts.map +1 -1
  31. package/dist/core/store/create.d.ts +14 -13
  32. package/dist/core/store/create.d.ts.map +1 -1
  33. package/dist/core/store/dispatcher/constants.d.ts +15 -0
  34. package/dist/core/store/dispatcher/constants.d.ts.map +1 -0
  35. package/dist/core/store/dispatcher/index.d.ts +5 -0
  36. package/dist/core/store/dispatcher/index.d.ts.map +1 -0
  37. package/dist/core/store/dispatcher/module.d.ts +3 -0
  38. package/dist/core/store/dispatcher/module.d.ts.map +1 -0
  39. package/dist/core/store/dispatcher/singleton.d.ts +5 -0
  40. package/dist/core/store/dispatcher/singleton.d.ts.map +1 -0
  41. package/dist/core/store/dispatcher/types.d.ts +23 -0
  42. package/dist/core/store/dispatcher/types.d.ts.map +1 -0
  43. package/dist/core/store/index.d.ts +1 -0
  44. package/dist/core/store/index.d.ts.map +1 -1
  45. package/dist/core/store/install.d.ts.map +1 -1
  46. package/dist/core/store/singleton.d.ts +0 -1
  47. package/dist/core/store/singleton.d.ts.map +1 -1
  48. package/dist/core/store/types.d.ts +2 -4
  49. package/dist/core/store/types.d.ts.map +1 -1
  50. package/dist/index.cjs +385 -209
  51. package/dist/index.cjs.map +1 -1
  52. package/dist/index.css +15 -0
  53. package/dist/index.mjs +383 -210
  54. package/dist/index.mjs.map +1 -1
  55. package/package.json +21 -19
  56. package/dist/components/identity-provider/AIdentityProviderPicker.d.ts +0 -18
  57. package/dist/components/identity-provider/AIdentityProviderPicker.d.ts.map +0 -1
package/package.json CHANGED
@@ -1,7 +1,8 @@
1
1
  {
2
2
  "name": "@authup/client-web-kit",
3
- "version": "1.0.0-beta.21",
3
+ "version": "1.0.0-beta.22",
4
4
  "description": "This package contains vue components.",
5
+ "license": "Apache-2.0",
5
6
  "main": "dist/index.cjs",
6
7
  "module": "dist/index.mjs",
7
8
  "types": "dist/index.d.ts",
@@ -11,10 +12,11 @@
11
12
  "types": "./dist/index.d.ts",
12
13
  "import": "./dist/index.mjs",
13
14
  "require": "./dist/index.cjs"
14
- }
15
+ },
16
+ "./index.css": "./dist/index.css"
15
17
  },
16
18
  "files": [
17
- "dist/"
19
+ "dist"
18
20
  ],
19
21
  "scripts": {
20
22
  "build:types": "vue-tsc --declaration --emitDeclarationOnly -p tsconfig.build.json",
@@ -41,7 +43,6 @@
41
43
  "email": "contact@tada5hi.net",
42
44
  "url": "https://github.com/tada5hi"
43
45
  },
44
- "license": "Apache-2.0",
45
46
  "repository": {
46
47
  "type": "git",
47
48
  "url": "git+https://github.com/authup/authup.git",
@@ -55,16 +56,17 @@
55
56
  "@vueuse/integrations": "^11.1.0"
56
57
  },
57
58
  "devDependencies": {
58
- "@authup/kit": "^1.0.0-beta.21",
59
- "@authup/core-kit": "^1.0.0-beta.21",
60
- "@authup/core-http-kit": "^1.0.0-beta.21",
61
- "@authup/core-realtime-kit": "^1.0.0-beta.21",
59
+ "@authup/kit": "^1.0.0-beta.22",
60
+ "@authup/core-kit": "^1.0.0-beta.22",
61
+ "@authup/core-http-kit": "^1.0.0-beta.22",
62
+ "@authup/core-realtime-kit": "^1.0.0-beta.22",
62
63
  "@ilingo/vuelidate": "^5.0.3",
64
+ "@posva/event-emitter": "^1.0.2",
63
65
  "@types/node": "^22.5.0",
64
66
  "@vitejs/plugin-vue": "^5.1.4",
65
- "@vuecs/form-controls": "^2.3.0",
66
- "@vuecs/list-controls": "^1.1.1",
67
- "@vuecs/pagination": "^1.1.1",
67
+ "@vuecs/form-controls": "^2.3.1",
68
+ "@vuecs/list-controls": "^2.0.0",
69
+ "@vuecs/pagination": "^1.3.0",
68
70
  "@vuelidate/core": "^2.0.3",
69
71
  "@vuelidate/validators": "^2.0.4",
70
72
  "cross-env": "^7.0.3",
@@ -77,19 +79,19 @@
77
79
  "vue-tsc": "^2.0.29"
78
80
  },
79
81
  "peerDependencies": {
80
- "@authup/kit": "^1.0.0-beta.21",
81
- "@authup/core-kit": "^1.0.0-beta.21",
82
- "@authup/core-http-kit": "^1.0.0-beta.21",
83
- "@authup/core-realtime-kit": "^1.0.0-beta.21",
84
- "@vuecs/form-controls": "^2.3.0",
85
- "@vuecs/list-controls": "^1.1.1",
86
- "@vuecs/pagination": "^1.1.1",
82
+ "@authup/kit": "^1.0.0-beta.22",
83
+ "@authup/core-kit": "^1.0.0-beta.22",
84
+ "@authup/core-http-kit": "^1.0.0-beta.22",
85
+ "@authup/core-realtime-kit": "^1.0.0-beta.22",
86
+ "@vuecs/form-controls": "^2.3.1",
87
+ "@vuecs/list-controls": "^2.0.0",
88
+ "@vuecs/pagination": "^1.3.0",
87
89
  "@vuelidate/core": "^2.x",
88
90
  "@vuelidate/validators": "^2.x",
89
91
  "@ilingo/vuelidate": "^5.x",
90
92
  "pinia": "^2.2.2",
91
93
  "rapiq": ">=0.8.0 <1.0.0",
92
- "smob": "^1.4.x",
94
+ "smob": "^1.5.0",
93
95
  "socket.io-client": "^4.8.0",
94
96
  "universal-cookie": "^7.2.0",
95
97
  "vue": "^3.3.x"
@@ -1,18 +0,0 @@
1
- export declare const AIdentityProviderPicker: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2
- protocol: {
3
- type: StringConstructor;
4
- };
5
- preset: {
6
- type: StringConstructor;
7
- };
8
- }>, () => import("vue").VNodeChild[], {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "pick"[], "pick", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
9
- protocol: {
10
- type: StringConstructor;
11
- };
12
- preset: {
13
- type: StringConstructor;
14
- };
15
- }>> & Readonly<{
16
- onPick?: (...args: any[]) => any;
17
- }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
18
- //# sourceMappingURL=AIdentityProviderPicker.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"AIdentityProviderPicker.d.ts","sourceRoot":"","sources":["../../../src/components/identity-provider/AIdentityProviderPicker.ts"],"names":[],"mappings":"AAeA,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;iFAoGlC,CAAC"}