@sproutsocial/seeds-react-menu 1.4.0 → 1.4.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.
@@ -86,12 +86,12 @@ ESM Build start
86
86
 
87
87
  CJS dist/index.js 143.00 KB
88
88
  CJS dist/index.js.map 369.68 KB
89
- CJS ⚡️ Build success in 664ms
89
+ CJS ⚡️ Build success in 665ms
90
90
  ESM dist/esm/index.js 133.33 KB
91
91
  ESM dist/esm/index.js.map 368.41 KB
92
- ESM ⚡️ Build success in 664ms
92
+ ESM ⚡️ Build success in 668ms
93
93
  DTS Build start
94
- DTS ⚡️ Build success in 11407ms
94
+ DTS ⚡️ Build success in 11765ms
95
95
  DTS dist/index.d.ts 37.42 KB
96
96
  DTS dist/index.d.mts 37.42 KB
97
- Done in 15.16s.
97
+ Done in 15.66s.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @sproutsocial/seeds-react-menu
2
2
 
3
+ ## 1.4.1
4
+
5
+ ### Patch Changes
6
+
7
+ - ea81c0a: Add ListboxToggleButton, AutocompleteInput, and AutocompleteTokenInput to the Menu.tsx docs exports
8
+
3
9
  ## 1.4.0
4
10
 
5
11
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sproutsocial/seeds-react-menu",
3
- "version": "1.4.0",
3
+ "version": "1.4.1",
4
4
  "description": "Seeds React Menu",
5
5
  "author": "Sprout Social, Inc.",
6
6
  "license": "MIT",
package/src/Menu.tsx CHANGED
@@ -12,9 +12,13 @@ import { MenuRoot } from "./MenuRoot";
12
12
  import { MenuLabel } from "./MenuLabel";
13
13
  import { MenuToggleButton } from "./MenuToggleButton";
14
14
  import { MenuSearchInput } from "./MenuSearchInput";
15
+ /** Not intended for individual use; use AutocompleteTokenInput or MenuSearchTokenInput instead */
15
16
  import { MenuTokenInput } from "./MenuTokenInput";
16
17
  import { MenuSearchTokenInput } from "./MenuSearchTokenInput";
17
18
  import { SubmenuItem } from "./SubmenuItem";
19
+ import { ListboxToggleButton } from "./ListboxToggleButton";
20
+ import { AutocompleteInput } from "./Autocomplete/AutocompleteInput";
21
+ import { AutocompleteTokenInput } from "./Autocomplete/AutocompleteTokenInput";
18
22
 
19
23
  // Menus
20
24
  import { ActionMenu } from "./ActionMenu";
@@ -40,10 +44,12 @@ export {
40
44
  MenuTokenInput,
41
45
  MenuSearchTokenInput,
42
46
  SubmenuItem,
47
+ ListboxToggleButton,
48
+ AutocompleteInput,
49
+ AutocompleteTokenInput,
43
50
  ActionMenu,
44
51
  SingleSelectMenu,
45
52
  MultiSelectMenu,
46
- Autocomplete,
47
53
  SingleAutocomplete,
48
54
  MultiAutocomplete,
49
55
  NestedMenu,
@@ -8,7 +8,6 @@ import type {
8
8
  TypeSpaceSystemProps,
9
9
  TypeTypographySystemProps,
10
10
  } from "@sproutsocial/seeds-react-system-props";
11
- import type { TypeMenuRootProps } from "../MenuRoot";
12
11
  import type { TypeMenuItemProps } from "../MenuItem";
13
12
  import type { TypeChildrenOrItems } from "../types";
14
13