terra-heading
Advanced tools
Comparing version 4.58.0 to 4.59.0
@@ -5,2 +5,7 @@ # Changelog | ||
## 4.59.0 - (May 24, 2024) | ||
* Changed | ||
* Minor dependency version bump. | ||
## 4.58.0 - (April 25, 2024) | ||
@@ -7,0 +12,0 @@ |
@@ -21,3 +21,3 @@ "use strict"; | ||
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; } | ||
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; } | ||
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } } return target; } | ||
var cx = _bind.default.bind(_HeadingModule.default); | ||
@@ -24,0 +24,0 @@ |
{ | ||
"name": "terra-heading", | ||
"version": "4.58.0", | ||
"version": "4.59.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,11 +25,19 @@ "author": "Cerner Corporation", | ||
"main": "lib/Heading.js", | ||
"files": [ | ||
"lib", | ||
"src", | ||
"CHANGELOG.md", | ||
"LICENSE", | ||
"NOTICE", | ||
"README.md" | ||
], | ||
"peerDependencies": { | ||
"react": "16", | ||
"react-dom": "16" | ||
}, | ||
"dependencies": { | ||
"classnames": "^2.2.5", | ||
"prop-types": "^15.5.8", | ||
"terra-arrange": "^3.56.1" | ||
"classnames": "2", | ||
"prop-types": "15", | ||
"terra-arrange": "^3.57.0" | ||
}, | ||
"peerDependencies": { | ||
"react": "^16.8.5", | ||
"react-dom": "^16.8.5" | ||
}, | ||
"scripts": { | ||
@@ -48,11 +56,3 @@ "compile": "babel --root-mode upward src --out-dir lib --copy-files", | ||
}, | ||
"files": [ | ||
"lib", | ||
"src", | ||
"CHANGELOG.md", | ||
"LICENSE", | ||
"NOTICE", | ||
"README.md" | ||
], | ||
"gitHead": "ab02fbcbfb88e5c12f2d41054b07f46864a466ba" | ||
"gitHead": "209e73eab65abaee39bd1e026d50e5e03d8f38ac" | ||
} |
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
38684
200
Updatedclassnames@2
Updatedprop-types@15
Updatedterra-arrange@^3.57.0