@afeefa/vue-app 0.0.157 → 0.0.159

Sign up to get free protection for your applications and to get access to all the features.
@@ -1 +1 @@
1
- 0.0.157
1
+ 0.0.159
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@afeefa/vue-app",
3
- "version": "0.0.157",
3
+ "version": "0.0.159",
4
4
  "description": "",
5
5
  "author": "Afeefa Kollektiv <kollektiv@afeefa.de>",
6
6
  "license": "MIT",
@@ -67,10 +67,12 @@ export class FormFieldMixin extends Vue {
67
67
  const options = []
68
68
 
69
69
  if (!this.validator || !this.validator.getParam('filled')) {
70
- options.push({
71
- itemText: 'Keine Auswahl',
72
- itemValue: null
73
- })
70
+ if (!this.$attrs.hasOwnProperty('multiple')) { // don't offer 'keine auswahl' on multiselects
71
+ options.push({
72
+ itemText: 'Keine Auswahl',
73
+ itemValue: null
74
+ })
75
+ }
74
76
  }
75
77
 
76
78
  return [
@@ -11,6 +11,7 @@ import { adminConfig } from './config/AdminConfig'
11
11
  import routeConfigPlugin from './config/routing'
12
12
  import vuetify from './config/vuetify'
13
13
  import { authPlugin } from './plugins/AuthPlugin'
14
+ import { configPlugin } from './plugins/ConfigPlugin'
14
15
 
15
16
  Vue.config.productionTip = false
16
17
 
@@ -27,6 +28,11 @@ export class AfeefaAdmin {
27
28
  return this
28
29
  }
29
30
 
31
+ customConfig (customConfig) {
32
+ adminConfig.config = customConfig
33
+ return this
34
+ }
35
+
30
36
  routing (routeConfigCallback) {
31
37
  this._routeConfigCallback = routeConfigCallback
32
38
  return this
@@ -51,6 +57,8 @@ export class AfeefaAdmin {
51
57
  // set app config
52
58
  adminConfig.app = this._appConfig
53
59
 
60
+ Vue.use(configPlugin)
61
+
54
62
  // authenticate current user before doing any gui-voodo
55
63
  if (this._authService) {
56
64
  adminConfig.authService = this._authService
@@ -88,7 +96,7 @@ export class AfeefaAdmin {
88
96
 
89
97
  // load initial data
90
98
  if (this._initCallback) {
91
- await this._initCallback()
99
+ await this._initCallback(this)
92
100
  }
93
101
 
94
102
  // setup router, routes and breadcrumb
@@ -14,6 +14,8 @@ class AdminConfig {
14
14
  SidebarMenu: null
15
15
  }
16
16
  }
17
+
18
+ config = {}
17
19
  }
18
20
 
19
21
  export const adminConfig = new AdminConfig()
@@ -0,0 +1,13 @@
1
+ import { adminConfig } from '../config/AdminConfig'
2
+
3
+ class ConfigPlugin {
4
+ install (Vue) {
5
+ Object.defineProperty(Vue.prototype, '$config', {
6
+ get () {
7
+ return adminConfig.config
8
+ }
9
+ })
10
+ }
11
+ }
12
+
13
+ export const configPlugin = new ConfigPlugin()