monowind 0.2.8 → 0.2.10
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/README.md +7 -0
- package/dist/cdn.js +102 -73
- package/dist/cdn.js.map +1 -1
- package/dist/element.d.ts.map +1 -1
- package/dist/glyph-box.d.ts +40 -10
- package/dist/glyph-box.d.ts.map +1 -1
- package/dist/glyphs.d.ts +7 -0
- package/dist/glyphs.d.ts.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1474 -1156
- package/dist/index.js.map +1 -1
- package/dist/layout.d.ts.map +1 -1
- package/dist/metrics.d.ts.map +1 -1
- package/dist/paint.d.ts +3 -2
- package/dist/paint.d.ts.map +1 -1
- package/dist/plain-text.d.ts +11 -0
- package/dist/plain-text.d.ts.map +1 -1
- package/dist/pointer.d.ts +27 -8
- package/dist/pointer.d.ts.map +1 -1
- package/dist/selection.d.ts +28 -10
- package/dist/selection.d.ts.map +1 -1
- package/dist/style.d.ts +7 -0
- package/dist/style.d.ts.map +1 -1
- package/dist/tree.d.ts +16 -9
- package/dist/tree.d.ts.map +1 -1
- package/dist/types.d.ts +18 -6
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/styles.css +47 -28
package/README.md
CHANGED
|
@@ -111,6 +111,11 @@ registerBorderGlyphs("stars", { solid: { tl: "✧", tr: "✧", bl: "✧", br: "
|
|
|
111
111
|
}
|
|
112
112
|
```
|
|
113
113
|
|
|
114
|
+
Borders, blocks, and scrollbars tile in any font: where a font draws
|
|
115
|
+
its box-drawing or block glyphs shorter than the row (Menlo and SF
|
|
116
|
+
Mono do, and any font under a taller `leading-*`), the grid fits them
|
|
117
|
+
to it, so rows never show a seam.
|
|
118
|
+
|
|
114
119
|
## Companion packages
|
|
115
120
|
|
|
116
121
|
The core is self-contained; these are optional:
|
|
@@ -121,6 +126,8 @@ The core is self-contained; these are optional:
|
|
|
121
126
|
border characters
|
|
122
127
|
- [`@monowind/ascii`](https://www.npmjs.com/package/@monowind/ascii) —
|
|
123
128
|
`<mono-ascii>` FIGlet banner text with gradient/metal effects
|
|
129
|
+
- [`@monowind/qr-code`](https://www.npmjs.com/package/@monowind/qr-code) —
|
|
130
|
+
`<mono-qr>` scannable QR codes, packed into the grid's cells
|
|
124
131
|
- [`@monowind/vite`](https://www.npmjs.com/package/@monowind/vite) —
|
|
125
132
|
zero-config Vite plugin, Tailwind included
|
|
126
133
|
|