@zag-js/combobox 0.78.2 → 0.79.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/index.d.mts +0 -10
- package/dist/index.d.ts +0 -10
- package/package.json +11 -11
package/dist/index.d.mts
CHANGED
|
@@ -237,16 +237,6 @@ interface PrivateContext<T extends CollectionItem = CollectionItem> {
|
|
|
237
237
|
* The highlighted item
|
|
238
238
|
*/
|
|
239
239
|
highlightedItem: T | null;
|
|
240
|
-
/**
|
|
241
|
-
* @interal
|
|
242
|
-
* The selected items
|
|
243
|
-
*/
|
|
244
|
-
selectedItems: T[];
|
|
245
|
-
/**
|
|
246
|
-
* @interal
|
|
247
|
-
* The display value of the combobox (based on the selected items)
|
|
248
|
-
*/
|
|
249
|
-
valueAsString: string;
|
|
250
240
|
}
|
|
251
241
|
interface MachineContext extends PublicContext, PrivateContext, ComputedContext {
|
|
252
242
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -237,16 +237,6 @@ interface PrivateContext<T extends CollectionItem = CollectionItem> {
|
|
|
237
237
|
* The highlighted item
|
|
238
238
|
*/
|
|
239
239
|
highlightedItem: T | null;
|
|
240
|
-
/**
|
|
241
|
-
* @interal
|
|
242
|
-
* The selected items
|
|
243
|
-
*/
|
|
244
|
-
selectedItems: T[];
|
|
245
|
-
/**
|
|
246
|
-
* @interal
|
|
247
|
-
* The display value of the combobox (based on the selected items)
|
|
248
|
-
*/
|
|
249
|
-
valueAsString: string;
|
|
250
240
|
}
|
|
251
241
|
interface MachineContext extends PublicContext, PrivateContext, ComputedContext {
|
|
252
242
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zag-js/combobox",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.79.0",
|
|
4
4
|
"description": "Core logic for the combobox widget implemented as a state machine",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"js",
|
|
@@ -26,16 +26,16 @@
|
|
|
26
26
|
"url": "https://github.com/chakra-ui/zag/issues"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@zag-js/anatomy": "0.
|
|
30
|
-
"@zag-js/aria-hidden": "0.
|
|
31
|
-
"@zag-js/collection": "0.
|
|
32
|
-
"@zag-js/core": "0.
|
|
33
|
-
"@zag-js/dismissable": "0.
|
|
34
|
-
"@zag-js/dom-query": "0.
|
|
35
|
-
"@zag-js/dom-event": "0.
|
|
36
|
-
"@zag-js/utils": "0.
|
|
37
|
-
"@zag-js/popper": "0.
|
|
38
|
-
"@zag-js/types": "0.
|
|
29
|
+
"@zag-js/anatomy": "0.79.0",
|
|
30
|
+
"@zag-js/aria-hidden": "0.79.0",
|
|
31
|
+
"@zag-js/collection": "0.79.0",
|
|
32
|
+
"@zag-js/core": "0.79.0",
|
|
33
|
+
"@zag-js/dismissable": "0.79.0",
|
|
34
|
+
"@zag-js/dom-query": "0.79.0",
|
|
35
|
+
"@zag-js/dom-event": "0.79.0",
|
|
36
|
+
"@zag-js/utils": "0.79.0",
|
|
37
|
+
"@zag-js/popper": "0.79.0",
|
|
38
|
+
"@zag-js/types": "0.79.0"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"clean-package": "2.2.0"
|