@authup/client-web-kit 1.0.0-beta.33 → 1.0.0-beta.35
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/dist/components/entities/client/AClientForm.vue.d.ts +1 -1
- package/dist/components/entities/client-permission/AClientPermissionAssignment.d.ts.map +1 -1
- package/dist/components/entities/index.d.ts +1 -0
- package/dist/components/entities/index.d.ts.map +1 -1
- package/dist/components/entities/permission/APermissionForm.d.ts.map +1 -1
- package/dist/components/entities/permission-policy-binding/APermissionPolicyBindingButton.d.ts +31 -0
- package/dist/components/entities/permission-policy-binding/APermissionPolicyBindingButton.d.ts.map +1 -0
- package/dist/components/entities/permission-policy-binding/index.d.ts +2 -0
- package/dist/components/entities/permission-policy-binding/index.d.ts.map +1 -0
- package/dist/components/entities/policy/composite/ACompositePolicyForm.vue.d.ts +52 -0
- package/dist/components/entities/policy/composite/ACompositePolicyForm.vue.d.ts.map +1 -1
- package/dist/components/entities/robot-permission/ARobotPermissionAssignment.d.ts.map +1 -1
- package/dist/components/entities/role-permission/ARolePermissionAssignment.d.ts.map +1 -1
- package/dist/components/entities/user-permission/AUserPermissionAssignment.d.ts.map +1 -1
- package/dist/components/utility/entity/collection/module.d.ts.map +1 -1
- package/dist/components/utility/entity/collection/utils/handlers.d.ts +23 -5
- package/dist/components/utility/entity/collection/utils/handlers.d.ts.map +1 -1
- package/dist/core/translator/constants.d.ts +1 -0
- package/dist/core/translator/constants.d.ts.map +1 -1
- package/dist/core/translator/de/default.d.ts.map +1 -1
- package/dist/core/translator/en/default.d.ts.map +1 -1
- package/dist/index.mjs +6520 -8464
- package/dist/index.mjs.map +1 -1
- package/dist/{index.css → style.css} +9 -12
- package/package.json +19 -17
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
.identity-provider-picker-item[data-v-
|
|
2
|
+
.identity-provider-picker-item[data-v-cb0d0718] {
|
|
3
3
|
cursor: pointer;
|
|
4
4
|
border-radius: 4px;
|
|
5
5
|
min-width: 120px;
|
|
@@ -7,15 +7,14 @@
|
|
|
7
7
|
background-color: #ececec;
|
|
8
8
|
padding: 0.5rem;
|
|
9
9
|
}
|
|
10
|
-
.identity-provider-picker-item.active[data-v-
|
|
11
|
-
.identity-provider-picker-item[data-v-
|
|
12
|
-
.identity-provider-picker-item[data-v-
|
|
10
|
+
.identity-provider-picker-item.active[data-v-cb0d0718],
|
|
11
|
+
.identity-provider-picker-item[data-v-cb0d0718]:hover,
|
|
12
|
+
.identity-provider-picker-item[data-v-cb0d0718]:active {
|
|
13
13
|
background-color: #6d7fcc;
|
|
14
14
|
color: #fff;
|
|
15
15
|
}
|
|
16
16
|
|
|
17
|
-
|
|
18
|
-
.a-picker-item[data-v-2630c575] {
|
|
17
|
+
.a-picker-item[data-v-51b5a9d2] {
|
|
19
18
|
cursor: pointer;
|
|
20
19
|
border-radius: 4px;
|
|
21
20
|
min-width: 120px;
|
|
@@ -23,19 +22,17 @@
|
|
|
23
22
|
background-color: #ececec;
|
|
24
23
|
padding: 0.5rem;
|
|
25
24
|
}
|
|
26
|
-
.a-picker-item.active[data-v-
|
|
27
|
-
.a-picker-item[data-v-
|
|
28
|
-
.a-picker-item[data-v-
|
|
25
|
+
.a-picker-item.active[data-v-51b5a9d2],
|
|
26
|
+
.a-picker-item[data-v-51b5a9d2]:hover,
|
|
27
|
+
.a-picker-item[data-v-51b5a9d2]:active {
|
|
29
28
|
background-color: #6d7fcc;
|
|
30
29
|
color: #fff;
|
|
31
30
|
}
|
|
32
31
|
|
|
33
|
-
|
|
34
|
-
.identity-provider-box[data-v-429222f4] {
|
|
32
|
+
.identity-provider-box[data-v-b205167f] {
|
|
35
33
|
min-width: 150px;
|
|
36
34
|
}
|
|
37
35
|
|
|
38
|
-
|
|
39
36
|
.authorize {
|
|
40
37
|
padding: 1rem;
|
|
41
38
|
background: #E8E8E8;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@authup/client-web-kit",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.0.0-beta.
|
|
4
|
+
"version": "1.0.0-beta.35",
|
|
5
5
|
"description": "This package contains vue components.",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"module": "dist/index.mjs",
|
|
@@ -12,14 +12,14 @@
|
|
|
12
12
|
"types": "./dist/index.d.ts",
|
|
13
13
|
"import": "./dist/index.mjs"
|
|
14
14
|
},
|
|
15
|
-
"./dist/
|
|
15
|
+
"./dist/style.css": "./dist/style.css"
|
|
16
16
|
},
|
|
17
17
|
"files": [
|
|
18
18
|
"dist"
|
|
19
19
|
],
|
|
20
20
|
"scripts": {
|
|
21
21
|
"build:types": "vue-tsc --declaration --emitDeclarationOnly -p tsconfig.build.json",
|
|
22
|
-
"build:js": "
|
|
22
|
+
"build:js": "tsdown",
|
|
23
23
|
"build": "rimraf ./dist && npm run build:js && npm run build:types",
|
|
24
24
|
"build:watch": "npm run build -- --watch"
|
|
25
25
|
},
|
|
@@ -58,14 +58,15 @@
|
|
|
58
58
|
"@vueuse/integrations": "^14.2.1"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
|
-
"@authup/access": "^1.0.0-beta.
|
|
62
|
-
"@authup/kit": "^1.0.0-beta.
|
|
63
|
-
"@authup/core-kit": "^1.0.0-beta.
|
|
64
|
-
"@authup/core-http-kit": "^1.0.0-beta.
|
|
65
|
-
"@authup/core-realtime-kit": "^1.0.0-beta.
|
|
66
|
-
"@authup/errors": "^1.0.0-beta.
|
|
67
|
-
"@authup/specs": "^1.0.0-beta.
|
|
61
|
+
"@authup/access": "^1.0.0-beta.35",
|
|
62
|
+
"@authup/kit": "^1.0.0-beta.35",
|
|
63
|
+
"@authup/core-kit": "^1.0.0-beta.35",
|
|
64
|
+
"@authup/core-http-kit": "^1.0.0-beta.35",
|
|
65
|
+
"@authup/core-realtime-kit": "^1.0.0-beta.35",
|
|
66
|
+
"@authup/errors": "^1.0.0-beta.35",
|
|
67
|
+
"@authup/specs": "^1.0.0-beta.35",
|
|
68
68
|
"@ilingo/vuelidate": "^6.0.0",
|
|
69
|
+
"ilingo": "^5.0.0",
|
|
69
70
|
"@posva/event-emitter": "^1.0.3",
|
|
70
71
|
"@types/node": "^25.5.2",
|
|
71
72
|
"@vitejs/plugin-vue": "^6.0.5",
|
|
@@ -84,19 +85,20 @@
|
|
|
84
85
|
"vue-tsc": "^3.2.6"
|
|
85
86
|
},
|
|
86
87
|
"peerDependencies": {
|
|
87
|
-
"@authup/access": "^1.0.0-beta.
|
|
88
|
-
"@authup/kit": "^1.0.0-beta.
|
|
89
|
-
"@authup/core-kit": "^1.0.0-beta.
|
|
90
|
-
"@authup/core-http-kit": "^1.0.0-beta.
|
|
91
|
-
"@authup/core-realtime-kit": "^1.0.0-beta.
|
|
92
|
-
"@authup/errors": "^1.0.0-beta.
|
|
93
|
-
"@authup/specs": "^1.0.0-beta.
|
|
88
|
+
"@authup/access": "^1.0.0-beta.35",
|
|
89
|
+
"@authup/kit": "^1.0.0-beta.35",
|
|
90
|
+
"@authup/core-kit": "^1.0.0-beta.35",
|
|
91
|
+
"@authup/core-http-kit": "^1.0.0-beta.35",
|
|
92
|
+
"@authup/core-realtime-kit": "^1.0.0-beta.35",
|
|
93
|
+
"@authup/errors": "^1.0.0-beta.35",
|
|
94
|
+
"@authup/specs": "^1.0.0-beta.35",
|
|
94
95
|
"@vuecs/form-controls": "^2.5.0",
|
|
95
96
|
"@vuecs/list-controls": "^2.0.1",
|
|
96
97
|
"@vuecs/pagination": "^1.3.1",
|
|
97
98
|
"@vuelidate/core": "^2.x",
|
|
98
99
|
"@vuelidate/validators": "^2.x",
|
|
99
100
|
"@ilingo/vuelidate": "^6.x",
|
|
101
|
+
"ilingo": "^5.x",
|
|
100
102
|
"pinia": "^2.x || ^3.x",
|
|
101
103
|
"rapiq": ">=0.8.0 <1.0.0",
|
|
102
104
|
"smob": "^1.6.1",
|