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