@authup/client-web-kit 1.0.0-beta.26 → 1.0.0-beta.27
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.d.ts +1 -1
- package/dist/components/entities/identity-provider/AIdentityProviderForm.d.ts +1 -11
- package/dist/components/entities/identity-provider/AIdentityProviderForm.d.ts.map +1 -1
- package/dist/components/entities/identity-provider/AIdentityProviderLdapForm.d.ts +1 -1
- package/dist/components/entities/identity-provider/AIdentityProviderOAuth2Form.d.ts +1 -10
- package/dist/components/entities/identity-provider/AIdentityProviderOAuth2Form.d.ts.map +1 -1
- package/dist/components/entities/permission/APermissionCheck.d.ts +5 -5
- package/dist/components/entities/permission/APermissionCheck.d.ts.map +1 -1
- package/dist/components/entities/policy/APolicyBasicForm.vue.d.ts +3 -3
- package/dist/components/entities/policy/APolicyForm.vue.d.ts +4 -4
- package/dist/components/entities/policy/attribute-names/AAttributeNamesPolicyForm.vue.d.ts +3 -3
- package/dist/components/entities/policy/composite/ACompositePolicyForm.vue.d.ts +3 -3
- package/dist/components/entities/policy/date/ADatePolicyForm.vue.d.ts +3 -3
- package/dist/components/entities/policy/identity/AIdentityPolicyForm.vue.d.ts +3 -3
- package/dist/components/entities/policy/realm-match/ARealmMatchPolicyForm.vue.d.ts +6 -6
- package/dist/components/entities/policy/time/ATimePolicyForm.vue.d.ts +3 -3
- package/dist/components/entities/robot/ARobotForm.d.ts +1 -1
- package/dist/components/entities/user/AUserForm.d.ts +1 -1
- package/dist/components/index.d.ts +1 -0
- package/dist/components/index.d.ts.map +1 -1
- package/dist/components/utility/AFormSubmit.d.ts +1 -1
- package/dist/components/utility/form-input-list/AFormInputList.vue.d.ts +3 -3
- package/dist/components/utility/form-input-list/AFormInputListItem.vue.d.ts +3 -3
- package/dist/components/workflows/Login.vue.d.ts +353 -0
- package/dist/components/workflows/Login.vue.d.ts.map +1 -0
- package/dist/components/workflows/authorize/Authorize.vue.d.ts +488 -0
- package/dist/components/workflows/authorize/Authorize.vue.d.ts.map +1 -0
- package/dist/components/workflows/authorize/AuthorizeForm.vue.d.ts +83 -0
- package/dist/components/workflows/authorize/AuthorizeForm.vue.d.ts.map +1 -0
- package/dist/components/workflows/authorize/AuthorizeScope.vue.d.ts +27 -0
- package/dist/components/workflows/authorize/AuthorizeScope.vue.d.ts.map +1 -0
- package/dist/components/workflows/authorize/AuthorizeScopes.vue.d.ts +54 -0
- package/dist/components/workflows/authorize/AuthorizeScopes.vue.d.ts.map +1 -0
- package/dist/components/workflows/authorize/AuthorizeText.vue.d.ts +21 -0
- package/dist/components/workflows/authorize/AuthorizeText.vue.d.ts.map +1 -0
- package/dist/components/workflows/authorize/helpers.d.ts +10 -0
- package/dist/components/workflows/authorize/helpers.d.ts.map +1 -0
- package/dist/components/workflows/authorize/index.d.ts +3 -0
- package/dist/components/workflows/authorize/index.d.ts.map +1 -0
- package/dist/components/workflows/index.d.ts +3 -0
- package/dist/components/workflows/index.d.ts.map +1 -0
- package/dist/index.cjs +1241 -393
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +20 -0
- package/dist/index.mjs +1094 -249
- package/dist/index.mjs.map +1 -1
- package/dist/module.d.ts.map +1 -1
- package/package.json +22 -22
package/dist/index.css
CHANGED
|
@@ -29,3 +29,23 @@
|
|
|
29
29
|
background-color: #6d7fcc;
|
|
30
30
|
color: #fff;
|
|
31
31
|
}
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
.identity-provider-box[data-v-957a0486] {
|
|
35
|
+
min-width: 150px;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
.authorize {
|
|
40
|
+
padding: 1rem;
|
|
41
|
+
background: #E8E8E8;
|
|
42
|
+
min-width: 480px;
|
|
43
|
+
max-width: 100%;
|
|
44
|
+
min-height: 300px;
|
|
45
|
+
display: flex;
|
|
46
|
+
flex-direction: column;
|
|
47
|
+
justify-content: center;
|
|
48
|
+
position: relative;
|
|
49
|
+
border-radius: 5px;
|
|
50
|
+
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.24);
|
|
51
|
+
}
|