terra-form-fieldset
Advanced tools
Comparing version 2.81.0 to 2.82.0
@@ -5,2 +5,7 @@ # Changelog | ||
## 2.82.0 - (May 8, 2024) | ||
* Changed | ||
* Minor dependency version bump. | ||
## 2.81.0 - (March 15, 2024) | ||
@@ -7,0 +12,0 @@ |
@@ -19,3 +19,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(_FieldsetModule.default); | ||
@@ -22,0 +22,0 @@ var propTypes = { |
{ | ||
"name": "terra-form-fieldset", | ||
"version": "2.81.0", | ||
"version": "2.82.0", | ||
"description": "Generic form fieldset component which handles the layout of a standard form fieldset including help text, legend, value and widget placement.", | ||
@@ -33,12 +33,12 @@ "author": "Cerner Corporation", | ||
"dependencies": { | ||
"classnames": "^2.2.5", | ||
"prop-types": "^15.5.8", | ||
"terra-form-field": "^4.33.0", | ||
"terra-form-input": "^4.32.0", | ||
"terra-theme-context": "^1.0.0", | ||
"classnames": "2", | ||
"prop-types": "15", | ||
"terra-form-field": "^4.34.0", | ||
"terra-form-input": "^4.33.0", | ||
"terra-theme-context": "1", | ||
"uuid": "3.4.0" | ||
}, | ||
"peerDependencies": { | ||
"react": "^16.8.5", | ||
"react-dom": "^16.8.5" | ||
"react": "16", | ||
"react-dom": "16" | ||
}, | ||
@@ -58,3 +58,3 @@ "scripts": { | ||
}, | ||
"gitHead": "ac51d94d27fae4a46f9bfa81235100bc5ff7a044" | ||
"gitHead": "83e0cba673eb8b12fb60fb5be980b09fa3b2e942" | ||
} |
37899
175
Updatedclassnames@2
Updatedprop-types@15
Updatedterra-form-field@^4.34.0
Updatedterra-form-input@^4.33.0
Updatedterra-theme-context@1