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