Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

terra-content-container

Package Overview
Dependencies
Maintainers
8
Versions
109
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

terra-content-container - npm Package Compare versions

Comparing version 3.40.0 to 3.41.0

5

CHANGELOG.md

@@ -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 @@

6

package.json
{
"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();
});
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc