@fctc/sme-widget-ui 2.2.0 → 2.2.1

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 CHANGED
@@ -10962,7 +10962,7 @@ var Row = (props) => {
10962
10962
  "tr",
10963
10963
  {
10964
10964
  "data-row-id": row?.id,
10965
- className: `border-b border-[#e8e8e8] cursor-pointer`,
10965
+ className: `border-b border-[#e8e8e8] cursor-pointer ${indexRow % 2 === 0 ? "bg-[#EEF3FB]" : "bg-white"}`,
10966
10966
  children: /* @__PURE__ */ (0, import_jsx_runtime47.jsxs)(import_jsx_runtime47.Fragment, { children: [
10967
10967
  isDisplayCheckbox && /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(
10968
10968
  "td",
package/dist/index.mjs CHANGED
@@ -10836,7 +10836,7 @@ var Row = (props) => {
10836
10836
  "tr",
10837
10837
  {
10838
10838
  "data-row-id": row?.id,
10839
- className: `border-b border-[#e8e8e8] cursor-pointer`,
10839
+ className: `border-b border-[#e8e8e8] cursor-pointer ${indexRow % 2 === 0 ? "bg-[#EEF3FB]" : "bg-white"}`,
10840
10840
  children: /* @__PURE__ */ jsxs26(Fragment3, { children: [
10841
10841
  isDisplayCheckbox && /* @__PURE__ */ jsx47(
10842
10842
  "td",
package/dist/widgets.js CHANGED
@@ -9954,7 +9954,7 @@ var Row = (props) => {
9954
9954
  "tr",
9955
9955
  {
9956
9956
  "data-row-id": row?.id,
9957
- className: `border-b border-[#e8e8e8] cursor-pointer`,
9957
+ className: `border-b border-[#e8e8e8] cursor-pointer ${indexRow % 2 === 0 ? "bg-[#EEF3FB]" : "bg-white"}`,
9958
9958
  children: /* @__PURE__ */ (0, import_jsx_runtime47.jsxs)(import_jsx_runtime47.Fragment, { children: [
9959
9959
  isDisplayCheckbox && /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(
9960
9960
  "td",
package/dist/widgets.mjs CHANGED
@@ -9892,7 +9892,7 @@ var Row = (props) => {
9892
9892
  "tr",
9893
9893
  {
9894
9894
  "data-row-id": row?.id,
9895
- className: `border-b border-[#e8e8e8] cursor-pointer`,
9895
+ className: `border-b border-[#e8e8e8] cursor-pointer ${indexRow % 2 === 0 ? "bg-[#EEF3FB]" : "bg-white"}`,
9896
9896
  children: /* @__PURE__ */ jsxs26(Fragment3, { children: [
9897
9897
  isDisplayCheckbox && /* @__PURE__ */ jsx47(
9898
9898
  "td",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fctc/sme-widget-ui",
3
- "version": "2.2.0",
3
+ "version": "2.2.1",
4
4
  "main": "dist/index.cjs",
5
5
  "module": "dist/index.mjs",
6
6
  "types": "dist/index.d.ts",