easy-email-pro-editor 1.56.1 → 1.56.2

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # easy-email-pro-editor
2
2
 
3
+ ## 1.56.2
4
+
5
+ ### Patch Changes
6
+
7
+ - fix react 19 image bug
8
+
3
9
  ## 1.56.1
4
10
 
5
11
  ### Patch Changes
@@ -1,4 +1,5 @@
1
1
  /// <reference types="react" />
2
+ /// <reference types="react" />
2
3
  import { HtmlBlockNodeElement } from "easy-email-pro-core";
3
4
  import { BaseElement } from "../BaseElement";
4
5
  export declare class HtmlBlockNode extends BaseElement<HtmlBlockNodeElement> {
@@ -14,12 +15,14 @@ export declare class HtmlBlockNode extends BaseElement<HtmlBlockNodeElement> {
14
15
  suppressContentEditableWarning?: boolean | undefined;
15
16
  suppressHydrationWarning?: boolean | undefined;
16
17
  accessKey?: string | undefined;
18
+ autoCapitalize?: (string & {}) | "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined;
17
19
  autoFocus?: boolean | undefined;
18
20
  className?: string | undefined;
19
21
  contentEditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
20
22
  contextMenu?: string | undefined;
21
23
  dir?: string | undefined;
22
24
  draggable?: (boolean | "true" | "false") | undefined;
25
+ enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined;
23
26
  hidden?: boolean | undefined;
24
27
  lang?: string | undefined;
25
28
  nonce?: string | undefined;
@@ -40,7 +43,6 @@ export declare class HtmlBlockNode extends BaseElement<HtmlBlockNodeElement> {
40
43
  rev?: string | undefined;
41
44
  typeof?: string | undefined;
42
45
  vocab?: string | undefined;
43
- autoCapitalize?: string | undefined;
44
46
  autoCorrect?: string | undefined;
45
47
  autoSave?: string | undefined;
46
48
  color?: string | undefined;
@@ -51,12 +53,14 @@ export declare class HtmlBlockNode extends BaseElement<HtmlBlockNodeElement> {
51
53
  itemRef?: string | undefined;
52
54
  results?: number | undefined;
53
55
  security?: string | undefined;
54
- unselectable?: "on" | "off" | undefined;
56
+ unselectable?: "off" | "on" | undefined;
55
57
  inputMode?: "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
56
58
  is?: string | undefined;
59
+ exportparts?: string | undefined;
60
+ part?: string | undefined;
57
61
  "aria-activedescendant"?: string | undefined;
58
62
  "aria-atomic"?: (boolean | "true" | "false") | undefined;
59
- "aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
63
+ "aria-autocomplete"?: "none" | "list" | "inline" | "both" | undefined;
60
64
  "aria-braillelabel"?: string | undefined;
61
65
  "aria-brailleroledescription"?: string | undefined;
62
66
  "aria-busy"?: (boolean | "true" | "false") | undefined;
@@ -71,7 +75,7 @@ export declare class HtmlBlockNode extends BaseElement<HtmlBlockNodeElement> {
71
75
  "aria-description"?: string | undefined;
72
76
  "aria-details"?: string | undefined;
73
77
  "aria-disabled"?: (boolean | "true" | "false") | undefined;
74
- "aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
78
+ "aria-dropeffect"?: "none" | "link" | "copy" | "execute" | "move" | "popup" | undefined;
75
79
  "aria-errormessage"?: string | undefined;
76
80
  "aria-expanded"?: (boolean | "true" | "false") | undefined;
77
81
  "aria-flowto"?: string | undefined;
@@ -128,7 +132,7 @@ export declare class HtmlBlockNode extends BaseElement<HtmlBlockNodeElement> {
128
132
  onBlurCapture?: import("react").FocusEventHandler<HTMLElement> | undefined;
129
133
  onChange?: import("react").FormEventHandler<HTMLElement> | undefined;
130
134
  onChangeCapture?: import("react").FormEventHandler<HTMLElement> | undefined;
131
- onBeforeInput?: import("react").FormEventHandler<HTMLElement> | undefined;
135
+ onBeforeInput?: import("react").InputEventHandler<HTMLElement> | undefined;
132
136
  onBeforeInputCapture?: import("react").FormEventHandler<HTMLElement> | undefined;
133
137
  onInput?: import("react").FormEventHandler<HTMLElement> | undefined;
134
138
  onInputCapture?: import("react").FormEventHandler<HTMLElement> | undefined;
@@ -178,8 +182,6 @@ export declare class HtmlBlockNode extends BaseElement<HtmlBlockNodeElement> {
178
182
  onProgressCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
179
183
  onRateChange?: import("react").ReactEventHandler<HTMLElement> | undefined;
180
184
  onRateChangeCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
181
- onResize?: import("react").ReactEventHandler<HTMLElement> | undefined;
182
- onResizeCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
183
185
  onSeeked?: import("react").ReactEventHandler<HTMLElement> | undefined;
184
186
  onSeekedCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
185
187
  onSeeking?: import("react").ReactEventHandler<HTMLElement> | undefined;
@@ -249,9 +251,7 @@ export declare class HtmlBlockNode extends BaseElement<HtmlBlockNodeElement> {
249
251
  onPointerCancel?: import("react").PointerEventHandler<HTMLElement> | undefined;
250
252
  onPointerCancelCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
251
253
  onPointerEnter?: import("react").PointerEventHandler<HTMLElement> | undefined;
252
- onPointerEnterCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
253
254
  onPointerLeave?: import("react").PointerEventHandler<HTMLElement> | undefined;
254
- onPointerLeaveCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
255
255
  onPointerOver?: import("react").PointerEventHandler<HTMLElement> | undefined;
256
256
  onPointerOverCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
257
257
  onPointerOut?: import("react").PointerEventHandler<HTMLElement> | undefined;
@@ -287,12 +287,14 @@ export declare class HtmlBlockNode extends BaseElement<HtmlBlockNodeElement> {
287
287
  suppressContentEditableWarning?: boolean | undefined;
288
288
  suppressHydrationWarning?: boolean | undefined;
289
289
  accessKey?: string | undefined;
290
+ autoCapitalize?: (string & {}) | "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined;
290
291
  autoFocus?: boolean | undefined;
291
292
  className?: string | undefined;
292
293
  contentEditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
293
294
  contextMenu?: string | undefined;
294
295
  dir?: string | undefined;
295
296
  draggable?: (boolean | "true" | "false") | undefined;
297
+ enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined;
296
298
  hidden?: boolean | undefined;
297
299
  lang?: string | undefined;
298
300
  nonce?: string | undefined;
@@ -313,7 +315,6 @@ export declare class HtmlBlockNode extends BaseElement<HtmlBlockNodeElement> {
313
315
  rev?: string | undefined;
314
316
  typeof?: string | undefined;
315
317
  vocab?: string | undefined;
316
- autoCapitalize?: string | undefined;
317
318
  autoCorrect?: string | undefined;
318
319
  autoSave?: string | undefined;
319
320
  color?: string | undefined;
@@ -324,12 +325,14 @@ export declare class HtmlBlockNode extends BaseElement<HtmlBlockNodeElement> {
324
325
  itemRef?: string | undefined;
325
326
  results?: number | undefined;
326
327
  security?: string | undefined;
327
- unselectable?: "on" | "off" | undefined;
328
+ unselectable?: "off" | "on" | undefined;
328
329
  inputMode?: "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
329
330
  is?: string | undefined;
331
+ exportparts?: string | undefined;
332
+ part?: string | undefined;
330
333
  "aria-activedescendant"?: string | undefined;
331
334
  "aria-atomic"?: (boolean | "true" | "false") | undefined;
332
- "aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
335
+ "aria-autocomplete"?: "none" | "list" | "inline" | "both" | undefined;
333
336
  "aria-braillelabel"?: string | undefined;
334
337
  "aria-brailleroledescription"?: string | undefined;
335
338
  "aria-busy"?: (boolean | "true" | "false") | undefined;
@@ -344,7 +347,7 @@ export declare class HtmlBlockNode extends BaseElement<HtmlBlockNodeElement> {
344
347
  "aria-description"?: string | undefined;
345
348
  "aria-details"?: string | undefined;
346
349
  "aria-disabled"?: (boolean | "true" | "false") | undefined;
347
- "aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
350
+ "aria-dropeffect"?: "none" | "link" | "copy" | "execute" | "move" | "popup" | undefined;
348
351
  "aria-errormessage"?: string | undefined;
349
352
  "aria-expanded"?: (boolean | "true" | "false") | undefined;
350
353
  "aria-flowto"?: string | undefined;
@@ -401,7 +404,7 @@ export declare class HtmlBlockNode extends BaseElement<HtmlBlockNodeElement> {
401
404
  onBlurCapture?: import("react").FocusEventHandler<HTMLElement> | undefined;
402
405
  onChange?: import("react").FormEventHandler<HTMLElement> | undefined;
403
406
  onChangeCapture?: import("react").FormEventHandler<HTMLElement> | undefined;
404
- onBeforeInput?: import("react").FormEventHandler<HTMLElement> | undefined;
407
+ onBeforeInput?: import("react").InputEventHandler<HTMLElement> | undefined;
405
408
  onBeforeInputCapture?: import("react").FormEventHandler<HTMLElement> | undefined;
406
409
  onInput?: import("react").FormEventHandler<HTMLElement> | undefined;
407
410
  onInputCapture?: import("react").FormEventHandler<HTMLElement> | undefined;
@@ -451,8 +454,6 @@ export declare class HtmlBlockNode extends BaseElement<HtmlBlockNodeElement> {
451
454
  onProgressCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
452
455
  onRateChange?: import("react").ReactEventHandler<HTMLElement> | undefined;
453
456
  onRateChangeCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
454
- onResize?: import("react").ReactEventHandler<HTMLElement> | undefined;
455
- onResizeCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
456
457
  onSeeked?: import("react").ReactEventHandler<HTMLElement> | undefined;
457
458
  onSeekedCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
458
459
  onSeeking?: import("react").ReactEventHandler<HTMLElement> | undefined;
@@ -522,9 +523,7 @@ export declare class HtmlBlockNode extends BaseElement<HtmlBlockNodeElement> {
522
523
  onPointerCancel?: import("react").PointerEventHandler<HTMLElement> | undefined;
523
524
  onPointerCancelCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
524
525
  onPointerEnter?: import("react").PointerEventHandler<HTMLElement> | undefined;
525
- onPointerEnterCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
526
526
  onPointerLeave?: import("react").PointerEventHandler<HTMLElement> | undefined;
527
- onPointerLeaveCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
528
527
  onPointerOver?: import("react").PointerEventHandler<HTMLElement> | undefined;
529
528
  onPointerOverCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
530
529
  onPointerOut?: import("react").PointerEventHandler<HTMLElement> | undefined;
@@ -551,5 +550,5 @@ export declare class HtmlBlockNode extends BaseElement<HtmlBlockNodeElement> {
551
550
  'data-slate-inline'?: true | undefined;
552
551
  'data-slate-void'?: true | undefined;
553
552
  ref: any;
554
- }, "id" | "title" | "children" | "style" | "manifest" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoFocus" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "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>;
553
+ }, "id" | "title" | "children" | "style" | "manifest" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "hidden" | "lang" | "nonce" | "slot" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "exportparts" | "part" | "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" | "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" | "onPointerLeave" | "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>;
555
554
  }
@@ -15,12 +15,14 @@ export declare class HtmlNode extends BaseElement<HtmlNodeElement> {
15
15
  suppressContentEditableWarning?: boolean | undefined;
16
16
  suppressHydrationWarning?: boolean | undefined;
17
17
  accessKey?: string | undefined;
18
+ autoCapitalize?: (string & {}) | "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined;
18
19
  autoFocus?: boolean | undefined;
19
20
  className?: string | undefined;
20
21
  contentEditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
21
22
  contextMenu?: string | undefined;
22
23
  dir?: string | undefined;
23
24
  draggable?: (boolean | "true" | "false") | undefined;
25
+ enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined;
24
26
  hidden?: boolean | undefined;
25
27
  lang?: string | undefined;
26
28
  nonce?: string | undefined;
@@ -41,7 +43,6 @@ export declare class HtmlNode extends BaseElement<HtmlNodeElement> {
41
43
  rev?: string | undefined;
42
44
  typeof?: string | undefined;
43
45
  vocab?: string | undefined;
44
- autoCapitalize?: string | undefined;
45
46
  autoCorrect?: string | undefined;
46
47
  autoSave?: string | undefined;
47
48
  color?: string | undefined;
@@ -52,12 +53,14 @@ export declare class HtmlNode extends BaseElement<HtmlNodeElement> {
52
53
  itemRef?: string | undefined;
53
54
  results?: number | undefined;
54
55
  security?: string | undefined;
55
- unselectable?: "on" | "off" | undefined;
56
+ unselectable?: "off" | "on" | undefined;
56
57
  inputMode?: "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
57
58
  is?: string | undefined;
59
+ exportparts?: string | undefined;
60
+ part?: string | undefined;
58
61
  "aria-activedescendant"?: string | undefined;
59
62
  "aria-atomic"?: (boolean | "true" | "false") | undefined;
60
- "aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
63
+ "aria-autocomplete"?: "none" | "list" | "inline" | "both" | undefined;
61
64
  "aria-braillelabel"?: string | undefined;
62
65
  "aria-brailleroledescription"?: string | undefined;
63
66
  "aria-busy"?: (boolean | "true" | "false") | undefined;
@@ -72,7 +75,7 @@ export declare class HtmlNode extends BaseElement<HtmlNodeElement> {
72
75
  "aria-description"?: string | undefined;
73
76
  "aria-details"?: string | undefined;
74
77
  "aria-disabled"?: (boolean | "true" | "false") | undefined;
75
- "aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
78
+ "aria-dropeffect"?: "none" | "link" | "copy" | "execute" | "move" | "popup" | undefined;
76
79
  "aria-errormessage"?: string | undefined;
77
80
  "aria-expanded"?: (boolean | "true" | "false") | undefined;
78
81
  "aria-flowto"?: string | undefined;
@@ -129,7 +132,7 @@ export declare class HtmlNode extends BaseElement<HtmlNodeElement> {
129
132
  onBlurCapture?: React.FocusEventHandler<HTMLElement> | undefined;
130
133
  onChange?: React.FormEventHandler<HTMLElement> | undefined;
131
134
  onChangeCapture?: React.FormEventHandler<HTMLElement> | undefined;
132
- onBeforeInput?: React.FormEventHandler<HTMLElement> | undefined;
135
+ onBeforeInput?: React.InputEventHandler<HTMLElement> | undefined;
133
136
  onBeforeInputCapture?: React.FormEventHandler<HTMLElement> | undefined;
134
137
  onInput?: React.FormEventHandler<HTMLElement> | undefined;
135
138
  onInputCapture?: React.FormEventHandler<HTMLElement> | undefined;
@@ -179,8 +182,6 @@ export declare class HtmlNode extends BaseElement<HtmlNodeElement> {
179
182
  onProgressCapture?: React.ReactEventHandler<HTMLElement> | undefined;
180
183
  onRateChange?: React.ReactEventHandler<HTMLElement> | undefined;
181
184
  onRateChangeCapture?: React.ReactEventHandler<HTMLElement> | undefined;
182
- onResize?: React.ReactEventHandler<HTMLElement> | undefined;
183
- onResizeCapture?: React.ReactEventHandler<HTMLElement> | undefined;
184
185
  onSeeked?: React.ReactEventHandler<HTMLElement> | undefined;
185
186
  onSeekedCapture?: React.ReactEventHandler<HTMLElement> | undefined;
186
187
  onSeeking?: React.ReactEventHandler<HTMLElement> | undefined;
@@ -250,9 +251,7 @@ export declare class HtmlNode extends BaseElement<HtmlNodeElement> {
250
251
  onPointerCancel?: React.PointerEventHandler<HTMLElement> | undefined;
251
252
  onPointerCancelCapture?: React.PointerEventHandler<HTMLElement> | undefined;
252
253
  onPointerEnter?: React.PointerEventHandler<HTMLElement> | undefined;
253
- onPointerEnterCapture?: React.PointerEventHandler<HTMLElement> | undefined;
254
254
  onPointerLeave?: React.PointerEventHandler<HTMLElement> | undefined;
255
- onPointerLeaveCapture?: React.PointerEventHandler<HTMLElement> | undefined;
256
255
  onPointerOver?: React.PointerEventHandler<HTMLElement> | undefined;
257
256
  onPointerOverCapture?: React.PointerEventHandler<HTMLElement> | undefined;
258
257
  onPointerOut?: React.PointerEventHandler<HTMLElement> | undefined;
@@ -15,12 +15,14 @@ export declare class HTMLDomNode extends BaseElement<HTMLDomNodeElement> {
15
15
  suppressContentEditableWarning?: boolean | undefined;
16
16
  suppressHydrationWarning?: boolean | undefined;
17
17
  accessKey?: string | undefined;
18
+ autoCapitalize?: (string & {}) | "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined;
18
19
  autoFocus?: boolean | undefined;
19
20
  className?: string | undefined;
20
21
  contentEditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
21
22
  contextMenu?: string | undefined;
22
23
  dir?: string | undefined;
23
24
  draggable?: (boolean | "true" | "false") | undefined;
25
+ enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined;
24
26
  hidden?: boolean | undefined;
25
27
  lang?: string | undefined;
26
28
  nonce?: string | undefined;
@@ -41,7 +43,6 @@ export declare class HTMLDomNode extends BaseElement<HTMLDomNodeElement> {
41
43
  rev?: string | undefined;
42
44
  typeof?: string | undefined;
43
45
  vocab?: string | undefined;
44
- autoCapitalize?: string | undefined;
45
46
  autoCorrect?: string | undefined;
46
47
  autoSave?: string | undefined;
47
48
  color?: string | undefined;
@@ -52,12 +53,14 @@ export declare class HTMLDomNode extends BaseElement<HTMLDomNodeElement> {
52
53
  itemRef?: string | undefined;
53
54
  results?: number | undefined;
54
55
  security?: string | undefined;
55
- unselectable?: "on" | "off" | undefined;
56
+ unselectable?: "off" | "on" | undefined;
56
57
  inputMode?: "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
57
58
  is?: string | undefined;
59
+ exportparts?: string | undefined;
60
+ part?: string | undefined;
58
61
  "aria-activedescendant"?: string | undefined;
59
62
  "aria-atomic"?: (boolean | "true" | "false") | undefined;
60
- "aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
63
+ "aria-autocomplete"?: "none" | "list" | "inline" | "both" | undefined;
61
64
  "aria-braillelabel"?: string | undefined;
62
65
  "aria-brailleroledescription"?: string | undefined;
63
66
  "aria-busy"?: (boolean | "true" | "false") | undefined;
@@ -72,7 +75,7 @@ export declare class HTMLDomNode extends BaseElement<HTMLDomNodeElement> {
72
75
  "aria-description"?: string | undefined;
73
76
  "aria-details"?: string | undefined;
74
77
  "aria-disabled"?: (boolean | "true" | "false") | undefined;
75
- "aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
78
+ "aria-dropeffect"?: "none" | "link" | "copy" | "execute" | "move" | "popup" | undefined;
76
79
  "aria-errormessage"?: string | undefined;
77
80
  "aria-expanded"?: (boolean | "true" | "false") | undefined;
78
81
  "aria-flowto"?: string | undefined;
@@ -129,7 +132,7 @@ export declare class HTMLDomNode extends BaseElement<HTMLDomNodeElement> {
129
132
  onBlurCapture?: React.FocusEventHandler<HTMLElement> | undefined;
130
133
  onChange?: React.FormEventHandler<HTMLElement> | undefined;
131
134
  onChangeCapture?: React.FormEventHandler<HTMLElement> | undefined;
132
- onBeforeInput?: React.FormEventHandler<HTMLElement> | undefined;
135
+ onBeforeInput?: React.InputEventHandler<HTMLElement> | undefined;
133
136
  onBeforeInputCapture?: React.FormEventHandler<HTMLElement> | undefined;
134
137
  onInput?: React.FormEventHandler<HTMLElement> | undefined;
135
138
  onInputCapture?: React.FormEventHandler<HTMLElement> | undefined;
@@ -179,8 +182,6 @@ export declare class HTMLDomNode extends BaseElement<HTMLDomNodeElement> {
179
182
  onProgressCapture?: React.ReactEventHandler<HTMLElement> | undefined;
180
183
  onRateChange?: React.ReactEventHandler<HTMLElement> | undefined;
181
184
  onRateChangeCapture?: React.ReactEventHandler<HTMLElement> | undefined;
182
- onResize?: React.ReactEventHandler<HTMLElement> | undefined;
183
- onResizeCapture?: React.ReactEventHandler<HTMLElement> | undefined;
184
185
  onSeeked?: React.ReactEventHandler<HTMLElement> | undefined;
185
186
  onSeekedCapture?: React.ReactEventHandler<HTMLElement> | undefined;
186
187
  onSeeking?: React.ReactEventHandler<HTMLElement> | undefined;
@@ -250,9 +251,7 @@ export declare class HTMLDomNode extends BaseElement<HTMLDomNodeElement> {
250
251
  onPointerCancel?: React.PointerEventHandler<HTMLElement> | undefined;
251
252
  onPointerCancelCapture?: React.PointerEventHandler<HTMLElement> | undefined;
252
253
  onPointerEnter?: React.PointerEventHandler<HTMLElement> | undefined;
253
- onPointerEnterCapture?: React.PointerEventHandler<HTMLElement> | undefined;
254
254
  onPointerLeave?: React.PointerEventHandler<HTMLElement> | undefined;
255
- onPointerLeaveCapture?: React.PointerEventHandler<HTMLElement> | undefined;
256
255
  onPointerOver?: React.PointerEventHandler<HTMLElement> | undefined;
257
256
  onPointerOverCapture?: React.PointerEventHandler<HTMLElement> | undefined;
258
257
  onPointerOut?: React.PointerEventHandler<HTMLElement> | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "easy-email-pro-editor",
3
- "version": "1.56.1",
3
+ "version": "1.56.2",
4
4
  "description": "",
5
5
  "files": [
6
6
  "lib",