quasar-factory-lib 0.0.71 → 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.71",
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"
@@ -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="() => {
@@ -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"
@@ -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"
@@ -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,