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