quasar-factory-lib 0.0.71 → 0.0.72

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.71",
100
+ "version": "0.0.72",
101
101
  "author": ""
102
102
  }
@@ -183,7 +183,7 @@ export default {
183
183
  return tablePropsData.row.btnPauseDisabled
184
184
  } else {
185
185
  return false
186
- }
186
+ }
187
187
  },
188
188
  getButtonColor (tablePropsData, col, ):string {
189
189
  if (col.btnColor) {
@@ -120,7 +120,7 @@
120
120
  <CustomizedButton
121
121
  v-if="col.showCustomizedButton"
122
122
  :data-cy="col.colButtonDataCy + '-' + tablePropsData.row.id"
123
- :btn-color="col.btnColor || 'primary'"
123
+ :btn-color="getButtonColor(tablePropsData, col)"
124
124
  :btn-icon="col.btnIcon|| ''"
125
125
  :btn-disable="getBtnDisabled(tablePropsData, col)"
126
126
  @on-click-button="() => {
@@ -13,7 +13,7 @@
13
13
  :rows="rows"
14
14
  :columns="columns"
15
15
  :visible-columns="store.visiblecolumns"
16
- :small-device="false"
16
+ :small-device="true"
17
17
  :store="store"
18
18
  :table-style="tableStyle"
19
19
  :show-skeleton="showSkeleton"