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

@tinymce/tinymce-react

Package Overview
Dependencies
Maintainers
2
Versions
365
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@tinymce/tinymce-react - npm Package Compare versions

Comparing version 5.1.2-feature.20240708060041889.sha4bce245 to 5.1.2-feature.20240709011619104.sha6039318

38

lib/cjs/main/ts/components/Editor.d.ts

@@ -25,3 +25,3 @@ import * as React from 'react';

/**
* @see {@link https://www.tiny.cloud/docs/tinymce/latest/react-ref/#apikey React Tech Ref - apiKey}
* @see {@link https://www.tiny.cloud/docs/tinymce/7/react-ref/#apikey React Tech Ref - apiKey}
* @description TinyMCE API key for deployments using Tiny Cloud.

@@ -31,3 +31,3 @@ */

/**
* @see {@link https://www.tiny.cloud/docs/tinymce/latest/react-ref/#id React Tech Ref - id}
* @see {@link https://www.tiny.cloud/docs/tinymce/7/react-ref/#id React Tech Ref - id}
* @description The ID of the element to render the editor into.

@@ -37,3 +37,3 @@ */

/**
* @see {@link https://www.tiny.cloud/docs/tinymce/latest/react-ref/#inline React Tech Ref - inline}
* @see {@link https://www.tiny.cloud/docs/tinymce/7/react-ref/#inline React Tech Ref - inline}
* @description Whether the editor should be rendered inline. Equivalent to the `inline` option in TinyMCE.

@@ -43,3 +43,3 @@ */

/**
* @see {@link https://www.tiny.cloud/docs/tinymce/latest/react-ref/#initialvalue React Tech Ref - initialValue}
* @see {@link https://www.tiny.cloud/docs/tinymce/7/react-ref/#initialvalue React Tech Ref - initialValue}
* @description The initial HTML content of the editor.

@@ -51,3 +51,3 @@ *

/**
* @see {@link https://www.tiny.cloud/docs/tinymce/latest/react-ref/#oneditorchange React Tech Ref - onEditorChange}
* @see {@link https://www.tiny.cloud/docs/tinymce/7/react-ref/#oneditorchange React Tech Ref - onEditorChange}
* @description Used to store the state of the editor outside the component. Typically used for controlled components.

@@ -60,3 +60,3 @@ * @param a The current HTML content of the editor.

/**
* @see {@link https://www.tiny.cloud/docs/tinymce/latest/react-ref/#value React Tech Ref - value}
* @see {@link https://www.tiny.cloud/docs/tinymce/7/react-ref/#value React Tech Ref - value}
* @description The current HTML content of the editor. Typically used for controlled components.

@@ -66,3 +66,3 @@ */

/**
* @see {@link https://www.tiny.cloud/docs/tinymce/latest/react-ref/#init React Tech Ref - init}
* @see {@link https://www.tiny.cloud/docs/tinymce/7/react-ref/#init React Tech Ref - init}
* @description Additional settings passed to `tinymce.init()` when initializing the editor.

@@ -72,3 +72,3 @@ */

/**
* @see {@link https://www.tiny.cloud/docs/tinymce/latest/react-ref/#tagname React Tech Ref - tagName}
* @see {@link https://www.tiny.cloud/docs/tinymce/7/react-ref/#tagname React Tech Ref - tagName}
* @description The tag name of the element to render the editor into. Only valid when `inline` is `true`.

@@ -78,3 +78,3 @@ */

/**
* @see {@link https://www.tiny.cloud/docs/tinymce/latest/react-ref/#tabIndex React Tech Ref - tabIndex}
* @see {@link https://www.tiny.cloud/docs/tinymce/7/react-ref/#tabIndex React Tech Ref - tabIndex}
* @description The tab index of the element that the editor wraps.

@@ -84,3 +84,3 @@ */

/**
* @see {@link https://www.tiny.cloud/docs/tinymce/latest/react-ref/#cloudchannel React Tech Ref - cloudChannel}
* @see {@link https://www.tiny.cloud/docs/tinymce/7/react-ref/#cloudchannel React Tech Ref - cloudChannel}
* @description The TinyMCE build to use when loading from Tiny Cloud.

@@ -90,3 +90,3 @@ */

/**
* @see {@link https://www.tiny.cloud/docs/tinymce/latest/react-ref/#plugins React Tech Ref - plugins}
* @see {@link https://www.tiny.cloud/docs/tinymce/7/react-ref/#plugins React Tech Ref - plugins}
* @description The plugins to load into the editor. Equivalent to the `plugins` option in TinyMCE.

@@ -96,3 +96,3 @@ */

/**
* @see {@link https://www.tiny.cloud/docs/tinymce/latest/react-ref/#toolbar React Tech Ref - toolbar}
* @see {@link https://www.tiny.cloud/docs/tinymce/7/react-ref/#toolbar React Tech Ref - toolbar}
* @description The toolbar to load into the editor. Equivalent to the `toolbar` option in TinyMCE.

@@ -102,3 +102,3 @@ */

/**
* @see {@link https://www.tiny.cloud/docs/tinymce/latest/react-ref/#disabled React Tech Ref - disabled}
* @see {@link https://www.tiny.cloud/docs/tinymce/7/react-ref/#disabled React Tech Ref - disabled}
* @description Whether the editor should be "disabled" (read-only).

@@ -108,3 +108,3 @@ */

/**
* @see {@link https://www.tiny.cloud/docs/tinymce/latest/react-ref/#textareaname React Tech Ref - textareaName}
* @see {@link https://www.tiny.cloud/docs/tinymce/7/react-ref/#textareaname React Tech Ref - textareaName}
* @description Set the `name` attribute of the `textarea` element used for the editor in forms. Only valid in iframe mode.

@@ -114,3 +114,3 @@ */

/**
* @see {@link https://www.tiny.cloud/docs/tinymce/latest/react-ref/#tinymcescriptsrc React Tech Ref - tinymceScriptSrc}
* @see {@link https://www.tiny.cloud/docs/tinymce/7/react-ref/#tinymcescriptsrc React Tech Ref - tinymceScriptSrc}
* @description The URL of the TinyMCE script to lazy load.

@@ -120,8 +120,8 @@ */

/**
* @see {@link https://www.tiny.cloud/docs/tinymce/latest/react-ref/#rollback React Tech Ref - rollback}
* @description The number of milliseconds to wait after before reverting to the previous value when the editor's content changes.
* @see {@link https://www.tiny.cloud/docs/tinymce/7/react-ref/#rollback React Tech Ref - rollback}
* @description The number of milliseconds to wait before reverting to the previous value when the editor's content changes.
*/
rollback: number | false;
/**
* @see {@link https://www.tiny.cloud/docs/tinymce/latest/react-ref/#scriptloading React Tech Ref - scriptLoading}
* @see {@link https://www.tiny.cloud/docs/tinymce/7/react-ref/#scriptloading React Tech Ref - scriptLoading}
* @description Options for how the TinyMCE script should be loaded.

@@ -138,3 +138,3 @@ * @property async Whether the script should be loaded with the `async` attribute.

/**
* @see {@link https://www.tiny.cloud/docs/tinymce/latest/react-ref/#licenseKey React Tech Ref - licenseKey}
* @see {@link https://www.tiny.cloud/docs/tinymce/7/react-ref/#licenseKey React Tech Ref - licenseKey}
* @description Tiny Cloud License Key for when self-hosting TinyMCE.

@@ -141,0 +141,0 @@ */

@@ -25,3 +25,3 @@ import * as React from 'react';

/**
* @see {@link https://www.tiny.cloud/docs/tinymce/latest/react-ref/#apikey React Tech Ref - apiKey}
* @see {@link https://www.tiny.cloud/docs/tinymce/7/react-ref/#apikey React Tech Ref - apiKey}
* @description TinyMCE API key for deployments using Tiny Cloud.

@@ -31,3 +31,3 @@ */

/**
* @see {@link https://www.tiny.cloud/docs/tinymce/latest/react-ref/#id React Tech Ref - id}
* @see {@link https://www.tiny.cloud/docs/tinymce/7/react-ref/#id React Tech Ref - id}
* @description The ID of the element to render the editor into.

@@ -37,3 +37,3 @@ */

/**
* @see {@link https://www.tiny.cloud/docs/tinymce/latest/react-ref/#inline React Tech Ref - inline}
* @see {@link https://www.tiny.cloud/docs/tinymce/7/react-ref/#inline React Tech Ref - inline}
* @description Whether the editor should be rendered inline. Equivalent to the `inline` option in TinyMCE.

@@ -43,3 +43,3 @@ */

/**
* @see {@link https://www.tiny.cloud/docs/tinymce/latest/react-ref/#initialvalue React Tech Ref - initialValue}
* @see {@link https://www.tiny.cloud/docs/tinymce/7/react-ref/#initialvalue React Tech Ref - initialValue}
* @description The initial HTML content of the editor.

@@ -51,3 +51,3 @@ *

/**
* @see {@link https://www.tiny.cloud/docs/tinymce/latest/react-ref/#oneditorchange React Tech Ref - onEditorChange}
* @see {@link https://www.tiny.cloud/docs/tinymce/7/react-ref/#oneditorchange React Tech Ref - onEditorChange}
* @description Used to store the state of the editor outside the component. Typically used for controlled components.

@@ -60,3 +60,3 @@ * @param a The current HTML content of the editor.

/**
* @see {@link https://www.tiny.cloud/docs/tinymce/latest/react-ref/#value React Tech Ref - value}
* @see {@link https://www.tiny.cloud/docs/tinymce/7/react-ref/#value React Tech Ref - value}
* @description The current HTML content of the editor. Typically used for controlled components.

@@ -66,3 +66,3 @@ */

/**
* @see {@link https://www.tiny.cloud/docs/tinymce/latest/react-ref/#init React Tech Ref - init}
* @see {@link https://www.tiny.cloud/docs/tinymce/7/react-ref/#init React Tech Ref - init}
* @description Additional settings passed to `tinymce.init()` when initializing the editor.

@@ -72,3 +72,3 @@ */

/**
* @see {@link https://www.tiny.cloud/docs/tinymce/latest/react-ref/#tagname React Tech Ref - tagName}
* @see {@link https://www.tiny.cloud/docs/tinymce/7/react-ref/#tagname React Tech Ref - tagName}
* @description The tag name of the element to render the editor into. Only valid when `inline` is `true`.

@@ -78,3 +78,3 @@ */

/**
* @see {@link https://www.tiny.cloud/docs/tinymce/latest/react-ref/#tabIndex React Tech Ref - tabIndex}
* @see {@link https://www.tiny.cloud/docs/tinymce/7/react-ref/#tabIndex React Tech Ref - tabIndex}
* @description The tab index of the element that the editor wraps.

@@ -84,3 +84,3 @@ */

/**
* @see {@link https://www.tiny.cloud/docs/tinymce/latest/react-ref/#cloudchannel React Tech Ref - cloudChannel}
* @see {@link https://www.tiny.cloud/docs/tinymce/7/react-ref/#cloudchannel React Tech Ref - cloudChannel}
* @description The TinyMCE build to use when loading from Tiny Cloud.

@@ -90,3 +90,3 @@ */

/**
* @see {@link https://www.tiny.cloud/docs/tinymce/latest/react-ref/#plugins React Tech Ref - plugins}
* @see {@link https://www.tiny.cloud/docs/tinymce/7/react-ref/#plugins React Tech Ref - plugins}
* @description The plugins to load into the editor. Equivalent to the `plugins` option in TinyMCE.

@@ -96,3 +96,3 @@ */

/**
* @see {@link https://www.tiny.cloud/docs/tinymce/latest/react-ref/#toolbar React Tech Ref - toolbar}
* @see {@link https://www.tiny.cloud/docs/tinymce/7/react-ref/#toolbar React Tech Ref - toolbar}
* @description The toolbar to load into the editor. Equivalent to the `toolbar` option in TinyMCE.

@@ -102,3 +102,3 @@ */

/**
* @see {@link https://www.tiny.cloud/docs/tinymce/latest/react-ref/#disabled React Tech Ref - disabled}
* @see {@link https://www.tiny.cloud/docs/tinymce/7/react-ref/#disabled React Tech Ref - disabled}
* @description Whether the editor should be "disabled" (read-only).

@@ -108,3 +108,3 @@ */

/**
* @see {@link https://www.tiny.cloud/docs/tinymce/latest/react-ref/#textareaname React Tech Ref - textareaName}
* @see {@link https://www.tiny.cloud/docs/tinymce/7/react-ref/#textareaname React Tech Ref - textareaName}
* @description Set the `name` attribute of the `textarea` element used for the editor in forms. Only valid in iframe mode.

@@ -114,3 +114,3 @@ */

/**
* @see {@link https://www.tiny.cloud/docs/tinymce/latest/react-ref/#tinymcescriptsrc React Tech Ref - tinymceScriptSrc}
* @see {@link https://www.tiny.cloud/docs/tinymce/7/react-ref/#tinymcescriptsrc React Tech Ref - tinymceScriptSrc}
* @description The URL of the TinyMCE script to lazy load.

@@ -120,8 +120,8 @@ */

/**
* @see {@link https://www.tiny.cloud/docs/tinymce/latest/react-ref/#rollback React Tech Ref - rollback}
* @description The number of milliseconds to wait after before reverting to the previous value when the editor's content changes.
* @see {@link https://www.tiny.cloud/docs/tinymce/7/react-ref/#rollback React Tech Ref - rollback}
* @description The number of milliseconds to wait before reverting to the previous value when the editor's content changes.
*/
rollback: number | false;
/**
* @see {@link https://www.tiny.cloud/docs/tinymce/latest/react-ref/#scriptloading React Tech Ref - scriptLoading}
* @see {@link https://www.tiny.cloud/docs/tinymce/7/react-ref/#scriptloading React Tech Ref - scriptLoading}
* @description Options for how the TinyMCE script should be loaded.

@@ -138,3 +138,3 @@ * @property async Whether the script should be loaded with the `async` attribute.

/**
* @see {@link https://www.tiny.cloud/docs/tinymce/latest/react-ref/#licenseKey React Tech Ref - licenseKey}
* @see {@link https://www.tiny.cloud/docs/tinymce/7/react-ref/#licenseKey React Tech Ref - licenseKey}
* @description Tiny Cloud License Key for when self-hosting TinyMCE.

@@ -141,0 +141,0 @@ */

@@ -73,4 +73,4 @@ {

},
"version": "5.1.2-feature.20240708060041889.sha4bce245",
"version": "5.1.2-feature.20240709011619104.sha6039318",
"name": "@tinymce/tinymce-react"
}
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