quasar-factory-lib 0.0.73 → 0.0.75

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.73",
100
+ "version": "0.0.75",
101
101
  "author": ""
102
102
  }
@@ -2,7 +2,7 @@
2
2
  <q-badge
3
3
  class="cursor-pointer"
4
4
  :data-cy="'badge' + dataCy"
5
- :color="badgeColor"
5
+ :class="badgeColor"
6
6
  :text-color="badgeTextColor"
7
7
  :outline="badgeOutline"
8
8
  :rounded="badgeRounded"
@@ -88,7 +88,7 @@
88
88
  :customized-icon-color="(tablePropsData.row[col.name] ? col.customizedIconColorCaseTrue : col.customizedIconColorCaseFalse) || ''"
89
89
  />
90
90
  <CustomizedButton
91
- v-if="col.showCustomizedButton"
91
+ v-if="col.showCustomizedButton || col.showCustomizedButtonWithColText"
92
92
  :data-cy="col.colButtonDataCy + '-' + tablePropsData.row.id"
93
93
  :btn-color="getButtonColor(tablePropsData, col)"
94
94
  :btn-icon="col.btnIcon|| ''"
@@ -118,7 +118,7 @@
118
118
 
119
119
  <q-item-section>
120
120
  <CustomizedButton
121
- v-if="col.showCustomizedButton"
121
+ v-if="col.showCustomizedButton || col.showCustomizedButtonWithColText"
122
122
  :data-cy="col.colButtonDataCy + '-' + tablePropsData.row.id"
123
123
  :btn-color="getButtonColor(tablePropsData, col)"
124
124
  :btn-icon="col.btnIcon|| ''"
@@ -115,7 +115,7 @@ export default {
115
115
  field: 'btnPause',
116
116
  sortable: true,
117
117
  align: 'left',
118
- showCustomizedButton: true,
118
+ showCustomizedButtonWithColText: true,
119
119
  btnIcon: 'save',
120
120
  btnEmit: 'onClickButton',
121
121
  dataCy: 'onClickButton',