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

@corex/bulma

Package Overview
Dependencies
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@corex/bulma - npm Package Compare versions

Comparing version 1.2.17 to 1.2.18

4

dist/Modal/index.js

@@ -5,7 +5,7 @@ import classnames from 'classnames';

import ModalContent from './ModalContent';
const Modal = ({ className, active, ...restProps }) => {
const Modal = ({ className, isActive, ...restProps }) => {
const modalCls = classnames('modal', {
[`${className}`]: className
}, {
'is-active': active
'is-active': isActive
});

@@ -12,0 +12,0 @@ return React.createElement("div", Object.assign({ className: modalCls }, restProps));

@@ -7,3 +7,3 @@ /// <reference types="react" />

export interface IModalProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement> {
active?: boolean;
isActive?: boolean;
}

@@ -10,0 +10,0 @@ export interface IWrappedModalComponentProps {

{
"name": "@corex/bulma",
"version": "1.2.17",
"version": "1.2.18",
"main": "./dist/index.js",

@@ -5,0 +5,0 @@ "license": "MIT",

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