terra-status
Advanced tools
Comparing version 4.66.0 to 4.67.0
@@ -5,2 +5,7 @@ # Changelog | ||
## 4.67.0 - (May 8, 2024) | ||
* Changed | ||
* Minor dependency version bump. | ||
## 4.66.0 - (April 25, 2024) | ||
@@ -7,0 +12,0 @@ |
@@ -16,3 +16,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(_StatusModule.default); | ||
@@ -19,0 +19,0 @@ var propTypes = { |
{ | ||
"name": "terra-status", | ||
"version": "4.66.0", | ||
"version": "4.67.0", | ||
"description": "The status component provides a customizable color indictor to signify a specific condition.", | ||
@@ -24,12 +24,20 @@ "author": "Cerner Corporation", | ||
"main": "lib/Status.js", | ||
"files": [ | ||
"lib", | ||
"src", | ||
"CHANGELOG.md", | ||
"LICENSE", | ||
"NOTICE", | ||
"README.md" | ||
], | ||
"dependencies": { | ||
"classnames": "^2.2.5", | ||
"prop-types": "^15.5.8", | ||
"classnames": "2", | ||
"prop-types": "15", | ||
"terra-arrange": "^3.56.1", | ||
"terra-icon": "^3.60.0", | ||
"terra-icon": "^3.61.0", | ||
"terra-visually-hidden-text": "^2.38.0" | ||
}, | ||
"peerDependencies": { | ||
"react": "^16.8.5", | ||
"react-dom": "^16.8.5" | ||
"react": "16", | ||
"react-dom": "16" | ||
}, | ||
@@ -49,11 +57,3 @@ "scripts": { | ||
}, | ||
"files": [ | ||
"lib", | ||
"src", | ||
"CHANGELOG.md", | ||
"LICENSE", | ||
"NOTICE", | ||
"README.md" | ||
], | ||
"gitHead": "ab02fbcbfb88e5c12f2d41054b07f46864a466ba" | ||
"gitHead": "83e0cba673eb8b12fb60fb5be980b09fa3b2e942" | ||
} |
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
32040
93
Updatedclassnames@2
Updatedprop-types@15
Updatedterra-icon@^3.61.0