superdoc 2.4.0-next.21 → 2.4.0-next.22
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/chunks/{create-super-doc-ui-CFsY0uxw.es.js → create-super-doc-ui-CmOSA_lN.es.js} +252 -657
- package/dist/chunks/{create-super-doc-ui-jSJQis_0.cjs → create-super-doc-ui-CqGmoMMA.cjs} +251 -662
- package/dist/collaboration-upgrade-engine.cjs +1 -1
- package/dist/collaboration-upgrade-engine.es.js +1 -1
- package/dist/document-api/src/citations/citations.types.d.ts +9 -0
- package/dist/document-api/src/types/receipt.d.ts +9 -5
- package/dist/layout-engine/contracts/src/index.d.ts +73 -1
- package/dist/layout-engine/contracts/src/inline-box.d.ts +19 -0
- package/dist/layout-engine/contracts/src/paragraph-visible-text.d.ts +19 -0
- package/dist/layout-engine/layout-bridge/src/inline-box-key.d.ts +3 -0
- package/dist/layout-engine/layout-bridge/src/run-visual-marks.d.ts +2 -0
- package/dist/layout-engine/layout-bridge/src/text-measurement.d.ts +0 -12
- package/dist/layout-engine/painters/dom/src/runs/inline-box.d.ts +8 -0
- package/dist/public/ui-react.cjs +1 -1
- package/dist/public/ui-react.es.js +1 -1
- package/dist/public/ui.cjs +1 -1
- package/dist/public/ui.es.js +1 -1
- package/dist/style.css +93 -92
- package/dist/style.layered.css +93 -92
- package/dist/superdoc/src/components/CommentsLayer/CommentDialog.vue.d.ts +2 -0
- package/dist/superdoc/src/components/CommentsLayer/commentsList/ReviewDirectoryListItem.vue.d.ts +16 -0
- package/dist/superdoc/src/components/CommentsLayer/commentsList/commentsList.vue.d.ts +3 -1
- package/dist/superdoc/src/components/CommentsLayer/commentsList/super-comments-list.d.ts +12 -0
- package/dist/superdoc/src/core/SuperDoc.d.ts +6 -7
- package/dist/superdoc/src/core/extensions/index.d.ts +1 -1
- package/dist/superdoc/src/core/extensions/types.d.ts +63 -5
- package/dist/superdoc/src/core/types/index.d.ts +19 -0
- package/dist/superdoc/src/core/v2-integration/v2-integration.d.ts +3 -3
- package/dist/superdoc/src/helpers/v2-review-mutation-impact.d.ts +3 -5
- package/dist/superdoc/src/public/index.d.cts +6 -0
- package/dist/superdoc/src/public/index.d.ts +3 -0
- package/dist/superdoc/src/public/ui/types.d.ts +5 -5
- package/dist/superdoc/src/stores/comments-store.d.ts +81 -78
- package/dist/superdoc/src/stores/superdoc-store.d.ts +243 -234
- package/dist/superdoc.cjs +660 -857
- package/dist/superdoc.es.js +648 -846
- package/dist-cdn/style.layered.css +1 -1
- package/dist-cdn/superdoc.min.css +1 -1
- package/dist-cdn/superdoc.min.js +36 -36
- package/package.json +2 -2
- package/dist/superdoc/src/helpers/v2-remote-review-hydration.d.ts +0 -12
- package/dist/superdoc/src/helpers/v2-review-mutation-reconciler.d.ts +0 -19
- package/dist/superdoc/src/helpers/v2-typing-review-hydration.d.ts +0 -16
|
@@ -19,7 +19,7 @@ var COLLABORATION_UPGRADE_ENGINE_MINIMUM_NODE_MAJOR = 20;
|
|
|
19
19
|
var PRIVATE_ENGINE_INFO = (0, _superdoc_docx_engine_collaboration_upgrade_engine.getCollaborationUpgradeEngineInfo)();
|
|
20
20
|
var ENGINE_INFO = Object.freeze({
|
|
21
21
|
...PRIVATE_ENGINE_INFO,
|
|
22
|
-
superdocVersion: "2.4.0-next.
|
|
22
|
+
superdocVersion: "2.4.0-next.22",
|
|
23
23
|
roomSchemaVersion: Object.freeze({ ...PRIVATE_ENGINE_INFO.roomSchemaVersion }),
|
|
24
24
|
supportedBundleVersions: SUPPORTED_COLLABORATION_UPGRADE_BUNDLE_VERSIONS,
|
|
25
25
|
supportedV1ReaderContractVersions: SUPPORTED_V1_READER_CONTRACT_VERSIONS
|
|
@@ -18,7 +18,7 @@ var COLLABORATION_UPGRADE_ENGINE_MINIMUM_NODE_MAJOR = 20;
|
|
|
18
18
|
var PRIVATE_ENGINE_INFO = getCollaborationUpgradeEngineInfo$1();
|
|
19
19
|
var ENGINE_INFO = Object.freeze({
|
|
20
20
|
...PRIVATE_ENGINE_INFO,
|
|
21
|
-
superdocVersion: "2.4.0-next.
|
|
21
|
+
superdocVersion: "2.4.0-next.22",
|
|
22
22
|
roomSchemaVersion: Object.freeze({ ...PRIVATE_ENGINE_INFO.roomSchemaVersion }),
|
|
23
23
|
supportedBundleVersions: SUPPORTED_COLLABORATION_UPGRADE_BUNDLE_VERSIONS,
|
|
24
24
|
supportedV1ReaderContractVersions: SUPPORTED_V1_READER_CONTRACT_VERSIONS
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { InlineAnchor } from '../types/base.js';
|
|
2
2
|
import { TextTarget } from '../types/address.js';
|
|
3
|
+
import { StoryLocator } from '../types/story.types.js';
|
|
3
4
|
import { AdapterMutationFailure } from '../types/adapter-result.js';
|
|
4
5
|
import { DiscoveryOutput } from '../types/discovery.js';
|
|
5
6
|
import { TocCreateLocation } from '../toc/toc.types.js';
|
|
@@ -7,6 +8,14 @@ export interface CitationAddress {
|
|
|
7
8
|
kind: 'inline';
|
|
8
9
|
nodeType: 'citation';
|
|
9
10
|
anchor: InlineAnchor;
|
|
11
|
+
/** Story containing this citation. Omit for body (backward compatible). */
|
|
12
|
+
story?: StoryLocator;
|
|
13
|
+
/** Session-stable story identity used by the v2 runtime with `fieldId`. */
|
|
14
|
+
storyId?: string;
|
|
15
|
+
/** Session-stable identity of the citation's backing OOXML field. */
|
|
16
|
+
fieldId?: string;
|
|
17
|
+
/** Field occurrence fallback for collocated citations with identical anchors. */
|
|
18
|
+
occurrenceIndex?: number;
|
|
10
19
|
}
|
|
11
20
|
export interface CitationSourceAddress {
|
|
12
21
|
kind: 'entity';
|
|
@@ -42,22 +42,26 @@ export type ReviewWarning = {
|
|
|
42
42
|
* operation. Callers maintain their own held-ref state by applying these
|
|
43
43
|
* deltas:
|
|
44
44
|
*
|
|
45
|
-
*
|
|
46
|
-
*
|
|
47
|
-
*
|
|
48
|
-
*
|
|
45
|
+
* `atChar` is story-absolute. When `blockId` and `atCharInBlock` are both
|
|
46
|
+
* present, they identify the same shift in block-local visible coordinates.
|
|
47
|
+
* Consumers that store block-local ranges must fail closed when that pair is
|
|
48
|
+
* absent rather than interpreting `atChar` as a block offset.
|
|
49
49
|
*
|
|
50
50
|
* Negative `delta` describes a deletion. Positive `delta` describes an
|
|
51
51
|
* insertion (e.g. when a `<w:del>` is rejected and its content is restored
|
|
52
52
|
* to the visible flow).
|
|
53
53
|
*
|
|
54
|
-
* One entry per story. Cross-story shifts are reported
|
|
54
|
+
* One entry is emitted per story. Cross-story shifts are reported separately.
|
|
55
55
|
*/
|
|
56
56
|
export interface TextRangeShift {
|
|
57
57
|
/** The story whose text was shifted. */
|
|
58
58
|
story: StoryLocator;
|
|
59
59
|
/** Character offset in the story's flattened text where the shift begins. */
|
|
60
60
|
atChar: number;
|
|
61
|
+
/** Block containing the shift, when the producer can prove one. */
|
|
62
|
+
blockId?: string;
|
|
63
|
+
/** Visible character offset within `blockId`, paired with `blockId`. */
|
|
64
|
+
atCharInBlock?: number;
|
|
61
65
|
/** Net change in characters. Negative for deletions, positive for insertions. */
|
|
62
66
|
delta: number;
|
|
63
67
|
}
|
|
@@ -120,7 +120,7 @@ export type DocPartMetadata = {
|
|
|
120
120
|
* - Doc parts: special objects like tables of contents
|
|
121
121
|
*/
|
|
122
122
|
export type SdtMetadata = FieldAnnotationMetadata | StructuredContentMetadata | DocumentSectionMetadata | DocPartMetadata;
|
|
123
|
-
export declare const CONTRACTS_VERSION = "1.
|
|
123
|
+
export declare const CONTRACTS_VERSION = "1.2.0";
|
|
124
124
|
/** Unique identifier for a block in the document. Format: `${pos}-${type}`. */
|
|
125
125
|
export type BlockId = string;
|
|
126
126
|
/**
|
|
@@ -655,12 +655,58 @@ export type MathRun = {
|
|
|
655
655
|
sdt?: SdtMetadata;
|
|
656
656
|
};
|
|
657
657
|
export type Run = TextRun | TabRun | ImageRun | LineBreakRun | BreakRun | FieldAnnotationRun | MathRun;
|
|
658
|
+
/** Layout-affecting inline-box values, resolved to logical CSS pixel sides. */
|
|
659
|
+
export type ResolvedInlineBoxLayout = {
|
|
660
|
+
paddingInlineStart: number;
|
|
661
|
+
paddingInlineEnd: number;
|
|
662
|
+
paddingBlockStart: number;
|
|
663
|
+
paddingBlockEnd: number;
|
|
664
|
+
gapBefore: number;
|
|
665
|
+
gapAfter: number;
|
|
666
|
+
borderWidth: number;
|
|
667
|
+
};
|
|
668
|
+
/** Sanitized, paint-only inline-box appearance. */
|
|
669
|
+
export type ResolvedInlineBoxAppearance = {
|
|
670
|
+
backgroundColor?: string;
|
|
671
|
+
borderColor?: string;
|
|
672
|
+
borderStyle?: 'solid' | 'dashed' | 'dotted';
|
|
673
|
+
borderRadius?: number;
|
|
674
|
+
color?: string;
|
|
675
|
+
};
|
|
676
|
+
/** Paint-ready inline-box style emitted on measured line slices. */
|
|
677
|
+
export type ResolvedInlineBoxStyle = ResolvedInlineBoxLayout & ResolvedInlineBoxAppearance;
|
|
678
|
+
/**
|
|
679
|
+
* An internal, layout-aware presentation over a paragraph-visible text range.
|
|
680
|
+
*
|
|
681
|
+
* The proof uses leaf styling (D1): measurement creates box-edge segment
|
|
682
|
+
* boundaries and the painter styles the canonical text leaves. The fallback
|
|
683
|
+
* sibling layer was not needed. Extension-authored boxes reach this internal
|
|
684
|
+
* layout contract through the v2 host bridge. RTL input is ignored (D12), and
|
|
685
|
+
* the synchronous paragraph remeasurer does not consume this field (D14).
|
|
686
|
+
*/
|
|
687
|
+
export type InlineBoxSpan = {
|
|
688
|
+
id: string;
|
|
689
|
+
/**
|
|
690
|
+
* UTF-16 offsets over the paragraph's flattened visible text. Every
|
|
691
|
+
* non-text run contributes one placeholder character. These offsets never
|
|
692
|
+
* alter run PM ranges, run indices, source anchors, or document identity.
|
|
693
|
+
*/
|
|
694
|
+
from: number;
|
|
695
|
+
to: number;
|
|
696
|
+
layout: ResolvedInlineBoxLayout;
|
|
697
|
+
appearance: ResolvedInlineBoxAppearance;
|
|
698
|
+
className?: string;
|
|
699
|
+
data?: Record<string, string>;
|
|
700
|
+
cursor?: 'default' | 'pointer' | 'text' | 'help';
|
|
701
|
+
};
|
|
658
702
|
export type ParagraphBlock = {
|
|
659
703
|
kind: 'paragraph';
|
|
660
704
|
id: BlockId;
|
|
661
705
|
runs: Run[];
|
|
662
706
|
attrs?: ParagraphAttrs;
|
|
663
707
|
sourceAnchor?: SourceAnchor;
|
|
708
|
+
/** @internal Layout-aware presentation projected from the extension API by the v2 host. */
|
|
709
|
+
inlineBoxes?: InlineBoxSpan[];
|
|
664
710
|
};
|
|
665
711
|
/** Border style (subset of OOXML ST_Border). */
|
|
666
712
|
export type BorderStyle = 'none' | 'single' | 'double' | 'dashed' | 'dotted' | 'thick' | 'triple' | 'dotDash' | 'dotDotDash' | 'wave' | 'doubleWave';
|
|
@@ -1813,6 +1859,28 @@ export type LineInlineImageAlignment = {
|
|
|
1813
1859
|
runIndex: number;
|
|
1814
1860
|
verticalAlign: ImageRunVerticalAlign;
|
|
1815
1861
|
};
|
|
1862
|
+
/**
|
|
1863
|
+
* Paint-ready geometry for one inline-box slice on a measured line.
|
|
1864
|
+
*
|
|
1865
|
+
* Measurement owns the slice geometry and resolved style. The painter consumes
|
|
1866
|
+
* these values directly and never normalizes logical sides or measures the DOM.
|
|
1867
|
+
*/
|
|
1868
|
+
export type LineInlineBox = {
|
|
1869
|
+
id: string;
|
|
1870
|
+
/** Line-relative UTF-16 offsets covered by this slice. */
|
|
1871
|
+
from: number;
|
|
1872
|
+
to: number;
|
|
1873
|
+
x: number;
|
|
1874
|
+
width: number;
|
|
1875
|
+
top: number;
|
|
1876
|
+
height: number;
|
|
1877
|
+
startsRange: boolean;
|
|
1878
|
+
endsRange: boolean;
|
|
1879
|
+
style: ResolvedInlineBoxStyle;
|
|
1880
|
+
className?: string;
|
|
1881
|
+
data?: Record<string, string>;
|
|
1882
|
+
cursor?: 'default' | 'pointer' | 'text' | 'help';
|
|
1883
|
+
};
|
|
1816
1884
|
export type Line = {
|
|
1817
1885
|
fromRun: number;
|
|
1818
1886
|
fromChar: number;
|
|
@@ -1843,6 +1911,8 @@ export type Line = {
|
|
|
1843
1911
|
* wins over the entry here.
|
|
1844
1912
|
*/
|
|
1845
1913
|
inlineImageAlignments?: LineInlineImageAlignment[];
|
|
1914
|
+
/** Paint-ready inline-box slices emitted by measurement. */
|
|
1915
|
+
inlineBoxes?: LineInlineBox[];
|
|
1846
1916
|
/**
|
|
1847
1917
|
* Measured tab widths keyed by tab run `pmStart`, stored alongside the
|
|
1848
1918
|
* `ParagraphMeasure` so the painter can read them even after FlowBlock
|
|
@@ -2455,5 +2525,7 @@ export declare const extractHeaderFooterSpace: (margins?: PageMargins | null) =>
|
|
|
2455
2525
|
export type { ResolvedLayout, ResolvedPage, ResolvedPaintItem, ResolvedGroupItem, ResolvedFragmentItem, ResolvedParagraphContent, ResolvedTextLineItem, ResolvedDropCapItem, ResolvedListMarkerItem, ResolvedTableItem, ResolvedImageItem, ResolvedDrawingItem, ResolvedHeaderFooterPage, ResolvedHeaderFooterLayout, } from './resolved-layout.js';
|
|
2456
2526
|
export { isResolvedTableItem, isResolvedImageItem, isResolvedDrawingItem } from './resolved-layout.js';
|
|
2457
2527
|
export { expandRunsForInlineNewlines, isEmptyInlineSdtPlaceholderRun, isEmptySdtPlaceholderRun, sliceRunsForLine, } from './run-helpers.js';
|
|
2528
|
+
export { INLINE_OBJECT_REPLACEMENT_CHARACTER, flattenParagraphVisibleText, mapVisibleRangeToRunSlices, type ParagraphVisibleRunSlice, } from './paragraph-visible-text.js';
|
|
2529
|
+
export { inlineBoxStyleSignature, isFiniteNonNegativeInteger, normalizeInlineBoxLogicalSides, type InlineBoxLogicalSides, type ResolvedInlineBoxLogicalSides, } from './inline-box.js';
|
|
2458
2530
|
export { PAGE_CHECKPOINT_DEPENDENCY_CLASSES, areValidPageCheckpointDependencyClasses, type NonFlowingPageRelativeAnchorDependencyProof, type PageCheckpointDependencyClass, } from './incremental-dependency.js';
|
|
2459
2531
|
export * as Engines from './engines/index.js';
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { ResolvedInlineBoxStyle } from './index.js';
|
|
2
|
+
export type InlineBoxLogicalSides = number | {
|
|
3
|
+
start: number;
|
|
4
|
+
end: number;
|
|
5
|
+
};
|
|
6
|
+
export type ResolvedInlineBoxLogicalSides = {
|
|
7
|
+
start: number;
|
|
8
|
+
end: number;
|
|
9
|
+
};
|
|
10
|
+
/** True for finite, non-negative integer CSS pixel values. */
|
|
11
|
+
export declare const isFiniteNonNegativeInteger: (value: unknown) => value is number;
|
|
12
|
+
/**
|
|
13
|
+
* Expands a scalar logical value into explicit start/end values.
|
|
14
|
+
*
|
|
15
|
+
* Undefined resolves to zero. Invalid or non-integer input fails closed.
|
|
16
|
+
*/
|
|
17
|
+
export declare const normalizeInlineBoxLogicalSides: (value: InlineBoxLogicalSides | undefined) => ResolvedInlineBoxLogicalSides | null;
|
|
18
|
+
/** Stable signature for every metric and appearance value consumed by paint. */
|
|
19
|
+
export declare const inlineBoxStyleSignature: (style: ResolvedInlineBoxStyle) => string;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { ParagraphBlock } from './index.js';
|
|
2
|
+
export declare const INLINE_OBJECT_REPLACEMENT_CHARACTER = "\uFFFC";
|
|
3
|
+
export type ParagraphVisibleRunSlice = {
|
|
4
|
+
runIndex: number;
|
|
5
|
+
fromChar: number;
|
|
6
|
+
toChar: number;
|
|
7
|
+
};
|
|
8
|
+
/**
|
|
9
|
+
* Flattens a paragraph into Document API visible-text coordinates.
|
|
10
|
+
*
|
|
11
|
+
* Text is preserved verbatim in UTF-16. Every non-text run contributes one
|
|
12
|
+
* U+FFFC object-replacement character, regardless of its rendered label.
|
|
13
|
+
*/
|
|
14
|
+
export declare const flattenParagraphVisibleText: (block: ParagraphBlock) => string;
|
|
15
|
+
/**
|
|
16
|
+
* Maps a validated visible-text range to slices in the paragraph's run space.
|
|
17
|
+
* Returns null for non-integer, reversed, negative, or out-of-bounds ranges.
|
|
18
|
+
*/
|
|
19
|
+
export declare const mapVisibleRangeToRunSlices: (block: ParagraphBlock, from: number, to: number) => ParagraphVisibleRunSlice[] | null;
|
|
@@ -5,6 +5,8 @@ import { Run } from '../../contracts/src/index.js';
|
|
|
5
5
|
* Include every run property that affects text measurement or painted output but is not
|
|
6
6
|
* covered elsewhere (e.g. tracked-change / comment keys). When adding a new visual
|
|
7
7
|
* property, update this function only — `cache.ts` and `diff.ts` both depend on it.
|
|
8
|
+
* Paragraph-scoped inline boxes are deliberately keyed by `inline-box-key.ts`,
|
|
9
|
+
* not by this run-scoped helper.
|
|
8
10
|
*
|
|
9
11
|
* @param run - Flow run (text, tab, image, etc.); unknown fields are ignored safely.
|
|
10
12
|
* @returns Stable string encoding bold/italic/underline/strike/color/font/highlight/link.
|
|
@@ -7,18 +7,6 @@ import { FontMeasureContext } from '../../../shared/font-system/src/index.js';
|
|
|
7
7
|
* @returns CSS font string (e.g., "italic bold 16px Arial")
|
|
8
8
|
*/
|
|
9
9
|
export declare function getRunFontString(run: Run, fontContext?: FontMeasureContext): string;
|
|
10
|
-
/**
|
|
11
|
-
* Measure the X position for a specific character offset within a line.
|
|
12
|
-
* Uses Canvas measureText for pixel-perfect accuracy.
|
|
13
|
-
*
|
|
14
|
-
* @param block - The paragraph block containing the line
|
|
15
|
-
* @param line - The line to measure within
|
|
16
|
-
* @param charOffset - Character offset from the start of the line (0-based)
|
|
17
|
-
* @param availableWidthOverride - Optional override for available width
|
|
18
|
-
* @param alignmentOverride - Optional override for text alignment (e.g., 'left' for list items
|
|
19
|
-
* which are always rendered left-aligned in the DOM regardless of paragraph alignment)
|
|
20
|
-
* @returns The X coordinate (in pixels) from the start of the line
|
|
21
|
-
*/
|
|
22
10
|
export declare function measureCharacterX(block: FlowBlock, line: Line, charOffset: number, availableWidthOverride?: number, alignmentOverride?: string, fontContext?: FontMeasureContext): number;
|
|
23
11
|
/**
|
|
24
12
|
* Convert a character offset within a line back to a ProseMirror position.
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { Line, LineInlineBox, ParagraphBlock, Run, TextRun } from '../../../../contracts/src/index.js';
|
|
2
|
+
export declare const markInlineBoxRun: (run: TextRun, lineFrom: number, lineTo: number) => TextRun;
|
|
3
|
+
/** Splits text runs at the segment boundaries emitted for inline-box edges. */
|
|
4
|
+
export declare const splitInlineBoxRuns: (block: ParagraphBlock, line: Line) => Run[] | null;
|
|
5
|
+
/** Returns the resolved inline advance preceding an explicitly positioned text segment. */
|
|
6
|
+
export declare const inlineBoxAdvanceBeforeOffset: (boxes: readonly LineInlineBox[] | undefined, offset: number) => number;
|
|
7
|
+
/** Paints measured LTR inline-box slices on the canonical text leaves. */
|
|
8
|
+
export declare const paintInlineBoxes: (boxes: readonly LineInlineBox[] | undefined, lineElement: HTMLElement, isRtl: boolean) => void;
|
package/dist/public/ui-react.cjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
2
|
-
const require_create_super_doc_ui = require("../chunks/create-super-doc-ui-
|
|
2
|
+
const require_create_super_doc_ui = require("../chunks/create-super-doc-ui-CqGmoMMA.cjs");
|
|
3
3
|
let react = require("react");
|
|
4
4
|
//#region src/public/ui/react.ts
|
|
5
5
|
/**
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { t as createSuperDocUI } from "../chunks/create-super-doc-ui-
|
|
1
|
+
import { t as createSuperDocUI } from "../chunks/create-super-doc-ui-CmOSA_lN.es.js";
|
|
2
2
|
import { createContext, createElement, useCallback, useContext, useEffect, useRef, useState } from "react";
|
|
3
3
|
//#region src/public/ui/react.ts
|
|
4
4
|
/**
|
package/dist/public/ui.cjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
2
|
-
const require_create_super_doc_ui = require("../chunks/create-super-doc-ui-
|
|
2
|
+
const require_create_super_doc_ui = require("../chunks/create-super-doc-ui-CqGmoMMA.cjs");
|
|
3
3
|
exports.BUILT_IN_COMMAND_IDS = require_create_super_doc_ui.BUILT_IN_COMMAND_IDS;
|
|
4
4
|
exports.createSuperDocUI = require_create_super_doc_ui.createSuperDocUI;
|
|
5
5
|
exports.shallowEqual = require_create_super_doc_ui.shallowEqual;
|
package/dist/public/ui.es.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { n as shallowEqual, r as BUILT_IN_COMMAND_IDS, t as createSuperDocUI } from "../chunks/create-super-doc-ui-
|
|
1
|
+
import { n as shallowEqual, r as BUILT_IN_COMMAND_IDS, t as createSuperDocUI } from "../chunks/create-super-doc-ui-CmOSA_lN.es.js";
|
|
2
2
|
export { BUILT_IN_COMMAND_IDS, createSuperDocUI, shallowEqual };
|