@alicloud/console-base-rc-side-panel 1.1.28 → 1.1.29-beta.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.
|
@@ -33,6 +33,9 @@ function SidePanelItemButton(_ref) {
|
|
|
33
33
|
'aria-label': title,
|
|
34
34
|
label: (0, _consoleBaseRcEasyIcon.renderEasyIcon)(icon) || '',
|
|
35
35
|
$onlyShowIcon: onlyShowIcon || false,
|
|
36
|
-
$active: active || false
|
|
36
|
+
$active: active || false,
|
|
37
|
+
onMouseOver: function onMouseOver(event) {
|
|
38
|
+
return event.stopPropagation();
|
|
39
|
+
}
|
|
37
40
|
}, rest));
|
|
38
41
|
}
|
|
@@ -27,6 +27,9 @@ export default function SidePanelItemButton(_ref) {
|
|
|
27
27
|
'aria-label': title,
|
|
28
28
|
label: renderEasyIcon(icon) || '',
|
|
29
29
|
$onlyShowIcon: onlyShowIcon || false,
|
|
30
|
-
$active: active || false
|
|
30
|
+
$active: active || false,
|
|
31
|
+
onMouseOver: function onMouseOver(event) {
|
|
32
|
+
return event.stopPropagation();
|
|
33
|
+
}
|
|
31
34
|
}, rest));
|
|
32
35
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alicloud/console-base-rc-side-panel",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.29-beta.1",
|
|
4
4
|
"description": "ConsoleBase 组件 - 右侧边栏",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"@alicloud/console-base-rc-html-trusted": "^1.0.5",
|
|
43
43
|
"@alicloud/console-base-rc-icon": "^1.10.6",
|
|
44
44
|
"@alicloud/console-base-rc-marks": "^1.8.3",
|
|
45
|
-
"@alicloud/console-base-rc-tooltip": "
|
|
45
|
+
"@alicloud/console-base-rc-tooltip": "beta",
|
|
46
46
|
"@alicloud/console-base-theme": "^1.9.7",
|
|
47
47
|
"@alicloud/console-base-theme-sc-base": "^1.6.4",
|
|
48
48
|
"@alicloud/mere-dom": "^1.8.0",
|
|
@@ -63,5 +63,8 @@
|
|
|
63
63
|
"prepublishOnly": "yarn clean && yarn build"
|
|
64
64
|
},
|
|
65
65
|
"gitHead": "e3daf0b177915f37e8beae4ecee204d8c62f9507",
|
|
66
|
-
"repository": "git@gitlab.alibaba-inc.com:aliyun/console-base.git"
|
|
66
|
+
"repository": "git@gitlab.alibaba-inc.com:aliyun/console-base.git",
|
|
67
|
+
"overrides": {
|
|
68
|
+
"@alicloud/console-base-rc-tooltip": "beta"
|
|
69
|
+
}
|
|
67
70
|
}
|