quasar-factory-lib 0.0.72 → 0.0.73

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.72",
100
+ "version": "0.0.73",
101
101
  "author": ""
102
102
  }
@@ -99,7 +99,7 @@
99
99
  />
100
100
  <IconWithToolTip
101
101
  v-if="col.showIconWithToolTip"
102
- :data-cy="col.IconWithToolTip + '-' + tablePropsData.row.id"
102
+ :data-cy="col.iconWithToolTipDataCy + '-' + tablePropsData.row.id"
103
103
  :icon-color="tablePropsData.row.iconWithToolTipColor"
104
104
  :icon-name="tablePropsData.row.iconWithToolTipName"
105
105
  :tool-tip-text="tablePropsData.row.toolTipText"
@@ -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) {
@@ -131,7 +131,7 @@
131
131
  <q-item-section>
132
132
  <IconWithToolTip
133
133
  v-if="col.showIconWithToolTip"
134
- :data-cy="col.IconWithToolTip + '-' + tablePropsData.row.id"
134
+ :data-cy="col.iconWithToolTipDataCy + '-' + tablePropsData.row.id"
135
135
  :icon-color="tablePropsData.row.iconWithToolTipColor"
136
136
  :icon-name="tablePropsData.row.iconWithToolTipName"
137
137
  :tool-tip-text="tablePropsData.row.toolTipText"
@@ -183,8 +183,7 @@ export default {
183
183
  required: true,
184
184
  sortable: true,
185
185
  showIconWithToolTip: true,
186
- dataCy: 'iconWithToolTip',
187
- iconWithToolTipEmit: 'onClickIconToolTip',
186
+ iconWithToolTipDataCy: 'iconWithToolTip',
188
187
  iconWithToolTipColor: (row: { iconWithToolTipColor: string }) => row.iconWithToolTipColor,
189
188
  iconWithToolTipName: (row: { iconWithToolTipName: string }) => row.iconWithToolTipName,
190
189
  toolTipText: (row: { toolTipText: string }) => row.toolTipText,