New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

eslint-plugin-baseui

Package Overview
Dependencies
Maintainers
1
Versions
711
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-plugin-baseui - npm Package Compare versions

Comparing version 9.65.0 to 9.65.1

12

__tests__/deprecated-component-api.test.js

@@ -103,2 +103,14 @@ /*

},
// Modal - Backdrop
// Regression: object spread in overrides
{
code: `
import {Modal as BaseModal} from "baseui/modal"
const overrides = { Backdrop: {}}
export default function(props) {
return <BaseModal overrides={{ ...overrides }} />
}
`,
},
],

@@ -105,0 +117,0 @@ invalid: [

2

package.json
{
"name": "eslint-plugin-baseui",
"version": "9.65.0",
"version": "9.65.1",
"description": "ESLint rules for Base Web",

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

@@ -286,3 +286,6 @@ /*

const property = node.parent.value.expression.properties.find(
property => property.key.name === 'Backdrop',
property =>
property.key &&
property.key.name &&
property.key.name === 'Backdrop',
);

@@ -289,0 +292,0 @@ if (property) {

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc