next-helios-fe 1.6.16 → 1.6.17
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 +1 -1
- package/package.json +1 -1
- package/src/components/table/index.tsx +6 -8
package/package.json
CHANGED
@@ -116,14 +116,12 @@ export const Table: TableComponentProps = ({
|
|
116
116
|
}, [checkbox?.checked]);
|
117
117
|
|
118
118
|
useEffect(() => {
|
119
|
-
|
120
|
-
checkbox?.onChange
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
});
|
126
|
-
}
|
119
|
+
checkbox?.onChange &&
|
120
|
+
checkbox?.onChange({
|
121
|
+
target: {
|
122
|
+
checked: selected,
|
123
|
+
},
|
124
|
+
});
|
127
125
|
}, [selected]);
|
128
126
|
|
129
127
|
useEffect(() => {
|