quasar-factory-lib 0.0.83 → 0.0.84
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/components/Table/Table.vue.d.ts +4 -1
- package/dist/layouts/PdaLayout.vue.d.ts +4 -1
- package/dist/pages/TablePage.vue.d.ts +4 -1
- package/dist/quasar-factory-lib.js +77 -74
- package/dist/quasar-factory-lib.umd.cjs +6 -6
- package/package.json +1 -1
- package/src/components/Table/Table.vue +4 -1
- package/src/components/Table/components/TableSlotGrid.vue +2 -2
- package/src/pages/TablePage.vue +2 -2
package/package.json
CHANGED
|
@@ -228,7 +228,10 @@ export default defineComponent({
|
|
|
228
228
|
'finishMaintenanceTicket',
|
|
229
229
|
'onRowClick',
|
|
230
230
|
'onClickIconToolTip',
|
|
231
|
-
'onUpdateSelected'
|
|
231
|
+
'onUpdateSelected',
|
|
232
|
+
'setLineRemainingQty',
|
|
233
|
+
'setLineNoStock',
|
|
234
|
+
'onDoneLineMaintenanceTasks'
|
|
232
235
|
],
|
|
233
236
|
data () {
|
|
234
237
|
return {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div
|
|
3
3
|
:id="'card-container-' + tablePropsData.row.id"
|
|
4
|
-
|
|
4
|
+
class="col-xs-12 col-sm-12 grid-style-transition"
|
|
5
5
|
:style="tablePropsData.selected ? 'transform: scale(0.95);' : ''"
|
|
6
6
|
>
|
|
7
7
|
<q-card
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
>
|
|
34
34
|
<q-item-section>
|
|
35
35
|
<q-item-label class="itemsFontSize ellipsis text-color-lightGray">
|
|
36
|
-
|
|
36
|
+
{{
|
|
37
37
|
col.label
|
|
38
38
|
}}
|
|
39
39
|
</q-item-label>
|
package/src/pages/TablePage.vue
CHANGED
|
@@ -180,8 +180,8 @@ export default {
|
|
|
180
180
|
showCustomizedCheckBox: true,
|
|
181
181
|
checkedIcon: 'check_circle',
|
|
182
182
|
uncheckedIcon: 'cancel',
|
|
183
|
-
checkBoxColorCaseTrue: '
|
|
184
|
-
checkBoxColorCaseFalse: '
|
|
183
|
+
checkBoxColorCaseTrue: 'green',
|
|
184
|
+
checkBoxColorCaseFalse: 'red',
|
|
185
185
|
checkBoxDataCy: '',
|
|
186
186
|
type: 'boolean'
|
|
187
187
|
},
|