@fileverse-dev/ddoc 3.2.1-sg-1 → 3.2.2-sg-1
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/dist/index.es.js +139 -141
- package/dist/package/stores/comment-store.d.ts +0 -6
- package/dist/style.css +1 -1
- package/package.json +2 -2
|
@@ -121,12 +121,6 @@ export interface CommentStoreState {
|
|
|
121
121
|
pendingPrehydrationFloatingThreadIds: string[];
|
|
122
122
|
/** In-progress suggestion drafts — keyed by suggestionId. Viewer-local, lost on refresh. */
|
|
123
123
|
drafts: Record<string, DraftSuggestion>;
|
|
124
|
-
/**
|
|
125
|
-
* Suggestion IDs submitted from this session. Used to show the withdraw (X)
|
|
126
|
-
* action for viewers even when they don't have a persistent username set.
|
|
127
|
-
* Session-local, lost on refresh.
|
|
128
|
-
*/
|
|
129
|
-
mySubmittedSuggestionIds: Set<string>;
|
|
130
124
|
inlineDrafts: InlineDraftRecordMap;
|
|
131
125
|
activeDraftId: string | null;
|
|
132
126
|
isDesktopFloatingEnabled: boolean;
|