@comercti/vue-components-hmg 0.44.1 → 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 +19 -18
- package/comerc-style-guide.umd.js +2 -2
- package/index.d.ts +7 -4
- 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;
|
|
@@ -727,7 +727,7 @@ declare type __VLS_Props_31 = {
|
|
|
727
727
|
|
|
728
728
|
declare type __VLS_Props_32 = {
|
|
729
729
|
/** Define o tipo de spinner */
|
|
730
|
-
type
|
|
730
|
+
type?: 'spinner' | 'semi-circle' | 'dots';
|
|
731
731
|
/** Define se o loading deve ser exibido ou não */
|
|
732
732
|
showLoading?: boolean;
|
|
733
733
|
/** Define a cor do background */
|
|
@@ -736,6 +736,8 @@ declare type __VLS_Props_32 = {
|
|
|
736
736
|
blur?: boolean;
|
|
737
737
|
/** Define se o texto de carregamento deve ser exibido */
|
|
738
738
|
showText?: boolean;
|
|
739
|
+
/** Define o tamanho do loading spinner e semi-circle */
|
|
740
|
+
size?: 'small' | 'medium' | 'large';
|
|
739
741
|
};
|
|
740
742
|
|
|
741
743
|
declare type __VLS_Props_33 = {
|
|
@@ -922,7 +924,7 @@ declare type __VLS_Props_9 = {
|
|
|
922
924
|
/** Valor do input para two-way binding (v-model) */
|
|
923
925
|
modelValue?: string | number | null;
|
|
924
926
|
/** Tipo do input (text, password, email, etc) */
|
|
925
|
-
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';
|
|
926
928
|
/** ID única do input */
|
|
927
929
|
id?: string;
|
|
928
930
|
/** Máscara do input (Exemplo de formato esperado: ###.###.###-##)*/
|
|
@@ -1903,12 +1905,13 @@ dropdownRef: HTMLUListElement;
|
|
|
1903
1905
|
export declare const CeLayout: __VLS_WithTemplateSlots_22<typeof __VLS_component_22, __VLS_TemplateResult_22["slots"]>;
|
|
1904
1906
|
|
|
1905
1907
|
export declare const CeLoading: DefineComponent<__VLS_Props_32, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_32> & Readonly<{}>, {
|
|
1908
|
+
size: "small" | "medium" | "large";
|
|
1906
1909
|
type: "spinner" | "semi-circle" | "dots";
|
|
1907
1910
|
blur: boolean;
|
|
1908
1911
|
background: "smoky" | "transparent" | "black";
|
|
1909
1912
|
showLoading: boolean;
|
|
1910
1913
|
showText: boolean;
|
|
1911
|
-
}, {}, {}, {}, string, ComponentProvideOptions,
|
|
1914
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1912
1915
|
|
|
1913
1916
|
export declare const CeMenuHeader: __VLS_WithTemplateSlots_13<typeof __VLS_component_13, __VLS_TemplateResult_13["slots"]>;
|
|
1914
1917
|
|