@umijs/plugins 4.6.32 → 4.6.34

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@umijs/plugins",
3
- "version": "4.6.32",
3
+ "version": "4.6.34",
4
4
  "description": "@umijs/plugins",
5
5
  "homepage": "https://github.com/umijs/umi/tree/master/packages/plugins#readme",
6
6
  "bugs": "https://github.com/umijs/umi/issues",
@@ -45,12 +45,12 @@
45
45
  "styled-components": "6.1.1",
46
46
  "tslib": "^2",
47
47
  "warning": "^4.0.3",
48
- "@umijs/bundler-utils": "4.6.32",
49
- "@umijs/valtio": "1.0.4"
48
+ "@umijs/valtio": "1.0.4",
49
+ "@umijs/bundler-utils": "4.6.34"
50
50
  },
51
51
  "devDependencies": {
52
52
  "antd": "^4.24.1",
53
- "umi": "4.6.32"
53
+ "umi": "4.6.34"
54
54
  },
55
55
  "publishConfig": {
56
56
  "access": "public"
@@ -8,7 +8,6 @@ import { getLocale, getAllLocales, setLocale } from './localeExports';
8
8
 
9
9
  {{#Antd}}
10
10
  export interface HeaderDropdownProps extends DropDownProps {
11
- overlayClassName?: string;
12
11
  placement?:
13
12
  | 'bottomLeft'
14
13
  | 'bottomRight'
@@ -19,11 +18,9 @@ export interface HeaderDropdownProps extends DropDownProps {
19
18
  }
20
19
 
21
20
  const HeaderDropdown: React.FC<HeaderDropdownProps> = ({
22
- overlayClassName: cls,
23
21
  ...restProps
24
22
  }) => (
25
23
  <Dropdown
26
- overlayClassName={cls}
27
24
  {...restProps}
28
25
  />
29
26
  );