@weavy/uikit-react 24.0.1 → 24.0.3
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/changelog.md +13 -0
- package/dist/types/blocks/WyChat.d.ts +0 -1
- package/dist/types/blocks/WyComments.d.ts +0 -1
- package/dist/types/blocks/WyContext.d.ts +0 -1
- package/dist/types/blocks/WyFiles.d.ts +0 -1
- package/dist/types/blocks/WyMessenger.d.ts +0 -1
- package/dist/types/blocks/WyNotificationToasts.d.ts +0 -1
- package/dist/types/blocks/WyNotifications.d.ts +0 -1
- package/dist/types/blocks/WyPosts.d.ts +0 -1
- package/dist/types/components/WyAttachment.d.ts +0 -1
- package/dist/types/components/WyAvatar.d.ts +0 -1
- package/dist/types/components/WyBadge.d.ts +0 -1
- package/dist/types/components/WyBlobUpload.d.ts +0 -1
- package/dist/types/components/WyButton.d.ts +0 -1
- package/dist/types/components/WyCloudFiles.d.ts +0 -1
- package/dist/types/components/WyComment.d.ts +0 -1
- package/dist/types/components/WyConversation.d.ts +0 -1
- package/dist/types/components/WyConversationList.d.ts +0 -1
- package/dist/types/components/WyDropdown.d.ts +0 -1
- package/dist/types/components/WyEditor.d.ts +0 -1
- package/dist/types/components/WyEmbed.d.ts +0 -1
- package/dist/types/components/WyEmpty.d.ts +0 -1
- package/dist/types/components/WyFileItem.d.ts +0 -1
- package/dist/types/components/WyFileMenu.d.ts +0 -1
- package/dist/types/components/WyFileVersions.d.ts +0 -1
- package/dist/types/components/WyFilesAppbar.d.ts +0 -1
- package/dist/types/components/WyFilesList.d.ts +0 -1
- package/dist/types/components/WyIcon.d.ts +0 -1
- package/dist/types/components/WyImageGrid.d.ts +0 -1
- package/dist/types/components/WyMeetingCard.d.ts +0 -1
- package/dist/types/components/WyMessage.d.ts +0 -1
- package/dist/types/components/WyNotification.d.ts +0 -1
- package/dist/types/components/WyOverlay.d.ts +0 -1
- package/dist/types/components/WyPdfViewer.d.ts +0 -1
- package/dist/types/components/WyPoll.d.ts +0 -1
- package/dist/types/components/WyPost.d.ts +0 -1
- package/dist/types/components/WyPresence.d.ts +0 -1
- package/dist/types/components/WyPreview.d.ts +0 -1
- package/dist/types/components/WyReactions.d.ts +0 -1
- package/dist/types/components/WySheet.d.ts +0 -1
- package/dist/types/components/WySkeleton.d.ts +0 -1
- package/dist/types/components/WySpinner.d.ts +0 -1
- package/dist/types/components/WyToast.d.ts +0 -1
- package/dist/types/components/WyTyping.d.ts +0 -1
- package/dist/types/components/WyUsersSearch.d.ts +0 -1
- package/dist/types/hooks/useWeavy.d.ts +0 -1
- package/dist/types/weavy.d.ts +0 -1
- package/dist/weavy.es5.esm.js +1 -1
- package/dist/weavy.es5.umd.cjs +1 -1
- package/dist/weavy.esm.js +12691 -12488
- package/dist/weavy.umd.cjs +481 -481
- package/package.json +12 -12
package/changelog.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# Changelog for Weavy
|
|
2
2
|
|
|
3
|
+
## v24.0.3
|
|
4
|
+
|
|
5
|
+
<time>2024-08-15</time>
|
|
6
|
+
|
|
7
|
+
* Fixed some issues with component initialization, affecting realtime mainly in Messenger.
|
|
8
|
+
* Fixed some issues with the "New messages" label in Messenger.
|
|
9
|
+
|
|
10
|
+
## v24.0.2
|
|
11
|
+
|
|
12
|
+
<time>2024-07-18</time>
|
|
13
|
+
|
|
14
|
+
* Fixed some performance issues when searching for users.
|
|
15
|
+
|
|
3
16
|
## v24.0.1
|
|
4
17
|
|
|
5
18
|
<time>2024-07-12</time>
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { EventName } from '@lit/react';
|
|
2
2
|
import { WyNotificationToasts as WyNotificationToastsWC } from '@weavy/uikit-web';
|
|
3
3
|
import { WyLinkEventType } from '@weavy/uikit-web/dist/types/types/notifications.types';
|
|
4
|
-
|
|
5
4
|
export declare const WyNotificationToasts: import('@lit/react').ReactWebComponent<WyNotificationToastsWC, {
|
|
6
5
|
onWyLink: EventName<WyLinkEventType>;
|
|
7
6
|
}>;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { EventName } from '@lit/react';
|
|
2
2
|
import { WyNotifications as WyNotificationsWC } from '@weavy/uikit-web';
|
|
3
3
|
import { WyLinkEventType } from '@weavy/uikit-web/dist/types/types/notifications.types';
|
|
4
|
-
|
|
5
4
|
export declare const WyNotifications: import('@lit/react').ReactWebComponent<WyNotificationsWC, {
|
|
6
5
|
onWyLink: EventName<WyLinkEventType>;
|
|
7
6
|
}>;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { EventName } from '@lit/react';
|
|
2
2
|
import { WyAttachment as WyAttachmentWC, WyAttachmentsList as WyAttachmentsListWC } from '@weavy/uikit-web';
|
|
3
3
|
import { FileOpenEventType } from '@weavy/uikit-web/dist/types/types/files.types';
|
|
4
|
-
|
|
5
4
|
export declare const WyAttachment: import('@lit/react').ReactWebComponent<WyAttachmentWC, {}>;
|
|
6
5
|
export declare const WyAttachmentsList: import('@lit/react').ReactWebComponent<WyAttachmentsListWC, {
|
|
7
6
|
onFileOpen: EventName<FileOpenEventType>;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { EventName } from '@lit/react';
|
|
2
2
|
import { WyCloudFiles as WyCloudFilesWC } from '@weavy/uikit-web';
|
|
3
3
|
import { ExternalBlobType } from '@weavy/uikit-web/dist/types/types/files.types';
|
|
4
|
-
|
|
5
4
|
export declare const WyCloudFiles: import('@lit/react').ReactWebComponent<WyCloudFilesWC, {
|
|
6
5
|
onExternalBlobs: EventName<CustomEvent<{
|
|
7
6
|
externalBlobs: ExternalBlobType[] | null;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { EventName } from '@lit/react';
|
|
2
2
|
import { WyCommentList as WyCommentListWC, WyComment as WyCommentWC, WyCommentView as WyCommentViewWC, WyCommentEdit as WyCommentEditWC, WyCommentEditor as WyCommentEditorWC, WyCommentTrashed as WyCommentTrashedWC } from '@weavy/uikit-web';
|
|
3
3
|
import { PollOptionType } from '@weavy/uikit-web/dist/types/types/polls.types';
|
|
4
|
-
|
|
5
4
|
export declare const WyCommentList: import('@lit/react').ReactWebComponent<WyCommentListWC, {}>;
|
|
6
5
|
export declare const WyComment: import('@lit/react').ReactWebComponent<WyCommentWC, {
|
|
7
6
|
onVote: EventName<CustomEvent<{
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { EventName } from '@lit/react';
|
|
2
2
|
import { WyConversation as WyConversationWC, WyConversationExtended as WyConversationExtendedWC, WyConversationAppbar as WyConversationAppbarWC, WyConversationNew as WyConversationNewWC } from '@weavy/uikit-web';
|
|
3
|
-
|
|
4
3
|
export declare const WyConversation: import('@lit/react').ReactWebComponent<WyConversationWC, {
|
|
5
4
|
onReleaseFocus: EventName<CustomEvent>;
|
|
6
5
|
}>;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { EventName } from '@lit/react';
|
|
2
2
|
import { WyConversationList as WyConversationListWC, WyConversationListItem as WyConversationListItemWC } from '@weavy/uikit-web';
|
|
3
|
-
|
|
4
3
|
export declare const WyConversationList: import('@lit/react').ReactWebComponent<WyConversationListWC, {
|
|
5
4
|
onConversationSelected: EventName<CustomEvent<{
|
|
6
5
|
id: number | undefined;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { WyDropdown as WyDropdownWC, WyDropdownItem as WyDropdownItemWC, WyDropdownOption as WyDropdownOptionWC, WyDropdownDivider as WyDropdownDividerWC } from '@weavy/uikit-web';
|
|
2
|
-
|
|
3
2
|
export declare const WyDropdown: import('@lit/react').ReactWebComponent<WyDropdownWC, {}>;
|
|
4
3
|
export declare const WyDropdownItem: import('@lit/react').ReactWebComponent<WyDropdownItemWC, {}>;
|
|
5
4
|
export declare const WyDropdownOption: import('@lit/react').ReactWebComponent<WyDropdownOptionWC, {}>;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { EventName } from '@lit/react';
|
|
2
2
|
import { WyEditor as WyEditorWC } from '@weavy/uikit-web';
|
|
3
3
|
import { PollOptionType } from '@weavy/uikit-web/dist/types/types/polls.types';
|
|
4
|
-
|
|
5
4
|
export declare const WyEditor: import('@lit/react').ReactWebComponent<WyEditorWC, {
|
|
6
5
|
onSubmit: EventName<CustomEvent<{
|
|
7
6
|
text: string | undefined;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { EventName } from '@lit/react';
|
|
2
2
|
import { WyFileItem as WyFileItemWC } from '@weavy/uikit-web';
|
|
3
3
|
import { FileType } from '@weavy/uikit-web/dist/types/types/files.types';
|
|
4
|
-
|
|
5
4
|
export declare const WyFileItem: import('@lit/react').ReactWebComponent<WyFileItemWC, {
|
|
6
5
|
onEditName: EventName<CustomEvent<{
|
|
7
6
|
file: FileType;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { EventName } from '@lit/react';
|
|
2
2
|
import { WyFileMenu as WyFileMenuWC } from '@weavy/uikit-web';
|
|
3
3
|
import { FileType } from '@weavy/uikit-web/dist/types/types/files.types';
|
|
4
|
-
|
|
5
4
|
export declare const WyFileMenu: import('@lit/react').ReactWebComponent<WyFileMenuWC, {
|
|
6
5
|
onEditName: EventName<CustomEvent<{
|
|
7
6
|
file: FileType | undefined;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { EventName } from '@lit/react';
|
|
2
2
|
import { WyFileVersions as WyFileVersionsWC } from '@weavy/uikit-web';
|
|
3
3
|
import { FileType } from '@weavy/uikit-web/dist/types/types/files.types';
|
|
4
|
-
|
|
5
4
|
export declare const WyFileVersions: import('@lit/react').ReactWebComponent<WyFileVersionsWC, {
|
|
6
5
|
onFileVersionSelect: EventName<CustomEvent<{
|
|
7
6
|
versionFile: FileType;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { EventName } from '@lit/react';
|
|
2
2
|
import { WyFilesAppbar as WyFilesAppbarWC } from '@weavy/uikit-web';
|
|
3
3
|
import { BlobType, ExternalBlobType, FileOrderType } from '@weavy/uikit-web/dist/types/types/files.types';
|
|
4
|
-
|
|
5
4
|
export declare const WyFilesAppbar: import('@lit/react').ReactWebComponent<WyFilesAppbarWC, {
|
|
6
5
|
onReleaseFocus: EventName<CustomEvent>;
|
|
7
6
|
onUploadFiles: EventName<CustomEvent<{
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { EventName } from '@lit/react';
|
|
2
2
|
import { WyFilesList as WyFilesListWC } from '@weavy/uikit-web';
|
|
3
3
|
import { FileOpenEventType, FileOrderType, FileType } from '@weavy/uikit-web/dist/types/types/files.types';
|
|
4
|
-
|
|
5
4
|
export declare const WyFilesList: import('@lit/react').ReactWebComponent<WyFilesListWC, {
|
|
6
5
|
onFileOpen: EventName<FileOpenEventType>;
|
|
7
6
|
onOrder: EventName<CustomEvent<{
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { EventName } from '@lit/react';
|
|
2
2
|
import { WyImageGrid as WyImageGridWC } from '@weavy/uikit-web';
|
|
3
3
|
import { FileOpenEventType } from '@weavy/uikit-web/dist/types/types/files.types';
|
|
4
|
-
|
|
5
4
|
export declare const WyImageGrid: import('@lit/react').ReactWebComponent<WyImageGridWC, {
|
|
6
5
|
onFileOpen: EventName<FileOpenEventType>;
|
|
7
6
|
}>;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { EventName } from '@lit/react';
|
|
2
2
|
import { WyMessage as WyMessageWC, WyMessages as WyMessagesWC, WyMessageEditor as WyMessageEditorWC, WyMessageTyping as WyMessageTypingWC } from '@weavy/uikit-web';
|
|
3
3
|
import { PollOptionType } from '@weavy/uikit-web/dist/types/types/polls.types';
|
|
4
|
-
|
|
5
4
|
export declare const WyMessage: import('@lit/react').ReactWebComponent<WyMessageWC, {}>;
|
|
6
5
|
export declare const WyMessages: import('@lit/react').ReactWebComponent<WyMessagesWC, {
|
|
7
6
|
onScrollToBottom: EventName<CustomEvent>;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { WyNotificationBadge as WyNotificationBadgeWC, WyNotificationButtonList as WyNotificationButtonListWC, WyNotificationList as WyNotificationListWC, WyNotificationListItem as WyNotificationListItemWC } from '@weavy/uikit-web';
|
|
2
|
-
|
|
3
2
|
export declare const WyNotificationBadge: import('@lit/react').ReactWebComponent<WyNotificationBadgeWC, {}>;
|
|
4
3
|
export declare const WyNotificationButtonList: import('@lit/react').ReactWebComponent<WyNotificationButtonListWC, {}>;
|
|
5
4
|
export declare const WyNotificationList: import('@lit/react').ReactWebComponent<WyNotificationListWC, {}>;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { EventName } from '@lit/react';
|
|
2
2
|
import { WyPoll as WyPollWC, WyPollOption as WyPollOptionWC } from '@weavy/uikit-web';
|
|
3
|
-
|
|
4
3
|
export declare const WyPoll: import('@lit/react').ReactWebComponent<WyPollWC, {
|
|
5
4
|
onReleaseFocus: EventName<CustomEvent>;
|
|
6
5
|
onVote: EventName<CustomEvent<{
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { EventName } from '@lit/react';
|
|
2
2
|
import { WyPost as WyPostWC, WyPostView as WyPostViewWC, WyPostEdit as WyPostEditWC, WyPostTrashed as WyPostTrashedWC } from '@weavy/uikit-web';
|
|
3
|
-
|
|
4
3
|
export declare const WyPost: import('@lit/react').ReactWebComponent<WyPostWC, {
|
|
5
4
|
onVote: EventName<CustomEvent<{
|
|
6
5
|
id: number;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { EventName } from '@lit/react';
|
|
2
2
|
import { WyPreview as WyPreviewWC, WyPreviewItem as WyPreviewItemWC, WyPreviewEmbed as WyPreviewEmbedWC, WyPreviewIcon as WyPreviewIconWC, WyPreviewImage as WyPreviewImageWC, WyPreviewMedia as WyPreviewMediaWC, WyPreviewText as WyPreviewTextWC } from '@weavy/uikit-web';
|
|
3
|
-
|
|
4
3
|
export declare const WyPreview: import('@lit/react').ReactWebComponent<WyPreviewWC, {
|
|
5
4
|
onReleaseFocus: EventName<CustomEvent>;
|
|
6
5
|
}>;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { EventName } from '@lit/react';
|
|
2
2
|
import { WyReactions as WyReactionsWC, WyReactionItem as WyReactionItemWC } from '@weavy/uikit-web';
|
|
3
|
-
|
|
4
3
|
export declare const WyReactions: import('@lit/react').ReactWebComponent<WyReactionsWC, {
|
|
5
4
|
onReleaseFocus: EventName<CustomEvent>;
|
|
6
5
|
}>;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { EventName } from '@lit/react';
|
|
2
2
|
import { WyToasts as WyToastsWC, WyToast as WyToastWC } from '@weavy/uikit-web';
|
|
3
|
-
|
|
4
3
|
export declare const WyToasts: import('@lit/react').ReactWebComponent<WyToastsWC, {
|
|
5
4
|
onHide: EventName<CustomEvent>;
|
|
6
5
|
onReleaseFocus: EventName<CustomEvent>;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { EventName } from '@lit/react';
|
|
2
2
|
import { WyUsersSearch as WyUsersSearchWC } from '@weavy/uikit-web';
|
|
3
3
|
import { MemberType } from '@weavy/uikit-web/dist/types/types/members.types';
|
|
4
|
-
|
|
5
4
|
export declare const WyUsersSearch: import('@lit/react').ReactWebComponent<WyUsersSearchWC, {
|
|
6
5
|
onSubmit: EventName<CustomEvent<{
|
|
7
6
|
members: MemberType[];
|
package/dist/types/weavy.d.ts
CHANGED