@comercti/react-components-hmg 0.24.2 → 0.24.4
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 +3 -3
- package/comerc-style-guide.es.js +539 -516
- package/comerc-style-guide.umd.js +3 -3
- package/index.d.ts +6 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -2037,7 +2037,9 @@ background: "smoky" | "transparent" | "black";
|
|
|
2037
2037
|
showLoading: boolean;
|
|
2038
2038
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
2039
2039
|
|
|
2040
|
-
declare const _default_4: DefineComponent<IProgressStepsProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<IProgressStepsProps> & Readonly<{}>, {
|
|
2040
|
+
declare const _default_4: DefineComponent<IProgressStepsProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<IProgressStepsProps> & Readonly<{}>, {
|
|
2041
|
+
position: "horizontal" | "vertical";
|
|
2042
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
2041
2043
|
|
|
2042
2044
|
declare const _default_40: __VLS_WithTemplateSlots_23<typeof __VLS_component_23, __VLS_TemplateResult_23["slots"]>;
|
|
2043
2045
|
|
|
@@ -2070,8 +2072,8 @@ updatePerPage: (value: number) => any;
|
|
|
2070
2072
|
onUpdatePerPage?: (value: number) => any;
|
|
2071
2073
|
}>, {
|
|
2072
2074
|
disabled: boolean;
|
|
2073
|
-
textDirection: "left" | "right";
|
|
2074
2075
|
position: "top" | "bottom";
|
|
2076
|
+
textDirection: "left" | "right";
|
|
2075
2077
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
2076
2078
|
menuRef: HTMLDivElement;
|
|
2077
2079
|
referenceRef: HTMLButtonElement;
|
|
@@ -2239,12 +2241,14 @@ declare interface IItems {
|
|
|
2239
2241
|
title: string;
|
|
2240
2242
|
description: string;
|
|
2241
2243
|
status: keyof IStatus;
|
|
2244
|
+
showDescription?: boolean;
|
|
2242
2245
|
}
|
|
2243
2246
|
|
|
2244
2247
|
declare type IProgressStepsProps = {
|
|
2245
2248
|
/** Define os itens que serão exibidos */
|
|
2246
2249
|
items: IItems[];
|
|
2247
2250
|
variant?: 'primary' | 'secondary';
|
|
2251
|
+
position?: 'horizontal' | 'vertical';
|
|
2248
2252
|
};
|
|
2249
2253
|
|
|
2250
2254
|
export declare const isMobile: Ref<boolean, boolean>;
|