@quillmark/wasm 0.71.1 → 0.73.0

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/bundler/wasm.d.ts CHANGED
@@ -510,10 +510,6 @@ export class Quill {
510
510
  * Bundled example document, or `undefined` if none was declared.
511
511
  */
512
512
  readonly example: string | undefined;
513
- /**
514
- * Document schema with `ui` hints — for form builders.
515
- */
516
- readonly formSchema: QuillSchema;
517
513
  /**
518
514
  * Identity snapshot of the `quill:` section of `Quill.yaml`, plus
519
515
  * `supportedFormats` and any custom `quill:` keys.
@@ -652,14 +652,6 @@ export class Quill {
652
652
  wasm.__wbindgen_add_to_stack_pointer(16);
653
653
  }
654
654
  }
655
- /**
656
- * Document schema with `ui` hints — for form builders.
657
- * @returns {QuillSchema}
658
- */
659
- get formSchema() {
660
- const ret = wasm.quill_formSchema(this.__wbg_ptr);
661
- return takeObject(ret);
662
- }
663
655
  /**
664
656
  * Identity snapshot of the `quill:` section of `Quill.yaml`, plus
665
657
  * `supportedFormats` and any custom `quill:` keys.
Binary file
@@ -34,7 +34,6 @@ export const quill_blankMain: (a: number, b: number) => void;
34
34
  export const quill_blueprint: (a: number, b: number) => void;
35
35
  export const quill_example: (a: number, b: number) => void;
36
36
  export const quill_form: (a: number, b: number, c: number) => void;
37
- export const quill_formSchema: (a: number) => number;
38
37
  export const quill_metadata: (a: number) => number;
39
38
  export const quill_open: (a: number, b: number, c: number) => void;
40
39
  export const quill_render: (a: number, b: number, c: number, d: number) => void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quillmark/wasm",
3
- "version": "0.71.1",
3
+ "version": "0.73.0",
4
4
  "description": "WebAssembly bindings for quillmark",
5
5
  "type": "module",
6
6
  "license": "MIT OR Apache-2.0",