jclib-ui 1.0.153 → 1.0.154
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/jclib-ui.es.js +16 -2
- package/dist/jclib-ui.es.js.map +1 -1
- package/dist/jclib-ui.umd.js +24 -24
- package/dist/jclib-ui.umd.js.map +1 -1
- package/package.json +1 -1
package/dist/jclib-ui.es.js
CHANGED
|
@@ -4386,7 +4386,7 @@ const TableContainer = styled.table`
|
|
|
4386
4386
|
}
|
|
4387
4387
|
}
|
|
4388
4388
|
`;
|
|
4389
|
-
|
|
4389
|
+
styled.span`
|
|
4390
4390
|
display: inline-flex;
|
|
4391
4391
|
align-items: center;
|
|
4392
4392
|
justify-content: center;
|
|
@@ -4496,7 +4496,21 @@ function getDataCol(col, line) {
|
|
|
4496
4496
|
return formatValor(vvalue, 2, true);
|
|
4497
4497
|
}
|
|
4498
4498
|
if (typeof vvalue == "boolean") {
|
|
4499
|
-
return
|
|
4499
|
+
return (
|
|
4500
|
+
// <CheckedArea value={vvalue}>
|
|
4501
|
+
// {vvalue ? <i className='fas fa-check'></i> : <i> </i>}
|
|
4502
|
+
// </CheckedArea>
|
|
4503
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
4504
|
+
"input",
|
|
4505
|
+
{
|
|
4506
|
+
type: "checkbox",
|
|
4507
|
+
checked: vvalue,
|
|
4508
|
+
readOnly: true,
|
|
4509
|
+
className: "form-check-input",
|
|
4510
|
+
style: { marginTop: 3, cursor: "default" }
|
|
4511
|
+
}
|
|
4512
|
+
)
|
|
4513
|
+
);
|
|
4500
4514
|
}
|
|
4501
4515
|
return vvalue;
|
|
4502
4516
|
}
|