@dolusoft/vue3-datatable 1.8.43 → 1.8.44
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/vue3-datatable.cjs
CHANGED
|
@@ -6374,8 +6374,8 @@ const _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
|
6374
6374
|
item.sort = item.sort !== void 0 ? item.sort : true;
|
|
6375
6375
|
item.html = item.html !== void 0 ? item.html : false;
|
|
6376
6376
|
item.truncate = item.truncate !== void 0 ? item.truncate : props.truncate;
|
|
6377
|
-
item.maxWidth = item.maxWidth
|
|
6378
|
-
item.truncateLines = item.truncateLines
|
|
6377
|
+
item.maxWidth = item.maxWidth || props.defaultMaxWidth;
|
|
6378
|
+
item.truncateLines = item.truncateLines || props.truncateLines;
|
|
6379
6379
|
item.showTooltip = item.showTooltip !== void 0 ? item.showTooltip : true;
|
|
6380
6380
|
if (item.value !== void 0 && item.value !== null && item.value !== "") {
|
|
6381
6381
|
item.condition = item.condition || "Equal";
|
package/dist/vue3-datatable.js
CHANGED
|
@@ -6373,8 +6373,8 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
6373
6373
|
item.sort = item.sort !== void 0 ? item.sort : true;
|
|
6374
6374
|
item.html = item.html !== void 0 ? item.html : false;
|
|
6375
6375
|
item.truncate = item.truncate !== void 0 ? item.truncate : props.truncate;
|
|
6376
|
-
item.maxWidth = item.maxWidth
|
|
6377
|
-
item.truncateLines = item.truncateLines
|
|
6376
|
+
item.maxWidth = item.maxWidth || props.defaultMaxWidth;
|
|
6377
|
+
item.truncateLines = item.truncateLines || props.truncateLines;
|
|
6378
6378
|
item.showTooltip = item.showTooltip !== void 0 ? item.showTooltip : true;
|
|
6379
6379
|
if (item.value !== void 0 && item.value !== null && item.value !== "") {
|
|
6380
6380
|
item.condition = item.condition || "Equal";
|