@mythpe/quasar-ui-qui 0.4.82 → 0.4.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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mythpe/quasar-ui-qui",
3
- "version": "0.4.82",
3
+ "version": "0.4.84",
4
4
  "description": "MyTh Quasar UI Kit App Extension",
5
5
  "author": {
6
6
  "name": "MyTh Ahmed Faiz",
@@ -1204,9 +1204,8 @@ defineExpose({
1204
1204
  name="bottom-search"
1205
1205
  />
1206
1206
  </MRow>
1207
- <MRow
1208
- gutter="sm"
1209
- >
1207
+ <!--Top Selection-->
1208
+ <MRow gutter="sm">
1210
1209
  <template
1211
1210
  v-for="(contextBtn,i) in contextmenuItems as GenericMDtBtn[]"
1212
1211
  :key="`top-s-${i}`"
@@ -193,7 +193,7 @@ const customViewModeValue = computed(() => {
193
193
  const k = props.optionLabel === undefined ? 'label' : (typeof props.optionLabel === 'function' ? props.optionLabel(opt) : props.optionLabel)
194
194
  return opt[k]
195
195
  })
196
- return opts?.length ? opts.join(', ') : undefined
196
+ return opts?.length ? opts?.join(', ') : '-'
197
197
  }
198
198
  const opt = options.value?.find((e) => {
199
199
  const k = props.optionValue === undefined ? 'value' : (typeof props.optionValue === 'function' ? props.optionValue(e) : props.optionValue)
@@ -951,13 +951,18 @@ export const useDtHelpers = (options: MaybeRefOrGetter<MDatatableProps>, emit?:
951
951
  return keys.filter(e => !skipSlots.includes(e))
952
952
  })
953
953
  const onClickTopMenu = (item: any) => {
954
- if (item.multiClick && selected.value.length > 1) {
955
- item.multiClick(selected.value)
954
+ if (selected.value.length > 1) {
955
+ if (item.multiClick) {
956
+ item.multiClick(selected.value)
957
+ }
956
958
  return
957
959
  }
958
-
959
- if (item.click) {
960
- item.click(selected.value[0], 0)
960
+ if (item.click && selected.value.length === 1) {
961
+ const i = toValue(selected.value[0])
962
+ const index = getRows.value.findIndex((e: any) => e?.id === i?.id)
963
+ if (index !== -1) {
964
+ item.click(getRows.value[index], index)
965
+ }
961
966
  }
962
967
  }
963
968