@comercti/vue-components-hmg 0.44.1 → 0.44.2
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 +1 -1
- package/comerc-style-guide.es.js +17 -16
- package/comerc-style-guide.umd.js +1 -1
- package/index.d.ts +5 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -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 = {
|
|
@@ -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
|
|