@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@coreui/vue-pro",
3
- "version": "4.4.0",
3
+ "version": "4.4.2",
4
4
  "description": "UI Components Library for Vue.js",
5
5
  "keywords": [
6
6
  "vue",
@@ -662,7 +662,7 @@ const CDateRangePicker = defineComponent({
662
662
  maxDate: maxDate.value,
663
663
  minDate: minDate.value,
664
664
  navigation: props.navigation,
665
- range: true,
665
+ range: props.range,
666
666
  selectEndDate: selectEndDate.value,
667
667
  ...(startDate.value && { startDate: startDate.value }),
668
668
  onCalendarCellHover: (date: Date | null) => handleCalendarCellHover(date),
@@ -75,7 +75,7 @@ const CSmartTableHead = defineComponent({
75
75
  style.cursor = 'pointer'
76
76
  }
77
77
 
78
- if (typeof column === 'object' && column._props) {
78
+ if (typeof column === 'object' && column._style) {
79
79
  return { ...style, ...column._style }
80
80
  }
81
81
  return style