@apexcura/ui-components 0.0.13-Beta12 → 0.0.13-Beta13
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 -2
- package/dist/index.mjs +1 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -244,9 +244,8 @@ var CheckboxElement = (props) => {
|
|
|
244
244
|
const checkAll = props.options && props.options.length === checkedList.length;
|
|
245
245
|
const handleChange = (list) => {
|
|
246
246
|
setCheckedList(list);
|
|
247
|
-
console.log("checkedList-----", checkedList);
|
|
248
247
|
if (props.onChange) {
|
|
249
|
-
|
|
248
|
+
console.log(list);
|
|
250
249
|
}
|
|
251
250
|
};
|
|
252
251
|
const onHandleAllChanges = (e) => {
|
package/dist/index.mjs
CHANGED
|
@@ -191,9 +191,8 @@ var CheckboxElement = (props) => {
|
|
|
191
191
|
const checkAll = props.options && props.options.length === checkedList.length;
|
|
192
192
|
const handleChange = (list) => {
|
|
193
193
|
setCheckedList(list);
|
|
194
|
-
console.log("checkedList-----", checkedList);
|
|
195
194
|
if (props.onChange) {
|
|
196
|
-
|
|
195
|
+
console.log(list);
|
|
197
196
|
}
|
|
198
197
|
};
|
|
199
198
|
const onHandleAllChanges = (e) => {
|