koneck 2.61.0 → 2.63.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/folder-dialog.d.ts +63 -0
- package/dist/folder-dialog.d.ts.map +1 -0
- package/dist/folder-dialog.js +175 -0
- package/dist/folder-dialog.js.map +1 -0
- package/dist/web/api.d.ts.map +1 -1
- package/dist/web/api.js +184 -9
- package/dist/web/api.js.map +1 -1
- package/dist/web/ui-client.d.ts.map +1 -1
- package/dist/web/ui-client.js +254 -25
- 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 +98 -2
- package/dist/web/ui-css.js.map +1 -1
- package/dist/web/ui.d.ts.map +1 -1
- package/dist/web/ui.js +96 -17
- package/dist/web/ui.js.map +1 -1
- package/package.json +1 -1
package/dist/web/ui-css.js
CHANGED
|
@@ -122,7 +122,9 @@ aside.hide{display:none}
|
|
|
122
122
|
/* ── main ────────────────────────────────────────────────── */
|
|
123
123
|
main{flex:1;display:flex;flex-direction:column;min-width:0;min-height:0}
|
|
124
124
|
header{height:47px;flex:0 0 47px;border-bottom:1px solid var(--line);display:flex;
|
|
125
|
-
align-items:center;gap:8px;padding:0 14px;background:var(--panel);font-size:12px
|
|
125
|
+
align-items:center;gap:8px;padding:0 14px;background:var(--panel);font-size:12px;
|
|
126
|
+
overflow-x:auto;overflow-y:hidden;scrollbar-width:none}
|
|
127
|
+
header::-webkit-scrollbar{display:none}
|
|
126
128
|
.iconbtn{width:28px;height:28px;border-radius:7px;border:1px solid transparent;color:var(--muted);
|
|
127
129
|
display:grid;place-items:center;font-size:15px}
|
|
128
130
|
.iconbtn:hover{background:var(--panel-2);color:var(--ink)}
|
|
@@ -130,8 +132,16 @@ header{height:47px;flex:0 0 47px;border-bottom:1px solid var(--line);display:fle
|
|
|
130
132
|
.tab{padding:4px 12px;border-radius:6px;font-size:12px;color:var(--muted)}
|
|
131
133
|
.tab.on{background:var(--panel);color:var(--ink);box-shadow:var(--shadow)}
|
|
132
134
|
.tab .n{color:var(--dim);margin-left:5px;font-variant-numeric:tabular-nums}
|
|
135
|
+
/*
|
|
136
|
+
* A pill never wraps, and the row never grows past the window.
|
|
137
|
+
*
|
|
138
|
+
* Adding one more pill pushed the last one off the right-hand edge and made another wrap onto a
|
|
139
|
+
* second line inside a 47px header. A pill is a label, not a paragraph: it stays on one line, and
|
|
140
|
+
* the row scrolls sideways when there are more of them than fit rather than rearranging itself.
|
|
141
|
+
*/
|
|
133
142
|
.pill{border:1px solid var(--line);background:var(--panel-2);border-radius:999px;
|
|
134
|
-
padding:4px 11px;color:var(--muted);display:flex;gap:6px;align-items:center;max-width:230px
|
|
143
|
+
padding:4px 11px;color:var(--muted);display:flex;gap:6px;align-items:center;max-width:230px;
|
|
144
|
+
white-space:nowrap;flex:0 0 auto}
|
|
135
145
|
.pill:hover{border-color:var(--cyan);color:var(--ink)}
|
|
136
146
|
.pill b{color:var(--ink);font-weight:500;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
|
|
137
147
|
.spacer{flex:1}
|
|
@@ -692,6 +702,92 @@ dialog:has(.dlg.wide){max-width:560px}
|
|
|
692
702
|
.wwrite{padding:8px 13px;color:var(--cyan);font-size:11.5px;border-bottom:1px solid var(--line-2)}
|
|
693
703
|
.wwbody{min-height:0}
|
|
694
704
|
|
|
705
|
+
/*
|
|
706
|
+
* Under the composer: what you change, then what you might need to be told.
|
|
707
|
+
*
|
|
708
|
+
* The model belongs within reach of the cursor. It was at the top of the window, as far from the
|
|
709
|
+
* input as the layout allows, while the space under the input held three keyboard shortcuts that
|
|
710
|
+
* never changed and never went away.
|
|
711
|
+
*/
|
|
712
|
+
.cunder{display:flex;align-items:center;gap:7px;padding:7px 2px 0}
|
|
713
|
+
.cmodel,.cpace{padding:3px 10px;border-radius:999px;border:1px solid var(--line-2);
|
|
714
|
+
background:transparent;color:var(--muted);cursor:pointer;font-size:11.5px;font-family:inherit}
|
|
715
|
+
.cmodel:hover,.cpace:hover{border-color:var(--cyan);color:var(--cyan)}
|
|
716
|
+
.cmodel #cmodelname{color:var(--fg)}
|
|
717
|
+
.cgap{flex:1}
|
|
718
|
+
/*
|
|
719
|
+
* Shown while the box is focused and empty, which is when somebody is deciding what to do rather
|
|
720
|
+
* than doing it. Height is not animated: a row that grows and shrinks under a text field moves the
|
|
721
|
+
* text field, and a composer that jumps while you look at it is worse than one that says nothing.
|
|
722
|
+
*/
|
|
723
|
+
.chint{opacity:0;transition:opacity .15s ease;pointer-events:none}
|
|
724
|
+
.chint.show{opacity:1;pointer-events:auto}
|
|
725
|
+
|
|
726
|
+
/* The command that carries this session to a terminal: shown as something to be run, not read. */
|
|
727
|
+
.ttycmd{margin:0 0 10px;padding:10px 12px;border-radius:8px;border:1px solid var(--line-2);
|
|
728
|
+
background:var(--panel-2);font-family:var(--mono);font-size:12px;color:var(--cyan);
|
|
729
|
+
white-space:pre-wrap;word-break:break-all}
|
|
730
|
+
|
|
731
|
+
/*
|
|
732
|
+
* The project picker.
|
|
733
|
+
*
|
|
734
|
+
* Two lists in one dialog — what you had open recently, and wherever you are looking now — because
|
|
735
|
+
* the two questions "back to the one I was in" and "somewhere I have never opened" want different
|
|
736
|
+
* shapes. Both scroll on their own so the dialog never grows past the window.
|
|
737
|
+
*/
|
|
738
|
+
/*
|
|
739
|
+
* Wider than the other dialogs, and allowed to be.
|
|
740
|
+
*
|
|
741
|
+
* Every dialog is capped at 450px, which is right for a question and wrong for two lists of file
|
|
742
|
+
* paths: the rows overflowed sideways and took the Open button off the edge of the dialog with
|
|
743
|
+
* them. The cap is lifted for this one, and every row is told it may shrink — a nowrap path inside
|
|
744
|
+
* a flex row will otherwise push the whole dialog wider than its own container.
|
|
745
|
+
*/
|
|
746
|
+
#wsdlg{max-width:640px}
|
|
747
|
+
.wsdlg{width:100%;box-sizing:border-box;min-width:0}
|
|
748
|
+
#wsfind{width:100%;box-sizing:border-box;padding:8px 11px;border-radius:8px;
|
|
749
|
+
border:1px solid var(--line-2);background:var(--panel-2);color:var(--fg);font-size:13px;
|
|
750
|
+
margin:2px 0 12px}
|
|
751
|
+
.wssec{margin:0 0 12px}
|
|
752
|
+
.wshead{display:flex;align-items:center;gap:7px;font-size:10.5px;color:var(--dim);
|
|
753
|
+
text-transform:uppercase;letter-spacing:.06em;margin:0 0 5px}
|
|
754
|
+
.wsup{padding:1px 7px;border-radius:6px;border:1px solid var(--line-2);color:var(--muted);
|
|
755
|
+
background:transparent;cursor:pointer;font-size:11px}
|
|
756
|
+
.wsup:hover{border-color:var(--cyan);color:var(--cyan)}
|
|
757
|
+
.wswhere{font-family:var(--mono);font-size:11px;color:var(--muted);text-transform:none;
|
|
758
|
+
letter-spacing:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
|
|
759
|
+
.wslist{max-height:180px;overflow-y:auto;overflow-x:hidden;border:1px solid var(--line);
|
|
760
|
+
border-radius:8px;background:var(--panel-2)}
|
|
761
|
+
.wsrow{display:flex;align-items:center;gap:9px;padding:7px 11px;cursor:pointer;font-size:12.5px;
|
|
762
|
+
border-bottom:1px solid var(--line);min-width:0}
|
|
763
|
+
.wsrow:last-child{border-bottom:0}
|
|
764
|
+
.wsrow:hover{background:var(--panel)}
|
|
765
|
+
.wsrow.on{background:var(--panel);box-shadow:inset 2px 0 0 var(--cyan)}
|
|
766
|
+
.wsrow .wsn{color:var(--fg);white-space:nowrap;overflow:hidden;text-overflow:ellipsis;min-width:0}
|
|
767
|
+
/* A folder that looks like a project reads as one, so a long list can be skimmed. */
|
|
768
|
+
.wsrow .wsp{color:var(--cyan);font-size:10px;border:1px solid var(--cyan);border-radius:999px;
|
|
769
|
+
padding:0 5px;flex:0 0 auto}
|
|
770
|
+
/* Allowed to shrink and then to trail off, rather than to widen the dialog. */
|
|
771
|
+
.wsrow .wsm{margin-left:auto;color:var(--dim);font-size:10.5px;min-width:0;
|
|
772
|
+
white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
|
|
773
|
+
.wsrow .wsinto{flex:0 0 auto;color:var(--dim);font-size:12px}
|
|
774
|
+
.wsempty{padding:10px 11px;color:var(--dim);font-size:12px}
|
|
775
|
+
/*
|
|
776
|
+
* The ways to reach a folder, as a list of things to do rather than a form.
|
|
777
|
+
*
|
|
778
|
+
* Each row is one answer to one question, so it reads as a menu: an icon, a name, and a hint at
|
|
779
|
+
* what happens — an arrow for something that opens further, a note for something that hands over to
|
|
780
|
+
* the machine.
|
|
781
|
+
*/
|
|
782
|
+
.wsmenu{border:1px solid var(--line);border-radius:8px;background:var(--panel-2);overflow:hidden}
|
|
783
|
+
.wsitem{display:flex;align-items:center;gap:10px;width:100%;padding:8px 11px;
|
|
784
|
+
background:transparent;border:0;border-bottom:1px solid var(--line);cursor:pointer;
|
|
785
|
+
font-size:12.5px;font-family:inherit;text-align:left;color:var(--fg)}
|
|
786
|
+
.wsitem:last-child{border-bottom:0}
|
|
787
|
+
.wsitem:hover{background:var(--panel)}
|
|
788
|
+
.wsitem[aria-disabled="true"]{opacity:.5;cursor:default}
|
|
789
|
+
.wsico{flex:0 0 16px;text-align:center;color:var(--cyan);font-size:12px}
|
|
790
|
+
|
|
695
791
|
/* A tool call with nothing to open — what was asked, and how it went. */
|
|
696
792
|
.callhead{display:flex;align-items:center;gap:8px;padding:9px 13px;border-bottom:1px solid var(--line-2)}
|
|
697
793
|
.callverb{color:var(--cyan);font-size:12px;text-transform:lowercase}
|
package/dist/web/ui-css.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ui-css.js","sourceRoot":"","sources":["../../src/web/ui-css.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;GAYG;AACH;;;;;;;;;;;;GAYG;AACH,MAAM,IAAI,GAAG;;;;;;;;;;;;;;;;;;CAkBZ,CAAC;AAEF,MAAM,UAAU,GAAG,CAAC,OAAe;IACjC,OAAO;;;;;;;;;;;;;;;;;gBAiBO,OAAO;;;oCAGa,IAAI;;2BAEb,IAAI
|
|
1
|
+
{"version":3,"file":"ui-css.js","sourceRoot":"","sources":["../../src/web/ui-css.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;GAYG;AACH;;;;;;;;;;;;GAYG;AACH,MAAM,IAAI,GAAG;;;;;;;;;;;;;;;;;;CAkBZ,CAAC;AAEF,MAAM,UAAU,GAAG,CAAC,OAAe;IACjC,OAAO;;;;;;;;;;;;;;;;;gBAiBO,OAAO;;;oCAGa,IAAI;;2BAEb,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA0iC9B,CAAC;AACF,CAAC"}
|
package/dist/web/ui.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ui.d.ts","sourceRoot":"","sources":["../../src/web/ui.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAOH,wBAAgB,IAAI,IAAI,MAAM,
|
|
1
|
+
{"version":3,"file":"ui.d.ts","sourceRoot":"","sources":["../../src/web/ui.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAOH,wBAAgB,IAAI,IAAI,MAAM,CAyd7B"}
|
package/dist/web/ui.js
CHANGED
|
@@ -54,6 +54,11 @@ export function page() {
|
|
|
54
54
|
<button class="pill" id="peffort" title="How hard to think">effort <b>medium</b></button>
|
|
55
55
|
<button class="pill" id="pmode" title="What KONECK may do without asking">mode <b>auto</b></button>
|
|
56
56
|
<button class="pill" id="pws" title="Switch workspace">workspace <b>—</b></button>
|
|
57
|
+
<!--
|
|
58
|
+
Carrying this session to a terminal. Both surfaces already write the same session files, so
|
|
59
|
+
continuing in the CLI needs nothing built — only somebody to say the id and the directory.
|
|
60
|
+
-->
|
|
61
|
+
<button class="pill" id="ptty" title="Continue this session in a terminal">〉_ cli</button>
|
|
57
62
|
<button class="pill" id="pprov">provider <b>—</b></button>
|
|
58
63
|
<button class="pill" id="pmodel">model <b>—</b></button>
|
|
59
64
|
<div class="stat" id="stat">—</div>
|
|
@@ -216,9 +221,28 @@ export function page() {
|
|
|
216
221
|
</div>
|
|
217
222
|
<input type="file" id="filepick" accept="image/png,image/jpeg,image/gif,image/webp"
|
|
218
223
|
multiple hidden>
|
|
219
|
-
|
|
224
|
+
<!--
|
|
225
|
+
Under the box: controls, and instructions only while they are wanted.
|
|
226
|
+
===================================================================
|
|
227
|
+
This was a permanent cheat sheet — six items of chrome under a one-line input, three of them
|
|
228
|
+
keyboard shortcuts that stayed on screen for ever whether or not anybody had ever needed
|
|
229
|
+
them. Meanwhile the thing changed most often while composing, the model, sat at the far end
|
|
230
|
+
of the window from the cursor.
|
|
231
|
+
|
|
232
|
+
So the model and the pace move here, where the hand already is, and the shortcuts appear
|
|
233
|
+
while the box is focused and empty — which is exactly when somebody is deciding what to do
|
|
234
|
+
and not yet doing it — and get out of the way once there is something in it.
|
|
235
|
+
-->
|
|
236
|
+
<div class="cunder">
|
|
237
|
+
<button class="cmodel" id="cmodel" title="Change the model or provider">
|
|
238
|
+
<span id="cmodelname">model</span>
|
|
239
|
+
</button>
|
|
240
|
+
<button class="cpace" id="cpace" title="How hard the model should think">medium</button>
|
|
241
|
+
<span class="cgap"></span>
|
|
220
242
|
<button class="tinybtn" id="retry" title="Send the last message again">retry</button>
|
|
221
243
|
<button class="tinybtn" id="rewind" title="Drop back to before your last message">rewind</button>
|
|
244
|
+
</div>
|
|
245
|
+
<div class="chint" id="chint">
|
|
222
246
|
<span><kbd>Enter</kbd> send</span>
|
|
223
247
|
<span><kbd>Shift</kbd>+<kbd>Enter</kbd> newline</span>
|
|
224
248
|
<span><kbd>Ctrl</kbd>+<kbd>K</kbd> commands</span>
|
|
@@ -258,6 +282,18 @@ export function page() {
|
|
|
258
282
|
<div class="row"><button class="go" id="toksave">Use it</button></div>
|
|
259
283
|
</form></dialog>
|
|
260
284
|
|
|
285
|
+
<dialog id="ttydlg"><div class="dlg">
|
|
286
|
+
<h3>Continue in a terminal</h3>
|
|
287
|
+
<p>This session is saved where the CLI looks for it, so the terminal picks up exactly what is
|
|
288
|
+
here — the whole conversation, the plan, the token count. Run this:</p>
|
|
289
|
+
<pre class="ttycmd" id="ttycmd"></pre>
|
|
290
|
+
<div class="mnote" id="ttynote"></div>
|
|
291
|
+
<div class="row">
|
|
292
|
+
<button type="button" id="ttyclose">Close</button>
|
|
293
|
+
<button type="button" class="go" id="ttycopy">Copy</button>
|
|
294
|
+
</div>
|
|
295
|
+
</div></dialog>
|
|
296
|
+
|
|
261
297
|
<dialog id="goaldlg"><form class="dlg" method="dialog">
|
|
262
298
|
<h3>Session goal</h3>
|
|
263
299
|
<p>Put in front of every message, so a long job keeps its objective in view even after the
|
|
@@ -267,22 +303,65 @@ export function page() {
|
|
|
267
303
|
<div class="row"><button>Cancel</button><button class="go" id="goalsave">Set</button></div>
|
|
268
304
|
</form></dialog>
|
|
269
305
|
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
306
|
+
<!--
|
|
307
|
+
Opening a project.
|
|
308
|
+
==================
|
|
309
|
+
Shaped after the picker this was asked to match: a search box, what you had open recently, then
|
|
310
|
+
the ways to reach something else — walk this computer, or hand the job to the computer's own
|
|
311
|
+
folder dialog, or make a new folder.
|
|
312
|
+
|
|
313
|
+
A menu anchored to the pill rather than a modal in the middle of the screen, because that is what
|
|
314
|
+
it is: a short list of ways to answer one question.
|
|
315
|
+
|
|
316
|
+
There is no "Cloud" row. The picker this copies has one because that product has somewhere in the
|
|
317
|
+
cloud to open from; KONECK does not, and a row that opens nothing would be furniture pretending to
|
|
318
|
+
be a feature.
|
|
319
|
+
-->
|
|
320
|
+
<dialog id="wsdlg"><div class="dlg wsdlg">
|
|
321
|
+
<input id="wsfind" placeholder="Search folders, projects…" autocomplete="off"
|
|
322
|
+
spellcheck="false">
|
|
323
|
+
|
|
324
|
+
<div class="wssec" id="wsrecentsec">
|
|
325
|
+
<div class="wshead">Recents</div>
|
|
326
|
+
<div class="wslist" id="wsrecents"></div>
|
|
327
|
+
</div>
|
|
328
|
+
|
|
329
|
+
<div class="wssec">
|
|
330
|
+
<div class="wshead">Open</div>
|
|
331
|
+
<div class="wsmenu">
|
|
332
|
+
<button type="button" class="wsitem" id="wsonthis">
|
|
333
|
+
<span class="wsico">▯</span>
|
|
334
|
+
<span class="wsn">On This Computer</span>
|
|
335
|
+
<span class="wsinto">›</span>
|
|
336
|
+
</button>
|
|
337
|
+
<button type="button" class="wsitem" id="wsnative">
|
|
338
|
+
<span class="wsico">🗁</span>
|
|
339
|
+
<span class="wsn">Use Existing…</span>
|
|
340
|
+
<span class="wsm" id="wsnativenote"></span>
|
|
341
|
+
</button>
|
|
342
|
+
<button type="button" class="wsitem" id="wsnewfolder">
|
|
343
|
+
<span class="wsico">+</span>
|
|
344
|
+
<span class="wsn">New Folder</span>
|
|
345
|
+
</button>
|
|
346
|
+
</div>
|
|
347
|
+
</div>
|
|
348
|
+
|
|
349
|
+
<!-- Shown only once "On This Computer" has been opened: the walk stays out of the way until it
|
|
350
|
+
is asked for, which is what makes the menu a menu. -->
|
|
351
|
+
<div class="wssec" id="wsbrowsesec" hidden>
|
|
352
|
+
<div class="wshead">
|
|
353
|
+
<button type="button" class="wsup" id="wsup" title="Up one level">↑</button>
|
|
354
|
+
<span class="wswhere" id="wswhere"></span>
|
|
355
|
+
</div>
|
|
356
|
+
<div class="wslist" id="wsbrowse"></div>
|
|
357
|
+
</div>
|
|
358
|
+
|
|
359
|
+
<div class="mnote" id="wsnote"></div>
|
|
360
|
+
<div class="row">
|
|
361
|
+
<button type="button" id="wscancel">Cancel</button>
|
|
362
|
+
<button type="button" class="go" id="wssave">Open</button>
|
|
363
|
+
</div>
|
|
364
|
+
</div></dialog>
|
|
286
365
|
|
|
287
366
|
<dialog id="modedlg"><form class="dlg" method="dialog">
|
|
288
367
|
<h3>What may it do without asking?</h3>
|
package/dist/web/ui.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ui.js","sourceRoot":"","sources":["../../src/web/ui.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,EAAE,SAAS,EAAE,MAAM,WAAW,CAAC;AACtC,OAAO,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAC9C,OAAO,EAAE,GAAG,EAAE,MAAM,aAAa,CAAC;AAClC,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAE9C,MAAM,UAAU,IAAI;IAClB,OAAO;;;;;;;SAOA,GAAG,CAAC,SAAS,CAAC
|
|
1
|
+
{"version":3,"file":"ui.js","sourceRoot":"","sources":["../../src/web/ui.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,EAAE,SAAS,EAAE,MAAM,WAAW,CAAC;AACtC,OAAO,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAC9C,OAAO,EAAE,GAAG,EAAE,MAAM,aAAa,CAAC;AAClC,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAE9C,MAAM,UAAU,IAAI;IAClB,OAAO;;;;;;;SAOA,GAAG,CAAC,SAAS,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;qBA6cF,IAAI,CAAC,SAAS,CAAC,UAAU,CAAC;EAC7C,YAAY,EAAE;;eAED,CAAC;AAChB,CAAC"}
|