@mythpe/quasar-ui-qui 0.3.94 → 0.3.95

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.94",
3
+ "version": "0.3.95",
4
4
  "description": "MyTh Quasar UI Kit App Extension",
5
5
  "author": {
6
6
  "name": "MyTh Ahmed Faiz",
@@ -39,6 +39,7 @@ type Props = {
39
39
  excel?: boolean;
40
40
  exportUrl?: MDatatableProps['exportUrl'];
41
41
  hideSearch?: boolean;
42
+ hideSearchColumns?: boolean;
42
43
  hideTitle?: boolean;
43
44
  searchDebounce?: MDatatableProps['searchDebounce'];
44
45
  withIndex?: MDatatableProps['withIndex'];
@@ -119,6 +120,7 @@ const props = withDefaults(defineProps<Props>(), {
119
120
  excel: undefined,
120
121
  exportUrl: undefined,
121
122
  hideSearch: !1,
123
+ hideSearchColumns: !1,
122
124
  hideTitle: undefined,
123
125
  searchDebounce: 600,
124
126
  withIndex: undefined,
@@ -926,7 +928,10 @@ defineExpose({
926
928
  </q-tooltip>
927
929
  </q-icon>
928
930
  </template>
929
- <template #after>
931
+ <template
932
+ v-if="!hideSearchColumns"
933
+ #after
934
+ >
930
935
  <q-btn
931
936
  :aria-label="__('menu')"
932
937
  :icon="pluginOptions.dt?.searchInput?.optionsIcon || 'ion-ios-options'"
@@ -246,6 +246,7 @@ export type MDatatableProps<I extends GenericFormValues = GenericFormValues> = O
246
246
  importBtn?: boolean;
247
247
  noExampleBtn?: boolean;
248
248
  hideSearch?: boolean;
249
+ hideSearchColumns?: boolean;
249
250
  hideTitle?: boolean;
250
251
  searchDebounce?: string | number;
251
252
  withIndex?: string | string[];