terra-heading
Advanced tools
Comparing version 1.0.0 to 1.1.0
Changelog | ||
========= | ||
Unreleased | ||
---------- | ||
1.1.0 - (July 18, 2017) | ||
------------------ | ||
### Changed | ||
* Updated nightwatch test scripts | ||
### Removed | ||
* Removed nightwatch.config file | ||
1.0.0 - (June 28, 2017) | ||
------------------ | ||
Initial stable release |
@@ -8,4 +8,4 @@ ## Heading Props Table | ||
| isVisuallyHidden| `bool`| optional| `false`| Sets the text to appear visually hidden. The text will still be available to screen readers.| | ||
| level| `string`| `required`| | Sets the heading level. One of 1, 2, 3, 4, 5, 6.| | ||
| size| `string`| optional| | Sets the text size. One of mini, tiny, small, medium, large, huge.| | ||
| weight| `string`| optional| `700`| Sets the text size. One of 200, 400, 700.| | ||
| level| `number`| `required`| | Sets the heading level. One of `1`, `2`, `3`, `4`, `5`, `6`.| | ||
| size| `string`| optional| | Sets the text size. One of `mini`, `tiny`, `small`, `medium`, `large`, `huge`.| | ||
| weight| `number`| optional| `700`| Sets the text size. One of `200`, `400`, `700`.| |
@@ -37,3 +37,3 @@ 'use strict'; | ||
/** | ||
* Sets the heading level. One of 1, 2, 3, 4, 5, 6. | ||
* Sets the heading level. One of `1`, `2`, `3`, `4`, `5`, `6`. | ||
*/ | ||
@@ -54,7 +54,7 @@ level: _propTypes2.default.oneOf([1, 2, 3, 4, 5, 6]).isRequired, | ||
/** | ||
* Sets the text size. One of mini, tiny, small, medium, large, huge. | ||
* Sets the text size. One of `mini`, `tiny`, `small`, `medium`, `large`, `huge`. | ||
*/ | ||
size: _propTypes2.default.oneOf(['mini', 'tiny', 'small', 'medium', 'large', 'huge']), | ||
/** | ||
* Sets the text size. One of 200, 400, 700. | ||
* Sets the text size. One of `200`, `400`, `700`. | ||
*/ | ||
@@ -61,0 +61,0 @@ weight: _propTypes2.default.oneOf([200, 400, 700]) |
{ | ||
"name": "terra-heading", | ||
"main": "lib/Heading.js", | ||
"version": "1.0.0", | ||
"version": "1.1.0", | ||
"description": "Terra includes styling for all standard headings `h1` through `h6`, as well as styles that match the size of their respective heading.", | ||
@@ -25,4 +25,3 @@ "repository": { | ||
"devDependencies": { | ||
"terra-props-table": "^1.0.0", | ||
"terra-toolkit": "^1.0.0" | ||
"terra-props-table": "^1.1.0" | ||
}, | ||
@@ -32,4 +31,4 @@ "peerDependencies": { | ||
"react-dom": "^15.4.2", | ||
"terra-base": "^1.0.0", | ||
"terra-mixins": "^1.6.0" | ||
"terra-base": "^1.1.0", | ||
"terra-mixins": "^1.7.0" | ||
}, | ||
@@ -39,4 +38,4 @@ "dependencies": { | ||
"prop-types": "^15.5.8", | ||
"terra-base": "^1.0.0", | ||
"terra-mixins": "^1.6.0" | ||
"terra-base": "^1.1.0", | ||
"terra-mixins": "^1.7.0" | ||
}, | ||
@@ -54,9 +53,7 @@ "scripts": { | ||
"test:all": "npm run test:nightwatch-default && npm run test:nightwatch-chrome && npm run test:nightwatch-firefox && npm run test:nightwatch-safari", | ||
"test:nightwatch-default": "SPECTRE_TEST_SUITE=terra-heading node ./node_modules/terra-toolkit/lib/scripts/nightwatch.js", | ||
"test:nightwatch-chrome": "SPECTRE_TEST_SUITE=terra-heading node ./node_modules/terra-toolkit/lib/scripts/nightwatch.js chrome", | ||
"test:nightwatch-firefox": "SPECTRE_TEST_SUITE=terra-heading node ./node_modules/terra-toolkit/lib/scripts/nightwatch.js firefox", | ||
"test:nightwatch-safari": "SPECTRE_TEST_SUITE=terra-heading node ./node_modules/terra-toolkit/lib/scripts/nightwatch-non-parallel.js safari", | ||
"test:remote": "SPECTRE_TEST_SUITE=terra-heading REMOTE=true node ./node_modules/terra-toolkit/lib/scripts/nightwatch-process.js --config tests/nightwatch.conf.js", | ||
"test:remote:all": "SPECTRE_TEST_SUITE=terra-heading REMOTE=true node ./node_modules/terra-toolkit/lib/scripts/nightwatch-process.js --config tests/nightwatch.conf.js --env chrome-tiny,chrome-small,chrome-medium,chrome-large,chrome-huge,chrome-enormous,firefox-tiny,firefox-small,firefox-medium,firefox-large,firefox-huge,firefox-enormous,ie10-tiny,ie10-small,ie10-medium,ie10-large,ie10-huge,ie10-enormous,ie11-tiny,ie11-small,ie11-medium,ie11-large,ie11-huge,ie11-enormous,edge-tiny,edge-small,edge-medium,edge-large,edge-huge,edge-enormous,safari-tiny,safari-small,safari-medium,safari-large,safari-huge,safari-enormous" | ||
"test:nightwatch-default": "SPECTRE_TEST_SUITE=terra-heading node ../../node_modules/terra-toolkit/lib/scripts/nightwatch.js", | ||
"test:nightwatch-chrome": "SPECTRE_TEST_SUITE=terra-heading node ../../node_modules/terra-toolkit/lib/scripts/nightwatch.js chrome", | ||
"test:nightwatch-firefox": "SPECTRE_TEST_SUITE=terra-heading node ../../node_modules/terra-toolkit/lib/scripts/nightwatch.js firefox", | ||
"test:nightwatch-safari": "SPECTRE_TEST_SUITE=terra-heading node ../../node_modules/terra-toolkit/lib/scripts/nightwatch-non-parallel.js safari" | ||
} | ||
} |
1
23430
Updatedterra-base@^1.1.0
Updatedterra-mixins@^1.7.0