terra-content-container
Advanced tools
Comparing version 3.40.0 to 3.41.0
@@ -5,2 +5,7 @@ # Changelog | ||
## 3.41.0 - (February 15, 2024) | ||
* Changed | ||
* Minor dependency version bump. | ||
## 3.40.0 - (November 13, 2023) | ||
@@ -7,0 +12,0 @@ |
{ | ||
"name": "terra-content-container", | ||
"version": "3.40.0", | ||
"version": "3.41.0", | ||
"description": "The Terra ContentContainer is a structural component for the purpose of arranging content with a header.", | ||
@@ -27,3 +27,3 @@ "author": "Cerner Corporation", | ||
"prop-types": "^15.5.8", | ||
"terra-scroll": "^2.36.0", | ||
"terra-scroll": "^2.37.0", | ||
"terra-theme-context": "^1.0.0" | ||
@@ -48,3 +48,3 @@ }, | ||
}, | ||
"gitHead": "1be8c98fe2eeec64ef7a7fa457dd708da88e5170" | ||
"gitHead": "31ec38baf909fed741b41a204f7fa28884ab327e" | ||
} |
@@ -8,3 +8,3 @@ import React from 'react'; | ||
it('should render a default component', () => { | ||
const wrapper = shallow(defaultVariety); | ||
const wrapper = enzyme.shallow(defaultVariety); | ||
expect(wrapper).toMatchSnapshot(); | ||
@@ -15,3 +15,3 @@ }); | ||
it('should have the class terra-ContentContainer', () => { | ||
const wrapper = shallow(defaultVariety); | ||
const wrapper = enzyme.shallow(defaultVariety); | ||
expect(wrapper.prop('className')).toContain('content-container'); | ||
@@ -22,3 +22,3 @@ }); | ||
const container = <ContentContainer header={<p>Header</p>} />; | ||
const wrapper = shallow(container); | ||
const wrapper = enzyme.shallow(container); | ||
expect(wrapper).toMatchSnapshot(); | ||
@@ -29,3 +29,3 @@ }); | ||
const container = <ContentContainer footer={<p>Footer</p>} />; | ||
const wrapper = shallow(container); | ||
const wrapper = enzyme.shallow(container); | ||
expect(wrapper).toMatchSnapshot(); | ||
@@ -36,3 +36,3 @@ }); | ||
const container = <ContentContainer header={<p>Header</p>} footer={<p>Footer</p>} />; | ||
const wrapper = shallow(container); | ||
const wrapper = enzyme.shallow(container); | ||
expect(wrapper).toMatchSnapshot(); | ||
@@ -47,3 +47,3 @@ }); | ||
); | ||
const wrapper = shallow(container); | ||
const wrapper = enzyme.shallow(container); | ||
expect(wrapper).toMatchSnapshot(); | ||
@@ -54,4 +54,4 @@ }); | ||
const container = <ContentContainer fill />; | ||
const wrapper = shallow(container); | ||
const wrapper = enzyme.shallow(container); | ||
expect(wrapper).toMatchSnapshot(); | ||
}); |
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
38989
Updatedterra-scroll@^2.37.0