@coreui/vue-pro 4.10.2 → 4.10.4

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.es.js CHANGED
@@ -9375,7 +9375,7 @@ const CFormCheck = defineComponent({
9375
9375
  const formControl = () => {
9376
9376
  return h$1('input', {
9377
9377
  ...attrs,
9378
- ...(props.modelValue && props.value && { checked: isChecked.value }),
9378
+ ...((props.modelValue || props.value) && { checked: isChecked.value }),
9379
9379
  class: inputClassName,
9380
9380
  id: props.id,
9381
9381
  indeterminate: props.indeterminate,
@@ -14569,7 +14569,7 @@ const CSmartTableHead = defineComponent({
14569
14569
  emit('filterInput', getColumnKey(column), event.target.value);
14570
14570
  },
14571
14571
  onChange: (event) => {
14572
- emit('filterChange', event.target.value);
14572
+ emit('filterChange', getColumnKey(column), event.target.value);
14573
14573
  },
14574
14574
  'aria-label': `column name: '${getColumnLabel(column)}' filter input`,
14575
14575
  ...(props.columnFilterValue &&