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

react-oui-icons

Package Overview
Dependencies
Maintainers
3
Versions
48
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-oui-icons - npm Package Compare versions

Comparing version 2.1.1 to 2.3.0

3

CHANGELOG.md

@@ -8,3 +8,4 @@ # Change Log

## Unreleased
## 2.2.2 - 208-08-24
- [Feature] Add getting-started icon

@@ -11,0 +12,0 @@ ## 2.1.1 - 2018-05-16

{
"name": "react-oui-icons",
"version": "2.1.1",
"version": "2.3.0",
"main": "dist/index.js",

@@ -5,0 +5,0 @@ "module": "src/index.js",

@@ -6,2 +6,4 @@ import PropTypes from 'prop-types';

const HELP_ICON_TITLE = 'help';
const propTypes = {

@@ -90,3 +92,5 @@ description: PropTypes.string,

{...props}>
<title>{icon.title}</title>
{ icon.title !== HELP_ICON_TITLE && (
<title>{icon.title}</title>
) }
<desc>{ description }</desc>

@@ -93,0 +97,0 @@ { content }

@@ -79,2 +79,10 @@ import React from 'react'

});
it('should not contain <title> when the "help" icon is used', () => {
const component = shallow(
<Icon
name="help"
/>);
expect(component.contains(<title>help</title>)).toEqual(false);
});
//

@@ -81,0 +89,0 @@

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

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