@oxide/react-asciidoc 0.2.9--canary.0a74a0b.0 → 0.2.9--canary.cb6a104.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.
@@ -2,7 +2,7 @@ import type * as AdocTypes from '@asciidoctor/core';
2
2
  type NodeType = 'audio' | 'admonition' | 'colist' | 'cell' | 'dlist' | 'document' | 'embedded' | 'example' | 'floating_title' | 'image' | 'inline_anchor' | 'inline_break' | 'inline_button' | 'inline_callout' | 'inline_footnote' | 'inline_image' | 'inline_kbd' | 'inline_menu' | 'inline_quoted' | 'listing' | 'list_item' | 'literal' | 'olist' | 'open' | 'outline' | 'page_break' | 'paragraph' | 'pass' | 'preamble' | 'quote' | 'section' | 'sidebar' | 'stem' | 'table' | 'table_cell' | 'thematic_break' | 'toc' | 'ulist' | 'verse' | 'video';
3
3
  type ContentModel = 'compound' | 'simple' | 'verbatim' | 'raw' | 'empty';
4
4
  export type BaseBlock = {
5
- id: string;
5
+ id?: string;
6
6
  type: NodeType;
7
7
  blocks: Block[];
8
8
  content?: string | undefined;
@@ -11,7 +11,7 @@ export type BaseBlock = {
11
11
  lineNumber?: number | undefined;
12
12
  style?: string | undefined;
13
13
  role?: string | undefined;
14
- title: string | undefined;
14
+ title?: string | undefined;
15
15
  level: number;
16
16
  };
17
17
  export type Block = BaseBlock | ParagraphBlock | AdmonitionBlock | CoListBlock | ImageBlock | LiteralBlock | SectionBlock | TableBlock;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oxide/react-asciidoc",
3
- "version": "0.2.9--canary.0a74a0b.0",
3
+ "version": "0.2.9--canary.cb6a104.0",
4
4
  "files": [
5
5
  "dist"
6
6
  ],