@sproutsocial/seeds-react-menu 1.11.4 → 1.11.6
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 +8 -8
- package/CHANGELOG.md +18 -0
- package/dist/esm/v3/index.js +3 -3
- package/dist/esm/v3/index.js.map +1 -1
- package/dist/v3/index.js +3 -3
- package/dist/v3/index.js.map +1 -1
- package/package.json +9 -9
- package/src/v3/Common/ComboboxStyles.tsx +2 -2
- package/src/v3/Common/VirtualizedComboboxList.tsx +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sproutsocial/seeds-react-menu",
|
|
3
|
-
"version": "1.11.
|
|
3
|
+
"version": "1.11.6",
|
|
4
4
|
"description": "Seeds React Menu",
|
|
5
5
|
"author": "Sprout Social, Inc.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -37,17 +37,17 @@
|
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"@radix-ui/react-popover": "^1.1.2",
|
|
39
39
|
"@sproutsocial/seeds-react-box": "^1.1.16",
|
|
40
|
-
"@sproutsocial/seeds-react-button": "^2.0.
|
|
41
|
-
"@sproutsocial/seeds-react-checkbox": "^1.3.
|
|
42
|
-
"@sproutsocial/seeds-react-icon": "^2.3.
|
|
43
|
-
"@sproutsocial/seeds-react-input": "^1.5.
|
|
40
|
+
"@sproutsocial/seeds-react-button": "^2.0.2",
|
|
41
|
+
"@sproutsocial/seeds-react-checkbox": "^1.3.30",
|
|
42
|
+
"@sproutsocial/seeds-react-icon": "^2.3.4",
|
|
43
|
+
"@sproutsocial/seeds-react-input": "^1.5.13",
|
|
44
44
|
"@sproutsocial/seeds-react-label": "^1.0.16",
|
|
45
|
-
"@sproutsocial/seeds-react-popout": "^2.4.
|
|
45
|
+
"@sproutsocial/seeds-react-popout": "^2.4.35",
|
|
46
46
|
"@sproutsocial/seeds-react-radio": "^1.3.16",
|
|
47
|
-
"@sproutsocial/seeds-react-switch": "^1.2.
|
|
47
|
+
"@sproutsocial/seeds-react-switch": "^1.2.29",
|
|
48
48
|
"@sproutsocial/seeds-react-system-props": "^3.0.2",
|
|
49
49
|
"@sproutsocial/seeds-react-theme": "^3.6.2",
|
|
50
|
-
"@sproutsocial/seeds-react-token-input": "^1.4.
|
|
50
|
+
"@sproutsocial/seeds-react-token-input": "^1.4.35",
|
|
51
51
|
"@sproutsocial/seeds-react-utilities": "^4.3.0",
|
|
52
52
|
"@base-ui/react": "^1.3.0",
|
|
53
53
|
"@tanstack/react-virtual": "^3.13.12",
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"styled-system": "^5.1.5"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
|
-
"@sproutsocial/seeds-react-tooltip": "^1.1.
|
|
60
|
+
"@sproutsocial/seeds-react-tooltip": "^1.1.17",
|
|
61
61
|
"@sproutsocial/eslint-config-seeds": "*",
|
|
62
62
|
"@sproutsocial/seeds-react-testing-library": "*",
|
|
63
63
|
"@sproutsocial/seeds-testing": "*",
|
|
@@ -36,7 +36,7 @@ export const ComboboxInput = styled(Combobox.Input)`
|
|
|
36
36
|
flex: 1;
|
|
37
37
|
min-width: 30px;
|
|
38
38
|
padding: ${({ theme }) => theme.space[300]};
|
|
39
|
-
border: none;
|
|
39
|
+
border: none !important;
|
|
40
40
|
background: transparent;
|
|
41
41
|
font-size: ${({ theme }) => theme.typography[200].fontSize};
|
|
42
42
|
line-height: ${({ theme }) => theme.typography[200].lineHeight};
|
|
@@ -57,7 +57,7 @@ export const ComboboxTokenInput = styled(Combobox.Input)`
|
|
|
57
57
|
min-width: 60px;
|
|
58
58
|
padding: ${({ theme }) => theme.space[200]} ${({ theme }) => theme.space[300]}
|
|
59
59
|
${({ theme }) => theme.space[200]} ${({ theme }) => theme.space[350]};
|
|
60
|
-
border: none;
|
|
60
|
+
border: none !important;
|
|
61
61
|
background: transparent;
|
|
62
62
|
font-size: ${({ theme }) => theme.typography[200].fontSize};
|
|
63
63
|
line-height: ${({ theme }) => theme.typography[200].lineHeight};
|
|
@@ -82,7 +82,7 @@ export default function VirtualizedComboboxList<T extends DataWithId>({
|
|
|
82
82
|
const handleScrollRef = React.useCallback(
|
|
83
83
|
(el: HTMLDivElement | null) => {
|
|
84
84
|
scrollElementRef.current = el;
|
|
85
|
-
if (el) virtualizer.measure();
|
|
85
|
+
if (el) requestAnimationFrame(() => virtualizer.measure());
|
|
86
86
|
},
|
|
87
87
|
[virtualizer]
|
|
88
88
|
);
|