Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

terra-alert

Package Overview
Dependencies
Maintainers
10
Versions
182
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

terra-alert - npm Package Compare versions

Comparing version 2.5.0 to 2.6.0

tests/wdio/__snapshots__/reference/chrome/Custom[themed].1000x768.png

5

CHANGELOG.md

@@ -7,2 +7,7 @@ Changelog

2.6.0 - (April 15, 2018)
------------------
### Changed
* Minor version bump
2.5.0 - (April 5, 2018)

@@ -9,0 +14,0 @@ ------------------

16

docs/DEPENDENCIES.md

@@ -8,6 +8,6 @@ # Dependency Information

| prop-types | ^15.5.8 | -- | Runtime type checking for React props and similar objects. |
| terra-base | ^3.3.0 | ^16.2.0 | The base component sets minimal global styles for an application. |
| terra-button | ^2.4.0 | ^16.2.0 | The terra-button component provides users a way to trigger actions in the UI. |
| terra-icon | ^2.3.0 | ^16.2.0 | terra-icon |
| terra-responsive-element | ^2.3.0 | ^16.2.0 | The terra-responsive-element conditionally renders components based on viewport size |
| terra-base | ^3.4.0 | ^16.2.0 | The base component sets minimal global styles for an application. |
| terra-button | ^2.5.0 | ^16.2.0 | The terra-button component provides users a way to trigger actions in the UI. |
| terra-icon | ^2.4.0 | ^16.2.0 | terra-icon |
| terra-responsive-element | ^2.4.0 | ^16.2.0 | The terra-responsive-element conditionally renders components based on viewport size |

@@ -24,5 +24,5 @@ ## devDependencies

| react-dom | ^16.2.0 | ^16.0.0 | React package for working with the DOM. |
| terra-base | ^3.2.0 | ^16.2.0 | The base component sets minimal global styles for an application. |
| terra-button | ^2.3.0 | ^16.2.0 | The terra-button component provides users a way to trigger actions in the UI. |
| terra-icon | ^2.2.0 | ^16.2.0 | terra-icon |
| terra-responsive-element | ^2.2.0 | ^16.2.0 | The terra-responsive-element conditionally renders components based on viewport size |
| terra-base | ^3.4.0 | ^16.2.0 | The base component sets minimal global styles for an application. |
| terra-button | ^2.5.0 | ^16.2.0 | The terra-button component provides users a way to trigger actions in the UI. |
| terra-icon | ^2.4.0 | ^16.2.0 | terra-icon |
| terra-responsive-element | ^2.4.0 | ^16.2.0 | The terra-responsive-element conditionally renders components based on viewport size |
{
"name": "terra-alert",
"main": "lib/Alert.js",
"version": "2.5.0",
"version": "2.6.0",
"description": "The Terra Alert component is a notification banner that can be rendered in your application when there is information that you want to bring to the user's attention. The Alert component supports a number of built-in notification types that render with pre-defined colors and icons that help the user understand the severity and meaning of the notification. A custom notification type is also supported that allows your application to customize an alert that may not fit into the pre-defined types.",

@@ -29,6 +29,6 @@ "repository": {

"react-dom": "^16.2.0",
"terra-base": "^3.4.0",
"terra-button": "^2.5.0",
"terra-icon": "^2.4.0",
"terra-responsive-element": "^2.4.0"
"terra-base": "^3.5.0",
"terra-button": "^2.6.0",
"terra-icon": "^2.5.0",
"terra-responsive-element": "^2.5.0"
},

@@ -38,6 +38,6 @@ "dependencies": {

"prop-types": "^15.5.8",
"terra-base": "^3.4.0",
"terra-button": "^2.5.0",
"terra-icon": "^2.4.0",
"terra-responsive-element": "^2.4.0"
"terra-base": "^3.5.0",
"terra-button": "^2.6.0",
"terra-icon": "^2.5.0",
"terra-responsive-element": "^2.5.0"
},

@@ -44,0 +44,0 @@ "scripts": {

@@ -24,19 +24,22 @@ /* global browser, Terra */

Terra.should.beAccessible({ viewports });
Terra.should.themeEachCustomProperty({
'--terra-alert-alert-background-color': 'purple',
'--terra-alert-error-background-color': 'purple',
'--terra-alert-warning-background-color': 'purple',
'--terra-alert-advisory-background-color': 'purple',
'--terra-alert-info-background-color': 'purple',
'--terra-alert-success-background-color': 'purple',
Terra.should.themeCombinationOfCustomProperties({
testName: 'themed',
properties: {
'--terra-alert-alert-background-color': 'purple',
'--terra-alert-error-background-color': 'purple',
'--terra-alert-warning-background-color': 'purple',
'--terra-alert-advisory-background-color': 'purple',
'--terra-alert-info-background-color': 'purple',
'--terra-alert-success-background-color': 'purple',
'--terra-alert-alert-shadow-color': 'purple',
'--terra-alert-error-shadow-color': 'purple',
'--terra-alert-warning-shadow-color': 'purple',
'--terra-alert-advisory-shadow-color': 'purple',
'--terra-alert-info-shadow-color': 'purple',
'--terra-alert-success-shadow-color': 'purple',
'--terra-alert-alert-shadow-color': 'purple',
'--terra-alert-error-shadow-color': 'purple',
'--terra-alert-warning-shadow-color': 'purple',
'--terra-alert-advisory-shadow-color': 'purple',
'--terra-alert-info-shadow-color': 'purple',
'--terra-alert-success-shadow-color': 'purple',
'--terra-alert-alert-title-color': 'purple',
'--terra-alert-error-title-color': 'purple',
'--terra-alert-alert-title-color': 'purple',
'--terra-alert-error-title-color': 'purple',
},
});

@@ -49,6 +52,9 @@ });

Terra.should.beAccessible({ viewports });
Terra.should.themeEachCustomProperty({
'--terra-alert-custom-text-color': 'blue',
'--terra-alert-custom-background-color': 'purple',
'--terra-alert-custom-shadow-color': 'purple',
Terra.should.themeCombinationOfCustomProperties({
testName: 'themed',
properties: {
'--terra-alert-custom-text-color': 'blue',
'--terra-alert-custom-background-color': 'purple',
'--terra-alert-custom-shadow-color': 'purple',
},
});

@@ -55,0 +61,0 @@ });

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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