@infinilabs/markdown 0.0.2 → 0.0.4

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.d.ts CHANGED
@@ -6,6 +6,7 @@ export default Markdown;
6
6
 
7
7
  declare interface MarkdownProps extends XMarkdownProps {
8
8
  url?: string;
9
+ requestHeaders?: Record<string, string>;
9
10
  }
10
11
 
11
12
  export { }
package/dist/markdown.js CHANGED
@@ -1,86 +1,82 @@
1
- (function(){"use strict";try{if(typeof document<"u"){var n=document.createElement("style");n.appendChild(document.createTextNode("*,:before,:after{--un-rotate:0;--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-scale-x:1;--un-scale-y:1;--un-scale-z:1;--un-skew-x:0;--un-skew-y:0;--un-translate-x:0;--un-translate-y:0;--un-translate-z:0;--un-pan-x: ;--un-pan-y: ;--un-pinch-zoom: ;--un-scroll-snap-strictness:proximity;--un-ordinal: ;--un-slashed-zero: ;--un-numeric-figure: ;--un-numeric-spacing: ;--un-numeric-fraction: ;--un-border-spacing-x:0;--un-border-spacing-y:0;--un-ring-offset-shadow:0 0 rgb(0 0 0 / 0);--un-ring-shadow:0 0 rgb(0 0 0 / 0);--un-shadow-inset: ;--un-shadow:0 0 rgb(0 0 0 / 0);--un-ring-inset: ;--un-ring-offset-width:0px;--un-ring-offset-color:#fff;--un-ring-width:0px;--un-ring-color:rgb(147 197 253 / .5);--un-blur: ;--un-brightness: ;--un-contrast: ;--un-drop-shadow: ;--un-grayscale: ;--un-hue-rotate: ;--un-invert: ;--un-saturate: ;--un-sepia: ;--un-backdrop-blur: ;--un-backdrop-brightness: ;--un-backdrop-contrast: ;--un-backdrop-grayscale: ;--un-backdrop-hue-rotate: ;--un-backdrop-invert: ;--un-backdrop-opacity: ;--un-backdrop-saturate: ;--un-backdrop-sepia: }::backdrop{--un-rotate:0;--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-scale-x:1;--un-scale-y:1;--un-scale-z:1;--un-skew-x:0;--un-skew-y:0;--un-translate-x:0;--un-translate-y:0;--un-translate-z:0;--un-pan-x: ;--un-pan-y: ;--un-pinch-zoom: ;--un-scroll-snap-strictness:proximity;--un-ordinal: ;--un-slashed-zero: ;--un-numeric-figure: ;--un-numeric-spacing: ;--un-numeric-fraction: ;--un-border-spacing-x:0;--un-border-spacing-y:0;--un-ring-offset-shadow:0 0 rgb(0 0 0 / 0);--un-ring-shadow:0 0 rgb(0 0 0 / 0);--un-shadow-inset: ;--un-shadow:0 0 rgb(0 0 0 / 0);--un-ring-inset: ;--un-ring-offset-width:0px;--un-ring-offset-color:#fff;--un-ring-width:0px;--un-ring-color:rgb(147 197 253 / .5);--un-blur: ;--un-brightness: ;--un-contrast: ;--un-drop-shadow: ;--un-grayscale: ;--un-hue-rotate: ;--un-invert: ;--un-saturate: ;--un-sepia: ;--un-backdrop-blur: ;--un-backdrop-brightness: ;--un-backdrop-contrast: ;--un-backdrop-grayscale: ;--un-backdrop-hue-rotate: ;--un-backdrop-invert: ;--un-backdrop-opacity: ;--un-backdrop-saturate: ;--un-backdrop-sepia: }.\\[\\&_h1\\,h2\\,h3\\,h4\\,h5\\,h6\\,ul\\,ol\\,p\\]\\:\\[all\\:revert\\] h1,h2,h3,h4,h5,h6,ul,ol,p{all:revert}.\\[\\&_table\\]\\:w-full\\! table{width:100%!important}.\\[\\&_table\\]\\:table\\! table{display:table!important}.table{display:table}")),document.head.appendChild(n)}}catch(r){console.error("vite-plugin-css-injected-by-js",r)}})();
2
- import { jsx as u } from "react/jsx-runtime";
3
- import { XMarkdown as b } from "@ant-design/x-markdown";
4
- import g from "clsx";
5
- import { Children as p, isValidElement as f, useState as w, useEffect as x } from "react";
6
- import { Typography as A, Table as T } from "antd";
7
- import { Mermaid as _, CodeHighlighter as C } from "@ant-design/x";
8
- const { Text: k } = A, N = (t) => {
9
- const { className: o, children: r } = t, n = o?.match(/language-(\w+)/)?.[1] ?? "";
10
- return typeof r != "string" ? null : n === "mermaid" ? /* @__PURE__ */ u(_, { children: r }) : n ? /* @__PURE__ */ u(C, { lang: n, children: r }) : /* @__PURE__ */ u(k, { code: !0, children: r });
11
- }, m = (t) => typeof t == "string" || typeof t == "number" ? String(t) : f(t) ? m(t.props.children) : Array.isArray(t) ? t.map(m).join("") : "", $ = (t) => {
12
- const o = [], r = [], n = p.toArray(t);
13
- for (const e of n) {
14
- if (!f(e)) continue;
15
- const d = e.type;
16
- if (d === "thead") {
17
- const a = p.toArray(e.props.children);
18
- for (const c of a) {
19
- if (!f(c)) continue;
20
- const i = p.toArray(c.props.children);
21
- let s = 0;
22
- for (const l of i) {
23
- if (!f(l)) continue;
24
- const h = m(l.props.children);
25
- o.push({
26
- title: h,
27
- dataIndex: `col_${s}`,
28
- key: `col_${s}`
29
- }), s++;
30
- }
31
- }
32
- }
33
- if (d === "tbody") {
34
- const a = p.toArray(e.props.children);
35
- let c = 0;
36
- for (const i of a) {
37
- if (!f(i)) continue;
38
- const s = { key: `row_${c}` }, l = p.toArray(i.props.children);
39
- let h = 0;
40
- for (const y of l)
41
- f(y) && (s[`col_${h}`] = y.props.children, h++);
42
- r.push(s), c++;
43
- }
44
- }
45
- }
46
- return { columns: o, dataSource: r };
47
- }, S = ({ children: t }) => {
48
- const { columns: o, dataSource: r } = $(t);
49
- return /* @__PURE__ */ u(
50
- T,
51
- {
52
- className: "[&_table]:w-full! [&_table]:table!",
53
- columns: o,
54
- dataSource: r,
55
- pagination: !1,
56
- size: "small",
57
- bordered: !0
58
- }
59
- );
60
- }, { Link: I } = A, L = (t) => {
61
- const { url: o, className: r, components: n, ...e } = t, [d, a] = w(e.content), c = async (i) => {
62
- const l = await (await fetch(i)).text();
63
- a(l);
64
- };
65
- return x(() => {
66
- o && c(o);
67
- }, [o]), x(() => {
68
- a(e.content);
69
- }, [e.content]), /* @__PURE__ */ u(
70
- b,
71
- {
72
- ...e,
73
- className: g("[&_h1,h2,h3,h4,h5,h6,ul,ol,p]:[all:revert]", r),
74
- content: d,
75
- components: {
76
- code: N,
77
- a: I,
78
- table: S,
79
- ...n
80
- }
81
- }
82
- );
83
- };
84
- export {
85
- L as default
1
+ (function(){try{if(typeof document<`u`){var e=document.createElement(`style`);e.appendChild(document.createTextNode(`*,:before,:after,::backdrop{--un-rotate:0;--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-scale-x:1;--un-scale-y:1;--un-scale-z:1;--un-skew-x:0;--un-skew-y:0;--un-translate-x:0;--un-translate-y:0;--un-translate-z:0;--un-pan-x: ;--un-pan-y: ;--un-pinch-zoom: ;--un-scroll-snap-strictness:proximity;--un-ordinal: ;--un-slashed-zero: ;--un-numeric-figure: ;--un-numeric-spacing: ;--un-numeric-fraction: ;--un-border-spacing-x:0;--un-border-spacing-y:0;--un-ring-offset-shadow:0 0 #0000;--un-ring-shadow:0 0 #0000;--un-shadow-inset: ;--un-shadow:0 0 #0000;--un-ring-inset: ;--un-ring-offset-width:0px;--un-ring-offset-color:#fff;--un-ring-width:0px;--un-ring-color:#93c5fd80;--un-blur: ;--un-brightness: ;--un-contrast: ;--un-drop-shadow: ;--un-grayscale: ;--un-hue-rotate: ;--un-invert: ;--un-saturate: ;--un-sepia: ;--un-backdrop-blur: ;--un-backdrop-brightness: ;--un-backdrop-contrast: ;--un-backdrop-grayscale: ;--un-backdrop-hue-rotate: ;--un-backdrop-invert: ;--un-backdrop-opacity: ;--un-backdrop-saturate: ;--un-backdrop-sepia: }.\\[\\&_\\:is\\(h1\\,h2\\,h3\\,h4\\,h5\\,h6\\,ul\\,ol\\,p\\)\\]\\:\\[all\\:revert\\] :is(h1,h2,h3,h4,h5,h6,ul,ol,p){all:revert}.\\[\\&_table\\]\\:w-full\\! table{width:100%!important}.\\[\\&_table\\]\\:table\\! table{display:table!important}.table{display:table}
2
+ /*$vite$:1*/`)),document.head.appendChild(e)}}catch(e){console.error(`vite-plugin-css-injected-by-js`,e)}})();import { XMarkdown } from "@ant-design/x-markdown";
3
+ import clsx from "clsx";
4
+ import { Children, isValidElement, useEffect, useState } from "react";
5
+ import { Table, Typography } from "antd";
6
+ import { CodeHighlighter, Mermaid } from "@ant-design/x";
7
+ import { jsx } from "react/jsx-runtime";
8
+ var { Text } = Typography, Code_default = (e) => {
9
+ let { className: o, children: s } = e, c = o?.match(/language-(\w+)/)?.[1] ?? "";
10
+ return typeof s == "string" ? c === "mermaid" ? /* @__PURE__ */ jsx(Mermaid, { children: s }) : c ? /* @__PURE__ */ jsx(CodeHighlighter, {
11
+ lang: c,
12
+ children: s
13
+ }) : /* @__PURE__ */ jsx(Text, {
14
+ code: !0,
15
+ children: s
16
+ }) : null;
17
+ }, extractText = (e) => typeof e == "string" || typeof e == "number" ? String(e) : isValidElement(e) ? extractText(e.props.children) : Array.isArray(e) ? e.map(extractText).join("") : "", parseTableChildren = (e) => {
18
+ let o = [], l = [], u = Children.toArray(e);
19
+ for (let e of u) {
20
+ if (!isValidElement(e)) continue;
21
+ let u = e.type;
22
+ if (u === "thead") {
23
+ let l = Children.toArray(e.props.children);
24
+ for (let e of l) {
25
+ if (!isValidElement(e)) continue;
26
+ let l = Children.toArray(e.props.children), u = 0;
27
+ for (let e of l) {
28
+ if (!isValidElement(e)) continue;
29
+ let s = extractText(e.props.children);
30
+ o.push({
31
+ title: s,
32
+ dataIndex: `col_${u}`,
33
+ key: `col_${u}`
34
+ }), u++;
35
+ }
36
+ }
37
+ }
38
+ if (u === "tbody") {
39
+ let o = Children.toArray(e.props.children), u = 0;
40
+ for (let e of o) {
41
+ if (!isValidElement(e)) continue;
42
+ let o = { key: `row_${u}` }, d = Children.toArray(e.props.children), f = 0;
43
+ for (let e of d) isValidElement(e) && (o[`col_${f}`] = e.props.children, f++);
44
+ l.push(o), u++;
45
+ }
46
+ }
47
+ }
48
+ return {
49
+ columns: o,
50
+ dataSource: l
51
+ };
52
+ }, Table_default = ({ children: e }) => {
53
+ let { columns: o, dataSource: s } = parseTableChildren(e);
54
+ return /* @__PURE__ */ jsx(Table, {
55
+ className: "[&_table]:w-full! [&_table]:table!",
56
+ columns: o,
57
+ dataSource: s,
58
+ pagination: !1,
59
+ size: "small",
60
+ bordered: !0
61
+ });
62
+ }, { Link } = Typography, components_default = (s) => {
63
+ let { url: c, requestHeaders: d, className: f, components: p, ...m } = s, [h, g] = useState(m.content), _ = async (e) => {
64
+ g(await (await fetch(e, { headers: d })).text());
65
+ };
66
+ return useEffect(() => {
67
+ c && _(c);
68
+ }, [c]), useEffect(() => {
69
+ g(m.content);
70
+ }, [m.content]), /* @__PURE__ */ jsx(XMarkdown, {
71
+ ...m,
72
+ className: clsx("[&_:is(h1,h2,h3,h4,h5,h6,ul,ol,p)]:[all:revert]", f),
73
+ content: h,
74
+ components: {
75
+ code: Code_default,
76
+ a: Link,
77
+ table: Table_default,
78
+ ...p
79
+ }
80
+ });
86
81
  };
82
+ export { components_default as default };
@@ -1,2 +1,2 @@
1
- (function(){"use strict";try{if(typeof document<"u"){var n=document.createElement("style");n.appendChild(document.createTextNode("*,:before,:after{--un-rotate:0;--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-scale-x:1;--un-scale-y:1;--un-scale-z:1;--un-skew-x:0;--un-skew-y:0;--un-translate-x:0;--un-translate-y:0;--un-translate-z:0;--un-pan-x: ;--un-pan-y: ;--un-pinch-zoom: ;--un-scroll-snap-strictness:proximity;--un-ordinal: ;--un-slashed-zero: ;--un-numeric-figure: ;--un-numeric-spacing: ;--un-numeric-fraction: ;--un-border-spacing-x:0;--un-border-spacing-y:0;--un-ring-offset-shadow:0 0 rgb(0 0 0 / 0);--un-ring-shadow:0 0 rgb(0 0 0 / 0);--un-shadow-inset: ;--un-shadow:0 0 rgb(0 0 0 / 0);--un-ring-inset: ;--un-ring-offset-width:0px;--un-ring-offset-color:#fff;--un-ring-width:0px;--un-ring-color:rgb(147 197 253 / .5);--un-blur: ;--un-brightness: ;--un-contrast: ;--un-drop-shadow: ;--un-grayscale: ;--un-hue-rotate: ;--un-invert: ;--un-saturate: ;--un-sepia: ;--un-backdrop-blur: ;--un-backdrop-brightness: ;--un-backdrop-contrast: ;--un-backdrop-grayscale: ;--un-backdrop-hue-rotate: ;--un-backdrop-invert: ;--un-backdrop-opacity: ;--un-backdrop-saturate: ;--un-backdrop-sepia: }::backdrop{--un-rotate:0;--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-scale-x:1;--un-scale-y:1;--un-scale-z:1;--un-skew-x:0;--un-skew-y:0;--un-translate-x:0;--un-translate-y:0;--un-translate-z:0;--un-pan-x: ;--un-pan-y: ;--un-pinch-zoom: ;--un-scroll-snap-strictness:proximity;--un-ordinal: ;--un-slashed-zero: ;--un-numeric-figure: ;--un-numeric-spacing: ;--un-numeric-fraction: ;--un-border-spacing-x:0;--un-border-spacing-y:0;--un-ring-offset-shadow:0 0 rgb(0 0 0 / 0);--un-ring-shadow:0 0 rgb(0 0 0 / 0);--un-shadow-inset: ;--un-shadow:0 0 rgb(0 0 0 / 0);--un-ring-inset: ;--un-ring-offset-width:0px;--un-ring-offset-color:#fff;--un-ring-width:0px;--un-ring-color:rgb(147 197 253 / .5);--un-blur: ;--un-brightness: ;--un-contrast: ;--un-drop-shadow: ;--un-grayscale: ;--un-hue-rotate: ;--un-invert: ;--un-saturate: ;--un-sepia: ;--un-backdrop-blur: ;--un-backdrop-brightness: ;--un-backdrop-contrast: ;--un-backdrop-grayscale: ;--un-backdrop-hue-rotate: ;--un-backdrop-invert: ;--un-backdrop-opacity: ;--un-backdrop-saturate: ;--un-backdrop-sepia: }.\\[\\&_h1\\,h2\\,h3\\,h4\\,h5\\,h6\\,ul\\,ol\\,p\\]\\:\\[all\\:revert\\] h1,h2,h3,h4,h5,h6,ul,ol,p{all:revert}.\\[\\&_table\\]\\:w-full\\! table{width:100%!important}.\\[\\&_table\\]\\:table\\! table{display:table!important}.table{display:table}")),document.head.appendChild(n)}}catch(r){console.error("vite-plugin-css-injected-by-js",r)}})();
2
- (function(e,f){typeof exports=="object"&&typeof module<"u"?module.exports=f(require("react/jsx-runtime"),require("@ant-design/x-markdown"),require("clsx"),require("react"),require("antd"),require("@ant-design/x")):typeof define=="function"&&define.amd?define(["react/jsx-runtime","@ant-design/x-markdown","clsx","react","antd","@ant-design/x"],f):(e=typeof globalThis<"u"?globalThis:e||self,e.InfinilabsMarkdown=f(e.jsxRuntime,e.AntDesignXMarkdown,e.clsx,e.React,e.antd,e.AntDesignX))})(this,(function(e,f,A,t,m,x){"use strict";const{Text:g}=m.Typography,k=n=>{const{className:o,children:r}=n,i=o?.match(/language-(\w+)/)?.[1]??"";return typeof r!="string"?null:i==="mermaid"?e.jsx(x.Mermaid,{children:r}):i?e.jsx(x.CodeHighlighter,{lang:i,children:r}):e.jsx(g,{code:!0,children:r})},y=n=>typeof n=="string"||typeof n=="number"?String(n):t.isValidElement(n)?y(n.props.children):Array.isArray(n)?n.map(y).join(""):"",C=n=>{const o=[],r=[],i=t.Children.toArray(n);for(const s of i){if(!t.isValidElement(s))continue;const p=s.type;if(p==="thead"){const l=t.Children.toArray(s.props.children);for(const c of l){if(!t.isValidElement(c))continue;const d=t.Children.toArray(c.props.children);let a=0;for(const u of d){if(!t.isValidElement(u))continue;const h=y(u.props.children);o.push({title:h,dataIndex:`col_${a}`,key:`col_${a}`}),a++}}}if(p==="tbody"){const l=t.Children.toArray(s.props.children);let c=0;for(const d of l){if(!t.isValidElement(d))continue;const a={key:`row_${c}`},u=t.Children.toArray(d.props.children);let h=0;for(const w of u)t.isValidElement(w)&&(a[`col_${h}`]=w.props.children,h++);r.push(a),c++}}}return{columns:o,dataSource:r}},T=({children:n})=>{const{columns:o,dataSource:r}=C(n);return e.jsx(m.Table,{className:"[&_table]:w-full! [&_table]:table!",columns:o,dataSource:r,pagination:!1,size:"small",bordered:!0})},{Link:E}=m.Typography;return n=>{const{url:o,className:r,components:i,...s}=n,[p,l]=t.useState(s.content),c=async d=>{const u=await(await fetch(d)).text();l(u)};return t.useEffect(()=>{o&&c(o)},[o]),t.useEffect(()=>{l(s.content)},[s.content]),e.jsx(f.XMarkdown,{...s,className:A("[&_h1,h2,h3,h4,h5,h6,ul,ol,p]:[all:revert]",r),content:p,components:{code:k,a:E,table:T,...i}})}}));
1
+ (function(){try{if(typeof document<`u`){var e=document.createElement(`style`);e.appendChild(document.createTextNode(`*,:before,:after,::backdrop{--un-rotate:0;--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-scale-x:1;--un-scale-y:1;--un-scale-z:1;--un-skew-x:0;--un-skew-y:0;--un-translate-x:0;--un-translate-y:0;--un-translate-z:0;--un-pan-x: ;--un-pan-y: ;--un-pinch-zoom: ;--un-scroll-snap-strictness:proximity;--un-ordinal: ;--un-slashed-zero: ;--un-numeric-figure: ;--un-numeric-spacing: ;--un-numeric-fraction: ;--un-border-spacing-x:0;--un-border-spacing-y:0;--un-ring-offset-shadow:0 0 #0000;--un-ring-shadow:0 0 #0000;--un-shadow-inset: ;--un-shadow:0 0 #0000;--un-ring-inset: ;--un-ring-offset-width:0px;--un-ring-offset-color:#fff;--un-ring-width:0px;--un-ring-color:#93c5fd80;--un-blur: ;--un-brightness: ;--un-contrast: ;--un-drop-shadow: ;--un-grayscale: ;--un-hue-rotate: ;--un-invert: ;--un-saturate: ;--un-sepia: ;--un-backdrop-blur: ;--un-backdrop-brightness: ;--un-backdrop-contrast: ;--un-backdrop-grayscale: ;--un-backdrop-hue-rotate: ;--un-backdrop-invert: ;--un-backdrop-opacity: ;--un-backdrop-saturate: ;--un-backdrop-sepia: }.\\[\\&_\\:is\\(h1\\,h2\\,h3\\,h4\\,h5\\,h6\\,ul\\,ol\\,p\\)\\]\\:\\[all\\:revert\\] :is(h1,h2,h3,h4,h5,h6,ul,ol,p){all:revert}.\\[\\&_table\\]\\:w-full\\! table{width:100%!important}.\\[\\&_table\\]\\:table\\! table{display:table!important}.table{display:table}
2
+ /*$vite$:1*/`)),document.head.appendChild(e)}}catch(e){console.error(`vite-plugin-css-injected-by-js`,e)}})();(function(e,t){typeof exports==`object`&&typeof module<`u`?module.exports=t(require(`@ant-design/x-markdown`),require(`clsx`),require(`react`),require(`antd`),require(`@ant-design/x`),require(`react/jsx-runtime`)):typeof define==`function`&&define.amd?define([`@ant-design/x-markdown`,`clsx`,`react`,`antd`,`@ant-design/x`,`react/jsx-runtime`],t):(e=typeof globalThis<`u`?globalThis:e||self,e.InfinilabsMarkdown=t(e.AntDesignXMarkdown,e.clsx,e.React,e.antd,e.AntDesignX,e.jsxRuntime))})(this,function(e,t,n,r,i,a){var o=Object.create,s=Object.defineProperty,c=Object.getOwnPropertyDescriptor,l=Object.getOwnPropertyNames,u=Object.getPrototypeOf,d=Object.prototype.hasOwnProperty,f=(e,t,n,r)=>{if(t&&typeof t==`object`||typeof t==`function`)for(var i=l(t),a=0,o=i.length,u;a<o;a++)u=i[a],!d.call(e,u)&&u!==n&&s(e,u,{get:(e=>t[e]).bind(null,u),enumerable:!(r=c(t,u))||r.enumerable});return e};t=((e,t,n)=>(n=e==null?{}:o(u(e)),f(t||!e||!e.__esModule?s(n,`default`,{value:e,enumerable:!0}):n,e)))(t);var{Text:p}=r.Typography,m=e=>{let{className:t,children:n}=e,r=t?.match(/language-(\w+)/)?.[1]??``;return typeof n==`string`?r===`mermaid`?(0,a.jsx)(i.Mermaid,{children:n}):r?(0,a.jsx)(i.CodeHighlighter,{lang:r,children:n}):(0,a.jsx)(p,{code:!0,children:n}):null},h=e=>typeof e==`string`||typeof e==`number`?String(e):(0,n.isValidElement)(e)?h(e.props.children):Array.isArray(e)?e.map(h).join(``):``,g=e=>{let t=[],r=[],i=n.Children.toArray(e);for(let e of i){if(!(0,n.isValidElement)(e))continue;let i=e.type;if(i===`thead`){let r=n.Children.toArray(e.props.children);for(let e of r){if(!(0,n.isValidElement)(e))continue;let r=n.Children.toArray(e.props.children),i=0;for(let e of r){if(!(0,n.isValidElement)(e))continue;let r=h(e.props.children);t.push({title:r,dataIndex:`col_${i}`,key:`col_${i}`}),i++}}}if(i===`tbody`){let t=n.Children.toArray(e.props.children),i=0;for(let e of t){if(!(0,n.isValidElement)(e))continue;let t={key:`row_${i}`},a=n.Children.toArray(e.props.children),o=0;for(let e of a)(0,n.isValidElement)(e)&&(t[`col_${o}`]=e.props.children,o++);r.push(t),i++}}}return{columns:t,dataSource:r}},_=({children:e})=>{let{columns:t,dataSource:n}=g(e);return(0,a.jsx)(r.Table,{className:`[&_table]:w-full! [&_table]:table!`,columns:t,dataSource:n,pagination:!1,size:`small`,bordered:!0})},{Link:v}=r.Typography;return r=>{let{url:i,requestHeaders:o,className:s,components:c,...l}=r,[u,d]=(0,n.useState)(l.content),f=async e=>{d(await(await fetch(e,{headers:o})).text())};return(0,n.useEffect)(()=>{i&&f(i)},[i]),(0,n.useEffect)(()=>{d(l.content)},[l.content]),(0,a.jsx)(e.XMarkdown,{...l,className:(0,t.default)(`[&_:is(h1,h2,h3,h4,h5,h6,ul,ol,p)]:[all:revert]`,s),content:u,components:{code:m,a:v,table:_,...c}})}});
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@infinilabs/markdown",
3
- "version": "0.0.2",
3
+ "version": "0.0.4",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "files": [