@comercti/vue-components-hmg 0.43.14 → 0.44.1
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 +644 -637
- package/comerc-style-guide.umd.js +2 -2
- package/index.d.ts +11 -2
- 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 = {
|
|
@@ -732,6 +734,8 @@ declare type __VLS_Props_32 = {
|
|
|
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;
|
|
735
739
|
};
|
|
736
740
|
|
|
737
741
|
declare type __VLS_Props_33 = {
|
|
@@ -1903,6 +1907,7 @@ type: "spinner" | "semi-circle" | "dots";
|
|
|
1903
1907
|
blur: boolean;
|
|
1904
1908
|
background: "smoky" | "transparent" | "black";
|
|
1905
1909
|
showLoading: boolean;
|
|
1910
|
+
showText: boolean;
|
|
1906
1911
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
1907
1912
|
|
|
1908
1913
|
export declare const CeMenuHeader: __VLS_WithTemplateSlots_13<typeof __VLS_component_13, __VLS_TemplateResult_13["slots"]>;
|
|
@@ -1937,7 +1942,11 @@ itemsPerPage: number;
|
|
|
1937
1942
|
paginationPages: number;
|
|
1938
1943
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1939
1944
|
|
|
1940
|
-
export declare const CeProgressIndicator: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
1945
|
+
export declare const CeProgressIndicator: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
1946
|
+
progress: number;
|
|
1947
|
+
variant: "circle" | "semicircle" | "line";
|
|
1948
|
+
showValue: boolean;
|
|
1949
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
1941
1950
|
|
|
1942
1951
|
export declare const CeProgressSteps: DefineComponent<IProgressStepsProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<IProgressStepsProps> & Readonly<{}>, {
|
|
1943
1952
|
position: "horizontal" | "vertical";
|
|
@@ -2007,9 +2016,9 @@ onSendValue?: (value: number | number[]) => any;
|
|
|
2007
2016
|
size: "small" | "large";
|
|
2008
2017
|
disabled: boolean;
|
|
2009
2018
|
variant: "default" | "range";
|
|
2019
|
+
showValue: boolean;
|
|
2010
2020
|
minValue: number;
|
|
2011
2021
|
maxValue: number;
|
|
2012
|
-
showValue: boolean;
|
|
2013
2022
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
2014
2023
|
|
|
2015
2024
|
export declare const CeSvgIcon: DefineComponent<__VLS_Props_33, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_33> & Readonly<{}>, {
|