@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.
Files changed (48) hide show
  1. package/dist/components/entities/client/AClientForm.d.ts +1 -1
  2. package/dist/components/entities/identity-provider/AIdentityProviderForm.d.ts +1 -11
  3. package/dist/components/entities/identity-provider/AIdentityProviderForm.d.ts.map +1 -1
  4. package/dist/components/entities/identity-provider/AIdentityProviderLdapForm.d.ts +1 -1
  5. package/dist/components/entities/identity-provider/AIdentityProviderOAuth2Form.d.ts +1 -10
  6. package/dist/components/entities/identity-provider/AIdentityProviderOAuth2Form.d.ts.map +1 -1
  7. package/dist/components/entities/permission/APermissionCheck.d.ts +5 -5
  8. package/dist/components/entities/permission/APermissionCheck.d.ts.map +1 -1
  9. package/dist/components/entities/policy/APolicyBasicForm.vue.d.ts +3 -3
  10. package/dist/components/entities/policy/APolicyForm.vue.d.ts +4 -4
  11. package/dist/components/entities/policy/attribute-names/AAttributeNamesPolicyForm.vue.d.ts +3 -3
  12. package/dist/components/entities/policy/composite/ACompositePolicyForm.vue.d.ts +3 -3
  13. package/dist/components/entities/policy/date/ADatePolicyForm.vue.d.ts +3 -3
  14. package/dist/components/entities/policy/identity/AIdentityPolicyForm.vue.d.ts +3 -3
  15. package/dist/components/entities/policy/realm-match/ARealmMatchPolicyForm.vue.d.ts +6 -6
  16. package/dist/components/entities/policy/time/ATimePolicyForm.vue.d.ts +3 -3
  17. package/dist/components/entities/robot/ARobotForm.d.ts +1 -1
  18. package/dist/components/entities/user/AUserForm.d.ts +1 -1
  19. package/dist/components/index.d.ts +1 -0
  20. package/dist/components/index.d.ts.map +1 -1
  21. package/dist/components/utility/AFormSubmit.d.ts +1 -1
  22. package/dist/components/utility/form-input-list/AFormInputList.vue.d.ts +3 -3
  23. package/dist/components/utility/form-input-list/AFormInputListItem.vue.d.ts +3 -3
  24. package/dist/components/workflows/Login.vue.d.ts +353 -0
  25. package/dist/components/workflows/Login.vue.d.ts.map +1 -0
  26. package/dist/components/workflows/authorize/Authorize.vue.d.ts +488 -0
  27. package/dist/components/workflows/authorize/Authorize.vue.d.ts.map +1 -0
  28. package/dist/components/workflows/authorize/AuthorizeForm.vue.d.ts +83 -0
  29. package/dist/components/workflows/authorize/AuthorizeForm.vue.d.ts.map +1 -0
  30. package/dist/components/workflows/authorize/AuthorizeScope.vue.d.ts +27 -0
  31. package/dist/components/workflows/authorize/AuthorizeScope.vue.d.ts.map +1 -0
  32. package/dist/components/workflows/authorize/AuthorizeScopes.vue.d.ts +54 -0
  33. package/dist/components/workflows/authorize/AuthorizeScopes.vue.d.ts.map +1 -0
  34. package/dist/components/workflows/authorize/AuthorizeText.vue.d.ts +21 -0
  35. package/dist/components/workflows/authorize/AuthorizeText.vue.d.ts.map +1 -0
  36. package/dist/components/workflows/authorize/helpers.d.ts +10 -0
  37. package/dist/components/workflows/authorize/helpers.d.ts.map +1 -0
  38. package/dist/components/workflows/authorize/index.d.ts +3 -0
  39. package/dist/components/workflows/authorize/index.d.ts.map +1 -0
  40. package/dist/components/workflows/index.d.ts +3 -0
  41. package/dist/components/workflows/index.d.ts.map +1 -0
  42. package/dist/index.cjs +1241 -393
  43. package/dist/index.cjs.map +1 -1
  44. package/dist/index.css +20 -0
  45. package/dist/index.mjs +1094 -249
  46. package/dist/index.mjs.map +1 -1
  47. package/dist/module.d.ts.map +1 -1
  48. 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
+ }