@selfcommunity/react-ui 0.8.0-live.57 → 0.8.0-live.59

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 (60) hide show
  1. package/lib/cjs/components/CreateLiveStreamDialog/CreateLiveStreamDialog.js +8 -7
  2. package/lib/cjs/components/EventForm/EventAddress.js +7 -6
  3. package/lib/cjs/components/EventForm/EventForm.d.ts +6 -1
  4. package/lib/cjs/components/EventForm/EventForm.js +27 -9
  5. package/lib/cjs/components/EventForm/types.d.ts +2 -1
  6. package/lib/cjs/components/LiveStream/LiveStream.js +1 -1
  7. package/lib/cjs/components/LiveStreamForm/LiveStreamFormSettings.d.ts +2 -1
  8. package/lib/cjs/components/LiveStreamForm/LiveStreamFormSettings.js +1 -1
  9. package/lib/cjs/components/LiveStreamForm/constants.d.ts +3 -0
  10. package/lib/cjs/components/LiveStreamForm/constants.js +6 -3
  11. package/lib/cjs/components/LiveStreamRoom/LiveStreamRoom.js +22 -11
  12. package/lib/cjs/components/LiveStreamRoom/LiveStreamVideoConference/LiveStreamVideoConference.js +5 -1
  13. package/lib/cjs/components/LiveStreamRoom/LiveStreamVideoConference/ParticipantPlaceholder.d.ts +6 -0
  14. package/lib/cjs/components/LiveStreamRoom/LiveStreamVideoConference/ParticipantPlaceholder.js +8 -0
  15. package/lib/cjs/components/LiveStreamRoom/LiveStreamVideoConference/ParticipantTile.d.ts +27 -0
  16. package/lib/cjs/components/LiveStreamRoom/LiveStreamVideoConference/ParticipantTile.js +65 -0
  17. package/lib/cjs/components/LiveStreamRoom/LiveStreamVideoConference/ParticipantTileActions.d.ts +26 -0
  18. package/lib/cjs/components/LiveStreamRoom/LiveStreamVideoConference/ParticipantTileActions.js +194 -0
  19. package/lib/cjs/components/LiveStreamRoom/LiveStreamVideoConference/ParticipantTileAvatar.d.ts +15 -0
  20. package/lib/cjs/components/LiveStreamRoom/LiveStreamVideoConference/ParticipantTileAvatar.js +38 -0
  21. package/lib/cjs/components/LiveStreamRoom/LiveStreamVideoConference/PreJoin.d.ts +61 -0
  22. package/lib/cjs/components/LiveStreamRoom/LiveStreamVideoConference/PreJoin.js +247 -0
  23. package/lib/cjs/components/LiveStreamRoom/LiveStreamVideoConference/TrackToggle.d.ts +23 -0
  24. package/lib/cjs/components/LiveStreamRoom/LiveStreamVideoConference/TrackToggle.js +31 -0
  25. package/lib/cjs/components/LiveStreamRoom/LiveStreamVideoConference/VideoConference.d.ts +4 -3
  26. package/lib/cjs/components/LiveStreamRoom/LiveStreamVideoConference/VideoConference.js +5 -5
  27. package/lib/cjs/components/LiveStreamRoom/LiveStreamVideoConference/constants.d.ts +1 -0
  28. package/lib/cjs/components/LiveStreamRoom/LiveStreamVideoConference/constants.js +2 -1
  29. package/lib/cjs/shared/LiveStreamInfoDetails/index.js +9 -1
  30. package/lib/esm/components/CreateLiveStreamDialog/CreateLiveStreamDialog.js +2 -1
  31. package/lib/esm/components/EventForm/EventAddress.js +7 -6
  32. package/lib/esm/components/EventForm/EventForm.d.ts +6 -1
  33. package/lib/esm/components/EventForm/EventForm.js +27 -9
  34. package/lib/esm/components/EventForm/types.d.ts +2 -1
  35. package/lib/esm/components/LiveStream/LiveStream.js +1 -1
  36. package/lib/esm/components/LiveStreamForm/LiveStreamFormSettings.d.ts +2 -1
  37. package/lib/esm/components/LiveStreamForm/LiveStreamFormSettings.js +1 -1
  38. package/lib/esm/components/LiveStreamForm/constants.d.ts +3 -0
  39. package/lib/esm/components/LiveStreamForm/constants.js +6 -3
  40. package/lib/esm/components/LiveStreamRoom/LiveStreamRoom.js +25 -14
  41. package/lib/esm/components/LiveStreamRoom/LiveStreamVideoConference/LiveStreamVideoConference.js +5 -1
  42. package/lib/esm/components/LiveStreamRoom/LiveStreamVideoConference/ParticipantPlaceholder.d.ts +6 -0
  43. package/lib/esm/components/LiveStreamRoom/LiveStreamVideoConference/ParticipantPlaceholder.js +6 -0
  44. package/lib/esm/components/LiveStreamRoom/LiveStreamVideoConference/ParticipantTile.d.ts +27 -0
  45. package/lib/esm/components/LiveStreamRoom/LiveStreamVideoConference/ParticipantTile.js +60 -0
  46. package/lib/esm/components/LiveStreamRoom/LiveStreamVideoConference/ParticipantTileActions.d.ts +26 -0
  47. package/lib/esm/components/LiveStreamRoom/LiveStreamVideoConference/ParticipantTileActions.js +191 -0
  48. package/lib/esm/components/LiveStreamRoom/LiveStreamVideoConference/ParticipantTileAvatar.d.ts +15 -0
  49. package/lib/esm/components/LiveStreamRoom/LiveStreamVideoConference/ParticipantTileAvatar.js +35 -0
  50. package/lib/esm/components/LiveStreamRoom/LiveStreamVideoConference/PreJoin.d.ts +61 -0
  51. package/lib/esm/components/LiveStreamRoom/LiveStreamVideoConference/PreJoin.js +241 -0
  52. package/lib/esm/components/LiveStreamRoom/LiveStreamVideoConference/TrackToggle.d.ts +23 -0
  53. package/lib/esm/components/LiveStreamRoom/LiveStreamVideoConference/TrackToggle.js +27 -0
  54. package/lib/esm/components/LiveStreamRoom/LiveStreamVideoConference/VideoConference.d.ts +4 -3
  55. package/lib/esm/components/LiveStreamRoom/LiveStreamVideoConference/VideoConference.js +6 -6
  56. package/lib/esm/components/LiveStreamRoom/LiveStreamVideoConference/constants.d.ts +1 -0
  57. package/lib/esm/components/LiveStreamRoom/LiveStreamVideoConference/constants.js +1 -0
  58. package/lib/esm/shared/LiveStreamInfoDetails/index.js +9 -1
  59. package/lib/umd/react-ui.js +1 -1
  60. package/package.json +7 -7
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@selfcommunity/react-ui",
3
- "version": "0.8.0-live.57+3f5cd9a72",
3
+ "version": "0.8.0-live.59+8a3519903",
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",
@@ -95,11 +95,11 @@
95
95
  "@rpldy/upload-drop-zone": "^1.7.1",
96
96
  "@rpldy/upload-preview": "^1.7.1",
97
97
  "@rpldy/uploady": "^1.7.1",
98
- "@selfcommunity/api-services": "0.5.0-live.81+3f5cd9a72",
99
- "@selfcommunity/react-core": "0.5.0-live.81+3f5cd9a72",
100
- "@selfcommunity/react-i18n": "0.6.0-live.87+3f5cd9a72",
101
- "@selfcommunity/types": "0.6.0-live.81+3f5cd9a72",
102
- "@selfcommunity/utils": "0.2.56-live.139+3f5cd9a72",
98
+ "@selfcommunity/api-services": "0.5.0-live.83+8a3519903",
99
+ "@selfcommunity/react-core": "0.5.0-live.83+8a3519903",
100
+ "@selfcommunity/react-i18n": "0.6.0-live.89+8a3519903",
101
+ "@selfcommunity/types": "0.6.0-live.83+8a3519903",
102
+ "@selfcommunity/utils": "0.2.56-live.141+8a3519903",
103
103
  "@types/classnames": "^2.3.1",
104
104
  "@types/sortablejs": "1",
105
105
  "autosuggest-highlight": "^3.3.4",
@@ -192,5 +192,5 @@
192
192
  "engines": {
193
193
  "node": ">=18"
194
194
  },
195
- "gitHead": "3f5cd9a7277aeffef2d09ae10fa0f3d62cc45e4c"
195
+ "gitHead": "8a35199037ae516922a5f57f6110d3cf9633fb60"
196
196
  }