@stll/ui 0.17.1 → 0.19.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.
@@ -1200,36 +1200,15 @@
1200
1200
  }
1201
1201
  }
1202
1202
 
1203
- /* Horizontal prompt rows stay visually quiet until the pointer confirms that
1204
- * the clipped content is relevant. The track keeps a stable thin gutter so
1205
- * revealing the thumb does not shift the chips. */
1206
- @utility scrollbar-hover {
1207
- scrollbar-width: thin;
1208
- scrollbar-color: transparent transparent;
1203
+ /* A scroll container with no scrollbar and no reserved track. For strips
1204
+ * whose overflow is signalled another way (an edge fade, a visible partial
1205
+ * item): a hover-revealed scrollbar would still reserve its track only when
1206
+ * the content overflows, so the strip's height would depend on its content. */
1207
+ @utility scrollbar-none {
1208
+ scrollbar-width: none;
1209
+ -ms-overflow-style: none;
1209
1210
 
1210
1211
  &::-webkit-scrollbar {
1211
- width: 0.5rem;
1212
- height: 0.5rem;
1213
- }
1214
-
1215
- &::-webkit-scrollbar-track {
1216
- background: transparent;
1217
- }
1218
-
1219
- &::-webkit-scrollbar-thumb {
1220
- border-radius: 9999px;
1221
- background-color: transparent;
1222
- }
1223
-
1224
- &:hover {
1225
- scrollbar-color: var(--color-border) transparent;
1226
- }
1227
-
1228
- &:hover::-webkit-scrollbar-thumb {
1229
- background-color: var(--color-border);
1230
- }
1231
-
1232
- &:hover::-webkit-scrollbar-thumb:hover {
1233
- background-color: var(--color-muted-foreground);
1212
+ display: none;
1234
1213
  }
1235
1214
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stll/ui",
3
- "version": "0.17.1",
3
+ "version": "0.19.0",
4
4
  "description": "Stella's design system: bidi-aware React primitives built on Base UI, the dockable inspector pane, and the Tailwind v4 theme they are styled with.",
5
5
  "keywords": [
6
6
  "base-ui",
@@ -89,6 +89,10 @@
89
89
  "types": "./dist/components/command.d.ts",
90
90
  "import": "./dist/components/command.js"
91
91
  },
92
+ "./composer": {
93
+ "types": "./dist/components/composer.d.ts",
94
+ "import": "./dist/components/composer.js"
95
+ },
92
96
  "./control-size": {
93
97
  "types": "./dist/lib/control-size.d.ts",
94
98
  "import": "./dist/lib/control-size.js"
@@ -157,6 +161,10 @@
157
161
  "types": "./dist/components/label.d.ts",
158
162
  "import": "./dist/components/label.js"
159
163
  },
164
+ "./landing": {
165
+ "types": "./dist/components/landing.d.ts",
166
+ "import": "./dist/components/landing.js"
167
+ },
160
168
  "./menu": {
161
169
  "types": "./dist/components/menu.d.ts",
162
170
  "import": "./dist/components/menu.js"