@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.
- package/.turbo/turbo-build.log +4 -4
- package/CHANGELOG.md +6 -0
- package/package.json +1 -1
- package/src/Menu.tsx +7 -1
- package/src/MenuGroup/MenuGroupTypes.ts +0 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -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
|
|
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
|
|
92
|
+
ESM ⚡️ Build success in 668ms
|
|
93
93
|
DTS Build start
|
|
94
|
-
DTS ⚡️ Build success in
|
|
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.
|
|
97
|
+
Done in 15.66s.
|
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
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
|
|