@selfcommunity/react-ui 0.10.5-alpha.9 → 0.11.0-alpha.0
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/lib/cjs/components/ChangeCover/ChangeCover.js +1 -1
- package/lib/cjs/components/Composer/Composer.js +2 -2
- package/lib/cjs/components/ComposerIconButton/ComposerIconButton.d.ts +25 -2
- package/lib/cjs/components/ComposerIconButton/ComposerIconButton.js +116 -20
- package/lib/cjs/components/CreateEventWidget/CreateEventWidget.js +2 -2
- package/lib/cjs/components/CreateLiveStreamButton/CreateLiveStreamButton.js +1 -1
- package/lib/cjs/components/EventSubscribeButton/EventSubscribeButton.js +1 -1
- package/lib/cjs/components/GroupActionsMenu/index.js +1 -1
- package/lib/cjs/components/GroupSettingsIconButton/GroupSettingsIconButton.js +1 -1
- package/lib/cjs/components/LiveStreamRoom/LiveStreamRoom.js +19 -5
- package/lib/cjs/components/LiveStreamRoom/LiveStreamVideoConference/LiveStreamVideoConference.js +20 -2
- package/lib/cjs/components/LiveStreamRoom/LiveStreamVideoConference/ParticipantTileActions.js +1 -1
- package/lib/cjs/components/LiveStreamRoom/LiveStreamVideoConference/PreJoin.d.ts +4 -1
- package/lib/cjs/components/LiveStreamRoom/LiveStreamVideoConference/PreJoin.js +10 -4
- package/lib/cjs/components/NavigationMenuIconButton/NavigationMenuDrawer.js +3 -3
- package/lib/cjs/components/OnBoardingWidget/ActionsButton.js +1 -1
- package/lib/cjs/components/PrivateMessageSettingsIconButton/PrivateMessageSettingsIconButton.js +1 -1
- package/lib/cjs/components/UserActionIconButton/UserActionIconButton.js +1 -1
- package/lib/cjs/components/UserProfileHeader/UserProfileHeader.js +1 -1
- package/lib/esm/components/ChangeCover/ChangeCover.js +1 -1
- package/lib/esm/components/Composer/Composer.js +2 -2
- package/lib/esm/components/ComposerIconButton/ComposerIconButton.d.ts +25 -2
- package/lib/esm/components/ComposerIconButton/ComposerIconButton.js +117 -21
- package/lib/esm/components/CreateEventWidget/CreateEventWidget.js +2 -2
- package/lib/esm/components/CreateLiveStreamButton/CreateLiveStreamButton.js +1 -1
- package/lib/esm/components/EventSubscribeButton/EventSubscribeButton.js +1 -1
- package/lib/esm/components/GroupActionsMenu/index.js +1 -1
- package/lib/esm/components/GroupSettingsIconButton/GroupSettingsIconButton.js +1 -1
- package/lib/esm/components/LiveStreamRoom/LiveStreamRoom.js +19 -5
- package/lib/esm/components/LiveStreamRoom/LiveStreamVideoConference/LiveStreamVideoConference.js +21 -3
- package/lib/esm/components/LiveStreamRoom/LiveStreamVideoConference/ParticipantTileActions.js +1 -1
- package/lib/esm/components/LiveStreamRoom/LiveStreamVideoConference/PreJoin.d.ts +4 -1
- package/lib/esm/components/LiveStreamRoom/LiveStreamVideoConference/PreJoin.js +10 -4
- package/lib/esm/components/NavigationMenuIconButton/NavigationMenuDrawer.js +3 -3
- package/lib/esm/components/OnBoardingWidget/ActionsButton.js +1 -1
- package/lib/esm/components/PrivateMessageSettingsIconButton/PrivateMessageSettingsIconButton.js +1 -1
- package/lib/esm/components/UserActionIconButton/UserActionIconButton.js +1 -1
- package/lib/esm/components/UserProfileHeader/UserProfileHeader.js +1 -1
- package/lib/umd/react-ui.js +1 -1
- package/package.json +6 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@selfcommunity/react-ui",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.11.0-alpha.0",
|
|
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",
|
|
@@ -96,9 +96,9 @@
|
|
|
96
96
|
"@rpldy/upload-preview": "^1.7.1",
|
|
97
97
|
"@rpldy/uploady": "^1.7.1",
|
|
98
98
|
"@selfcommunity/api-services": "^0.6.7-alpha.1",
|
|
99
|
-
"@selfcommunity/react-core": "^0.6.7-alpha.
|
|
100
|
-
"@selfcommunity/react-i18n": "^0.
|
|
101
|
-
"@selfcommunity/react-theme-default": "^0.4.5-alpha.
|
|
99
|
+
"@selfcommunity/react-core": "^0.6.7-alpha.6",
|
|
100
|
+
"@selfcommunity/react-i18n": "^0.8.0-alpha.0",
|
|
101
|
+
"@selfcommunity/react-theme-default": "^0.4.5-alpha.8",
|
|
102
102
|
"@selfcommunity/types": "^0.7.7-alpha.1",
|
|
103
103
|
"@selfcommunity/utils": "^0.2.64-alpha.1",
|
|
104
104
|
"@types/classnames": "^2.3.1",
|
|
@@ -193,7 +193,7 @@
|
|
|
193
193
|
"url": "https://github.com/selfcommunity/community-js/issues"
|
|
194
194
|
},
|
|
195
195
|
"engines": {
|
|
196
|
-
"node": ">=
|
|
196
|
+
"node": ">=20.x"
|
|
197
197
|
},
|
|
198
|
-
"gitHead": "
|
|
198
|
+
"gitHead": "1e2636b8cc6d3ab1620a5c397e0bdf471e0ac74b"
|
|
199
199
|
}
|