@comercti/vue-components-hmg 0.44.2 → 0.44.3
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/comerc-style-guide.cjs.js +2 -2
- package/comerc-style-guide.es.js +2 -2
- package/comerc-style-guide.umd.js +2 -2
- package/index.d.ts +2 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -306,7 +306,7 @@ onInput?: (value: Event) => any;
|
|
|
306
306
|
onBlur?: (value: string | number | CustomEvent<any>) => any;
|
|
307
307
|
onChange?: (value: string | number | CustomEvent<any>) => any;
|
|
308
308
|
}>, {
|
|
309
|
-
type: "text" | "password" | "email" | "number" | "tel" | "url" | "search" | "date" | "time" | "datetime-local";
|
|
309
|
+
type: "text" | "password" | "email" | "number" | "tel" | "url" | "search" | "date" | "time" | "datetime-local" | "month";
|
|
310
310
|
required: boolean;
|
|
311
311
|
invalid: boolean;
|
|
312
312
|
disabled: boolean;
|
|
@@ -924,7 +924,7 @@ declare type __VLS_Props_9 = {
|
|
|
924
924
|
/** Valor do input para two-way binding (v-model) */
|
|
925
925
|
modelValue?: string | number | null;
|
|
926
926
|
/** Tipo do input (text, password, email, etc) */
|
|
927
|
-
type?: 'text' | 'password' | 'email' | 'number' | 'tel' | 'url' | 'search' | 'date' | 'time' | 'datetime-local';
|
|
927
|
+
type?: 'text' | 'password' | 'email' | 'number' | 'tel' | 'url' | 'search' | 'date' | 'time' | 'datetime-local' | 'month';
|
|
928
928
|
/** ID única do input */
|
|
929
929
|
id?: string;
|
|
930
930
|
/** Máscara do input (Exemplo de formato esperado: ###.###.###-##)*/
|