@burdenoff/fe-libs 2026.720.1 → 2026.720.2
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/node_modules/ccount/index.js +10 -0
- package/dist/node_modules/hast-util-sanitize/lib/index.js +161 -0
- package/dist/node_modules/hast-util-sanitize/lib/schema.js +74 -0
- package/dist/node_modules/longest-streak/index.js +9 -0
- package/dist/node_modules/markdown-table/index.js +59 -0
- package/dist/node_modules/mdast-util-find-and-replace/lib/index.js +61 -0
- package/dist/node_modules/mdast-util-find-and-replace/node_modules/escape-string-regexp/index.js +7 -0
- package/dist/node_modules/mdast-util-gfm/lib/index.js +26 -0
- package/dist/node_modules/mdast-util-gfm-autolink-literal/lib/index.js +129 -0
- package/dist/node_modules/mdast-util-gfm-footnote/lib/index.js +97 -0
- package/dist/node_modules/mdast-util-gfm-strikethrough/lib/index.js +49 -0
- package/dist/node_modules/mdast-util-gfm-table/lib/index.js +137 -0
- package/dist/node_modules/mdast-util-gfm-task-list-item/lib/index.js +58 -0
- package/dist/node_modules/mdast-util-phrasing/lib/index.js +22 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/blockquote.js +12 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/break.js +9 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/code.js +36 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/definition.js +24 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/emphasis.js +25 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/heading.js +24 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/html.js +10 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/image-reference.js +23 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/image.js +28 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/index.js +44 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/inline-code.js +19 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/link-reference.js +23 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/link.js +41 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/list-item.js +18 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/list.js +26 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/paragraph.js +7 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/root.js +9 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/strong.js +25 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/text.js +6 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/thematic-break.js +9 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/util/check-bullet-ordered.js +8 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/util/check-bullet-other.js +11 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/util/check-bullet.js +8 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/util/check-emphasis.js +8 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/util/check-fence.js +8 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/util/check-list-item-indent.js +8 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/util/check-quote.js +8 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/util/check-rule-repetition.js +8 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/util/check-rule.js +8 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/util/check-strong.js +8 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/util/encode-character-reference.js +6 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/util/encode-info.js +38 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/util/format-code-as-indented.js +6 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/util/format-heading-as-setext.js +11 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/util/format-link-as-autolink.js +8 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/util/pattern-in-scope.js +12 -0
- package/dist/node_modules/micromark-extension-gfm/index.js +18 -0
- package/dist/node_modules/micromark-extension-gfm-autolink-literal/lib/syntax.js +174 -0
- package/dist/node_modules/micromark-extension-gfm-footnote/lib/syntax.js +193 -0
- package/dist/node_modules/micromark-extension-gfm-strikethrough/lib/syntax.js +96 -0
- package/dist/node_modules/micromark-extension-gfm-table/lib/edit-map.js +43 -0
- package/dist/node_modules/micromark-extension-gfm-table/lib/infer.js +20 -0
- package/dist/node_modules/micromark-extension-gfm-table/lib/syntax.js +201 -0
- package/dist/node_modules/micromark-extension-gfm-task-list-item/lib/syntax.js +34 -0
- package/dist/node_modules/rehype-sanitize/lib/index.js +9 -0
- package/dist/node_modules/remark-gfm/lib/index.js +10 -0
- package/dist/shared/components/Markdown.d.ts +22 -0
- package/dist/shared/components/Markdown.d.ts.map +1 -0
- package/dist/shared/components/Markdown.js +38 -0
- package/dist/shared/components/index.d.ts +2 -0
- package/dist/shared/components/index.d.ts.map +1 -1
- package/dist/shared/graphql/fetch.d.ts.map +1 -1
- package/dist/shared/pages/LegalPage.js +1 -1
- package/dist/shared-components.js +2 -1
- package/dist/shared.js +59 -58
- package/package.json +7 -1
- package/dist/shared/components/LegalPage.d.ts +0 -19
- package/dist/shared/components/LegalPage.d.ts.map +0 -1
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
//#region node_modules/micromark-extension-gfm-table/lib/edit-map.js
|
|
2
|
+
var e = class {
|
|
3
|
+
constructor() {
|
|
4
|
+
this.map = [];
|
|
5
|
+
}
|
|
6
|
+
add(e, n, r) {
|
|
7
|
+
t(this, e, n, r);
|
|
8
|
+
}
|
|
9
|
+
consume(e) {
|
|
10
|
+
/* c8 ignore next 3 -- `resolve` is never called without tables, so without edits. */
|
|
11
|
+
if (this.map.sort(function(e, t) {
|
|
12
|
+
return e[0] - t[0];
|
|
13
|
+
}), this.map.length === 0) return;
|
|
14
|
+
let t = this.map.length, n = [];
|
|
15
|
+
for (; t > 0;) --t, n.push(e.slice(this.map[t][0] + this.map[t][1]), this.map[t][2]), e.length = this.map[t][0];
|
|
16
|
+
n.push(e.slice()), e.length = 0;
|
|
17
|
+
let r = n.pop();
|
|
18
|
+
for (; r;) {
|
|
19
|
+
for (let t of r) e.push(t);
|
|
20
|
+
r = n.pop();
|
|
21
|
+
}
|
|
22
|
+
this.map.length = 0;
|
|
23
|
+
}
|
|
24
|
+
};
|
|
25
|
+
function t(e, t, n, r) {
|
|
26
|
+
let i = 0;
|
|
27
|
+
if (!(n === 0 && r.length === 0)) {
|
|
28
|
+
for (; i < e.map.length;) {
|
|
29
|
+
if (e.map[i][0] === t) {
|
|
30
|
+
e.map[i][1] += n, e.map[i][2].push(...r);
|
|
31
|
+
return;
|
|
32
|
+
}
|
|
33
|
+
i += 1;
|
|
34
|
+
}
|
|
35
|
+
e.map.push([
|
|
36
|
+
t,
|
|
37
|
+
n,
|
|
38
|
+
r
|
|
39
|
+
]);
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
//#endregion
|
|
43
|
+
export { e as EditMap };
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
//#region node_modules/micromark-extension-gfm-table/lib/infer.js
|
|
2
|
+
function e(e, t) {
|
|
3
|
+
let n = !1, r = [];
|
|
4
|
+
for (; t < e.length;) {
|
|
5
|
+
let i = e[t];
|
|
6
|
+
if (n) {
|
|
7
|
+
if (i[0] === "enter") i[1].type === "tableContent" && r.push(e[t + 1][1].type === "tableDelimiterMarker" ? "left" : "none");
|
|
8
|
+
else if (i[1].type === "tableContent") {
|
|
9
|
+
if (e[t - 1][1].type === "tableDelimiterMarker") {
|
|
10
|
+
let e = r.length - 1;
|
|
11
|
+
r[e] = r[e] === "left" ? "center" : "right";
|
|
12
|
+
}
|
|
13
|
+
} else if (i[1].type === "tableDelimiterRow") break;
|
|
14
|
+
} else i[0] === "enter" && i[1].type === "tableDelimiterRow" && (n = !0);
|
|
15
|
+
t += 1;
|
|
16
|
+
}
|
|
17
|
+
return r;
|
|
18
|
+
}
|
|
19
|
+
//#endregion
|
|
20
|
+
export { e as gfmTableAlign };
|
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
import { markdownLineEnding as e, markdownLineEndingOrSpace as t, markdownSpace as n } from "../../micromark-util-character/index.js";
|
|
2
|
+
import { factorySpace as r } from "../../micromark-factory-space/index.js";
|
|
3
|
+
import { EditMap as i } from "./edit-map.js";
|
|
4
|
+
import { gfmTableAlign as a } from "./infer.js";
|
|
5
|
+
//#region node_modules/micromark-extension-gfm-table/lib/syntax.js
|
|
6
|
+
function o() {
|
|
7
|
+
return { flow: { null: {
|
|
8
|
+
name: "table",
|
|
9
|
+
tokenize: s,
|
|
10
|
+
resolveAll: c
|
|
11
|
+
} } };
|
|
12
|
+
}
|
|
13
|
+
function s(i, a, o) {
|
|
14
|
+
let s = this, c = 0, l = 0, u;
|
|
15
|
+
return d;
|
|
16
|
+
function d(e) {
|
|
17
|
+
let t = s.events.length - 1;
|
|
18
|
+
for (; t > -1;) {
|
|
19
|
+
let e = s.events[t][1].type;
|
|
20
|
+
if (e === "lineEnding" || e === "linePrefix") t--;
|
|
21
|
+
else break;
|
|
22
|
+
}
|
|
23
|
+
let n = t > -1 ? s.events[t][1].type : null, r = n === "tableHead" || n === "tableRow" ? E : f;
|
|
24
|
+
return r === E && s.parser.lazy[s.now().line] ? o(e) : r(e);
|
|
25
|
+
}
|
|
26
|
+
function f(e) {
|
|
27
|
+
return i.enter("tableHead"), i.enter("tableRow"), p(e);
|
|
28
|
+
}
|
|
29
|
+
function p(e) {
|
|
30
|
+
return e === 124 ? m(e) : (u = !0, l += 1, m(e));
|
|
31
|
+
}
|
|
32
|
+
function m(t) {
|
|
33
|
+
return t === null ? o(t) : e(t) ? l > 1 ? (l = 0, s.interrupt = !0, i.exit("tableRow"), i.enter("lineEnding"), i.consume(t), i.exit("lineEnding"), _) : o(t) : n(t) ? r(i, m, "whitespace")(t) : (l += 1, u && (u = !1, c += 1), t === 124 ? (i.enter("tableCellDivider"), i.consume(t), i.exit("tableCellDivider"), u = !0, m) : (i.enter("data"), h(t)));
|
|
34
|
+
}
|
|
35
|
+
function h(e) {
|
|
36
|
+
return e === null || e === 124 || t(e) ? (i.exit("data"), m(e)) : (i.consume(e), e === 92 ? g : h);
|
|
37
|
+
}
|
|
38
|
+
function g(e) {
|
|
39
|
+
return e === 92 || e === 124 ? (i.consume(e), h) : h(e);
|
|
40
|
+
}
|
|
41
|
+
function _(e) {
|
|
42
|
+
return s.interrupt = !1, s.parser.lazy[s.now().line] ? o(e) : (i.enter("tableDelimiterRow"), u = !1, n(e) ? r(i, v, "linePrefix", s.parser.constructs.disable.null.includes("codeIndented") ? void 0 : 4)(e) : v(e));
|
|
43
|
+
}
|
|
44
|
+
function v(e) {
|
|
45
|
+
return e === 45 || e === 58 ? b(e) : e === 124 ? (u = !0, i.enter("tableCellDivider"), i.consume(e), i.exit("tableCellDivider"), y) : T(e);
|
|
46
|
+
}
|
|
47
|
+
function y(e) {
|
|
48
|
+
return n(e) ? r(i, b, "whitespace")(e) : b(e);
|
|
49
|
+
}
|
|
50
|
+
function b(t) {
|
|
51
|
+
return t === 58 ? (l += 1, u = !0, i.enter("tableDelimiterMarker"), i.consume(t), i.exit("tableDelimiterMarker"), x) : t === 45 ? (l += 1, x(t)) : t === null || e(t) ? w(t) : T(t);
|
|
52
|
+
}
|
|
53
|
+
function x(e) {
|
|
54
|
+
return e === 45 ? (i.enter("tableDelimiterFiller"), S(e)) : T(e);
|
|
55
|
+
}
|
|
56
|
+
function S(e) {
|
|
57
|
+
return e === 45 ? (i.consume(e), S) : e === 58 ? (u = !0, i.exit("tableDelimiterFiller"), i.enter("tableDelimiterMarker"), i.consume(e), i.exit("tableDelimiterMarker"), C) : (i.exit("tableDelimiterFiller"), C(e));
|
|
58
|
+
}
|
|
59
|
+
function C(e) {
|
|
60
|
+
return n(e) ? r(i, w, "whitespace")(e) : w(e);
|
|
61
|
+
}
|
|
62
|
+
function w(t) {
|
|
63
|
+
return t === 124 ? v(t) : t === null || e(t) ? !u || c !== l ? T(t) : (i.exit("tableDelimiterRow"), i.exit("tableHead"), a(t)) : T(t);
|
|
64
|
+
}
|
|
65
|
+
function T(e) {
|
|
66
|
+
return o(e);
|
|
67
|
+
}
|
|
68
|
+
function E(e) {
|
|
69
|
+
return i.enter("tableRow"), D(e);
|
|
70
|
+
}
|
|
71
|
+
function D(t) {
|
|
72
|
+
return t === 124 ? (i.enter("tableCellDivider"), i.consume(t), i.exit("tableCellDivider"), D) : t === null || e(t) ? (i.exit("tableRow"), a(t)) : n(t) ? r(i, D, "whitespace")(t) : (i.enter("data"), O(t));
|
|
73
|
+
}
|
|
74
|
+
function O(e) {
|
|
75
|
+
return e === null || e === 124 || t(e) ? (i.exit("data"), D(e)) : (i.consume(e), e === 92 ? k : O);
|
|
76
|
+
}
|
|
77
|
+
function k(e) {
|
|
78
|
+
return e === 92 || e === 124 ? (i.consume(e), O) : O(e);
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
function c(e, t) {
|
|
82
|
+
let n = -1, r = !0, o = 0, s = [
|
|
83
|
+
0,
|
|
84
|
+
0,
|
|
85
|
+
0,
|
|
86
|
+
0
|
|
87
|
+
], c = [
|
|
88
|
+
0,
|
|
89
|
+
0,
|
|
90
|
+
0,
|
|
91
|
+
0
|
|
92
|
+
], d = !1, f = 0, p, m, h, g = new i();
|
|
93
|
+
for (; ++n < e.length;) {
|
|
94
|
+
let i = e[n], a = i[1];
|
|
95
|
+
i[0] === "enter" ? a.type === "tableHead" ? (d = !1, f !== 0 && (u(g, t, f, p, m), m = void 0, f = 0), p = {
|
|
96
|
+
type: "table",
|
|
97
|
+
start: Object.assign({}, a.start),
|
|
98
|
+
end: Object.assign({}, a.end)
|
|
99
|
+
}, g.add(n, 0, [[
|
|
100
|
+
"enter",
|
|
101
|
+
p,
|
|
102
|
+
t
|
|
103
|
+
]])) : a.type === "tableRow" || a.type === "tableDelimiterRow" ? (r = !0, h = void 0, s = [
|
|
104
|
+
0,
|
|
105
|
+
0,
|
|
106
|
+
0,
|
|
107
|
+
0
|
|
108
|
+
], c = [
|
|
109
|
+
0,
|
|
110
|
+
n + 1,
|
|
111
|
+
0,
|
|
112
|
+
0
|
|
113
|
+
], d && (d = !1, m = {
|
|
114
|
+
type: "tableBody",
|
|
115
|
+
start: Object.assign({}, a.start),
|
|
116
|
+
end: Object.assign({}, a.end)
|
|
117
|
+
}, g.add(n, 0, [[
|
|
118
|
+
"enter",
|
|
119
|
+
m,
|
|
120
|
+
t
|
|
121
|
+
]])), o = a.type === "tableDelimiterRow" ? 2 : m ? 3 : 1) : o && (a.type === "data" || a.type === "tableDelimiterMarker" || a.type === "tableDelimiterFiller") ? (r = !1, c[2] === 0 && (s[1] !== 0 && (c[0] = c[1], h = l(g, t, s, o, void 0, h), s = [
|
|
122
|
+
0,
|
|
123
|
+
0,
|
|
124
|
+
0,
|
|
125
|
+
0
|
|
126
|
+
]), c[2] = n)) : a.type === "tableCellDivider" && (r ? r = !1 : (s[1] !== 0 && (c[0] = c[1], h = l(g, t, s, o, void 0, h)), s = c, c = [
|
|
127
|
+
s[1],
|
|
128
|
+
n,
|
|
129
|
+
0,
|
|
130
|
+
0
|
|
131
|
+
])) : a.type === "tableHead" ? (d = !0, f = n) : a.type === "tableRow" || a.type === "tableDelimiterRow" ? (f = n, s[1] === 0 ? c[1] !== 0 && (h = l(g, t, c, o, n, h)) : (c[0] = c[1], h = l(g, t, s, o, n, h)), o = 0) : o && (a.type === "data" || a.type === "tableDelimiterMarker" || a.type === "tableDelimiterFiller") && (c[3] = n);
|
|
132
|
+
}
|
|
133
|
+
for (f !== 0 && u(g, t, f, p, m), g.consume(t.events), n = -1; ++n < t.events.length;) {
|
|
134
|
+
let e = t.events[n];
|
|
135
|
+
e[0] === "enter" && e[1].type === "table" && (e[1]._align = a(t.events, n));
|
|
136
|
+
}
|
|
137
|
+
return e;
|
|
138
|
+
}
|
|
139
|
+
function l(e, t, n, r, i, a) {
|
|
140
|
+
let o = r === 1 ? "tableHeader" : r === 2 ? "tableDelimiter" : "tableData";
|
|
141
|
+
n[0] !== 0 && (a.end = Object.assign({}, d(t.events, n[0])), e.add(n[0], 0, [[
|
|
142
|
+
"exit",
|
|
143
|
+
a,
|
|
144
|
+
t
|
|
145
|
+
]]));
|
|
146
|
+
let s = d(t.events, n[1]);
|
|
147
|
+
if (a = {
|
|
148
|
+
type: o,
|
|
149
|
+
start: Object.assign({}, s),
|
|
150
|
+
end: Object.assign({}, s)
|
|
151
|
+
}, e.add(n[1], 0, [[
|
|
152
|
+
"enter",
|
|
153
|
+
a,
|
|
154
|
+
t
|
|
155
|
+
]]), n[2] !== 0) {
|
|
156
|
+
let i = d(t.events, n[2]), a = d(t.events, n[3]), o = {
|
|
157
|
+
type: "tableContent",
|
|
158
|
+
start: Object.assign({}, i),
|
|
159
|
+
end: Object.assign({}, a)
|
|
160
|
+
};
|
|
161
|
+
if (e.add(n[2], 0, [[
|
|
162
|
+
"enter",
|
|
163
|
+
o,
|
|
164
|
+
t
|
|
165
|
+
]]), r !== 2) {
|
|
166
|
+
let r = t.events[n[2]], i = t.events[n[3]];
|
|
167
|
+
if (r[1].end = Object.assign({}, i[1].end), r[1].type = "chunkText", r[1].contentType = "text", n[3] > n[2] + 1) {
|
|
168
|
+
let t = n[2] + 1, r = n[3] - n[2] - 1;
|
|
169
|
+
e.add(t, r, []);
|
|
170
|
+
}
|
|
171
|
+
}
|
|
172
|
+
e.add(n[3] + 1, 0, [[
|
|
173
|
+
"exit",
|
|
174
|
+
o,
|
|
175
|
+
t
|
|
176
|
+
]]);
|
|
177
|
+
}
|
|
178
|
+
return i !== void 0 && (a.end = Object.assign({}, d(t.events, i)), e.add(i, 0, [[
|
|
179
|
+
"exit",
|
|
180
|
+
a,
|
|
181
|
+
t
|
|
182
|
+
]]), a = void 0), a;
|
|
183
|
+
}
|
|
184
|
+
function u(e, t, n, r, i) {
|
|
185
|
+
let a = [], o = d(t.events, n);
|
|
186
|
+
i && (i.end = Object.assign({}, o), a.push([
|
|
187
|
+
"exit",
|
|
188
|
+
i,
|
|
189
|
+
t
|
|
190
|
+
])), r.end = Object.assign({}, o), a.push([
|
|
191
|
+
"exit",
|
|
192
|
+
r,
|
|
193
|
+
t
|
|
194
|
+
]), e.add(n + 1, 0, a);
|
|
195
|
+
}
|
|
196
|
+
function d(e, t) {
|
|
197
|
+
let n = e[t], r = n[0] === "enter" ? "start" : "end";
|
|
198
|
+
return n[1][r];
|
|
199
|
+
}
|
|
200
|
+
//#endregion
|
|
201
|
+
export { o as gfmTable };
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { markdownLineEnding as e, markdownLineEndingOrSpace as t, markdownSpace as n } from "../../micromark-util-character/index.js";
|
|
2
|
+
import { factorySpace as r } from "../../micromark-factory-space/index.js";
|
|
3
|
+
//#region node_modules/micromark-extension-gfm-task-list-item/lib/syntax.js
|
|
4
|
+
var i = {
|
|
5
|
+
name: "tasklistCheck",
|
|
6
|
+
tokenize: o
|
|
7
|
+
};
|
|
8
|
+
function a() {
|
|
9
|
+
return { text: { 91: i } };
|
|
10
|
+
}
|
|
11
|
+
function o(r, i, a) {
|
|
12
|
+
let o = this;
|
|
13
|
+
return c;
|
|
14
|
+
function c(e) {
|
|
15
|
+
return o.previous !== null || !o._gfmTasklistFirstContentOfListItem ? a(e) : (r.enter("taskListCheck"), r.enter("taskListCheckMarker"), r.consume(e), r.exit("taskListCheckMarker"), l);
|
|
16
|
+
}
|
|
17
|
+
function l(e) {
|
|
18
|
+
return t(e) ? (r.enter("taskListCheckValueUnchecked"), r.consume(e), r.exit("taskListCheckValueUnchecked"), u) : e === 88 || e === 120 ? (r.enter("taskListCheckValueChecked"), r.consume(e), r.exit("taskListCheckValueChecked"), u) : a(e);
|
|
19
|
+
}
|
|
20
|
+
function u(e) {
|
|
21
|
+
return e === 93 ? (r.enter("taskListCheckMarker"), r.consume(e), r.exit("taskListCheckMarker"), r.exit("taskListCheck"), d) : a(e);
|
|
22
|
+
}
|
|
23
|
+
function d(t) {
|
|
24
|
+
return e(t) ? i(t) : n(t) ? r.check({ tokenize: s }, i, a)(t) : a(t);
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
function s(e, t, n) {
|
|
28
|
+
return r(e, i, "whitespace");
|
|
29
|
+
function i(e) {
|
|
30
|
+
return e === null ? n(e) : t(e);
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
//#endregion
|
|
34
|
+
export { a as gfmTaskListItem };
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { gfmFromMarkdown as e, gfmToMarkdown as t } from "../../mdast-util-gfm/lib/index.js";
|
|
2
|
+
import { gfm as n } from "../../micromark-extension-gfm/index.js";
|
|
3
|
+
//#region node_modules/remark-gfm/lib/index.js
|
|
4
|
+
var r = {};
|
|
5
|
+
function i(i) {
|
|
6
|
+
let a = this, o = i || r, s = a.data(), c = s.micromarkExtensions ||= [], l = s.fromMarkdownExtensions ||= [], u = s.toMarkdownExtensions ||= [];
|
|
7
|
+
c.push(n(o)), l.push(e()), u.push(t(o));
|
|
8
|
+
}
|
|
9
|
+
//#endregion
|
|
10
|
+
export { i as default };
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { ReactNode } from 'react';
|
|
2
|
+
import { Components } from 'react-markdown';
|
|
3
|
+
export interface MarkdownProps {
|
|
4
|
+
/** Markdown source to render. */
|
|
5
|
+
children: string;
|
|
6
|
+
/** Additional classes for the wrapper element. */
|
|
7
|
+
className?: string;
|
|
8
|
+
/** Render without a wrapping block element, suitable for inline content. */
|
|
9
|
+
inline?: boolean;
|
|
10
|
+
/** Optional react-markdown component overrides. */
|
|
11
|
+
components?: Components;
|
|
12
|
+
}
|
|
13
|
+
/**
|
|
14
|
+
* Shared markdown renderer.
|
|
15
|
+
*
|
|
16
|
+
* - Uses `react-markdown` for standards-compliant parsing.
|
|
17
|
+
* - Enables GitHub Flavored Markdown (tables, task lists, strikethrough, autolinks).
|
|
18
|
+
* - Sanitizes HTML via `rehype-sanitize` so raw markup in markdown is stripped.
|
|
19
|
+
* - External links open in a new tab with safe rel attributes.
|
|
20
|
+
*/
|
|
21
|
+
export declare function Markdown({ children, className, inline, components }: MarkdownProps): ReactNode;
|
|
22
|
+
//# sourceMappingURL=Markdown.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Markdown.d.ts","sourceRoot":"","sources":["../../../src/shared/components/Markdown.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAIvC,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAC;AAEjD,MAAM,WAAW,aAAa;IAC5B,iCAAiC;IACjC,QAAQ,EAAE,MAAM,CAAC;IACjB,kDAAkD;IAClD,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,4EAA4E;IAC5E,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,mDAAmD;IACnD,UAAU,CAAC,EAAE,UAAU,CAAC;CACzB;AAmBD;;;;;;;GAOG;AACH,wBAAgB,QAAQ,CAAC,EAAE,QAAQ,EAAE,SAAS,EAAE,MAAM,EAAE,UAAU,EAAE,EAAE,aAAa,GAAG,SAAS,CAiB9F"}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { Markdown as e } from "../../node_modules/react-markdown/lib/index.js";
|
|
2
|
+
import t from "../../node_modules/remark-gfm/lib/index.js";
|
|
3
|
+
import n from "../../node_modules/rehype-sanitize/lib/index.js";
|
|
4
|
+
import { jsx as r } from "react/jsx-runtime";
|
|
5
|
+
//#region src/shared/components/Markdown.tsx
|
|
6
|
+
var i = { a: ({ href: e, children: t, ...n }) => {
|
|
7
|
+
let i = e?.startsWith("http://") || e?.startsWith("https://");
|
|
8
|
+
return /* @__PURE__ */ r("a", {
|
|
9
|
+
href: e,
|
|
10
|
+
...n,
|
|
11
|
+
...i ? {
|
|
12
|
+
target: "_blank",
|
|
13
|
+
rel: "noopener noreferrer"
|
|
14
|
+
} : { rel: "noopener noreferrer" },
|
|
15
|
+
children: t
|
|
16
|
+
});
|
|
17
|
+
} };
|
|
18
|
+
function a({ children: a, className: o, inline: s, components: c }) {
|
|
19
|
+
let l = /* @__PURE__ */ r(e, {
|
|
20
|
+
remarkPlugins: [t],
|
|
21
|
+
rehypePlugins: [n],
|
|
22
|
+
components: {
|
|
23
|
+
...i,
|
|
24
|
+
...c
|
|
25
|
+
},
|
|
26
|
+
...s ? {
|
|
27
|
+
disallowedElements: ["p"],
|
|
28
|
+
unwrapDisallowed: !0
|
|
29
|
+
} : {},
|
|
30
|
+
children: a
|
|
31
|
+
});
|
|
32
|
+
return r(s ? "span" : "div", {
|
|
33
|
+
className: o,
|
|
34
|
+
children: l
|
|
35
|
+
});
|
|
36
|
+
}
|
|
37
|
+
//#endregion
|
|
38
|
+
export { a as Markdown };
|
|
@@ -31,4 +31,6 @@ export type { AssistantWidgetProps, AssistantModeOption } from './assistantWidge
|
|
|
31
31
|
export { useVoiceInput } from './assistantWidget/useVoiceInput';
|
|
32
32
|
export type { UseVoiceInputReturn } from './assistantWidget/useVoiceInput';
|
|
33
33
|
export type { AssistantTransport, AssistantSendArgs, AssistantSessionSummary, AssistantWidgetMessage, AssistantWidgetRole, } from './assistantWidget/types';
|
|
34
|
+
export { Markdown } from './Markdown';
|
|
35
|
+
export type { MarkdownProps } from './Markdown';
|
|
34
36
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/shared/components/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAChD,YAAY,EAAE,kBAAkB,EAAE,MAAM,iBAAiB,CAAC;AAE1D,OAAO,EAAE,WAAW,EAAE,YAAY,EAAE,MAAM,eAAe,CAAC;AAC1D,YAAY,EAAE,gBAAgB,EAAE,iBAAiB,EAAE,MAAM,eAAe,CAAC;AAGzE,OAAO,EAAE,cAAc,EAAE,gBAAgB,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AACpF,YAAY,EACV,mBAAmB,EACnB,qBAAqB,EACrB,mBAAmB,GACpB,MAAM,kBAAkB,CAAC;AAE1B,OAAO,EAAE,YAAY,EAAE,gBAAgB,EAAE,MAAM,gBAAgB,CAAC;AAChE,YAAY,EAAE,iBAAiB,EAAE,qBAAqB,EAAE,MAAM,gBAAgB,CAAC;AAI/E,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAChD,OAAO,EAAE,0BAA0B,EAAE,MAAM,8BAA8B,CAAC;AAC1E,YAAY,EAAE,+BAA+B,EAAE,MAAM,8BAA8B,CAAC;AAEpF,OAAO,EAAE,eAAe,EAAE,mBAAmB,EAAE,sBAAsB,EAAE,MAAM,mBAAmB,CAAC;AACjG,YAAY,EAAE,oBAAoB,EAAE,MAAM,mBAAmB,CAAC;AAE9D,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AACtD,YAAY,EAAE,qBAAqB,EAAE,MAAM,oBAAoB,CAAC;AAEhE,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AACtD,YAAY,EAAE,qBAAqB,EAAE,MAAM,oBAAoB,CAAC;AAEhE,OAAO,EAAE,aAAa,IAAI,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AAEvE,OAAO,EAAE,yBAAyB,EAAE,MAAM,6BAA6B,CAAC;AACxE,YAAY,EAAE,8BAA8B,EAAE,MAAM,6BAA6B,CAAC;AAGlF,OAAO,EAAE,yBAAyB,EAAE,MAAM,6BAA6B,CAAC;AAGxE,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC1C,YAAY,EAAE,eAAe,EAAE,MAAM,cAAc,CAAC;AAGpD,OAAO,EACL,kBAAkB,EAClB,qBAAqB,EACrB,oBAAoB,GACrB,MAAM,sBAAsB,CAAC;AAC9B,YAAY,EAAE,uBAAuB,EAAE,mBAAmB,EAAE,MAAM,sBAAsB,CAAC;AAEzF,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AAC5D,YAAY,EAAE,wBAAwB,EAAE,MAAM,uBAAuB,CAAC;AAGtE,OAAO,EACL,iBAAiB,EACjB,kBAAkB,EAClB,QAAQ,EACR,cAAc,EACd,mBAAmB,GACpB,MAAM,oBAAoB,CAAC;AAG5B,OAAO,EAAE,eAAe,EAAE,6BAA6B,EAAE,MAAM,mCAAmC,CAAC;AACnG,YAAY,EAAE,oBAAoB,EAAE,mBAAmB,EAAE,MAAM,mCAAmC,CAAC;AACnG,OAAO,EAAE,aAAa,EAAE,MAAM,iCAAiC,CAAC;AAChE,YAAY,EAAE,mBAAmB,EAAE,MAAM,iCAAiC,CAAC;AAC3E,YAAY,EACV,kBAAkB,EAClB,iBAAiB,EACjB,uBAAuB,EACvB,sBAAsB,EACtB,mBAAmB,GACpB,MAAM,yBAAyB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/shared/components/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAChD,YAAY,EAAE,kBAAkB,EAAE,MAAM,iBAAiB,CAAC;AAE1D,OAAO,EAAE,WAAW,EAAE,YAAY,EAAE,MAAM,eAAe,CAAC;AAC1D,YAAY,EAAE,gBAAgB,EAAE,iBAAiB,EAAE,MAAM,eAAe,CAAC;AAGzE,OAAO,EAAE,cAAc,EAAE,gBAAgB,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AACpF,YAAY,EACV,mBAAmB,EACnB,qBAAqB,EACrB,mBAAmB,GACpB,MAAM,kBAAkB,CAAC;AAE1B,OAAO,EAAE,YAAY,EAAE,gBAAgB,EAAE,MAAM,gBAAgB,CAAC;AAChE,YAAY,EAAE,iBAAiB,EAAE,qBAAqB,EAAE,MAAM,gBAAgB,CAAC;AAI/E,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAChD,OAAO,EAAE,0BAA0B,EAAE,MAAM,8BAA8B,CAAC;AAC1E,YAAY,EAAE,+BAA+B,EAAE,MAAM,8BAA8B,CAAC;AAEpF,OAAO,EAAE,eAAe,EAAE,mBAAmB,EAAE,sBAAsB,EAAE,MAAM,mBAAmB,CAAC;AACjG,YAAY,EAAE,oBAAoB,EAAE,MAAM,mBAAmB,CAAC;AAE9D,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AACtD,YAAY,EAAE,qBAAqB,EAAE,MAAM,oBAAoB,CAAC;AAEhE,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AACtD,YAAY,EAAE,qBAAqB,EAAE,MAAM,oBAAoB,CAAC;AAEhE,OAAO,EAAE,aAAa,IAAI,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AAEvE,OAAO,EAAE,yBAAyB,EAAE,MAAM,6BAA6B,CAAC;AACxE,YAAY,EAAE,8BAA8B,EAAE,MAAM,6BAA6B,CAAC;AAGlF,OAAO,EAAE,yBAAyB,EAAE,MAAM,6BAA6B,CAAC;AAGxE,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC1C,YAAY,EAAE,eAAe,EAAE,MAAM,cAAc,CAAC;AAGpD,OAAO,EACL,kBAAkB,EAClB,qBAAqB,EACrB,oBAAoB,GACrB,MAAM,sBAAsB,CAAC;AAC9B,YAAY,EAAE,uBAAuB,EAAE,mBAAmB,EAAE,MAAM,sBAAsB,CAAC;AAEzF,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AAC5D,YAAY,EAAE,wBAAwB,EAAE,MAAM,uBAAuB,CAAC;AAGtE,OAAO,EACL,iBAAiB,EACjB,kBAAkB,EAClB,QAAQ,EACR,cAAc,EACd,mBAAmB,GACpB,MAAM,oBAAoB,CAAC;AAG5B,OAAO,EAAE,eAAe,EAAE,6BAA6B,EAAE,MAAM,mCAAmC,CAAC;AACnG,YAAY,EAAE,oBAAoB,EAAE,mBAAmB,EAAE,MAAM,mCAAmC,CAAC;AACnG,OAAO,EAAE,aAAa,EAAE,MAAM,iCAAiC,CAAC;AAChE,YAAY,EAAE,mBAAmB,EAAE,MAAM,iCAAiC,CAAC;AAC3E,YAAY,EACV,kBAAkB,EAClB,iBAAiB,EACjB,uBAAuB,EACvB,sBAAsB,EACtB,mBAAmB,GACpB,MAAM,yBAAyB,CAAC;AAMjC,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,YAAY,EAAE,aAAa,EAAE,MAAM,YAAY,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"fetch.d.ts","sourceRoot":"","sources":["../../../src/shared/graphql/fetch.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"fetch.d.ts","sourceRoot":"","sources":["../../../src/shared/graphql/fetch.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { useGatewayClient as e } from "../graphql/GatewayContext.js";
|
|
2
2
|
import "../../shared-graphql.js";
|
|
3
|
-
import { Markdown as t } from "
|
|
3
|
+
import { Markdown as t } from "../components/Markdown.js";
|
|
4
4
|
import { useEffect as n, useState as r } from "react";
|
|
5
5
|
import { ArrowLeft as i, Clock as a, FileText as o, Shield as s } from "lucide-react";
|
|
6
6
|
import { jsx as c, jsxs as l } from "react/jsx-runtime";
|
|
@@ -16,4 +16,5 @@ import { UPGRADE_PROMPT_EVENT as w, UpgradePromptModal as T, dispatchUpgradeProm
|
|
|
16
16
|
import { UpgradeInlineBanner as D } from "./shared/components/UpgradeInlineBanner.js";
|
|
17
17
|
import { useVoiceInput as O } from "./shared/components/assistantWidget/useVoiceInput.js";
|
|
18
18
|
import { ASSISTANT_WIDGET_TOGGLE_EVENT as k, AssistantWidget as A } from "./shared/components/assistantWidget/AssistantWidget.js";
|
|
19
|
-
|
|
19
|
+
import { Markdown as j } from "./shared/components/Markdown.js";
|
|
20
|
+
export { k as ASSISTANT_WIDGET_TOGGLE_EVENT, d as AccessDenied, b as AppErrorBoundary, A as AssistantWidget, v as ConditionalShell, x as ContextConversationWidget, a as ErrorBoundary, p as ErrorFallback, S as KeyboardHelpDialogWrapper, m as LoadingFallback, j as Markdown, _ as MicrofrontendErrorBoundary, y as PWAInstallBanner, h as PageLoadingFallback, c as PermissionButton, f as PermissionDenied, l as PermissionGate, u as PermissionLink, C as QuotaMeter, o as RequireAuth, s as RequireGuest, e as SSORedirectSpinner, g as SectionLoadingFallback, w as UPGRADE_PROMPT_EVENT, D as UpgradeInlineBanner, T as UpgradePromptModal, t as checkRemoteSLO, n as checkSLO, r as clearLocalAuthState, E as dispatchUpgradePrompt, i as getSSORedirectUrl, O as useVoiceInput };
|
package/dist/shared.js
CHANGED
|
@@ -56,67 +56,68 @@ import { UPGRADE_PROMPT_EVENT as Mn, UpgradePromptModal as Nn, dispatchUpgradePr
|
|
|
56
56
|
import { UpgradeInlineBanner as Fn } from "./shared/components/UpgradeInlineBanner.js";
|
|
57
57
|
import { useVoiceInput as In } from "./shared/components/assistantWidget/useVoiceInput.js";
|
|
58
58
|
import { ASSISTANT_WIDGET_TOGGLE_EVENT as Ln, AssistantWidget as Rn } from "./shared/components/assistantWidget/AssistantWidget.js";
|
|
59
|
+
import { Markdown as zn } from "./shared/components/Markdown.js";
|
|
59
60
|
import "./shared-components.js";
|
|
60
|
-
import { DevtoolsSink as
|
|
61
|
-
import { BroadcastChannelSink as
|
|
62
|
-
import { BackendAuditSink as
|
|
63
|
-
import { RybbitSink as
|
|
64
|
-
import { OtelBrowserSink as
|
|
65
|
-
import { EventBusProvider as
|
|
66
|
-
import { useDebounce as
|
|
67
|
-
import { useThrottle as
|
|
68
|
-
import { BREAKPOINTS as
|
|
69
|
-
import { useOnClickOutside as
|
|
70
|
-
import { useKeyPress as
|
|
71
|
-
import { useExclusiveMenu as
|
|
72
|
-
import { useLocalStorage as
|
|
73
|
-
import { useSessionStorage as
|
|
74
|
-
import { usePrevious as
|
|
75
|
-
import { useConditionalToggle as
|
|
76
|
-
import { usePagination as
|
|
77
|
-
import { useAsync as
|
|
78
|
-
import { MODIFIER_KEYS as
|
|
79
|
-
import { useKeyboardShortcuts as
|
|
80
|
-
import { useHotkeys as
|
|
81
|
-
import { useShortcutHelp as
|
|
82
|
-
import { GLOBAL_SHORTCUT_CATEGORIES as
|
|
83
|
-
import { useLogger as
|
|
84
|
-
import { useHasAnimated as
|
|
85
|
-
import { useReferralAttribution as
|
|
86
|
-
import { useRecordProductVisit as
|
|
87
|
-
import { QUOTA_EXHAUSTED_EVENT as
|
|
88
|
-
import { PLAN_USAGE_SNAPSHOT_EVENT as
|
|
89
|
-
import { appendContextToPath as
|
|
90
|
-
import { MicrofrontendContext as
|
|
91
|
-
import { detectDeviceType as
|
|
92
|
-
import { useTourPlayer as
|
|
93
|
-
import { TourSpotlight as
|
|
94
|
-
import { TourTooltip as
|
|
95
|
-
import { TourPlayerProvider as
|
|
96
|
-
import { TourPlayer as
|
|
97
|
-
import { getTourContextRank as
|
|
98
|
-
import { withTourProgressStatus as
|
|
99
|
-
import { ToursProvider as
|
|
100
|
-
import { TourInitializer as
|
|
101
|
-
import { AppShellProvider as
|
|
102
|
-
import { MicrofrontendProvider as
|
|
103
|
-
import { TourTrigger as
|
|
61
|
+
import { DevtoolsSink as Bn } from "./shared/events/sinks/DevtoolsSink.js";
|
|
62
|
+
import { BroadcastChannelSink as Vn } from "./shared/events/sinks/BroadcastChannelSink.js";
|
|
63
|
+
import { BackendAuditSink as Hn } from "./shared/events/sinks/BackendAuditSink.js";
|
|
64
|
+
import { RybbitSink as Un } from "./shared/events/sinks/RybbitSink.js";
|
|
65
|
+
import { OtelBrowserSink as Wn } from "./shared/events/sinks/OtelBrowserSink.js";
|
|
66
|
+
import { EventBusProvider as Gn, createEventBus as Kn, useEvent as qn, useEventBus as Jn, useEventEmitter as Yn } from "./shared-events.js";
|
|
67
|
+
import { useDebounce as Xn } from "./shared/hooks/useDebounce.js";
|
|
68
|
+
import { useThrottle as Zn } from "./shared/hooks/useThrottle.js";
|
|
69
|
+
import { BREAKPOINTS as Qn, useBreakpoint as $n, useMobileBreakpoint as er } from "./shared/hooks/useBreakpoint.js";
|
|
70
|
+
import { useOnClickOutside as tr, useOnClickOutsideWithRef as nr } from "./shared/hooks/useOnClickOutside.js";
|
|
71
|
+
import { useKeyPress as rr, useKeyboardShortcut as ir } from "./shared/hooks/useKeyPress.js";
|
|
72
|
+
import { useExclusiveMenu as ar } from "./shared/hooks/useExclusiveMenu.js";
|
|
73
|
+
import { useLocalStorage as or } from "./shared/hooks/useLocalStorage.js";
|
|
74
|
+
import { useSessionStorage as sr } from "./shared/hooks/useSessionStorage.js";
|
|
75
|
+
import { usePrevious as cr, usePreviousDistinct as lr, usePreviousHistory as ur } from "./shared/hooks/usePrevious.js";
|
|
76
|
+
import { useConditionalToggle as dr, useToggle as fr, useToggleObject as pr } from "./shared/hooks/useToggle.js";
|
|
77
|
+
import { usePagination as mr } from "./shared/hooks/usePagination.js";
|
|
78
|
+
import { useAsync as hr, useAsyncImmediate as gr } from "./shared/hooks/useAsync.js";
|
|
79
|
+
import { MODIFIER_KEYS as _r, PLATFORM_TYPES as vr } from "./shared/keyboard/types.js";
|
|
80
|
+
import { useKeyboardShortcuts as yr } from "./shared/keyboard/useKeyboardShortcuts.js";
|
|
81
|
+
import { useHotkeys as br } from "./shared/keyboard/useHotkeys.js";
|
|
82
|
+
import { useShortcutHelp as xr } from "./shared/keyboard/useShortcutHelp.js";
|
|
83
|
+
import { GLOBAL_SHORTCUT_CATEGORIES as Sr, createGlobalShortcuts as Cr, getGlobalShortcutsByCategory as wr, mergeShortcuts as Tr } from "./shared/keyboard/globalShortcuts.js";
|
|
84
|
+
import { useLogger as Er } from "./shared/logger/useLogger.js";
|
|
85
|
+
import { useHasAnimated as Dr } from "./shared/hooks/useHasAnimated.js";
|
|
86
|
+
import { useReferralAttribution as Or } from "./shared/hooks/useReferralAttribution.js";
|
|
87
|
+
import { useRecordProductVisit as kr } from "./shared/hooks/useRecordProductVisit.js";
|
|
88
|
+
import { QUOTA_EXHAUSTED_EVENT as Ar, dispatchQuotaExhausted as jr, useQuotaErrorToast as Mr } from "./shared/hooks/useQuotaErrorToast.js";
|
|
89
|
+
import { PLAN_USAGE_SNAPSHOT_EVENT as Nr, publishPlanUsageSnapshot as Pr, useUpgradePrompt as Fr } from "./shared/hooks/useUpgradePrompt.js";
|
|
90
|
+
import { appendContextToPath as Ir, useCurrentContextSearchParams as Lr } from "./shared/hooks/useCurrentContextSearchParams.js";
|
|
91
|
+
import { MicrofrontendContext as Rr, useMicrofrontendContext as zr } from "./shared-hooks.js";
|
|
92
|
+
import { detectDeviceType as Br, getResponsiveSelector as Vr } from "./shared/tours/types.js";
|
|
93
|
+
import { useTourPlayer as Hr } from "./shared/tours/useTourPlayer.js";
|
|
94
|
+
import { TourSpotlight as Ur } from "./shared/tours/TourSpotlight.js";
|
|
95
|
+
import { TourTooltip as Wr } from "./shared/tours/TourTooltip.js";
|
|
96
|
+
import { TourPlayerProvider as Gr, useIsTourPlaying as Kr, useStartTour as qr, useStopTour as Jr, useTourPlayerContext as Yr } from "./shared/tours/TourPlayerProvider.js";
|
|
97
|
+
import { TourPlayer as Xr, TourTriggerButton as Zr, usePlayTour as Qr } from "./shared/tours/TourPlayer.js";
|
|
98
|
+
import { getTourContextRank as $r, getTourRouteCatalog as ei, getTourRouteModules as ti, getTourRoutePages as ni, isTourVisibleForContext as ri, normalizeTourPath as ii, registerTourRouteCatalog as ai, resolveTourTargetPath as oi } from "./shared/tours/routeCatalog.js";
|
|
99
|
+
import { withTourProgressStatus as si } from "./shared/tours/progress.js";
|
|
100
|
+
import { ToursProvider as ci, useAutoStartTour as li, useSafeToursContext as ui, useTours as di, useToursContext as fi } from "./shared/tours/ToursContext.js";
|
|
101
|
+
import { TourInitializer as pi } from "./shared/tours/TourInitializer.js";
|
|
102
|
+
import { AppShellProvider as mi, resolveAppShellObservabilityConfig as hi } from "./shared/providers/AppShellProvider.js";
|
|
103
|
+
import { MicrofrontendProvider as gi } from "./shared-providers.js";
|
|
104
|
+
import { TourTrigger as _i } from "./shared/tours/TourTrigger.js";
|
|
104
105
|
import "./shared-tours.js";
|
|
105
|
-
import { getNativeBridge as
|
|
106
|
-
import { getPlatform as
|
|
107
|
-
import { nativeConfirm as
|
|
108
|
-
import { SafeAreaView as
|
|
109
|
-
import { useNativePlatform as
|
|
110
|
-
import { useSafeArea as
|
|
111
|
-
import { useNativeKeyboard as
|
|
112
|
-
import { useAppState as
|
|
113
|
-
import { useDeviceInfo as
|
|
114
|
-
import { useHaptics as
|
|
115
|
-
import { useStatusBar as
|
|
116
|
-
import { acknowledgeNativePurchase as
|
|
106
|
+
import { getNativeBridge as vi } from "./shared/native/bridge.js";
|
|
107
|
+
import { getPlatform as yi, isAndroid as bi, isElectron as xi, isIOS as Si, isInstalledApp as Ci, isNative as wi, isStandalonePWA as Ti, isWeb as Ei, isWebBrowser as Di } from "./shared/native/platform.js";
|
|
108
|
+
import { nativeConfirm as Oi, nativeCopyText as ki, nativeImpact as Ai, nativeNotify as ji, nativeOpenUrl as Mi, nativeShare as Ni, nativeToast as Pi } from "./shared/native/consumers.js";
|
|
109
|
+
import { SafeAreaView as Fi } from "./shared/native/SafeAreaView.js";
|
|
110
|
+
import { useNativePlatform as Ii } from "./shared/native/hooks/useNativePlatform.js";
|
|
111
|
+
import { useSafeArea as Li } from "./shared/native/hooks/useSafeArea.js";
|
|
112
|
+
import { useNativeKeyboard as Ri } from "./shared/native/hooks/useNativeKeyboard.js";
|
|
113
|
+
import { useAppState as zi } from "./shared/native/hooks/useAppState.js";
|
|
114
|
+
import { useDeviceInfo as Bi } from "./shared/native/hooks/useDeviceInfo.js";
|
|
115
|
+
import { useHaptics as Vi } from "./shared/native/hooks/useHaptics.js";
|
|
116
|
+
import { useStatusBar as Hi } from "./shared/native/hooks/useStatusBar.js";
|
|
117
|
+
import { acknowledgeNativePurchase as Ui, getNativeProducts as Wi, getNativePurchases as Gi, installNativeIAP as Ki, isNativeIAPAvailable as qi, purchaseNativeProduct as Ji, restoreNativePurchases as Yi } from "./shared/native/purchases.js";
|
|
117
118
|
import "./shared-native.js";
|
|
118
119
|
import "./shared/actors/index.js";
|
|
119
120
|
//#region src/shared/index.ts
|
|
120
|
-
var
|
|
121
|
+
var Xi = "1.0.0";
|
|
121
122
|
//#endregion
|
|
122
|
-
export { Ln as ASSISTANT_WIDGET_TOGGLE_EVENT, Qt as AccessDenied, Ut as ActorIdentity, Pe as ApolloClient, Fe as ApolloProvider, ln as AppErrorBoundary, bt as AppInitializer,
|
|
123
|
+
export { Ln as ASSISTANT_WIDGET_TOGGLE_EVENT, Qt as AccessDenied, Ut as ActorIdentity, Pe as ApolloClient, Fe as ApolloProvider, ln as AppErrorBoundary, bt as AppInitializer, mi as AppShellProvider, Rn as AssistantWidget, ie as BACKEND_ERROR_EVENT, Qn as BREAKPOINTS, Hn as BackendAuditSink, Vn as BroadcastChannelSink, G as COMMON_SHELL_LESS_ROUTES, ae as CONNECTION_STATUS_EVENT, on as ConditionalShell, Dt as ConsoleTransport, gn as ContextConversationWidget, Z as DEFAULT_PAGE_SIZE, K as DEFAULT_SHELL_CONFIG, Bn as DevtoolsSink, Kt as ErrorBoundary, en as ErrorFallback, Gn as EventBusProvider, Xi as FE_SHARED_VERSION, un as FeatureFlagProvider, hn as FeatureGate, Q as GATEWAYS, Sr as GLOBAL_SHORTCUT_CATEGORIES, Oe as GatewayProvider, Ie as InMemoryCache, An as KeyboardHelpDialogWrapper, tn as LoadingFallback, Ct as LogLevel, Tt as LogManager, wt as Logger, _r as MODIFIER_KEYS, zn as Markdown, Rr as MicrofrontendContext, an as MicrofrontendErrorBoundary, gi as MicrofrontendProvider, Wn as OtelBrowserSink, Nr as PLAN_USAGE_SNAPSHOT_EVENT, vr as PLATFORM_TYPES, V as PRODUCTS, H as PRODUCT_URLS, cn as PWAInstallBanner, nn as PageLoadingFallback, Yt as PermissionButton, $t as PermissionDenied, Xt as PermissionGate, Zt as PermissionLink, Nt as QUOTA_EXHAUSTED_CODE, Ar as QUOTA_EXHAUSTED_EVENT, jn as QuotaMeter, Pt as RESOURCE_CAP_EXCEEDED_CODE, qt as RequireAuth, Jt as RequireGuest, Un as RybbitSink, Se as SSELink, rt as SSORedirectSpinner, ct as SSO_DEPOSITED_PARAM, Ft as STORAGE_QUOTA_EXCEEDED_CODE, Fi as SafeAreaView, rn as SectionLoadingFallback, pi as TourInitializer, Xr as TourPlayer, Gr as TourPlayerProvider, Ur as TourSpotlight, Wr as TourTooltip, _i as TourTrigger, Zr as TourTriggerButton, ci as ToursProvider, It as UPGRADE_ERROR_CODES, Mn as UPGRADE_PROMPT_EVENT, Fn as UpgradeInlineBanner, Nn as UpgradePromptModal, Ne as WsLink, Ui as acknowledgeNativePurchase, r as alertTokens, Ir as appendContextToPath, Ue as attemptTokenRefresh, lt as beginSsoNavigation, Wt as buildActorFallback, Lt as buildQuotaExhaustedMessage, ut as buildSsoDepositUrl, m as capitalizeFirst, h as capitalizeWords, i as categoryTokens, it as checkRemoteSLO, at as checkSLO, We as clearAuthSessionStorage, pe as clearGraphqlFetchResponseCache, ot as clearLocalAuthState, Ye as clearSSoCookie, Xe as clearShellSsoCookies, dt as clearSsoDepositState, ft as clearSsoNavigation, Ot as clearUserContext, Ht as cn, pt as consumeSsoDepositMarker, n as createApolloClient, Kn as createEventBus, Cr as createGlobalShortcuts, Ce as createGraphQLClient, jt as createProfileScopedStorage, Br as detectDeviceType, _n as detectPlatform, oe as dispatchBackendErrorEvent, jr as dispatchQuotaExhausted, Pn as dispatchUpgradePrompt, se as extractBackendError, Rt as extractQuotaExhaustedExtensions, zt as extractUpgradeErrorExtensions, g as formatBytes, _ as formatCompactNumber, v as formatCurrency, y as formatCurrencyCompact, b as formatDate, x as formatDateTime, S as formatDuration, vn as formatKeyCombo, C as formatList, w as formatNumber, T as formatOrdinal, E as formatPercentage, D as formatRelativeTime, O as formatTime, a as getAlertTokens, o as getCategoryTokens, yn as getDisplayKeysForPlatform, $ as getGatewayConfig, ee as getGatewayUrl, we as getGlobalClient, wr as getGlobalShortcutsByCategory, te as getGraphQLEndpoint, vi as getNativeBridge, Wi as getNativeProducts, Gi as getNativePurchases, yi as getPlatform, U as getProductUrl, W as getProductsWithUrls, Mt as getProfileScopedKey, s as getProgressTokens, Vr as getResponsiveSelector, st as getSSORedirectUrl, Ze as getSSoCookie, q as getShellConfig, bn as getShortcutLabel, c as getStatusBadgeTokens, l as getStatusTokens, me as getStoredAuthToken, he as getStoredLocale, ge as getStoredOrganizationId, _e as getStoredProjectId, ve as getStoredWorkspaceId, ye as getStoredWorkspaceToken, $r as getTourContextRank, ei as getTourRouteCatalog, ti as getTourRouteModules, ni as getTourRoutePages, u as getTrendTokens, Te as getWorkspaceClient, ne as getWorkspaceTokenPayload, Le as gql, be as graphqlFetch, Ge as hasAuthGraphQLErrors, Ee as initializeAppClients, kt as initializeLogger, L as installGatewayFetchRewrite, Ki as installNativeIAP, ce as isAbortError, bi as isAndroid, Ke as isAuthGraphQLError, qe as isAuthNetworkError, le as isBackendErrorDisplay, P as isChunkLoadError, xi as isElectron, Si as isIOS, Ci as isInstalledApp, xn as isMac, Sn as isMobileDevice, wi as isNative, qi as isNativeIAPAvailable, Bt as isQuotaExhaustedError, Qe as isSharedSsoCookieDomain, J as isShellLessRoute, mt as isSsoNavigationPending, Ti as isStandalonePWA, Cn as isTabletDevice, ri as isTourVisibleForContext, ue as isTransportError, $e as isTrustedSsoOrigin, Vt as isUpgradeError, Ei as isWeb, Di as isWebBrowser, re as isWorkspaceTokenValidForContext, F as lazyWithRetry, Et as logManager, de as markConnectionHealthy, ht as markSsoDepositDone, gt as markSsoDepositPending, wn as matchesKeyCombo, Tr as mergeShortcuts, _t as mintSsoSessionTokens, Oi as nativeConfirm, ki as nativeCopyText, Ai as nativeImpact, ji as nativeNotify, Mi as nativeOpenUrl, Ni as nativeShare, Pi as nativeToast, Tn as normalizeKey, En as normalizePlatformCombo, ii as normalizeTourPath, Dn as parseKeyCombo, k as pluralize, d as progressTokens, Pr as publishPlanUsageSnapshot, Ji as purchaseNativeProduct, et as readShellSsoCookie, vt as readSsoDepositState, Je as redirectToLogin, ai as registerTourRouteCatalog, De as resetAppClients, hi as resolveAppShellObservabilityConfig, B as resolveAuthBridgeConfig, R as resolveGatewayBases, xe as resolveGatewayUrl, I as resolveGatewayUrls, oi as resolveTourTargetPath, Yi as restoreNativePurchases, tt as setSSoCookie, nt as setShellSsoCookies, At as setUserContext, yt as shouldAttemptSsoDeposit, On as shouldEnableKeyboardShortcuts, kn as shouldIgnoreShortcut, Y as shouldShowBreadcrumb, X as shouldShowSidebar, fe as shouldToastBackendError, A as slugify, f as statusTokens, z as suppressConsole, j as toCamelCase, M as toPascalCase, p as trendTokens, N as truncateText, Gt as useActorProfiles, Re as useApolloClient, zi as useAppState, hr as useAsync, gr as useAsyncImmediate, li as useAutoStartTour, $n as useBreakpoint, dr as useConditionalToggle, e as useCopyToClipboard, Lr as useCurrentContextSearchParams, Xn as useDebounce, Bi as useDeviceInfo, qn as useEvent, Jn as useEventBus, Yn as useEventEmitter, ar as useExclusiveMenu, fn as useFeatureFlag, pn as useFeatureFlagDetails, mn as useFeatureFlagValue, dn as useFeatureFlags, ke as useGateway, Ae as useGatewayClient, Vi as useHaptics, Dr as useHasAnimated, br as useHotkeys, Kr as useIsTourPlaying, rr as useKeyPress, ir as useKeyboardShortcut, yr as useKeyboardShortcuts, ze as useLazyQuery, or as useLocalStorage, Er as useLogger, t as useMediaQuery, zr as useMicrofrontendContext, er as useMobileBreakpoint, Be as useMutation, Ri as useNativeKeyboard, Ii as useNativePlatform, tr as useOnClickOutside, nr as useOnClickOutsideWithRef, sn as usePWA, mr as usePagination, Qr as usePlayTour, cr as usePrevious, lr as usePreviousDistinct, ur as usePreviousHistory, Ve as useQuery, Mr as useQuotaErrorToast, kr as useRecordProductVisit, Or as useReferralAttribution, xt as useRegistryHelpers, Li as useSafeArea, je as useSafeGateway, Me as useSafeGatewayClient, ui as useSafeToursContext, sr as useSessionStorage, St as useShellNavigate, xr as useShortcutHelp, qr as useStartTour, Hi as useStatusBar, Jr as useStopTour, He as useSubscription, Zn as useThrottle, fr as useToggle, pr as useToggleObject, Hr as useTourPlayer, Yr as useTourPlayerContext, di as useTours, fi as useToursContext, Fr as useUpgradePrompt, In as useVoiceInput, si as withTourProgressStatus };
|