@fileverse-dev/ddoc 3.2.9-sg-3 → 3.2.10

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 (32) hide show
  1. package/dist/index.es.js +28675 -30775
  2. package/dist/package/components/inline-comment/comment-card.d.ts +1 -19
  3. package/dist/package/components/inline-comment/comment-floating-layout.d.ts +0 -2
  4. package/dist/package/components/inline-comment/comment-reply-input.d.ts +1 -1
  5. package/dist/package/components/inline-comment/context/types.d.ts +1 -9
  6. package/dist/package/components/inline-comment/floating-comment/types.d.ts +1 -6
  7. package/dist/package/components/inline-comment/floating-comment-layout-utils.d.ts +2 -9
  8. package/dist/package/components/inline-comment/types.d.ts +0 -1
  9. package/dist/package/components/inline-comment/use-is-selected-content-deleted.d.ts +1 -1
  10. package/dist/package/extensions/comment/comment-decoration-plugin.d.ts +7 -34
  11. package/dist/package/extensions/comment/comment.d.ts +0 -5
  12. package/dist/package/hooks/use-editing-context.d.ts +0 -2
  13. package/dist/package/hooks/use-tab-editor.d.ts +1 -4
  14. package/dist/package/stores/comment-store-provider.d.ts +1 -1
  15. package/dist/package/stores/comment-store.d.ts +0 -84
  16. package/dist/package/types.d.ts +0 -9
  17. package/dist/package/use-ddoc-editor.d.ts +1 -3
  18. package/dist/style.css +1 -1
  19. package/package.json +2 -2
  20. package/dist/package/components/inline-comment/comment-drawer-constants.d.ts +0 -1
  21. package/dist/package/components/inline-comment/comment-drawer-desktop.d.ts +0 -35
  22. package/dist/package/components/inline-comment/comment-drawer-mobile.d.ts +0 -43
  23. package/dist/package/components/inline-comment/floating-comment/suggestion-draft-floating-card.d.ts +0 -17
  24. package/dist/package/components/inline-comment/floating-comment/suggestion-thread-floating-card.d.ts +0 -15
  25. package/dist/package/components/inline-comment/mobile-inline-comment-sheet.d.ts +0 -15
  26. package/dist/package/components/inline-comment/mobile-suggestion-draft-sheet.d.ts +0 -15
  27. package/dist/package/components/inline-comment/use-comment-drawer-drafts.d.ts +0 -22
  28. package/dist/package/components/inline-comment/use-comment-drawer-filters.d.ts +0 -40
  29. package/dist/package/components/inline-comment/use-comment-drawer-focus.d.ts +0 -17
  30. package/dist/package/components/inline-comment/use-comment-drawer-lifecycle.d.ts +0 -13
  31. package/dist/package/components/inline-comment/use-mobile-comment-navigation.d.ts +0 -20
  32. package/dist/package/extensions/suggestion/suggestion-tracking-extension.d.ts +0 -45
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@fileverse-dev/ddoc",
3
3
  "private": false,
4
4
  "description": "DDoc",
5
- "version": "3.2.9-sg-3",
5
+ "version": "3.2.10",
6
6
  "main": "dist/index.es.js",
7
7
  "module": "dist/index.es.js",
8
8
  "exports": {
@@ -154,4 +154,4 @@
154
154
  "typescript": "^5.2.2",
155
155
  "vite": "^5.0.0"
156
156
  }
157
- }
157
+ }
@@ -1 +0,0 @@
1
- export declare const ALL_TABS_OPTION_ID = "__all_tabs__";
@@ -1,35 +0,0 @@
1
- import { IComment } from '../../extensions/comment';
2
-
3
- interface DrawerSelectOption {
4
- id: string;
5
- label: string;
6
- }
7
- interface CommentDrawerDesktopProps {
8
- activeCommentId: string | null;
9
- commentType: string;
10
- commentTypeOptions: DrawerSelectOption[];
11
- filteredComments: IComment[];
12
- isCollaborationEnabled: boolean;
13
- isCommentTypeSelectOpen: boolean;
14
- isConnected: boolean;
15
- isNavbarVisible: boolean;
16
- isOpen: boolean;
17
- isPresentationMode: boolean;
18
- isPreviewMode: boolean;
19
- isTabSelectOpen: boolean;
20
- newCommentTabId: string;
21
- onClose: () => void;
22
- onCommentFocus: (commentId: string, tabId?: string) => void;
23
- onCommentTypeChange: (commentType: string) => void;
24
- onCommentTypeSelectOpenChange: (open: boolean) => void;
25
- onReset: () => void;
26
- onTabChange: (tabId: string) => void;
27
- onTabSelectOpenChange: (open: boolean) => void;
28
- sectionLabel: string;
29
- selectedTab: string;
30
- selectedTabLabel: string;
31
- tabList: DrawerSelectOption[];
32
- tabNameById: Record<string, string>;
33
- }
34
- export declare const CommentDrawerDesktop: ({ activeCommentId, commentType, commentTypeOptions, filteredComments, isCollaborationEnabled, isCommentTypeSelectOpen, isConnected, isNavbarVisible, isOpen, isPresentationMode, isPreviewMode, isTabSelectOpen, newCommentTabId, onClose, onCommentFocus, onCommentTypeChange, onCommentTypeSelectOpenChange, onReset, onTabChange, onTabSelectOpenChange, sectionLabel, selectedTab, selectedTabLabel, tabList, tabNameById, }: CommentDrawerDesktopProps) => import("react/jsx-runtime").JSX.Element;
35
- export {};
@@ -1,43 +0,0 @@
1
- import { IComment } from '../../extensions/comment';
2
- import { InlineCommentDraft, SuggestionFloatingDraftCard } from './context/types';
3
-
4
- interface CommentDrawerMobileProps {
5
- activeCommentId: string | null;
6
- activeDraft: InlineCommentDraft | null;
7
- activeDraftId: string | null;
8
- activeSuggestionDraftCard: SuggestionFloatingDraftCard | null;
9
- canGoToNextMobileComment: boolean;
10
- canGoToPreviousMobileComment: boolean;
11
- comments: IComment[];
12
- isCollaborationEnabled: boolean;
13
- isCommentMobileFocused: boolean;
14
- isConnected: boolean;
15
- isDiscardCommentOverlayVisible: boolean;
16
- isDiscardSuggestionOverlayVisible: boolean;
17
- isInlineDraftOpen: boolean;
18
- isMobileDrawerVisible: boolean;
19
- isNavbarVisible: boolean;
20
- isPresentationMode: boolean;
21
- mobileActiveCommentsCount: number;
22
- mobileDraftRef: React.RefObject<HTMLDivElement>;
23
- mobileFocusedCommentIndex: number;
24
- onAttemptCloseNewComment: () => void;
25
- onAttemptCloseSuggestionDraft: () => void;
26
- onCancelDiscardComment: () => void;
27
- onCancelDiscardSuggestion: () => void;
28
- onCloseDrawer: () => void;
29
- onCommentFocus: (commentId: string, tabId?: string) => void;
30
- onCreateComment: () => void;
31
- onDiscardSuggestionDraft: () => void;
32
- onFocusSuggestionDraft: () => void;
33
- onNextMobileComment: () => void;
34
- onPreviousMobileComment: () => void;
35
- onStartNewMobileComment: () => void;
36
- onSubmitSuggestionDraft: () => void;
37
- onUpdateInlineDraftText: (draftId: string, text: string) => void;
38
- onViewAllComments: () => void;
39
- tabNameById: Record<string, string>;
40
- username: string | null;
41
- }
42
- export declare const CommentDrawerMobile: ({ activeCommentId, activeDraft, activeDraftId, activeSuggestionDraftCard, canGoToNextMobileComment, canGoToPreviousMobileComment, comments, isCollaborationEnabled, isCommentMobileFocused, isConnected, isDiscardCommentOverlayVisible, isDiscardSuggestionOverlayVisible, isInlineDraftOpen, isMobileDrawerVisible, isNavbarVisible, isPresentationMode, mobileActiveCommentsCount, mobileDraftRef, mobileFocusedCommentIndex, onAttemptCloseNewComment, onAttemptCloseSuggestionDraft, onCancelDiscardComment, onCancelDiscardSuggestion, onCloseDrawer, onCommentFocus, onCreateComment, onDiscardSuggestionDraft, onFocusSuggestionDraft, onNextMobileComment, onPreviousMobileComment, onStartNewMobileComment, onSubmitSuggestionDraft, onUpdateInlineDraftText, onViewAllComments, tabNameById, username, }: CommentDrawerMobileProps) => import("react/jsx-runtime").JSX.Element;
43
- export {};
@@ -1,17 +0,0 @@
1
- import { SuggestionDraftFloatingCardProps } from './types';
2
-
3
- /**
4
- * SuggestionDraftFloatingCard
5
- *
6
- * Shown while a viewer is composing a suggestion (in suggestion mode).
7
- * Uses the same one-line diff format as the submitted thread card
8
- * (Add: "X" / Delete: "X" / Replace: "X" with "Y") plus a Submit action
9
- * and a Discard (X) button.
10
- *
11
- * When the viewer hasn't joined yet (no username / wallet), the card
12
- * renders FloatingAuthPrompt inside — same pattern as the inline-comment
13
- * draft card. The first keystroke that triggered this card is preserved
14
- * as the draft's first character; once the viewer joins, the card
15
- * transitions to the normal diff/Submit UI without losing what they typed.
16
- */
17
- export declare const SuggestionDraftFloatingCard: ({ card, isHidden, registerCardNode, }: SuggestionDraftFloatingCardProps) => import("react/jsx-runtime").JSX.Element;
@@ -1,15 +0,0 @@
1
- import { ThreadFloatingCardProps } from './types';
2
-
3
- /**
4
- * SuggestionThreadFloatingCard
5
- *
6
- * Shown in place of the generic ThreadFloatingCard for submitted suggestions
7
- * (comments with `isSuggestion: true`). Renders the Figma-specified layout:
8
- * author + timestamp header, Accept/Reject (owner) or Withdraw (author)
9
- * actions, a one-line diff summary (Add/Delete/Replace), and a reply input.
10
- *
11
- * Renders from the underlying IComment — the same source ThreadFloatingCard
12
- * uses — so once a draft is submitted, nothing else in the pipeline needs
13
- * to change to show the suggestion here.
14
- */
15
- export declare const SuggestionThreadFloatingCard: ({ thread, comment, isHidden, registerCardNode, isCollaborationEnabled, }: ThreadFloatingCardProps) => import("react/jsx-runtime").JSX.Element | null;
@@ -1,15 +0,0 @@
1
- import { InlineCommentDraft } from './context/types';
2
-
3
- interface MobileInlineCommentProps {
4
- activeDraft: InlineCommentDraft | null;
5
- activeDraftId: string | null;
6
- isDiscardCommentOverlayVisible: boolean;
7
- mobileDraftRef: React.RefObject<HTMLDivElement>;
8
- onAttemptClose: () => void;
9
- onCancelDiscard: () => void;
10
- onConfirmDiscard: () => void;
11
- onSubmit: () => void;
12
- onUpdateDraftText: (draftId: string, text: string) => void;
13
- }
14
- export declare const MobileInlineComment: ({ activeDraft, activeDraftId, isDiscardCommentOverlayVisible, mobileDraftRef, onAttemptClose, onCancelDiscard, onConfirmDiscard, onSubmit, onUpdateDraftText, }: MobileInlineCommentProps) => import("react/jsx-runtime").JSX.Element;
15
- export {};
@@ -1,15 +0,0 @@
1
- import { SuggestionFloatingDraftCard } from './context/types';
2
-
3
- interface MobileSuggestionDraftProps {
4
- activeSuggestionDraftCard: SuggestionFloatingDraftCard;
5
- isConnected: boolean;
6
- isDiscardSuggestionOverlayVisible: boolean;
7
- username: string | null;
8
- onAttemptClose: () => void;
9
- onCancelDiscard: () => void;
10
- onConfirmDiscard: () => void;
11
- onFocusSuggestionText: () => void;
12
- onSubmit: () => void;
13
- }
14
- export declare const MobileSuggestionDraft: ({ activeSuggestionDraftCard, isConnected, isDiscardSuggestionOverlayVisible, username, onAttemptClose, onCancelDiscard, onConfirmDiscard, onFocusSuggestionText, onSubmit, }: MobileSuggestionDraftProps) => import("react/jsx-runtime").JSX.Element;
15
- export {};
@@ -1,22 +0,0 @@
1
- import { SuggestionFloatingDraftCard } from './context/types';
2
-
3
- interface UseCommentDrawerDraftsProps {
4
- selectedCommentTabId: string;
5
- setOpenReplyId: (commentId: string | null) => void;
6
- }
7
- export declare const useCommentDrawerDrafts: ({ selectedCommentTabId, setOpenReplyId, }: UseCommentDrawerDraftsProps) => {
8
- activeDraft: import('./context/types').InlineCommentDraft | null;
9
- activeDraftId: string | null;
10
- activeSuggestionDraftCard: SuggestionFloatingDraftCard | null;
11
- handleCreateComment: () => void;
12
- handleDiscardSuggestionDraft: () => void;
13
- handleStartNewMobileComment: () => void;
14
- handleSubmitSuggestionDraft: () => void;
15
- isDiscardCommentOverlayVisible: boolean;
16
- isDiscardSuggestionOverlayVisible: boolean;
17
- isInlineDraftOpen: boolean;
18
- setIsDiscardCommentOverlayVisible: import('react').Dispatch<import('react').SetStateAction<boolean>>;
19
- setIsDiscardSuggestionOverlayVisible: import('react').Dispatch<import('react').SetStateAction<boolean>>;
20
- updateInlineDraftText: (draftId: string, value: string) => void;
21
- };
22
- export {};
@@ -1,40 +0,0 @@
1
- import { IComment } from '../../extensions/comment';
2
- import { Tab } from '../tabs/utils/tab-utils';
3
-
4
- export declare const commentTypeOptions: {
5
- id: string;
6
- label: string;
7
- }[];
8
- interface UseCommentDrawerFiltersProps {
9
- activeTabId: string;
10
- comments: IComment[];
11
- tabs: Tab[];
12
- }
13
- export declare const useCommentDrawerFilters: ({ activeTabId, comments, tabs, }: UseCommentDrawerFiltersProps) => {
14
- closeFilterSelects: () => void;
15
- commentType: string;
16
- commentTypeOptions: {
17
- id: string;
18
- label: string;
19
- }[];
20
- filteredComments: IComment[];
21
- handleCommentTypeSelectOpenChange: (open: boolean) => void;
22
- handleTabSelectOpenChange: (open: boolean) => void;
23
- isCommentTypeSelectOpen: boolean;
24
- isTabSelectOpen: boolean;
25
- resetFilters: () => void;
26
- sectionLabel: string;
27
- selectedCommentTabId: string;
28
- selectedTab: string;
29
- selectedTabLabel: string;
30
- setCommentType: import('react').Dispatch<import('react').SetStateAction<string>>;
31
- setTab: import('react').Dispatch<import('react').SetStateAction<string>>;
32
- tabList: {
33
- id: string;
34
- label: string;
35
- }[];
36
- tabNameById: {
37
- [k: string]: string;
38
- };
39
- };
40
- export {};
@@ -1,17 +0,0 @@
1
- import { IComment } from '../../extensions/comment';
2
-
3
- interface UseCommentDrawerFocusProps {
4
- activeTabId: string;
5
- comments: IComment[];
6
- focusCommentInEditor: (commentId: string, options?: {
7
- source?: 'explicit-ui';
8
- }) => void;
9
- isBelow1280px: boolean;
10
- onTabChange?: (tabId: string) => void;
11
- setOpenReplyId: (commentId: string | null) => void;
12
- }
13
- export declare const useCommentDrawerFocus: ({ activeTabId, comments, focusCommentInEditor, isBelow1280px, onTabChange, setOpenReplyId, }: UseCommentDrawerFocusProps) => {
14
- clearPendingCommentFocus: () => void;
15
- handleCommentFocus: (commentId: string, commentTabId?: string) => void;
16
- };
17
- export {};
@@ -1,13 +0,0 @@
1
- interface UseCommentDrawerLifecycleProps {
2
- activeSuggestionDraftCard: unknown;
3
- closeFilterSelects: () => void;
4
- isBelow1280px: boolean;
5
- isCommentMobileFocused: boolean;
6
- isInlineDraftOpen: boolean;
7
- isOpen: boolean;
8
- onClose: () => void;
9
- setIsDiscardCommentOverlayVisible: (visible: boolean) => void;
10
- setIsDiscardSuggestionOverlayVisible: (visible: boolean) => void;
11
- }
12
- export declare const useCommentDrawerLifecycle: ({ activeSuggestionDraftCard, closeFilterSelects, isBelow1280px, isCommentMobileFocused, isInlineDraftOpen, isOpen, onClose, setIsDiscardCommentOverlayVisible, setIsDiscardSuggestionOverlayVisible, }: UseCommentDrawerLifecycleProps) => void;
13
- export {};
@@ -1,20 +0,0 @@
1
- import { RefObject } from 'react';
2
- import { IComment } from '../../extensions/comment';
3
-
4
- interface UseMobileCommentNavigationProps {
5
- comments: IComment[];
6
- mobileDrawerRef: RefObject<HTMLDivElement>;
7
- onCommentFocus: (commentId: string, tabId?: string) => void;
8
- openReplyId: string | null;
9
- setOpenReplyId: (commentId: string | null) => void;
10
- }
11
- export declare const useMobileCommentNavigation: ({ comments, mobileDrawerRef, onCommentFocus, openReplyId, setOpenReplyId, }: UseMobileCommentNavigationProps) => {
12
- canGoToNextMobileComment: boolean;
13
- canGoToPreviousMobileComment: boolean;
14
- handleNextMobileComment: () => void;
15
- handlePreviousMobileComment: () => void;
16
- handleViewAllComments: () => void;
17
- mobileActiveCommentsCount: number;
18
- mobileFocusedCommentIndex: number;
19
- };
20
- export {};
@@ -1,45 +0,0 @@
1
- import { Extension } from '@tiptap/core';
2
- import { PluginKey } from '@tiptap/pm/state';
3
- import { SuggestionType } from '../../types';
4
- import { CommentAnchor } from '../comment/comment-decoration-plugin';
5
-
6
- import * as Y from 'yjs';
7
- export interface SuggestionReadyData {
8
- suggestionId: string;
9
- anchorFrom: Y.RelativePosition;
10
- anchorTo: Y.RelativePosition;
11
- suggestionType: SuggestionType;
12
- originalContent: string;
13
- suggestedContent: string;
14
- }
15
- export interface SuggestionTrackingOptions {
16
- /** Returns true when the editor is in suggestion mode. */
17
- getIsSuggestionMode: () => boolean;
18
- /** Viewer types text with a collapsed cursor (Add gesture). */
19
- onTextInput: (text: string) => void;
20
- /** Viewer types text over a non-empty selection (Replace gesture). */
21
- onReplaceTyping: (from: number, to: number, text: string) => void;
22
- /** Viewer presses Backspace/Delete with a non-empty selection. */
23
- onDeleteSelection: (from: number, to: number) => void;
24
- /** Viewer pastes a link over selected text. */
25
- onPasteLink: (from: number, to: number, href: string) => void;
26
- /**
27
- * Viewer presses Backspace/Delete with a collapsed cursor.
28
- * The consumer decides whether this should shrink an active draft or create
29
- * a new one-character delete suggestion at the caret.
30
- */
31
- onDeleteAtCursor: (direction: 'backward' | 'forward') => void;
32
- /**
33
- * Browser attempted to delete a concrete range without an explicit
34
- * user selection (for example, a beforeinput/IME path that bypassed
35
- * keydown). Lets the consumer preserve "undo active draft" semantics
36
- * while still creating delete drafts for normal text.
37
- */
38
- onDeleteRangeWithoutSelection: (from: number, to: number) => void;
39
- /** Viewer presses Cmd+Z (or Ctrl+Z). Shrinks the active draft by one keystroke. */
40
- onUndo: () => void;
41
- onLiveSuggestion?: ((anchor: CommentAnchor) => void) | null;
42
- onSuggestionReady?: ((data: SuggestionReadyData) => void) | null;
43
- }
44
- export declare const suggestionTrackingPluginKey: PluginKey<null>;
45
- export declare const SuggestionTrackingExtension: Extension<SuggestionTrackingOptions, any>;