@nuxtify/pages 0.3.2 → 0.3.3

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.d.mts CHANGED
@@ -1,6 +1,12 @@
1
1
  import * as _nuxt_schema from '@nuxt/schema';
2
2
  import { ModuleOptions as ModuleOptions$1 } from '@nuxtify/core';
3
3
 
4
+ type CoreEmailOptions = NonNullable<ModuleOptions$1['email']>;
5
+ interface Email extends CoreEmailOptions {
6
+ provider?: {
7
+ defaultSubmitUrl?: string;
8
+ };
9
+ }
4
10
  interface Link {
5
11
  text: string;
6
12
  to?: string;
@@ -37,11 +43,7 @@ interface PageModuleOptions {
37
43
  /**
38
44
  * Email options
39
45
  */
40
- email?: {
41
- provider?: {
42
- defaultSubmitUrl?: string;
43
- };
44
- };
46
+ email?: Email;
45
47
  /**
46
48
  * Style options
47
49
  */
package/dist/module.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nuxtify/pages",
3
- "version": "0.3.2",
3
+ "version": "0.3.3",
4
4
  "configKey": "nuxtifyPages",
5
5
  "compatibility": {
6
6
  "nuxt": ">=3.16.0",
package/dist/module.mjs CHANGED
@@ -2,7 +2,7 @@ import { defineNuxtModule, createResolver, installModule, addLayout, addComponen
2
2
  import { defu } from 'defu';
3
3
 
4
4
  const name = "@nuxtify/pages";
5
- const version = "0.3.2";
5
+ const version = "0.3.3";
6
6
 
7
7
  const module = defineNuxtModule({
8
8
  meta: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nuxtify/pages",
3
- "version": "0.3.2",
3
+ "version": "0.3.3",
4
4
  "description": "Nuxtify pages module powered by Nuxt and Vuetify.",
5
5
  "license": "MIT",
6
6
  "homepage": "https://nuxtify.dev",