@selfcommunity/react-ui 0.10.2-alpha.2 → 0.10.2-alpha.21

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 (64) hide show
  1. package/lib/cjs/components/CommentObject/CommentObject.js +6 -3
  2. package/lib/cjs/components/EditEventButton/EditEventButton.js +2 -2
  3. package/lib/cjs/components/Editor/plugins/AutoLinkPlugin.js +7 -1
  4. package/lib/cjs/components/Event/Event.js +4 -4
  5. package/lib/cjs/components/EventForm/EventAddress.js +2 -13
  6. package/lib/cjs/components/EventForm/EventForm.js +32 -25
  7. package/lib/cjs/components/EventForm/constants.d.ts +4 -4
  8. package/lib/cjs/components/EventForm/constants.js +4 -4
  9. package/lib/cjs/components/EventForm/utils.d.ts +3 -3
  10. package/lib/cjs/components/EventForm/utils.js +8 -5
  11. package/lib/cjs/components/EventInviteButton/EventInviteButton.js +5 -5
  12. package/lib/cjs/components/EventLocationWidget/EventLocationWidget.js +2 -13
  13. package/lib/cjs/components/Events/Events.js +2 -4
  14. package/lib/cjs/components/FeedObject/FeedObject.js +2 -2
  15. package/lib/cjs/components/NavigationMenuIconButton/DefaultDrawerContent.js +24 -2
  16. package/lib/cjs/components/NavigationToolbar/NavigationToolbar.js +1 -1
  17. package/lib/cjs/components/Notification/Comment/Comment.js +2 -2
  18. package/lib/cjs/components/Notification/Notification.js +1 -1
  19. package/lib/cjs/components/PrivateMessageThread/PrivateMessageThread.js +3 -6
  20. package/lib/cjs/components/UserProfileEdit/UserProfileEdit.d.ts +1 -1
  21. package/lib/cjs/components/UserProfileEdit/UserProfileEdit.js +1 -1
  22. package/lib/cjs/components/UserSocialAssociation/UserSocialAssociation.js +16 -4
  23. package/lib/cjs/constants/SocialShare.d.ts +12 -0
  24. package/lib/cjs/constants/SocialShare.js +15 -2
  25. package/lib/cjs/index.d.ts +2 -2
  26. package/lib/cjs/index.js +3 -1
  27. package/lib/cjs/utils/contribution.d.ts +7 -0
  28. package/lib/cjs/utils/contribution.js +13 -1
  29. package/lib/esm/components/CommentObject/CommentObject.js +8 -5
  30. package/lib/esm/components/EditEventButton/EditEventButton.js +2 -2
  31. package/lib/esm/components/Editor/plugins/AutoLinkPlugin.js +7 -1
  32. package/lib/esm/components/Event/Event.js +4 -4
  33. package/lib/esm/components/EventForm/EventAddress.js +4 -15
  34. package/lib/esm/components/EventForm/EventForm.js +32 -25
  35. package/lib/esm/components/EventForm/constants.d.ts +4 -4
  36. package/lib/esm/components/EventForm/constants.js +4 -4
  37. package/lib/esm/components/EventForm/utils.d.ts +3 -3
  38. package/lib/esm/components/EventForm/utils.js +8 -5
  39. package/lib/esm/components/EventInviteButton/EventInviteButton.js +5 -5
  40. package/lib/esm/components/EventLocationWidget/EventLocationWidget.js +4 -15
  41. package/lib/esm/components/Events/Events.js +2 -4
  42. package/lib/esm/components/FeedObject/FeedObject.js +2 -2
  43. package/lib/esm/components/NavigationMenuIconButton/DefaultDrawerContent.js +27 -5
  44. package/lib/esm/components/NavigationToolbar/NavigationToolbar.js +1 -1
  45. package/lib/esm/components/Notification/Comment/Comment.js +2 -2
  46. package/lib/esm/components/Notification/Notification.js +1 -1
  47. package/lib/esm/components/PrivateMessageThread/PrivateMessageThread.js +3 -6
  48. package/lib/esm/components/UserProfileEdit/UserProfileEdit.d.ts +1 -1
  49. package/lib/esm/components/UserProfileEdit/UserProfileEdit.js +1 -1
  50. package/lib/esm/components/UserSocialAssociation/UserSocialAssociation.js +18 -6
  51. package/lib/esm/constants/SocialShare.d.ts +12 -0
  52. package/lib/esm/constants/SocialShare.js +13 -0
  53. package/lib/esm/index.d.ts +2 -2
  54. package/lib/esm/index.js +2 -2
  55. package/lib/esm/utils/contribution.d.ts +7 -0
  56. package/lib/esm/utils/contribution.js +11 -0
  57. package/lib/umd/2aa155858f48b8f3911a.eot +0 -0
  58. package/lib/umd/36f3af7f155d916c26ff.woff2 +0 -0
  59. package/lib/umd/80884d7cc0fcb1a47982.svg +1 -0
  60. package/lib/umd/a221d3aba0f6753cfbb7.ttf +0 -0
  61. package/lib/umd/assets/icons.svg +251 -0
  62. package/lib/umd/c3528e120c4e831db2ae.woff +0 -0
  63. package/lib/umd/react-ui.js +19 -1
  64. package/package.json +4 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@selfcommunity/react-ui",
3
- "version": "0.10.2-alpha.2",
3
+ "version": "0.10.2-alpha.21",
4
4
  "description": "React UI Components to integrate a Community created with SelfCommunity Platform.",
5
5
  "author": "SelfCommunity <https://www.selfcommunity.com>",
6
6
  "homepage": "https://www.selfcommunity.com",
@@ -93,8 +93,8 @@
93
93
  "@rpldy/upload-preview": "^1.7.1",
94
94
  "@rpldy/uploady": "^1.7.1",
95
95
  "@selfcommunity/api-services": "^0.6.4-alpha.0",
96
- "@selfcommunity/react-core": "^0.6.4-alpha.0",
97
- "@selfcommunity/react-i18n": "^0.7.4-alpha.0",
96
+ "@selfcommunity/react-core": "^0.6.4-alpha.10",
97
+ "@selfcommunity/react-i18n": "^0.7.4-alpha.8",
98
98
  "@selfcommunity/types": "^0.7.4-alpha.0",
99
99
  "@selfcommunity/utils": "^0.2.61-alpha.0",
100
100
  "@types/classnames": "^2.3.1",
@@ -180,5 +180,5 @@
180
180
  "bugs": {
181
181
  "url": "https://github.com/selfcommunity/community-js/issues"
182
182
  },
183
- "gitHead": "1101af745706515798f9e48dea29682e032412f0"
183
+ "gitHead": "b13ecdaca0e2e2d51c67e5b5ec3b1feb0fa5778d"
184
184
  }