@mythpe/quasar-ui-qui 0.3.20 → 0.3.22

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.3.20",
3
+ "version": "0.3.22",
4
4
  "description": "MyTh Quasar UI Kit App Extension",
5
5
  "author": {
6
6
  "name": "MyTh Ahmed Faiz",
@@ -1666,7 +1666,7 @@ defineExpose({
1666
1666
  </q-page-sticky>
1667
1667
 
1668
1668
  <MInnerLoading
1669
- :showing="loading && !search"
1669
+ :showing="loading && !search && !getRows.length"
1670
1670
  style="z-index: 10000"
1671
1671
  />
1672
1672
  </div>
@@ -51,7 +51,7 @@ interface P {
51
51
  type?: Props['type'];
52
52
  ltr?: Props['ltr'];
53
53
  rtl?: Props['rtl'];
54
- inputClass?: Props['ltr'];
54
+ inputClass?: Props['inputClass'];
55
55
  }
56
56
 
57
57
  const props = withDefaults(defineProps<P>(), {
@@ -212,29 +212,31 @@ watch(url, (url) => {
212
212
  name="pad"
213
213
  v-bind="{...scopes,width,height,reset,save,clear,undo,confirmed}"
214
214
  >
215
- <Vue3Signature
216
- v-if="!url"
217
- ref="padRef"
218
- :class="{'q-mx-auto': !0, 'hidden': !!$slots.pad}"
219
- :clear-on-resize="clearOnResize"
220
- :disabled="isDisabled"
221
- :h="height"
222
- :sig-option="{
223
- penColor: color,
224
- backgroundColor: bg
225
- }"
226
- :w="width"
227
- :water-mark="waterMark"
228
- />
229
- <template v-else-if="!!url">
230
- <q-img
231
- :height="height"
232
- :src="url"
233
- :width="width"
234
- fit="contain"
235
- no-spinner
215
+ <q-no-ssr>
216
+ <Vue3Signature
217
+ v-if="!url"
218
+ ref="padRef"
219
+ :class="{'q-mx-auto': !0, 'hidden': !!$slots.pad}"
220
+ :clear-on-resize="clearOnResize"
221
+ :disabled="isDisabled"
222
+ :h="height"
223
+ :sig-option="{
224
+ penColor: color,
225
+ backgroundColor: bg
226
+ }"
227
+ :w="width"
228
+ :water-mark="waterMark"
236
229
  />
237
- </template>
230
+ <template v-else-if="!!url">
231
+ <q-img
232
+ :height="height"
233
+ :src="url"
234
+ :width="width"
235
+ fit="contain"
236
+ no-spinner
237
+ />
238
+ </template>
239
+ </q-no-ssr>
238
240
  </slot>
239
241
  <slot
240
242
  :confirmed="confirmed"
@@ -17,3 +17,4 @@ export * from './transition'
17
17
  export * from './typography'
18
18
 
19
19
  export default {}
20
+ export {}
@@ -984,6 +984,7 @@ export const useDtHelpers = (options: MaybeRefOrGetter<MDatatableProps>) => {
984
984
  fetchDatatableItems,
985
985
  exportData,
986
986
  openDialogTimeout,
987
+ beforeShowFilterDialog,
987
988
  beforeCloseFilterDialog,
988
989
  openFilterDialog,
989
990
  saveFilterDialog,