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/package.json CHANGED
@@ -97,6 +97,6 @@
97
97
  "release": "standard-version"
98
98
  },
99
99
  "type": "module",
100
- "version": "0.0.83",
100
+ "version": "0.0.84",
101
101
  "author": ""
102
102
  }
@@ -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
- :class="'q-pa-xs col-xs-12 col-sm-6 col-md-4 col-lg-3 grid-style-transition'"
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>
@@ -180,8 +180,8 @@ export default {
180
180
  showCustomizedCheckBox: true,
181
181
  checkedIcon: 'check_circle',
182
182
  uncheckedIcon: 'cancel',
183
- checkBoxColorCaseTrue: 'positive',
184
- checkBoxColorCaseFalse: 'negative',
183
+ checkBoxColorCaseTrue: 'green',
184
+ checkBoxColorCaseFalse: 'red',
185
185
  checkBoxDataCy: '',
186
186
  type: 'boolean'
187
187
  },