@apexcura/ui-components 0.0.16-Beta54 → 0.0.16-Beta55
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/index.js +9 -1
- package/dist/index.mjs +9 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -800,7 +800,7 @@ var Sidebar = (props) => {
|
|
|
800
800
|
) : null,
|
|
801
801
|
children,
|
|
802
802
|
label,
|
|
803
|
-
className: selectedIndex === key ? props.activeClassName : "",
|
|
803
|
+
// className: selectedIndex === key ? props.activeClassName : "",
|
|
804
804
|
onClick: children ? void 0 : () => handleChange(item, key.toString())
|
|
805
805
|
};
|
|
806
806
|
}
|
|
@@ -821,6 +821,14 @@ var Sidebar = (props) => {
|
|
|
821
821
|
return /* @__PURE__ */ import_react16.default.createElement(import_antd11.Layout, { style: { minHeight: "100vh" } }, /* @__PURE__ */ import_react16.default.createElement(
|
|
822
822
|
Sider,
|
|
823
823
|
{
|
|
824
|
+
style: {
|
|
825
|
+
overflow: "auto",
|
|
826
|
+
height: "100vh",
|
|
827
|
+
position: "fixed",
|
|
828
|
+
left: 0,
|
|
829
|
+
top: 0,
|
|
830
|
+
bottom: 0
|
|
831
|
+
},
|
|
824
832
|
theme: "light",
|
|
825
833
|
collapsible: true,
|
|
826
834
|
collapsed,
|
package/dist/index.mjs
CHANGED
|
@@ -729,7 +729,7 @@ var Sidebar = (props) => {
|
|
|
729
729
|
) : null,
|
|
730
730
|
children,
|
|
731
731
|
label,
|
|
732
|
-
className: selectedIndex === key ? props.activeClassName : "",
|
|
732
|
+
// className: selectedIndex === key ? props.activeClassName : "",
|
|
733
733
|
onClick: children ? void 0 : () => handleChange(item, key.toString())
|
|
734
734
|
};
|
|
735
735
|
}
|
|
@@ -750,6 +750,14 @@ var Sidebar = (props) => {
|
|
|
750
750
|
return /* @__PURE__ */ React15.createElement(Layout, { style: { minHeight: "100vh" } }, /* @__PURE__ */ React15.createElement(
|
|
751
751
|
Sider,
|
|
752
752
|
{
|
|
753
|
+
style: {
|
|
754
|
+
overflow: "auto",
|
|
755
|
+
height: "100vh",
|
|
756
|
+
position: "fixed",
|
|
757
|
+
left: 0,
|
|
758
|
+
top: 0,
|
|
759
|
+
bottom: 0
|
|
760
|
+
},
|
|
753
761
|
theme: "light",
|
|
754
762
|
collapsible: true,
|
|
755
763
|
collapsed,
|