@leafygreen-ui/combobox 12.2.1 → 12.3.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/CHANGELOG.md +21 -0
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/types/Combobox/Combobox.types.d.ts +2 -2
- package/dist/types/Combobox/Combobox.types.d.ts.map +1 -1
- package/dist/types/Combobox/index.d.ts +1 -1
- package/dist/types/Combobox/index.d.ts.map +1 -1
- package/dist/types/index.d.ts +1 -1
- package/dist/types/index.d.ts.map +1 -1
- package/dist/umd/index.js +1 -1
- package/dist/umd/index.js.map +1 -1
- package/package.json +11 -11
- package/src/Combobox/Combobox.types.ts +3 -1
- package/src/Combobox/index.ts +1 -0
- package/src/index.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@leafygreen-ui/combobox",
|
|
3
|
-
"version": "12.
|
|
3
|
+
"version": "12.3.0",
|
|
4
4
|
"description": "leafyGreen UI Kit Combobox",
|
|
5
5
|
"main": "./dist/umd/index.js",
|
|
6
6
|
"module": "./dist/esm/index.js",
|
|
@@ -13,25 +13,25 @@
|
|
|
13
13
|
"chalk": "^4.1.2",
|
|
14
14
|
"lodash": "^4.17.21",
|
|
15
15
|
"polished": "^4.2.2",
|
|
16
|
+
"@leafygreen-ui/checkbox": "^18.1.4",
|
|
17
|
+
"@leafygreen-ui/chip": "^4.0.10",
|
|
16
18
|
"@leafygreen-ui/emotion": "^5.1.0",
|
|
17
|
-
"@leafygreen-ui/
|
|
18
|
-
"@leafygreen-ui/form-field": "^4.0.7",
|
|
19
|
+
"@leafygreen-ui/form-field": "^4.0.8",
|
|
19
20
|
"@leafygreen-ui/hooks": "^9.3.0",
|
|
20
|
-
"@leafygreen-ui/icon
|
|
21
|
-
"@leafygreen-ui/
|
|
22
|
-
"@leafygreen-ui/icon": "^14.7.0",
|
|
23
|
-
"@leafygreen-ui/input-option": "^4.1.3",
|
|
21
|
+
"@leafygreen-ui/icon": "^14.7.1",
|
|
22
|
+
"@leafygreen-ui/icon-button": "^17.1.4",
|
|
24
23
|
"@leafygreen-ui/palette": "^5.0.2",
|
|
25
|
-
"@leafygreen-ui/popover": "^14.3.1",
|
|
26
|
-
"@leafygreen-ui/tokens": "^4.0.0",
|
|
27
24
|
"@leafygreen-ui/lib": "^15.6.2",
|
|
28
|
-
"@leafygreen-ui/
|
|
25
|
+
"@leafygreen-ui/input-option": "^4.1.4",
|
|
26
|
+
"@leafygreen-ui/popover": "^14.3.1",
|
|
27
|
+
"@leafygreen-ui/tokens": "^4.1.0",
|
|
28
|
+
"@leafygreen-ui/typography": "^22.2.3"
|
|
29
29
|
},
|
|
30
30
|
"peerDependencies": {
|
|
31
31
|
"@leafygreen-ui/leafygreen-provider": "^5.0.0 || ^4.0.0 || ^3.2.0"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
|
-
"@lg-tools/build": "^0.8.
|
|
34
|
+
"@lg-tools/build": "^0.8.4",
|
|
35
35
|
"@leafygreen-ui/button": "^25.1.3"
|
|
36
36
|
},
|
|
37
37
|
"homepage": "https://github.com/mongodb/leafygreen-ui/tree/main/packages/combobox",
|
|
@@ -2,7 +2,7 @@ import React, { ReactNode } from 'react';
|
|
|
2
2
|
|
|
3
3
|
import { type ChipProps } from '@leafygreen-ui/chip';
|
|
4
4
|
import { Either } from '@leafygreen-ui/lib';
|
|
5
|
-
import { PopoverProps } from '@leafygreen-ui/popover';
|
|
5
|
+
import { PopoverProps, RenderMode } from '@leafygreen-ui/popover';
|
|
6
6
|
|
|
7
7
|
import {
|
|
8
8
|
ComboboxSize,
|
|
@@ -14,6 +14,8 @@ import {
|
|
|
14
14
|
State,
|
|
15
15
|
} from '../types';
|
|
16
16
|
|
|
17
|
+
export { RenderMode };
|
|
18
|
+
|
|
17
19
|
/**
|
|
18
20
|
* Combobox Props
|
|
19
21
|
*/
|
package/src/Combobox/index.ts
CHANGED
package/src/index.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { Combobox, type ComboboxProps } from './Combobox';
|
|
1
|
+
export { Combobox, type ComboboxProps, RenderMode } from './Combobox';
|
|
2
2
|
export { ComboboxGroup, type ComboboxGroupProps } from './ComboboxGroup';
|
|
3
3
|
export { ComboboxOption, type ComboboxOptionProps } from './ComboboxOption';
|
|
4
4
|
export {
|