@megha-ui/react 1.3.37 → 1.3.38

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.
@@ -504,7 +504,7 @@ const Dropdown = ({ options, selectedValues, onChange, placeholder = "Select..."
504
504
  display: "flex",
505
505
  alignItems: "start",
506
506
  width: "100%",
507
- }, children: [option.icon && !option.isDelete ? (_jsx("span", { style: { margin: "0 0.5rem" }, children: option.icon })) : (_jsx("span", { children: "something" })), _jsx("span", { children: option.label })] }), option.icon && option.isDelete && option.icon] }, String(option.value))))) }), onApplyChange && (_jsx("li", { style: {
507
+ }, children: [option.icon && !option.isDelete && (_jsx("span", { style: { margin: "0 0.5rem" }, children: option.icon })), _jsx("span", { children: option.label })] }), option.icon && option.isDelete && option.icon] }, String(option.value))))) }), onApplyChange && (_jsx("li", { style: {
508
508
  display: "flex",
509
509
  alignItems: "center",
510
510
  justifyContent: "end",
@@ -910,7 +910,13 @@ withCard = false, cardClassName, cardHeader, title, headerLeft, headerRight, sub
910
910
  }
911
911
  }
912
912
  };
913
- const cellStyle = cellBorder ? { border: "1px solid #d9d9d9" } : {};
913
+ const cellStyle = cellBorder
914
+ ? {
915
+ borderWidth: "1px",
916
+ borderStyle: "solid",
917
+ borderColor: "#d9d9d9",
918
+ }
919
+ : {};
914
920
  const rowStyle = {
915
921
  minHeight: rowHeight,
916
922
  alignItems: "center",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@megha-ui/react",
3
- "version": "1.3.37",
3
+ "version": "1.3.38",
4
4
  "description": "A collection of reusable UI components for React applications, built with TypeScript.",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",