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/dist/pages/TablePage.vue.d.ts +11 -11
- package/dist/quasar-factory-lib.js +3 -3
- package/dist/quasar-factory-lib.umd.cjs +1 -1
- package/package.json +1 -1
- package/src/components/Table/components/TableSlotBody.vue +1 -1
- package/src/components/Table/components/TableSlotGrid.vue +2 -2
- package/src/pages/TablePage.vue +2 -3
package/package.json
CHANGED
|
@@ -99,7 +99,7 @@
|
|
|
99
99
|
/>
|
|
100
100
|
<IconWithToolTip
|
|
101
101
|
v-if="col.showIconWithToolTip"
|
|
102
|
-
:data-cy="col.
|
|
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
|
|
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.
|
|
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"
|
package/src/pages/TablePage.vue
CHANGED
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
:rows="rows"
|
|
14
14
|
:columns="columns"
|
|
15
15
|
:visible-columns="store.visiblecolumns"
|
|
16
|
-
:small-device="
|
|
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
|
-
|
|
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,
|