@comercti/react-components-hmg 0.32.7 → 0.32.8
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 +880 -872
- package/comerc-style-guide.umd.js +2 -2
- package/index.d.ts +4 -4
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -36,8 +36,8 @@ truncated: boolean;
|
|
|
36
36
|
copyable: boolean;
|
|
37
37
|
editColumnStyle: {
|
|
38
38
|
fields: string[];
|
|
39
|
-
style
|
|
40
|
-
class
|
|
39
|
+
style?: Record<string, string>;
|
|
40
|
+
class?: string;
|
|
41
41
|
};
|
|
42
42
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
43
43
|
rootRef: HTMLDivElement;
|
|
@@ -1860,8 +1860,8 @@ declare type DataTableProps = {
|
|
|
1860
1860
|
/** Configurações para estilizar colunas editáveis */
|
|
1861
1861
|
editColumnStyle?: {
|
|
1862
1862
|
fields: string[];
|
|
1863
|
-
style
|
|
1864
|
-
class
|
|
1863
|
+
style?: Record<string, string>;
|
|
1864
|
+
class?: string;
|
|
1865
1865
|
};
|
|
1866
1866
|
};
|
|
1867
1867
|
|