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.
@@ -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-1tGT28Sa.mjs";
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
@@ -4,7 +4,7 @@
4
4
  "compatibility": {
5
5
  "nuxt": "^3.0.0"
6
6
  },
7
- "version": "3.43.2",
7
+ "version": "3.43.4",
8
8
  "builder": {
9
9
  "@nuxt/module-builder": "0.6.0",
10
10
  "unbuild": "2.0.0"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "maz-ui",
3
- "version": "3.43.2",
3
+ "version": "3.43.4",
4
4
  "description": "A standalone components library for Vue.Js 3 & Nuxt.Js 3",
5
5
  "author": "Louis Mazel <me@loicmazuel.com>",
6
6
  "main": "./modules/index.cjs",
@@ -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;