labsense-ui-kit 1.2.91 → 1.2.93

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.
@@ -15,7 +15,7 @@ interface OptionProps {
15
15
  searchQuery: string;
16
16
  setSearchQuery: (value: string) => void;
17
17
  internalSearchQuery: string;
18
- setInternalSearchQuery: React.Dispatch<React.SetStateAction<string>>;
18
+ setInternalSearchQuery: (value: string) => void;
19
19
  placeholder?: string;
20
20
  placeholderColor?: string;
21
21
  optionBorder?: string;
package/dist/index.js CHANGED
@@ -9411,6 +9411,7 @@ var Sidebar = function Sidebar(_ref22) {
9411
9411
  }, React__default.createElement(IconWrapper$2, {
9412
9412
  "$selected": active
9413
9413
  }, React__default.createElement(Icon, {
9414
+ cursor: 'pointer',
9414
9415
  icon: child.icon,
9415
9416
  size: 18,
9416
9417
  weight: child.iconWeight,
@@ -9475,6 +9476,7 @@ var Sidebar = function Sidebar(_ref22) {
9475
9476
  }, React__default.createElement(IconWrapper$2, {
9476
9477
  "$selected": !!isActive
9477
9478
  }, React__default.createElement(Icon, {
9479
+ cursor: 'pointer',
9478
9480
  icon: item.icon,
9479
9481
  size: 20,
9480
9482
  weight: item.iconWeight,
@@ -9486,10 +9488,10 @@ var Sidebar = function Sidebar(_ref22) {
9486
9488
  "$padding": '9px',
9487
9489
  "$opacity": isExpanded ? 1 : 0
9488
9490
  }, React__default.createElement(Icon, {
9491
+ cursor: 'pointer',
9489
9492
  icon: isOpen ? 'UpArrow' : 'DownArrow',
9490
9493
  size: 10,
9491
- color: isActive ? themeColors.vms.text.white : themeColors.vms.text.medium,
9492
- cursor: 'pointer'
9494
+ color: isActive ? themeColors.vms.text.white : themeColors.vms.text.medium
9493
9495
  })));
9494
9496
  var handleNavClick = React__default.useCallback(function (e) {
9495
9497
  if (item.url === location.pathname) {