@comercti/vue-components-hmg 0.41.10 → 0.43.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 +8 -8
- package/comerc-style-guide.es.js +1680 -1659
- package/comerc-style-guide.umd.js +14 -14
- package/index.d.ts +7 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -46,6 +46,7 @@ loading: boolean;
|
|
|
46
46
|
loadingType: "spinner" | "semi-circle" | "dots";
|
|
47
47
|
backgroundPagination: "transparent" | `#${string}` | `rgb(${string})` | `rgba(${string})`;
|
|
48
48
|
backgroundTitle: "transparent" | `#${string}` | `rgb(${string})` | `rgba(${string})`;
|
|
49
|
+
scrollbarSize: "small" | "medium" | "large";
|
|
49
50
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
50
51
|
rootRef: HTMLDivElement;
|
|
51
52
|
}, HTMLDivElement>;
|
|
@@ -189,6 +190,7 @@ onClose?: (value: boolean) => any;
|
|
|
189
190
|
}>, {
|
|
190
191
|
class: string;
|
|
191
192
|
background: "1" | "2";
|
|
193
|
+
variant: "primary" | "secondary";
|
|
192
194
|
isOpen: boolean;
|
|
193
195
|
closeOutside: boolean;
|
|
194
196
|
showCloseButton: boolean;
|
|
@@ -540,6 +542,8 @@ declare type __VLS_Props_17 = {
|
|
|
540
542
|
isOpen?: boolean;
|
|
541
543
|
/** Título do menu */
|
|
542
544
|
title?: string;
|
|
545
|
+
/** Opção do menu selecionada */
|
|
546
|
+
selectedOption?: number;
|
|
543
547
|
};
|
|
544
548
|
|
|
545
549
|
declare type __VLS_Props_18 = {
|
|
@@ -1867,6 +1871,7 @@ itemsSearch: ItensMenu_2[];
|
|
|
1867
1871
|
isHome: boolean;
|
|
1868
1872
|
isSearch: boolean;
|
|
1869
1873
|
isOpen: boolean;
|
|
1874
|
+
selectedOption: number;
|
|
1870
1875
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1871
1876
|
|
|
1872
1877
|
export declare const CeModal: __VLS_WithTemplateSlots_24<typeof __VLS_component_24, __VLS_TemplateResult_24["slots"]>;
|
|
@@ -2072,6 +2077,8 @@ declare type DataTableProps = {
|
|
|
2072
2077
|
backgroundPagination?: CSSColor;
|
|
2073
2078
|
/** Define o estilo de fundo da area superior da tabela */
|
|
2074
2079
|
backgroundTitle?: CSSColor;
|
|
2080
|
+
/** Define o tamanho da barra de rolagem */
|
|
2081
|
+
scrollbarSize?: 'small' | 'medium' | 'large';
|
|
2075
2082
|
};
|
|
2076
2083
|
|
|
2077
2084
|
export declare const disableCeLoading: () => void;
|