New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

terra-form-fieldset

Package Overview
Dependencies
Maintainers
8
Versions
124
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

terra-form-fieldset - npm Package Compare versions

Comparing version 2.74.0 to 2.75.0

5

CHANGELOG.md

@@ -5,2 +5,7 @@ # Changelog

## 2.75.0 - (September 19, 2023)
* Changed
* Minor dependency version bump
## 2.74.0 - (August 23, 2023)

@@ -7,0 +12,0 @@

8

package.json
{
"name": "terra-form-fieldset",
"main": "lib/Fieldset.js",
"version": "2.74.0",
"version": "2.75.0",
"description": "Generic form fieldset component which handles the layout of a standard form fieldset including help text, legend, value and widget placement.",

@@ -31,4 +31,4 @@ "repository": {

"prop-types": "^15.5.8",
"terra-form-field": "^4.27.0",
"terra-form-input": "^4.25.0",
"terra-form-field": "^4.28.0",
"terra-form-input": "^4.26.0",
"terra-theme-context": "^1.0.0",

@@ -50,3 +50,3 @@ "uuid": "3.4.0"

},
"gitHead": "d63defc3a28797a5bb77c1006aa32edbffc92cd9"
"gitHead": "04fcccf72b43ef5be7bb27d6bec329f762571e47"
}
/* eslint-disable react/jsx-boolean-value */
import React from 'react';
import { v4 as uuidv4 } from 'uuid';
import ThemeContextProvider from 'terra-theme-context/lib/ThemeContextProvider';

@@ -7,4 +8,11 @@

jest.mock('uuid', () => ({ v4: () => '00000000-0000-0000-0000-000000000000' }));
let mockSpyUuid;
beforeAll(() => {
mockSpyUuid = jest.spyOn(uuidv4, 'v4').mockReturnValue('00000000-0000-0000-0000-000000000000');
});
afterAll(() => {
mockSpyUuid.mockRestore();
});
it('should render a default component', () => {

@@ -11,0 +19,0 @@ const field = (<Fieldset />);

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