@surrealdb/ui 1.0.85 → 1.0.87

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
@@ -396,7 +396,7 @@ export declare interface CommonAttrs {
396
396
  export declare const commonExtensions: () => Extension;
397
397
 
398
398
  /**
399
- * Create a style highlighter for the given color scheme and syntax theme
399
+ * Get a cached style highlighter for the given color scheme
400
400
  */
401
401
  export declare function createHighlighter(colorScheme: MantineColorScheme): Highlighter;
402
402
 
@@ -565,6 +565,8 @@ export declare const iconAccountPlus: string;
565
565
 
566
566
  export declare const iconAccountSecure: string;
567
567
 
568
+ export declare const iconAlert: string;
569
+
568
570
  export declare const iconAPI: string;
569
571
 
570
572
  export declare const iconArrowDownFat: string;
@@ -625,8 +627,6 @@ export declare const iconChart: string;
625
627
 
626
628
  export declare const iconChat: string;
627
629
 
628
- export declare const iconChatGPT: string;
629
-
630
630
  export declare const iconCheck: string;
631
631
 
632
632
  export declare const iconCheckCircle: string;
@@ -645,8 +645,6 @@ export declare const iconCircle: string;
645
645
 
646
646
  export declare const iconCircleFilled: string;
647
647
 
648
- export declare const iconClaude: string;
649
-
650
648
  export declare const iconClock: string;
651
649
 
652
650
  export declare const iconClose: string;
@@ -879,6 +877,8 @@ export declare const iconTextBoxPlus: string;
879
877
 
880
878
  export declare const iconTransfer: string;
881
879
 
880
+ export declare const iconTrash: string;
881
+
882
882
  export declare const iconTune: string;
883
883
 
884
884
  export declare const iconUniversity: string;
@@ -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>;