koneck 2.92.0 → 2.94.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/model-catalog.d.ts +5 -1
- package/dist/model-catalog.d.ts.map +1 -1
- package/dist/model-catalog.js +49 -2
- package/dist/model-catalog.js.map +1 -1
- package/dist/web/api.d.ts.map +1 -1
- package/dist/web/api.js +15 -1
- package/dist/web/api.js.map +1 -1
- package/dist/web/ui-client.d.ts.map +1 -1
- package/dist/web/ui-client.js +414 -87
- 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 +42 -0
- package/dist/web/ui-css.js.map +1 -1
- package/package.json +1 -1
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,CAk2C3C"}
|
package/dist/web/ui-css.js
CHANGED
|
@@ -560,6 +560,43 @@ footer{flex:0 0 auto;border-top:1px solid var(--line);background:var(--panel);pa
|
|
|
560
560
|
.tobottom:hover{background:var(--panel-2)}
|
|
561
561
|
.tobottom[hidden]{display:none}
|
|
562
562
|
|
|
563
|
+
/*
|
|
564
|
+
* The page, and a pointer over it.
|
|
565
|
+
*
|
|
566
|
+
* The stage exists so the cursor can be positioned against the picture without being inside it —
|
|
567
|
+
* an <img> cannot hold a child, and absolutely positioning against the scrolling panel would put
|
|
568
|
+
* the pointer in the wrong place the moment anything moved.
|
|
569
|
+
*/
|
|
570
|
+
.pvstage{position:relative;flex:0 0 auto;line-height:0;max-width:100%}
|
|
571
|
+
/*
|
|
572
|
+
* A pointer you can see, where something just happened.
|
|
573
|
+
*
|
|
574
|
+
* Asked for as "see the mouse pointer like a human when operating", and it is not decoration: a
|
|
575
|
+
* click whose target you cannot see is a click you cannot check. Drawn rather than an image, so it
|
|
576
|
+
* costs nothing to load and takes the theme's own colour.
|
|
577
|
+
*/
|
|
578
|
+
.pvcursor{position:absolute;width:15px;height:22px;margin:-2px 0 0 -2px;pointer-events:none;
|
|
579
|
+
z-index:5;opacity:0;
|
|
580
|
+
/* An arrow, in the shape every desktop draws it. */
|
|
581
|
+
background:var(--ink);
|
|
582
|
+
-webkit-clip-path:polygon(0 0,0 72%,26% 55%,44% 96%,62% 88%,44% 48%,74% 44%);
|
|
583
|
+
clip-path:polygon(0 0,0 72%,26% 55%,44% 96%,62% 88%,44% 48%,74% 44%);
|
|
584
|
+
filter:drop-shadow(0 0 1px var(--bg)) drop-shadow(0 1px 2px rgba(0,0,0,.5))}
|
|
585
|
+
.pvcursor[hidden]{display:none}
|
|
586
|
+
/* Arriving somewhere: visible, and settling. */
|
|
587
|
+
.pvcursor.move{animation:pvmove .5s ease-out forwards}
|
|
588
|
+
@keyframes pvmove{0%{opacity:.55;transform:scale(1.25)}100%{opacity:.9;transform:scale(1)}}
|
|
589
|
+
/*
|
|
590
|
+
* Pressing: a ring leaves the point, the way a tap looks on a touchscreen.
|
|
591
|
+
*
|
|
592
|
+
* The ring rather than moving the arrow, because an arrow that jumps on click reads as a glitch
|
|
593
|
+
* while a ring reads as contact.
|
|
594
|
+
*/
|
|
595
|
+
.pvcursor.press{animation:pvmove .5s ease-out forwards}
|
|
596
|
+
.pvcursor.press::after{content:'';position:absolute;left:-9px;top:-9px;width:26px;height:26px;
|
|
597
|
+
border-radius:50%;border:2px solid var(--cyan);animation:pvring .55s ease-out forwards}
|
|
598
|
+
@keyframes pvring{0%{transform:scale(.2);opacity:.95}100%{transform:scale(1.6);opacity:0}}
|
|
599
|
+
|
|
563
600
|
/* A heading inside a settings section: quieter than a section, louder than a row. */
|
|
564
601
|
.sgroup{margin:18px 0 2px;font-size:calc(var(--ui) * 0.7857);letter-spacing:.09em;text-transform:uppercase;
|
|
565
602
|
color:var(--muted);font-weight:600}
|
|
@@ -803,6 +840,11 @@ dialog:has(.dlg.wide){max-width:560px}
|
|
|
803
840
|
#keysaid{display:block;margin:-6px 0 12px;color:var(--green)}
|
|
804
841
|
#keysaid:empty{display:none}
|
|
805
842
|
.mnote em{color:var(--muted);font-style:normal;font-weight:500}
|
|
843
|
+
/* A word in a sentence rather than a control: the note is one line and a button would break it. */
|
|
844
|
+
.linkish{background:none;border:0;padding:0;font:inherit;color:var(--cyan);cursor:pointer;
|
|
845
|
+
text-decoration:underline;text-underline-offset:2px}
|
|
846
|
+
.linkish:hover{color:var(--fg)}
|
|
847
|
+
.linkish:focus-visible{outline:2px solid var(--cyan);outline-offset:2px;border-radius:3px}
|
|
806
848
|
.perr{font-size:calc(var(--ui) * 0.8571);color:var(--red);margin:0 0 10px;line-height:1.5}
|
|
807
849
|
.mlist{max-height:270px;overflow-y:auto;border:1px solid var(--line);border-radius:8px;
|
|
808
850
|
background:var(--panel-2);margin-bottom:13px}
|
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;;;;;;;;;;;;;;;;;;;;;;;;;gBAyBO,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;;;;;;;;;;;;;;;;;;;;;;;;;gBAyBO,OAAO;;;oCAGa,IAAI;;2BAEb,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAk0C9B,CAAC;AACF,CAAC"}
|