@mythpe/quasar-ui-qui 0.3.86 → 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.86",
3
+ "version": "0.3.87",
4
4
  "description": "MyTh Quasar UI Kit App Extension",
5
5
  "author": {
6
6
  "name": "MyTh Ahmed Faiz",
@@ -33,6 +33,7 @@ interface P {
33
33
  xl?: Props['xl'];
34
34
  searchLength?: Props['searchLength'];
35
35
  noIcon?: Props['noIcon'];
36
+ selectProps?: Props['selectProps'];
36
37
  }
37
38
 
38
39
  const props = defineProps<P>()
@@ -129,7 +130,7 @@ defineOptions({
129
130
  popup-content-class="m-select__popup-phone"
130
131
  popup-no-route-dismiss
131
132
  service="country.codes"
132
- v-bind="$attrs"
133
+ v-bind="selectProps"
133
134
  @model="onSelectCountry"
134
135
  />
135
136
  </MRow>
@@ -16,4 +16,5 @@ export type MPhoneProps = MInputProps & {
16
16
  countryPhone?: string;
17
17
  searchLength?: MAxiosProps['searchLength'];
18
18
  noIcon?: boolean;
19
+ selectProps?: MAxiosProps;
19
20
  }