@mythpe/quasar-ui-qui 0.4.3 → 0.4.4

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.3",
3
+ "version": "0.4.4",
4
4
  "description": "MyTh Quasar UI Kit App Extension",
5
5
  "author": {
6
6
  "name": "MyTh Ahmed Faiz",
@@ -35,6 +35,7 @@ interface P {
35
35
  searchLength?: Props['searchLength'];
36
36
  noIcon?: Props['noIcon'];
37
37
  selectProps?: Props['selectProps'];
38
+ noCountry?: Props['noCountry'];
38
39
  }
39
40
 
40
41
  const props = defineProps<P>()
@@ -89,10 +90,10 @@ defineOptions({
89
90
  xl: xl,
90
91
  }"
91
92
  >
92
- <MRow col>
93
+ <MRow :col="noCountry ? undefined : !0">
93
94
  <MAxios
94
95
  :autocomplete="false"
95
- :class="['self-start overflow-hidden',{hidden: readonly,'order-last': $q.lang.rtl}]"
96
+ :class="['self-start overflow-hidden',{hidden: readonly || !!noCountry,'order-last': $q.lang.rtl}]"
96
97
  :dense="dense"
97
98
  :name="countryName"
98
99
  :prepend-icon="noIcon ? undefined : (!isSmall ? 'ion-keypad' : undefined)"
@@ -129,7 +130,7 @@ defineOptions({
129
130
  dense,
130
131
  viewModeValue: viewModeValue !== undefined ? viewModeValue : getPlaceholder,
131
132
  placeholder:getPlaceholder,
132
- col: !0,
133
+ col: noCountry ? 12 : !0,
133
134
  viewMode: (readonly || viewMode) ? !0 : !countryValue,
134
135
  readonly: undefined,
135
136
  }"
@@ -17,4 +17,5 @@ export type MPhoneProps = MInputProps & {
17
17
  searchLength?: MAxiosProps['searchLength'];
18
18
  noIcon?: boolean;
19
19
  selectProps?: MAxiosProps;
20
+ noCountry?: boolean;
20
21
  }