opentui-responsive 0.3.0 → 0.3.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/README.md +1 -1
- package/package.json +5 -2
package/README.md
CHANGED
|
@@ -121,7 +121,7 @@ For implementing another framework adapter, not application setup:
|
|
|
121
121
|
|
|
122
122
|
## Breakpoint Behavior
|
|
123
123
|
|
|
124
|
-
Width and height use independent sets of inclusive minimum thresholds measured in terminal cells. Each axis must contain a zero threshold so every terminal size has a match. Names must be non-empty, and thresholds must be unique finite non-negative integers within their axis.
|
|
124
|
+
Width and height use independent sets of inclusive minimum thresholds measured in terminal cells. A threshold is selected when the dimension is greater than or equal to it: for example, a width threshold of `60` matches at `width >= 60`. Each axis must contain a zero threshold so every terminal size has a match. Names must be non-empty, and thresholds must be unique finite non-negative integers within their axis.
|
|
125
125
|
|
|
126
126
|
Declaration order does not affect matching. Each axis selects its highest satisfied threshold.
|
|
127
127
|
|
package/package.json
CHANGED
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opentui-responsive",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"description": "Typed responsive breakpoints for OpenTUI.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"breakpoints",
|
|
7
|
+
"cli",
|
|
7
8
|
"opentui",
|
|
8
9
|
"reactjs",
|
|
9
10
|
"responsive",
|
|
10
|
-
"solidjs"
|
|
11
|
+
"solidjs",
|
|
12
|
+
"terminal",
|
|
13
|
+
"tui"
|
|
11
14
|
],
|
|
12
15
|
"license": "MIT",
|
|
13
16
|
"repository": {
|