@comercti/vue-components-hmg 0.24.5 → 0.24.7
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 +1591 -1528
- package/comerc-style-guide.umd.js +25 -22
- package/index.d.ts +4 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1858,6 +1858,7 @@ export declare const CeProgressIndicator: DefineComponent<__VLS_Props, {}, {}, {
|
|
|
1858
1858
|
|
|
1859
1859
|
export declare const CeProgressSteps: DefineComponent<IProgressStepsProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<IProgressStepsProps> & Readonly<{}>, {
|
|
1860
1860
|
position: "horizontal" | "vertical";
|
|
1861
|
+
showInitialStep: boolean;
|
|
1861
1862
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
1862
1863
|
|
|
1863
1864
|
export declare const CeRadioGroup: DefineComponent<__VLS_Props_11, {
|
|
@@ -2148,8 +2149,9 @@ declare interface IItems {
|
|
|
2148
2149
|
declare type IProgressStepsProps = {
|
|
2149
2150
|
/** Define os itens que serão exibidos */
|
|
2150
2151
|
items: IItems[];
|
|
2151
|
-
variant?: 'primary' | 'secondary';
|
|
2152
2152
|
position?: 'horizontal' | 'vertical';
|
|
2153
|
+
showInitialStep?: boolean;
|
|
2154
|
+
titleInitialStep?: string;
|
|
2153
2155
|
};
|
|
2154
2156
|
|
|
2155
2157
|
export declare const isMobile: Ref<boolean, boolean>;
|
|
@@ -2286,6 +2288,7 @@ declare interface SliderProps {
|
|
|
2286
2288
|
showValue?: boolean;
|
|
2287
2289
|
size?: 'small' | 'large';
|
|
2288
2290
|
modelValue?: number | number[];
|
|
2291
|
+
showPercentage?: boolean;
|
|
2289
2292
|
}
|
|
2290
2293
|
|
|
2291
2294
|
declare interface SubMenu {
|