koneck 2.87.1 → 2.88.1
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 +103 -9
- 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/dist/web/ui.d.ts.map +1 -1
- package/dist/web/ui.js +13 -4
- package/dist/web/ui.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':
|
|
@@ -3481,7 +3544,8 @@ $('goalsave').onclick = async () => {
|
|
|
3481
3544
|
try {
|
|
3482
3545
|
setPosture(await api('/api/goal', { method: 'POST',
|
|
3483
3546
|
body: JSON.stringify({ session: state.session, goal: text || null }) }));
|
|
3484
|
-
} catch (e) { add(el('div', 'err', e.message)); }
|
|
3547
|
+
} catch (e) { add(el('div', 'err', e.message)); return; }
|
|
3548
|
+
$('goaldlg').close();
|
|
3485
3549
|
};
|
|
3486
3550
|
// Cycled rather than given a dialog: four values, and the pill says which.
|
|
3487
3551
|
const EFFORTS = ['low', 'medium', 'high', 'max'];
|
|
@@ -3514,7 +3578,10 @@ $('rewind').onclick = async () => {
|
|
|
3514
3578
|
|
|
3515
3579
|
$('toksave').onclick = () => {
|
|
3516
3580
|
const v = $('tokin').value.trim();
|
|
3517
|
-
|
|
3581
|
+
// Nothing typed is not an answer, so the dialog stays where it is rather than closing on nothing.
|
|
3582
|
+
if (!v) return;
|
|
3583
|
+
localStorage.setItem('koneck.token', v);
|
|
3584
|
+
location.reload();
|
|
3518
3585
|
};
|
|
3519
3586
|
$('pmode').onclick = async () => {
|
|
3520
3587
|
let info;
|
|
@@ -5790,13 +5857,34 @@ async function loadModels(provider, preselect) {
|
|
|
5790
5857
|
}
|
|
5791
5858
|
|
|
5792
5859
|
$('pmodel').onclick = async () => {
|
|
5793
|
-
|
|
5794
|
-
|
|
5795
|
-
|
|
5796
|
-
|
|
5860
|
+
/*
|
|
5861
|
+
* The dialog opens first, and fills afterwards.
|
|
5862
|
+
*
|
|
5863
|
+
* It used to list the providers and return early if that failed — so when the listing could not
|
|
5864
|
+
* be fetched, clicking the model button did nothing at all and said nothing at all. Reported as
|
|
5865
|
+
* adding a provider not working, and it is exactly that: "+ provider" lives inside this dialog,
|
|
5866
|
+
* so a listing failure took away the only way to declare one, at the moment somebody was most
|
|
5867
|
+
* likely trying to.
|
|
5868
|
+
*
|
|
5869
|
+
* A stale token is the ordinary way to get here now that a second project takes its own port: an
|
|
5870
|
+
* old tab left open on a server that has since restarted holds a token that no longer opens
|
|
5871
|
+
* anything.
|
|
5872
|
+
*/
|
|
5797
5873
|
$('mmodel').value = '';
|
|
5798
5874
|
catalog.provider = null; // re-ask: a key may have been set since last time
|
|
5799
5875
|
$('mdlg').showModal();
|
|
5876
|
+
|
|
5877
|
+
const info = await fillProviders(state.provider);
|
|
5878
|
+
if (!info) {
|
|
5879
|
+
// Said inside the dialog, where the person is looking, and without hiding what still works:
|
|
5880
|
+
// the endpoint and key fields are usable even when the listing is not.
|
|
5881
|
+
$('pverr').hidden = false;
|
|
5882
|
+
$('pverr').textContent =
|
|
5883
|
+
'The provider list could not be loaded, so the menu above may be incomplete. '
|
|
5884
|
+
+ 'Declaring one with + provider still works.';
|
|
5885
|
+
return;
|
|
5886
|
+
}
|
|
5887
|
+
$('pverr').hidden = true;
|
|
5800
5888
|
void loadModels($('mprov').value, state.model === '-' ? '' : state.model);
|
|
5801
5889
|
};
|
|
5802
5890
|
$('mprov').onchange = () => {
|
|
@@ -5872,9 +5960,15 @@ $('msave').onclick = async () => {
|
|
|
5872
5960
|
try {
|
|
5873
5961
|
info = await api('/api/model', { method: 'POST',
|
|
5874
5962
|
body: JSON.stringify({ session: state.session, provider: provider, model: model }) });
|
|
5875
|
-
} catch (e) {
|
|
5963
|
+
} catch (e) {
|
|
5964
|
+
// Kept open, with the reason: the dialog used to close on the way out and take this with it.
|
|
5965
|
+
$('pverr').hidden = false;
|
|
5966
|
+
$('pverr').textContent = e.message;
|
|
5967
|
+
return;
|
|
5968
|
+
}
|
|
5876
5969
|
state.provider = info.provider; state.model = info.model;
|
|
5877
5970
|
setPills(info.provider, info.model);
|
|
5971
|
+
$('mdlg').close();
|
|
5878
5972
|
};
|
|
5879
5973
|
for (const b of document.querySelectorAll('.hero .ex button')) {
|
|
5880
5974
|
b.onclick = () => send(b.textContent);
|
|
@@ -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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA06LlB,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"}
|