@omg-dev/app 0.6.54 → 0.6.56
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-lib/{ChangelogPage-ZCG63VYl.js → ChangelogPage-DOeIV4dV.js} +25 -1
- package/dist-lib/{File-6EjmZMI_.js → File-Cai5L4FH.js} +9 -9
- package/dist-lib/{FileEditor-Cd_j2Pn3.js → FileEditor-CBvFYi01.js} +1 -1
- package/dist-lib/{FileViewer-rlK_MPcS.js → FileViewer-Bw4MhWTo.js} +1 -1
- package/dist-lib/{SessionFilesPanel-C96LFRaK.js → SessionFilesPanel-CljApZ_J.js} +90 -97
- package/dist-lib/{TermView-DPak1fmH.js → TermView-rrih9NtI.js} +1057 -1047
- package/dist-lib/base-D0bhR7dg.js +134 -0
- package/dist-lib/{board-page-CjMNQP53.js → board-page-BwukgQSe.js} +4 -4
- package/dist-lib/{chat-engine-9n8lwBiU.js → chat-engine-DABQ686L.js} +1 -1
- package/dist-lib/{coding-agents-page-BjNVGDUO.js → coding-agents-page-BnrON9w7.js} +1 -1
- package/dist-lib/{computer-page-CpnPqiR3.js → computer-page-Dh90OIFY.js} +1437 -1358
- package/dist-lib/create-BOwd_pad.js +175 -0
- package/dist-lib/{embedded-Be_WfQ0h.js → embedded-D1ndCfZJ.js} +17211 -15895
- package/dist-lib/{index-bi2f1zSC.js → index-DzATxXrP.js} +7 -7
- package/dist-lib/index.js +1 -1
- package/dist-lib/keyboard-BDO5X89t.js +35 -0
- package/dist-lib/{resume-session-sheet-Cdd6ggcF.js → resume-session-sheet-KVNxdDSa.js} +1 -1
- package/dist-lib/{session-token-usage-CFcnTEub.js → session-token-usage-CnQ2HFfV.js} +1 -1
- package/dist-lib/{shipped-page-YCpkukPP.js → shipped-page-DT5xVVf3.js} +21 -21
- package/dist-lib/{streamdown-response-Sv-hLrr_.js → streamdown-response-zhsvDlE5.js} +1 -1
- package/dist-lib/styles.css +1 -1
- package/package.json +3 -2
- package/dist-lib/create-CBk9uwJH.js +0 -306
- package/dist-lib/keyboard-CcMBZA9k.js +0 -21
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@omg-dev/app",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.56",
|
|
4
4
|
"description": "The full OMG application surface for React hosts.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://omg.dev",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"@chenglou/pretext": "^0.0.8",
|
|
30
30
|
"@novnc/novnc": "^1.7.0",
|
|
31
31
|
"@number-flow/react": "^0.6.2",
|
|
32
|
-
"@omg-dev/client": "0.6.
|
|
32
|
+
"@omg-dev/client": "0.6.56",
|
|
33
33
|
"@pierre/diffs": "^1.3.1",
|
|
34
34
|
"@pierre/trees": "1.0.0-beta.6",
|
|
35
35
|
"@streamdown/cjk": "^1.0.3",
|
|
@@ -49,6 +49,7 @@
|
|
|
49
49
|
"react-dom": "^19.2.4",
|
|
50
50
|
"sonner": "^2.0.7",
|
|
51
51
|
"streamdown": "^2.6.0",
|
|
52
|
+
"torph": "^0.1.3",
|
|
52
53
|
"vaul": "^1.1.2",
|
|
53
54
|
"web-haptics": "^0.0.6"
|
|
54
55
|
},
|
|
@@ -1,306 +0,0 @@
|
|
|
1
|
-
class T {
|
|
2
|
-
diff(e, i, t = {}) {
|
|
3
|
-
let l;
|
|
4
|
-
typeof t == "function" ? (l = t, t = {}) : "callback" in t && (l = t.callback);
|
|
5
|
-
const f = this.castInput(e, t), r = this.castInput(i, t), u = this.removeEmpty(this.tokenize(f, t)), o = this.removeEmpty(this.tokenize(r, t));
|
|
6
|
-
return this.diffWithOptionsObj(u, o, t, l);
|
|
7
|
-
}
|
|
8
|
-
diffWithOptionsObj(e, i, t, l) {
|
|
9
|
-
var f;
|
|
10
|
-
const r = (d) => {
|
|
11
|
-
if (d = this.postProcess(d, t), l) {
|
|
12
|
-
setTimeout(function() {
|
|
13
|
-
l(d);
|
|
14
|
-
}, 0);
|
|
15
|
-
return;
|
|
16
|
-
} else
|
|
17
|
-
return d;
|
|
18
|
-
}, u = i.length, o = e.length;
|
|
19
|
-
let m = 1, s = u + o;
|
|
20
|
-
t.maxEditLength != null && (s = Math.min(s, t.maxEditLength));
|
|
21
|
-
const a = (f = t.timeout) !== null && f !== void 0 ? f : 1 / 0, v = Date.now() + a, h = [{ oldPos: -1, lastComponent: void 0 }];
|
|
22
|
-
let x = this.extractCommon(h[0], i, e, 0, t);
|
|
23
|
-
if (h[0].oldPos + 1 >= o && x + 1 >= u)
|
|
24
|
-
return r(this.buildValues(h[0].lastComponent, i, e));
|
|
25
|
-
let C = -1 / 0, P = 1 / 0;
|
|
26
|
-
const L = () => {
|
|
27
|
-
for (let d = Math.max(C, -m); d <= Math.min(P, m); d += 2) {
|
|
28
|
-
let c;
|
|
29
|
-
const w = h[d - 1], g = h[d + 1];
|
|
30
|
-
w && (h[d - 1] = void 0);
|
|
31
|
-
let N = !1;
|
|
32
|
-
if (g) {
|
|
33
|
-
const p = g.oldPos - d;
|
|
34
|
-
N = g && 0 <= p && p < u;
|
|
35
|
-
}
|
|
36
|
-
const k = w && w.oldPos + 1 < o;
|
|
37
|
-
if (!N && !k) {
|
|
38
|
-
h[d] = void 0;
|
|
39
|
-
continue;
|
|
40
|
-
}
|
|
41
|
-
if (!k || N && w.oldPos < g.oldPos ? c = this.addToPath(g, !0, !1, 0, t) : c = this.addToPath(w, !1, !0, 1, t), x = this.extractCommon(c, i, e, d, t), c.oldPos + 1 >= o && x + 1 >= u)
|
|
42
|
-
return r(this.buildValues(c.lastComponent, i, e)) || !0;
|
|
43
|
-
h[d] = c, c.oldPos + 1 >= o && (P = Math.min(P, d - 1)), x + 1 >= u && (C = Math.max(C, d + 1));
|
|
44
|
-
}
|
|
45
|
-
m++;
|
|
46
|
-
};
|
|
47
|
-
if (l)
|
|
48
|
-
(function d() {
|
|
49
|
-
setTimeout(function() {
|
|
50
|
-
if (m > s || Date.now() > v)
|
|
51
|
-
return l(void 0);
|
|
52
|
-
L() || d();
|
|
53
|
-
}, 0);
|
|
54
|
-
})();
|
|
55
|
-
else
|
|
56
|
-
for (; m <= s && Date.now() <= v; ) {
|
|
57
|
-
const d = L();
|
|
58
|
-
if (d)
|
|
59
|
-
return d;
|
|
60
|
-
}
|
|
61
|
-
}
|
|
62
|
-
addToPath(e, i, t, l, f) {
|
|
63
|
-
const r = e.lastComponent;
|
|
64
|
-
return r && !f.oneChangePerToken && r.added === i && r.removed === t ? {
|
|
65
|
-
oldPos: e.oldPos + l,
|
|
66
|
-
lastComponent: { count: r.count + 1, added: i, removed: t, previousComponent: r.previousComponent }
|
|
67
|
-
} : {
|
|
68
|
-
oldPos: e.oldPos + l,
|
|
69
|
-
lastComponent: { count: 1, added: i, removed: t, previousComponent: r }
|
|
70
|
-
};
|
|
71
|
-
}
|
|
72
|
-
extractCommon(e, i, t, l, f) {
|
|
73
|
-
const r = i.length, u = t.length;
|
|
74
|
-
let o = e.oldPos, m = o - l, s = 0;
|
|
75
|
-
for (; m + 1 < r && o + 1 < u && this.equals(t[o + 1], i[m + 1], f); )
|
|
76
|
-
m++, o++, s++, f.oneChangePerToken && (e.lastComponent = { count: 1, previousComponent: e.lastComponent, added: !1, removed: !1 });
|
|
77
|
-
return s && !f.oneChangePerToken && (e.lastComponent = { count: s, previousComponent: e.lastComponent, added: !1, removed: !1 }), e.oldPos = o, m;
|
|
78
|
-
}
|
|
79
|
-
equals(e, i, t) {
|
|
80
|
-
return t.comparator ? t.comparator(e, i) : e === i || !!t.ignoreCase && e.toLowerCase() === i.toLowerCase();
|
|
81
|
-
}
|
|
82
|
-
removeEmpty(e) {
|
|
83
|
-
const i = [];
|
|
84
|
-
for (let t = 0; t < e.length; t++)
|
|
85
|
-
e[t] && i.push(e[t]);
|
|
86
|
-
return i;
|
|
87
|
-
}
|
|
88
|
-
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
89
|
-
castInput(e, i) {
|
|
90
|
-
return e;
|
|
91
|
-
}
|
|
92
|
-
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
93
|
-
tokenize(e, i) {
|
|
94
|
-
return Array.from(e);
|
|
95
|
-
}
|
|
96
|
-
join(e) {
|
|
97
|
-
return e.join("");
|
|
98
|
-
}
|
|
99
|
-
postProcess(e, i) {
|
|
100
|
-
return e;
|
|
101
|
-
}
|
|
102
|
-
get useLongestToken() {
|
|
103
|
-
return !1;
|
|
104
|
-
}
|
|
105
|
-
buildValues(e, i, t) {
|
|
106
|
-
const l = [];
|
|
107
|
-
let f;
|
|
108
|
-
for (; e; )
|
|
109
|
-
l.push(e), f = e.previousComponent, delete e.previousComponent, e = f;
|
|
110
|
-
l.reverse();
|
|
111
|
-
const r = l.length;
|
|
112
|
-
let u = 0, o = 0, m = 0;
|
|
113
|
-
for (; u < r; u++) {
|
|
114
|
-
const s = l[u];
|
|
115
|
-
if (s.removed)
|
|
116
|
-
s.value = this.join(t.slice(m, m + s.count)), m += s.count;
|
|
117
|
-
else {
|
|
118
|
-
if (!s.added && this.useLongestToken) {
|
|
119
|
-
let a = i.slice(o, o + s.count);
|
|
120
|
-
a = a.map(function(v, h) {
|
|
121
|
-
const x = t[m + h];
|
|
122
|
-
return x.length > v.length ? x : v;
|
|
123
|
-
}), s.value = this.join(a);
|
|
124
|
-
} else
|
|
125
|
-
s.value = this.join(i.slice(o, o + s.count));
|
|
126
|
-
o += s.count, s.added || (m += s.count);
|
|
127
|
-
}
|
|
128
|
-
}
|
|
129
|
-
return l;
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
class j extends T {
|
|
133
|
-
constructor() {
|
|
134
|
-
super(...arguments), this.tokenize = S;
|
|
135
|
-
}
|
|
136
|
-
equals(e, i, t) {
|
|
137
|
-
return t.ignoreWhitespace ? ((!t.newlineIsToken || !e.includes(`
|
|
138
|
-
`)) && (e = e.trim()), (!t.newlineIsToken || !i.includes(`
|
|
139
|
-
`)) && (i = i.trim())) : t.ignoreNewlineAtEof && !t.newlineIsToken && (e.endsWith(`
|
|
140
|
-
`) && (e = e.slice(0, -1)), i.endsWith(`
|
|
141
|
-
`) && (i = i.slice(0, -1))), super.equals(e, i, t);
|
|
142
|
-
}
|
|
143
|
-
}
|
|
144
|
-
const D = new j();
|
|
145
|
-
function y(n, e, i) {
|
|
146
|
-
return D.diff(n, e, i);
|
|
147
|
-
}
|
|
148
|
-
function S(n, e) {
|
|
149
|
-
e.stripTrailingCr && (n = n.replace(/\r\n/g, `
|
|
150
|
-
`));
|
|
151
|
-
const i = [], t = n.split(/(\n|\r\n)/);
|
|
152
|
-
t[t.length - 1] || t.pop();
|
|
153
|
-
for (let l = 0; l < t.length; l++) {
|
|
154
|
-
const f = t[l];
|
|
155
|
-
l % 2 && !e.newlineIsToken ? i[i.length - 1] += f : i.push(f);
|
|
156
|
-
}
|
|
157
|
-
return i;
|
|
158
|
-
}
|
|
159
|
-
function M(n) {
|
|
160
|
-
for (let e = 0; e < n.length; e++)
|
|
161
|
-
if (n[e] < " " || n[e] > "~" || n[e] === '"' || n[e] === "\\")
|
|
162
|
-
return !0;
|
|
163
|
-
return !1;
|
|
164
|
-
}
|
|
165
|
-
function b(n) {
|
|
166
|
-
if (!M(n))
|
|
167
|
-
return n;
|
|
168
|
-
let e = '"';
|
|
169
|
-
const i = new TextEncoder().encode(n);
|
|
170
|
-
let t = 0;
|
|
171
|
-
for (; t < i.length; ) {
|
|
172
|
-
const l = i[t];
|
|
173
|
-
l === 7 ? e += "\\a" : l === 8 ? e += "\\b" : l === 9 ? e += "\\t" : l === 10 ? e += "\\n" : l === 11 ? e += "\\v" : l === 12 ? e += "\\f" : l === 13 ? e += "\\r" : l === 34 ? e += '\\"' : l === 92 ? e += "\\\\" : l >= 32 && l <= 126 ? e += String.fromCharCode(l) : e += "\\" + l.toString(8).padStart(3, "0"), t++;
|
|
174
|
-
}
|
|
175
|
-
return e += '"', e;
|
|
176
|
-
}
|
|
177
|
-
const E = {
|
|
178
|
-
includeIndex: !0,
|
|
179
|
-
includeUnderline: !0,
|
|
180
|
-
includeFileHeaders: !0
|
|
181
|
-
};
|
|
182
|
-
function I(n, e, i, t, l, f, r) {
|
|
183
|
-
let u;
|
|
184
|
-
r ? typeof r == "function" ? u = { callback: r } : u = r : u = {}, typeof u.context > "u" && (u.context = 4);
|
|
185
|
-
const o = u.context;
|
|
186
|
-
if (u.newlineIsToken)
|
|
187
|
-
throw new Error("newlineIsToken may not be used with patch-generation functions, only with diffing functions");
|
|
188
|
-
if (u.callback) {
|
|
189
|
-
const { callback: s } = u;
|
|
190
|
-
y(i, t, Object.assign(Object.assign({}, u), { callback: (a) => {
|
|
191
|
-
const v = m(a);
|
|
192
|
-
s(v);
|
|
193
|
-
} }));
|
|
194
|
-
} else
|
|
195
|
-
return m(y(i, t, u));
|
|
196
|
-
function m(s) {
|
|
197
|
-
if (!s)
|
|
198
|
-
return;
|
|
199
|
-
s.push({ value: "", lines: [] });
|
|
200
|
-
function a(d) {
|
|
201
|
-
return d.map(function(c) {
|
|
202
|
-
return " " + c;
|
|
203
|
-
});
|
|
204
|
-
}
|
|
205
|
-
const v = [];
|
|
206
|
-
let h = 0, x = 0, C = [], P = 1, L = 1;
|
|
207
|
-
for (let d = 0; d < s.length; d++) {
|
|
208
|
-
const c = s[d], w = c.lines || A(c.value);
|
|
209
|
-
if (c.lines = w, c.added || c.removed) {
|
|
210
|
-
if (!h) {
|
|
211
|
-
const g = s[d - 1];
|
|
212
|
-
h = P, x = L, g && (C = o > 0 ? a(g.lines.slice(-o)) : [], h -= C.length, x -= C.length);
|
|
213
|
-
}
|
|
214
|
-
for (const g of w)
|
|
215
|
-
C.push((c.added ? "+" : "-") + g);
|
|
216
|
-
c.added ? L += w.length : P += w.length;
|
|
217
|
-
} else {
|
|
218
|
-
if (h)
|
|
219
|
-
if (w.length <= o * 2 && d < s.length - 2)
|
|
220
|
-
for (const g of a(w))
|
|
221
|
-
C.push(g);
|
|
222
|
-
else {
|
|
223
|
-
const g = Math.min(w.length, o);
|
|
224
|
-
for (const k of a(w.slice(0, g)))
|
|
225
|
-
C.push(k);
|
|
226
|
-
const N = {
|
|
227
|
-
oldStart: h,
|
|
228
|
-
oldLines: P - h + g,
|
|
229
|
-
newStart: x,
|
|
230
|
-
newLines: L - x + g,
|
|
231
|
-
lines: C
|
|
232
|
-
};
|
|
233
|
-
v.push(N), h = 0, x = 0, C = [];
|
|
234
|
-
}
|
|
235
|
-
P += w.length, L += w.length;
|
|
236
|
-
}
|
|
237
|
-
}
|
|
238
|
-
for (const d of v)
|
|
239
|
-
for (let c = 0; c < d.lines.length; c++)
|
|
240
|
-
d.lines[c].endsWith(`
|
|
241
|
-
`) ? d.lines[c] = d.lines[c].slice(0, -1) : (d.lines.splice(c + 1, 0, "\"), c++);
|
|
242
|
-
return {
|
|
243
|
-
oldFileName: n,
|
|
244
|
-
newFileName: e,
|
|
245
|
-
oldHeader: l,
|
|
246
|
-
newHeader: f,
|
|
247
|
-
hunks: v
|
|
248
|
-
};
|
|
249
|
-
}
|
|
250
|
-
}
|
|
251
|
-
function F(n, e) {
|
|
252
|
-
var i, t, l, f, r, u;
|
|
253
|
-
if (e || (e = E), Array.isArray(n)) {
|
|
254
|
-
if (n.length > 1 && !e.includeFileHeaders && !n.every((s) => s.isGit))
|
|
255
|
-
throw new Error("Cannot omit file headers on a multi-file patch. (The result would be unparseable; how would a tool trying to apply the patch know which changes are to which file?)");
|
|
256
|
-
return n.map((s) => F(s, e)).join(`
|
|
257
|
-
`);
|
|
258
|
-
}
|
|
259
|
-
const o = [];
|
|
260
|
-
if (n.isGit) {
|
|
261
|
-
if (e = E, !n.oldFileName)
|
|
262
|
-
throw new Error("oldFileName must be specified for Git patches");
|
|
263
|
-
if (!n.newFileName)
|
|
264
|
-
throw new Error("newFileName must be specified for Git patches");
|
|
265
|
-
let s = n.oldFileName, a = n.newFileName;
|
|
266
|
-
n.isCreate && s === "/dev/null" ? s = a.replace(/^b\//, "a/") : n.isDelete && a === "/dev/null" && (a = s.replace(/^a\//, "b/")), o.push("diff --git " + b(s) + " " + b(a)), n.isDelete && o.push("deleted file mode " + ((i = n.oldMode) !== null && i !== void 0 ? i : "100644")), n.isCreate && o.push("new file mode " + ((t = n.newMode) !== null && t !== void 0 ? t : "100644")), n.oldMode && n.newMode && !n.isDelete && !n.isCreate && (o.push("old mode " + n.oldMode), o.push("new mode " + n.newMode)), n.isRename && (o.push("rename from " + b(((l = n.oldFileName) !== null && l !== void 0 ? l : "").replace(/^a\//, ""))), o.push("rename to " + b(((f = n.newFileName) !== null && f !== void 0 ? f : "").replace(/^b\//, "")))), n.isCopy && (o.push("copy from " + b(((r = n.oldFileName) !== null && r !== void 0 ? r : "").replace(/^a\//, ""))), o.push("copy to " + b(((u = n.newFileName) !== null && u !== void 0 ? u : "").replace(/^b\//, ""))));
|
|
267
|
-
} else
|
|
268
|
-
e.includeIndex && n.oldFileName == n.newFileName && n.oldFileName !== void 0 && o.push("Index: " + n.oldFileName), e.includeUnderline && o.push("===================================================================");
|
|
269
|
-
const m = n.hunks.length > 0;
|
|
270
|
-
e.includeFileHeaders && n.oldFileName !== void 0 && n.newFileName !== void 0 && (!n.isGit || m) && (o.push("--- " + b(n.oldFileName) + (n.oldHeader ? " " + n.oldHeader : "")), o.push("+++ " + b(n.newFileName) + (n.newHeader ? " " + n.newHeader : "")));
|
|
271
|
-
for (let s = 0; s < n.hunks.length; s++) {
|
|
272
|
-
const a = n.hunks[s], v = a.oldLines === 0 ? a.oldStart - 1 : a.oldStart, h = a.newLines === 0 ? a.newStart - 1 : a.newStart;
|
|
273
|
-
o.push("@@ -" + v + "," + a.oldLines + " +" + h + "," + a.newLines + " @@");
|
|
274
|
-
for (const x of a.lines)
|
|
275
|
-
o.push(x);
|
|
276
|
-
}
|
|
277
|
-
return o.join(`
|
|
278
|
-
`) + `
|
|
279
|
-
`;
|
|
280
|
-
}
|
|
281
|
-
function H(n, e, i, t, l, f, r) {
|
|
282
|
-
if (typeof r == "function" && (r = { callback: r }), r?.callback) {
|
|
283
|
-
const { callback: u } = r;
|
|
284
|
-
I(n, e, i, t, l, f, Object.assign(Object.assign({}, r), { callback: (o) => {
|
|
285
|
-
u(o ? F(o, r.headerOptions) : void 0);
|
|
286
|
-
} }));
|
|
287
|
-
} else {
|
|
288
|
-
const u = I(n, e, i, t, l, f, r);
|
|
289
|
-
return u ? F(u, r?.headerOptions) : void 0;
|
|
290
|
-
}
|
|
291
|
-
}
|
|
292
|
-
function _(n, e, i, t, l, f) {
|
|
293
|
-
return H(n, n, e, i, t, l, f);
|
|
294
|
-
}
|
|
295
|
-
function A(n) {
|
|
296
|
-
const e = n.endsWith(`
|
|
297
|
-
`), i = n.split(`
|
|
298
|
-
`).map((t) => t + `
|
|
299
|
-
`);
|
|
300
|
-
return e ? i.pop() : i.push(i.pop().slice(0, -1)), i;
|
|
301
|
-
}
|
|
302
|
-
export {
|
|
303
|
-
T as D,
|
|
304
|
-
H as a,
|
|
305
|
-
_ as c
|
|
306
|
-
};
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import { f as h } from "./embedded-Be_WfQ0h.js";
|
|
2
|
-
/**
|
|
3
|
-
* @license lucide-react v0.577.0 - ISC
|
|
4
|
-
*
|
|
5
|
-
* This source code is licensed under the ISC license.
|
|
6
|
-
* See the LICENSE file in the root directory of this source tree.
|
|
7
|
-
*/
|
|
8
|
-
const e = [
|
|
9
|
-
["path", { d: "M10 8h.01", key: "1r9ogq" }],
|
|
10
|
-
["path", { d: "M12 12h.01", key: "1mp3jc" }],
|
|
11
|
-
["path", { d: "M14 8h.01", key: "1primd" }],
|
|
12
|
-
["path", { d: "M16 12h.01", key: "1l6xoz" }],
|
|
13
|
-
["path", { d: "M18 8h.01", key: "emo2bl" }],
|
|
14
|
-
["path", { d: "M6 8h.01", key: "x9i8wu" }],
|
|
15
|
-
["path", { d: "M7 16h10", key: "wp8him" }],
|
|
16
|
-
["path", { d: "M8 12h.01", key: "czm47f" }],
|
|
17
|
-
["rect", { width: "20", height: "16", x: "2", y: "4", rx: "2", key: "18n3k1" }]
|
|
18
|
-
], d = h("keyboard", e);
|
|
19
|
-
export {
|
|
20
|
-
d as K
|
|
21
|
-
};
|