@comercti/vue-components 0.14.0 → 0.15.0
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 +27 -27
- package/comerc-style-guide.es.js +1988 -1986
- package/comerc-style-guide.umd.js +27 -27
- package/index.d.ts +2 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -244,7 +244,7 @@ onInput?: (value: string | number | CustomEvent<any>) => any;
|
|
|
244
244
|
onBlur?: (value: Event) => any;
|
|
245
245
|
onChange?: (value: string | number | CustomEvent<any>) => any;
|
|
246
246
|
}>, {
|
|
247
|
-
type: "text" | "password" | "email" | "number" | "tel" | "url" | "search" | "date";
|
|
247
|
+
type: "text" | "password" | "email" | "number" | "tel" | "url" | "search" | "date" | "time";
|
|
248
248
|
invalid: boolean;
|
|
249
249
|
disabled: boolean;
|
|
250
250
|
reserveSpaceFeedback: boolean;
|
|
@@ -763,7 +763,7 @@ declare type __VLS_Props_8 = {
|
|
|
763
763
|
/** Valor do input para two-way binding (v-model) */
|
|
764
764
|
modelValue?: string | number | null;
|
|
765
765
|
/** Tipo do input (text, password, email, etc) */
|
|
766
|
-
type?: 'text' | 'password' | 'email' | 'number' | 'tel' | 'url' | 'search' | 'date';
|
|
766
|
+
type?: 'text' | 'password' | 'email' | 'number' | 'tel' | 'url' | 'search' | 'date' | 'time';
|
|
767
767
|
/** ID única do input */
|
|
768
768
|
id?: string;
|
|
769
769
|
/** Máscara do input (cpf, cnpj, cel, tel, date, cep) */
|