Revert "Fixed typo"

This reverts commit 70980de77a.
This commit is contained in:
Cagatay Civici 2024-05-15 12:24:26 +03:00
parent 70980de77a
commit 428dbe0469
107 changed files with 753 additions and 753 deletions

View file

@ -117,11 +117,11 @@ export interface EditorLoadEvent {
*/
export interface EditorPassThroughOptions {
/**
* Used to pass attributes to the roots DOM element.
* Used to pass attributes to the root's DOM element.
*/
root?: EditorPassThroughOptionType;
/**
* Used to pass attributes to the toolbars DOM element.
* Used to pass attributes to the toolbar's DOM element.
*/
toolbar?: EditorPassThroughOptionType;
/**
@ -129,59 +129,59 @@ export interface EditorPassThroughOptions {
*/
formats?: EditorPassThroughOptionType;
/**
* Used to pass attributes to the headers DOM element.
* Used to pass attributes to the header's DOM element.
*/
header?: EditorPassThroughOptionType;
/**
* Used to pass attributes to the options DOM element.
* Used to pass attributes to the option's DOM element.
*/
option?: EditorPassThroughOptionType;
/**
* Used to pass attributes to the bolds DOM element.
* Used to pass attributes to the bold's DOM element.
*/
bold?: EditorPassThroughOptionType;
/**
* Used to pass attributes to the italics DOM element.
* Used to pass attributes to the italic's DOM element.
*/
italic?: EditorPassThroughOptionType;
/**
* Used to pass attributes to the underlines DOM element.
* Used to pass attributes to the underline's DOM element.
*/
underline?: EditorPassThroughOptionType;
/**
* Used to pass attributes to the colors DOM element.
* Used to pass attributes to the color's DOM element.
*/
color?: EditorPassThroughOptionType;
/**
* Used to pass attributes to the backgrounds DOM element.
* Used to pass attributes to the background's DOM element.
*/
background?: EditorPassThroughOptionType;
/**
* Used to pass attributes to the lists DOM element.
* Used to pass attributes to the list's DOM element.
*/
list?: EditorPassThroughOptionType;
/**
* Used to pass attributes to the selects DOM element.
* Used to pass attributes to the select's DOM element.
*/
select?: EditorPassThroughOptionType;
/**
* Used to pass attributes to the links DOM element.
* Used to pass attributes to the link's DOM element.
*/
link?: EditorPassThroughOptionType;
/**
* Used to pass attributes to the images DOM element.
* Used to pass attributes to the image's DOM element.
*/
image?: EditorPassThroughOptionType;
/**
* Used to pass attributes to the code blocks DOM element.
* Used to pass attributes to the code block's DOM element.
*/
codeBlock?: EditorPassThroughOptionType;
/**
* Used to pass attributes to the cleans DOM element.
* Used to pass attributes to the clean's DOM element.
*/
clean?: EditorPassThroughOptionType;
/**
* Used to pass attributes to the contents DOM element.
* Used to pass attributes to the content's DOM element.
*/
content?: EditorPassThroughOptionType;
/**