@comercti/react-components-hmg 0.21.11 → 0.21.13
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 +6 -5
- package/comerc-style-guide.umd.js +2 -2
- package/index.d.ts +6 -4
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -841,8 +841,9 @@ declare function __VLS_template(): {
|
|
|
841
841
|
attrs: Partial<{}>;
|
|
842
842
|
slots: Readonly<NonNullable<{
|
|
843
843
|
[key: string]: (props: {
|
|
844
|
-
item: Record<string,
|
|
845
|
-
|
|
844
|
+
item: Record<string, any>;
|
|
845
|
+
indexItem: number;
|
|
846
|
+
indexHeader: number;
|
|
846
847
|
}) => VNode[];
|
|
847
848
|
} & {
|
|
848
849
|
/**Slot usado para exibir a paginação da tabela */
|
|
@@ -861,8 +862,9 @@ declare function __VLS_template(): {
|
|
|
861
862
|
}) => VNode[];
|
|
862
863
|
}>> & {
|
|
863
864
|
[key: string]: (props: {
|
|
864
|
-
item: Record<string,
|
|
865
|
-
|
|
865
|
+
item: Record<string, any>;
|
|
866
|
+
indexItem: number;
|
|
867
|
+
indexHeader: number;
|
|
866
868
|
}) => VNode[];
|
|
867
869
|
} & {
|
|
868
870
|
/**Slot usado para exibir a paginação da tabela */
|