grantthomas-nuxt 1.0.21 → 1.0.22
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/dist/module.json
CHANGED
|
@@ -42,6 +42,9 @@ type __VLS_Slots = {
|
|
|
42
42
|
exportAction: any;
|
|
43
43
|
exportPending: any;
|
|
44
44
|
exportErrors: any;
|
|
45
|
+
totalItems: any;
|
|
46
|
+
currentPage: any;
|
|
47
|
+
totalPages: any;
|
|
45
48
|
}) => any) | undefined;
|
|
46
49
|
} & {
|
|
47
50
|
filters?: ((props: {
|
|
@@ -62,6 +65,9 @@ type __VLS_Slots = {
|
|
|
62
65
|
updateAction: any;
|
|
63
66
|
deleteAction: any;
|
|
64
67
|
formPending: any;
|
|
68
|
+
totalItems: any;
|
|
69
|
+
currentPage: any;
|
|
70
|
+
totalPages: any;
|
|
65
71
|
}) => any) | undefined;
|
|
66
72
|
} & {
|
|
67
73
|
form?: ((props: {
|
|
@@ -365,6 +365,9 @@ const exportAction = async () => {
|
|
|
365
365
|
:export-action="exportAction"
|
|
366
366
|
:export-pending="exportPending"
|
|
367
367
|
:export-errors="exportErrors"
|
|
368
|
+
:total-items="totalItems"
|
|
369
|
+
:current-page="currentPage"
|
|
370
|
+
:total-pages="totalPages"
|
|
368
371
|
>
|
|
369
372
|
</slot>
|
|
370
373
|
<div :class="contentClasses">
|
|
@@ -394,6 +397,9 @@ const exportAction = async () => {
|
|
|
394
397
|
:update-action="updateForm"
|
|
395
398
|
:delete-action="deleteForm"
|
|
396
399
|
:form-pending="formPending"
|
|
400
|
+
:total-items="totalItems"
|
|
401
|
+
:current-page="currentPage"
|
|
402
|
+
:total-pages="totalPages"
|
|
397
403
|
>
|
|
398
404
|
</slot>
|
|
399
405
|
</div>
|
|
@@ -42,6 +42,9 @@ type __VLS_Slots = {
|
|
|
42
42
|
exportAction: any;
|
|
43
43
|
exportPending: any;
|
|
44
44
|
exportErrors: any;
|
|
45
|
+
totalItems: any;
|
|
46
|
+
currentPage: any;
|
|
47
|
+
totalPages: any;
|
|
45
48
|
}) => any) | undefined;
|
|
46
49
|
} & {
|
|
47
50
|
filters?: ((props: {
|
|
@@ -62,6 +65,9 @@ type __VLS_Slots = {
|
|
|
62
65
|
updateAction: any;
|
|
63
66
|
deleteAction: any;
|
|
64
67
|
formPending: any;
|
|
68
|
+
totalItems: any;
|
|
69
|
+
currentPage: any;
|
|
70
|
+
totalPages: any;
|
|
65
71
|
}) => any) | undefined;
|
|
66
72
|
} & {
|
|
67
73
|
form?: ((props: {
|