@megha-ui/react 1.2.476 → 1.2.478
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.
|
@@ -149,6 +149,7 @@ withCard = false, cardClassName, cardHeader, title, headerLeft, headerRight, sub
|
|
|
149
149
|
return filterValue.includes(cellValue);
|
|
150
150
|
})
|
|
151
151
|
: true);
|
|
152
|
+
console.log(filterColumns.filter(column => { var _a; return (_a = searchQueries[column.key]) === null || _a === void 0 ? void 0 : _a.text; }), searchOp);
|
|
152
153
|
_filteredData = _filteredData.filter((item) => searchOp === "and"
|
|
153
154
|
? filterColumns.every((column) => {
|
|
154
155
|
var _a, _b, _c;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
-
const
|
|
2
|
+
const RadioInput = ({ handleChange, name, options, position = "right", selectedValue, wrapperClass, }) => {
|
|
3
3
|
return (_jsx("div", { className: wrapperClass, children: options.map((option) => (_jsx("div", { children: _jsxs("label", { style: {
|
|
4
4
|
alignItems: "center",
|
|
5
5
|
display: "flex",
|
|
@@ -15,4 +15,4 @@ const EpicRadioInput = ({ handleChange, name, options, position = "right", selec
|
|
|
15
15
|
marginLeft: "0.5rem",
|
|
16
16
|
} }))] }, option.value) }, option.value))) }));
|
|
17
17
|
};
|
|
18
|
-
export default
|
|
18
|
+
export default RadioInput;
|
package/dist/index.d.ts
CHANGED
|
@@ -16,3 +16,4 @@ export { Tabs, Tab, TabList, TabPanel } from "./components/tabs";
|
|
|
16
16
|
export { formatValue } from "./services/commonService";
|
|
17
17
|
export { default as Chat } from "./components/chat";
|
|
18
18
|
export { default as IconDropDown } from "./components/IconDropDown";
|
|
19
|
+
export { default as RadioInput } from "./components/radio";
|
package/dist/index.js
CHANGED
|
@@ -16,3 +16,4 @@ export { Tabs, Tab, TabList, TabPanel } from "./components/tabs";
|
|
|
16
16
|
export { formatValue } from "./services/commonService";
|
|
17
17
|
export { default as Chat } from "./components/chat";
|
|
18
18
|
export { default as IconDropDown } from "./components/IconDropDown";
|
|
19
|
+
export { default as RadioInput } from "./components/radio";
|
package/package.json
CHANGED