koneck 2.87.0 → 2.88.0
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/engine.d.ts.map +1 -1
- package/dist/engine.js +20 -11
- package/dist/engine.js.map +1 -1
- package/dist/web/ui-client.d.ts.map +1 -1
- package/dist/web/ui-client.js +93 -21
- package/dist/web/ui-client.js.map +1 -1
- package/dist/web/ui-css.d.ts.map +1 -1
- package/dist/web/ui-css.js +259 -215
- package/dist/web/ui-css.js.map +1 -1
- package/package.json +1 -1
package/dist/web/ui-client.js
CHANGED
|
@@ -158,6 +158,55 @@ function md(src) {
|
|
|
158
158
|
.replace(/^#{2,4} (.*)$/gm, '<h3>$1</h3>')
|
|
159
159
|
.replace(/\*\*([^*]+)\*\*/g, '<strong>$1</strong>')
|
|
160
160
|
.replace(new RegExp(T + '([^' + T + '\n]+)' + T, 'g'), '<code>$1</code>');
|
|
161
|
+
|
|
162
|
+
/*
|
|
163
|
+
* Lists and paragraphs, which this did not have at all.
|
|
164
|
+
*
|
|
165
|
+
* Headings, bold, tables, inline code and fenced blocks were rendered; a bulleted list came out
|
|
166
|
+
* as literal hyphens and a numbered one as "1." at the start of a line, held together only by
|
|
167
|
+
* the white-space:pre-wrap on the element around it. So a model that answers in steps — which is
|
|
168
|
+
* how models answer — produced a wall with punctuation in it.
|
|
169
|
+
*
|
|
170
|
+
* Line-based rather than a parser: this renders one model's reply, not a document, and a real
|
|
171
|
+
* markdown implementation is larger than the page it would be serving. Nested lists are not
|
|
172
|
+
* handled, and that is a limit rather than an oversight — one level is what a reply uses.
|
|
173
|
+
*/
|
|
174
|
+
const lines = text.split('\n');
|
|
175
|
+
const out = [];
|
|
176
|
+
let list = null; // 'ul' | 'ol' while one is open
|
|
177
|
+
let para = [];
|
|
178
|
+
|
|
179
|
+
const closeList = () => { if (list) { out.push('</' + list + '>'); list = null; } };
|
|
180
|
+
const closePara = () => {
|
|
181
|
+
if (para.length === 0) return;
|
|
182
|
+
out.push('<p>' + para.join('<br>') + '</p>');
|
|
183
|
+
para = [];
|
|
184
|
+
};
|
|
185
|
+
|
|
186
|
+
for (const line of lines) {
|
|
187
|
+
const bullet = /^[-*+]\s+(.*)$/.exec(line);
|
|
188
|
+
const number = /^(\d+)[.)]\s+(.*)$/.exec(line);
|
|
189
|
+
// A block the earlier passes already produced stands on its own: wrapping a table or a heading
|
|
190
|
+
// in a paragraph is invalid, and wrapping a fenced block's placeholder would put a pre inside
|
|
191
|
+
// one, which browsers unpick in ways nobody intends.
|
|
192
|
+
const already = /^\s*<(h3|table|pre)/.test(line) || line.indexOf(HOLE) !== -1;
|
|
193
|
+
|
|
194
|
+
if (bullet || number) {
|
|
195
|
+
closePara();
|
|
196
|
+
const want = bullet ? 'ul' : 'ol';
|
|
197
|
+
if (list !== want) { closeList(); out.push('<' + want + '>'); list = want; }
|
|
198
|
+
out.push('<li>' + (bullet ? bullet[1] : number[2]) + '</li>');
|
|
199
|
+
continue;
|
|
200
|
+
}
|
|
201
|
+
closeList();
|
|
202
|
+
if (already) { closePara(); out.push(line); continue; }
|
|
203
|
+
if (line.trim() === '') { closePara(); continue; }
|
|
204
|
+
para.push(line);
|
|
205
|
+
}
|
|
206
|
+
closeList();
|
|
207
|
+
closePara();
|
|
208
|
+
text = out.join('\n');
|
|
209
|
+
|
|
161
210
|
return text.replace(new RegExp(HOLE + '(\\d+)' + HOLE, 'g'), (m, i) => blocks[Number(i)]);
|
|
162
211
|
}
|
|
163
212
|
|
|
@@ -543,8 +592,22 @@ function onEvent(e) {
|
|
|
543
592
|
// Separate thoughts arrive as separate deliveries with no whitespace between them, which ran
|
|
544
593
|
// together as "kill it properlyThe port 3001 is being used by". A sentence boundary with no
|
|
545
594
|
// space at it is the tell, and it is a safe one: real prose never has it.
|
|
546
|
-
|
|
547
|
-
|
|
595
|
+
/*
|
|
596
|
+
* Reasoning read as reasoning, not as a wall.
|
|
597
|
+
*
|
|
598
|
+
* It was set with textContent and pre-wrap, so a model that thinks in headings, numbered
|
|
599
|
+
* steps and bullets rendered every one of them as literal asterisks and hashes running
|
|
600
|
+
* together — the thing being reasoned about was there and unreadable. It is markdown, so it
|
|
601
|
+
* is rendered as markdown, through the same renderer the replies use: escaped first, fenced
|
|
602
|
+
* blocks lifted out, a single tag inserted after. Model output is untrusted text and often
|
|
603
|
+
* contains HTML, and none of that changes because it happens to be a thought.
|
|
604
|
+
*
|
|
605
|
+
* The raw text is kept on the element, because each delivery appends to what came before and
|
|
606
|
+
* reading it back out of rendered HTML would lose the newlines that separate the paragraphs.
|
|
607
|
+
*/
|
|
608
|
+
const grown = joinChunk(state.thinkEl.dataset.raw || '', e.text).slice(-4000);
|
|
609
|
+
state.thinkEl.dataset.raw = grown;
|
|
610
|
+
state.thinkEl.innerHTML = md(grown);
|
|
548
611
|
break;
|
|
549
612
|
}
|
|
550
613
|
case 'tool':
|
|
@@ -4499,25 +4562,6 @@ function drawPreview(data) {
|
|
|
4499
4562
|
img.tabIndex = 0;
|
|
4500
4563
|
img.onkeydown = (ev) => { void pageKey(ev); };
|
|
4501
4564
|
img.onblur = () => { void flushTyping(); };
|
|
4502
|
-
/*
|
|
4503
|
-
* The wheel scrolls the page, not the panel around it.
|
|
4504
|
-
*
|
|
4505
|
-
* There was no wheel handler at all: turning the wheel over a page scrolled the panel it sat in,
|
|
4506
|
-
* or nothing, and the only way down a page was the scroll buttons. Accumulated and sent as one
|
|
4507
|
-
* movement per burst, because a scroll gesture is fifty wheel events and fifty round trips is a
|
|
4508
|
-
* page that lurches instead of scrolling.
|
|
4509
|
-
*/
|
|
4510
|
-
img.onwheel = (ev) => {
|
|
4511
|
-
ev.preventDefault();
|
|
4512
|
-
scrolling.by += ev.deltaY;
|
|
4513
|
-
if (scrolling.timer) return;
|
|
4514
|
-
scrolling.timer = setTimeout(() => {
|
|
4515
|
-
const by = Math.round(scrolling.by);
|
|
4516
|
-
scrolling.by = 0;
|
|
4517
|
-
scrolling.timer = null;
|
|
4518
|
-
if (by !== 0) void browserDo({ action: 'scroll', by: by });
|
|
4519
|
-
}, SCROLL_BATCH_MS);
|
|
4520
|
-
};
|
|
4521
4565
|
|
|
4522
4566
|
// The picture is 1280 wide whatever it is displayed at, so a click has to be scaled back into
|
|
4523
4567
|
// page coordinates or it lands somewhere else entirely.
|
|
@@ -4555,6 +4599,34 @@ function drawPreview(data) {
|
|
|
4555
4599
|
host.appendChild(row);
|
|
4556
4600
|
}
|
|
4557
4601
|
|
|
4602
|
+
/*
|
|
4603
|
+
* The wheel scrolls the page, from anywhere in the panel.
|
|
4604
|
+
*
|
|
4605
|
+
* It was attached to the picture itself, so it worked only while the cursor sat exactly on it —
|
|
4606
|
+
* and a picture is centred with space around it and a hint underneath, which is where a cursor
|
|
4607
|
+
* usually is. Measured: over the image the page scrolls; eight pixels to its left, or twenty below
|
|
4608
|
+
* it, nothing happens at all. Reported as the page not being scrollable, which from where the
|
|
4609
|
+
* person was pointing it was not.
|
|
4610
|
+
*
|
|
4611
|
+
* On the container instead, wired once. That also survives the redraw after each scroll — the
|
|
4612
|
+
* picture is replaced every time a new one arrives, and a handler on it went with it.
|
|
4613
|
+
*
|
|
4614
|
+
* Accumulated and sent as one movement per burst, because a scroll gesture is fifty wheel events
|
|
4615
|
+
* and fifty round trips is a page that lurches rather than scrolls.
|
|
4616
|
+
*/
|
|
4617
|
+
$('pvbody').addEventListener('wheel', (ev) => {
|
|
4618
|
+
if (!document.querySelector('#pvbody .pvshot')) return; // nothing open to scroll
|
|
4619
|
+
ev.preventDefault();
|
|
4620
|
+
scrolling.by += ev.deltaY;
|
|
4621
|
+
if (scrolling.timer) return;
|
|
4622
|
+
scrolling.timer = setTimeout(() => {
|
|
4623
|
+
const by = Math.round(scrolling.by);
|
|
4624
|
+
scrolling.by = 0;
|
|
4625
|
+
scrolling.timer = null;
|
|
4626
|
+
if (by !== 0) void browserDo({ action: 'scroll', by: by });
|
|
4627
|
+
}, SCROLL_BATCH_MS);
|
|
4628
|
+
}, { passive: false });
|
|
4629
|
+
|
|
4558
4630
|
async function browserDo(body) {
|
|
4559
4631
|
$('pvinfo').textContent = 'working…';
|
|
4560
4632
|
let out;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ui-client.js","sourceRoot":"","sources":["../../src/web/ui-client.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AACH,MAAM,UAAU,YAAY;IAC1B,OAAO,MAAM,CAAC,GAAG,CAAA
|
|
1
|
+
{"version":3,"file":"ui-client.js","sourceRoot":"","sources":["../../src/web/ui-client.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AACH,MAAM,UAAU,YAAY;IAC1B,OAAO,MAAM,CAAC,GAAG,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA24LlB,CAAC;AACF,CAAC"}
|
package/dist/web/ui-css.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ui-css.d.ts","sourceRoot":"","sources":["../../src/web/ui-css.ts"],"names":[],"mappings":"AA8CA,wBAAgB,GAAG,CAAC,OAAO,EAAE,MAAM,GAAG,MAAM,
|
|
1
|
+
{"version":3,"file":"ui-css.d.ts","sourceRoot":"","sources":["../../src/web/ui-css.ts"],"names":[],"mappings":"AA8CA,wBAAgB,GAAG,CAAC,OAAO,EAAE,MAAM,GAAG,MAAM,CAwzC3C"}
|