@rkosafo/cai.components 0.0.49 → 0.0.50
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.
|
@@ -142,7 +142,7 @@
|
|
|
142
142
|
class="px-6 py-2.5 text-left text-sm font-semibold whitespace-nowrap rtl:text-right"
|
|
143
143
|
>
|
|
144
144
|
<Checkbox
|
|
145
|
-
class="cursor-pointer"
|
|
145
|
+
class="h-5 w-5 cursor-pointer"
|
|
146
146
|
checked={selectAllChecked}
|
|
147
147
|
onchange={handleSelectAllChange}
|
|
148
148
|
/>
|
|
@@ -225,9 +225,8 @@
|
|
|
225
225
|
>
|
|
226
226
|
{#if showCheckBox}
|
|
227
227
|
<td class="px-6 py-2">
|
|
228
|
-
<
|
|
229
|
-
|
|
230
|
-
class="cursor-pointer"
|
|
228
|
+
<Checkbox
|
|
229
|
+
class="h-5 w-5 cursor-pointer"
|
|
231
230
|
onchange={(e) => {
|
|
232
231
|
const checked = e?.target?.checked;
|
|
233
232
|
handleRowCheckboxChange(checked, getRow(row));
|