terra-alert
Advanced tools
Comparing version 2.5.0 to 2.6.0
@@ -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 @@ ------------------ |
@@ -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
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
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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
945
1729043
95
Updatedterra-base@^3.5.0
Updatedterra-button@^2.6.0
Updatedterra-icon@^2.5.0