@dolusoft/vue3-datatable 1.8.4 → 1.8.5

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.
@@ -3015,7 +3015,6 @@ const _sfc_main$1 = /* @__PURE__ */ vue.defineComponent({
3015
3015
  watchDebounced(
3016
3016
  () => filterInputs.value[col.field],
3017
3017
  (newValue) => {
3018
- var _a2;
3019
3018
  const column = columnsMap.value.get(col.field);
3020
3019
  const currentCondition = columnConditions.value[col.field] || (column == null ? void 0 : column.condition);
3021
3020
  console.log("🔴 [DEBOUNCE-FIRED]", {
@@ -3034,8 +3033,7 @@ const _sfc_main$1 = /* @__PURE__ */ vue.defineComponent({
3034
3033
  if (currentCondition) {
3035
3034
  column.condition = currentCondition;
3036
3035
  } else if (column.value) {
3037
- const type = ((_a2 = column.type) == null ? void 0 : _a2.toLowerCase()) || "string";
3038
- column.condition = type === "string" ? "Contains" : "Equal";
3036
+ column.condition = "Equal";
3039
3037
  columnConditions.value[col.field] = column.condition;
3040
3038
  console.log("🟡 [DEFAULT-CONDITION-SET]", col.field, column.condition);
3041
3039
  }
@@ -3014,7 +3014,6 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
3014
3014
  watchDebounced(
3015
3015
  () => filterInputs.value[col.field],
3016
3016
  (newValue) => {
3017
- var _a2;
3018
3017
  const column = columnsMap.value.get(col.field);
3019
3018
  const currentCondition = columnConditions.value[col.field] || (column == null ? void 0 : column.condition);
3020
3019
  console.log("🔴 [DEBOUNCE-FIRED]", {
@@ -3033,8 +3032,7 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
3033
3032
  if (currentCondition) {
3034
3033
  column.condition = currentCondition;
3035
3034
  } else if (column.value) {
3036
- const type = ((_a2 = column.type) == null ? void 0 : _a2.toLowerCase()) || "string";
3037
- column.condition = type === "string" ? "Contains" : "Equal";
3035
+ column.condition = "Equal";
3038
3036
  columnConditions.value[col.field] = column.condition;
3039
3037
  console.log("🟡 [DEFAULT-CONDITION-SET]", col.field, column.condition);
3040
3038
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dolusoft/vue3-datatable",
3
- "version": "1.8.4",
3
+ "version": "1.8.5",
4
4
  "description": "Vue3 Datatable - fully customizable & easy to use datatable library",
5
5
  "private": false,
6
6
  "type": "module",