@zag-js/combobox 1.33.0 → 1.33.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/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.mjs +1 -1
- package/package.json +10 -10
package/dist/index.d.mts
CHANGED
|
@@ -3,9 +3,9 @@ export { FocusOutsideEvent, InteractOutsideEvent, PointerDownOutsideEvent } from
|
|
|
3
3
|
import * as _zag_js_anatomy from '@zag-js/anatomy';
|
|
4
4
|
import { CollectionOptions, ListCollection, CollectionItem } from '@zag-js/collection';
|
|
5
5
|
export { CollectionItem, CollectionOptions } from '@zag-js/collection';
|
|
6
|
-
import { RequiredBy, DirectionProperty, CommonProperties,
|
|
6
|
+
import { PropTypes, RequiredBy, DirectionProperty, CommonProperties, NormalizeProps } from '@zag-js/types';
|
|
7
7
|
import * as _zag_js_core from '@zag-js/core';
|
|
8
|
-
import {
|
|
8
|
+
import { Machine, EventObject, Service } from '@zag-js/core';
|
|
9
9
|
import { PositioningOptions, Placement } from '@zag-js/popper';
|
|
10
10
|
export { Placement, PositioningOptions } from '@zag-js/popper';
|
|
11
11
|
|
package/dist/index.d.ts
CHANGED
|
@@ -3,9 +3,9 @@ export { FocusOutsideEvent, InteractOutsideEvent, PointerDownOutsideEvent } from
|
|
|
3
3
|
import * as _zag_js_anatomy from '@zag-js/anatomy';
|
|
4
4
|
import { CollectionOptions, ListCollection, CollectionItem } from '@zag-js/collection';
|
|
5
5
|
export { CollectionItem, CollectionOptions } from '@zag-js/collection';
|
|
6
|
-
import { RequiredBy, DirectionProperty, CommonProperties,
|
|
6
|
+
import { PropTypes, RequiredBy, DirectionProperty, CommonProperties, NormalizeProps } from '@zag-js/types';
|
|
7
7
|
import * as _zag_js_core from '@zag-js/core';
|
|
8
|
-
import {
|
|
8
|
+
import { Machine, EventObject, Service } from '@zag-js/core';
|
|
9
9
|
import { PositioningOptions, Placement } from '@zag-js/popper';
|
|
10
10
|
export { Placement, PositioningOptions } from '@zag-js/popper';
|
|
11
11
|
|
package/dist/index.mjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { createAnatomy } from '@zag-js/anatomy';
|
|
2
2
|
import { ListCollection } from '@zag-js/collection';
|
|
3
|
-
import { raf, setCaretToEnd, nextTick, scrollIntoView, observeAttributes, clickIfLink, query, dataAttr,
|
|
3
|
+
import { raf, setCaretToEnd, nextTick, scrollIntoView, observeAttributes, clickIfLink, query, dataAttr, isDownloadingEvent, isOpeningInNewTab, isContextMenuEvent, ariaAttr, isLeftClick, getEventKey, isComposingEvent, isAnchorElement } from '@zag-js/dom-query';
|
|
4
4
|
import { getPlacement, getPlacementStyles } from '@zag-js/popper';
|
|
5
5
|
import { match, remove, addOrRemove, isBoolean, isEqual, createSplitProps, ensure } from '@zag-js/utils';
|
|
6
6
|
import { setup } from '@zag-js/core';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zag-js/combobox",
|
|
3
|
-
"version": "1.33.
|
|
3
|
+
"version": "1.33.1",
|
|
4
4
|
"description": "Core logic for the combobox widget implemented as a state machine",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"js",
|
|
@@ -26,15 +26,15 @@
|
|
|
26
26
|
"url": "https://github.com/chakra-ui/zag/issues"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@zag-js/anatomy": "1.33.
|
|
30
|
-
"@zag-js/
|
|
31
|
-
"@zag-js/
|
|
32
|
-
"@zag-js/
|
|
33
|
-
"@zag-js/
|
|
34
|
-
"@zag-js/
|
|
35
|
-
"@zag-js/
|
|
36
|
-
"@zag-js/popper": "1.33.
|
|
37
|
-
"@zag-js/types": "1.33.
|
|
29
|
+
"@zag-js/anatomy": "1.33.1",
|
|
30
|
+
"@zag-js/core": "1.33.1",
|
|
31
|
+
"@zag-js/dismissable": "1.33.1",
|
|
32
|
+
"@zag-js/collection": "1.33.1",
|
|
33
|
+
"@zag-js/aria-hidden": "1.33.1",
|
|
34
|
+
"@zag-js/dom-query": "1.33.1",
|
|
35
|
+
"@zag-js/utils": "1.33.1",
|
|
36
|
+
"@zag-js/popper": "1.33.1",
|
|
37
|
+
"@zag-js/types": "1.33.1"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"clean-package": "2.2.0"
|