atom-nuxt 1.0.145 → 1.0.147
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
|
@@ -67,6 +67,11 @@ const props = defineProps({
|
|
|
67
67
|
required: false,
|
|
68
68
|
default: null
|
|
69
69
|
},
|
|
70
|
+
btnColor: {
|
|
71
|
+
type: String,
|
|
72
|
+
required: false,
|
|
73
|
+
default: null
|
|
74
|
+
},
|
|
70
75
|
fullScreen: {
|
|
71
76
|
type: Boolean,
|
|
72
77
|
required: false,
|
|
@@ -155,7 +160,7 @@ const isLarge = computed(() => display.lgAndUp.value);
|
|
|
155
160
|
class="px-5"
|
|
156
161
|
:width="isLarge ? 'auto' : '100%'"
|
|
157
162
|
:disabled="disabled || !action"
|
|
158
|
-
:color="action === 'create' ? 'success' : (action === 'update' ? 'info' : (action === 'delete' ? 'error' : 'light'))"
|
|
163
|
+
:color="btnColor ? btnColor : (action === 'create' ? 'success' : (action === 'update' ? 'info' : (action === 'delete' ? 'error' : 'light')))"
|
|
159
164
|
variant="flat"
|
|
160
165
|
@click="saveAction"
|
|
161
166
|
:loading="formPending"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "atom-nuxt",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.147",
|
|
4
4
|
"description": "My new Nuxt module",
|
|
5
5
|
"repository": "atomengine/atom-nuxt",
|
|
6
6
|
"license": "MIT",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"luxon": "^3.6.1",
|
|
36
36
|
"query-string": "^9.2.1",
|
|
37
37
|
"ts-luxon": "^6.1.0",
|
|
38
|
-
"uuid": "^
|
|
38
|
+
"uuid": "^11.0.2",
|
|
39
39
|
"vuetify-nuxt-module": "^0.18.7"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|