@comercti/vue-components-hmg 0.24.3 → 0.24.5
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 +628 -609
- package/comerc-style-guide.umd.js +2 -2
- package/index.d.ts +7 -3
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -161,8 +161,8 @@ close: (value: boolean) => any;
|
|
|
161
161
|
onClose?: (value: boolean) => any;
|
|
162
162
|
}>, {
|
|
163
163
|
background: "white" | "green";
|
|
164
|
-
rounded: boolean;
|
|
165
164
|
position: "top" | "bottom";
|
|
165
|
+
rounded: boolean;
|
|
166
166
|
isOpen: boolean;
|
|
167
167
|
showIcon: boolean;
|
|
168
168
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
@@ -1806,8 +1806,8 @@ updatePerPage: (value: number) => any;
|
|
|
1806
1806
|
onUpdatePerPage?: (value: number) => any;
|
|
1807
1807
|
}>, {
|
|
1808
1808
|
disabled: boolean;
|
|
1809
|
-
textDirection: "left" | "right";
|
|
1810
1809
|
position: "top" | "bottom";
|
|
1810
|
+
textDirection: "left" | "right";
|
|
1811
1811
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
1812
1812
|
menuRef: HTMLDivElement;
|
|
1813
1813
|
referenceRef: HTMLButtonElement;
|
|
@@ -1856,7 +1856,9 @@ paginationPages: number;
|
|
|
1856
1856
|
|
|
1857
1857
|
export declare const CeProgressIndicator: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
1858
1858
|
|
|
1859
|
-
export declare const CeProgressSteps: DefineComponent<IProgressStepsProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<IProgressStepsProps> & Readonly<{}>, {
|
|
1859
|
+
export declare const CeProgressSteps: DefineComponent<IProgressStepsProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<IProgressStepsProps> & Readonly<{}>, {
|
|
1860
|
+
position: "horizontal" | "vertical";
|
|
1861
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
1860
1862
|
|
|
1861
1863
|
export declare const CeRadioGroup: DefineComponent<__VLS_Props_11, {
|
|
1862
1864
|
/** Focus radio input */
|
|
@@ -2140,12 +2142,14 @@ declare interface IItems {
|
|
|
2140
2142
|
title: string;
|
|
2141
2143
|
description: string;
|
|
2142
2144
|
status: keyof IStatus;
|
|
2145
|
+
showDescription?: boolean;
|
|
2143
2146
|
}
|
|
2144
2147
|
|
|
2145
2148
|
declare type IProgressStepsProps = {
|
|
2146
2149
|
/** Define os itens que serão exibidos */
|
|
2147
2150
|
items: IItems[];
|
|
2148
2151
|
variant?: 'primary' | 'secondary';
|
|
2152
|
+
position?: 'horizontal' | 'vertical';
|
|
2149
2153
|
};
|
|
2150
2154
|
|
|
2151
2155
|
export declare const isMobile: Ref<boolean, boolean>;
|