@harbour-enterprises/superdoc 0.20.0-next.4 → 0.20.0-next.5

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 (27) hide show
  1. package/dist/chunks/{PdfViewer-Ne_-LxpG.cjs → PdfViewer-Blwty0A0.cjs} +1 -1
  2. package/dist/chunks/{PdfViewer-BjZBgs8x.es.js → PdfViewer-DcPZsBsK.es.js} +1 -1
  3. package/dist/chunks/{index-OFvCtpf7.cjs → index-BB5vhzVT.cjs} +2 -2
  4. package/dist/chunks/{index-BVjAJUtV.es.js → index-BZzn2Rcn.es.js} +2 -2
  5. package/dist/chunks/{super-editor.es-DgTNVbvS.es.js → super-editor.es-BTcVSa_f.es.js} +1056 -843
  6. package/dist/chunks/{super-editor.es-CCU9etUT.cjs → super-editor.es-BgBNGRxg.cjs} +1056 -843
  7. package/dist/core/SuperDoc.d.ts.map +1 -1
  8. package/dist/super-editor/ai-writer.es.js +1 -1
  9. package/dist/super-editor/chunks/{editor-C1C_smD4.js → editor-hh7sL4Wv.js} +632 -432
  10. package/dist/super-editor/chunks/{toolbar-pP4CmNcz.js → toolbar-B-apzt27.js} +1 -1
  11. package/dist/super-editor/editor.es.js +1 -1
  12. package/dist/super-editor/src/extensions/image/imageHelpers/handleBase64.d.ts +1 -0
  13. package/dist/super-editor/src/extensions/image/imageHelpers/handleUrl.d.ts +2 -0
  14. package/dist/super-editor/src/extensions/image/imageHelpers/imageRegistrationPlugin.d.ts +11 -0
  15. package/dist/super-editor/src/extensions/image/imageHelpers/index.d.ts +1 -1
  16. package/dist/super-editor/src/extensions/image/imageHelpers/processUploadedImage.d.ts +2 -2
  17. package/dist/super-editor/src/extensions/image/imageHelpers/startImageUpload.d.ts +18 -23
  18. package/dist/super-editor/super-editor.es.js +60 -45
  19. package/dist/super-editor/toolbar.es.js +2 -2
  20. package/dist/super-editor.cjs +1 -1
  21. package/dist/super-editor.es.js +1 -1
  22. package/dist/superdoc.cjs +2 -2
  23. package/dist/superdoc.es.js +2 -2
  24. package/dist/superdoc.umd.js +1684 -1471
  25. package/dist/superdoc.umd.js.map +1 -1
  26. package/package.json +1 -1
  27. package/dist/super-editor/src/extensions/image/imageHelpers/imagePlaceholderPlugin.d.ts +0 -5
@@ -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
2
  import { p as process$1 } from "./converter-BPTfSIJf.js";
3
- import { _ as _export_sfc, u as useHighContrastMode, g as global$1 } from "./editor-C1C_smD4.js";
3
+ import { _ as _export_sfc, u as useHighContrastMode, g as global$1 } from "./editor-hh7sL4Wv.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 { E } from "./chunks/editor-C1C_smD4.js";
1
+ import { E } from "./chunks/editor-hh7sL4Wv.js";
2
2
  import "./chunks/converter-BPTfSIJf.js";
3
3
  import "./chunks/docx-zipper-ikgI-2vM.js";
4
4
  export {
@@ -0,0 +1 @@
1
+ export function base64ToFile(base64String: any): File;
@@ -0,0 +1,2 @@
1
+ export function urlToFile(url: string, filename?: string, mimeType?: string): Promise<File | null>;
2
+ export function validateUrlAccessibility(url: string): Promise<boolean>;
@@ -0,0 +1,11 @@
1
+ export function ImageRegistrationPlugin({ editor }: {
2
+ editor: any;
3
+ }): Plugin<{
4
+ set: DecorationSet;
5
+ }>;
6
+ export function findPlaceholder(state: any, id: any): any;
7
+ export function removeImagePlaceholder(state: any, tr: any, id: any): any;
8
+ export function addImagePlaceholder(state: any, tr: any, id: any, pos: any): any;
9
+ export function getImageRegistrationMetaType(tr: any): any;
10
+ import { DecorationSet } from 'prosemirror-view';
11
+ import { Plugin } from 'prosemirror-state';
@@ -1,6 +1,6 @@
1
1
  export * from "./getFileOpener.js";
2
2
  export * from "./startImageUpload.js";
3
3
  export * from "./handleImageUpload.js";
4
- export * from "./imagePlaceholderPlugin.js";
4
+ export * from "./imageRegistrationPlugin.js";
5
5
  export * from "./processUploadedImage.js";
6
6
  export * from "./imagePositionPlugin.js";
@@ -1,2 +1,2 @@
1
- export function processUploadedImage(fileData: string | File, editor: any): Promise<string | any>;
2
- export function getAllowedImageDimensions(width: number, height: number, editor: any): any;
1
+ export function processUploadedImage(fileData: string | File, getMaxContentSize: Function): Promise<string | any>;
2
+ export function getAllowedImageDimensions(width: number, height: number, getMaxContentSize: Function): any;
@@ -1,27 +1,22 @@
1
- /**
2
- * Uploads an image and inserts it into the document
3
- * @category Helper
4
- * @param {Object} params - Upload parameters
5
- * @param {Object} params.editor - Editor instance
6
- * @param {Object} params.view - Editor view
7
- * @param {File} params.file - Processed image file
8
- * @param {Object} params.size - Image dimensions
9
- * @param {Function} params.uploadHandler - Function to handle the upload
10
- * @returns {Promise<void>}
11
- * @example
12
- * await uploadImage({ editor, view, file, size, uploadHandler });
13
- * @note Shows placeholder during upload
14
- * @note Handles collaboration mode image sharing
15
- */
16
- export function uploadImage({ editor, view, file, size, uploadHandler }: {
17
- editor: any;
1
+ export function replaceSelectionWithImagePlaceholder({ editorOptions, view, id }: {
2
+ editorOptions: any;
18
3
  view: any;
19
- file: File;
20
- size: any;
21
- uploadHandler: Function;
22
- }): Promise<void>;
23
- export function startImageUpload({ editor, view, file }: {
4
+ id: any;
5
+ }): void;
6
+ export function uploadAndInsertImage({ editor, view, file, size, id }: {
24
7
  editor: any;
25
8
  view: any;
26
- file: File;
9
+ file: any;
10
+ size: any;
11
+ id: any;
27
12
  }): Promise<void>;
13
+ export function checkAndProcessImage({ getMaxContentSize, file }: {
14
+ getMaxContentSize: any;
15
+ file: any;
16
+ }): Promise<{
17
+ file: any;
18
+ size: {
19
+ width: any;
20
+ height: any;
21
+ };
22
+ }>;
@@ -11,10 +11,10 @@ var __privateMethod = (obj, member, method) => (__accessCheck(obj, member, "acce
11
11
  var _SuperToolbar_instances, initToolbarGroups_fn, _interceptedCommands, makeToolbarItems_fn, initDefaultFonts_fn, updateHighlightColors_fn, deactivateAll_fn, updateToolbarHistory_fn, runCommandWithArgumentOnly_fn;
12
12
  import { ay as getDefaultExportFromCjs, V as v4, T as TextSelection$1, v as getMarkRange, aB as vClickOutside, H as findParentNode, aC as getActiveFormatting, ar as isInTable, aD as readFromClipboard, aE as handleClipboardPaste, aF as getFileObject, a as Plugin } from "./chunks/converter-BPTfSIJf.js";
13
13
  import { aG, a5, i, a2, aH } from "./chunks/converter-BPTfSIJf.js";
14
- import { _ as _export_sfc, u as useHighContrastMode, a as getQuickFormatList, b as generateLinkedStyleString, c as getFileOpener, s as startImageUpload, y as yUndoPluginKey, d as undoDepth, r as redoDepth, S as SlashMenuPluginKey, E as Editor, e as getStarterExtensions, P as Placeholder, f as getRichTextExtensions, M as Mark, h as Extension, A as Attribute, N as Node } from "./chunks/editor-C1C_smD4.js";
15
- import { k, C, l, T, i as i2, m, j } from "./chunks/editor-C1C_smD4.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, y as yUndoPluginKey, f as undoDepth, h as redoDepth, S as SlashMenuPluginKey, E as Editor, i as getStarterExtensions, P as Placeholder, j as getRichTextExtensions, M as Mark, k as Extension, A as Attribute, N as Node } from "./chunks/editor-hh7sL4Wv.js";
15
+ import { n, C, o, T, l, p, m } from "./chunks/editor-hh7sL4Wv.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, m as magicWandIcon, p as plusIconSvg, a as trashIconSvg, l as linkIconSvg, b as tableIconSvg, c as scissorsIconSvg, d as copyIconSvg, e as pasteIconSvg, f as borderNoneIconSvg, g as arrowsToDotIconSvg, h as arrowsLeftRightIconSvg, w as wrenchIconSvg, u as useMessage, N as NSkeleton } from "./chunks/toolbar-pP4CmNcz.js";
17
+ import { t as toolbarIcons, s as sanitizeNumber, T as Toolbar, m as magicWandIcon, p as plusIconSvg, a as trashIconSvg, l as linkIconSvg, b as tableIconSvg, c as scissorsIconSvg, d as copyIconSvg, e as pasteIconSvg, f as borderNoneIconSvg, g as arrowsToDotIconSvg, h as arrowsLeftRightIconSvg, w as wrenchIconSvg, u as useMessage, N as NSkeleton } from "./chunks/toolbar-B-apzt27.js";
18
18
  import AIWriter from "./ai-writer.es.js";
19
19
  import { D } from "./chunks/docx-zipper-ikgI-2vM.js";
20
20
  import { createZip } from "./file-zipper.es.js";
@@ -69,8 +69,8 @@ function requireEventemitter3() {
69
69
  var evt = prefix ? prefix + event : event, handlers = this._events[evt];
70
70
  if (!handlers) return [];
71
71
  if (handlers.fn) return [handlers.fn];
72
- for (var i3 = 0, l2 = handlers.length, ee = new Array(l2); i3 < l2; i3++) {
73
- ee[i3] = handlers[i3].fn;
72
+ for (var i2 = 0, l2 = handlers.length, ee = new Array(l2); i2 < l2; i2++) {
73
+ ee[i2] = handlers[i2].fn;
74
74
  }
75
75
  return ee;
76
76
  };
@@ -83,7 +83,7 @@ function requireEventemitter3() {
83
83
  EventEmitter2.prototype.emit = function emit(event, a1, a22, a3, a4, a52) {
84
84
  var evt = prefix ? prefix + event : event;
85
85
  if (!this._events[evt]) return false;
86
- var listeners = this._events[evt], len = arguments.length, args, i3;
86
+ var listeners = this._events[evt], len = arguments.length, args, i2;
87
87
  if (listeners.fn) {
88
88
  if (listeners.once) this.removeListener(event, listeners.fn, void 0, true);
89
89
  switch (len) {
@@ -100,32 +100,32 @@ function requireEventemitter3() {
100
100
  case 6:
101
101
  return listeners.fn.call(listeners.context, a1, a22, a3, a4, a52), true;
102
102
  }
103
- for (i3 = 1, args = new Array(len - 1); i3 < len; i3++) {
104
- args[i3 - 1] = arguments[i3];
103
+ for (i2 = 1, args = new Array(len - 1); i2 < len; i2++) {
104
+ args[i2 - 1] = arguments[i2];
105
105
  }
106
106
  listeners.fn.apply(listeners.context, args);
107
107
  } else {
108
- var length = listeners.length, j2;
109
- for (i3 = 0; i3 < length; i3++) {
110
- if (listeners[i3].once) this.removeListener(event, listeners[i3].fn, void 0, true);
108
+ var length = listeners.length, j;
109
+ for (i2 = 0; i2 < length; i2++) {
110
+ if (listeners[i2].once) this.removeListener(event, listeners[i2].fn, void 0, true);
111
111
  switch (len) {
112
112
  case 1:
113
- listeners[i3].fn.call(listeners[i3].context);
113
+ listeners[i2].fn.call(listeners[i2].context);
114
114
  break;
115
115
  case 2:
116
- listeners[i3].fn.call(listeners[i3].context, a1);
116
+ listeners[i2].fn.call(listeners[i2].context, a1);
117
117
  break;
118
118
  case 3:
119
- listeners[i3].fn.call(listeners[i3].context, a1, a22);
119
+ listeners[i2].fn.call(listeners[i2].context, a1, a22);
120
120
  break;
121
121
  case 4:
122
- listeners[i3].fn.call(listeners[i3].context, a1, a22, a3);
122
+ listeners[i2].fn.call(listeners[i2].context, a1, a22, a3);
123
123
  break;
124
124
  default:
125
- if (!args) for (j2 = 1, args = new Array(len - 1); j2 < len; j2++) {
126
- args[j2 - 1] = arguments[j2];
125
+ if (!args) for (j = 1, args = new Array(len - 1); j < len; j++) {
126
+ args[j - 1] = arguments[j];
127
127
  }
128
- listeners[i3].fn.apply(listeners[i3].context, args);
128
+ listeners[i2].fn.apply(listeners[i2].context, args);
129
129
  }
130
130
  }
131
131
  }
@@ -150,9 +150,9 @@ function requireEventemitter3() {
150
150
  clearEvent(this, evt);
151
151
  }
152
152
  } else {
153
- for (var i3 = 0, events = [], length = listeners.length; i3 < length; i3++) {
154
- if (listeners[i3].fn !== fn || once && !listeners[i3].once || context && listeners[i3].context !== context) {
155
- events.push(listeners[i3]);
153
+ for (var i2 = 0, events = [], length = listeners.length; i2 < length; i2++) {
154
+ if (listeners[i2].fn !== fn || once && !listeners[i2].once || context && listeners[i2].context !== context) {
155
+ events.push(listeners[i2]);
156
156
  }
157
157
  }
158
158
  if (events.length) this._events[evt] = events.length === 1 ? events[0] : events;
@@ -1145,8 +1145,8 @@ const _sfc_main$7 = {
1145
1145
  const selectGridItems = (allItems, cols, rows) => {
1146
1146
  selectedCols.value = cols;
1147
1147
  selectedRows.value = rows;
1148
- for (let i3 = 0; i3 < allItems.length; i3++) {
1149
- let item = allItems[i3];
1148
+ for (let i2 = 0; i2 < allItems.length; i2++) {
1149
+ let item = allItems[i2];
1150
1150
  let itemsCols = parseInt(item.dataset.cols, 10);
1151
1151
  let itemsRows = parseInt(item.dataset.rows, 10);
1152
1152
  if (itemsCols <= cols && itemsRows <= rows) {
@@ -1223,20 +1223,20 @@ const _sfc_main$7 = {
1223
1223
  onMouseover: onTableGridMouseOver,
1224
1224
  "data-grid": "true"
1225
1225
  }, [
1226
- (openBlock(), createElementBlock(Fragment, null, renderList(5, (i3) => {
1227
- return openBlock(), createElementBlock(Fragment, { key: i3 }, [
1228
- (openBlock(), createElementBlock(Fragment, null, renderList(5, (n) => {
1226
+ (openBlock(), createElementBlock(Fragment, null, renderList(5, (i2) => {
1227
+ return openBlock(), createElementBlock(Fragment, { key: i2 }, [
1228
+ (openBlock(), createElementBlock(Fragment, null, renderList(5, (n2) => {
1229
1229
  return createElementVNode("div", {
1230
1230
  class: "toolbar-table-grid__item",
1231
- key: `${i3}_${n}`,
1232
- "data-cols": n,
1233
- "data-rows": i3,
1231
+ key: `${i2}_${n2}`,
1232
+ "data-cols": n2,
1233
+ "data-rows": i2,
1234
1234
  "data-item": "true",
1235
1235
  ref_for: true,
1236
1236
  ref_key: "tableGridItems",
1237
1237
  ref: tableGridItems,
1238
- onKeydown: withModifiers((event) => handleKeyDown(event, n, i3), ["prevent"]),
1239
- onClick: withModifiers(($event) => handleClick({ cols: n, rows: i3 }), ["stop", "prevent"])
1238
+ onKeydown: withModifiers((event) => handleKeyDown(event, n2, i2), ["prevent"]),
1239
+ onClick: withModifiers(($event) => handleClick({ cols: n2, rows: i2 }), ["stop", "prevent"])
1240
1240
  }, null, 40, _hoisted_1$6);
1241
1241
  }), 64))
1242
1242
  ], 64);
@@ -1457,7 +1457,7 @@ const makeDefaultItems = ({
1457
1457
  onActivate: ({ fontFamily }) => {
1458
1458
  if (!fontFamily) return;
1459
1459
  fontButton.label.value = fontFamily;
1460
- const foundFont = fontOptions.find((i3) => i3.label === fontFamily);
1460
+ const foundFont = fontOptions.find((i2) => i2.label === fontFamily);
1461
1461
  if (foundFont) {
1462
1462
  fontButton.selectedValue.value = foundFont.key;
1463
1463
  } else {
@@ -1543,8 +1543,8 @@ const makeDefaultItems = ({
1543
1543
  if (sanitizedValue < 8) sanitizedValue = 8;
1544
1544
  if (sanitizedValue > 96) sanitizedValue = 96;
1545
1545
  let sanitizedValueStr = String(sanitizedValue);
1546
- const foundSize = fontSizeOptions.find((i3) => {
1547
- return i3.label === sanitizedValueStr || i3.key === sanitizedValueStr;
1546
+ const foundSize = fontSizeOptions.find((i2) => {
1547
+ return i2.label === sanitizedValueStr || i2.key === sanitizedValueStr;
1548
1548
  });
1549
1549
  if (foundSize) {
1550
1550
  fontSize.selectedValue.value = foundSize.key;
@@ -2643,10 +2643,25 @@ class SuperToolbar extends EventEmitter {
2643
2643
  if (!result?.file) {
2644
2644
  return;
2645
2645
  }
2646
- startImageUpload({
2646
+ const { size, file } = await checkAndProcessImage({
2647
+ file: result.file,
2648
+ getMaxContentSize: () => this.activeEditor.getMaxContentSize()
2649
+ });
2650
+ if (!file) {
2651
+ return;
2652
+ }
2653
+ const id = {};
2654
+ replaceSelectionWithImagePlaceholder({
2655
+ view: this.activeEditor.view,
2656
+ editorOptions: this.activeEditor.options,
2657
+ id
2658
+ });
2659
+ await uploadAndInsertImage({
2647
2660
  editor: this.activeEditor,
2648
2661
  view: this.activeEditor.view,
2649
- file: result.file
2662
+ file,
2663
+ size,
2664
+ id
2650
2665
  });
2651
2666
  },
2652
2667
  /**
@@ -3977,11 +3992,11 @@ const _sfc_main$3 = {
3977
3992
  pageMargins.value = docMargins;
3978
3993
  rightHandle.x = docSize.width * 96 - docMargins.right * 96;
3979
3994
  leftHandle.x = docMargins.left * 96;
3980
- for (let i3 = 0; i3 < docSize.width; i3++) {
3995
+ for (let i2 = 0; i2 < docSize.width; i2++) {
3981
3996
  const marginNum = 0.0625 * 96 - 0.5;
3982
3997
  const margin = `${marginNum}px`;
3983
- const diff = docSize.width - i3;
3984
- rulerItems.push(...generateSection(1, "main", "20%", margin, i3));
3998
+ const diff = docSize.width - i2;
3999
+ rulerItems.push(...generateSection(1, "main", "20%", margin, i2));
3985
4000
  rulerItems.push(...generateSection(3, "eighth", "10%", margin));
3986
4001
  rulerItems.push(...generateSection(1, "half", "40%", margin));
3987
4002
  if (diff <= 0.5) break;
@@ -3990,7 +4005,7 @@ const _sfc_main$3 = {
3990
4005
  return rulerItems;
3991
4006
  };
3992
4007
  const generateSection = (qty, size, height, margin, index) => {
3993
- return Array.from({ length: qty }, (_, i3) => {
4008
+ return Array.from({ length: qty }, (_, i2) => {
3994
4009
  const item = {
3995
4010
  className: `${size}-unit ruler-section`,
3996
4011
  height,
@@ -4611,13 +4626,13 @@ const Extensions = {
4611
4626
  };
4612
4627
  export {
4613
4628
  AIWriter,
4614
- k as AnnotatorHelpers,
4629
+ n as AnnotatorHelpers,
4615
4630
  aG as BasicUpload,
4616
4631
  C as CommentsPluginKey,
4617
4632
  D as DocxZipper,
4618
4633
  Editor,
4619
4634
  Extensions,
4620
- l as SectionHelpers,
4635
+ o as SectionHelpers,
4621
4636
  _sfc_main$4 as SlashMenu,
4622
4637
  a5 as SuperConverter,
4623
4638
  SuperEditor,
@@ -4626,13 +4641,13 @@ export {
4626
4641
  Toolbar,
4627
4642
  T as TrackChangesBasePluginKey,
4628
4643
  createZip,
4629
- i2 as fieldAnnotationHelpers,
4644
+ l as fieldAnnotationHelpers,
4630
4645
  getActiveFormatting,
4631
- m as getAllowedImageDimensions,
4646
+ p as getAllowedImageDimensions,
4632
4647
  i as getMarksFromSelection,
4633
4648
  getRichTextExtensions,
4634
4649
  getStarterExtensions,
4635
4650
  a2 as helpers,
4636
4651
  aH as registeredHandlers,
4637
- j as trackChangesHelpers
4652
+ m as trackChangesHelpers
4638
4653
  };
@@ -1,6 +1,6 @@
1
1
  import "vue";
2
- import { T } from "./chunks/toolbar-pP4CmNcz.js";
3
- import "./chunks/editor-C1C_smD4.js";
2
+ import { T } from "./chunks/toolbar-B-apzt27.js";
3
+ import "./chunks/editor-hh7sL4Wv.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-CCU9etUT.cjs");
3
+ const superEditor_es = require("./chunks/super-editor.es-BgBNGRxg.cjs");
4
4
  require("./chunks/vue-DWle4Cai.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-DgTNVbvS.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-BTcVSa_f.es.js";
2
2
  import "./chunks/vue-CXxsqYcP.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-CCU9etUT.cjs");
4
- const superdoc = require("./chunks/index-OFvCtpf7.cjs");
3
+ const superEditor_es = require("./chunks/super-editor.es-BgBNGRxg.cjs");
4
+ const superdoc = require("./chunks/index-BB5vhzVT.cjs");
5
5
  require("./chunks/vue-DWle4Cai.cjs");
6
6
  require("./chunks/jszip-b7l8QkfH.cjs");
7
7
  const blankDocx = require("./chunks/blank-docx-CPqX9RF5.cjs");
@@ -1,5 +1,5 @@
1
- import { a, E, b, S, d, i, j, n, r, p, q } from "./chunks/super-editor.es-DgTNVbvS.es.js";
2
- import { D, H, P, S as S2, m, l } from "./chunks/index-BVjAJUtV.es.js";
1
+ import { a, E, b, S, d, i, j, n, r, p, q } from "./chunks/super-editor.es-BTcVSa_f.es.js";
2
+ import { D, H, P, S as S2, m, l } from "./chunks/index-BZzn2Rcn.es.js";
3
3
  import "./chunks/vue-CXxsqYcP.es.js";
4
4
  import "./chunks/jszip-B8KIZSNe.es.js";
5
5
  import { B } from "./chunks/blank-docx-iwdyG9RH.es.js";