@mythpe/quasar-ui-qui 0.3.85 → 0.3.87

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.85",
3
+ "version": "0.3.87",
4
4
  "description": "MyTh Quasar UI Kit App Extension",
5
5
  "author": {
6
6
  "name": "MyTh Ahmed Faiz",
@@ -32,6 +32,8 @@ interface P {
32
32
  lg?: Props['lg'];
33
33
  xl?: Props['xl'];
34
34
  searchLength?: Props['searchLength'];
35
+ noIcon?: Props['noIcon'];
36
+ selectProps?: Props['selectProps'];
35
37
  }
36
38
 
37
39
  const props = defineProps<P>()
@@ -116,7 +118,7 @@ defineOptions({
116
118
  :class="{hidden: readonly}"
117
119
  :dense="dense"
118
120
  :name="countryName"
119
- :prepend-icon="$q.screen.gt.xs ? 'ion-keypad' : undefined"
121
+ :prepend-icon="noIcon ? undefined : ($q.screen.gt.xs ? 'ion-keypad' : undefined)"
120
122
  :required="readonly ? undefined : required"
121
123
  :search-length="searchLength??0"
122
124
  :view-mode="readonly"
@@ -128,7 +130,7 @@ defineOptions({
128
130
  popup-content-class="m-select__popup-phone"
129
131
  popup-no-route-dismiss
130
132
  service="country.codes"
131
- v-bind="$attrs"
133
+ v-bind="selectProps"
132
134
  @model="onSelectCountry"
133
135
  />
134
136
  </MRow>
@@ -15,4 +15,6 @@ export type MPhoneProps = MInputProps & {
15
15
  */
16
16
  countryPhone?: string;
17
17
  searchLength?: MAxiosProps['searchLength'];
18
+ noIcon?: boolean;
19
+ selectProps?: MAxiosProps;
18
20
  }