@quillmark/wasm 0.59.0 → 0.61.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 +17 -9
- package/bundler/wasm_bg.js +16 -8
- package/bundler/wasm_bg.wasm +0 -0
- package/node-esm/wasm.d.ts +17 -9
- package/node-esm/wasm.js +16 -8
- package/node-esm/wasm_bg.wasm +0 -0
- package/package.json +1 -1
package/bundler/wasm.d.ts
CHANGED
|
@@ -264,15 +264,23 @@ export class Quill {
|
|
|
264
264
|
*/
|
|
265
265
|
readonly backendId: string;
|
|
266
266
|
/**
|
|
267
|
-
* Read-only snapshot of the loaded
|
|
268
|
-
*
|
|
269
|
-
* Returns a plain JS object with
|
|
270
|
-
*
|
|
271
|
-
*
|
|
272
|
-
*
|
|
273
|
-
*
|
|
274
|
-
*
|
|
275
|
-
*
|
|
267
|
+
* Read-only snapshot of the loaded quill's engine info and declared schema.
|
|
268
|
+
*
|
|
269
|
+
* Returns a plain JS object with:
|
|
270
|
+
* - `schema` — the quill's public schema contract, identical to
|
|
271
|
+
* `QuillConfig::public_schema()`. Top-level keys: `name`, `main`,
|
|
272
|
+
* optional `card_types` (map keyed by card name, omitted when empty),
|
|
273
|
+
* optional `example`. `main` and each card under `card_types` share
|
|
274
|
+
* the same shape: `fields` (map keyed by field name), optional
|
|
275
|
+
* `title`, `description`, `ui`.
|
|
276
|
+
* - `backend`, `version`, `author` — quill identity declared in
|
|
277
|
+
* `Quill.yaml`'s `quill:` section.
|
|
278
|
+
* - `supportedFormats` — output formats the backend produces, as
|
|
279
|
+
* lowercase strings.
|
|
280
|
+
* - Any additional unstructured keys declared under `quill:`.
|
|
281
|
+
*
|
|
282
|
+
* Consumers that need validation run their own validator against
|
|
283
|
+
* `metadata.schema`.
|
|
276
284
|
*
|
|
277
285
|
* Equivalent by value for the lifetime of the handle; the quill is
|
|
278
286
|
* immutable once constructed.
|
package/bundler/wasm_bg.js
CHANGED
|
@@ -420,15 +420,23 @@ export class Quill {
|
|
|
420
420
|
}
|
|
421
421
|
}
|
|
422
422
|
/**
|
|
423
|
-
* Read-only snapshot of the loaded
|
|
423
|
+
* Read-only snapshot of the loaded quill's engine info and declared schema.
|
|
424
424
|
*
|
|
425
|
-
* Returns a plain JS object with
|
|
426
|
-
*
|
|
427
|
-
*
|
|
428
|
-
*
|
|
429
|
-
*
|
|
430
|
-
*
|
|
431
|
-
*
|
|
425
|
+
* Returns a plain JS object with:
|
|
426
|
+
* - `schema` — the quill's public schema contract, identical to
|
|
427
|
+
* `QuillConfig::public_schema()`. Top-level keys: `name`, `main`,
|
|
428
|
+
* optional `card_types` (map keyed by card name, omitted when empty),
|
|
429
|
+
* optional `example`. `main` and each card under `card_types` share
|
|
430
|
+
* the same shape: `fields` (map keyed by field name), optional
|
|
431
|
+
* `title`, `description`, `ui`.
|
|
432
|
+
* - `backend`, `version`, `author` — quill identity declared in
|
|
433
|
+
* `Quill.yaml`'s `quill:` section.
|
|
434
|
+
* - `supportedFormats` — output formats the backend produces, as
|
|
435
|
+
* lowercase strings.
|
|
436
|
+
* - Any additional unstructured keys declared under `quill:`.
|
|
437
|
+
*
|
|
438
|
+
* Consumers that need validation run their own validator against
|
|
439
|
+
* `metadata.schema`.
|
|
432
440
|
*
|
|
433
441
|
* Equivalent by value for the lifetime of the handle; the quill is
|
|
434
442
|
* immutable once constructed.
|
package/bundler/wasm_bg.wasm
CHANGED
|
Binary file
|
package/node-esm/wasm.d.ts
CHANGED
|
@@ -264,15 +264,23 @@ export class Quill {
|
|
|
264
264
|
*/
|
|
265
265
|
readonly backendId: string;
|
|
266
266
|
/**
|
|
267
|
-
* Read-only snapshot of the loaded
|
|
268
|
-
*
|
|
269
|
-
* Returns a plain JS object with
|
|
270
|
-
*
|
|
271
|
-
*
|
|
272
|
-
*
|
|
273
|
-
*
|
|
274
|
-
*
|
|
275
|
-
*
|
|
267
|
+
* Read-only snapshot of the loaded quill's engine info and declared schema.
|
|
268
|
+
*
|
|
269
|
+
* Returns a plain JS object with:
|
|
270
|
+
* - `schema` — the quill's public schema contract, identical to
|
|
271
|
+
* `QuillConfig::public_schema()`. Top-level keys: `name`, `main`,
|
|
272
|
+
* optional `card_types` (map keyed by card name, omitted when empty),
|
|
273
|
+
* optional `example`. `main` and each card under `card_types` share
|
|
274
|
+
* the same shape: `fields` (map keyed by field name), optional
|
|
275
|
+
* `title`, `description`, `ui`.
|
|
276
|
+
* - `backend`, `version`, `author` — quill identity declared in
|
|
277
|
+
* `Quill.yaml`'s `quill:` section.
|
|
278
|
+
* - `supportedFormats` — output formats the backend produces, as
|
|
279
|
+
* lowercase strings.
|
|
280
|
+
* - Any additional unstructured keys declared under `quill:`.
|
|
281
|
+
*
|
|
282
|
+
* Consumers that need validation run their own validator against
|
|
283
|
+
* `metadata.schema`.
|
|
276
284
|
*
|
|
277
285
|
* Equivalent by value for the lifetime of the handle; the quill is
|
|
278
286
|
* immutable once constructed.
|
package/node-esm/wasm.js
CHANGED
|
@@ -424,15 +424,23 @@ export class Quill {
|
|
|
424
424
|
}
|
|
425
425
|
}
|
|
426
426
|
/**
|
|
427
|
-
* Read-only snapshot of the loaded
|
|
427
|
+
* Read-only snapshot of the loaded quill's engine info and declared schema.
|
|
428
428
|
*
|
|
429
|
-
* Returns a plain JS object with
|
|
430
|
-
*
|
|
431
|
-
*
|
|
432
|
-
*
|
|
433
|
-
*
|
|
434
|
-
*
|
|
435
|
-
*
|
|
429
|
+
* Returns a plain JS object with:
|
|
430
|
+
* - `schema` — the quill's public schema contract, identical to
|
|
431
|
+
* `QuillConfig::public_schema()`. Top-level keys: `name`, `main`,
|
|
432
|
+
* optional `card_types` (map keyed by card name, omitted when empty),
|
|
433
|
+
* optional `example`. `main` and each card under `card_types` share
|
|
434
|
+
* the same shape: `fields` (map keyed by field name), optional
|
|
435
|
+
* `title`, `description`, `ui`.
|
|
436
|
+
* - `backend`, `version`, `author` — quill identity declared in
|
|
437
|
+
* `Quill.yaml`'s `quill:` section.
|
|
438
|
+
* - `supportedFormats` — output formats the backend produces, as
|
|
439
|
+
* lowercase strings.
|
|
440
|
+
* - Any additional unstructured keys declared under `quill:`.
|
|
441
|
+
*
|
|
442
|
+
* Consumers that need validation run their own validator against
|
|
443
|
+
* `metadata.schema`.
|
|
436
444
|
*
|
|
437
445
|
* Equivalent by value for the lifetime of the handle; the quill is
|
|
438
446
|
* immutable once constructed.
|
package/node-esm/wasm_bg.wasm
CHANGED
|
Binary file
|