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

contentful-ui-extensions-sdk

Package Overview
Dependencies
Maintainers
4
Versions
195
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

contentful-ui-extensions-sdk - npm Package Compare versions

Comparing version 3.10.9 to 3.10.10

2

package.json
{
"name": "contentful-ui-extensions-sdk",
"description": "SDK to develop custom UI Extension for the Contentful Web App",
"version": "3.10.9",
"version": "3.10.10",
"author": "Contentful GmbH",

@@ -6,0 +6,0 @@ "license": "MIT",

@@ -92,7 +92,2 @@ declare module 'contentful-ui-extensions-sdk' {

type onValueChangedType = (callback: (value: any) => void) => Function
type onValueChangeWithLocaleType = (locale: string, callback: (value: any) => void) => Function
type onIsDisabledChangedType = (callback: Function) => Function
type onIsDisabledChangedWithLocaleType = (locale: string, callback: Function) => Function
interface EntryFieldAPI {

@@ -119,7 +114,11 @@ /** The ID of a field is defined in an entry's content type. */

/** Calls the callback every time the value of the field is changed by an external event or when setValue() is called. */
onValueChanged: onValueChangeWithLocaleType
onValueChanged: onValueChangedType
onValueChanged: {
(callback: (value: any) => void): () => void
(locale: string, callback: (value: any) => void): () => void
}
/** Calls the callback when the disabled status of the field changes. */
onIsDisabledChanged: onIsDisabledChangedWithLocaleType
onIsDisabledChanged: onIsDisabledChangedType
onIsDisabledChanged: {
(callback: (isDisabled: boolean) => void): () => void
(locale: string, callback: (isDisabled: boolean) => void): () => void
}
}

@@ -126,0 +125,0 @@

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