terra-toggle-button
Advanced tools
Comparing version 1.9.0 to 1.10.0
@@ -7,2 +7,7 @@ Changelog | ||
1.10.0 - (September 19, 2017) | ||
------------------ | ||
### Changed | ||
* Minor version bump | ||
1.9.0 - (September 12, 2017) | ||
@@ -9,0 +14,0 @@ ------------------ |
@@ -8,7 +8,7 @@ # Dependency Information | ||
| prop-types | ^15.5.8 | -- | Runtime type checking for React props and similar objects. | | ||
| terra-arrange | ^1.8.0 | ^15.4.2 | The arrange component is used for horizontally arranging and vertically aligning a single row of container elements. | | ||
| terra-base | ^2.2.0 | ^15.4.2 | The base component sets minimal global styles for an application. | | ||
| terra-button | ^1.7.0 | ^15.4.2 | The terra-button component provides users a way to trigger actions in the UI. | | ||
| terra-icon | ^1.8.0 | ^15.4.2 | terra-icon | | ||
| terra-toggle | ^1.7.0 | ^15.4.2 | Toggle component that transitions content in and out. | | ||
| terra-arrange | ^1.9.0 | ^15.4.2 | The arrange component is used for horizontally arranging and vertically aligning a single row of container elements. | | ||
| 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-toggle | ^1.8.0 | ^15.4.2 | Toggle component that transitions content in and out. | | ||
@@ -18,3 +18,3 @@ ## devDependencies | ||
|-|-|-|-| | ||
| terra-props-table | ^1.6.0 | ^15.4.2 | terra-props-table | | ||
| terra-props-table | ^1.7.0 | ^15.4.2 | terra-props-table | | ||
@@ -26,6 +26,6 @@ ## peerDependencies | ||
| react-dom | ^15.4.2 | ^15.6.1 | React package for working with the DOM. | | ||
| terra-arrange | ^1.8.0 | ^15.4.2 | The arrange component is used for horizontally arranging and vertically aligning a single row of container elements. | | ||
| terra-base | ^2.2.0 | ^15.4.2 | The base component sets minimal global styles for an application. | | ||
| terra-button | ^1.7.0 | ^15.4.2 | The terra-button component provides users a way to trigger actions in the UI. | | ||
| terra-icon | ^1.8.0 | ^15.4.2 | terra-icon | | ||
| terra-toggle | ^1.7.0 | ^15.4.2 | Toggle component that transitions content in and out. | | ||
| terra-arrange | ^1.9.0 | ^15.4.2 | The arrange component is used for horizontally arranging and vertically aligning a single row of container elements. | | ||
| 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-toggle | ^1.8.0 | ^15.4.2 | Toggle component that transitions content in and out. | |
{ | ||
"name": "terra-toggle-button", | ||
"main": "lib/ToggleButton.js", | ||
"version": "1.9.0", | ||
"version": "1.10.0", | ||
"description": "Toggle button component that transitions content in and out with the click on a button.", | ||
@@ -24,3 +24,3 @@ "repository": { | ||
"devDependencies": { | ||
"terra-props-table": "^1.7.0" | ||
"terra-props-table": "^1.8.0" | ||
}, | ||
@@ -30,7 +30,7 @@ "peerDependencies": { | ||
"react-dom": "^15.4.2", | ||
"terra-arrange": "^1.9.0", | ||
"terra-base": "^2.3.0", | ||
"terra-button": "^1.8.0", | ||
"terra-icon": "^1.9.0", | ||
"terra-toggle": "^1.8.0" | ||
"terra-arrange": "^1.10.0", | ||
"terra-base": "^2.4.0", | ||
"terra-button": "^1.9.0", | ||
"terra-icon": "^1.10.0", | ||
"terra-toggle": "^1.9.0" | ||
}, | ||
@@ -40,20 +40,20 @@ "dependencies": { | ||
"prop-types": "^15.5.8", | ||
"terra-arrange": "^1.9.0", | ||
"terra-base": "^2.3.0", | ||
"terra-button": "^1.8.0", | ||
"terra-icon": "^1.9.0", | ||
"terra-toggle": "^1.8.0" | ||
"terra-arrange": "^1.10.0", | ||
"terra-base": "^2.4.0", | ||
"terra-button": "^1.9.0", | ||
"terra-icon": "^1.10.0", | ||
"terra-toggle": "^1.9.0" | ||
}, | ||
"scripts": { | ||
"compile": "npm run compile:clean && npm run compile:build", | ||
"compile:clean": "$(cd ..; npm bin)/rimraf lib", | ||
"compile:build": "$(cd ..; npm bin)/babel src --out-dir lib --copy-files", | ||
"compile:clean": "lerna exec --scope terra-toggle-button -- rimraf lib", | ||
"compile:build": "lerna exec --scope terra-toggle-button -- babel src --out-dir lib --copy-files", | ||
"lint": "npm run lint:js && npm run lint:scss", | ||
"lint:js": "$(cd ..; npm bin)/eslint --ext .js,.jsx . --ignore-path ../../.eslintignore", | ||
"lint:scss": "$(cd ..; npm bin)/stylelint src/**/*.scss", | ||
"lint:js": "lerna exec --scope terra-toggle-button -- eslint --ext .js,.jsx . --ignore-path ../../.eslintignore", | ||
"lint:scss": "lerna exec --scope terra-toggle-button -- stylelint src/**/*.scss", | ||
"props-table": "props-table ./src/ToggleButton.jsx --out-dir ./docs/props-table", | ||
"test": "npm run test:jest && npm run test:nightwatch", | ||
"test:jest": "$(cd ..; npm bin)/jest --config ../../jestconfig.json", | ||
"test:nightwatch": "$(cd ..; npm bin)/nightwatch -c ../../nightwatch.conf.js" | ||
"test:jest": "lerna exec --scope terra-toggle-button -- jest ./tests/jest/* --config ../../jestconfig.json", | ||
"test:nightwatch": "lerna exec --scope terra-toggle-button -- nightwatch -c ../../nightwatch.conf.js" | ||
} | ||
} |
29288
Updatedterra-arrange@^1.10.0
Updatedterra-base@^2.4.0
Updatedterra-button@^1.9.0
Updatedterra-icon@^1.10.0
Updatedterra-toggle@^1.9.0