@selfcommunity/react-ui 0.7.50-events.39 → 0.7.50-events.41
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/BottomNavigation/BottomNavigation.js +14 -5
- package/lib/cjs/components/CreateEventButton/CreateEventButton.js +5 -6
- package/lib/cjs/components/EventInfoWidget/EventInfoWidget.d.ts +24 -0
- package/lib/cjs/components/EventInfoWidget/EventInfoWidget.js +74 -0
- package/lib/cjs/components/EventInfoWidget/constants.d.ts +1 -0
- package/lib/cjs/components/EventInfoWidget/constants.js +4 -0
- package/lib/cjs/components/EventInfoWidget/index.d.ts +3 -0
- package/lib/cjs/components/EventInfoWidget/index.js +6 -0
- package/lib/cjs/components/EventInviteButton/EventInviteButton.js +11 -11
- package/lib/cjs/components/Events/Events.d.ts +1 -1
- package/lib/cjs/components/Events/Events.js +10 -10
- package/lib/cjs/components/NavigationToolbar/NavigationToolbar.d.ts +2 -0
- package/lib/cjs/components/NavigationToolbar/NavigationToolbar.js +9 -1
- package/lib/cjs/components/NavigationToolbarMobile/NavigationToolbarMobile.js +12 -2
- package/lib/cjs/components/User/User.d.ts +2 -1
- package/lib/cjs/components/User/User.js +9 -9
- package/lib/cjs/index.d.ts +104 -103
- package/lib/cjs/index.js +270 -267
- package/lib/cjs/shared/Bullet/index.js +1 -2
- package/lib/cjs/shared/Calendar/index.d.ts +1 -2
- package/lib/cjs/shared/Calendar/index.js +3 -5
- package/lib/cjs/shared/EventInfoDetails/index.d.ts +6 -0
- package/lib/cjs/shared/EventInfoDetails/index.js +67 -0
- package/lib/esm/components/BottomNavigation/BottomNavigation.js +14 -5
- package/lib/esm/components/CreateEventButton/CreateEventButton.js +5 -6
- package/lib/esm/components/EventInfoWidget/EventInfoWidget.d.ts +24 -0
- package/lib/esm/components/EventInfoWidget/EventInfoWidget.js +71 -0
- package/lib/esm/components/EventInfoWidget/constants.d.ts +1 -0
- package/lib/esm/components/EventInfoWidget/constants.js +1 -0
- package/lib/esm/components/EventInfoWidget/index.d.ts +3 -0
- package/lib/esm/components/EventInfoWidget/index.js +3 -0
- package/lib/esm/components/EventInviteButton/EventInviteButton.js +11 -11
- package/lib/esm/components/Events/Events.d.ts +1 -1
- package/lib/esm/components/Events/Events.js +10 -10
- package/lib/esm/components/NavigationToolbar/NavigationToolbar.d.ts +2 -0
- package/lib/esm/components/NavigationToolbar/NavigationToolbar.js +9 -1
- package/lib/esm/components/NavigationToolbarMobile/NavigationToolbarMobile.js +13 -3
- package/lib/esm/components/User/User.d.ts +2 -1
- package/lib/esm/components/User/User.js +9 -9
- package/lib/esm/index.d.ts +104 -103
- package/lib/esm/index.js +109 -108
- package/lib/esm/shared/Bullet/index.js +0 -1
- package/lib/esm/shared/Calendar/index.d.ts +1 -2
- package/lib/esm/shared/Calendar/index.js +0 -1
- package/lib/esm/shared/EventInfoDetails/index.d.ts +6 -0
- package/lib/esm/shared/EventInfoDetails/index.js +64 -0
- package/lib/umd/84.js +2 -0
- package/lib/umd/react-ui.js +1 -1
- package/package.json +8 -7
- package/lib/umd/204.js +0 -2
- /package/lib/umd/{204.js.LICENSE.txt → 84.js.LICENSE.txt} +0 -0
package/lib/cjs/index.d.ts
CHANGED
|
@@ -1,158 +1,159 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Components
|
|
3
3
|
*/
|
|
4
|
+
import AccountChangeMailValidation, { AccountChangeMailValidationProps } from './components/AccountChangeMailValidation';
|
|
4
5
|
import AccountDataPortability, { AccountDataPortabilityProps } from './components/AccountDataPortability';
|
|
5
6
|
import AccountDataPortabilityButton, { AccountDataPortabilityButtonProps } from './components/AccountDataPortabilityButton';
|
|
6
7
|
import AccountDelete, { AccountDeleteProps } from './components/AccountDelete';
|
|
7
8
|
import AccountDeleteButton, { AccountDeleteButtonProps } from './components/AccountDeleteButton';
|
|
8
|
-
import
|
|
9
|
-
import
|
|
10
|
-
import
|
|
11
|
-
import NavigationMenuIconButton, { NavigationMenuContent, NavigationMenuIconButtonProps, NavigationMenuHeader } from './components/NavigationMenuIconButton';
|
|
9
|
+
import AccountRecover, { AccountRecoverProps } from './components/AccountRecover';
|
|
10
|
+
import AccountReset, { AccountResetProps } from './components/AccountReset';
|
|
11
|
+
import AccountVerify, { AccountVerifyProps } from './components/AccountVerify';
|
|
12
12
|
import BottomNavigation, { BottomNavigationProps } from './components/BottomNavigation';
|
|
13
13
|
import BroadcastMessages, { BroadcastMessagesProps, BroadcastMessagesSkeleton } from './components/BroadcastMessages';
|
|
14
|
+
import Categories, { CategoriesProps, CategoriesSkeleton, CategoriesSkeletonProps } from './components/Categories';
|
|
15
|
+
import CategoriesPopularWidget, { CategoriesPopularWidgetSkeleton } from './components/CategoriesPopularWidget';
|
|
16
|
+
import CategoriesSuggestionWidget, { CategoriesSuggestionWidgetProps, CategoriesSuggestionWidgetSkeleton } from './components/CategoriesSuggestionWidget';
|
|
14
17
|
import Category, { CategoryProps, CategorySkeleton } from './components/Category';
|
|
15
18
|
import CategoryAutocomplete, { CategoryAutocompleteProps } from './components/CategoryAutocomplete';
|
|
19
|
+
import CategoryFollowButton, { CategoryFollowButtonProps } from './components/CategoryFollowButton';
|
|
16
20
|
import CategoryFollowersButton, { CategoryFollowersButtonProps } from './components/CategoryFollowersButton';
|
|
17
21
|
import CategoryHeader, { CategoryHeaderProps, CategoryHeaderSkeleton } from './components/CategoryHeader';
|
|
18
|
-
import
|
|
19
|
-
import
|
|
20
|
-
import CategoriesPopularWidget, { CategoriesPopularWidgetSkeleton } from './components/CategoriesPopularWidget';
|
|
21
|
-
import CategoriesSuggestionWidget, { CategoriesSuggestionWidgetProps, CategoriesSuggestionWidgetSkeleton } from './components/CategoriesSuggestionWidget';
|
|
22
|
+
import CategoryTrendingFeedWidget, { CategoryTrendingFeedWidgetProps, CategoryTrendingFeedWidgetSkeleton } from './components/CategoryTrendingFeedWidget';
|
|
23
|
+
import CategoryTrendingUsersWidget, { CategoryTrendingPeopleWidgetSkeleton, CategoryTrendingUsersWidgetProps } from './components/CategoryTrendingUsersWidget';
|
|
22
24
|
import ChangeCover, { ChangeCoverProps } from './components/ChangeCover';
|
|
25
|
+
import ChangeGroupCover, { ChangeGroupCoverProps } from './components/ChangeGroupCover';
|
|
26
|
+
import ChangeGroupPicture, { ChangeGroupPictureProps } from './components/ChangeGroupPicture';
|
|
23
27
|
import ChangePicture, { ChangePictureProps } from './components/ChangePicture';
|
|
24
|
-
import
|
|
28
|
+
import CommentObject, { CommentObjectProps, CommentObjectSkeleton } from './components/CommentObject';
|
|
29
|
+
import { default as CommentObjectReply, CommentObjectReplyProps, default as ReplyComment } from './components/CommentObjectReply';
|
|
30
|
+
import CommentsFeedObject, { CommentsFeedObjectProps, CommentsFeedObjectSkeleton } from './components/CommentsFeedObject';
|
|
31
|
+
import CommentsObject, { CommentsObjectProps, CommentsObjectSkeleton } from './components/CommentsObject';
|
|
25
32
|
import Composer, { ComposerProps } from './components/Composer';
|
|
26
33
|
import ComposerIconButton, { ComposerIconButtonProps } from './components/ComposerIconButton';
|
|
34
|
+
import ConnectionUserButton from './components/ConnectionUserButton';
|
|
35
|
+
import ConsentSolution, { ConsentSolutionProps, ConsentSolutionSkeleton } from './components/ConsentSolution';
|
|
36
|
+
import ConsentSolutionButton, { ConsentSolutionButtonProps } from './components/ConsentSolutionButton';
|
|
37
|
+
import CreateEventButton, { CreateEventButtonProps } from './components/CreateEventButton';
|
|
38
|
+
import CreateGroupButton, { CreateGroupButtonProps } from './components/CreateGroupButton';
|
|
39
|
+
import CustomAdv, { CustomAdvProps, CustomAdvSkeleton } from './components/CustomAdv';
|
|
40
|
+
import EditEventButton, { EditEventButtonProps } from './components/EditEventButton';
|
|
41
|
+
import EditGroupButton, { EditGroupButtonProps } from './components/EditGroupButton';
|
|
27
42
|
import Editor, { EditorProps, EditorSkeleton } from './components/Editor';
|
|
28
|
-
import
|
|
43
|
+
import Event, { EventProps, EventSkeleton, EventSkeletonProps } from './components/Event';
|
|
44
|
+
import EventHeader, { EventHeaderProps, EventHeaderSkeleton } from './components/EventHeader';
|
|
45
|
+
import EventInfoWidget, { EventInfoWidgetProps } from './components/EventInfoWidget';
|
|
46
|
+
import EventInviteButton, { EventInviteButtonProps } from './components/EventInviteButton';
|
|
47
|
+
import EventLocationWidget, { EventLocationWidgetProps, EventLocationWidgetSkeleton } from './components/EventLocationWidget';
|
|
48
|
+
import Events, { EventsProps, EventsSkeleton, EventsSkeletonProps } from './components/Events';
|
|
29
49
|
import Feed, { FeedProps, FeedRef, FeedSidebarProps, FeedSkeleton } from './components/Feed';
|
|
30
50
|
import FeedObject, { FeedObjectProps, FeedObjectSkeleton } from './components/FeedObject';
|
|
31
51
|
import FeedUpdatesWidget, { FeedUpdatesWidgetProps, FeedUpdatesWidgetSkeleton } from './components/FeedUpdatesWidget';
|
|
32
|
-
import CategoryFollowButton, { CategoryFollowButtonProps } from './components/CategoryFollowButton';
|
|
33
52
|
import FollowUserButton, { FollowUserButtonProps } from './components/FollowUserButton';
|
|
34
|
-
import
|
|
53
|
+
import Footer, { FooterProps, FooterSkeleton } from './components/Footer';
|
|
54
|
+
import FriendshipUserButton, { FriendshipButtonProps } from './components/FriendshipUserButton';
|
|
55
|
+
import Group, { GroupProps, GroupSkeleton } from './components/Group';
|
|
56
|
+
import GroupForm, { GroupFormProps } from './components/GroupForm';
|
|
57
|
+
import GroupHeader, { GroupHeaderProps, GroupHeaderSkeleton } from './components/GroupHeader';
|
|
58
|
+
import GroupInfoWidget, { GroupInfoWidgetProps, GroupInfoWidgetSkeleton } from './components/GroupInfoWidget';
|
|
59
|
+
import GroupInviteButton, { GroupInviteButtonProps } from './components/GroupInviteButton';
|
|
60
|
+
import GroupInvitedWidget, { GroupInvitedWidgetProps, GroupInvitedWidgetSkeleton } from './components/GroupInvitedWidget';
|
|
61
|
+
import GroupMembersButton, { GroupMembersButtonProps } from './components/GroupMembersButton';
|
|
62
|
+
import GroupMembersWidget, { GroupMembersWidgetProps, GroupMembersWidgetSkeleton } from './components/GroupMembersWidget';
|
|
63
|
+
import GroupRequestsWidget, { GroupRequestsWidgetProps, GroupRequestsWidgetSkeleton } from './components/GroupRequestsWidget';
|
|
64
|
+
import Groups, { GroupsProps, GroupsSkeleton } from './components/Groups';
|
|
65
|
+
import GroupSettingsIconButton, { GroupSettingsIconButtonProps } from './components/GroupSettingsIconButton';
|
|
66
|
+
import GroupSubscribeButton, { GroupSubscribeButtonProps } from './components/GroupSubscribeButton';
|
|
67
|
+
import Incubator, { IncubatorProps } from './components/Incubator';
|
|
68
|
+
import IncubatorDetail, { IncubatorDetailProps } from './components/IncubatorDetail';
|
|
69
|
+
import IncubatorListWidget, { IncubatorListWidgetProps } from './components/IncubatorListWidget';
|
|
70
|
+
import IncubatorSubscribeButton, { IncubatorSubscribeButtonProps } from './components/IncubatorSubscribeButton';
|
|
71
|
+
import IncubatorSuggestionWidget, { IncubatorSuggestionWidgetProps } from './components/IncubatorSuggestionWidget';
|
|
35
72
|
import InlineComposerWidget, { InlineComposerWidgetProps, InlineComposerWidgetSkeleton } from './components/InlineComposerWidget';
|
|
36
|
-
import UserSuggestionWidget, { UserSuggestionWidgetProps, UserSuggestionWidgetSkeleton } from './components/UserSuggestionWidget';
|
|
37
|
-
import PlatformWidget, { PlatformWidgetProps, PlatformWidgetSkeleton } from './components/PlatformWidget';
|
|
38
|
-
import PrivateMessageSnippets, { PrivateMessageSnippetsProps, PrivateMessageSnippetsSkeleton } from './components/PrivateMessageSnippets';
|
|
39
73
|
import LocationAutocomplete, { LocationAutocompleteProps } from './components/LocationAutocomplete';
|
|
40
74
|
import LoyaltyProgramWidget, { LoyaltyProgramWidgetProps, LoyaltyProgramWidgetSkeleton } from './components/LoyaltyProgramWidget';
|
|
41
|
-
import
|
|
42
|
-
import
|
|
75
|
+
import NavigationMenuIconButton, { NavigationMenuContent, NavigationMenuHeader, NavigationMenuIconButtonProps } from './components/NavigationMenuIconButton';
|
|
76
|
+
import DefaultDrawerContent, { DefaultDrawerContentProps } from './components/NavigationMenuIconButton/DefaultDrawerContent';
|
|
77
|
+
import DefaultHeaderContent, { DefaultHeaderContentProps } from './components/NavigationMenuIconButton/DefaultHeaderContent';
|
|
78
|
+
import NavigationSettingsIconButton, { NavigationSettingsIconButtonProps, NavigationSettingsItem } from './components/NavigationSettingsIconButton';
|
|
79
|
+
import NavigationToolbar, { NavigationToolbarProps, NavigationToolbarSkeleton } from './components/NavigationToolbar';
|
|
80
|
+
import NavigationToolbarMobile, { NavigationToolbarMobileProps, NavigationToolbarMobileSkeleton } from './components/NavigationToolbarMobile';
|
|
81
|
+
import Notification, { NotificationProps, NotificationSkeleton } from './components/Notification';
|
|
82
|
+
import PlatformWidget, { PlatformWidgetProps, PlatformWidgetSkeleton } from './components/PlatformWidget';
|
|
83
|
+
import PollSuggestionWidget, { PollSuggestionWidgetProps } from './components/PollSuggestionWidget';
|
|
84
|
+
import PrivateMessageComponent, { PrivateMessageComponentProps, PrivateMessageComponentSkeleton } from './components/PrivateMessageComponent';
|
|
85
|
+
import PrivateMessageEditor, { PrivateMessageEditorProps, PrivateMessageEditorSkeleton } from './components/PrivateMessageEditor';
|
|
86
|
+
import PrivateMessageSettingsIconButton, { PrivateMessageSettingsIconButtonProps } from './components/PrivateMessageSettingsIconButton';
|
|
87
|
+
import PrivateMessageSnippetItem, { PrivateMessageSnippetItemProps, PrivateMessageSnippetItemSkeleton } from './components/PrivateMessageSnippetItem';
|
|
88
|
+
import PrivateMessageSnippets, { PrivateMessageSnippetsProps, PrivateMessageSnippetsSkeleton } from './components/PrivateMessageSnippets';
|
|
89
|
+
import PrivateMessageThread, { PrivateMessageThreadProps, PrivateMessageThreadSkeleton } from './components/PrivateMessageThread';
|
|
90
|
+
import PrivateMessageThreadItem, { PrivateMessageThreadItemProps, PrivateMessageThreadItemSkeleton } from './components/PrivateMessageThreadItem';
|
|
91
|
+
import RelatedFeedObjectsWidget, { RelatedFeedObjectsWidgetSkeleton, RelatedFeedObjectWidgetProps } from './components/RelatedFeedObjectsWidget';
|
|
92
|
+
import SearchAutocomplete, { SearchAutocompleteProps } from './components/SearchAutocomplete';
|
|
93
|
+
import SearchDialog, { SearchDialogProps } from './components/SearchDialog';
|
|
94
|
+
import { AvatarGroupSkeleton, GenericSkeleton } from './components/Skeleton';
|
|
95
|
+
import SnippetNotifications, { SnippetNotificationsProps, SnippetNotificationsSkeleton } from './components/SnippetNotifications';
|
|
96
|
+
import ToastNotifications, { ToastNotificationsProps, ToastNotificationsSkeleton } from './components/ToastNotifications';
|
|
97
|
+
import User, { UserProps, UserSkeleton } from './components/User';
|
|
43
98
|
import UserActionIconButton, { UserActionIconButtonProps } from './components/UserActionIconButton';
|
|
99
|
+
import UserConnectionsRequestsSentWidget, { UserConnectionsRequestsSentWidgetProps, UserConnectionsRequestsSentWidgetSkeleton } from './components/UserConnectionsRequestsSentWidget';
|
|
100
|
+
import UserConnectionsRequestsWidget, { UserConnectionsRequestsWidgetProps, UserConnectionsRequestsWidgetSkeleton } from './components/UserConnectionsRequestsWidget';
|
|
101
|
+
import UserConnectionsWidget, { UserConnectionsWidgetProps, UserConnectionsWidgetSkeleton } from './components/UserConnectionsWidget';
|
|
44
102
|
import UserCounters, { UserCountersProps } from './components/UserCounters';
|
|
45
|
-
import
|
|
46
|
-
import
|
|
103
|
+
import UserFollowedCategoriesWidget, { UserFollowedCategoriesWidgetProps, UserFollowedCategoriesWidgetSkeleton } from './components/UserFollowedCategoriesWidget';
|
|
104
|
+
import UserFollowedUsersWidget, { UserFollowedUsersWidgetProps, UserFollowedUsersWidgetSkeleton } from './components/UserFollowedUsersWidget';
|
|
105
|
+
import UserFollowersWidget, { UserFollowersWidgetProps, UserFollowersWidgetSkeleton } from './components/UserFollowersWidget';
|
|
47
106
|
import UserInfo, { UserInfoProps, UserInfoSkeleton } from './components/UserInfo';
|
|
107
|
+
import UserInfoDialog, { UserInfoDialogProps } from './components/UserInfoDialog';
|
|
48
108
|
import UserProfileBlocked, { UserProfileBlockedProps } from './components/UserProfileBlocked';
|
|
49
109
|
import UserProfileEdit, { UserProfileEditProps, UserProfileEditSectionAccount, UserProfileEditSectionAccountProps, UserProfileEditSectionPublicInfo, UserProfileEditSectionPublicInfoProps, UserProfileEditSectionSettings, UserProfileEditSectionSettingsProps, UserProfileEditSkeleton } from './components/UserProfileEdit';
|
|
50
|
-
import
|
|
110
|
+
import UserProfileHeader, { UserProfileHeaderProps, UserProfileHeaderSkeleton } from './components/UserProfileHeader';
|
|
51
111
|
import UserSocialAssociation, { UserSocialAssociationProps } from './components/UserSocialAssociation';
|
|
52
|
-
import
|
|
53
|
-
import
|
|
54
|
-
import UserConnectionsRequestsWidget, { UserConnectionsRequestsWidgetProps, UserConnectionsRequestsWidgetSkeleton } from './components/UserConnectionsRequestsWidget';
|
|
55
|
-
import UserConnectionsRequestsSentWidget, { UserConnectionsRequestsSentWidgetProps, UserConnectionsRequestsSentWidgetSkeleton } from './components/UserConnectionsRequestsSentWidget';
|
|
56
|
-
import RelatedFeedObjectsWidget, { RelatedFeedObjectsWidgetSkeleton, RelatedFeedObjectWidgetProps } from './components/RelatedFeedObjectsWidget';
|
|
57
|
-
import CommentObject, { CommentObjectProps, CommentObjectSkeleton } from './components/CommentObject';
|
|
58
|
-
import CommentObjectReply from './components/CommentObjectReply';
|
|
59
|
-
import ReplyComment, { CommentObjectReplyProps } from './components/CommentObjectReply';
|
|
60
|
-
import CommentsObject, { CommentsObjectProps, CommentsObjectSkeleton } from './components/CommentsObject';
|
|
61
|
-
import CommentsFeedObject, { CommentsFeedObjectProps, CommentsFeedObjectSkeleton } from './components/CommentsFeedObject';
|
|
62
|
-
import CustomAdv, { CustomAdvProps, CustomAdvSkeleton } from './components/CustomAdv';
|
|
63
|
-
import { AvatarGroupSkeleton, GenericSkeleton } from './components/Skeleton';
|
|
64
|
-
import PrivateMessageSnippetItem, { PrivateMessageSnippetItemProps, PrivateMessageSnippetItemSkeleton } from './components/PrivateMessageSnippetItem';
|
|
65
|
-
import PrivateMessageThreadItem, { PrivateMessageThreadItemProps, PrivateMessageThreadItemSkeleton } from './components/PrivateMessageThreadItem';
|
|
66
|
-
import PrivateMessageEditor, { PrivateMessageEditorProps, PrivateMessageEditorSkeleton } from './components/PrivateMessageEditor';
|
|
67
|
-
import PrivateMessageThread, { PrivateMessageThreadProps, PrivateMessageThreadSkeleton } from './components/PrivateMessageThread';
|
|
68
|
-
import ToastNotifications, { ToastNotificationsProps, ToastNotificationsSkeleton } from './components/ToastNotifications';
|
|
69
|
-
import SnippetNotifications, { SnippetNotificationsProps, SnippetNotificationsSkeleton } from './components/SnippetNotifications';
|
|
70
|
-
import Notification, { NotificationProps, NotificationSkeleton } from './components/Notification';
|
|
71
|
-
import AccountRecover, { AccountRecoverProps } from './components/AccountRecover';
|
|
72
|
-
import AccountReset, { AccountResetProps } from './components/AccountReset';
|
|
73
|
-
import AccountVerify, { AccountVerifyProps } from './components/AccountVerify';
|
|
74
|
-
import AccountChangeMailValidation, { AccountChangeMailValidationProps } from './components/AccountChangeMailValidation';
|
|
75
|
-
import { SCBroadcastMessageTemplateType, SCCommentsOrderBy, SCFeedObjectActivitiesType, SCFeedObjectTemplateType, SCFeedWidgetType, SCMediaChunkType, SCMediaObjectType, SCNotificationObjectTemplateType, SCUserProfileFields, SCUserProfileSettings, SCUserSocialAssociations, VirtualScrollerItemProps, PlatformWidgetActionType } from './types';
|
|
112
|
+
import UserSubscribedGroupsWidget, { UserSubscribedGroupsWidgetProps, UserSubscribedGroupsWidgetSkeleton } from './components/UserSubscribedGroupsWidget';
|
|
113
|
+
import UserSuggestionWidget, { UserSuggestionWidgetProps, UserSuggestionWidgetSkeleton } from './components/UserSuggestionWidget';
|
|
76
114
|
import Widget, { WidgetProps } from './components/Widget';
|
|
115
|
+
import { MEDIA_TYPE_EMBED } from './constants/Media';
|
|
116
|
+
import BaseDialog, { BaseDialogProps } from './shared/BaseDialog';
|
|
117
|
+
import BaseItem, { BaseItemProps } from './shared/BaseItem';
|
|
118
|
+
import Calendar, { CalendarProps } from './shared/Calendar';
|
|
77
119
|
import ConfirmDialog from './shared/ConfirmDialog/ConfirmDialog';
|
|
120
|
+
import EmailTextField from './shared/EmailTextField';
|
|
121
|
+
import EventInfoDetails, { EventInfoDetailsProps } from './shared/EventInfoDetails';
|
|
122
|
+
import HiddenPlaceholder from './shared/HiddenPlaceholder';
|
|
78
123
|
import LanguageSwitcher from './shared/LanguageSwitcher';
|
|
79
|
-
import
|
|
80
|
-
import
|
|
124
|
+
import Lightbox from './shared/Lightbox';
|
|
125
|
+
import { EditMediaProps, File, Link, Share } from './shared/Media';
|
|
81
126
|
import MediaChunkUploader, { MediaChunkUploaderProps } from './shared/MediaChunkUploader';
|
|
82
|
-
import { File, EditMediaProps, Link, Share } from './shared/Media';
|
|
83
|
-
import HiddenPlaceholder from './shared/HiddenPlaceholder';
|
|
84
|
-
import UrlTextField from './shared/UrlTextField';
|
|
85
|
-
import UsernameTextField from './shared/UsernameTextField';
|
|
86
|
-
import EmailTextField from './shared/EmailTextField';
|
|
87
127
|
import PasswordTextField from './shared/PasswordTextField';
|
|
88
128
|
import PhoneTextField from './shared/PhoneTextField';
|
|
89
129
|
import StickyBox, { StickyBoxComponent, StickyBoxProps, useStickyBox, UseStickyBoxProps } from './shared/StickyBox';
|
|
90
130
|
import TagChip, { TagChipProps } from './shared/TagChip';
|
|
91
|
-
import
|
|
131
|
+
import UrlTextField from './shared/UrlTextField';
|
|
92
132
|
import UserAvatar, { UserAvatarProps } from './shared/UserAvatar';
|
|
93
|
-
import
|
|
94
|
-
import
|
|
95
|
-
import {
|
|
96
|
-
import PollSuggestionWidget, { PollSuggestionWidgetProps } from './components/PollSuggestionWidget';
|
|
97
|
-
import ConsentSolution, { ConsentSolutionProps, ConsentSolutionSkeleton } from './components/ConsentSolution';
|
|
98
|
-
import ConsentSolutionButton, { ConsentSolutionButtonProps } from './components/ConsentSolutionButton';
|
|
99
|
-
import Incubator, { IncubatorProps } from './components/Incubator';
|
|
100
|
-
import IncubatorSubscribeButton, { IncubatorSubscribeButtonProps } from './components/IncubatorSubscribeButton';
|
|
101
|
-
import IncubatorListWidget, { IncubatorListWidgetProps } from './components/IncubatorListWidget';
|
|
102
|
-
import IncubatorDetail, { IncubatorDetailProps } from './components/IncubatorDetail';
|
|
103
|
-
import IncubatorSuggestionWidget, { IncubatorSuggestionWidgetProps } from './components/IncubatorSuggestionWidget';
|
|
104
|
-
import Footer, { FooterProps, FooterSkeleton } from './components/Footer';
|
|
105
|
-
import SearchAutocomplete, { SearchAutocompleteProps } from './components/SearchAutocomplete';
|
|
106
|
-
import SearchDialog, { SearchDialogProps } from './components/SearchDialog';
|
|
107
|
-
import PrivateMessageSettingsIconButton, { PrivateMessageSettingsIconButtonProps } from './components/PrivateMessageSettingsIconButton';
|
|
108
|
-
import PrivateMessageComponent, { PrivateMessageComponentProps, PrivateMessageComponentSkeleton } from './components/PrivateMessageComponent';
|
|
109
|
-
import ChangeGroupCover, { ChangeGroupCoverProps } from './components/ChangeGroupCover';
|
|
110
|
-
import ChangeGroupPicture, { ChangeGroupPictureProps } from './components/ChangeGroupPicture';
|
|
111
|
-
import GroupHeader, { GroupHeaderProps, GroupHeaderSkeleton } from './components/GroupHeader';
|
|
112
|
-
import GroupMembersButton, { GroupMembersButtonProps } from './components/GroupMembersButton';
|
|
113
|
-
import CreateGroupButton, { CreateGroupButtonProps } from './components/CreateGroupButton';
|
|
114
|
-
import EditGroupButton, { EditGroupButtonProps } from './components/EditGroupButton';
|
|
115
|
-
import GroupInviteButton, { GroupInviteButtonProps } from './components/GroupInviteButton';
|
|
116
|
-
import GroupInfoWidget, { GroupInfoWidgetProps, GroupInfoWidgetSkeleton } from './components/GroupInfoWidget';
|
|
117
|
-
import Group, { GroupProps, GroupSkeleton } from './components/Group';
|
|
118
|
-
import GroupSubscribeButton, { GroupSubscribeButtonProps } from './components/GroupSubscribeButton';
|
|
119
|
-
import GroupMembersWidget, { GroupMembersWidgetProps, GroupMembersWidgetSkeleton } from './components/GroupMembersWidget';
|
|
120
|
-
import GroupRequestsWidget, { GroupRequestsWidgetProps, GroupRequestsWidgetSkeleton } from './components/GroupRequestsWidget';
|
|
121
|
-
import Groups, { GroupsProps, GroupsSkeleton } from './components/Groups';
|
|
122
|
-
import GroupForm, { GroupFormProps } from './components/GroupForm';
|
|
123
|
-
import GroupSettingsIconButton, { GroupSettingsIconButtonProps } from './components/GroupSettingsIconButton';
|
|
124
|
-
import GroupInvitedWidget, { GroupInvitedWidgetProps, GroupInvitedWidgetSkeleton } from './components/GroupInvitedWidget';
|
|
125
|
-
import UserSubscribedGroupsWidget, { UserSubscribedGroupsWidgetProps, UserSubscribedGroupsWidgetSkeleton } from './components/UserSubscribedGroupsWidget';
|
|
126
|
-
import DefaultDrawerContent, { DefaultDrawerContentProps } from './components/NavigationMenuIconButton/DefaultDrawerContent';
|
|
127
|
-
import DefaultHeaderContent, { DefaultHeaderContentProps } from './components/NavigationMenuIconButton/DefaultHeaderContent';
|
|
128
|
-
import CreateEventButton, { CreateEventButtonProps } from './components/CreateEventButton';
|
|
129
|
-
import EventLocationWidget, { EventLocationWidgetProps, EventLocationWidgetSkeleton } from './components/EventLocationWidget';
|
|
130
|
-
import Event, { EventProps, EventSkeleton, EventSkeletonProps } from './components/Event';
|
|
131
|
-
import Events, { EventsProps, EventsSkeleton, EventsSkeletonProps } from './components/Events';
|
|
132
|
-
import EventInviteButton, { EventInviteButtonProps } from './components/EventInviteButton';
|
|
133
|
-
import EventHeader, { EventHeaderProps, EventHeaderSkeleton } from './components/EventHeader';
|
|
134
|
-
import EditEventButton, { EditEventButtonProps } from './components/EditEventButton';
|
|
133
|
+
import UserDeletedSnackBar, { UserDeletedSnackBarProps } from './shared/UserDeletedSnackBar';
|
|
134
|
+
import UsernameTextField from './shared/UsernameTextField';
|
|
135
|
+
import { PlatformWidgetActionType, SCBroadcastMessageTemplateType, SCCommentsOrderBy, SCFeedObjectActivitiesType, SCFeedObjectTemplateType, SCFeedWidgetType, SCMediaChunkType, SCMediaObjectType, SCNotificationObjectTemplateType, SCUserProfileFields, SCUserProfileSettings, SCUserSocialAssociations, VirtualScrollerItemProps } from './types';
|
|
135
136
|
/**
|
|
136
137
|
* Constants
|
|
137
138
|
*/
|
|
138
139
|
import { DEFAULT_WIDGETS_NUMBER } from './constants/Feed';
|
|
139
|
-
import { DEFAULT_PAGINATION_LIMIT, DEFAULT_PAGINATION_OFFSET, DEFAULT_PAGINATION_QUERY_PARAM_NAME } from './constants/Pagination';
|
|
140
|
-
import { FACEBOOK_SHARE, LINKEDIN_SHARE, X_SHARE } from './constants/SocialShare';
|
|
141
140
|
import { DEFAULT_PRELOAD_OFFSET_VIEWPORT, MAX_PRELOAD_OFFSET_VIEWPORT, MIN_PRELOAD_OFFSET_VIEWPORT } from './constants/LazyLoad';
|
|
142
141
|
import { LEGAL_POLICIES } from './constants/LegalPolicies';
|
|
142
|
+
import { DEFAULT_PAGINATION_LIMIT, DEFAULT_PAGINATION_OFFSET, DEFAULT_PAGINATION_QUERY_PARAM_NAME } from './constants/Pagination';
|
|
143
|
+
import { FACEBOOK_SHARE, LINKEDIN_SHARE, X_SHARE } from './constants/SocialShare';
|
|
143
144
|
import { DEFAULT_FIELDS } from './constants/UserProfile';
|
|
144
145
|
/**
|
|
145
146
|
* Utilities
|
|
146
147
|
*/
|
|
147
|
-
import
|
|
148
|
-
import MetadataField, { MetadataFieldProps } from './shared/MetadataField';
|
|
149
|
-
import InfiniteScroll from './shared/InfiniteScroll';
|
|
148
|
+
import FeedObjectMediaPreview, { FeedObjectMediaPreviewProps } from './components/FeedObjectMediaPreview';
|
|
150
149
|
import CentralProgress from './shared/CentralProgress';
|
|
151
|
-
import
|
|
150
|
+
import InfiniteScroll from './shared/InfiniteScroll';
|
|
151
|
+
import MetadataField, { MetadataFieldProps } from './shared/MetadataField';
|
|
152
|
+
import * as ContributionUtils from './utils/contribution';
|
|
152
153
|
import { getUnseenNotification, getUnseenNotificationCounter } from './utils/feed';
|
|
153
|
-
import * as MessageUploaderUtils from './utils/thumbnailCoverter';
|
|
154
154
|
import { getRelativeTime } from './utils/formatRelativeTime';
|
|
155
|
-
import
|
|
155
|
+
import { bytesToSize } from './utils/sizeCoverter';
|
|
156
|
+
import * as MessageUploaderUtils from './utils/thumbnailCoverter';
|
|
156
157
|
/**
|
|
157
158
|
* Import Assets
|
|
158
159
|
*/
|
|
@@ -160,4 +161,4 @@ import LogoSelfCommunity from './assets/logo';
|
|
|
160
161
|
/**
|
|
161
162
|
* List all exports
|
|
162
163
|
*/
|
|
163
|
-
export {
|
|
164
|
+
export { AccountChangeMailValidation, AccountChangeMailValidationProps, AccountDataPortability, AccountDataPortabilityButton, AccountDataPortabilityButtonProps, AccountDataPortabilityProps, AccountDelete, AccountDeleteButton, AccountDeleteButtonProps, AccountDeleteProps, AccountRecover, AccountRecoverProps, AccountReset, AccountResetProps, AccountVerify, AccountVerifyProps, AvatarGroupSkeleton, BaseDialog, BaseDialogProps, BaseItem, BaseItemProps, BottomNavigation, BottomNavigationProps, BroadcastMessages, BroadcastMessagesProps, BroadcastMessagesSkeleton, bytesToSize, Calendar, CalendarProps, Categories, CategoriesPopularWidget, CategoriesPopularWidgetSkeleton, CategoriesProps, CategoriesSkeleton, CategoriesSkeletonProps, CategoriesSuggestionWidget, CategoriesSuggestionWidgetProps, CategoriesSuggestionWidgetSkeleton, Category, CategoryAutocomplete, CategoryAutocompleteProps, CategoryFollowButton, CategoryFollowButtonProps, CategoryFollowersButton, CategoryFollowersButtonProps, CategoryHeader, CategoryHeaderProps, CategoryHeaderSkeleton, CategoryProps, CategorySkeleton, CategoryTrendingFeedWidget, CategoryTrendingFeedWidgetProps, CategoryTrendingFeedWidgetSkeleton, CategoryTrendingPeopleWidgetSkeleton, CategoryTrendingUsersWidget, CategoryTrendingUsersWidgetProps, CentralProgress, ChangeCover, ChangeCoverProps, ChangeGroupCover, ChangeGroupCoverProps, ChangeGroupPicture, ChangeGroupPictureProps, ChangePicture, ChangePictureProps, CommentObject, CommentObjectProps, CommentObjectReply, CommentObjectReplyProps, CommentObjectSkeleton, CommentsFeedObject, CommentsFeedObjectProps, CommentsFeedObjectSkeleton, CommentsObject, CommentsObjectProps, CommentsObjectSkeleton, Composer, ComposerIconButton, ComposerIconButtonProps, ComposerProps, ConfirmDialog, ConnectionUserButton, ConsentSolution, ConsentSolutionButton, ConsentSolutionButtonProps, ConsentSolutionProps, ConsentSolutionSkeleton, ContributionUtils, CreateEventButton, CreateEventButtonProps, CreateGroupButton, CreateGroupButtonProps, CustomAdv, CustomAdvProps, CustomAdvSkeleton, DEFAULT_FIELDS, DEFAULT_PAGINATION_LIMIT, DEFAULT_PAGINATION_OFFSET, DEFAULT_PAGINATION_QUERY_PARAM_NAME, DEFAULT_PRELOAD_OFFSET_VIEWPORT, DEFAULT_WIDGETS_NUMBER, DefaultDrawerContent, DefaultDrawerContentProps, DefaultHeaderContent, DefaultHeaderContentProps, EditEventButton, EditEventButtonProps, EditGroupButton, EditGroupButtonProps, EditMediaProps, Editor, EditorProps, EditorSkeleton, EmailTextField, Event, EventHeader, EventHeaderProps, EventHeaderSkeleton, EventInfoDetails, EventInfoDetailsProps, EventInfoWidget, EventInfoWidgetProps, EventInviteButton, EventInviteButtonProps, EventLocationWidget, EventLocationWidgetProps, EventLocationWidgetSkeleton, EventProps, Events, EventSkeleton, EventSkeletonProps, EventsProps, EventsSkeleton, EventsSkeletonProps, FACEBOOK_SHARE, Feed, FeedObject, FeedObjectMediaPreview, FeedObjectMediaPreviewProps, FeedObjectProps, FeedObjectSkeleton, FeedProps, FeedRef, FeedSidebarProps, FeedSkeleton, FeedUpdatesWidget, FeedUpdatesWidgetProps, FeedUpdatesWidgetSkeleton, File, FollowUserButton, FollowUserButtonProps, Footer, FooterProps, FooterSkeleton, FriendshipButtonProps, FriendshipUserButton, GenericSkeleton, getRelativeTime, getUnseenNotification, getUnseenNotificationCounter, Group, GroupForm, GroupFormProps, GroupHeader, GroupHeaderProps, GroupHeaderSkeleton, GroupInfoWidget, GroupInfoWidgetProps, GroupInfoWidgetSkeleton, GroupInviteButton, GroupInviteButtonProps, GroupInvitedWidget, GroupInvitedWidgetProps, GroupInvitedWidgetSkeleton, GroupMembersButton, GroupMembersButtonProps, GroupMembersWidget, GroupMembersWidgetProps, GroupMembersWidgetSkeleton, GroupProps, GroupRequestsWidget, GroupRequestsWidgetProps, GroupRequestsWidgetSkeleton, Groups, GroupSettingsIconButton, GroupSettingsIconButtonProps, GroupSkeleton, GroupsProps, GroupsSkeleton, GroupSubscribeButton, GroupSubscribeButtonProps, HiddenPlaceholder, Incubator, IncubatorDetail, IncubatorDetailProps, IncubatorListWidget, IncubatorListWidgetProps, IncubatorProps, IncubatorSubscribeButton, IncubatorSubscribeButtonProps, IncubatorSuggestionWidget, IncubatorSuggestionWidgetProps, InfiniteScroll, InlineComposerWidget, InlineComposerWidgetProps, InlineComposerWidgetSkeleton, LanguageSwitcher, LEGAL_POLICIES, Lightbox, Link, LINKEDIN_SHARE, LocationAutocomplete, LocationAutocompleteProps, LogoSelfCommunity, LoyaltyProgramWidget, LoyaltyProgramWidgetProps, LoyaltyProgramWidgetSkeleton, MAX_PRELOAD_OFFSET_VIEWPORT, MEDIA_TYPE_EMBED, MediaChunkUploader, MediaChunkUploaderProps, MessageUploaderUtils, MetadataField, MetadataFieldProps, MIN_PRELOAD_OFFSET_VIEWPORT, NavigationMenuContent, NavigationMenuHeader, NavigationMenuIconButton, NavigationMenuIconButtonProps, NavigationSettingsIconButton, NavigationSettingsIconButtonProps, NavigationSettingsItem, NavigationToolbar, NavigationToolbarMobile, NavigationToolbarMobileProps, NavigationToolbarMobileSkeleton, NavigationToolbarProps, NavigationToolbarSkeleton, Notification, NotificationProps, NotificationSkeleton, PasswordTextField, PhoneTextField, PlatformWidget, PlatformWidgetActionType, PlatformWidgetProps, PlatformWidgetSkeleton, PollSuggestionWidget, PollSuggestionWidgetProps, PrivateMessageComponent, PrivateMessageComponentProps, PrivateMessageComponentSkeleton, PrivateMessageEditor, PrivateMessageEditorProps, PrivateMessageEditorSkeleton, PrivateMessageSettingsIconButton, PrivateMessageSettingsIconButtonProps, PrivateMessageSnippetItem, PrivateMessageSnippetItemProps, PrivateMessageSnippetItemSkeleton, PrivateMessageSnippets, PrivateMessageSnippetsProps, PrivateMessageSnippetsSkeleton, PrivateMessageThread, PrivateMessageThreadItem, PrivateMessageThreadItemProps, PrivateMessageThreadItemSkeleton, PrivateMessageThreadProps, PrivateMessageThreadSkeleton, RelatedFeedObjectsWidget, RelatedFeedObjectsWidgetSkeleton, RelatedFeedObjectWidgetProps, ReplyComment, SCBroadcastMessageTemplateType, SCCommentsOrderBy, SCFeedObjectActivitiesType, SCFeedObjectTemplateType, SCFeedWidgetType, SCMediaChunkType, SCMediaObjectType, SCNotificationObjectTemplateType, SCUserProfileFields, SCUserProfileSettings, SCUserSocialAssociations, SearchAutocomplete, SearchAutocompleteProps, SearchDialog, SearchDialogProps, Share, SnippetNotifications, SnippetNotificationsProps, SnippetNotificationsSkeleton, StickyBox, StickyBoxComponent, StickyBoxProps, TagChip, TagChipProps, ToastNotifications, ToastNotificationsProps, ToastNotificationsSkeleton, UrlTextField, User, UserActionIconButton, UserActionIconButtonProps, UserAvatar, UserAvatarProps, UserConnectionsRequestsSentWidget, UserConnectionsRequestsSentWidgetProps, UserConnectionsRequestsSentWidgetSkeleton, UserConnectionsRequestsWidget, UserConnectionsRequestsWidgetProps, UserConnectionsRequestsWidgetSkeleton, UserConnectionsWidget, UserConnectionsWidgetProps, UserConnectionsWidgetSkeleton, UserCounters, UserCountersProps, UserDeletedSnackBar, UserDeletedSnackBarProps, UserFollowedCategoriesWidget, UserFollowedCategoriesWidgetProps, UserFollowedCategoriesWidgetSkeleton, UserFollowedUsersWidget, UserFollowedUsersWidgetProps, UserFollowedUsersWidgetSkeleton, UserFollowersWidget, UserFollowersWidgetProps, UserFollowersWidgetSkeleton, UserInfo, UserInfoDialog, UserInfoDialogProps, UserInfoProps, UserInfoSkeleton, UsernameTextField, UserProfileBlocked, UserProfileBlockedProps, UserProfileEdit, UserProfileEditProps, UserProfileEditSectionAccount, UserProfileEditSectionAccountProps, UserProfileEditSectionPublicInfo, UserProfileEditSectionPublicInfoProps, UserProfileEditSectionSettings, UserProfileEditSectionSettingsProps, UserProfileEditSkeleton, UserProfileHeader, UserProfileHeaderProps, UserProfileHeaderSkeleton, UserProps, UserSkeleton, UserSocialAssociation, UserSocialAssociationProps, UserSubscribedGroupsWidget, UserSubscribedGroupsWidgetProps, UserSubscribedGroupsWidgetSkeleton, UserSuggestionWidget, UserSuggestionWidgetProps, UserSuggestionWidgetSkeleton, useStickyBox, UseStickyBoxProps, VirtualScrollerItemProps, Widget, WidgetProps, X_SHARE };
|