@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.es.js
CHANGED
|
@@ -12888,7 +12888,7 @@ const CDateRangePicker = defineComponent({
|
|
|
12888
12888
|
maxDate: maxDate.value,
|
|
12889
12889
|
minDate: minDate.value,
|
|
12890
12890
|
navigation: props.navigation,
|
|
12891
|
-
range:
|
|
12891
|
+
range: props.range,
|
|
12892
12892
|
selectEndDate: selectEndDate.value,
|
|
12893
12893
|
...(startDate.value && { startDate: startDate.value }),
|
|
12894
12894
|
onCalendarCellHover: (date) => handleCalendarCellHover(date),
|
|
@@ -17074,7 +17074,7 @@ const CSmartTableHead = defineComponent({
|
|
|
17074
17074
|
(typeof column === 'object' && (typeof column.sorter === 'undefined' || column.sorter)))) {
|
|
17075
17075
|
style.cursor = 'pointer';
|
|
17076
17076
|
}
|
|
17077
|
-
if (typeof column === 'object' && column.
|
|
17077
|
+
if (typeof column === 'object' && column._style) {
|
|
17078
17078
|
return { ...style, ...column._style };
|
|
17079
17079
|
}
|
|
17080
17080
|
return style;
|