terra-section-header
Advanced tools
Comparing version
@@ -5,2 +5,7 @@ # Changelog | ||
## 2.66.0 - (February 15, 2024) | ||
* Changed | ||
* Minor dependency version bump. | ||
## 2.65.1 - (December 11, 2023) | ||
@@ -7,0 +12,0 @@ |
@@ -29,11 +29,11 @@ "use strict"; | ||
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; } | ||
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); } | ||
function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); } | ||
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); } | ||
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); } | ||
function _callSuper(t, o, e) { return o = _getPrototypeOf(o), _possibleConstructorReturn(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], _getPrototypeOf(t).constructor) : o.apply(t, e)); } | ||
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); } | ||
function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); } | ||
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); } | ||
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; } | ||
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); } | ||
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); } | ||
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; } | ||
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); } | ||
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; } | ||
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } } | ||
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); } | ||
var cx = _bind.default.bind(_SectionHeaderModule.default); | ||
@@ -90,7 +90,6 @@ var propTypes = { | ||
_inherits(SectionHeader, _React$Component); | ||
var _super = _createSuper(SectionHeader); | ||
function SectionHeader(props) { | ||
var _this; | ||
_classCallCheck(this, SectionHeader); | ||
_this = _super.call(this, props); | ||
_this = _callSuper(this, SectionHeader, [props]); | ||
_this.state = { | ||
@@ -175,3 +174,2 @@ isActive: false | ||
} | ||
var Element = "h".concat(level); | ||
@@ -178,0 +176,0 @@ var headerText = text || title; |
{ | ||
"name": "terra-section-header", | ||
"version": "2.65.1", | ||
"version": "2.66.0", | ||
"description": "Section Header component that contains text and can be optionally interacted with.", | ||
@@ -28,3 +28,3 @@ "author": "Cerner Corporation", | ||
"prop-types": "^15.5.8", | ||
"terra-arrange": "^3.55.0", | ||
"terra-arrange": "^3.56.0", | ||
"terra-mixins": "^1.41.0", | ||
@@ -50,3 +50,3 @@ "terra-theme-context": "^1.0.0" | ||
}, | ||
"gitHead": "9bb7f9261dac42e2bc7e9e6289cdb43fd0689e79" | ||
"gitHead": "31ec38baf909fed741b41a204f7fa28884ab327e" | ||
} |
@@ -10,3 +10,3 @@ import React from 'react'; | ||
it('should render a default component', () => { | ||
const wrapper = shallow(defaultRender); | ||
const wrapper = enzyme.shallow(defaultRender); | ||
expect(wrapper).toMatchSnapshot(); | ||
@@ -17,3 +17,3 @@ }); | ||
const sectionHeader = <SectionHeader text="foo" level={2} />; | ||
const wrapper = render(sectionHeader); | ||
const wrapper = enzyme.render(sectionHeader); | ||
expect(wrapper).toMatchSnapshot(); | ||
@@ -24,3 +24,3 @@ }); | ||
const sectionHeader = <SectionHeader text="foo" level={2} onClick={() => {}} />; | ||
const wrapper = shallow(sectionHeader); | ||
const wrapper = enzyme.shallow(sectionHeader); | ||
@@ -36,3 +36,3 @@ const button = wrapper.find('button.arrange-wrapper').at(0); | ||
const sectionHeader = <SectionHeader text="foo" level={2} onClick={() => {}} isOpen />; | ||
const wrapper = shallow(sectionHeader); | ||
const wrapper = enzyme.shallow(sectionHeader); | ||
@@ -47,3 +47,3 @@ const button = wrapper.find('button.arrange-wrapper').at(0); | ||
it('correctly applies the theme context className', () => { | ||
const wrapper = mount( | ||
const wrapper = enzyme.mount( | ||
<ThemeContextProvider theme={{ className: 'orion-fusion-theme' }}> | ||
@@ -59,3 +59,3 @@ <SectionHeader text="foo" level={2} /> | ||
const wrapper = mount( | ||
const wrapper = enzyme.mount( | ||
<SectionHeader | ||
@@ -81,3 +81,3 @@ text="foo" | ||
const wrapper = mount( | ||
const wrapper = enzyme.mount( | ||
<SectionHeader | ||
@@ -103,3 +103,3 @@ text="foo" | ||
const wrapper = mount( | ||
const wrapper = enzyme.mount( | ||
<SectionHeader | ||
@@ -123,3 +123,3 @@ text="foo" | ||
it('should render a span element for title since no onClick exists', () => { | ||
const wrapper = mount(defaultRender); | ||
const wrapper = enzyme.mount(defaultRender); | ||
@@ -135,3 +135,3 @@ const headerButton = wrapper.find('button.arrange-wrapper'); | ||
it('verifies that section header has a tab index when specified with custom props', () => { | ||
const wrapper = mount( | ||
const wrapper = enzyme.mount( | ||
<SectionHeader | ||
@@ -149,3 +149,3 @@ text="foo" | ||
it('verifies that section header with a fixed title has appropriate classes', () => { | ||
const wrapper = shallow( | ||
const wrapper = enzyme.shallow( | ||
<SectionHeader | ||
@@ -152,0 +152,0 @@ text="foo" |
82318
-0.31%603
-0.5%Updated