easy-email-pro-editor 1.26.7 → 1.28.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/index.js +895 -842
- package/lib/typings/components/Elements/atom/Button.d.ts +1 -1
- package/lib/typings/components/Elements/atom/HtmlBlockNode.d.ts +14 -14
- package/lib/typings/components/Elements/atom/HtmlNode.d.ts +7 -7
- package/lib/typings/components/Elements/atom/Social.d.ts +1 -1
- package/lib/typings/components/Elements/atom/Table.d.ts +2 -2
- package/lib/typings/components/Elements/basic/Button.d.ts +1 -1
- package/lib/typings/components/Elements/basic/HTMLDomNode.d.ts +7 -7
- package/lib/typings/components/Elements/basic/Social.d.ts +1 -1
- package/lib/typings/constants/index.d.ts +2 -1
- package/lib/typings/typings/index.d.ts +2 -0
- package/package.json +1 -1
|
@@ -41,6 +41,7 @@ export declare class Button<T extends Element = ButtonElement> extends BaseEleme
|
|
|
41
41
|
};
|
|
42
42
|
static defaultAttributes: {
|
|
43
43
|
title?: string | undefined;
|
|
44
|
+
rel?: string | undefined;
|
|
44
45
|
color?: string | undefined;
|
|
45
46
|
"font-family"?: string | undefined;
|
|
46
47
|
"font-size"?: string | undefined;
|
|
@@ -64,7 +65,6 @@ export declare class Button<T extends Element = ButtonElement> extends BaseEleme
|
|
|
64
65
|
"border-radius"?: string | undefined;
|
|
65
66
|
"text-align"?: string | undefined;
|
|
66
67
|
href?: string | undefined;
|
|
67
|
-
rel?: string | undefined;
|
|
68
68
|
target?: string | undefined;
|
|
69
69
|
"inner-padding"?: string | undefined;
|
|
70
70
|
"vertical-align"?: "middle" | "top" | "bottom" | undefined;
|
|
@@ -7,8 +7,7 @@ export declare class HtmlBlockNode extends BaseElement<HtmlBlockNodeElement> {
|
|
|
7
7
|
static defaultAttributes: {
|
|
8
8
|
title?: string | undefined;
|
|
9
9
|
children?: import("react").ReactNode;
|
|
10
|
-
|
|
11
|
-
rel?: string | undefined;
|
|
10
|
+
style?: string | undefined;
|
|
12
11
|
manifest?: string | undefined;
|
|
13
12
|
defaultChecked?: boolean | undefined;
|
|
14
13
|
defaultValue?: string | number | readonly string[] | undefined;
|
|
@@ -27,7 +26,6 @@ export declare class HtmlBlockNode extends BaseElement<HtmlBlockNodeElement> {
|
|
|
27
26
|
nonce?: string | undefined;
|
|
28
27
|
slot?: string | undefined;
|
|
29
28
|
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
30
|
-
style?: import("react").CSSProperties | undefined;
|
|
31
29
|
tabIndex?: number | undefined;
|
|
32
30
|
translate?: "yes" | "no" | undefined;
|
|
33
31
|
radioGroup?: string | undefined;
|
|
@@ -38,6 +36,7 @@ export declare class HtmlBlockNode extends BaseElement<HtmlBlockNodeElement> {
|
|
|
38
36
|
inlist?: any;
|
|
39
37
|
prefix?: string | undefined;
|
|
40
38
|
property?: string | undefined;
|
|
39
|
+
rel?: string | undefined;
|
|
41
40
|
resource?: string | undefined;
|
|
42
41
|
rev?: string | undefined;
|
|
43
42
|
typeof?: string | undefined;
|
|
@@ -45,6 +44,7 @@ export declare class HtmlBlockNode extends BaseElement<HtmlBlockNodeElement> {
|
|
|
45
44
|
autoCapitalize?: string | undefined;
|
|
46
45
|
autoCorrect?: string | undefined;
|
|
47
46
|
autoSave?: string | undefined;
|
|
47
|
+
color?: string | undefined;
|
|
48
48
|
itemProp?: string | undefined;
|
|
49
49
|
itemScope?: boolean | undefined;
|
|
50
50
|
itemType?: string | undefined;
|
|
@@ -72,12 +72,12 @@ export declare class HtmlBlockNode extends BaseElement<HtmlBlockNodeElement> {
|
|
|
72
72
|
"aria-description"?: string | undefined;
|
|
73
73
|
"aria-details"?: string | undefined;
|
|
74
74
|
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
75
|
-
"aria-dropeffect"?: "link" | "
|
|
75
|
+
"aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
|
|
76
76
|
"aria-errormessage"?: string | undefined;
|
|
77
77
|
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
78
78
|
"aria-flowto"?: string | undefined;
|
|
79
79
|
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
80
|
-
"aria-haspopup"?: boolean | "
|
|
80
|
+
"aria-haspopup"?: boolean | "true" | "false" | "dialog" | "grid" | "listbox" | "menu" | "tree" | undefined;
|
|
81
81
|
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
82
82
|
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
83
83
|
"aria-keyshortcuts"?: string | undefined;
|
|
@@ -88,13 +88,13 @@ export declare class HtmlBlockNode extends BaseElement<HtmlBlockNodeElement> {
|
|
|
88
88
|
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
89
89
|
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
90
90
|
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
91
|
-
"aria-orientation"?: "
|
|
91
|
+
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
92
92
|
"aria-owns"?: string | undefined;
|
|
93
93
|
"aria-placeholder"?: string | undefined;
|
|
94
94
|
"aria-posinset"?: number | undefined;
|
|
95
95
|
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
96
96
|
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
97
|
-
"aria-relevant"?: "text" | "
|
|
97
|
+
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
98
98
|
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
99
99
|
"aria-roledescription"?: string | undefined;
|
|
100
100
|
"aria-rowcount"?: number | undefined;
|
|
@@ -281,8 +281,6 @@ export declare class HtmlBlockNode extends BaseElement<HtmlBlockNodeElement> {
|
|
|
281
281
|
"data-slate-block": string;
|
|
282
282
|
title?: string | undefined;
|
|
283
283
|
children?: import("react").ReactNode;
|
|
284
|
-
color?: string | undefined;
|
|
285
|
-
rel?: string | undefined;
|
|
286
284
|
manifest?: string | undefined;
|
|
287
285
|
defaultChecked?: boolean | undefined;
|
|
288
286
|
defaultValue?: string | number | readonly string[] | undefined;
|
|
@@ -311,6 +309,7 @@ export declare class HtmlBlockNode extends BaseElement<HtmlBlockNodeElement> {
|
|
|
311
309
|
inlist?: any;
|
|
312
310
|
prefix?: string | undefined;
|
|
313
311
|
property?: string | undefined;
|
|
312
|
+
rel?: string | undefined;
|
|
314
313
|
resource?: string | undefined;
|
|
315
314
|
rev?: string | undefined;
|
|
316
315
|
typeof?: string | undefined;
|
|
@@ -318,6 +317,7 @@ export declare class HtmlBlockNode extends BaseElement<HtmlBlockNodeElement> {
|
|
|
318
317
|
autoCapitalize?: string | undefined;
|
|
319
318
|
autoCorrect?: string | undefined;
|
|
320
319
|
autoSave?: string | undefined;
|
|
320
|
+
color?: string | undefined;
|
|
321
321
|
itemProp?: string | undefined;
|
|
322
322
|
itemScope?: boolean | undefined;
|
|
323
323
|
itemType?: string | undefined;
|
|
@@ -345,12 +345,12 @@ export declare class HtmlBlockNode extends BaseElement<HtmlBlockNodeElement> {
|
|
|
345
345
|
"aria-description"?: string | undefined;
|
|
346
346
|
"aria-details"?: string | undefined;
|
|
347
347
|
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
348
|
-
"aria-dropeffect"?: "link" | "
|
|
348
|
+
"aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
|
|
349
349
|
"aria-errormessage"?: string | undefined;
|
|
350
350
|
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
351
351
|
"aria-flowto"?: string | undefined;
|
|
352
352
|
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
353
|
-
"aria-haspopup"?: boolean | "
|
|
353
|
+
"aria-haspopup"?: boolean | "true" | "false" | "dialog" | "grid" | "listbox" | "menu" | "tree" | undefined;
|
|
354
354
|
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
355
355
|
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
356
356
|
"aria-keyshortcuts"?: string | undefined;
|
|
@@ -361,13 +361,13 @@ export declare class HtmlBlockNode extends BaseElement<HtmlBlockNodeElement> {
|
|
|
361
361
|
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
362
362
|
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
363
363
|
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
364
|
-
"aria-orientation"?: "
|
|
364
|
+
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
365
365
|
"aria-owns"?: string | undefined;
|
|
366
366
|
"aria-placeholder"?: string | undefined;
|
|
367
367
|
"aria-posinset"?: number | undefined;
|
|
368
368
|
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
369
369
|
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
370
|
-
"aria-relevant"?: "text" | "
|
|
370
|
+
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
371
371
|
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
372
372
|
"aria-roledescription"?: string | undefined;
|
|
373
373
|
"aria-rowcount"?: number | undefined;
|
|
@@ -552,5 +552,5 @@ export declare class HtmlBlockNode extends BaseElement<HtmlBlockNodeElement> {
|
|
|
552
552
|
'data-slate-inline'?: true | undefined;
|
|
553
553
|
'data-slate-void'?: true | undefined;
|
|
554
554
|
ref: any;
|
|
555
|
-
}, "title" | "children" | "
|
|
555
|
+
}, "title" | "children" | "style" | "manifest" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoFocus" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "nonce" | "slot" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "css-class" | "mj-class" | "ref" | "data-slate-block" | "data-slate-node" | "data-slate-inline" | "data-slate-void">, Element>;
|
|
556
556
|
}
|
|
@@ -6,8 +6,7 @@ export declare class HtmlNode extends BaseElement<HtmlNodeElement> {
|
|
|
6
6
|
static defaultAttributes: {
|
|
7
7
|
title?: string | undefined;
|
|
8
8
|
children?: React.ReactNode;
|
|
9
|
-
|
|
10
|
-
rel?: string | undefined;
|
|
9
|
+
style?: React.CSSProperties | undefined;
|
|
11
10
|
manifest?: string | undefined;
|
|
12
11
|
defaultChecked?: boolean | undefined;
|
|
13
12
|
defaultValue?: string | number | readonly string[] | undefined;
|
|
@@ -26,7 +25,6 @@ export declare class HtmlNode extends BaseElement<HtmlNodeElement> {
|
|
|
26
25
|
nonce?: string | undefined;
|
|
27
26
|
slot?: string | undefined;
|
|
28
27
|
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
29
|
-
style?: React.CSSProperties | undefined;
|
|
30
28
|
tabIndex?: number | undefined;
|
|
31
29
|
translate?: "yes" | "no" | undefined;
|
|
32
30
|
radioGroup?: string | undefined;
|
|
@@ -37,6 +35,7 @@ export declare class HtmlNode extends BaseElement<HtmlNodeElement> {
|
|
|
37
35
|
inlist?: any;
|
|
38
36
|
prefix?: string | undefined;
|
|
39
37
|
property?: string | undefined;
|
|
38
|
+
rel?: string | undefined;
|
|
40
39
|
resource?: string | undefined;
|
|
41
40
|
rev?: string | undefined;
|
|
42
41
|
typeof?: string | undefined;
|
|
@@ -44,6 +43,7 @@ export declare class HtmlNode extends BaseElement<HtmlNodeElement> {
|
|
|
44
43
|
autoCapitalize?: string | undefined;
|
|
45
44
|
autoCorrect?: string | undefined;
|
|
46
45
|
autoSave?: string | undefined;
|
|
46
|
+
color?: string | undefined;
|
|
47
47
|
itemProp?: string | undefined;
|
|
48
48
|
itemScope?: boolean | undefined;
|
|
49
49
|
itemType?: string | undefined;
|
|
@@ -71,12 +71,12 @@ export declare class HtmlNode extends BaseElement<HtmlNodeElement> {
|
|
|
71
71
|
"aria-description"?: string | undefined;
|
|
72
72
|
"aria-details"?: string | undefined;
|
|
73
73
|
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
74
|
-
"aria-dropeffect"?: "link" | "
|
|
74
|
+
"aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
|
|
75
75
|
"aria-errormessage"?: string | undefined;
|
|
76
76
|
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
77
77
|
"aria-flowto"?: string | undefined;
|
|
78
78
|
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
79
|
-
"aria-haspopup"?: boolean | "
|
|
79
|
+
"aria-haspopup"?: boolean | "true" | "false" | "dialog" | "grid" | "listbox" | "menu" | "tree" | undefined;
|
|
80
80
|
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
81
81
|
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
82
82
|
"aria-keyshortcuts"?: string | undefined;
|
|
@@ -87,13 +87,13 @@ export declare class HtmlNode extends BaseElement<HtmlNodeElement> {
|
|
|
87
87
|
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
88
88
|
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
89
89
|
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
90
|
-
"aria-orientation"?: "
|
|
90
|
+
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
91
91
|
"aria-owns"?: string | undefined;
|
|
92
92
|
"aria-placeholder"?: string | undefined;
|
|
93
93
|
"aria-posinset"?: number | undefined;
|
|
94
94
|
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
95
95
|
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
96
|
-
"aria-relevant"?: "text" | "
|
|
96
|
+
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
97
97
|
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
98
98
|
"aria-roledescription"?: string | undefined;
|
|
99
99
|
"aria-rowcount"?: number | undefined;
|
|
@@ -45,7 +45,7 @@ export declare class Social extends BaseElement<SocialElement> {
|
|
|
45
45
|
"padding-right"?: string | undefined;
|
|
46
46
|
"border-radius"?: string | undefined;
|
|
47
47
|
"inner-padding"?: string | undefined;
|
|
48
|
-
mode?: "
|
|
48
|
+
mode?: "horizontal" | "vertical" | undefined;
|
|
49
49
|
"icon-height"?: string | undefined;
|
|
50
50
|
"icon-size"?: string | undefined;
|
|
51
51
|
"icon-padding"?: string | undefined;
|
|
@@ -26,6 +26,7 @@ export declare class Table extends BaseElement<TableElement> {
|
|
|
26
26
|
width: string;
|
|
27
27
|
};
|
|
28
28
|
static defaultAttributes: {
|
|
29
|
+
role?: "none" | "presentation" | undefined;
|
|
29
30
|
color?: string | undefined;
|
|
30
31
|
"font-family"?: string | undefined;
|
|
31
32
|
"font-size"?: string | undefined;
|
|
@@ -44,10 +45,9 @@ export declare class Table extends BaseElement<TableElement> {
|
|
|
44
45
|
"padding-left"?: string | undefined;
|
|
45
46
|
"padding-right"?: string | undefined;
|
|
46
47
|
border?: string | undefined;
|
|
47
|
-
role?: "none" | "presentation" | undefined;
|
|
48
48
|
cellpadding?: string | undefined;
|
|
49
49
|
cellspacing?: string | undefined;
|
|
50
|
-
"table-layout"?: "
|
|
50
|
+
"table-layout"?: "inherit" | "fixed" | "initial" | "auto" | undefined;
|
|
51
51
|
"css-class"?: string | undefined;
|
|
52
52
|
"mj-class"?: string | undefined;
|
|
53
53
|
};
|
|
@@ -3,6 +3,7 @@ import { Button as AtomButton } from "../atom";
|
|
|
3
3
|
export declare class Button extends AtomButton {
|
|
4
4
|
static defaultAttributes: {
|
|
5
5
|
title?: string | undefined;
|
|
6
|
+
rel?: string | undefined;
|
|
6
7
|
color?: string | undefined;
|
|
7
8
|
"font-family"?: string | undefined;
|
|
8
9
|
"font-size"?: string | undefined;
|
|
@@ -26,7 +27,6 @@ export declare class Button extends AtomButton {
|
|
|
26
27
|
"border-radius"?: string | undefined;
|
|
27
28
|
"text-align"?: string | undefined;
|
|
28
29
|
href?: string | undefined;
|
|
29
|
-
rel?: string | undefined;
|
|
30
30
|
target?: string | undefined;
|
|
31
31
|
"inner-padding"?: string | undefined;
|
|
32
32
|
"vertical-align"?: "middle" | "top" | "bottom" | undefined;
|
|
@@ -7,8 +7,7 @@ export declare class HTMLDomNode extends BaseElement<HTMLDomNodeElement> {
|
|
|
7
7
|
static defaultAttributes: {
|
|
8
8
|
title?: string | undefined;
|
|
9
9
|
children?: React.ReactNode;
|
|
10
|
-
|
|
11
|
-
rel?: string | undefined;
|
|
10
|
+
style?: React.CSSProperties | undefined;
|
|
12
11
|
manifest?: string | undefined;
|
|
13
12
|
defaultChecked?: boolean | undefined;
|
|
14
13
|
defaultValue?: string | number | readonly string[] | undefined;
|
|
@@ -27,7 +26,6 @@ export declare class HTMLDomNode extends BaseElement<HTMLDomNodeElement> {
|
|
|
27
26
|
nonce?: string | undefined;
|
|
28
27
|
slot?: string | undefined;
|
|
29
28
|
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
30
|
-
style?: React.CSSProperties | undefined;
|
|
31
29
|
tabIndex?: number | undefined;
|
|
32
30
|
translate?: "yes" | "no" | undefined;
|
|
33
31
|
radioGroup?: string | undefined;
|
|
@@ -38,6 +36,7 @@ export declare class HTMLDomNode extends BaseElement<HTMLDomNodeElement> {
|
|
|
38
36
|
inlist?: any;
|
|
39
37
|
prefix?: string | undefined;
|
|
40
38
|
property?: string | undefined;
|
|
39
|
+
rel?: string | undefined;
|
|
41
40
|
resource?: string | undefined;
|
|
42
41
|
rev?: string | undefined;
|
|
43
42
|
typeof?: string | undefined;
|
|
@@ -45,6 +44,7 @@ export declare class HTMLDomNode extends BaseElement<HTMLDomNodeElement> {
|
|
|
45
44
|
autoCapitalize?: string | undefined;
|
|
46
45
|
autoCorrect?: string | undefined;
|
|
47
46
|
autoSave?: string | undefined;
|
|
47
|
+
color?: string | undefined;
|
|
48
48
|
itemProp?: string | undefined;
|
|
49
49
|
itemScope?: boolean | undefined;
|
|
50
50
|
itemType?: string | undefined;
|
|
@@ -72,12 +72,12 @@ export declare class HTMLDomNode extends BaseElement<HTMLDomNodeElement> {
|
|
|
72
72
|
"aria-description"?: string | undefined;
|
|
73
73
|
"aria-details"?: string | undefined;
|
|
74
74
|
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
75
|
-
"aria-dropeffect"?: "link" | "
|
|
75
|
+
"aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
|
|
76
76
|
"aria-errormessage"?: string | undefined;
|
|
77
77
|
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
78
78
|
"aria-flowto"?: string | undefined;
|
|
79
79
|
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
80
|
-
"aria-haspopup"?: boolean | "
|
|
80
|
+
"aria-haspopup"?: boolean | "true" | "false" | "dialog" | "grid" | "listbox" | "menu" | "tree" | undefined;
|
|
81
81
|
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
82
82
|
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
83
83
|
"aria-keyshortcuts"?: string | undefined;
|
|
@@ -88,13 +88,13 @@ export declare class HTMLDomNode extends BaseElement<HTMLDomNodeElement> {
|
|
|
88
88
|
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
89
89
|
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
90
90
|
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
91
|
-
"aria-orientation"?: "
|
|
91
|
+
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
92
92
|
"aria-owns"?: string | undefined;
|
|
93
93
|
"aria-placeholder"?: string | undefined;
|
|
94
94
|
"aria-posinset"?: number | undefined;
|
|
95
95
|
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
96
96
|
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
97
|
-
"aria-relevant"?: "text" | "
|
|
97
|
+
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
98
98
|
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
99
99
|
"aria-roledescription"?: string | undefined;
|
|
100
100
|
"aria-rowcount"?: number | undefined;
|
|
@@ -17,7 +17,7 @@ export declare class Social extends AtomSocial {
|
|
|
17
17
|
"padding-right"?: string | undefined;
|
|
18
18
|
"border-radius"?: string | undefined;
|
|
19
19
|
"inner-padding"?: string | undefined;
|
|
20
|
-
mode?: "
|
|
20
|
+
mode?: "horizontal" | "vertical" | undefined;
|
|
21
21
|
"icon-height"?: string | undefined;
|
|
22
22
|
"icon-size"?: string | undefined;
|
|
23
23
|
"icon-padding"?: string | undefined;
|
|
@@ -11,7 +11,8 @@ export declare enum TextFormat {
|
|
|
11
11
|
BACKGROUND_COLOR = "bgColor",
|
|
12
12
|
MERGETAG = "mergetag",
|
|
13
13
|
ALIGN = "align",
|
|
14
|
-
REMOVE_FORMAT = "removeFormat"
|
|
14
|
+
REMOVE_FORMAT = "removeFormat",
|
|
15
|
+
LIST = "LIST"
|
|
15
16
|
}
|
|
16
17
|
export declare enum CustomEvent {
|
|
17
18
|
EDITOR_CLICK = "EDITOR_CLICK"
|
|
@@ -75,6 +75,8 @@ export interface BasicEditorProps extends Partial<Pick<EditableProps, "onDOMBefo
|
|
|
75
75
|
}) => Array<TextFormat | React.FC>;
|
|
76
76
|
subfix?: React.ReactNode;
|
|
77
77
|
fixed?: boolean;
|
|
78
|
+
follow?: "selection" | "container" | "page";
|
|
79
|
+
iconSize?: number;
|
|
78
80
|
};
|
|
79
81
|
mergetags?: MergetagItem[];
|
|
80
82
|
mergetagsData?: Record<string, any>;
|