@mythpe/quasar-ui-qui 0.2.52 → 0.2.53

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.2.52",
3
+ "version": "0.2.53",
4
4
  "description": "MyTh Quasar UI Kit App Extension",
5
5
  "author": {
6
6
  "name": "MyTh Ahmed Faiz",
@@ -757,7 +757,7 @@ export const useDtHelpers = (options: MaybeRefOrGetter<MDatatableProps>) => {
757
757
  },
758
758
  order: 400
759
759
  },
760
- ...(props.contextItems || [])
760
+ ...(toValue(props.contextItems) || [])
761
761
  ].sort((a, b) => (a.order ?? 0) - (b.order ?? 0))))
762
762
  // const activeContextItems = computed(() => contextmenuItems.value.filter((e, i) => typeof e.showIf === 'function' ? e.showIf(e, i) : e.showIf !== !1) as Required<MDatatableProps['contextItems']> || [])
763
763
  const activeContextItems = computed(() => contextmenuItems.value)