@descope/web-components-ui 1.0.288 → 1.0.290

Sign up to get free protection for your applications and to get access to all the features.
Files changed (32) hide show
  1. package/dist/cjs/index.cjs.js +1148 -880
  2. package/dist/cjs/index.cjs.js.map +1 -1
  3. package/dist/index.d.ts +3 -0
  4. package/dist/index.esm.js +1147 -878
  5. package/dist/index.esm.js.map +1 -1
  6. package/dist/umd/2106.js +1 -1
  7. package/dist/umd/7911.js +73 -0
  8. package/dist/umd/7911.js.LICENSE.txt +17 -0
  9. package/dist/umd/button-selection-group-fields-descope-button-selection-group-item-index-js.js +1 -1
  10. package/dist/umd/descope-avatar-index-js.js +1 -1
  11. package/dist/umd/descope-badge-index-js.js +1 -1
  12. package/dist/umd/descope-text-index-js.js +1 -1
  13. package/dist/umd/descope-user-attribute-index-js.js +1 -0
  14. package/dist/umd/index.js +1 -1
  15. package/dist/umd/mapping-fields-descope-mappings-field-index-js.js +1 -1
  16. package/package.json +4 -2
  17. package/src/components/button-selection-group-fields/descope-button-selection-group-item/ButtonSelectionGroupItemClass.js +4 -0
  18. package/src/components/descope-avatar/AvatarClass.js +7 -5
  19. package/src/components/descope-badge/BadgeClass.js +3 -0
  20. package/src/components/descope-text/TextClass.js +1 -1
  21. package/src/components/descope-user-attribute/UserAttributeClass.js +228 -0
  22. package/src/components/descope-user-attribute/delete.svg +3 -0
  23. package/src/components/descope-user-attribute/edit.svg +3 -0
  24. package/src/components/descope-user-attribute/index.js +9 -0
  25. package/src/helpers/themeHelpers/componentsThemeManager.js +4 -0
  26. package/src/index.cjs.js +1 -0
  27. package/src/index.d.ts +3 -0
  28. package/src/index.js +1 -0
  29. package/src/theme/components/avatar.js +4 -0
  30. package/src/theme/components/buttonSelectionGroup/buttonSelectionGroupItem.js +1 -0
  31. package/src/theme/components/index.js +2 -0
  32. package/src/theme/components/userAttribute.js +20 -0
package/dist/index.d.ts CHANGED
@@ -51,6 +51,8 @@ export type Theme = {
51
51
  typography: Record<string, any>;
52
52
  shadow: Record<string, string>;
53
53
  spacing: Record<string, string>;
54
+ radius: Record<string, string>;
55
+ border: Record<string, string>;
54
56
  };
55
57
  components: {
56
58
  button: Record<string, any>;
@@ -60,5 +62,6 @@ export type Theme = {
60
62
  link: Record<string, any>;
61
63
  text: Record<string, any>;
62
64
  inputWrapper: Record<string, any>;
65
+ buttonSelectionGroupItem: Record<string, any>;
63
66
  };
64
67
  };