@surrealdb/ui 1.0.85 → 1.0.86

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/dist/ui.d.ts CHANGED
@@ -914,7 +914,7 @@ export declare interface InlineCodeNode extends CommonAttrs {
914
914
  value: string;
915
915
  }
916
916
 
917
- export declare type InlineNode = TextNode | LinkNode | InlineCodeNode | StrongNode | EmphasisNode | BreakNode | SpanNode | ImageNode | JsxExpressionNode | JsxComponentNode;
917
+ export declare type InlineNode = TextNode | LinkNode | InlineCodeNode | StrongNode | EmphasisNode | SuperscriptNode | SubscriptNode | BreakNode | SpanNode | ImageNode | JsxExpressionNode | JsxComponentNode;
918
918
 
919
919
  export declare interface JsxComponentNode extends CommonAttrs {
920
920
  type: "jsxComponent";
@@ -1792,6 +1792,11 @@ export declare interface StrongNode extends CommonAttrs {
1792
1792
  children: InlineNode[];
1793
1793
  }
1794
1794
 
1795
+ declare interface SubscriptNode extends CommonAttrs {
1796
+ type: "subscript";
1797
+ children: InlineNode[];
1798
+ }
1799
+
1795
1800
  /**
1796
1801
  * Suggest completions at the start of each line
1797
1802
  */
@@ -1806,6 +1811,11 @@ export declare interface SummaryProps extends Omit<BoxProps, "component" | "chil
1806
1811
  children: ReactNode;
1807
1812
  }
1808
1813
 
1814
+ declare interface SuperscriptNode extends CommonAttrs {
1815
+ type: "superscript";
1816
+ children: InlineNode[];
1817
+ }
1818
+
1809
1819
  export declare const SurrealCodeBlock: YooptaPlugin<SurrealCodeBlockElementMap>;
1810
1820
 
1811
1821
  export declare type SurrealCodeBlockElement = SlateElement<"surreal-codeblock", SurrealCodeBlockProps>;