bits-ui 2.11.7 → 2.11.8
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.
|
@@ -129,8 +129,11 @@ export class CommandRootState {
|
|
|
129
129
|
*/
|
|
130
130
|
#sort() {
|
|
131
131
|
if (!this._commandState.search || this.opts.shouldFilter.current === false) {
|
|
132
|
-
//
|
|
133
|
-
|
|
132
|
+
// if no search and no initial value set or when clearing search,
|
|
133
|
+
// we select the first item.
|
|
134
|
+
if (!this._commandState.value || !this.#isInitialMount) {
|
|
135
|
+
this.#selectFirstItem();
|
|
136
|
+
}
|
|
134
137
|
return;
|
|
135
138
|
}
|
|
136
139
|
const scores = this._commandState.filtered.items;
|
|
@@ -32,6 +32,7 @@ declare abstract class SelectBaseRootState {
|
|
|
32
32
|
touchedInput: boolean;
|
|
33
33
|
inputNode: HTMLElement | null;
|
|
34
34
|
contentNode: HTMLElement | null;
|
|
35
|
+
viewportNode: HTMLElement | null;
|
|
35
36
|
triggerNode: HTMLElement | null;
|
|
36
37
|
valueId: string;
|
|
37
38
|
highlightedNode: HTMLElement | null;
|
|
@@ -44,7 +45,7 @@ declare abstract class SelectBaseRootState {
|
|
|
44
45
|
constructor(opts: SelectBaseRootStateOpts);
|
|
45
46
|
setHighlightedNode(node: HTMLElement | null, initial?: boolean): void;
|
|
46
47
|
getCandidateNodes(): HTMLElement[];
|
|
47
|
-
setHighlightedToFirstCandidate(): void;
|
|
48
|
+
setHighlightedToFirstCandidate(initial?: boolean): void;
|
|
48
49
|
getNodeByValue(value: string): HTMLElement | null;
|
|
49
50
|
setOpen(open: boolean): void;
|
|
50
51
|
toggleOpen(): void;
|
|
@@ -195,7 +196,6 @@ export declare class SelectContentState {
|
|
|
195
196
|
readonly opts: SelectContentStateOpts;
|
|
196
197
|
readonly root: SelectRoot;
|
|
197
198
|
readonly attachment: RefAttachment;
|
|
198
|
-
viewportNode: HTMLElement | null;
|
|
199
199
|
isPositioned: boolean;
|
|
200
200
|
domContext: DOMContext;
|
|
201
201
|
constructor(opts: SelectContentStateOpts, root: SelectRoot);
|
|
@@ -45,6 +45,7 @@ class SelectBaseRootState {
|
|
|
45
45
|
touchedInput = $state(false);
|
|
46
46
|
inputNode = $state(null);
|
|
47
47
|
contentNode = $state(null);
|
|
48
|
+
viewportNode = $state(null);
|
|
48
49
|
triggerNode = $state(null);
|
|
49
50
|
valueId = $state("");
|
|
50
51
|
highlightedNode = $state(null);
|
|
@@ -94,12 +95,26 @@ class SelectBaseRootState {
|
|
|
94
95
|
return [];
|
|
95
96
|
return Array.from(node.querySelectorAll(`[${this.getBitsAttr("item")}]:not([data-disabled])`));
|
|
96
97
|
}
|
|
97
|
-
setHighlightedToFirstCandidate() {
|
|
98
|
+
setHighlightedToFirstCandidate(initial = false) {
|
|
98
99
|
this.setHighlightedNode(null);
|
|
99
|
-
|
|
100
|
-
if (!
|
|
100
|
+
let nodes = this.getCandidateNodes();
|
|
101
|
+
if (!nodes.length)
|
|
101
102
|
return;
|
|
102
|
-
|
|
103
|
+
// don't consider nodes that aren't visible within the viewport
|
|
104
|
+
if (this.viewportNode) {
|
|
105
|
+
const viewportRect = this.viewportNode.getBoundingClientRect();
|
|
106
|
+
nodes = nodes.filter((node) => {
|
|
107
|
+
if (!this.viewportNode)
|
|
108
|
+
return false;
|
|
109
|
+
const nodeRect = node.getBoundingClientRect();
|
|
110
|
+
const isNodeFullyVisible = nodeRect.right < viewportRect.right &&
|
|
111
|
+
nodeRect.left > viewportRect.left &&
|
|
112
|
+
nodeRect.bottom < viewportRect.bottom &&
|
|
113
|
+
nodeRect.top > viewportRect.top;
|
|
114
|
+
return isNodeFullyVisible;
|
|
115
|
+
});
|
|
116
|
+
}
|
|
117
|
+
this.setHighlightedNode(nodes[0], initial);
|
|
103
118
|
}
|
|
104
119
|
getNodeByValue(value) {
|
|
105
120
|
const candidateNodes = this.getCandidateNodes();
|
|
@@ -185,10 +200,7 @@ export class SelectSingleRootState extends SelectBaseRootState {
|
|
|
185
200
|
}
|
|
186
201
|
}
|
|
187
202
|
// if no value is set, we want to highlight the first item
|
|
188
|
-
|
|
189
|
-
if (!firstCandidate)
|
|
190
|
-
return;
|
|
191
|
-
this.setHighlightedNode(firstCandidate, true);
|
|
203
|
+
this.setHighlightedToFirstCandidate(true);
|
|
192
204
|
});
|
|
193
205
|
}
|
|
194
206
|
}
|
|
@@ -237,10 +249,7 @@ class SelectMultipleRootState extends SelectBaseRootState {
|
|
|
237
249
|
}
|
|
238
250
|
}
|
|
239
251
|
// if no value is set, we want to highlight the first item
|
|
240
|
-
|
|
241
|
-
if (!firstCandidate)
|
|
242
|
-
return;
|
|
243
|
-
this.setHighlightedNode(firstCandidate, true);
|
|
252
|
+
this.setHighlightedToFirstCandidate(true);
|
|
244
253
|
});
|
|
245
254
|
}
|
|
246
255
|
}
|
|
@@ -691,7 +700,6 @@ export class SelectContentState {
|
|
|
691
700
|
opts;
|
|
692
701
|
root;
|
|
693
702
|
attachment;
|
|
694
|
-
viewportNode = $state(null);
|
|
695
703
|
isPositioned = $state(false);
|
|
696
704
|
domContext;
|
|
697
705
|
constructor(opts, root) {
|
|
@@ -976,7 +984,9 @@ export class SelectViewportState {
|
|
|
976
984
|
this.opts = opts;
|
|
977
985
|
this.content = content;
|
|
978
986
|
this.root = content.root;
|
|
979
|
-
this.attachment = attachRef(opts.ref, (v) =>
|
|
987
|
+
this.attachment = attachRef(opts.ref, (v) => {
|
|
988
|
+
this.root.viewportNode = v;
|
|
989
|
+
});
|
|
980
990
|
}
|
|
981
991
|
props = $derived.by(() => ({
|
|
982
992
|
id: this.opts.id.current,
|
|
@@ -1079,11 +1089,11 @@ export class SelectScrollDownButtonState {
|
|
|
1079
1089
|
this.content = scrollButtonState.content;
|
|
1080
1090
|
this.root = scrollButtonState.root;
|
|
1081
1091
|
this.scrollButtonState.onAutoScroll = this.handleAutoScroll;
|
|
1082
|
-
watch([() => this.
|
|
1083
|
-
if (!this.
|
|
1092
|
+
watch([() => this.root.viewportNode, () => this.content.isPositioned], () => {
|
|
1093
|
+
if (!this.root.viewportNode || !this.content.isPositioned)
|
|
1084
1094
|
return;
|
|
1085
1095
|
this.handleScroll(true);
|
|
1086
|
-
return on(this.
|
|
1096
|
+
return on(this.root.viewportNode, "scroll", () => this.handleScroll());
|
|
1087
1097
|
});
|
|
1088
1098
|
/**
|
|
1089
1099
|
* If the input value changes, this means that the filtered items may have changed,
|
|
@@ -1091,10 +1101,10 @@ export class SelectScrollDownButtonState {
|
|
|
1091
1101
|
*/
|
|
1092
1102
|
watch([
|
|
1093
1103
|
() => this.root.opts.inputValue.current,
|
|
1094
|
-
() => this.
|
|
1104
|
+
() => this.root.viewportNode,
|
|
1095
1105
|
() => this.content.isPositioned,
|
|
1096
1106
|
], () => {
|
|
1097
|
-
if (!this.
|
|
1107
|
+
if (!this.root.viewportNode || !this.content.isPositioned)
|
|
1098
1108
|
return;
|
|
1099
1109
|
this.handleScroll(true);
|
|
1100
1110
|
});
|
|
@@ -1118,15 +1128,14 @@ export class SelectScrollDownButtonState {
|
|
|
1118
1128
|
if (!manual) {
|
|
1119
1129
|
this.scrollButtonState.handleUserScroll();
|
|
1120
1130
|
}
|
|
1121
|
-
if (!this.
|
|
1131
|
+
if (!this.root.viewportNode)
|
|
1122
1132
|
return;
|
|
1123
|
-
const maxScroll = this.
|
|
1124
|
-
const paddingTop = Number.parseInt(getComputedStyle(this.
|
|
1125
|
-
this.canScrollDown =
|
|
1126
|
-
Math.ceil(this.content.viewportNode.scrollTop) < maxScroll - paddingTop;
|
|
1133
|
+
const maxScroll = this.root.viewportNode.scrollHeight - this.root.viewportNode.clientHeight;
|
|
1134
|
+
const paddingTop = Number.parseInt(getComputedStyle(this.root.viewportNode).paddingTop, 10);
|
|
1135
|
+
this.canScrollDown = Math.ceil(this.root.viewportNode.scrollTop) < maxScroll - paddingTop;
|
|
1127
1136
|
};
|
|
1128
1137
|
handleAutoScroll = () => {
|
|
1129
|
-
const viewport = this.
|
|
1138
|
+
const viewport = this.root.viewportNode;
|
|
1130
1139
|
const selectedItem = this.root.highlightedNode;
|
|
1131
1140
|
if (!viewport || !selectedItem)
|
|
1132
1141
|
return;
|
|
@@ -1150,11 +1159,11 @@ export class SelectScrollUpButtonState {
|
|
|
1150
1159
|
this.content = scrollButtonState.content;
|
|
1151
1160
|
this.root = scrollButtonState.root;
|
|
1152
1161
|
this.scrollButtonState.onAutoScroll = this.handleAutoScroll;
|
|
1153
|
-
watch([() => this.
|
|
1154
|
-
if (!this.
|
|
1162
|
+
watch([() => this.root.viewportNode, () => this.content.isPositioned], () => {
|
|
1163
|
+
if (!this.root.viewportNode || !this.content.isPositioned)
|
|
1155
1164
|
return;
|
|
1156
1165
|
this.handleScroll(true);
|
|
1157
|
-
return on(this.
|
|
1166
|
+
return on(this.root.viewportNode, "scroll", () => this.handleScroll());
|
|
1158
1167
|
});
|
|
1159
1168
|
}
|
|
1160
1169
|
/**
|
|
@@ -1165,16 +1174,16 @@ export class SelectScrollUpButtonState {
|
|
|
1165
1174
|
if (!manual) {
|
|
1166
1175
|
this.scrollButtonState.handleUserScroll();
|
|
1167
1176
|
}
|
|
1168
|
-
if (!this.
|
|
1177
|
+
if (!this.root.viewportNode)
|
|
1169
1178
|
return;
|
|
1170
|
-
const paddingTop = Number.parseInt(getComputedStyle(this.
|
|
1171
|
-
this.canScrollUp = this.
|
|
1179
|
+
const paddingTop = Number.parseInt(getComputedStyle(this.root.viewportNode).paddingTop, 10);
|
|
1180
|
+
this.canScrollUp = this.root.viewportNode.scrollTop - paddingTop > 0.1;
|
|
1172
1181
|
};
|
|
1173
1182
|
handleAutoScroll = () => {
|
|
1174
|
-
if (!this.
|
|
1183
|
+
if (!this.root.viewportNode || !this.root.highlightedNode)
|
|
1175
1184
|
return;
|
|
1176
|
-
this.
|
|
1177
|
-
this.
|
|
1185
|
+
this.root.viewportNode.scrollTop =
|
|
1186
|
+
this.root.viewportNode.scrollTop - this.root.highlightedNode.offsetHeight;
|
|
1178
1187
|
};
|
|
1179
1188
|
props = $derived.by(() => ({
|
|
1180
1189
|
...this.scrollButtonState.props,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bits-ui",
|
|
3
|
-
"version": "2.11.
|
|
3
|
+
"version": "2.11.8",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"repository": "github:huntabyte/bits-ui",
|
|
6
6
|
"funding": "https://github.com/sponsors/huntabyte",
|
|
@@ -41,8 +41,8 @@
|
|
|
41
41
|
"@floating-ui/core": "^1.7.1",
|
|
42
42
|
"@floating-ui/dom": "^1.7.1",
|
|
43
43
|
"esm-env": "^1.1.2",
|
|
44
|
-
"runed": "^0.
|
|
45
|
-
"svelte-toolbelt": "^0.10.
|
|
44
|
+
"runed": "^0.35.1",
|
|
45
|
+
"svelte-toolbelt": "^0.10.6",
|
|
46
46
|
"tabbable": "^6.2.0"
|
|
47
47
|
},
|
|
48
48
|
"peerDependencies": {
|