eslint-plugin-vuetify 2.0.4 → 2.0.5

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.
@@ -32,6 +32,10 @@ const sizes = {
32
32
  value: 'x-small'
33
33
  }
34
34
  };
35
+ const theme = {
36
+ dark: false,
37
+ light: false
38
+ };
35
39
  const inputs = {
36
40
  appendOuterIcon: 'append-icon',
37
41
  backgroundColor: 'bg-color',
@@ -60,7 +64,6 @@ const inputs = {
60
64
  name: 'variant',
61
65
  value: 'outlined'
62
66
  },
63
- rounded: false,
64
67
  shaped: false,
65
68
  solo: {
66
69
  name: 'variant',
@@ -76,14 +79,14 @@ const inputs = {
76
79
  name: 'validate-on',
77
80
  value: 'blur'
78
81
  },
79
- value: 'model-value'
82
+ value: 'model-value',
83
+ ...theme
80
84
  };
81
85
  const select = {
82
86
  allowOverflow: false,
83
87
  attach: {
84
88
  custom: ':menu-props="{ attach: true }"'
85
89
  },
86
- autoSelectFirst: false,
87
90
  cacheItems: false,
88
91
  deletableChips: 'closable-chips',
89
92
  disableLookup: false,
@@ -101,10 +104,6 @@ const select = {
101
104
  ...inputs,
102
105
  dense: false
103
106
  };
104
- const theme = {
105
- dark: false,
106
- light: false
107
- };
108
107
  const link = {
109
108
  append: false,
110
109
  exactActiveClass: false,
@@ -196,7 +195,23 @@ const replacements = {
196
195
  avatar: false,
197
196
  mode: false,
198
197
  origin: false,
199
- overlap: false
198
+ overlap: false,
199
+ bottom: {
200
+ name: 'location',
201
+ value: 'bottom'
202
+ },
203
+ left: {
204
+ name: 'location',
205
+ value: 'left'
206
+ },
207
+ right: {
208
+ name: 'location',
209
+ value: 'right'
210
+ },
211
+ top: {
212
+ name: 'location',
213
+ value: 'top'
214
+ }
200
215
  },
201
216
  VBanner: {
202
217
  app: false,
@@ -467,6 +482,7 @@ const replacements = {
467
482
  nudgeTop: {
468
483
  custom: 'offset'
469
484
  },
485
+ nudgeWidth: false,
470
486
  offsetOverflow: false,
471
487
  offsetX: false,
472
488
  offsetY: false,
@@ -658,8 +674,7 @@ const replacements = {
658
674
  height: false,
659
675
  loading: false,
660
676
  inverseLabel: false,
661
- ...inputs,
662
- ...theme
677
+ ...inputs
663
678
  },
664
679
  VRangeSlider: {
665
680
  backgroundColor: false,
@@ -674,8 +689,7 @@ const replacements = {
674
689
  height: false,
675
690
  loading: false,
676
691
  inverseLabel: false,
677
- ...inputs,
678
- ...theme
692
+ ...inputs
679
693
  },
680
694
  VRating: {
681
695
  backgroundColor: false,
@@ -852,6 +866,7 @@ const replacements = {
852
866
  nudgeTop: {
853
867
  custom: 'offset'
854
868
  },
869
+ nudgeWidth: false,
855
870
  positionX: false,
856
871
  positionY: false,
857
872
  right: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-plugin-vuetify",
3
- "version": "2.0.4",
3
+ "version": "2.0.5",
4
4
  "description": "An eslint plugin for Vuetify",
5
5
  "main": "lib/index.js",
6
6
  "author": "Kael Watts-Deuchar <kaelwd@gmail.com>",