quasar-factory-lib 0.0.65 → 0.0.66

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.65",
100
+ "version": "0.0.66",
101
101
  "author": ""
102
102
  }
@@ -93,7 +93,7 @@
93
93
  :data-cy="col.colButtonDataCy + '-' + tablePropsData.row.id"
94
94
  :btn-color="col.btnColor || 'primary'"
95
95
  :btn-icon="col.btnIcon|| ''"
96
- :btn-disable="col.btnDisable || tablePropsData.row.btnDisable"
96
+ :btn-disable="tablePropsData.row.btnDisable"
97
97
  @on-click-button="() => {
98
98
  $emit('onClickButton', col.btnEmit, tablePropsData.row)
99
99
  }"
@@ -122,7 +122,7 @@
122
122
  :data-cy="col.colButtonDataCy + '-' + tablePropsData.row.id"
123
123
  :btn-color="col.btnColor || 'primary'"
124
124
  :btn-icon="col.btnIcon|| ''"
125
- :btn-disable="col.btnDisable || tablePropsData.row.btnDisable"
125
+ :btn-disable="tablePropsData.row.btnDisable"
126
126
  @on-click-button="() => {
127
127
  $emit('onClickButton', col.btnEmit, tablePropsData.row)
128
128
  }"
@@ -119,7 +119,8 @@ export default {
119
119
  btnIcon: 'save',
120
120
  btnEmit: 'onClickButton',
121
121
  dataCy: 'onClickButton',
122
- btnColor: 'primary'
122
+ btnColor: 'primary',
123
+ btnDisable: (row: { btnDisable: string }) => row.btnDisable
123
124
  },
124
125
  {
125
126
  name: 'carbs',