@caseparts-org/caseblocks 0.0.195 → 0.0.197
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/main-browser.d.ts +4 -6
- package/dist/main-browser.js +3 -5
- package/dist/molecules/Markdown/Markdown.d.ts +12 -0
- package/dist/{atoms → molecules}/Markdown/Markdown.js +776 -758
- package/dist/molecules/Markdown/Markdown.stories.js +148 -0
- package/dist/molecules/Markdown/remarkAdmonition.js +131 -0
- package/dist/{atoms → molecules}/Markdown/usePreprocessedMarkdown.d.ts +1 -1
- package/dist/molecules/Markdown/usePreprocessedMarkdown.js +86 -0
- package/package.json +1 -1
- package/dist/atoms/Markdown/Markdown.d.ts +0 -7
- package/dist/atoms/Markdown/Markdown.stories.js +0 -139
- package/dist/atoms/Markdown/PreprocessedMarkdown.d.ts +0 -10
- package/dist/atoms/Markdown/PreprocessedMarkdown.js +0 -39
- package/dist/atoms/Markdown/PreprocessedMarkdown.stories.d.ts +0 -8
- package/dist/atoms/Markdown/PreprocessedMarkdown.stories.js +0 -73
- package/dist/atoms/Markdown/remarkAdmonition.js +0 -120
- package/dist/atoms/Markdown/usePreprocessedMarkdown.js +0 -74
- package/dist/{atoms → molecules}/Markdown/Markdown.stories.d.ts +1 -1
- /package/dist/{atoms → molecules}/Markdown/remarkAdmonition.d.ts +0 -0
|
@@ -1,120 +0,0 @@
|
|
|
1
|
-
const g = /^[a-z][a-z0-9_-]*/, y = /^\s*(?:[a-z][a-z0-9_-]*="(?:[^"\\]|\\.)*"(?:[ \t]+[a-z][a-z0-9_-]*="(?:[^"\\]|\\.)*")*)?\s*$/, x = /([a-z][a-z0-9_-]*)="((?:[^"\\]|\\.)*)"/g, d = /^:::[ \t]*$/, b = /* @__PURE__ */ new Set(["note", "tip", "important", "caution", "warning"]), f = (n) => {
|
|
2
|
-
if (n.type !== "paragraph" || !n.children || n.children.length === 0) return null;
|
|
3
|
-
let t = "";
|
|
4
|
-
for (const e of n.children) {
|
|
5
|
-
if (e.type === "text" && typeof e.value == "string") {
|
|
6
|
-
t += e.value;
|
|
7
|
-
continue;
|
|
8
|
-
}
|
|
9
|
-
if (e.type === "break") {
|
|
10
|
-
t += `
|
|
11
|
-
`;
|
|
12
|
-
continue;
|
|
13
|
-
}
|
|
14
|
-
return null;
|
|
15
|
-
}
|
|
16
|
-
return t;
|
|
17
|
-
}, T = (n) => ({
|
|
18
|
-
type: "paragraph",
|
|
19
|
-
children: [{ type: "text", value: n }]
|
|
20
|
-
}), _ = (n) => n.replace(/\\(.)/g, "$1"), v = (n) => {
|
|
21
|
-
if (!y.test(n)) return null;
|
|
22
|
-
const t = {};
|
|
23
|
-
for (const e of n.matchAll(x)) {
|
|
24
|
-
const i = e[1], o = _(e[2]);
|
|
25
|
-
(i === "icon" || i === "title") && (t[i] = o);
|
|
26
|
-
}
|
|
27
|
-
return t;
|
|
28
|
-
}, E = (n) => {
|
|
29
|
-
let t = !1, e = !1;
|
|
30
|
-
for (let i = 1; i < n.length; i += 1) {
|
|
31
|
-
const o = n[i];
|
|
32
|
-
if (e) {
|
|
33
|
-
e = !1;
|
|
34
|
-
continue;
|
|
35
|
-
}
|
|
36
|
-
if (o === "\\") {
|
|
37
|
-
e = !0;
|
|
38
|
-
continue;
|
|
39
|
-
}
|
|
40
|
-
if (o === '"') {
|
|
41
|
-
t = !t;
|
|
42
|
-
continue;
|
|
43
|
-
}
|
|
44
|
-
if (o === "}" && !t)
|
|
45
|
-
return i;
|
|
46
|
-
}
|
|
47
|
-
return -1;
|
|
48
|
-
}, I = (n) => {
|
|
49
|
-
if (!n.startsWith(":::")) return null;
|
|
50
|
-
let t = n.slice(3);
|
|
51
|
-
const e = t.match(g);
|
|
52
|
-
if (!e) return null;
|
|
53
|
-
const i = e[0];
|
|
54
|
-
t = t.slice(i.length);
|
|
55
|
-
let o;
|
|
56
|
-
if (t.startsWith("[")) {
|
|
57
|
-
const r = t.indexOf("]");
|
|
58
|
-
if (r < 0) return null;
|
|
59
|
-
o = t.slice(1, r), t = t.slice(r + 1);
|
|
60
|
-
}
|
|
61
|
-
let c = {};
|
|
62
|
-
if (t.startsWith("{")) {
|
|
63
|
-
const r = E(t);
|
|
64
|
-
if (r < 0) return null;
|
|
65
|
-
const a = v(t.slice(1, r));
|
|
66
|
-
if (!a) return null;
|
|
67
|
-
c = a, t = t.slice(r + 1);
|
|
68
|
-
}
|
|
69
|
-
return /^[ \t]*$/.test(t) ? { name: i, title: o, attributes: c } : null;
|
|
70
|
-
}, A = (n, t) => {
|
|
71
|
-
for (let e = t; e < n.length; e += 1) {
|
|
72
|
-
const i = f(n[e]);
|
|
73
|
-
if (i && d.test(i))
|
|
74
|
-
return e;
|
|
75
|
-
}
|
|
76
|
-
return -1;
|
|
77
|
-
}, N = (n) => {
|
|
78
|
-
const t = n.join(`
|
|
79
|
-
`);
|
|
80
|
-
return t.trim() ? t.split(/\n{2,}/).map((e) => e.trim()).filter(Boolean).map((e) => T(e)) : [];
|
|
81
|
-
};
|
|
82
|
-
function z() {
|
|
83
|
-
return (n) => {
|
|
84
|
-
if (!(!n || n.type !== "root" || !Array.isArray(n.children)))
|
|
85
|
-
for (let t = 0; t < n.children.length; t += 1) {
|
|
86
|
-
const e = f(n.children[t]);
|
|
87
|
-
if (!e) continue;
|
|
88
|
-
const i = e.split(/\r?\n/), o = I(i[0] ?? "");
|
|
89
|
-
if (!o) continue;
|
|
90
|
-
let c = [], r = 0;
|
|
91
|
-
if (i.length > 1) {
|
|
92
|
-
const l = i.findIndex((u, m) => m > 0 && d.test(u));
|
|
93
|
-
if (l < 0 || i.slice(l + 1).some((u) => u.trim().length > 0))
|
|
94
|
-
continue;
|
|
95
|
-
c = N(i.slice(1, l)), r = 1;
|
|
96
|
-
} else {
|
|
97
|
-
const l = A(n.children, t + 1);
|
|
98
|
-
if (l < 0) continue;
|
|
99
|
-
c = n.children.slice(t + 1, l), r = l - t + 1;
|
|
100
|
-
}
|
|
101
|
-
const a = o.title ?? o.attributes.title, h = b.has(o.name) ? o.name : "unknown", s = {
|
|
102
|
-
"data-admonition": o.name,
|
|
103
|
-
"data-admonition-variant": h
|
|
104
|
-
};
|
|
105
|
-
a !== void 0 && (s["data-admonition-title"] = a), o.attributes.icon !== void 0 && (s["data-admonition-icon"] = o.attributes.icon);
|
|
106
|
-
const p = {
|
|
107
|
-
type: "admonition",
|
|
108
|
-
data: {
|
|
109
|
-
hName: "aside",
|
|
110
|
-
hProperties: s
|
|
111
|
-
},
|
|
112
|
-
children: c
|
|
113
|
-
};
|
|
114
|
-
n.children.splice(t, r, p);
|
|
115
|
-
}
|
|
116
|
-
};
|
|
117
|
-
}
|
|
118
|
-
export {
|
|
119
|
-
z as remarkAdmonition
|
|
120
|
-
};
|
|
@@ -1,74 +0,0 @@
|
|
|
1
|
-
import { useState as q, useRef as p, useEffect as v, useMemo as x } from "react";
|
|
2
|
-
function k(n, i, w, y = !1, S) {
|
|
3
|
-
const [H, d] = q(n ?? ""), [P, h] = q(!1), r = p(/* @__PURE__ */ new Map()), E = p(w), R = p(
|
|
4
|
-
S
|
|
5
|
-
);
|
|
6
|
-
v(() => {
|
|
7
|
-
E.current = w, R.current = S;
|
|
8
|
-
}, [w, S]);
|
|
9
|
-
const u = x(() => /\[(.+?)\](?!\()/g, []), f = x(() => {
|
|
10
|
-
if (!n) return [];
|
|
11
|
-
const o = Array.from(n.matchAll(u)).map((l) => l[1]);
|
|
12
|
-
return Array.from(new Set(o));
|
|
13
|
-
}, [n, u]), $ = (o) => {
|
|
14
|
-
const e = o.split(/\r?\n/);
|
|
15
|
-
if (e.length === 0) return o;
|
|
16
|
-
const l = e[0];
|
|
17
|
-
return /^\s*#\s/.test(l) || (e[0] = `# ${l.trim()}`), e.join(`
|
|
18
|
-
`);
|
|
19
|
-
};
|
|
20
|
-
return v(() => {
|
|
21
|
-
if (!n) {
|
|
22
|
-
d(""), h(!1);
|
|
23
|
-
return;
|
|
24
|
-
}
|
|
25
|
-
if (!f.length) {
|
|
26
|
-
d($(n)), h(!1);
|
|
27
|
-
return;
|
|
28
|
-
}
|
|
29
|
-
let o = !1;
|
|
30
|
-
h(!0);
|
|
31
|
-
const e = f.filter((g) => !r.current.has(g));
|
|
32
|
-
return (async () => {
|
|
33
|
-
if (e.length) {
|
|
34
|
-
const t = R.current, s = E.current;
|
|
35
|
-
if (t)
|
|
36
|
-
try {
|
|
37
|
-
const c = await t(e), a = c instanceof Set ? c : new Set(c);
|
|
38
|
-
e.forEach((m) => {
|
|
39
|
-
r.current.set(m, a.has(m));
|
|
40
|
-
});
|
|
41
|
-
} catch {
|
|
42
|
-
e.forEach((c) => {
|
|
43
|
-
r.current.set(c, !1);
|
|
44
|
-
});
|
|
45
|
-
}
|
|
46
|
-
else s ? (await Promise.allSettled(
|
|
47
|
-
e.map(async (a) => {
|
|
48
|
-
try {
|
|
49
|
-
await s(a), r.current.set(a, !0);
|
|
50
|
-
} catch {
|
|
51
|
-
r.current.set(a, !1);
|
|
52
|
-
}
|
|
53
|
-
})
|
|
54
|
-
)).forEach((a, m) => {
|
|
55
|
-
const M = e[m];
|
|
56
|
-
r.current.has(M) || r.current.set(M, a.status === "fulfilled");
|
|
57
|
-
}) : e.forEach((c) => {
|
|
58
|
-
r.current.set(c, !0);
|
|
59
|
-
});
|
|
60
|
-
}
|
|
61
|
-
const g = new Set(
|
|
62
|
-
f.filter((t) => r.current.get(t) === !0)
|
|
63
|
-
), j = new Set(
|
|
64
|
-
f.filter((t) => r.current.get(t) === !1)
|
|
65
|
-
), C = (t) => typeof i == "function" ? i(t) : i, A = n.replace(u, (t, s) => g.has(s) ? `**[${s}](${C(s)})**` : t), L = y ? A.replace(u, (t, s) => j.has(s) ? `[${s}]⚠️` : t) : A, O = $(L);
|
|
66
|
-
o || (d(O), h(!1));
|
|
67
|
-
})(), () => {
|
|
68
|
-
o = !0;
|
|
69
|
-
};
|
|
70
|
-
}, [n, f, y, i, u]), { output: H, loading: P, tokens: f };
|
|
71
|
-
}
|
|
72
|
-
export {
|
|
73
|
-
k as usePreprocessedMarkdown
|
|
74
|
-
};
|
|
@@ -10,7 +10,7 @@ declare const meta: {
|
|
|
10
10
|
};
|
|
11
11
|
export default meta;
|
|
12
12
|
type Story = StoryObj<typeof meta>;
|
|
13
|
+
export declare const Playground: Story;
|
|
13
14
|
export declare const Basic: Story;
|
|
14
15
|
export declare const ItemDescription: Story;
|
|
15
16
|
export declare const Admonitions: Story;
|
|
16
|
-
export declare const Playground: Story;
|
|
File without changes
|