@superinterface/react 2.19.2 → 2.19.3
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/index.cjs +312 -268
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +12 -0
- package/dist/index.d.ts +12 -0
- package/dist/index.js +253 -209
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -589,6 +589,12 @@ declare const MarkdownContext: react.Context<{
|
|
|
589
589
|
annotation: ({ annotation, }: {
|
|
590
590
|
annotation: openai_resources_beta_threads_messages.Annotation;
|
|
591
591
|
}) => react_jsx_runtime.JSX.Element | null;
|
|
592
|
+
h1: (props: JSX.IntrinsicElements["h1"]) => react_jsx_runtime.JSX.Element;
|
|
593
|
+
h2: (props: JSX.IntrinsicElements["h2"]) => react_jsx_runtime.JSX.Element;
|
|
594
|
+
h3: (props: JSX.IntrinsicElements["h3"]) => react_jsx_runtime.JSX.Element;
|
|
595
|
+
h4: (props: JSX.IntrinsicElements["h4"]) => react_jsx_runtime.JSX.Element;
|
|
596
|
+
h5: (props: JSX.IntrinsicElements["h5"]) => react_jsx_runtime.JSX.Element;
|
|
597
|
+
h6: (props: JSX.IntrinsicElements["h6"]) => react_jsx_runtime.JSX.Element;
|
|
592
598
|
};
|
|
593
599
|
getRemarkPlugins: ({ content, }: {
|
|
594
600
|
content: openai_resources_beta_threads_messages.TextContentBlock;
|
|
@@ -613,6 +619,12 @@ declare const useMarkdownContext: () => {
|
|
|
613
619
|
annotation: ({ annotation, }: {
|
|
614
620
|
annotation: openai_resources_beta_threads_messages.Annotation;
|
|
615
621
|
}) => react_jsx_runtime.JSX.Element | null;
|
|
622
|
+
h1: (props: JSX.IntrinsicElements["h1"]) => react_jsx_runtime.JSX.Element;
|
|
623
|
+
h2: (props: JSX.IntrinsicElements["h2"]) => react_jsx_runtime.JSX.Element;
|
|
624
|
+
h3: (props: JSX.IntrinsicElements["h3"]) => react_jsx_runtime.JSX.Element;
|
|
625
|
+
h4: (props: JSX.IntrinsicElements["h4"]) => react_jsx_runtime.JSX.Element;
|
|
626
|
+
h5: (props: JSX.IntrinsicElements["h5"]) => react_jsx_runtime.JSX.Element;
|
|
627
|
+
h6: (props: JSX.IntrinsicElements["h6"]) => react_jsx_runtime.JSX.Element;
|
|
616
628
|
};
|
|
617
629
|
getRemarkPlugins: ({ content, }: {
|
|
618
630
|
content: openai_resources_beta_threads_messages.TextContentBlock;
|
package/dist/index.d.ts
CHANGED
|
@@ -589,6 +589,12 @@ declare const MarkdownContext: react.Context<{
|
|
|
589
589
|
annotation: ({ annotation, }: {
|
|
590
590
|
annotation: openai_resources_beta_threads_messages.Annotation;
|
|
591
591
|
}) => react_jsx_runtime.JSX.Element | null;
|
|
592
|
+
h1: (props: JSX.IntrinsicElements["h1"]) => react_jsx_runtime.JSX.Element;
|
|
593
|
+
h2: (props: JSX.IntrinsicElements["h2"]) => react_jsx_runtime.JSX.Element;
|
|
594
|
+
h3: (props: JSX.IntrinsicElements["h3"]) => react_jsx_runtime.JSX.Element;
|
|
595
|
+
h4: (props: JSX.IntrinsicElements["h4"]) => react_jsx_runtime.JSX.Element;
|
|
596
|
+
h5: (props: JSX.IntrinsicElements["h5"]) => react_jsx_runtime.JSX.Element;
|
|
597
|
+
h6: (props: JSX.IntrinsicElements["h6"]) => react_jsx_runtime.JSX.Element;
|
|
592
598
|
};
|
|
593
599
|
getRemarkPlugins: ({ content, }: {
|
|
594
600
|
content: openai_resources_beta_threads_messages.TextContentBlock;
|
|
@@ -613,6 +619,12 @@ declare const useMarkdownContext: () => {
|
|
|
613
619
|
annotation: ({ annotation, }: {
|
|
614
620
|
annotation: openai_resources_beta_threads_messages.Annotation;
|
|
615
621
|
}) => react_jsx_runtime.JSX.Element | null;
|
|
622
|
+
h1: (props: JSX.IntrinsicElements["h1"]) => react_jsx_runtime.JSX.Element;
|
|
623
|
+
h2: (props: JSX.IntrinsicElements["h2"]) => react_jsx_runtime.JSX.Element;
|
|
624
|
+
h3: (props: JSX.IntrinsicElements["h3"]) => react_jsx_runtime.JSX.Element;
|
|
625
|
+
h4: (props: JSX.IntrinsicElements["h4"]) => react_jsx_runtime.JSX.Element;
|
|
626
|
+
h5: (props: JSX.IntrinsicElements["h5"]) => react_jsx_runtime.JSX.Element;
|
|
627
|
+
h6: (props: JSX.IntrinsicElements["h6"]) => react_jsx_runtime.JSX.Element;
|
|
616
628
|
};
|
|
617
629
|
getRemarkPlugins: ({ content, }: {
|
|
618
630
|
content: openai_resources_beta_threads_messages.TextContentBlock;
|