quasar-factory-lib 0.0.32 → 0.0.33

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/package.json CHANGED
@@ -97,6 +97,6 @@
97
97
  "release": "standard-version"
98
98
  },
99
99
  "type": "module",
100
- "version": "0.0.32",
100
+ "version": "0.0.33",
101
101
  "author": ""
102
102
  }
@@ -27,7 +27,7 @@
27
27
  v-for="col in tablePropsData.cols.filter((col: any) => col.name !== 'desc')"
28
28
  :key="col.name"
29
29
  >
30
- <q-item-section :class="tableProps.row.customizedClass && tableProps.row.customizedClass(col.name, tablePropsData.row[col.name])">
30
+ <q-item-section>
31
31
  <q-item-label class="itemsFontSize ellipsis text-light-gray">
32
32
  {{
33
33
  col.label
@@ -38,7 +38,10 @@
38
38
  <q-item-section side>
39
39
  <q-item-label
40
40
  v-if="getColumnValue(col)"
41
- class="itemsFontSize text-almost-black"
41
+ :class="[
42
+ tableProps.row.customizedClass ? tableProps.row.customizedClass(col.name, tablePropsData.row[col.name]) : '',
43
+ 'itemsFontSize text-almost-black'
44
+ ]"
42
45
  >
43
46
  <q-icon
44
47
  v-if="col.editable"