@sproutsocial/seeds-react-menu 1.5.0 → 1.5.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 +7 -1
- package/package.json +1 -1
- package/src/Menu.tsx +3 -1
- package/src/NestedMenu/NestedMenuTypes.ts +0 -2
package/.turbo/turbo-build.log
CHANGED
|
@@ -86,12 +86,12 @@ ESM Build start
|
|
|
86
86
|
|
|
87
87
|
CJS dist/index.js 143.93 KB
|
|
88
88
|
CJS dist/index.js.map 371.38 KB
|
|
89
|
-
CJS ⚡️ Build success in
|
|
89
|
+
CJS ⚡️ Build success in 626ms
|
|
90
90
|
ESM dist/esm/index.js 134.17 KB
|
|
91
91
|
ESM dist/esm/index.js.map 370.11 KB
|
|
92
|
-
ESM ⚡️ Build success in
|
|
92
|
+
ESM ⚡️ Build success in 628ms
|
|
93
93
|
DTS Build start
|
|
94
|
-
DTS ⚡️ Build success in
|
|
94
|
+
DTS ⚡️ Build success in 15609ms
|
|
95
95
|
DTS dist/index.d.ts 38.55 KB
|
|
96
96
|
DTS dist/index.d.mts 38.55 KB
|
|
97
|
-
Done in
|
|
97
|
+
Done in 18.46s.
|
package/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,16 @@
|
|
|
1
1
|
# @sproutsocial/seeds-react-menu
|
|
2
2
|
|
|
3
|
+
## 1.5.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- e6023c4: [DS-3555] Add NestedMenuItem and NestedMenuHeader to the Menu.tsx exports for the NestedMenu docs
|
|
8
|
+
|
|
3
9
|
## 1.5.0
|
|
4
10
|
|
|
5
11
|
### Minor Changes
|
|
6
12
|
|
|
7
|
-
- d79bdc9: [DS-3494]
|
|
13
|
+
- d79bdc9: [DS-3494]
|
|
8
14
|
- Fix motion origin for Menu based on placement, passed to the motion.div custom prop in the Popout component
|
|
9
15
|
- Updated NestedMenu to use the Popout lockPlacement so it does not jump while switching panels
|
|
10
16
|
|
package/package.json
CHANGED
package/src/Menu.tsx
CHANGED
|
@@ -29,7 +29,7 @@ import { Autocomplete } from "./Autocomplete";
|
|
|
29
29
|
import { SingleAutocomplete } from "./Autocomplete/SingleAutocomplete";
|
|
30
30
|
/** Not intended for individual use; use Autocomplete with multiselect prop */
|
|
31
31
|
import { MultiAutocomplete } from "./Autocomplete/MultiAutocomplete";
|
|
32
|
-
import { NestedMenu } from "./NestedMenu";
|
|
32
|
+
import { NestedMenu, NestedMenuItem, NestedMenuHeader } from "./NestedMenu";
|
|
33
33
|
|
|
34
34
|
export {
|
|
35
35
|
MenuItem,
|
|
@@ -53,4 +53,6 @@ export {
|
|
|
53
53
|
SingleAutocomplete,
|
|
54
54
|
MultiAutocomplete,
|
|
55
55
|
NestedMenu,
|
|
56
|
+
NestedMenuItem,
|
|
57
|
+
NestedMenuHeader,
|
|
56
58
|
};
|
|
@@ -2,11 +2,9 @@ import type { TypeActionMenuProps } from "../ActionMenu";
|
|
|
2
2
|
import type { TypeMultiSelectMenuProps } from "../MultiSelectMenu";
|
|
3
3
|
import type { TypeSingleSelectMenuProps } from "../SingleSelectMenu";
|
|
4
4
|
import type { TypeMenuItemProps } from "../MenuItem";
|
|
5
|
-
import type { TypeMenuRootProps } from "../MenuRoot";
|
|
6
5
|
import type { TypeMenuHeaderProps } from "../MenuHeader";
|
|
7
6
|
import type { TypeActionMenuBaseProps } from "../ActionMenu";
|
|
8
7
|
import type { TypeChildrenOrItems } from "../types";
|
|
9
|
-
import type { TypePopoutProps } from "@sproutsocial/seeds-react-popout";
|
|
10
8
|
|
|
11
9
|
export interface TypeNestedMenuMapProps<
|
|
12
10
|
P,
|