@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
|
@@ -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="
|
|
133
|
+
v-bind="selectProps"
|
|
132
134
|
@model="onSelectCountry"
|
|
133
135
|
/>
|
|
134
136
|
</MRow>
|