datastake-daf 0.6.719 → 0.6.720
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/dist/components/index.js
CHANGED
|
@@ -45109,6 +45109,7 @@ function SidenavMenu(_ref) {
|
|
|
45109
45109
|
selectedKeys: selectedKeys,
|
|
45110
45110
|
openKeys: openKeys,
|
|
45111
45111
|
onOpenChange: k => setOpenKeys(k),
|
|
45112
|
+
forceSubMenuRender: false,
|
|
45112
45113
|
expandIcon: _ref2 => {
|
|
45113
45114
|
let {
|
|
45114
45115
|
isOpen
|
package/dist/layouts/index.js
CHANGED
package/package.json
CHANGED
|
@@ -2,4 +2,21 @@
|
|
|
2
2
|
.ant-menu-submenu-title {
|
|
3
3
|
color: white !important;
|
|
4
4
|
}
|
|
5
|
+
|
|
6
|
+
.ant-menu-submenu > .ant-menu {
|
|
7
|
+
animation: none !important;
|
|
8
|
+
transition: none !important;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.ant-menu-submenu-open > .ant-menu {
|
|
12
|
+
display: block;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.ant-menu-submenu:not(.ant-menu-submenu-open) > .ant-menu {
|
|
16
|
+
display: none;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.ant-menu-submenu-arrow {
|
|
20
|
+
transition: transform 0.2s ease;
|
|
21
|
+
}
|
|
5
22
|
}
|