@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.
@@ -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 !== void 0 ? item.maxWidth : props.defaultMaxWidth;
6378
- item.truncateLines = item.truncateLines !== void 0 ? item.truncateLines : props.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";
@@ -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 !== void 0 ? item.maxWidth : props.defaultMaxWidth;
6377
- item.truncateLines = item.truncateLines !== void 0 ? item.truncateLines : props.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";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dolusoft/vue3-datatable",
3
- "version": "1.8.43",
3
+ "version": "1.8.44",
4
4
  "description": "Vue3 Datatable - fully customizable & easy to use datatable library",
5
5
  "private": false,
6
6
  "type": "module",