terra-tag
Advanced tools
Comparing version 2.69.0 to 2.70.0
@@ -5,2 +5,7 @@ # Changelog | ||
## 2.70.0 - (May 8, 2024) | ||
* Changed | ||
* Minor dependency version bump. | ||
## 2.69.0 - (April 4, 2024) | ||
@@ -7,0 +12,0 @@ |
@@ -18,3 +18,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; } | ||
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } | ||
@@ -21,0 +21,0 @@ function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } } |
@@ -38,3 +38,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(_TagModule.default); | ||
@@ -41,0 +41,0 @@ var propTypes = { |
{ | ||
"name": "terra-tag", | ||
"version": "2.69.0", | ||
"version": "2.70.0", | ||
"description": "The tag component is used for tagging and provides users a way to trigger actions in the UI. Each tag should have text. It can optionally display an icon along with the text.", | ||
@@ -24,10 +24,19 @@ "author": "Cerner Corporation", | ||
"main": "lib/index.js", | ||
"files": [ | ||
"lib", | ||
"src", | ||
"translations", | ||
"CHANGELOG.md", | ||
"LICENSE", | ||
"NOTICE", | ||
"README.md" | ||
], | ||
"dependencies": { | ||
"classnames": "^2.2.5", | ||
"keycode-js": "^3.1.0", | ||
"prop-types": "^15.5.8", | ||
"resize-observer-polyfill": "^1.4.1", | ||
"classnames": "2", | ||
"keycode-js": "3", | ||
"prop-types": "15", | ||
"resize-observer-polyfill": "1", | ||
"terra-button": "^3.77.0", | ||
"terra-icon": "^3.60.0", | ||
"terra-theme-context": "^1.0.0", | ||
"terra-icon": "^3.61.0", | ||
"terra-theme-context": "1", | ||
"terra-visually-hidden-text": "^2.38.0", | ||
@@ -37,4 +46,4 @@ "uuid": "3.4.0" | ||
"peerDependencies": { | ||
"react": "^16.8.5", | ||
"react-dom": "^16.8.5", | ||
"react": "16", | ||
"react-dom": "16", | ||
"react-intl": "^2.8.0 || 3 || 4 || 5" | ||
@@ -55,12 +64,3 @@ }, | ||
}, | ||
"files": [ | ||
"lib", | ||
"src", | ||
"translations", | ||
"CHANGELOG.md", | ||
"LICENSE", | ||
"NOTICE", | ||
"README.md" | ||
], | ||
"gitHead": "56e12414ad56f0db08f2fb3cf2a60644f57f27e5" | ||
"gitHead": "83e0cba673eb8b12fb60fb5be980b09fa3b2e942" | ||
} |
122481
1435
Updatedclassnames@2
Updatedkeycode-js@3
Updatedprop-types@15
Updatedresize-observer-polyfill@1
Updatedterra-icon@^3.61.0
Updatedterra-theme-context@1