@harbour-enterprises/superdoc 0.26.0 → 0.27.0-next.2

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 (35) hide show
  1. package/dist/chunks/{PdfViewer-CqvKvsyF.es.js → PdfViewer-BYzQ-Z8r.es.js} +1 -1
  2. package/dist/chunks/{PdfViewer-CrhOgpnE.cjs → PdfViewer-CaR2rmuW.cjs} +1 -1
  3. package/dist/chunks/{index-DOcW6GE6.es.js → index-DATrA3lt.es.js} +3 -3
  4. package/dist/chunks/{index-DoYL2HX3.cjs → index-EIErxDyE.cjs} +3 -3
  5. package/dist/chunks/{super-editor.es-CMlOhpVU.cjs → super-editor.es-DXEbSokY.cjs} +3365 -794
  6. package/dist/chunks/{super-editor.es-DHf3YrSR.es.js → super-editor.es-DtgJu0CH.es.js} +3360 -789
  7. package/dist/core/types/index.d.ts.map +1 -1
  8. package/dist/style.css +9 -0
  9. package/dist/super-editor/ai-writer.es.js +2 -2
  10. package/dist/super-editor/chunks/{converter-Ceppmafv.js → converter-BupPKWvT.js} +238 -7
  11. package/dist/super-editor/chunks/{docx-zipper-WM-MgP-0.js → docx-zipper-B_zB1qvo.js} +1 -1
  12. package/dist/super-editor/chunks/{editor-DLSIAlHn.js → editor-ByRd7RN8.js} +2557 -217
  13. package/dist/super-editor/chunks/{toolbar-C-kgsiMl.js → toolbar-BOxA8SfG.js} +2 -2
  14. package/dist/super-editor/converter.es.js +1 -1
  15. package/dist/super-editor/docx-zipper.es.js +2 -2
  16. package/dist/super-editor/editor.es.js +3 -3
  17. package/dist/super-editor/file-zipper.es.js +1 -1
  18. package/dist/super-editor/style.css +9 -0
  19. package/dist/super-editor/super-editor/src/core/super-converter/v3/handlers/wp/helpers/decode-image-node-helpers.d.ts +6 -0
  20. package/dist/super-editor/super-editor/src/core/super-converter/v3/handlers/wp/helpers/encode-image-node-helpers.d.ts +14 -0
  21. package/dist/super-editor/super-editor/src/core/super-converter/v3/handlers/wp/helpers/vector-shape-helpers.d.ts +38 -0
  22. package/dist/super-editor/super-editor/src/extensions/index.d.ts +2 -1
  23. package/dist/super-editor/super-editor/src/extensions/tab/helpers/tabDecorations.d.ts +4 -3
  24. package/dist/super-editor/super-editor/src/extensions/vector-shape/VectorShapeView.d.ts +27 -0
  25. package/dist/super-editor/super-editor/src/extensions/vector-shape/index.d.ts +1 -0
  26. package/dist/super-editor/super-editor/src/extensions/vector-shape/vector-shape.d.ts +2 -0
  27. package/dist/super-editor/super-editor.es.js +6 -6
  28. package/dist/super-editor/toolbar.es.js +2 -2
  29. package/dist/super-editor.cjs +1 -1
  30. package/dist/super-editor.es.js +1 -1
  31. package/dist/superdoc.cjs +2 -2
  32. package/dist/superdoc.es.js +2 -2
  33. package/dist/superdoc.umd.js +3440 -869
  34. package/dist/superdoc.umd.js.map +1 -1
  35. package/package.json +1 -1
@@ -1,6 +1,6 @@
1
1
  import { computed, createElementBlock, openBlock, createElementVNode, createCommentVNode, normalizeClass, normalizeStyle, ref, withKeys, unref, withModifiers, createBlock, toDisplayString, withDirectives, vModelText, nextTick, getCurrentInstance, createVNode, readonly, watch, onMounted, onBeforeUnmount, reactive, onBeforeMount, inject, onActivated, onDeactivated, createTextVNode, Fragment, Comment, defineComponent, provide, h, Teleport, toRef, renderSlot, isVNode, shallowRef, watchEffect, mergeProps, Transition, vShow, cloneVNode, Text, renderList, withCtx } from "vue";
2
- import { p as process$1 } from "./converter-Ceppmafv.js";
3
- import { _ as _export_sfc, u as useHighContrastMode, g as global$1 } from "./editor-DLSIAlHn.js";
2
+ import { p as process$1 } from "./converter-BupPKWvT.js";
3
+ import { _ as _export_sfc, u as useHighContrastMode, g as global$1 } from "./editor-ByRd7RN8.js";
4
4
  const sanitizeNumber = (value, defaultNumber) => {
5
5
  let sanitized = value.replace(/[^0-9.]/g, "");
6
6
  sanitized = parseFloat(sanitized);
@@ -1,4 +1,4 @@
1
- import { a5 } from "./chunks/converter-Ceppmafv.js";
1
+ import { a5 } from "./chunks/converter-BupPKWvT.js";
2
2
  import "vue";
3
3
  export {
4
4
  a5 as SuperConverter
@@ -1,5 +1,5 @@
1
- import "./chunks/converter-Ceppmafv.js";
2
- import { D } from "./chunks/docx-zipper-WM-MgP-0.js";
1
+ import "./chunks/converter-BupPKWvT.js";
2
+ import { D } from "./chunks/docx-zipper-B_zB1qvo.js";
3
3
  export {
4
4
  D as default
5
5
  };
@@ -1,6 +1,6 @@
1
- import { E } from "./chunks/editor-DLSIAlHn.js";
2
- import "./chunks/converter-Ceppmafv.js";
3
- import "./chunks/docx-zipper-WM-MgP-0.js";
1
+ import { E } from "./chunks/editor-ByRd7RN8.js";
2
+ import "./chunks/converter-BupPKWvT.js";
3
+ import "./chunks/docx-zipper-B_zB1qvo.js";
4
4
  export {
5
5
  E as Editor
6
6
  };
@@ -1,4 +1,4 @@
1
- import { J as JSZip } from "./chunks/docx-zipper-WM-MgP-0.js";
1
+ import { J as JSZip } from "./chunks/docx-zipper-B_zB1qvo.js";
2
2
  async function createZip(blobs, fileNames) {
3
3
  const zip = new JSZip();
4
4
  blobs.forEach((blob, index) => {
@@ -1195,6 +1195,15 @@ on the right if it is inside shape textbox.
1195
1195
  .ProseMirror.view-mode .sd-structured-content-draggable {
1196
1196
  display: none;
1197
1197
  }
1198
+ .sd-vector-shape {
1199
+ display: inline-block;
1200
+ vertical-align: bottom;
1201
+ }
1202
+ .sd-vector-shape svg {
1203
+ width: 100%;
1204
+ height: 100%;
1205
+ display: block;
1206
+ }
1198
1207
 
1199
1208
  .alignment-buttons[data-v-d84f57b6] {
1200
1209
  display: flex;
@@ -1,3 +1,9 @@
1
+ /**
2
+ * Translates a vectorShape node back to XML.
3
+ * @param {Object} params - Translation parameters
4
+ * @returns {Object} XML node
5
+ */
6
+ export function translateVectorShape(params: any): any;
1
7
  export function translateImageNode(params: any): any;
2
8
  /**
3
9
  * Decodes image into export XML
@@ -4,3 +4,17 @@
4
4
  * @returns {Object|null}
5
5
  */
6
6
  export function handleImageNode(node: any, params: any, isAnchor: any): any | null;
7
+ /**
8
+ * Extracts vector shape data.
9
+ * Parses shape geometry, transformations, and styling information.
10
+ * @param {Object} options - Options
11
+ * @param {Object} options.params - Translator params
12
+ * @param {Object} options.node - The node
13
+ * @param {Object} options.graphicData - The graphicData node
14
+ * @returns {Object|null} A vectorShape node with extracted attributes
15
+ */
16
+ export function getVectorShape({ params, node, graphicData }: {
17
+ params: any;
18
+ node: any;
19
+ graphicData: any;
20
+ }): any | null;
@@ -0,0 +1,38 @@
1
+ /**
2
+ * Converts a theme color name to its corresponding hex color value.
3
+ * Uses the default Office theme color palette.
4
+ * @param {string} name - The theme color name
5
+ * @returns {string} Hex color value
6
+ */
7
+ export function getThemeColor(name: string): string;
8
+ /**
9
+ * Applies a color modifier to a hex color.
10
+ * Used to transform Office theme colors according to DrawingML specifications.
11
+ * @param {string} hexColor - The hex color to modify
12
+ * @param {'shade'|'tint'|'lumMod'|'lumOff'} modifier - The type of color modification to apply
13
+ * @param {string|number} value - The modifier value in Office format
14
+ * @returns {string} The modified hex color
15
+ */
16
+ export function applyColorModifier(hexColor: string, modifier: "shade" | "tint" | "lumMod" | "lumOff", value: string | number): string;
17
+ /**
18
+ * Extracts the stroke width from a shape's properties (spPr).
19
+ * @param {Object} spPr - The shape properties element
20
+ * @returns {number} The stroke width in pixels, or 1 if not found
21
+ */
22
+ export function extractStrokeWidth(spPr: any): number;
23
+ /**
24
+ * Extracts the stroke color from a shape's properties.
25
+ * Checks direct stroke definition in spPr first, then falls back to style reference.
26
+ * @param {Object} spPr - The shape properties element
27
+ * @param {Object} style - The shape style element (wps:style)
28
+ * @returns {string|null} Hex color value
29
+ */
30
+ export function extractStrokeColor(spPr: any, style: any): string | null;
31
+ /**
32
+ * Extracts the fill color from a shape's properties.
33
+ * Checks direct fill definition in spPr first, then falls back to style reference.
34
+ * @param {Object} spPr - The shape properties element
35
+ * @param {Object} style - The shape style element (wps:style)
36
+ * @returns {string|null} Hex color value
37
+ */
38
+ export function extractFillColor(spPr: any, style: any): string | null;
@@ -64,4 +64,5 @@ import { DocumentSection } from './structured-content/index.js';
64
64
  import { NodeResizer } from './noderesizer/index.js';
65
65
  import { CustomSelection } from './custom-selection/index.js';
66
66
  import { TextTransform } from './text-transform/index.js';
67
- export { History, Heading, Document, Text, Run, BulletList, OrderedList, ListItem, Paragraph, CommentRangeStart, CommentRangeEnd, CommentReference, TabNode, LineBreak, HardBreak, Bold, Italic, Underline, Highlight, Strike, Color, FontFamily, FontSize, TextAlign, TextIndent, TextStyle, LineHeight, FormatCommands, CommentsPlugin, Gapcursor, Table, TableRow, TableCell, TableHeader, Placeholder, DropCursor, BlockNode, FieldAnnotation, fieldAnnotationHelpers, Image, BookmarkStart, BookmarkEnd, PopoverPlugin, Mention, Collaboration, CollaborationCursor, TrackChanges, TrackInsert, TrackDelete, TrackFormat, CommentsMark, trackChangesHelpers, AiMark, AiAnimationMark, AiLoaderNode, AiPlugin, Search, StructuredContent, StructuredContentBlock, StructuredContentCommands, DocumentSection, NodeResizer, CustomSelection, TextTransform };
67
+ import { VectorShape } from './vector-shape/index.js';
68
+ export { History, Heading, Document, Text, Run, BulletList, OrderedList, ListItem, Paragraph, CommentRangeStart, CommentRangeEnd, CommentReference, TabNode, LineBreak, HardBreak, Bold, Italic, Underline, Highlight, Strike, Color, FontFamily, FontSize, TextAlign, TextIndent, TextStyle, LineHeight, FormatCommands, CommentsPlugin, Gapcursor, Table, TableRow, TableCell, TableHeader, Placeholder, DropCursor, BlockNode, FieldAnnotation, fieldAnnotationHelpers, Image, BookmarkStart, BookmarkEnd, PopoverPlugin, Mention, Collaboration, CollaborationCursor, TrackChanges, TrackInsert, TrackDelete, TrackFormat, CommentsMark, trackChangesHelpers, AiMark, AiAnimationMark, AiLoaderNode, AiPlugin, Search, StructuredContent, StructuredContentBlock, StructuredContentCommands, DocumentSection, NodeResizer, CustomSelection, TextTransform, VectorShape };
@@ -2,10 +2,11 @@ export function getParagraphContext($pos: any, cache: any, helpers: any): any;
2
2
  export function flattenParagraph(paragraph: any, paragraphStartPos: any): any[];
3
3
  export function findNextTabIndex(flattened: any, fromIndex: any): any;
4
4
  export function findDecimalBreakPos(flattened: any, startIndex: any, breakChar: any): any;
5
- export function measureRangeWidth(view: any, from: any, to: any): number;
6
- export function getIndentWidth(view: any, paragraphStartPos: any, indentAttrs?: {}): number;
5
+ export function measureRangeWidth(view: any, from: any, to: any, coordCache?: any, domPosCache?: any): number;
6
+ export function getIndentWidth(view: any, paragraphStartPos: any, indentAttrs?: {}, coordCache?: any, domPosCache?: any): number;
7
7
  export function calculateIndentFallback(indentAttrs?: {}): number;
8
- export function getLeftCoord(view: any, pos: any): any;
8
+ export function getLeftCoord(view: any, pos: any, coordCache?: any, domPosCache?: any): any;
9
+ export function getCachedDomAtPos(view: any, pos: any, domPosCache?: any): any;
9
10
  export function calcTabHeight(pos: any): string;
10
11
  export const defaultTabDistance: 48;
11
12
  export const defaultLineLength: 816;
@@ -0,0 +1,27 @@
1
+ export class VectorShapeView {
2
+ constructor(props: any);
3
+ node: any;
4
+ view: any;
5
+ getPos: any;
6
+ decorations: any;
7
+ innerDecorations: any;
8
+ editor: any;
9
+ extension: any;
10
+ htmlAttributes: any;
11
+ root: any;
12
+ mount(props: any): void;
13
+ get dom(): any;
14
+ get contentDOM(): any;
15
+ createElement(): {
16
+ element: HTMLSpanElement;
17
+ };
18
+ generateTransform(): string[];
19
+ generateSVG({ kind, fillColor, strokeColor, strokeWidth }: {
20
+ kind: any;
21
+ fillColor: any;
22
+ strokeColor: any;
23
+ strokeWidth: any;
24
+ }): any;
25
+ buildView(): void;
26
+ update(): boolean;
27
+ }
@@ -0,0 +1 @@
1
+ export * from "./vector-shape";
@@ -0,0 +1,2 @@
1
+ export const VectorShape: Node;
2
+ import { Node } from '@core/index';
@@ -9,14 +9,14 @@ var __privateGet = (obj, member, getter) => (__accessCheck(obj, member, "read fr
9
9
  var __privateAdd = (obj, member, value) => member.has(obj) ? __typeError("Cannot add the same private member more than once") : member instanceof WeakSet ? member.add(obj) : member.set(obj, value);
10
10
  var __privateMethod = (obj, member, method) => (__accessCheck(obj, member, "access private method"), method);
11
11
  var _SuperToolbar_instances, initToolbarGroups_fn, _interceptedCommands, makeToolbarItems_fn, initDefaultFonts_fn, updateHighlightColors_fn, deactivateAll_fn, updateToolbarHistory_fn, enrichTrackedChanges_fn, runCommandWithArgumentOnly_fn;
12
- import { aA as getDefaultExportFromCjs, V as v4, T as TextSelection$1, v as getMarkRange, aD as vClickOutside, H as findParentNode, aE as getActiveFormatting, av as isInTable, aF as readFromClipboard, aG as handleClipboardPaste, aH as getFileObject, aI as runPropertyTranslators, aJ as translator, aK as translator$1, aL as translator$2, aM as translator$3, aN as translator$4, aO as translator$5, aP as translator$6, aQ as translator$7, aR as translator$8, aS as translator$9, aT as translator$a, aU as translator$b, aV as translator$c, aW as translator$d, aX as translator$e, aY as commentRangeEndTranslator, aZ as commentRangeStartTranslator, a_ as translator$f, a$ as translator$g, b0 as translator$h, b1 as translator$i, b2 as translator$j, b3 as translator$k, b4 as translator$l, b5 as translator$m, b6 as translator$n, b7 as translator$o, b8 as translator$p, b9 as translator$q, ba as translator$r, bb as translator$s, bc as translator$t, bd as translator$u, be as translator$v, bf as translator$w, bg as translator$x, bh as translator$y, bi as translator$z, bj as translator$A, bk as translator$B, bl as translator$C, bm as translator$D, bn as translator$E, bo as translator$F, bp as translator$G, bq as translator$H, br as translator$I, bs as translator$J, bt as translator$K, bu as translator$L, bv as translator$M, bw as translator$N, bx as translator$O, by as translator$P, bz as translator$Q, bA as translator$R, bB as translator$S, bC as translator$T, bD as translator$U, bE as translator$V, bF as translator$W, bG as translator$X, bH as translator$Y, bI as translator$Z, bJ as translator$_, bK as translator$$, bL as translator$10, bM as translator$11, bN as translator$12, bO as translator$13, bP as translator$14, bQ as translator$15, bR as translator$16, bS as translator$17, bT as translator$18, bU as translator$19, bV as translator$1a, bW as translator$1b, bX as translator$1c, bY as translator$1d, bZ as translator$1e, b_ as translator$1f, b$ as translator$1g, c0 as translator$1h, P as PluginKey, a as Plugin } from "./chunks/converter-Ceppmafv.js";
13
- import { c1, a5, i, a2 } from "./chunks/converter-Ceppmafv.js";
14
- import { _ as _export_sfc, u as useHighContrastMode, a as getQuickFormatList, b as generateLinkedStyleString, c as getFileOpener, d as checkAndProcessImage, r as replaceSelectionWithImagePlaceholder, e as uploadAndInsertImage, f as collectTrackedChanges, i as isTrackedChangeActionAllowed, y as yUndoPluginKey, h as undoDepth, j as redoDepth, k as collectTrackedChangesForContext, s as shouldBypassContextMenu, S as SlashMenuPluginKey, E as Editor, l as getStarterExtensions, P as Placeholder, m as getRichTextExtensions, D as DecorationSet, n as Decoration, M as Mark, o as Extension, A as Attribute, N as Node } from "./chunks/editor-DLSIAlHn.js";
15
- import { t, C, v, T, p, w, q } from "./chunks/editor-DLSIAlHn.js";
12
+ import { aA as getDefaultExportFromCjs, V as v4, T as TextSelection$1, v as getMarkRange, aD as vClickOutside, H as findParentNode, aE as getActiveFormatting, av as isInTable, aF as readFromClipboard, aG as handleClipboardPaste, aH as getFileObject, aI as runPropertyTranslators, aJ as translator, aK as translator$1, aL as translator$2, aM as translator$3, aN as translator$4, aO as translator$5, aP as translator$6, aQ as translator$7, aR as translator$8, aS as translator$9, aT as translator$a, aU as translator$b, aV as translator$c, aW as translator$d, aX as translator$e, aY as commentRangeEndTranslator, aZ as commentRangeStartTranslator, a_ as translator$f, a$ as translator$g, b0 as translator$h, b1 as translator$i, b2 as translator$j, b3 as translator$k, b4 as translator$l, b5 as translator$m, b6 as translator$n, b7 as translator$o, b8 as translator$p, b9 as translator$q, ba as translator$r, bb as translator$s, bc as translator$t, bd as translator$u, be as translator$v, bf as translator$w, bg as translator$x, bh as translator$y, bi as translator$z, bj as translator$A, bk as translator$B, bl as translator$C, bm as translator$D, bn as translator$E, bo as translator$F, bp as translator$G, bq as translator$H, br as translator$I, bs as translator$J, bt as translator$K, bu as translator$L, bv as translator$M, bw as translator$N, bx as translator$O, by as translator$P, bz as translator$Q, bA as translator$R, bB as translator$S, bC as translator$T, bD as translator$U, bE as translator$V, bF as translator$W, bG as translator$X, bH as translator$Y, bI as translator$Z, bJ as translator$_, bK as translator$$, bL as translator$10, bM as translator$11, bN as translator$12, bO as translator$13, bP as translator$14, bQ as translator$15, bR as translator$16, bS as translator$17, bT as translator$18, bU as translator$19, bV as translator$1a, bW as translator$1b, bX as translator$1c, bY as translator$1d, bZ as translator$1e, b_ as translator$1f, b$ as translator$1g, c0 as translator$1h, P as PluginKey, a as Plugin } from "./chunks/converter-BupPKWvT.js";
13
+ import { c1, a5, i, a2 } from "./chunks/converter-BupPKWvT.js";
14
+ import { _ as _export_sfc, u as useHighContrastMode, a as getQuickFormatList, b as generateLinkedStyleString, c as getFileOpener, d as checkAndProcessImage, r as replaceSelectionWithImagePlaceholder, e as uploadAndInsertImage, f as collectTrackedChanges, i as isTrackedChangeActionAllowed, y as yUndoPluginKey, h as undoDepth, j as redoDepth, k as collectTrackedChangesForContext, s as shouldBypassContextMenu, S as SlashMenuPluginKey, E as Editor, l as getStarterExtensions, P as Placeholder, m as getRichTextExtensions, D as DecorationSet, n as Decoration, M as Mark, o as Extension, A as Attribute, N as Node } from "./chunks/editor-ByRd7RN8.js";
15
+ import { t, C, v, T, p, w, q } from "./chunks/editor-ByRd7RN8.js";
16
16
  import { ref, onMounted, createElementBlock, openBlock, normalizeClass, unref, Fragment, renderList, createElementVNode, withModifiers, toDisplayString, createCommentVNode, normalizeStyle, computed, watch, withDirectives, withKeys, vModelText, createTextVNode, createVNode, h, createApp, markRaw, nextTick, onBeforeUnmount, reactive, onUnmounted, renderSlot, shallowRef, createBlock, withCtx, resolveDynamicComponent, normalizeProps, guardReactiveProps } from "vue";
17
- import { t as toolbarIcons, s as sanitizeNumber, T as Toolbar, p as plusIconSvg, a as trashIconSvg, b as borderNoneIconSvg, c as arrowsToDotIconSvg, d as arrowsLeftRightIconSvg, w as wrenchIconSvg, m as magicWandIcon, e as checkIconSvg$1, x as xMarkIconSvg, l as linkIconSvg, f as tableIconSvg, g as scissorsIconSvg, h as copyIconSvg, i as pasteIconSvg, u as useMessage, N as NSkeleton } from "./chunks/toolbar-C-kgsiMl.js";
17
+ import { t as toolbarIcons, s as sanitizeNumber, T as Toolbar, p as plusIconSvg, a as trashIconSvg, b as borderNoneIconSvg, c as arrowsToDotIconSvg, d as arrowsLeftRightIconSvg, w as wrenchIconSvg, m as magicWandIcon, e as checkIconSvg$1, x as xMarkIconSvg, l as linkIconSvg, f as tableIconSvg, g as scissorsIconSvg, h as copyIconSvg, i as pasteIconSvg, u as useMessage, N as NSkeleton } from "./chunks/toolbar-BOxA8SfG.js";
18
18
  import AIWriter from "./ai-writer.es.js";
19
- import { D } from "./chunks/docx-zipper-WM-MgP-0.js";
19
+ import { D } from "./chunks/docx-zipper-B_zB1qvo.js";
20
20
  import { createZip } from "./file-zipper.es.js";
21
21
  var eventemitter3 = { exports: {} };
22
22
  var hasRequiredEventemitter3;
@@ -1,6 +1,6 @@
1
1
  import "vue";
2
- import { T } from "./chunks/toolbar-C-kgsiMl.js";
3
- import "./chunks/editor-DLSIAlHn.js";
2
+ import { T } from "./chunks/toolbar-BOxA8SfG.js";
3
+ import "./chunks/editor-ByRd7RN8.js";
4
4
  export {
5
5
  T as default
6
6
  };
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
- const superEditor_es = require("./chunks/super-editor.es-CMlOhpVU.cjs");
3
+ const superEditor_es = require("./chunks/super-editor.es-DXEbSokY.cjs");
4
4
  require("./chunks/vue-DKMj1I9B.cjs");
5
5
  exports.AIWriter = superEditor_es.AIWriter;
6
6
  exports.AnnotatorHelpers = superEditor_es.AnnotatorHelpers;
@@ -1,4 +1,4 @@
1
- import { A, a, _, C, D, E, b, S, c, d, e, f, g, T, h, i, j, k, l, m, n, o, p, r, q } from "./chunks/super-editor.es-DHf3YrSR.es.js";
1
+ import { A, a, _, C, D, E, b, S, c, d, e, f, g, T, h, i, j, k, l, m, n, o, p, r, q } from "./chunks/super-editor.es-DtgJu0CH.es.js";
2
2
  import "./chunks/vue-ZWZLQtoU.es.js";
3
3
  export {
4
4
  A as AIWriter,
package/dist/superdoc.cjs CHANGED
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
- const superEditor_es = require("./chunks/super-editor.es-CMlOhpVU.cjs");
4
- const superdoc = require("./chunks/index-DoYL2HX3.cjs");
3
+ const superEditor_es = require("./chunks/super-editor.es-DXEbSokY.cjs");
4
+ const superdoc = require("./chunks/index-EIErxDyE.cjs");
5
5
  require("./chunks/vue-DKMj1I9B.cjs");
6
6
  const blankDocx = require("./chunks/blank-docx-DfW3Eeh2.cjs");
7
7
  exports.AnnotatorHelpers = superEditor_es.AnnotatorHelpers;
@@ -1,5 +1,5 @@
1
- import { a, E, b, S, d, i, j, n, r, p, q } from "./chunks/super-editor.es-DHf3YrSR.es.js";
2
- import { D, H, P, S as S2, m, l } from "./chunks/index-DOcW6GE6.es.js";
1
+ import { a, E, b, S, d, i, j, n, r, p, q } from "./chunks/super-editor.es-DtgJu0CH.es.js";
2
+ import { D, H, P, S as S2, m, l } from "./chunks/index-DATrA3lt.es.js";
3
3
  import "./chunks/vue-ZWZLQtoU.es.js";
4
4
  import { B } from "./chunks/blank-docx-ABm6XYAA.es.js";
5
5
  export {