@comercti/vue-components-hmg 0.43.15 → 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 +2 -2
- package/comerc-style-guide.es.js +657 -649
- package/comerc-style-guide.umd.js +2 -2
- package/index.d.ts +16 -4
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -411,6 +411,8 @@ declare type __VLS_Props = {
|
|
|
411
411
|
label?: string;
|
|
412
412
|
/** Define o tipo de progresso */
|
|
413
413
|
variant: 'circle' | 'semicircle' | 'line';
|
|
414
|
+
/** Define se o valor do progresso deve ser exibido */
|
|
415
|
+
showValue?: boolean;
|
|
414
416
|
};
|
|
415
417
|
|
|
416
418
|
declare type __VLS_Props_10 = {
|
|
@@ -725,13 +727,17 @@ declare type __VLS_Props_31 = {
|
|
|
725
727
|
|
|
726
728
|
declare type __VLS_Props_32 = {
|
|
727
729
|
/** Define o tipo de spinner */
|
|
728
|
-
type
|
|
730
|
+
type?: 'spinner' | 'semi-circle' | 'dots';
|
|
729
731
|
/** Define se o loading deve ser exibido ou não */
|
|
730
732
|
showLoading?: boolean;
|
|
731
733
|
/** Define a cor do background */
|
|
732
734
|
background?: 'smoky' | 'transparent' | 'black';
|
|
733
735
|
/** Aplica um efeito de blur no background */
|
|
734
736
|
blur?: boolean;
|
|
737
|
+
/** Define se o texto de carregamento deve ser exibido */
|
|
738
|
+
showText?: boolean;
|
|
739
|
+
/** Define o tamanho do loading spinner e semi-circle */
|
|
740
|
+
size?: 'small' | 'medium' | 'large';
|
|
735
741
|
};
|
|
736
742
|
|
|
737
743
|
declare type __VLS_Props_33 = {
|
|
@@ -1899,11 +1905,13 @@ dropdownRef: HTMLUListElement;
|
|
|
1899
1905
|
export declare const CeLayout: __VLS_WithTemplateSlots_22<typeof __VLS_component_22, __VLS_TemplateResult_22["slots"]>;
|
|
1900
1906
|
|
|
1901
1907
|
export declare const CeLoading: DefineComponent<__VLS_Props_32, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_32> & Readonly<{}>, {
|
|
1908
|
+
size: "small" | "medium" | "large";
|
|
1902
1909
|
type: "spinner" | "semi-circle" | "dots";
|
|
1903
1910
|
blur: boolean;
|
|
1904
1911
|
background: "smoky" | "transparent" | "black";
|
|
1905
1912
|
showLoading: boolean;
|
|
1906
|
-
|
|
1913
|
+
showText: boolean;
|
|
1914
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1907
1915
|
|
|
1908
1916
|
export declare const CeMenuHeader: __VLS_WithTemplateSlots_13<typeof __VLS_component_13, __VLS_TemplateResult_13["slots"]>;
|
|
1909
1917
|
|
|
@@ -1937,7 +1945,11 @@ itemsPerPage: number;
|
|
|
1937
1945
|
paginationPages: number;
|
|
1938
1946
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1939
1947
|
|
|
1940
|
-
export declare const CeProgressIndicator: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
1948
|
+
export declare const CeProgressIndicator: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
1949
|
+
progress: number;
|
|
1950
|
+
variant: "circle" | "semicircle" | "line";
|
|
1951
|
+
showValue: boolean;
|
|
1952
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
1941
1953
|
|
|
1942
1954
|
export declare const CeProgressSteps: DefineComponent<IProgressStepsProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<IProgressStepsProps> & Readonly<{}>, {
|
|
1943
1955
|
position: "horizontal" | "vertical";
|
|
@@ -2007,9 +2019,9 @@ onSendValue?: (value: number | number[]) => any;
|
|
|
2007
2019
|
size: "small" | "large";
|
|
2008
2020
|
disabled: boolean;
|
|
2009
2021
|
variant: "default" | "range";
|
|
2022
|
+
showValue: boolean;
|
|
2010
2023
|
minValue: number;
|
|
2011
2024
|
maxValue: number;
|
|
2012
|
-
showValue: boolean;
|
|
2013
2025
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
2014
2026
|
|
|
2015
2027
|
export declare const CeSvgIcon: DefineComponent<__VLS_Props_33, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_33> & Readonly<{}>, {
|