Socket
Socket
Sign inDemoInstall

eslint-plugin-vuetify

Package Overview
Dependencies
357
Maintainers
2
Versions
27
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 2.2.0 to 2.3.0

7

lib/rules/no-deprecated-props.js

@@ -200,2 +200,3 @@ 'use strict';

VBadge: {
value: 'model-value',
avatar: false,

@@ -485,3 +486,6 @@ mode: false,

VDialog: {
...overlay
...overlay,
tile: {
custom: 'apply border-radius changes to the root element of the `v-dialog`\'s content'
}
},

@@ -556,3 +560,2 @@ VMenu: {

},
disabled: false,
left: 'start',

@@ -559,0 +562,0 @@ right: 'end',

@@ -152,2 +152,19 @@ 'use strict';

}
}, {
components: ['VSnackbar'],
slots: ['action'],
handler(context, node, directive, param) {
context.report({
node: directive,
messageId: 'renamed',
data: {
component: node.parent.name,
slot: directive.key.argument.name,
newSlot: 'actions'
},
fix(fixer) {
return fixer.replaceText(directive.key.argument, 'action');
}
});
}
}];

@@ -154,0 +171,0 @@

{
"name": "eslint-plugin-vuetify",
"version": "2.2.0",
"version": "2.3.0",
"description": "An eslint plugin for Vuetify",

@@ -5,0 +5,0 @@ "main": "lib/index.js",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc