studiokit-scaffolding-js 4.5.2-next.3.1 → 4.5.2-next.3.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.
@@ -8,7 +8,7 @@ declare const Container: typeof import("parchment/dist/src/blot/abstract/contain
8
8
  export declare class BaseTableBlot extends Container {
9
9
  static scope: import("parchment/dist/src/registry").Scope;
10
10
  static requiredParent: string | null;
11
- static allowedChildren: (typeof import("parchment/dist/src/blot/abstract/container").default | typeof import("parchment/dist/src/blot/embed").default | {
11
+ static allowedChildren: (typeof import("parchment/dist/src/blot/embed").default | typeof import("parchment/dist/src/blot/abstract/container").default | {
12
12
  new (data?: string | undefined): Text;
13
13
  prototype: Text;
14
14
  })[];
@@ -9,7 +9,7 @@ export declare class TableCellBlot extends BaseTableBlot {
9
9
  static scope: import("parchment/dist/src/registry").Scope;
10
10
  static requiredParent: string | null;
11
11
  static defaultChild: string;
12
- static allowedChildren: (typeof import("parchment/dist/src/blot/abstract/container").default | typeof import("parchment/dist/src/blot/embed").default)[];
12
+ static allowedChildren: (typeof import("parchment/dist/src/blot/embed").default | typeof import("parchment/dist/src/blot/abstract/container").default)[];
13
13
  static create(value: string): HTMLElement;
14
14
  static createWithChildren(tableId: string, rowId: string): TableCellBlot;
15
15
  formats(): {
@@ -7,13 +7,14 @@ exports.registerQuill = void 0;
7
7
  var quill_blot_formatter_1 = __importDefault(require("quill-blot-formatter"));
8
8
  var react_quill_1 = require("react-quill");
9
9
  var accessibilityFix_1 = require("./accessibilityFix");
10
+ var Image_1 = require("./Formats/Image");
10
11
  var List_1 = require("./Formats/List");
11
12
  var Video_1 = require("./Formats/Video");
12
13
  var TableModule_1 = require("./TableModule");
13
14
  var registerQuill = function () {
14
15
  react_quill_1.Quill.register('modules/blotFormatter', quill_blot_formatter_1.default);
15
16
  // replace image format
16
- react_quill_1.Quill.register('formats/image', Image, true);
17
+ react_quill_1.Quill.register('formats/image', Image_1.Image, true);
17
18
  // replace list format with new extended version
18
19
  react_quill_1.Quill.register('formats/list/item', List_1.ListItem, true);
19
20
  react_quill_1.Quill.register('formats/list', List_1.List, true);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "studiokit-scaffolding-js",
3
- "version": "4.5.2-next.3.1",
3
+ "version": "4.5.2-next.3.2",
4
4
  "description": "Common scaffolding for Studio apps at Purdue",
5
5
  "repository": "https://gitlab.com/purdue-informatics/studiokit/studiokit-scaffolding-js",
6
6
  "license": "MIT",