@coreui/vue-pro 4.4.0 → 4.4.1
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
|
@@ -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;
|
package/dist/index.js
CHANGED
|
@@ -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.
|
|
17081
|
+
if (typeof column === 'object' && column._style) {
|
|
17082
17082
|
return { ...style, ...column._style };
|
|
17083
17083
|
}
|
|
17084
17084
|
return style;
|
package/package.json
CHANGED