@comercti/react-components-hmg 0.24.4 → 0.24.6
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 +25 -22
- package/comerc-style-guide.es.js +1793 -1744
- package/comerc-style-guide.umd.js +23 -20
- package/index.d.ts +3 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -2039,6 +2039,7 @@ showLoading: boolean;
|
|
|
2039
2039
|
|
|
2040
2040
|
declare const _default_4: DefineComponent<IProgressStepsProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<IProgressStepsProps> & Readonly<{}>, {
|
|
2041
2041
|
position: "horizontal" | "vertical";
|
|
2042
|
+
showInitialStep: boolean;
|
|
2042
2043
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
2043
2044
|
|
|
2044
2045
|
declare const _default_40: __VLS_WithTemplateSlots_23<typeof __VLS_component_23, __VLS_TemplateResult_23["slots"]>;
|
|
@@ -2247,8 +2248,9 @@ declare interface IItems {
|
|
|
2247
2248
|
declare type IProgressStepsProps = {
|
|
2248
2249
|
/** Define os itens que serão exibidos */
|
|
2249
2250
|
items: IItems[];
|
|
2250
|
-
variant?: 'primary' | 'secondary';
|
|
2251
2251
|
position?: 'horizontal' | 'vertical';
|
|
2252
|
+
showInitialStep?: boolean;
|
|
2253
|
+
titleInitialStep?: string;
|
|
2252
2254
|
};
|
|
2253
2255
|
|
|
2254
2256
|
export declare const isMobile: Ref<boolean, boolean>;
|