eslint-plugin-vuetify 2.2.0 → 2.3.0
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.
|
@@ -197,6 +197,7 @@ const replacements = {
|
|
|
197
197
|
...size
|
|
198
198
|
},
|
|
199
199
|
VBadge: {
|
|
200
|
+
value: 'model-value',
|
|
200
201
|
avatar: false,
|
|
201
202
|
mode: false,
|
|
202
203
|
origin: false,
|
|
@@ -481,7 +482,10 @@ const replacements = {
|
|
|
481
482
|
...inputs
|
|
482
483
|
},
|
|
483
484
|
VDialog: {
|
|
484
|
-
...overlay
|
|
485
|
+
...overlay,
|
|
486
|
+
tile: {
|
|
487
|
+
custom: 'apply border-radius changes to the root element of the `v-dialog`\'s content'
|
|
488
|
+
}
|
|
485
489
|
},
|
|
486
490
|
VMenu: {
|
|
487
491
|
allowOverflow: false,
|
|
@@ -551,7 +555,6 @@ const replacements = {
|
|
|
551
555
|
name: 'size',
|
|
552
556
|
value: 'small'
|
|
553
557
|
},
|
|
554
|
-
disabled: false,
|
|
555
558
|
left: 'start',
|
|
556
559
|
right: 'end',
|
|
557
560
|
...sizes,
|
|
@@ -149,6 +149,23 @@ const groups = [{
|
|
|
149
149
|
}
|
|
150
150
|
});
|
|
151
151
|
}
|
|
152
|
+
}, {
|
|
153
|
+
components: ['VSnackbar'],
|
|
154
|
+
slots: ['action'],
|
|
155
|
+
handler(context, node, directive, param) {
|
|
156
|
+
context.report({
|
|
157
|
+
node: directive,
|
|
158
|
+
messageId: 'renamed',
|
|
159
|
+
data: {
|
|
160
|
+
component: node.parent.name,
|
|
161
|
+
slot: directive.key.argument.name,
|
|
162
|
+
newSlot: 'actions'
|
|
163
|
+
},
|
|
164
|
+
fix(fixer) {
|
|
165
|
+
return fixer.replaceText(directive.key.argument, 'action');
|
|
166
|
+
}
|
|
167
|
+
});
|
|
168
|
+
}
|
|
152
169
|
}];
|
|
153
170
|
|
|
154
171
|
// ------------------------------------------------------------------------------
|