@comercti/react-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 +2 -2
- package/index.d.ts +12 -3
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -34,6 +34,10 @@ loading: boolean;
|
|
|
34
34
|
loadingType: "spinner" | "semi-circle" | "dots";
|
|
35
35
|
truncated: boolean;
|
|
36
36
|
copyable: boolean;
|
|
37
|
+
editColumnStyle: {
|
|
38
|
+
fields: string[];
|
|
39
|
+
class: string;
|
|
40
|
+
};
|
|
37
41
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
38
42
|
rootRef: HTMLDivElement;
|
|
39
43
|
}, HTMLDivElement>;
|
|
@@ -171,7 +175,7 @@ close: (value: boolean) => any;
|
|
|
171
175
|
}, string, PublicProps, Readonly<__VLS_Props_25> & Readonly<{
|
|
172
176
|
onClose?: (value: boolean) => any;
|
|
173
177
|
}>, {
|
|
174
|
-
|
|
178
|
+
class: string;
|
|
175
179
|
background: "1" | "2";
|
|
176
180
|
isOpen: boolean;
|
|
177
181
|
closeOutside: boolean;
|
|
@@ -686,8 +690,8 @@ declare type __VLS_Props_25 = {
|
|
|
686
690
|
closeOutside?: boolean;
|
|
687
691
|
/** Define se o botão de fechar fica visível */
|
|
688
692
|
showCloseButton?: boolean;
|
|
689
|
-
/** Define a
|
|
690
|
-
|
|
693
|
+
/** Define a diretivas do modal */
|
|
694
|
+
class?: string;
|
|
691
695
|
};
|
|
692
696
|
|
|
693
697
|
declare type __VLS_Props_26 = {
|
|
@@ -1852,6 +1856,11 @@ declare type DataTableProps = {
|
|
|
1852
1856
|
paginationStyle?: string;
|
|
1853
1857
|
/** Habilita a funcionalidade de copiar o conteúdo da célula ao clicar */
|
|
1854
1858
|
copyable?: boolean;
|
|
1859
|
+
/** Configurações para estilizar colunas editáveis */
|
|
1860
|
+
editColumnStyle?: {
|
|
1861
|
+
fields: string[];
|
|
1862
|
+
class: string;
|
|
1863
|
+
};
|
|
1855
1864
|
};
|
|
1856
1865
|
|
|
1857
1866
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|