koneck 2.56.0 → 2.58.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/web/ui.js CHANGED
@@ -127,21 +127,35 @@ export function page() {
127
127
  </div>
128
128
 
129
129
  <!-- A terminal. Commands you run yourself, in the foreground or left running behind. -->
130
+ <!--
131
+ A terminal, not a form with an output box.
132
+ ==========================================
133
+ What was here was a job list beside a pane of text: you typed into a field at the top, picked a
134
+ row, and read the result. Everything about it said "web page". A terminal is a scrollback where
135
+ the command you typed stays visible above what it printed, the cursor waits at the bottom, and
136
+ the next thing you type continues the same column of text.
137
+
138
+ Up to three panes, because two is the common case for "watch the server, run the tests" and
139
+ four on a laptop is four things too narrow to read. Each pane is its own shell with its own
140
+ scrollback and its own history; the dividers between them are draggable.
141
+ -->
130
142
  <div class="view" id="terminalview" hidden>
131
- <div class="termwrap">
132
- <div class="termbar">
133
- <span class="tprompt">$</span>
134
- <input id="tcmd" placeholder="npm test, git status, npm run dev&hellip;"
135
- autocomplete="off" spellcheck="false">
136
- <label class="tbg" title="Leave it running for a dev server, or anything that does not exit">
137
- <input type="checkbox" id="tbackground"> background
138
- </label>
139
- <button class="trun" id="trun">Run</button>
140
- </div>
141
- <div class="termsplit">
142
- <div class="tjobs" id="tjobs"></div>
143
- <div class="tout" id="tout"></div>
144
- </div>
143
+ <div class="termtop">
144
+ <span class="termttl">Terminal</span>
145
+ <button type="button" class="termbtn" id="tsplit" title="Add a pane (up to three)">split</button>
146
+ <button type="button" class="termbtn" id="tunsplit" title="Close the last pane">unsplit</button>
147
+ <span class="termgap"></span>
148
+ <label class="termchk" title="A picture behind the text, at a weight that keeps it readable">
149
+ <input type="checkbox" id="tbgimg"> backdrop
150
+ </label>
151
+ <input type="range" id="tbgop" min="4" max="40" value="14" title="How strongly it shows"
152
+ aria-label="Backdrop strength">
153
+ <span class="termgap"></span>
154
+ <button type="button" class="termbtn" id="tfontdown" title="Smaller text">A&minus;</button>
155
+ <button type="button" class="termbtn" id="tfontup" title="Larger text">A+</button>
156
+ </div>
157
+ <div class="termpanes" id="termpanes"></div>
158
+ </div>
145
159
  </div>
146
160
  </div>
147
161
 
@@ -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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;qBAuVF,IAAI,CAAC,SAAS,CAAC,UAAU,CAAC;EAC7C,YAAY,EAAE;;eAED,CAAC;AAChB,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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;qBAqWF,IAAI,CAAC,SAAS,CAAC,UAAU,CAAC;EAC7C,YAAY,EAAE;;eAED,CAAC;AAChB,CAAC"}
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "koneck",
3
- "version": "2.56.0",
3
+ "version": "2.58.0",
4
4
  "description": "Kinetically Orchestrated Neural Execution Engine for Code",
5
5
  "type": "module",
6
6
  "bin": {
@@ -30,6 +30,7 @@
30
30
  ],
31
31
  "files": [
32
32
  "dist/",
33
+ "img/",
33
34
  "README.md",
34
35
  "LICENSE"
35
36
  ],