terra-form-fieldset
Advanced tools
Comparing version 2.54.0 to 2.55.0
@@ -5,2 +5,7 @@ # Changelog | ||
## 2.55.0 - (December 8, 2020) | ||
* Changed | ||
* Update wdio tests to remove deprecated Terra.it helpers | ||
## 2.54.0 - (November 17, 2020) | ||
@@ -7,0 +12,0 @@ |
"use strict"; | ||
function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); } | ||
Object.defineProperty(exports, "__esModule", { | ||
@@ -22,4 +24,2 @@ value: true | ||
function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); } | ||
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } | ||
@@ -26,0 +26,0 @@ |
{ | ||
"name": "terra-form-fieldset", | ||
"main": "lib/Fieldset.js", | ||
"version": "2.54.0", | ||
"version": "2.55.0", | ||
"description": "Generic form fieldset component which handles the layout of a standard form fieldset including help text, legend, value and widget placement.", | ||
@@ -32,4 +32,4 @@ "repository": { | ||
"prop-types": "^15.5.8", | ||
"terra-form-field": "^4.12.0", | ||
"terra-form-input": "^4.8.0", | ||
"terra-form-field": "^4.13.0", | ||
"terra-form-input": "^4.9.0", | ||
"terra-theme-context": "^1.0.0" | ||
@@ -50,3 +50,3 @@ }, | ||
}, | ||
"gitHead": "0e7146c606856f9b2cba0b1defb1d48181b6c089" | ||
"gitHead": "a831aafb7547ff092f55bb322c2800129e51fdf9" | ||
} |
Terra.describeViewports('Fieldset', ['tiny', 'medium'], () => { | ||
describe('Populated', () => { | ||
before(() => browser.url('/#/raw/tests/terra-form-fieldset/form-fieldset/populated-fieldset')); | ||
it('should display populated Fieldset', () => { | ||
browser.url('/raw/tests/terra-form-fieldset/form-fieldset/populated-fieldset'); | ||
Terra.it.validatesElement(); | ||
Terra.validates.element('populated'); | ||
}); | ||
describe('Fieldset Populated with Hidden Legend', () => { | ||
before(() => browser.url('/#/raw/tests/terra-form-fieldset/form-fieldset/fieldset-with-hidden-legend')); | ||
it('should display populated Fieldset with hidden legend', () => { | ||
browser.url('/raw/tests/terra-form-fieldset/form-fieldset/fieldset-with-hidden-legend'); | ||
Terra.it.validatesElement(); | ||
Terra.validates.element('populated Fieldset with hidden legend'); | ||
}); | ||
}); |
53120
Updatedterra-form-field@^4.13.0
Updatedterra-form-input@^4.9.0