@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.
- package/dist/components/button-variants.d.ts +2 -2
- package/dist/components/button-variants.js +1 -0
- package/dist/components/composer.d.ts +108 -0
- package/dist/components/composer.js +132 -0
- package/dist/components/landing.d.ts +61 -0
- package/dist/components/landing.js +97 -0
- package/dist/index.d.ts +5 -4
- package/dist/index.js +4 -3
- package/dist/inspector/tabs.d.ts +1 -1
- package/dist/kanban/band-peek.d.ts +59 -0
- package/dist/kanban/band-peek.js +103 -0
- package/dist/kanban/column-band-header.d.ts +10 -2
- package/dist/kanban/column-band-header.js +1 -1
- package/dist/kanban/column-header.d.ts +8 -1
- package/dist/kanban/column-header.js +9 -2
- package/dist/kanban/drag-interactions.d.ts +9 -1
- package/dist/kanban/drag-interactions.js +10 -1
- package/dist/kanban/index.d.ts +5 -4
- package/dist/kanban/index.js +4 -3
- package/dist/kanban/sortable-interactions.d.ts +12 -0
- package/dist/kanban/subgroup-board.d.ts +38 -7
- package/dist/kanban/subgroup-board.js +83 -39
- package/dist/lib/control-size.d.ts +1 -1
- package/dist/styles/theme.css +8 -29
- package/package.json +9 -1
package/dist/styles/theme.css
CHANGED
|
@@ -1200,36 +1200,15 @@
|
|
|
1200
1200
|
}
|
|
1201
1201
|
}
|
|
1202
1202
|
|
|
1203
|
-
/*
|
|
1204
|
-
*
|
|
1205
|
-
*
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
scrollbar-
|
|
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
|
-
|
|
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.
|
|
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"
|