@comercti/react-components-hmg 0.32.4 → 0.32.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 +2 -2
- package/comerc-style-guide.es.js +176 -168
- package/comerc-style-guide.umd.js +2 -2
- package/index.d.ts +9 -0
- 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
|
+
style: Record<string, string>;
|
|
40
|
+
};
|
|
37
41
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
38
42
|
rootRef: HTMLDivElement;
|
|
39
43
|
}, HTMLDivElement>;
|
|
@@ -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
|
+
style: Record<string, string>;
|
|
1863
|
+
};
|
|
1855
1864
|
};
|
|
1856
1865
|
|
|
1857
1866
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|