quasar-factory-lib 0.0.27 → 0.0.29

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
@@ -3,7 +3,7 @@
3
3
  "@quasar/extras": "^1.16.11",
4
4
  "global": "^4.4.0",
5
5
  "pinia": "^3.0.1",
6
- "quasar": "^2.17.0",
6
+ "quasar": "^2.18.0",
7
7
  "vue": "^3.5.11",
8
8
  "vue-i18n": "^10.0.4"
9
9
  },
@@ -97,6 +97,6 @@
97
97
  "release": "standard-version"
98
98
  },
99
99
  "type": "module",
100
- "version": "0.0.27",
100
+ "version": "0.0.29",
101
101
  "author": ""
102
102
  }
@@ -19,14 +19,14 @@
19
19
  :props="tableProps"
20
20
  >
21
21
  <span
22
- :style="tablePropsData.row.tdStyle"
22
+ :style="tableProps.row.rowStyleFn(col.name, tableProps.row.name)"
23
23
  v-if="getColumnValue(col)"
24
24
  v-html="tableProps.row[col.name]"
25
- />
25
+ ></span>
26
26
  <!-- fa-solid fa-pen-to-square -->
27
27
  <q-icon
28
28
  v-if="col.editable"
29
- name="edit"
29
+ name="fa-solid fa-pen-to-square "
30
30
  color="primary"
31
31
  size="sm"
32
32
  class="cursor-pointer"
@@ -39,7 +39,7 @@
39
39
  <q-item-label
40
40
  v-if="getColumnValue(col)"
41
41
  class="itemsFontSize text-almost-black"
42
- :style="tablePropsData.row.tdStyle"
42
+ :style="tableProps.row.rowStyleFn(col.name, tableProps.row.name)"
43
43
  >
44
44
  <q-icon
45
45
  v-if="col.editable"
package/src/css/app.css CHANGED
@@ -41,4 +41,11 @@
41
41
 
42
42
  .text-color-positive {
43
43
  color: var(--positive);
44
+ }
45
+
46
+ .bg-negative {
47
+ background-color: var(--negative);
48
+ }
49
+ .bg-positive {
50
+ background-color: var(--positive);
44
51
  }