@comercti/vue-components-hmg 0.32.3 → 0.32.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 +142 -136
- package/comerc-style-guide.umd.js +4 -4
- package/index.d.ts +12 -3
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -33,6 +33,10 @@ loading: boolean;
|
|
|
33
33
|
loadingType: "spinner" | "semi-circle" | "dots";
|
|
34
34
|
truncated: boolean;
|
|
35
35
|
copyable: boolean;
|
|
36
|
+
editColumnStyle: {
|
|
37
|
+
fields: string[];
|
|
38
|
+
class: string;
|
|
39
|
+
};
|
|
36
40
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
37
41
|
rootRef: HTMLDivElement;
|
|
38
42
|
}, HTMLDivElement>;
|
|
@@ -174,7 +178,7 @@ close: (value: boolean) => any;
|
|
|
174
178
|
}, string, PublicProps, Readonly<__VLS_Props_29> & Readonly<{
|
|
175
179
|
onClose?: (value: boolean) => any;
|
|
176
180
|
}>, {
|
|
177
|
-
|
|
181
|
+
class: string;
|
|
178
182
|
background: "1" | "2";
|
|
179
183
|
isOpen: boolean;
|
|
180
184
|
closeOutside: boolean;
|
|
@@ -659,8 +663,8 @@ declare type __VLS_Props_29 = {
|
|
|
659
663
|
closeOutside?: boolean;
|
|
660
664
|
/** Define se o botão de fechar fica visível */
|
|
661
665
|
showCloseButton?: boolean;
|
|
662
|
-
/** Define a
|
|
663
|
-
|
|
666
|
+
/** Define a diretivas do modal */
|
|
667
|
+
class?: string;
|
|
664
668
|
};
|
|
665
669
|
|
|
666
670
|
declare type __VLS_Props_3 = {
|
|
@@ -2028,6 +2032,11 @@ declare type DataTableProps = {
|
|
|
2028
2032
|
paginationStyle?: string;
|
|
2029
2033
|
/** Habilita a funcionalidade de copiar o conteúdo da célula ao clicar */
|
|
2030
2034
|
copyable?: boolean;
|
|
2035
|
+
/** Configurações para estilizar colunas editáveis */
|
|
2036
|
+
editColumnStyle?: {
|
|
2037
|
+
fields: string[];
|
|
2038
|
+
class: string;
|
|
2039
|
+
};
|
|
2031
2040
|
};
|
|
2032
2041
|
|
|
2033
2042
|
export declare const disableCeLoading: () => void;
|