terra-alert
Advanced tools
Comparing version 1.7.0 to 1.8.0
@@ -7,2 +7,7 @@ Changelog | ||
1.8.0 - (September 26, 2017) | ||
------------------ | ||
### Removed | ||
* Remove stylelint-disable selector-class-pattern | ||
1.7.0 - (September 19, 2017) | ||
@@ -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 | ^2.3.0 | ^15.4.2 | The base component sets minimal global styles for an application. | | ||
| terra-button | ^1.8.0 | ^15.4.2 | The terra-button component provides users a way to trigger actions in the UI. | | ||
| terra-icon | ^1.9.0 | ^15.4.2 | terra-icon | | ||
| terra-responsive-element | ^1.8.0 | ^15.4.2 | The terra-responsive-element conditionally renders components based on viewport size | | ||
| terra-base | ^2.4.0 | ^15.4.2 | The base component sets minimal global styles for an application. | | ||
| terra-button | ^1.9.0 | ^15.4.2 | The terra-button component provides users a way to trigger actions in the UI. | | ||
| terra-icon | ^1.10.0 | ^15.4.2 | terra-icon | | ||
| terra-responsive-element | ^1.9.0 | ^15.4.2 | The terra-responsive-element conditionally renders components based on viewport size | | ||
@@ -18,3 +18,3 @@ ## devDependencies | ||
| react-intl | ^2.3.0 | ^0.14.9 \|\| ^15.0.0 \|\| ^16.0.0 | Internationalize React apps. This library provides React components and an API to format dates, numbers, and strings, including pluralization and handling translations. | | ||
| terra-props-table | ^1.7.0 | ^15.4.2 | terra-props-table | | ||
| terra-props-table | ^1.8.0 | ^15.4.2 | terra-props-table | | ||
@@ -25,6 +25,6 @@ ## peerDependencies | ||
| react | ^15.4.2 | -- | React is a JavaScript library for building user interfaces. | | ||
| react-dom | ^15.4.2 | ^15.6.1 | React package for working with the DOM. | | ||
| terra-base | ^2.3.0 | ^15.4.2 | The base component sets minimal global styles for an application. | | ||
| terra-button | ^1.8.0 | ^15.4.2 | The terra-button component provides users a way to trigger actions in the UI. | | ||
| terra-icon | ^1.9.0 | ^15.4.2 | terra-icon | | ||
| terra-responsive-element | ^1.8.0 | ^15.4.2 | The terra-responsive-element conditionally renders components based on viewport size | | ||
| react-dom | ^15.4.2 | ^15.6.2 | React package for working with the DOM. | | ||
| terra-base | ^2.4.0 | ^15.4.2 | The base component sets minimal global styles for an application. | | ||
| terra-button | ^1.9.0 | ^15.4.2 | The terra-button component provides users a way to trigger actions in the UI. | | ||
| terra-icon | ^1.10.0 | ^15.4.2 | terra-icon | | ||
| terra-responsive-element | ^1.9.0 | ^15.4.2 | The terra-responsive-element conditionally renders components based on viewport size | |
{ | ||
"name": "terra-alert", | ||
"main": "lib/Alert.js", | ||
"version": "1.7.0", | ||
"version": "1.8.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.", | ||
@@ -25,3 +25,3 @@ "repository": { | ||
"react-intl": "^2.3.0", | ||
"terra-props-table": "^1.8.0" | ||
"terra-props-table": "^1.9.0" | ||
}, | ||
@@ -31,6 +31,6 @@ "peerDependencies": { | ||
"react-dom": "^15.4.2", | ||
"terra-base": "^2.4.0", | ||
"terra-button": "^1.9.0", | ||
"terra-icon": "^1.10.0", | ||
"terra-responsive-element": "^1.9.0" | ||
"terra-base": "^2.5.0", | ||
"terra-button": "^1.10.0", | ||
"terra-icon": "^1.11.0", | ||
"terra-responsive-element": "^1.10.0" | ||
}, | ||
@@ -40,19 +40,19 @@ "dependencies": { | ||
"prop-types": "^15.5.8", | ||
"terra-base": "^2.4.0", | ||
"terra-button": "^1.9.0", | ||
"terra-icon": "^1.10.0", | ||
"terra-responsive-element": "^1.9.0" | ||
"terra-base": "^2.5.0", | ||
"terra-button": "^1.10.0", | ||
"terra-icon": "^1.11.0", | ||
"terra-responsive-element": "^1.10.0" | ||
}, | ||
"scripts": { | ||
"compile": "npm run compile:clean && npm run compile:build", | ||
"compile:clean": "lerna exec --scope terra-alert -- rimraf lib", | ||
"compile:build": "lerna exec --scope terra-alert -- babel src --out-dir lib --copy-files", | ||
"compile:clean": "rimraf lib", | ||
"compile:build": "babel src --out-dir lib --copy-files", | ||
"lint": "npm run lint:js && npm run lint:scss", | ||
"lint:js": "lerna exec --scope terra-alert -- eslint --ext .js,.jsx . --ignore-path ../../.eslintignore", | ||
"lint:scss": "lerna exec --scope terra-alert -- stylelint src/**/*.scss", | ||
"lint:js": "eslint --ext .js,.jsx . --ignore-path ../../.eslintignore", | ||
"lint:scss": "stylelint src/**/*.scss", | ||
"props-table": "props-table ./src/Alert.jsx --out-dir ./docs/props-table", | ||
"test": "npm run test:jest && npm run test:nightwatch", | ||
"test:jest": "lerna exec --scope terra-alert -- jest ./tests/jest/* --config ../../jestconfig.json", | ||
"test:nightwatch": "lerna exec --scope terra-alert -- nightwatch -c ../../nightwatch.conf.js" | ||
"test:jest": "jest ./tests/jest/* --config ../../jestconfig.json", | ||
"test:nightwatch": "nightwatch -c ../../nightwatch.conf.js" | ||
} | ||
} |
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
456324
Updatedterra-base@^2.5.0
Updatedterra-button@^1.10.0
Updatedterra-icon@^1.11.0