maz-ui 3.43.2 → 3.43.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/components/MazInputCode.mjs +41 -36
- package/components/MazPhoneNumberInput/PhoneInput.vue.d.ts +4 -0
- package/components/MazPhoneNumberInput.d.ts +5 -0
- package/components/MazPhoneNumberInput.mjs +1 -1
- package/components/assets/MazInputCode.css +1 -1
- package/components/assets/MazPhoneNumberInput.css +1 -1
- package/components/chunks/{MazBtn-CFwe--oV.mjs → MazBtn-BOb7Fg_d.mjs} +2 -2
- package/components/chunks/{MazCheckbox-BmPd9Bqa.mjs → MazCheckbox-CCa7grGF.mjs} +1 -1
- package/components/chunks/{MazIcon-DL8XAldH.mjs → MazIcon-BKuhvwwq.mjs} +1 -1
- package/components/chunks/{MazPhoneNumberInput-1tGT28Sa.mjs → MazPhoneNumberInput-HeEEyDu0.mjs} +452 -439
- package/components/chunks/{MazSpinner-BjIFFTYY.mjs → MazSpinner-2ti3NQjo.mjs} +1 -1
- package/nuxt/index.json +1 -1
- package/package.json +1 -1
- package/types/components/MazPhoneNumberInput/PhoneInput.vue.d.ts +4 -0
- package/types/components/MazPhoneNumberInput.vue.d.ts +5 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import '../assets/MazSpinner.css';
|
|
2
2
|
import { defineComponent as t, openBlock as o, createElementBlock as c, normalizeClass as n, pushScopeId as s, popScopeId as r, createElementVNode as i } from "vue";
|
|
3
|
-
import { _ as p } from "./MazPhoneNumberInput-
|
|
3
|
+
import { _ as p } from "./MazPhoneNumberInput-HeEEyDu0.mjs";
|
|
4
4
|
const a = (e) => (s("data-v-c67298ec"), e = e(), r(), e), d = ["width", "height"], l = /* @__PURE__ */ a(() => /* @__PURE__ */ i(
|
|
5
5
|
"path",
|
|
6
6
|
{ d: "M43.935,25.145c0-10.318-8.364-18.683-18.683-18.683c-10.318,0-18.683,8.365-18.683,18.683h4.068c0-8.071,6.543-14.615,14.615-14.615c8.072,0,14.615,6.543,14.615,14.615H43.935z" },
|
package/nuxt/index.json
CHANGED
package/package.json
CHANGED
|
@@ -5,6 +5,7 @@ declare let __VLS_typeProps: {
|
|
|
5
5
|
size: Size;
|
|
6
6
|
locales: Translations;
|
|
7
7
|
label?: string;
|
|
8
|
+
placeholder?: string;
|
|
8
9
|
noExample?: boolean;
|
|
9
10
|
disabled?: boolean;
|
|
10
11
|
hasRadius?: boolean;
|
|
@@ -20,6 +21,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
20
21
|
class: undefined;
|
|
21
22
|
style: undefined;
|
|
22
23
|
label: undefined;
|
|
24
|
+
placeholder: undefined;
|
|
23
25
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
24
26
|
"update:modelValue": (modelValue: string) => void;
|
|
25
27
|
"update:model-value": (phoneNumber?: string | undefined) => void;
|
|
@@ -27,11 +29,13 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
27
29
|
class: undefined;
|
|
28
30
|
style: undefined;
|
|
29
31
|
label: undefined;
|
|
32
|
+
placeholder: undefined;
|
|
30
33
|
}>>> & {
|
|
31
34
|
"onUpdate:modelValue"?: ((modelValue: string) => any) | undefined;
|
|
32
35
|
"onUpdate:model-value"?: ((phoneNumber?: string | undefined) => any) | undefined;
|
|
33
36
|
}, {
|
|
34
37
|
label: string;
|
|
38
|
+
placeholder: string;
|
|
35
39
|
}, {}>;
|
|
36
40
|
export default _default;
|
|
37
41
|
type __VLS_WithDefaults<P, D> = {
|
|
@@ -20,6 +20,8 @@ export type Props = {
|
|
|
20
20
|
id?: string;
|
|
21
21
|
/** Placeholder of the input */
|
|
22
22
|
placeholder?: string;
|
|
23
|
+
/** label of the input */
|
|
24
|
+
label?: string;
|
|
23
25
|
/** List of country codes to place first in the select list - Ex: ['FR', 'BE', 'GE'] */
|
|
24
26
|
preferredCountries?: CountryCode[];
|
|
25
27
|
/** List of country codes to be removed from the select list - Ex: ['FR', 'BE', 'GE'] */
|
|
@@ -115,6 +117,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
115
117
|
defaultCountryCode: undefined;
|
|
116
118
|
id: undefined;
|
|
117
119
|
placeholder: undefined;
|
|
120
|
+
label: undefined;
|
|
118
121
|
preferredCountries: undefined;
|
|
119
122
|
ignoredCountries: undefined;
|
|
120
123
|
onlyCountries: undefined;
|
|
@@ -146,6 +149,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
146
149
|
defaultCountryCode: undefined;
|
|
147
150
|
id: undefined;
|
|
148
151
|
placeholder: undefined;
|
|
152
|
+
label: undefined;
|
|
149
153
|
preferredCountries: undefined;
|
|
150
154
|
ignoredCountries: undefined;
|
|
151
155
|
onlyCountries: undefined;
|
|
@@ -165,6 +169,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
165
169
|
"onUpdate:country-code"?: ((countryCode?: CountryCode | undefined) => any) | undefined;
|
|
166
170
|
}, {
|
|
167
171
|
size: Size;
|
|
172
|
+
label: string;
|
|
168
173
|
style: string | false | import("vue").CSSProperties | import("vue").StyleValue[] | null;
|
|
169
174
|
orientation: "col" | "row" | "responsive";
|
|
170
175
|
id: string;
|