@telegraph/combobox 0.0.81 → 0.0.83
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
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# @telegraph/combobox
|
|
2
2
|
|
|
3
|
+
## 0.0.83
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#453](https://github.com/knocklabs/telegraph/pull/453) [`fa140c7`](https://github.com/knocklabs/telegraph/commit/fa140c7af8fa30c06a9b65d365304d279055efd8) Thanks [@dependabot](https://github.com/apps/dependabot)! - updates @radix-ui/react-visually-hidden
|
|
8
|
+
|
|
9
|
+
- Updated dependencies [[`a020975`](https://github.com/knocklabs/telegraph/commit/a020975ce54f614cde1a98893fb675499de9d2b2)]:
|
|
10
|
+
- @telegraph/input@0.0.43
|
|
11
|
+
- @telegraph/tooltip@0.0.47
|
|
12
|
+
- @telegraph/tag@0.0.86
|
|
13
|
+
- @telegraph/truncate@0.0.2
|
|
14
|
+
|
|
15
|
+
## 0.0.82
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- Updated dependencies [[`8338d18`](https://github.com/knocklabs/telegraph/commit/8338d18f02c1437fe5f7532bc6d9e3c0b43b03e1)]:
|
|
20
|
+
- @telegraph/icon@0.0.51
|
|
21
|
+
- @telegraph/button@0.0.78
|
|
22
|
+
- @telegraph/menu@0.0.65
|
|
23
|
+
- @telegraph/tag@0.0.85
|
|
24
|
+
|
|
3
25
|
## 0.0.81
|
|
4
26
|
|
|
5
27
|
### Patch Changes
|
|
@@ -7,7 +7,6 @@ import { Menu as TelegraphMenu } from '@telegraph/menu';
|
|
|
7
7
|
import { default as React } from 'react';
|
|
8
8
|
import { Primitives } from './Combobox.primitives';
|
|
9
9
|
import { DefinedOption, Option } from './Combobox.types';
|
|
10
|
-
|
|
11
10
|
type LayoutValue<O> = O extends DefinedOption | string | undefined ? never : "truncate" | "wrap";
|
|
12
11
|
type RootProps<O extends (Option | Array<Option>) | (string | Array<string>), LB extends boolean> = {
|
|
13
12
|
value?: O;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
2
|
import { DefinedOption, Option } from './Combobox.types';
|
|
3
|
-
|
|
4
3
|
export declare const isMultiSelect: (value: Option | Array<Option> | undefined) => value is Array<Option>;
|
|
5
4
|
export declare const isSingleSelect: (value: Option | Array<Option> | undefined) => value is Option;
|
|
6
5
|
export declare const getOptions: (children: React.ReactNode) => Array<DefinedOption>;
|
|
@@ -3,7 +3,6 @@ import { TgphComponentProps, TgphElement } from '@telegraph/helpers';
|
|
|
3
3
|
import { Stack } from '@telegraph/layout';
|
|
4
4
|
import { Tag } from '@telegraph/tag';
|
|
5
5
|
import { Tooltip } from '@telegraph/tooltip';
|
|
6
|
-
|
|
7
6
|
type TriggerIndicatorProps<T extends TgphElement> = Partial<TgphComponentProps<typeof Button.Icon<T>>>;
|
|
8
7
|
type TriggerClearProps<T extends TgphElement> = TgphComponentProps<typeof Button<T>> & {
|
|
9
8
|
tooltipProps?: TgphComponentProps<typeof Tooltip>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@telegraph/combobox",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.83",
|
|
4
4
|
"description": "A styled menu, triggered by a Select, that combines an Input and Single- or Multi-select.",
|
|
5
5
|
"repository": "https://github.com/knocklabs/telegraph/tree/main/packages/combobox",
|
|
6
6
|
"author": "@knocklabs",
|
|
@@ -35,22 +35,22 @@
|
|
|
35
35
|
"@radix-ui/react-dismissable-layer": "^1.1.5",
|
|
36
36
|
"@radix-ui/react-portal": "^1.1.3",
|
|
37
37
|
"@radix-ui/react-use-controllable-state": "^1.1.0",
|
|
38
|
-
"@radix-ui/react-visually-hidden": "^1.
|
|
39
|
-
"@telegraph/button": "^0.0.
|
|
38
|
+
"@radix-ui/react-visually-hidden": "^1.2.2",
|
|
39
|
+
"@telegraph/button": "^0.0.78",
|
|
40
40
|
"@telegraph/compose-refs": "^0.0.6",
|
|
41
41
|
"@telegraph/helpers": "^0.0.12",
|
|
42
|
-
"@telegraph/icon": "^0.0.
|
|
43
|
-
"@telegraph/input": "^0.0.
|
|
42
|
+
"@telegraph/icon": "^0.0.51",
|
|
43
|
+
"@telegraph/input": "^0.0.43",
|
|
44
44
|
"@telegraph/layout": "^0.1.16",
|
|
45
|
-
"@telegraph/menu": "^0.0.
|
|
45
|
+
"@telegraph/menu": "^0.0.65",
|
|
46
46
|
"@telegraph/motion": "^0.0.8",
|
|
47
|
-
"@telegraph/tag": "^0.0.
|
|
48
|
-
"@telegraph/tooltip": "^0.0.
|
|
49
|
-
"@telegraph/truncate": "^0.0.
|
|
47
|
+
"@telegraph/tag": "^0.0.86",
|
|
48
|
+
"@telegraph/tooltip": "^0.0.47",
|
|
49
|
+
"@telegraph/truncate": "^0.0.2",
|
|
50
50
|
"@telegraph/typography": "^0.1.16"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"@knocklabs/eslint-config": "^0.0.
|
|
53
|
+
"@knocklabs/eslint-config": "^0.0.4",
|
|
54
54
|
"@knocklabs/typescript-config": "^0.0.2",
|
|
55
55
|
"@telegraph/postcss-config": "^0.0.24",
|
|
56
56
|
"@telegraph/prettier-config": "^0.0.7",
|