atom-nuxt 1.0.136 → 1.0.138

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": "@atomengine/atom-nuxt",
3
3
  "configKey": "atomNuxt",
4
- "version": "1.0.136",
4
+ "version": "1.0.138",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "0.8.4",
7
7
  "unbuild": "2.0.0"
@@ -42,23 +42,44 @@ const handleConfirm = () => {
42
42
  <slot v-bind:click="open">
43
43
 
44
44
  </slot>
45
- <v-dialog v-model="dialog" max-width="290">
46
- <v-card>
47
- <v-card-title class="headline">
48
- {{ title }}
49
- </v-card-title>
50
- <v-card-text>
45
+ <v-dialog v-model="dialog" max-width="390">
46
+ <v-card class="bg-white d-flex flex-column pa-0">
47
+ <v-toolbar>
48
+ <v-toolbar-items>
49
+ <v-btn
50
+ color="error"
51
+ variant="flat"
52
+ @click="dialog = false"
53
+ >
54
+ <v-icon color="white" icon="mdi-close"></v-icon>
55
+ </v-btn>
56
+ </v-toolbar-items>
57
+ <v-toolbar-title>
58
+ {{title}}
59
+ </v-toolbar-title>
60
+ </v-toolbar>
61
+ <v-card-text class="pa-5 text-text" style="font-size: 1.25rem;">
51
62
  {{ message }}
52
63
  </v-card-text>
53
- <v-card-actions>
54
- <v-spacer></v-spacer>
55
- <v-btn color="error" @click="dialog = false">
64
+ <v-card-actions class="pa-0 border-t pa-4 elevation-5">
65
+ <v-btn size="large" variant="flat" color="error" @click="dialog = false">
56
66
  Cancel
57
67
  </v-btn>
58
- <v-btn color="success" @click="handleConfirm">
68
+ <v-spacer/>
69
+ <v-btn
70
+ size="large"
71
+ class="px-5"
72
+ color="success"
73
+ variant="flat"
74
+ @click="handleConfirm"
75
+ >
76
+ <v-icon color="white" size="16" class="mr-2"
77
+ icon="mdi-check"></v-icon>
59
78
  OK
60
79
  </v-btn>
61
80
  </v-card-actions>
81
+
82
+
62
83
  </v-card>
63
84
  </v-dialog>
64
85
  </template>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "atom-nuxt",
3
- "version": "1.0.136",
3
+ "version": "1.0.138",
4
4
  "description": "My new Nuxt module",
5
5
  "repository": "atomengine/atom-nuxt",
6
6
  "license": "MIT",
@@ -31,27 +31,27 @@
31
31
  "@nuxt/image": "^1.10.0",
32
32
  "@nuxt/kit": "^3.16.2",
33
33
  "@nuxt/scripts": "^0.11.5",
34
- "@vueuse/core": "^13.0.0",
35
- "@vueuse/nuxt": "^13.0.0",
34
+ "@vueuse/core": "^13.1.0",
35
+ "@vueuse/nuxt": "^13.1.0",
36
36
  "luxon": "^3.6.1",
37
37
  "query-string": "^9.1.1",
38
38
  "ts-luxon": "^6.0.0",
39
39
  "uuid": "^10.0.0",
40
- "vuetify-nuxt-module": "^0.18.5"
40
+ "vuetify-nuxt-module": "^0.18.6"
41
41
  },
42
42
  "devDependencies": {
43
43
  "@nuxt/devtools": "1.7.0",
44
44
  "@nuxt/eslint-config": "^1.3.0",
45
- "@nuxt/module-builder": "^0.8.4",
45
+ "@nuxt/module-builder": "^1.0.0",
46
46
  "@nuxt/schema": "^3.16.2",
47
47
  "@nuxt/test-utils": "^3.17.2",
48
- "@types/luxon": "^3.6.0",
49
- "@types/node": "^22.13.17",
48
+ "@types/luxon": "^3.6.2",
49
+ "@types/node": "^22.14.0",
50
50
  "@types/uuid": "^10.0.0",
51
51
  "changelogen": "^0.6.1",
52
- "eslint": "^9.23.0",
53
- "sass": "^1.86.1",
54
- "typescript": "^5.8.2",
52
+ "eslint": "^9.24.0",
53
+ "sass": "^1.86.3",
54
+ "typescript": "^5.8.3",
55
55
  "vue-tsc": "^2.2.8",
56
56
  "vitest": "^3.1.1"
57
57
  }