@comercti/vue-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 +3 -3
- 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
|
@@ -829,8 +829,9 @@ declare function __VLS_template(): {
|
|
|
829
829
|
attrs: Partial<{}>;
|
|
830
830
|
slots: Readonly<NonNullable<{
|
|
831
831
|
[key: string]: (props: {
|
|
832
|
-
item: Record<string,
|
|
833
|
-
|
|
832
|
+
item: Record<string, any>;
|
|
833
|
+
indexItem: number;
|
|
834
|
+
indexHeader: number;
|
|
834
835
|
}) => VNode[];
|
|
835
836
|
} & {
|
|
836
837
|
/**Slot usado para exibir a paginação da tabela */
|
|
@@ -849,8 +850,9 @@ declare function __VLS_template(): {
|
|
|
849
850
|
}) => VNode[];
|
|
850
851
|
}>> & {
|
|
851
852
|
[key: string]: (props: {
|
|
852
|
-
item: Record<string,
|
|
853
|
-
|
|
853
|
+
item: Record<string, any>;
|
|
854
|
+
indexItem: number;
|
|
855
|
+
indexHeader: number;
|
|
854
856
|
}) => VNode[];
|
|
855
857
|
} & {
|
|
856
858
|
/**Slot usado para exibir a paginação da tabela */
|