@infinilabs/markdown 0.0.3 → 0.0.5

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,82 +1,91 @@
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: s, children: c } = e, l = s?.match(/language-(\w+)/)?.[1] ?? "";
10
- return typeof c == "string" ? l === "mermaid" ? /* @__PURE__ */ jsx(Mermaid, { children: c }) : l ? /* @__PURE__ */ jsx(CodeHighlighter, {
11
- lang: l,
12
- children: c
13
- }) : /* @__PURE__ */ jsx(Text, {
14
- code: !0,
15
- children: c
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 s = [], u = [], d = Children.toArray(e);
19
- for (let e of d) {
20
- if (!isValidElement(e)) continue;
21
- let d = e.type;
22
- if (d === "thead") {
23
- let u = Children.toArray(e.props.children);
24
- for (let e of u) {
25
- if (!isValidElement(e)) continue;
26
- let u = Children.toArray(e.props.children), d = 0;
27
- for (let e of u) {
28
- if (!isValidElement(e)) continue;
29
- let c = extractText(e.props.children);
30
- s.push({
31
- title: c,
32
- dataIndex: `col_${d}`,
33
- key: `col_${d}`
34
- }), d++;
35
- }
36
- }
37
- }
38
- if (d === "tbody") {
39
- let s = Children.toArray(e.props.children), d = 0;
40
- for (let e of s) {
41
- if (!isValidElement(e)) continue;
42
- let s = { key: `row_${d}` }, f = Children.toArray(e.props.children), p = 0;
43
- for (let e of f) isValidElement(e) && (s[`col_${p}`] = e.props.children, p++);
44
- u.push(s), d++;
45
- }
46
- }
47
- }
48
- return {
49
- columns: s,
50
- dataSource: u
51
- };
52
- }, Table_default = ({ children: e }) => {
53
- let { columns: s, dataSource: c } = parseTableChildren(e);
54
- return /* @__PURE__ */ jsx(Table, {
55
- className: "[&_table]:w-full! [&_table]:table!",
56
- columns: s,
57
- dataSource: c,
58
- pagination: !1,
59
- size: "small",
60
- bordered: !0
61
- });
62
- }, { Link } = Typography, components_default = (c) => {
63
- let { url: l, className: f, components: p, ...m } = c, [h, g] = useState(m.content), _ = async (e) => {
64
- g(await (await fetch(e)).text());
65
- };
66
- return useEffect(() => {
67
- l && _(l);
68
- }, [l]), 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
- });
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: }.\\[\\&_\\: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}")),document.head.appendChild(n)}}catch(r){console.error("vite-plugin-css-injected-by-js",r)}})();
2
+ import { jsx as h } from "react/jsx-runtime";
3
+ import { XMarkdown as b } from "@ant-design/x-markdown";
4
+ import g from "clsx";
5
+ import { Children as d, 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: e, children: r } = t, s = e?.match(/language-(\w+)/)?.[1] ?? "";
10
+ return typeof r != "string" ? null : s === "mermaid" ? /* @__PURE__ */ h(_, { children: r }) : s ? /* @__PURE__ */ h(C, { lang: s, children: r }) : /* @__PURE__ */ h(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 e = [], r = [], s = d.toArray(t);
13
+ for (const a of s) {
14
+ if (!f(a)) continue;
15
+ const c = a.type;
16
+ if (c === "thead") {
17
+ const p = d.toArray(a.props.children);
18
+ for (const o of p) {
19
+ if (!f(o)) continue;
20
+ const i = d.toArray(o.props.children);
21
+ let n = 0;
22
+ for (const u of i) {
23
+ if (!f(u)) continue;
24
+ const l = m(u.props.children);
25
+ e.push({
26
+ title: l,
27
+ dataIndex: `col_${n}`,
28
+ key: `col_${n}`
29
+ }), n++;
30
+ }
31
+ }
32
+ }
33
+ if (c === "tbody") {
34
+ const p = d.toArray(a.props.children);
35
+ let o = 0;
36
+ for (const i of p) {
37
+ if (!f(i)) continue;
38
+ const n = { key: `row_${o}` }, u = d.toArray(i.props.children);
39
+ let l = 0;
40
+ for (const y of u)
41
+ f(y) && (n[`col_${l}`] = y.props.children, l++);
42
+ r.push(n), o++;
43
+ }
44
+ }
45
+ }
46
+ return { columns: e, dataSource: r };
47
+ }, S = ({ children: t }) => {
48
+ const { columns: e, dataSource: r } = $(t);
49
+ return /* @__PURE__ */ h(
50
+ T,
51
+ {
52
+ className: "[&_table]:w-full! [&_table]:table!",
53
+ columns: e,
54
+ dataSource: r,
55
+ pagination: !1,
56
+ size: "small",
57
+ bordered: !0
58
+ }
59
+ );
60
+ }, { Link: I } = A, z = (t) => {
61
+ const { url: e, requestHeaders: r, className: s, components: a, ...c } = t, [p, o] = w(c.content), i = async (n) => {
62
+ const l = await (await fetch(n, {
63
+ headers: r
64
+ })).text();
65
+ o(l);
66
+ };
67
+ return x(() => {
68
+ e && i(e);
69
+ }, [e]), x(() => {
70
+ o(c.content);
71
+ }, [c.content]), /* @__PURE__ */ h(
72
+ b,
73
+ {
74
+ ...c,
75
+ className: g(
76
+ "[&_:is(h1,h2,h3,h4,h5,h6,ul,ol,p)]:[all:revert]",
77
+ s
78
+ ),
79
+ content: p,
80
+ components: {
81
+ code: N,
82
+ a: I,
83
+ table: S,
84
+ ...a
85
+ }
86
+ }
87
+ );
88
+ };
89
+ export {
90
+ z as default
81
91
  };
82
- export { components_default as default };
@@ -1,2 +1,2 @@
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,className:o,components:s,...c}=r,[l,u]=(0,n.useState)(c.content),d=async e=>{u(await(await fetch(e)).text())};return(0,n.useEffect)(()=>{i&&d(i)},[i]),(0,n.useEffect)(()=>{u(c.content)},[c.content]),(0,a.jsx)(e.XMarkdown,{...c,className:(0,t.default)(`[&_:is(h1,h2,h3,h4,h5,h6,ul,ol,p)]:[all:revert]`,o),content:l,components:{code:m,a:v,table:_,...s}})}});
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: }.\\[\\&_\\: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}")),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:s,children:r}=n,c=s?.match(/language-(\w+)/)?.[1]??"";return typeof r!="string"?null:c==="mermaid"?e.jsx(x.Mermaid,{children:r}):c?e.jsx(x.CodeHighlighter,{lang:c,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 s=[],r=[],c=t.Children.toArray(n);for(const d of c){if(!t.isValidElement(d))continue;const a=d.type;if(a==="thead"){const h=t.Children.toArray(d.props.children);for(const o of h){if(!t.isValidElement(o))continue;const l=t.Children.toArray(o.props.children);let i=0;for(const p of l){if(!t.isValidElement(p))continue;const u=y(p.props.children);s.push({title:u,dataIndex:`col_${i}`,key:`col_${i}`}),i++}}}if(a==="tbody"){const h=t.Children.toArray(d.props.children);let o=0;for(const l of h){if(!t.isValidElement(l))continue;const i={key:`row_${o}`},p=t.Children.toArray(l.props.children);let u=0;for(const w of p)t.isValidElement(w)&&(i[`col_${u}`]=w.props.children,u++);r.push(i),o++}}}return{columns:s,dataSource:r}},T=({children:n})=>{const{columns:s,dataSource:r}=C(n);return e.jsx(m.Table,{className:"[&_table]:w-full! [&_table]:table!",columns:s,dataSource:r,pagination:!1,size:"small",bordered:!0})},{Link:E}=m.Typography;return n=>{const{url:s,requestHeaders:r,className:c,components:d,...a}=n,[h,o]=t.useState(a.content),l=async i=>{const u=await(await fetch(i,{headers:r})).text();o(u)};return t.useEffect(()=>{s&&l(s)},[s]),t.useEffect(()=>{o(a.content)},[a.content]),e.jsx(f.XMarkdown,{...a,className:A("[&_:is(h1,h2,h3,h4,h5,h6,ul,ol,p)]:[all:revert]",c),content:h,components:{code:k,a:E,table:T,...d}})}}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@infinilabs/markdown",
3
- "version": "0.0.3",
3
+ "version": "0.0.5",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "files": [