@coreui/vue-pro 4.4.0 → 4.4.2

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
@@ -12892,7 +12892,7 @@ const CDateRangePicker = vue.defineComponent({
12892
12892
  maxDate: maxDate.value,
12893
12893
  minDate: minDate.value,
12894
12894
  navigation: props.navigation,
12895
- range: true,
12895
+ range: props.range,
12896
12896
  selectEndDate: selectEndDate.value,
12897
12897
  ...(startDate.value && { startDate: startDate.value }),
12898
12898
  onCalendarCellHover: (date) => handleCalendarCellHover(date),
@@ -17078,7 +17078,7 @@ const CSmartTableHead = vue.defineComponent({
17078
17078
  (typeof column === 'object' && (typeof column.sorter === 'undefined' || column.sorter)))) {
17079
17079
  style.cursor = 'pointer';
17080
17080
  }
17081
- if (typeof column === 'object' && column._props) {
17081
+ if (typeof column === 'object' && column._style) {
17082
17082
  return { ...style, ...column._style };
17083
17083
  }
17084
17084
  return style;