grantthomas-nuxt 1.0.14 → 1.0.15

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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@grantthomas/nuxt",
3
3
  "configKey": "grantThomasNuxt",
4
- "version": "1.0.14",
4
+ "version": "1.0.15",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "1.0.2",
7
7
  "unbuild": "3.6.1"
@@ -19,6 +19,8 @@ type __VLS_Slots = {
19
19
  items?: ((props: {
20
20
  items: any;
21
21
  }) => any) | undefined;
22
+ } & {
23
+ empty?: ((props: {}) => any) | undefined;
22
24
  } & {
23
25
  action?: ((props: {
24
26
  action: any;
@@ -44,6 +44,9 @@ const onCancel = () => {
44
44
  </v-chip>
45
45
  </slot>
46
46
  </template>
47
+ <template #empty>
48
+ <slot name="empty"></slot>
49
+ </template>
47
50
  </crud-list-loader>
48
51
 
49
52
  <slot name="action" :action="onAction">
@@ -19,6 +19,8 @@ type __VLS_Slots = {
19
19
  items?: ((props: {
20
20
  items: any;
21
21
  }) => any) | undefined;
22
+ } & {
23
+ empty?: ((props: {}) => any) | undefined;
22
24
  } & {
23
25
  action?: ((props: {
24
26
  action: any;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "grantthomas-nuxt",
3
- "version": "1.0.14",
3
+ "version": "1.0.15",
4
4
  "description": "Crud module for Nuxt 3 interacting with sibling .net project",
5
5
  "repository": "Tap-Leagues/GrantThomas.Nuxt",
6
6
  "license": "MIT",