roosterjs 8.21.1-dev.2 → 8.21.1-dev.3

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/dist/rooster.js CHANGED
@@ -2176,6 +2176,31 @@ function getDarkColor(color) {
2176
2176
  exports.default = getDarkColor;
2177
2177
 
2178
2178
 
2179
+ /***/ }),
2180
+
2181
+ /***/ "./packages/roosterjs-compatible-types/lib/index.ts":
2182
+ /*!**********************************************************!*\
2183
+ !*** ./packages/roosterjs-compatible-types/lib/index.ts ***!
2184
+ \**********************************************************/
2185
+ /*! no static exports found */
2186
+ /***/ (function(module, exports, __webpack_require__) {
2187
+
2188
+ "use strict";
2189
+
2190
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
2191
+ if (k2 === undefined) k2 = k;
2192
+ Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
2193
+ }) : (function(o, m, k, k2) {
2194
+ if (k2 === undefined) k2 = k;
2195
+ o[k2] = m[k];
2196
+ }));
2197
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
2198
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
2199
+ };
2200
+ Object.defineProperty(exports, "__esModule", { value: true });
2201
+ __exportStar(__webpack_require__(/*! roosterjs-editor-types/lib/compatibleTypes */ "./packages/roosterjs-editor-types/lib/compatibleTypes.ts"), exports);
2202
+
2203
+
2179
2204
  /***/ }),
2180
2205
 
2181
2206
  /***/ "./packages/roosterjs-editor-api/lib/experiment/experimentCommitListChains.ts":
@@ -24881,6 +24906,1752 @@ Object.defineProperty(exports, "Watermark", { enumerable: true, get: function ()
24881
24906
  Object.defineProperty(exports, "__esModule", { value: true });
24882
24907
 
24883
24908
 
24909
+ /***/ }),
24910
+
24911
+ /***/ "./packages/roosterjs-editor-types/lib/compatibleEnum/Alignment.ts":
24912
+ /*!*************************************************************************!*\
24913
+ !*** ./packages/roosterjs-editor-types/lib/compatibleEnum/Alignment.ts ***!
24914
+ \*************************************************************************/
24915
+ /*! no static exports found */
24916
+ /***/ (function(module, exports, __webpack_require__) {
24917
+
24918
+ "use strict";
24919
+
24920
+ Object.defineProperty(exports, "__esModule", { value: true });
24921
+ exports.CompatibleAlignment = void 0;
24922
+ /**
24923
+ * enum for setting block alignment, used by setAlignment API
24924
+ */
24925
+ var CompatibleAlignment;
24926
+ (function (CompatibleAlignment) {
24927
+ /**
24928
+ * Align left
24929
+ */
24930
+ CompatibleAlignment[CompatibleAlignment["Left"] = 0] = "Left";
24931
+ /**
24932
+ * Align center
24933
+ */
24934
+ CompatibleAlignment[CompatibleAlignment["Center"] = 1] = "Center";
24935
+ /**
24936
+ * Align right
24937
+ */
24938
+ CompatibleAlignment[CompatibleAlignment["Right"] = 2] = "Right";
24939
+ })(CompatibleAlignment = exports.CompatibleAlignment || (exports.CompatibleAlignment = {}));
24940
+
24941
+
24942
+ /***/ }),
24943
+
24944
+ /***/ "./packages/roosterjs-editor-types/lib/compatibleEnum/Capitalization.ts":
24945
+ /*!******************************************************************************!*\
24946
+ !*** ./packages/roosterjs-editor-types/lib/compatibleEnum/Capitalization.ts ***!
24947
+ \******************************************************************************/
24948
+ /*! no static exports found */
24949
+ /***/ (function(module, exports, __webpack_require__) {
24950
+
24951
+ "use strict";
24952
+
24953
+ Object.defineProperty(exports, "__esModule", { value: true });
24954
+ exports.CompatibleCapitalization = void 0;
24955
+ /**
24956
+ * The enum used for controlling the capitalization of text.
24957
+ * Used by changeCapitalization API
24958
+ */
24959
+ var CompatibleCapitalization;
24960
+ (function (CompatibleCapitalization) {
24961
+ /**
24962
+ * Transforms the first character after punctuation mark followed by space
24963
+ * to uppercase and the rest of characters to lowercase.
24964
+ */
24965
+ CompatibleCapitalization["Sentence"] = "sentence";
24966
+ /**
24967
+ * Transforms all characters to lowercase
24968
+ */
24969
+ CompatibleCapitalization["Lowercase"] = "lowercase";
24970
+ /**
24971
+ * Transforms all characters to uppercase
24972
+ */
24973
+ CompatibleCapitalization["Uppercase"] = "uppercase";
24974
+ /**
24975
+ * Transforms the first character of each word to uppercase
24976
+ */
24977
+ CompatibleCapitalization["CapitalizeEachWord"] = "capitalize";
24978
+ })(CompatibleCapitalization = exports.CompatibleCapitalization || (exports.CompatibleCapitalization = {}));
24979
+
24980
+
24981
+ /***/ }),
24982
+
24983
+ /***/ "./packages/roosterjs-editor-types/lib/compatibleEnum/ChangeSource.ts":
24984
+ /*!****************************************************************************!*\
24985
+ !*** ./packages/roosterjs-editor-types/lib/compatibleEnum/ChangeSource.ts ***!
24986
+ \****************************************************************************/
24987
+ /*! no static exports found */
24988
+ /***/ (function(module, exports, __webpack_require__) {
24989
+
24990
+ "use strict";
24991
+
24992
+ Object.defineProperty(exports, "__esModule", { value: true });
24993
+ exports.CompatibleChangeSource = void 0;
24994
+ /**
24995
+ * Possible change sources. Here are the predefined sources.
24996
+ * It can also be other string if the change source can't fall into these sources.
24997
+ */
24998
+ var CompatibleChangeSource;
24999
+ (function (CompatibleChangeSource) {
25000
+ /**
25001
+ * Content changed by auto link
25002
+ */
25003
+ CompatibleChangeSource["AutoLink"] = "AutoLink";
25004
+ /**
25005
+ * Content changed by create link
25006
+ */
25007
+ CompatibleChangeSource["CreateLink"] = "CreateLink";
25008
+ /**
25009
+ * Content changed by format
25010
+ */
25011
+ CompatibleChangeSource["Format"] = "Format";
25012
+ /**
25013
+ * Content changed by image resize
25014
+ */
25015
+ CompatibleChangeSource["ImageResize"] = "ImageResize";
25016
+ /**
25017
+ * Content changed by paste
25018
+ */
25019
+ CompatibleChangeSource["Paste"] = "Paste";
25020
+ /**
25021
+ * Content changed by setContent API
25022
+ */
25023
+ CompatibleChangeSource["SetContent"] = "SetContent";
25024
+ /**
25025
+ * Content changed by cut operation
25026
+ */
25027
+ CompatibleChangeSource["Cut"] = "Cut";
25028
+ /**
25029
+ * Content changed by drag & drop operation
25030
+ */
25031
+ CompatibleChangeSource["Drop"] = "Drop";
25032
+ /**
25033
+ * Insert a new entity into editor
25034
+ */
25035
+ CompatibleChangeSource["InsertEntity"] = "InsertEntity";
25036
+ /**
25037
+ * Editor is switched to dark mode, content color is changed
25038
+ */
25039
+ CompatibleChangeSource["SwitchToDarkMode"] = "SwitchToDarkMode";
25040
+ /**
25041
+ * Editor is switched to light mode, content color is changed
25042
+ */
25043
+ CompatibleChangeSource["SwitchToLightMode"] = "SwitchToLightMode";
25044
+ /**
25045
+ * List chain reorganized numbers of lists
25046
+ */
25047
+ CompatibleChangeSource["ListChain"] = "ListChain";
25048
+ })(CompatibleChangeSource = exports.CompatibleChangeSource || (exports.CompatibleChangeSource = {}));
25049
+
25050
+
25051
+ /***/ }),
25052
+
25053
+ /***/ "./packages/roosterjs-editor-types/lib/compatibleEnum/ClearFormatMode.ts":
25054
+ /*!*******************************************************************************!*\
25055
+ !*** ./packages/roosterjs-editor-types/lib/compatibleEnum/ClearFormatMode.ts ***!
25056
+ \*******************************************************************************/
25057
+ /*! no static exports found */
25058
+ /***/ (function(module, exports, __webpack_require__) {
25059
+
25060
+ "use strict";
25061
+
25062
+ Object.defineProperty(exports, "__esModule", { value: true });
25063
+ exports.CompatibleClearFormatMode = void 0;
25064
+ /**
25065
+ * Represents the strategy to clear the format of the current editor selection
25066
+ */
25067
+ var CompatibleClearFormatMode;
25068
+ (function (CompatibleClearFormatMode) {
25069
+ /**
25070
+ * Inline format. Remove text format.
25071
+ */
25072
+ CompatibleClearFormatMode[CompatibleClearFormatMode["Inline"] = 0] = "Inline";
25073
+ /**
25074
+ * BLock format. Remove text and structure format of the block.
25075
+ */
25076
+ CompatibleClearFormatMode[CompatibleClearFormatMode["Block"] = 1] = "Block";
25077
+ /**
25078
+ * Detect Inline or Block format based on the current editor selector.
25079
+ */
25080
+ CompatibleClearFormatMode[CompatibleClearFormatMode["AutoDetect"] = 2] = "AutoDetect";
25081
+ })(CompatibleClearFormatMode = exports.CompatibleClearFormatMode || (exports.CompatibleClearFormatMode = {}));
25082
+
25083
+
25084
+ /***/ }),
25085
+
25086
+ /***/ "./packages/roosterjs-editor-types/lib/compatibleEnum/ColorTransformDirection.ts":
25087
+ /*!***************************************************************************************!*\
25088
+ !*** ./packages/roosterjs-editor-types/lib/compatibleEnum/ColorTransformDirection.ts ***!
25089
+ \***************************************************************************************/
25090
+ /*! no static exports found */
25091
+ /***/ (function(module, exports, __webpack_require__) {
25092
+
25093
+ "use strict";
25094
+
25095
+ Object.defineProperty(exports, "__esModule", { value: true });
25096
+ exports.CompatibleColorTransformDirection = void 0;
25097
+ /**
25098
+ * Represents the mode of color transformation
25099
+ */
25100
+ var CompatibleColorTransformDirection;
25101
+ (function (CompatibleColorTransformDirection) {
25102
+ /**
25103
+ * Transform from light to dark
25104
+ */
25105
+ CompatibleColorTransformDirection[CompatibleColorTransformDirection["LightToDark"] = 0] = "LightToDark";
25106
+ /**
25107
+ * Transform from dark to light
25108
+ */
25109
+ CompatibleColorTransformDirection[CompatibleColorTransformDirection["DarkToLight"] = 1] = "DarkToLight";
25110
+ })(CompatibleColorTransformDirection = exports.CompatibleColorTransformDirection || (exports.CompatibleColorTransformDirection = {}));
25111
+
25112
+
25113
+ /***/ }),
25114
+
25115
+ /***/ "./packages/roosterjs-editor-types/lib/compatibleEnum/ContentPosition.ts":
25116
+ /*!*******************************************************************************!*\
25117
+ !*** ./packages/roosterjs-editor-types/lib/compatibleEnum/ContentPosition.ts ***!
25118
+ \*******************************************************************************/
25119
+ /*! no static exports found */
25120
+ /***/ (function(module, exports, __webpack_require__) {
25121
+
25122
+ "use strict";
25123
+
25124
+ Object.defineProperty(exports, "__esModule", { value: true });
25125
+ exports.CompatibleContentPosition = void 0;
25126
+ /**
25127
+ * The position. Mostly used for content insertion and traversing
25128
+ * On insertion, we will need to specify where we want the content to be placed (begin, end, selection or outside)
25129
+ * On content traversing, we will need to specify the start position of traversing
25130
+ */
25131
+ var CompatibleContentPosition;
25132
+ (function (CompatibleContentPosition) {
25133
+ /**
25134
+ * Begin of the container
25135
+ */
25136
+ CompatibleContentPosition[CompatibleContentPosition["Begin"] = 0] = "Begin";
25137
+ /**
25138
+ * End of the container
25139
+ */
25140
+ CompatibleContentPosition[CompatibleContentPosition["End"] = 1] = "End";
25141
+ /**
25142
+ * End of the content div domain.
25143
+ */
25144
+ CompatibleContentPosition[CompatibleContentPosition["DomEnd"] = 2] = "DomEnd";
25145
+ /**
25146
+ * Selection start
25147
+ */
25148
+ CompatibleContentPosition[CompatibleContentPosition["SelectionStart"] = 3] = "SelectionStart";
25149
+ /**
25150
+ * Outside of editor
25151
+ */
25152
+ CompatibleContentPosition[CompatibleContentPosition["Outside"] = 4] = "Outside";
25153
+ /**
25154
+ * Manually defined range
25155
+ */
25156
+ CompatibleContentPosition[CompatibleContentPosition["Range"] = 5] = "Range";
25157
+ })(CompatibleContentPosition = exports.CompatibleContentPosition || (exports.CompatibleContentPosition = {}));
25158
+
25159
+
25160
+ /***/ }),
25161
+
25162
+ /***/ "./packages/roosterjs-editor-types/lib/compatibleEnum/ContentType.ts":
25163
+ /*!***************************************************************************!*\
25164
+ !*** ./packages/roosterjs-editor-types/lib/compatibleEnum/ContentType.ts ***!
25165
+ \***************************************************************************/
25166
+ /*! no static exports found */
25167
+ /***/ (function(module, exports, __webpack_require__) {
25168
+
25169
+ "use strict";
25170
+
25171
+ Object.defineProperty(exports, "__esModule", { value: true });
25172
+ exports.CompatibleContentType = exports.CompatibleContentTypePrefix = void 0;
25173
+ /**
25174
+ * Prefix of content types
25175
+ */
25176
+ var CompatibleContentTypePrefix;
25177
+ (function (CompatibleContentTypePrefix) {
25178
+ /**
25179
+ * Text type prefix
25180
+ */
25181
+ CompatibleContentTypePrefix["Text"] = "text/";
25182
+ /**
25183
+ * Image type prefix
25184
+ */
25185
+ CompatibleContentTypePrefix["Image"] = "image/";
25186
+ })(CompatibleContentTypePrefix = exports.CompatibleContentTypePrefix || (exports.CompatibleContentTypePrefix = {}));
25187
+ /**
25188
+ * Known content types
25189
+ */
25190
+ var CompatibleContentType;
25191
+ (function (CompatibleContentType) {
25192
+ /**
25193
+ * Plain text content type
25194
+ */
25195
+ CompatibleContentType["PlainText"] = "text/plain";
25196
+ /**
25197
+ * HTML content type
25198
+ */
25199
+ CompatibleContentType["HTML"] = "text/html";
25200
+ })(CompatibleContentType = exports.CompatibleContentType || (exports.CompatibleContentType = {}));
25201
+
25202
+
25203
+ /***/ }),
25204
+
25205
+ /***/ "./packages/roosterjs-editor-types/lib/compatibleEnum/DarkModeDatasetNames.ts":
25206
+ /*!************************************************************************************!*\
25207
+ !*** ./packages/roosterjs-editor-types/lib/compatibleEnum/DarkModeDatasetNames.ts ***!
25208
+ \************************************************************************************/
25209
+ /*! no static exports found */
25210
+ /***/ (function(module, exports, __webpack_require__) {
25211
+
25212
+ "use strict";
25213
+
25214
+ Object.defineProperty(exports, "__esModule", { value: true });
25215
+ exports.CompatibleDarkModeDatasetNames = void 0;
25216
+ /**
25217
+ * Constants string for dataset names used by dark mode
25218
+ */
25219
+ var CompatibleDarkModeDatasetNames;
25220
+ (function (CompatibleDarkModeDatasetNames) {
25221
+ /**
25222
+ * Original style text color
25223
+ */
25224
+ CompatibleDarkModeDatasetNames["OriginalStyleColor"] = "ogsc";
25225
+ /**
25226
+ * Original style background color
25227
+ */
25228
+ CompatibleDarkModeDatasetNames["OriginalStyleBackgroundColor"] = "ogsb";
25229
+ /**
25230
+ * Original attribute text color
25231
+ */
25232
+ CompatibleDarkModeDatasetNames["OriginalAttributeColor"] = "ogac";
25233
+ /**
25234
+ * Original attribute background color
25235
+ */
25236
+ CompatibleDarkModeDatasetNames["OriginalAttributeBackgroundColor"] = "ogab";
25237
+ })(CompatibleDarkModeDatasetNames = exports.CompatibleDarkModeDatasetNames || (exports.CompatibleDarkModeDatasetNames = {}));
25238
+
25239
+
25240
+ /***/ }),
25241
+
25242
+ /***/ "./packages/roosterjs-editor-types/lib/compatibleEnum/Direction.ts":
25243
+ /*!*************************************************************************!*\
25244
+ !*** ./packages/roosterjs-editor-types/lib/compatibleEnum/Direction.ts ***!
25245
+ \*************************************************************************/
25246
+ /*! no static exports found */
25247
+ /***/ (function(module, exports, __webpack_require__) {
25248
+
25249
+ "use strict";
25250
+
25251
+ Object.defineProperty(exports, "__esModule", { value: true });
25252
+ exports.CompatibleDirection = void 0;
25253
+ /**
25254
+ * enum for setting block direction, used by setDirection API
25255
+ */
25256
+ var CompatibleDirection;
25257
+ (function (CompatibleDirection) {
25258
+ /**
25259
+ * Left to right
25260
+ */
25261
+ CompatibleDirection[CompatibleDirection["LeftToRight"] = 0] = "LeftToRight";
25262
+ /**
25263
+ * Right to left
25264
+ */
25265
+ CompatibleDirection[CompatibleDirection["RightToLeft"] = 1] = "RightToLeft";
25266
+ })(CompatibleDirection = exports.CompatibleDirection || (exports.CompatibleDirection = {}));
25267
+
25268
+
25269
+ /***/ }),
25270
+
25271
+ /***/ "./packages/roosterjs-editor-types/lib/compatibleEnum/DocumentCommand.ts":
25272
+ /*!*******************************************************************************!*\
25273
+ !*** ./packages/roosterjs-editor-types/lib/compatibleEnum/DocumentCommand.ts ***!
25274
+ \*******************************************************************************/
25275
+ /*! no static exports found */
25276
+ /***/ (function(module, exports, __webpack_require__) {
25277
+
25278
+ "use strict";
25279
+
25280
+ Object.defineProperty(exports, "__esModule", { value: true });
25281
+ exports.CompatibleDocumentCommand = void 0;
25282
+ /**
25283
+ * Command strings for Document.execCommand() API
25284
+ * https://developer.mozilla.org/en-US/docs/Web/API/Document/execCommand
25285
+ */
25286
+ var CompatibleDocumentCommand;
25287
+ (function (CompatibleDocumentCommand) {
25288
+ /**
25289
+ * Changes the browser auto-link behavior (Internet Explorer only)
25290
+ */
25291
+ CompatibleDocumentCommand["AutoUrlDetect"] = "AutoUrlDetect";
25292
+ /**
25293
+ * Changes the document background color. In styleWithCss mode, it affects the background color of the containing block instead.
25294
+ * This requires a <color> value string to be passed in as a value argument. Note that Internet Explorer uses this to set the
25295
+ * text background color.
25296
+ */
25297
+ CompatibleDocumentCommand["BackColor"] = "backColor";
25298
+ /**
25299
+ * Toggles bold on/off for the selection or at the insertion point. Internet Explorer uses the <strong> tag instead of <b>.
25300
+ */
25301
+ CompatibleDocumentCommand["Bold"] = "bold";
25302
+ /**
25303
+ * Clears all authentication credentials from the cache.
25304
+ */
25305
+ CompatibleDocumentCommand["ClearAuthenticationCache"] = "ClearAuthenticationCache";
25306
+ /**
25307
+ * Makes the content document either read-only or editable. This requires a boolean true/false as the value argument.
25308
+ * (Not supported by Internet Explorer.)
25309
+ */
25310
+ CompatibleDocumentCommand["ContentReadOnly"] = "contentReadOnly";
25311
+ /**
25312
+ * Copies the current selection to the clipboard. Conditions of having this behavior enabled vary from one browser to another,
25313
+ * and have evolved over time. Check the compatibility table to determine if you can use it in your case.
25314
+ */
25315
+ CompatibleDocumentCommand["Copy"] = "copy";
25316
+ /**
25317
+ * Creates an hyperlink from the selection, but only if there is a selection. Requires a URI string as a value argument for the
25318
+ * hyperlink's href. The URI must contain at least a single character, which may be whitespace.
25319
+ * (Internet Explorer will create a link with a null value.)
25320
+ */
25321
+ CompatibleDocumentCommand["CreateLink"] = "createLink";
25322
+ /**
25323
+ * Removes the current selection and copies it to the clipboard. When this behavior is enabled varies between browsers,
25324
+ * and its conditions have evolved over time. Check the compatibility table for usage details.
25325
+ */
25326
+ CompatibleDocumentCommand["Cut"] = "cut";
25327
+ /**
25328
+ * Adds a <small> tag around the selection or at the insertion point. (Not supported by Internet Explorer.)
25329
+ */
25330
+ CompatibleDocumentCommand["DecreaseFontSize"] = "decreaseFontSize";
25331
+ /**
25332
+ * Changes the paragraph separator used when new paragraphs are created in editable text regions. See Differences in markup
25333
+ * generation for more details.
25334
+ */
25335
+ CompatibleDocumentCommand["DefaultParagraphSeparator"] = "defaultParagraphSeparator";
25336
+ /**
25337
+ * Deletes the current selection.
25338
+ */
25339
+ CompatibleDocumentCommand["Delete"] = "delete";
25340
+ /**
25341
+ * Enables or disables the table row/column insertion and deletion controls. (Not supported by Internet Explorer.)
25342
+ */
25343
+ CompatibleDocumentCommand["EnableInlineTableEditing"] = "enableInlineTableEditing";
25344
+ /**
25345
+ * Enables or disables the resize handles on images and other resizable objects. (Not supported by Internet Explorer.)
25346
+ */
25347
+ CompatibleDocumentCommand["EnableObjectResizing"] = "enableObjectResizing";
25348
+ /**
25349
+ * Changes the font name for the selection or at the insertion point. This requires a font name string (like "Arial")
25350
+ * as a value argument.
25351
+ */
25352
+ CompatibleDocumentCommand["FontName"] = "fontName";
25353
+ /**
25354
+ * Changes the font size for the selection or at the insertion point. This requires an integer from 1-7 as a value argument.
25355
+ */
25356
+ CompatibleDocumentCommand["FontSize"] = "fontSize";
25357
+ /**
25358
+ * Changes a font color for the selection or at the insertion point. This requires a hexadecimal color value string
25359
+ * as a value argument.
25360
+ */
25361
+ CompatibleDocumentCommand["ForeColor"] = "foreColor";
25362
+ /**
25363
+ * Adds an HTML block-level element around the line containing the current selection, replacing the block element containing
25364
+ * the line if one exists (in Firefox, <blockquote> is the exception — it will wrap any containing block element).
25365
+ * Requires a tag-name string as a value argument. Virtually all block-level elements can be used.
25366
+ * (Internet Explorer supports only heading tags H1–H6, ADDRESS, and PRE, which must be wrapped in angle brackets, such as "<H1>".)
25367
+ */
25368
+ CompatibleDocumentCommand["FormatBlock"] = "formatBlock";
25369
+ /**
25370
+ * Deletes the character ahead of the cursor's position, identical to hitting the Delete key on a Windows keyboard.
25371
+ */
25372
+ CompatibleDocumentCommand["ForwardDelete"] = "forwardDelete";
25373
+ /**
25374
+ * Adds a heading element around a selection or insertion point line. Requires the tag-name strings a value argument (i.e. "H1", "H6").
25375
+ * (Not supported by Internet Explorer and Safari.)
25376
+ */
25377
+ CompatibleDocumentCommand["Heading"] = "heading";
25378
+ /**
25379
+ * Changes the background color for the selection or at the insertion point. Requires a color value string as a value argument.
25380
+ * useCSS must be true for this to function. (Not supported by Internet Explorer.)
25381
+ */
25382
+ CompatibleDocumentCommand["HiliteColor"] = "hiliteColor";
25383
+ /**
25384
+ * Adds a <big> tag around the selection or at the insertion point. (Not supported by Internet Explorer.)
25385
+ */
25386
+ CompatibleDocumentCommand["IncreaseFontSize"] = "increaseFontSize";
25387
+ /**
25388
+ * Indents the line containing the selection or insertion point. In Firefox, if the selection spans multiple lines at different
25389
+ * levels of indentation, only the least indented lines in the selection will be indented.
25390
+ */
25391
+ CompatibleDocumentCommand["Indent"] = "indent";
25392
+ /**
25393
+ * Controls whether the Enter key inserts a <br> element, or splits the current block element into two.
25394
+ * (Not supported by Internet Explorer.)
25395
+ */
25396
+ CompatibleDocumentCommand["InsertBrOnReturn"] = "insertBrOnReturn";
25397
+ /**
25398
+ * Inserts a <hr> element at the insertion point, or replaces the selection with it.
25399
+ */
25400
+ CompatibleDocumentCommand["InsertHorizontalRule"] = "insertHorizontalRule";
25401
+ /**
25402
+ * Inserts an HTML string at the insertion point (deletes selection). Requires a valid HTML string as a value argument.
25403
+ * (Not supported by Internet Explorer.)
25404
+ */
25405
+ CompatibleDocumentCommand["InsertHTML"] = "insertHTML";
25406
+ /**
25407
+ * Inserts an image at the insertion point (deletes selection). Requires a URL string for the image's src as a value argument.
25408
+ * The requirements for this string are the same as createLink.
25409
+ */
25410
+ CompatibleDocumentCommand["InsertImage"] = "insertImage";
25411
+ /**
25412
+ * Creates a numbered ordered list for the selection or at the insertion point.
25413
+ */
25414
+ CompatibleDocumentCommand["InsertOrderedList"] = "insertOrderedList";
25415
+ /**
25416
+ * Creates a bulleted unordered list for the selection or at the insertion point.
25417
+ */
25418
+ CompatibleDocumentCommand["InsertUnorderedList"] = "insertUnorderedList";
25419
+ /**
25420
+ * Inserts a paragraph around the selection or the current line.
25421
+ * (Internet Explorer inserts a paragraph at the insertion point and deletes the selection.)
25422
+ */
25423
+ CompatibleDocumentCommand["InsertParagraph"] = "insertParagraph";
25424
+ /**
25425
+ * Inserts the given plain text at the insertion point (deletes selection).
25426
+ */
25427
+ CompatibleDocumentCommand["InsertText"] = "insertText";
25428
+ /**
25429
+ * Toggles italics on/off for the selection or at the insertion point.
25430
+ * (Internet Explorer uses the <em> element instead of <i>.)
25431
+ */
25432
+ CompatibleDocumentCommand["Italic"] = "italic";
25433
+ /**
25434
+ * Centers the selection or insertion point.
25435
+ */
25436
+ CompatibleDocumentCommand["JustifyCenter"] = "justifyCenter";
25437
+ /**
25438
+ * Justifies the selection or insertion point.
25439
+ */
25440
+ CompatibleDocumentCommand["JustifyFull"] = "justifyFull";
25441
+ /**
25442
+ * Justifies the selection or insertion point to the left.
25443
+ */
25444
+ CompatibleDocumentCommand["JustifyLeft"] = "justifyLeft";
25445
+ /**
25446
+ * Right-justifies the selection or the insertion point.
25447
+ */
25448
+ CompatibleDocumentCommand["JustifyRight"] = "justifyRight";
25449
+ /**
25450
+ * Outdents the line containing the selection or insertion point.
25451
+ */
25452
+ CompatibleDocumentCommand["Outdent"] = "outdent";
25453
+ /**
25454
+ * Pastes the clipboard contents at the insertion point (replaces current selection). Disabled for web content. See [1].
25455
+ */
25456
+ CompatibleDocumentCommand["Paste"] = "paste";
25457
+ /**
25458
+ * Redoes the previous undo command.
25459
+ */
25460
+ CompatibleDocumentCommand["Redo"] = "redo";
25461
+ /**
25462
+ * Removes all formatting from the current selection.
25463
+ */
25464
+ CompatibleDocumentCommand["RemoveFormat"] = "removeFormat";
25465
+ /**
25466
+ * Selects all of the content of the editable region.
25467
+ */
25468
+ CompatibleDocumentCommand["SelectAll"] = "selectAll";
25469
+ /**
25470
+ * Toggles strikethrough on/off for the selection or at the insertion point.
25471
+ */
25472
+ CompatibleDocumentCommand["StrikeThrough"] = "strikeThrough";
25473
+ /**
25474
+ * Toggles subscript on/off for the selection or at the insertion point.
25475
+ */
25476
+ CompatibleDocumentCommand["Subscript"] = "subscript";
25477
+ /**
25478
+ * Toggles superscript on/off for the selection or at the insertion point.
25479
+ */
25480
+ CompatibleDocumentCommand["Superscript"] = "superscript";
25481
+ /**
25482
+ * Toggles underline on/off for the selection or at the insertion point.
25483
+ */
25484
+ CompatibleDocumentCommand["Underline"] = "underline";
25485
+ /**
25486
+ * Undoes the last executed command.
25487
+ */
25488
+ CompatibleDocumentCommand["Undo"] = "undo";
25489
+ /**
25490
+ * Removes the anchor element from a selected hyperlink.
25491
+ */
25492
+ CompatibleDocumentCommand["Unlink"] = "unlink";
25493
+ /**
25494
+ * Replaces the useCSS command. true modifies/generates style attributes in markup, false generates presentational elements.
25495
+ */
25496
+ CompatibleDocumentCommand["StyleWithCSS"] = "styleWithCSS";
25497
+ })(CompatibleDocumentCommand = exports.CompatibleDocumentCommand || (exports.CompatibleDocumentCommand = {}));
25498
+
25499
+
25500
+ /***/ }),
25501
+
25502
+ /***/ "./packages/roosterjs-editor-types/lib/compatibleEnum/DocumentPosition.ts":
25503
+ /*!********************************************************************************!*\
25504
+ !*** ./packages/roosterjs-editor-types/lib/compatibleEnum/DocumentPosition.ts ***!
25505
+ \********************************************************************************/
25506
+ /*! no static exports found */
25507
+ /***/ (function(module, exports, __webpack_require__) {
25508
+
25509
+ "use strict";
25510
+
25511
+ Object.defineProperty(exports, "__esModule", { value: true });
25512
+ exports.CompatibleDocumentPosition = void 0;
25513
+ /**
25514
+ * The is essentially an enum representing result from browser compareDocumentPosition API
25515
+ * https://developer.mozilla.org/en-US/docs/Web/API/Node/compareDocumentPosition
25516
+ */
25517
+ var CompatibleDocumentPosition;
25518
+ (function (CompatibleDocumentPosition) {
25519
+ /**
25520
+ * Same node
25521
+ */
25522
+ CompatibleDocumentPosition[CompatibleDocumentPosition["Same"] = 0] = "Same";
25523
+ /**
25524
+ * Node is disconnected from document
25525
+ */
25526
+ CompatibleDocumentPosition[CompatibleDocumentPosition["Disconnected"] = 1] = "Disconnected";
25527
+ /**
25528
+ * Node is preceding the comparing node
25529
+ */
25530
+ CompatibleDocumentPosition[CompatibleDocumentPosition["Preceding"] = 2] = "Preceding";
25531
+ /**
25532
+ * Node is following the comparing node
25533
+ */
25534
+ CompatibleDocumentPosition[CompatibleDocumentPosition["Following"] = 4] = "Following";
25535
+ /**
25536
+ * Node contains the comparing node
25537
+ */
25538
+ CompatibleDocumentPosition[CompatibleDocumentPosition["Contains"] = 8] = "Contains";
25539
+ /**
25540
+ * Node is contained by the comparing node
25541
+ */
25542
+ CompatibleDocumentPosition[CompatibleDocumentPosition["ContainedBy"] = 16] = "ContainedBy";
25543
+ })(CompatibleDocumentPosition = exports.CompatibleDocumentPosition || (exports.CompatibleDocumentPosition = {}));
25544
+
25545
+
25546
+ /***/ }),
25547
+
25548
+ /***/ "./packages/roosterjs-editor-types/lib/compatibleEnum/EntityClasses.ts":
25549
+ /*!*****************************************************************************!*\
25550
+ !*** ./packages/roosterjs-editor-types/lib/compatibleEnum/EntityClasses.ts ***!
25551
+ \*****************************************************************************/
25552
+ /*! no static exports found */
25553
+ /***/ (function(module, exports, __webpack_require__) {
25554
+
25555
+ "use strict";
25556
+
25557
+ Object.defineProperty(exports, "__esModule", { value: true });
25558
+ exports.CompatibleEntityClasses = void 0;
25559
+ /**
25560
+ * CSS Class names for Entity
25561
+ */
25562
+ var CompatibleEntityClasses;
25563
+ (function (CompatibleEntityClasses) {
25564
+ /**
25565
+ * Class name to specify this is an entity
25566
+ */
25567
+ CompatibleEntityClasses["ENTITY_INFO_NAME"] = "_Entity";
25568
+ /**
25569
+ * Class name to specify the type of an entity
25570
+ */
25571
+ CompatibleEntityClasses["ENTITY_TYPE_PREFIX"] = "_EType_";
25572
+ /**
25573
+ * Class name to specify the ID of an entity
25574
+ */
25575
+ CompatibleEntityClasses["ENTITY_ID_PREFIX"] = "_EId_";
25576
+ /**
25577
+ * Class name to specify if the entity is readonly
25578
+ */
25579
+ CompatibleEntityClasses["ENTITY_READONLY_PREFIX"] = "_EReadonly_";
25580
+ })(CompatibleEntityClasses = exports.CompatibleEntityClasses || (exports.CompatibleEntityClasses = {}));
25581
+
25582
+
25583
+ /***/ }),
25584
+
25585
+ /***/ "./packages/roosterjs-editor-types/lib/compatibleEnum/EntityOperation.ts":
25586
+ /*!*******************************************************************************!*\
25587
+ !*** ./packages/roosterjs-editor-types/lib/compatibleEnum/EntityOperation.ts ***!
25588
+ \*******************************************************************************/
25589
+ /*! no static exports found */
25590
+ /***/ (function(module, exports, __webpack_require__) {
25591
+
25592
+ "use strict";
25593
+
25594
+ Object.defineProperty(exports, "__esModule", { value: true });
25595
+ exports.CompatibleEntityOperation = void 0;
25596
+ /**
25597
+ * Define possible operations to an entity
25598
+ */
25599
+ var CompatibleEntityOperation;
25600
+ (function (CompatibleEntityOperation) {
25601
+ /**
25602
+ * Notify plugins that there is a new plugin was added into editor.
25603
+ * Plugin can handle this event to entity hydration.
25604
+ * This event will be only fired once for each entity DOM node.
25605
+ * After undo, or copy/paste, since new DOM nodes were added, this event will be fired
25606
+ * for those entities represented by newly added nodes.
25607
+ */
25608
+ CompatibleEntityOperation[CompatibleEntityOperation["NewEntity"] = 0] = "NewEntity";
25609
+ /**
25610
+ * Notify plugins that user is clicking target to an entity
25611
+ */
25612
+ CompatibleEntityOperation[CompatibleEntityOperation["Click"] = 1] = "Click";
25613
+ /**
25614
+ * Notify plugins that user is triggering context menu to an entity
25615
+ */
25616
+ CompatibleEntityOperation[CompatibleEntityOperation["ContextMenu"] = 2] = "ContextMenu";
25617
+ /**
25618
+ * Notify plugins that user is escaping from an entity by pressing ESC key
25619
+ */
25620
+ CompatibleEntityOperation[CompatibleEntityOperation["Escape"] = 3] = "Escape";
25621
+ /**
25622
+ * Notify plugins that user is removing an entity from its start position using DELETE key
25623
+ */
25624
+ CompatibleEntityOperation[CompatibleEntityOperation["RemoveFromStart"] = 4] = "RemoveFromStart";
25625
+ /**
25626
+ * Notify plugins that user is remove an entity from its end position using BACKSPACE key
25627
+ */
25628
+ CompatibleEntityOperation[CompatibleEntityOperation["RemoveFromEnd"] = 5] = "RemoveFromEnd";
25629
+ /**
25630
+ * Notify plugins that an entity is being overwritten.
25631
+ * This can be caused by key in, cut, paste, delete, backspace ... on a selection
25632
+ * which contains some entities.
25633
+ */
25634
+ CompatibleEntityOperation[CompatibleEntityOperation["Overwrite"] = 6] = "Overwrite";
25635
+ /**
25636
+ * Notify plugins that an entity is being partially overwritten.
25637
+ * This happens when user selected part of the entity then do key press, or cut, paste, delete, backspace, ...
25638
+ */
25639
+ CompatibleEntityOperation[CompatibleEntityOperation["PartialOverwrite"] = 7] = "PartialOverwrite";
25640
+ /**
25641
+ * Notify plugins that editor is generating HTML content for save.
25642
+ * Plugin should use this event to remove any temporary content, and only leave DOM nodes that
25643
+ * should be saved as HTML string.
25644
+ * This event will provide a cloned DOM tree for each entity, do NOT compare the DOM nodes with cached nodes
25645
+ * because it will always return false.
25646
+ */
25647
+ CompatibleEntityOperation[CompatibleEntityOperation["ReplaceTemporaryContent"] = 8] = "ReplaceTemporaryContent";
25648
+ /**
25649
+ * Notify plugins that editor has attached shadow root for an entity.
25650
+ * Plugins can handle this event to do extra operations to the shadow root
25651
+ */
25652
+ CompatibleEntityOperation[CompatibleEntityOperation["AddShadowRoot"] = 9] = "AddShadowRoot";
25653
+ /**
25654
+ * Notify plugins that editor has removed the shadow root of an entity
25655
+ * Plugins can handle this event to do any necessary clean up for shadow root
25656
+ */
25657
+ CompatibleEntityOperation[CompatibleEntityOperation["RemoveShadowRoot"] = 10] = "RemoveShadowRoot";
25658
+ })(CompatibleEntityOperation = exports.CompatibleEntityOperation || (exports.CompatibleEntityOperation = {}));
25659
+
25660
+
25661
+ /***/ }),
25662
+
25663
+ /***/ "./packages/roosterjs-editor-types/lib/compatibleEnum/ExperimentalFeatures.ts":
25664
+ /*!************************************************************************************!*\
25665
+ !*** ./packages/roosterjs-editor-types/lib/compatibleEnum/ExperimentalFeatures.ts ***!
25666
+ \************************************************************************************/
25667
+ /*! no static exports found */
25668
+ /***/ (function(module, exports, __webpack_require__) {
25669
+
25670
+ "use strict";
25671
+
25672
+ Object.defineProperty(exports, "__esModule", { value: true });
25673
+ exports.CompatibleExperimentalFeatures = void 0;
25674
+ /**
25675
+ * Experimental feature flags
25676
+ */
25677
+ var CompatibleExperimentalFeatures;
25678
+ (function (CompatibleExperimentalFeatures) {
25679
+ /**
25680
+ * @deprecated This feature is always enabled
25681
+ */
25682
+ CompatibleExperimentalFeatures["NewIndentation"] = "NewIndentation";
25683
+ /**
25684
+ * @deprecated This feature is always enabled
25685
+ */
25686
+ CompatibleExperimentalFeatures["NewBullet"] = "NewBullet";
25687
+ /**
25688
+ * @deprecated This feature is always enabled
25689
+ */
25690
+ CompatibleExperimentalFeatures["NewNumbering"] = "NewNumbering";
25691
+ /**
25692
+ * @deprecated This feature is always enabled
25693
+ */
25694
+ CompatibleExperimentalFeatures["ListChain"] = "ListChain";
25695
+ /**
25696
+ * @deprecated This feature is always enabled
25697
+ */
25698
+ CompatibleExperimentalFeatures["MergePastedLine"] = "MergePastedLine";
25699
+ /**
25700
+ * Resize an image horizontally or vertically
25701
+ */
25702
+ CompatibleExperimentalFeatures["SingleDirectionResize"] = "SingleDirectionResize";
25703
+ /**
25704
+ * Try retrieve link preview information when paste
25705
+ */
25706
+ CompatibleExperimentalFeatures["PasteWithLinkPreview"] = "PasteWithLinkPreview";
25707
+ /**
25708
+ * Rotate an inline image (requires ImageEdit plugin)
25709
+ */
25710
+ CompatibleExperimentalFeatures["ImageRotate"] = "ImageRotate";
25711
+ /**
25712
+ * Crop an inline image (requires ImageEdit plugin)
25713
+ */
25714
+ CompatibleExperimentalFeatures["ImageCrop"] = "ImageCrop";
25715
+ /**
25716
+ * @deprecated This feature is always enabled
25717
+ * Check if the element has a style attribute, if not, apply the default format
25718
+ */
25719
+ CompatibleExperimentalFeatures["AlwaysApplyDefaultFormat"] = "AlwaysApplyDefaultFormat";
25720
+ /**
25721
+ * Paste the Html instead of the Img when the Html Body only have one IMG Child node
25722
+ */
25723
+ CompatibleExperimentalFeatures["ConvertSingleImageBody"] = "ConvertSingleImageBody";
25724
+ /**
25725
+ * Align table elements to left, center and right using setAlignment API
25726
+ */
25727
+ CompatibleExperimentalFeatures["TableAlignment"] = "TableAlignment";
25728
+ /**
25729
+ * Provide additional Tab Key Features. Requires Text Features Content Editable Features
25730
+ */
25731
+ CompatibleExperimentalFeatures["TabKeyTextFeatures"] = "TabKeyTextFeatures";
25732
+ /**
25733
+ * Provide a circular resize handles that adaptive the number od handles to the size of the image
25734
+ */
25735
+ CompatibleExperimentalFeatures["AdaptiveHandlesResizer"] = "AdaptiveHandlesResizer";
25736
+ })(CompatibleExperimentalFeatures = exports.CompatibleExperimentalFeatures || (exports.CompatibleExperimentalFeatures = {}));
25737
+
25738
+
25739
+ /***/ }),
25740
+
25741
+ /***/ "./packages/roosterjs-editor-types/lib/compatibleEnum/FontSizeChange.ts":
25742
+ /*!******************************************************************************!*\
25743
+ !*** ./packages/roosterjs-editor-types/lib/compatibleEnum/FontSizeChange.ts ***!
25744
+ \******************************************************************************/
25745
+ /*! no static exports found */
25746
+ /***/ (function(module, exports, __webpack_require__) {
25747
+
25748
+ "use strict";
25749
+
25750
+ Object.defineProperty(exports, "__esModule", { value: true });
25751
+ exports.CompatibleFontSizeChange = void 0;
25752
+ /**
25753
+ * The enum used for increase or decrease font size
25754
+ * Used by setFontSize API
25755
+ */
25756
+ var CompatibleFontSizeChange;
25757
+ (function (CompatibleFontSizeChange) {
25758
+ /**
25759
+ * Increase font size
25760
+ */
25761
+ CompatibleFontSizeChange[CompatibleFontSizeChange["Increase"] = 0] = "Increase";
25762
+ /**
25763
+ * Decrease font size
25764
+ */
25765
+ CompatibleFontSizeChange[CompatibleFontSizeChange["Decrease"] = 1] = "Decrease";
25766
+ })(CompatibleFontSizeChange = exports.CompatibleFontSizeChange || (exports.CompatibleFontSizeChange = {}));
25767
+
25768
+
25769
+ /***/ }),
25770
+
25771
+ /***/ "./packages/roosterjs-editor-types/lib/compatibleEnum/GetContentMode.ts":
25772
+ /*!******************************************************************************!*\
25773
+ !*** ./packages/roosterjs-editor-types/lib/compatibleEnum/GetContentMode.ts ***!
25774
+ \******************************************************************************/
25775
+ /*! no static exports found */
25776
+ /***/ (function(module, exports, __webpack_require__) {
25777
+
25778
+ "use strict";
25779
+
25780
+ Object.defineProperty(exports, "__esModule", { value: true });
25781
+ exports.CompatibleGetContentMode = void 0;
25782
+ /**
25783
+ * Represents a mode number to indicate what kind of content to retrieve when call Editor.getContent()
25784
+ */
25785
+ var CompatibleGetContentMode;
25786
+ (function (CompatibleGetContentMode) {
25787
+ /**
25788
+ * The clean content without any temporary content only for editor.
25789
+ * This is the default value. Call to Editor.getContent() with trigger an ExtractContentWithDom event
25790
+ * so that plugins can remove their temporary content, and will return the HTML content
25791
+ * which is ready for save to storage.
25792
+ */
25793
+ CompatibleGetContentMode[CompatibleGetContentMode["CleanHTML"] = 0] = "CleanHTML";
25794
+ /**
25795
+ * Retrieve the raw HTML string in current editor. Temporary content will be included.
25796
+ */
25797
+ CompatibleGetContentMode[CompatibleGetContentMode["RawHTMLOnly"] = 1] = "RawHTMLOnly";
25798
+ /**
25799
+ * Retrieve the raw HTML string in current editor with a selection marker. This can be used for
25800
+ * save current editor state and call to SetContent with this result can fully restore editor state
25801
+ * including current selection
25802
+ */
25803
+ CompatibleGetContentMode[CompatibleGetContentMode["RawHTMLWithSelection"] = 2] = "RawHTMLWithSelection";
25804
+ /**
25805
+ * Get plain text content only, all format will be ignored
25806
+ */
25807
+ CompatibleGetContentMode[CompatibleGetContentMode["PlainText"] = 3] = "PlainText";
25808
+ /**
25809
+ * A fast way to get plain text content, the line-end positions may not be exactly same with HTML content,
25810
+ * but the text content should be the same. This is used for quickly retrieve text content and check
25811
+ * text only
25812
+ */
25813
+ CompatibleGetContentMode[CompatibleGetContentMode["PlainTextFast"] = 4] = "PlainTextFast";
25814
+ })(CompatibleGetContentMode = exports.CompatibleGetContentMode || (exports.CompatibleGetContentMode = {}));
25815
+
25816
+
25817
+ /***/ }),
25818
+
25819
+ /***/ "./packages/roosterjs-editor-types/lib/compatibleEnum/ImageEditOperation.ts":
25820
+ /*!**********************************************************************************!*\
25821
+ !*** ./packages/roosterjs-editor-types/lib/compatibleEnum/ImageEditOperation.ts ***!
25822
+ \**********************************************************************************/
25823
+ /*! no static exports found */
25824
+ /***/ (function(module, exports, __webpack_require__) {
25825
+
25826
+ "use strict";
25827
+
25828
+ Object.defineProperty(exports, "__esModule", { value: true });
25829
+ exports.CompatibleImageEditOperation = void 0;
25830
+ /**
25831
+ * Operation flags for ImageEdit plugin
25832
+ */
25833
+ var CompatibleImageEditOperation;
25834
+ (function (CompatibleImageEditOperation) {
25835
+ /**
25836
+ * No operation
25837
+ */
25838
+ CompatibleImageEditOperation[CompatibleImageEditOperation["None"] = 0] = "None";
25839
+ /**
25840
+ * Resize image from corner ( horizontal and vertical resize)
25841
+ */
25842
+ CompatibleImageEditOperation[CompatibleImageEditOperation["CornerResize"] = 1] = "CornerResize";
25843
+ /**
25844
+ * Resize image from side ( either horizontal or vertical resize)
25845
+ */
25846
+ CompatibleImageEditOperation[CompatibleImageEditOperation["SideResize"] = 2] = "SideResize";
25847
+ /**
25848
+ * Image resize
25849
+ */
25850
+ CompatibleImageEditOperation[CompatibleImageEditOperation["Resize"] = 3] = "Resize";
25851
+ /**
25852
+ * Image rotate
25853
+ */
25854
+ CompatibleImageEditOperation[CompatibleImageEditOperation["Rotate"] = 4] = "Rotate";
25855
+ /**
25856
+ * Image resize and rotate
25857
+ */
25858
+ CompatibleImageEditOperation[CompatibleImageEditOperation["ResizeAndRotate"] = 7] = "ResizeAndRotate";
25859
+ /**
25860
+ * Image crop
25861
+ */
25862
+ CompatibleImageEditOperation[CompatibleImageEditOperation["Crop"] = 8] = "Crop";
25863
+ /**
25864
+ * All operations
25865
+ */
25866
+ CompatibleImageEditOperation[CompatibleImageEditOperation["All"] = 15] = "All";
25867
+ })(CompatibleImageEditOperation = exports.CompatibleImageEditOperation || (exports.CompatibleImageEditOperation = {}));
25868
+
25869
+
25870
+ /***/ }),
25871
+
25872
+ /***/ "./packages/roosterjs-editor-types/lib/compatibleEnum/Indentation.ts":
25873
+ /*!***************************************************************************!*\
25874
+ !*** ./packages/roosterjs-editor-types/lib/compatibleEnum/Indentation.ts ***!
25875
+ \***************************************************************************/
25876
+ /*! no static exports found */
25877
+ /***/ (function(module, exports, __webpack_require__) {
25878
+
25879
+ "use strict";
25880
+
25881
+ Object.defineProperty(exports, "__esModule", { value: true });
25882
+ exports.CompatibleIndentation = void 0;
25883
+ /**
25884
+ * The enum used for increase or decrease indentation of a block
25885
+ * Used by setIndentation API
25886
+ */
25887
+ var CompatibleIndentation;
25888
+ (function (CompatibleIndentation) {
25889
+ /**
25890
+ * Increase indentation
25891
+ */
25892
+ CompatibleIndentation[CompatibleIndentation["Increase"] = 0] = "Increase";
25893
+ /**
25894
+ * Decrease indentation
25895
+ */
25896
+ CompatibleIndentation[CompatibleIndentation["Decrease"] = 1] = "Decrease";
25897
+ })(CompatibleIndentation = exports.CompatibleIndentation || (exports.CompatibleIndentation = {}));
25898
+
25899
+
25900
+ /***/ }),
25901
+
25902
+ /***/ "./packages/roosterjs-editor-types/lib/compatibleEnum/Keys.ts":
25903
+ /*!********************************************************************!*\
25904
+ !*** ./packages/roosterjs-editor-types/lib/compatibleEnum/Keys.ts ***!
25905
+ \********************************************************************/
25906
+ /*! no static exports found */
25907
+ /***/ (function(module, exports, __webpack_require__) {
25908
+
25909
+ "use strict";
25910
+
25911
+ Object.defineProperty(exports, "__esModule", { value: true });
25912
+ exports.CompatibleKeys = void 0;
25913
+ /**
25914
+ * Key numbers common used keys
25915
+ */
25916
+ var CompatibleKeys;
25917
+ (function (CompatibleKeys) {
25918
+ CompatibleKeys[CompatibleKeys["NULL"] = 0] = "NULL";
25919
+ CompatibleKeys[CompatibleKeys["BACKSPACE"] = 8] = "BACKSPACE";
25920
+ CompatibleKeys[CompatibleKeys["TAB"] = 9] = "TAB";
25921
+ CompatibleKeys[CompatibleKeys["ENTER"] = 13] = "ENTER";
25922
+ CompatibleKeys[CompatibleKeys["SHIFT"] = 16] = "SHIFT";
25923
+ CompatibleKeys[CompatibleKeys["ESCAPE"] = 27] = "ESCAPE";
25924
+ CompatibleKeys[CompatibleKeys["SPACE"] = 32] = "SPACE";
25925
+ CompatibleKeys[CompatibleKeys["PAGEUP"] = 33] = "PAGEUP";
25926
+ CompatibleKeys[CompatibleKeys["LEFT"] = 37] = "LEFT";
25927
+ CompatibleKeys[CompatibleKeys["UP"] = 38] = "UP";
25928
+ CompatibleKeys[CompatibleKeys["RIGHT"] = 39] = "RIGHT";
25929
+ CompatibleKeys[CompatibleKeys["DOWN"] = 40] = "DOWN";
25930
+ CompatibleKeys[CompatibleKeys["DELETE"] = 46] = "DELETE";
25931
+ /**
25932
+ * @deprecated Just for backward compatibility
25933
+ */
25934
+ CompatibleKeys[CompatibleKeys["EIGHT_ASTIRISK"] = 56] = "EIGHT_ASTIRISK";
25935
+ CompatibleKeys[CompatibleKeys["EIGHT_ASTERISK"] = 56] = "EIGHT_ASTERISK";
25936
+ CompatibleKeys[CompatibleKeys["B"] = 66] = "B";
25937
+ CompatibleKeys[CompatibleKeys["I"] = 73] = "I";
25938
+ CompatibleKeys[CompatibleKeys["U"] = 85] = "U";
25939
+ CompatibleKeys[CompatibleKeys["Y"] = 89] = "Y";
25940
+ CompatibleKeys[CompatibleKeys["Z"] = 90] = "Z";
25941
+ CompatibleKeys[CompatibleKeys["COMMA"] = 188] = "COMMA";
25942
+ CompatibleKeys[CompatibleKeys["DASH_UNDERSCORE"] = 189] = "DASH_UNDERSCORE";
25943
+ CompatibleKeys[CompatibleKeys["PERIOD"] = 190] = "PERIOD";
25944
+ /**
25945
+ * @deprecated Just for backward compatibility
25946
+ */
25947
+ CompatibleKeys[CompatibleKeys["FORWARDSLASH"] = 191] = "FORWARDSLASH";
25948
+ CompatibleKeys[CompatibleKeys["FORWARD_SLASH"] = 191] = "FORWARD_SLASH";
25949
+ CompatibleKeys[CompatibleKeys["GRAVE_TILDE"] = 192] = "GRAVE_TILDE";
25950
+ // Keys below are non-standard, and should be used in ContentEditFeatures only
25951
+ CompatibleKeys[CompatibleKeys["CONTENTCHANGED"] = 257] = "CONTENTCHANGED";
25952
+ CompatibleKeys[CompatibleKeys["RANGE"] = 258] = "RANGE";
25953
+ CompatibleKeys[CompatibleKeys["Ctrl"] = 4096] = "Ctrl";
25954
+ CompatibleKeys[CompatibleKeys["Meta"] = 8192] = "Meta";
25955
+ CompatibleKeys[CompatibleKeys["Shift"] = 16384] = "Shift";
25956
+ })(CompatibleKeys = exports.CompatibleKeys || (exports.CompatibleKeys = {}));
25957
+
25958
+
25959
+ /***/ }),
25960
+
25961
+ /***/ "./packages/roosterjs-editor-types/lib/compatibleEnum/KnownCreateElementDataIndex.ts":
25962
+ /*!*******************************************************************************************!*\
25963
+ !*** ./packages/roosterjs-editor-types/lib/compatibleEnum/KnownCreateElementDataIndex.ts ***!
25964
+ \*******************************************************************************************/
25965
+ /*! no static exports found */
25966
+ /***/ (function(module, exports, __webpack_require__) {
25967
+
25968
+ "use strict";
25969
+
25970
+ Object.defineProperty(exports, "__esModule", { value: true });
25971
+ exports.CompatibleKnownCreateElementDataIndex = void 0;
25972
+ /**
25973
+ * Index of known CreateElementData used by createElement function
25974
+ */
25975
+ var CompatibleKnownCreateElementDataIndex;
25976
+ (function (CompatibleKnownCreateElementDataIndex) {
25977
+ /**
25978
+ * Set a none value to help createElement function ignore falsy value
25979
+ */
25980
+ CompatibleKnownCreateElementDataIndex[CompatibleKnownCreateElementDataIndex["None"] = 0] = "None";
25981
+ /**
25982
+ * An empty line without format
25983
+ */
25984
+ CompatibleKnownCreateElementDataIndex[CompatibleKnownCreateElementDataIndex["EmptyLine"] = 1] = "EmptyLine";
25985
+ /**
25986
+ * Wrapper for blockquote
25987
+ */
25988
+ CompatibleKnownCreateElementDataIndex[CompatibleKnownCreateElementDataIndex["BlockquoteWrapper"] = 2] = "BlockquoteWrapper";
25989
+ /**
25990
+ * Temp DIV for copy/paste
25991
+ */
25992
+ CompatibleKnownCreateElementDataIndex[CompatibleKnownCreateElementDataIndex["CopyPasteTempDiv"] = 3] = "CopyPasteTempDiv";
25993
+ /**
25994
+ * ListItem with block style
25995
+ */
25996
+ CompatibleKnownCreateElementDataIndex[CompatibleKnownCreateElementDataIndex["BlockListItem"] = 4] = "BlockListItem";
25997
+ /**
25998
+ * Wrapper element for context menu
25999
+ */
26000
+ CompatibleKnownCreateElementDataIndex[CompatibleKnownCreateElementDataIndex["ContextMenuWrapper"] = 5] = "ContextMenuWrapper";
26001
+ /**
26002
+ * Wrapper element for image edit
26003
+ */
26004
+ CompatibleKnownCreateElementDataIndex[CompatibleKnownCreateElementDataIndex["ImageEditWrapper"] = 6] = "ImageEditWrapper";
26005
+ /**
26006
+ * @deprecated
26007
+ */
26008
+ CompatibleKnownCreateElementDataIndex[CompatibleKnownCreateElementDataIndex["TableHorizontalResizer"] = 7] = "TableHorizontalResizer";
26009
+ /**
26010
+ * @deprecated
26011
+ */
26012
+ CompatibleKnownCreateElementDataIndex[CompatibleKnownCreateElementDataIndex["TableVerticalResizer"] = 8] = "TableVerticalResizer";
26013
+ /**
26014
+ * @deprecated
26015
+ */
26016
+ CompatibleKnownCreateElementDataIndex[CompatibleKnownCreateElementDataIndex["TableResizerLTR"] = 9] = "TableResizerLTR";
26017
+ /**
26018
+ * @deprecated
26019
+ */
26020
+ CompatibleKnownCreateElementDataIndex[CompatibleKnownCreateElementDataIndex["TableResizerRTL"] = 10] = "TableResizerRTL";
26021
+ /**
26022
+ * @deprecated
26023
+ */
26024
+ CompatibleKnownCreateElementDataIndex[CompatibleKnownCreateElementDataIndex["TableSelector"] = 11] = "TableSelector";
26025
+ })(CompatibleKnownCreateElementDataIndex = exports.CompatibleKnownCreateElementDataIndex || (exports.CompatibleKnownCreateElementDataIndex = {}));
26026
+
26027
+
26028
+ /***/ }),
26029
+
26030
+ /***/ "./packages/roosterjs-editor-types/lib/compatibleEnum/ListType.ts":
26031
+ /*!************************************************************************!*\
26032
+ !*** ./packages/roosterjs-editor-types/lib/compatibleEnum/ListType.ts ***!
26033
+ \************************************************************************/
26034
+ /*! no static exports found */
26035
+ /***/ (function(module, exports, __webpack_require__) {
26036
+
26037
+ "use strict";
26038
+
26039
+ Object.defineProperty(exports, "__esModule", { value: true });
26040
+ exports.CompatibleListType = void 0;
26041
+ /**
26042
+ * Type of list (numbering or bullet)
26043
+ */
26044
+ var CompatibleListType;
26045
+ (function (CompatibleListType) {
26046
+ /**
26047
+ * None list type
26048
+ * It means this is not a list
26049
+ */
26050
+ CompatibleListType[CompatibleListType["None"] = 0] = "None";
26051
+ /**
26052
+ * Ordered List type (numbering list)
26053
+ * Represented by "OL" tag
26054
+ */
26055
+ CompatibleListType[CompatibleListType["Ordered"] = 1] = "Ordered";
26056
+ /**
26057
+ * Unordered List type (bullet list)
26058
+ * Represented by "UL" tag
26059
+ */
26060
+ CompatibleListType[CompatibleListType["Unordered"] = 2] = "Unordered";
26061
+ })(CompatibleListType = exports.CompatibleListType || (exports.CompatibleListType = {}));
26062
+
26063
+
26064
+ /***/ }),
26065
+
26066
+ /***/ "./packages/roosterjs-editor-types/lib/compatibleEnum/NodeType.ts":
26067
+ /*!************************************************************************!*\
26068
+ !*** ./packages/roosterjs-editor-types/lib/compatibleEnum/NodeType.ts ***!
26069
+ \************************************************************************/
26070
+ /*! no static exports found */
26071
+ /***/ (function(module, exports, __webpack_require__) {
26072
+
26073
+ "use strict";
26074
+
26075
+ Object.defineProperty(exports, "__esModule", { value: true });
26076
+ exports.CompatibleNodeType = void 0;
26077
+ /**
26078
+ * The is essentially an enum represents the type of the node
26079
+ * https://developer.mozilla.org/en-US/docs/Web/API/Node/nodeType
26080
+ * Values not listed here are deprecated.
26081
+ */
26082
+ var CompatibleNodeType;
26083
+ (function (CompatibleNodeType) {
26084
+ /**
26085
+ * An Element node such as <p> or <div>.
26086
+ */
26087
+ CompatibleNodeType[CompatibleNodeType["Element"] = 1] = "Element";
26088
+ /**
26089
+ * The actual Text of Element or Attr.
26090
+ */
26091
+ CompatibleNodeType[CompatibleNodeType["Text"] = 3] = "Text";
26092
+ /**
26093
+ * A ProcessingInstruction of an XML document such as <?xml-stylesheet ... ?> declaration.
26094
+ */
26095
+ CompatibleNodeType[CompatibleNodeType["ProcessingInstruction"] = 7] = "ProcessingInstruction";
26096
+ /**
26097
+ * A Comment node.
26098
+ */
26099
+ CompatibleNodeType[CompatibleNodeType["Comment"] = 8] = "Comment";
26100
+ /**
26101
+ * A Document node.
26102
+ */
26103
+ CompatibleNodeType[CompatibleNodeType["Document"] = 9] = "Document";
26104
+ /**
26105
+ * A DocumentType node e.g. <!DOCTYPE html> for HTML5 documents.
26106
+ */
26107
+ CompatibleNodeType[CompatibleNodeType["DocumentType"] = 10] = "DocumentType";
26108
+ /**
26109
+ * A DocumentFragment node.
26110
+ */
26111
+ CompatibleNodeType[CompatibleNodeType["DocumentFragment"] = 11] = "DocumentFragment";
26112
+ })(CompatibleNodeType = exports.CompatibleNodeType || (exports.CompatibleNodeType = {}));
26113
+
26114
+
26115
+ /***/ }),
26116
+
26117
+ /***/ "./packages/roosterjs-editor-types/lib/compatibleEnum/PluginEventType.ts":
26118
+ /*!*******************************************************************************!*\
26119
+ !*** ./packages/roosterjs-editor-types/lib/compatibleEnum/PluginEventType.ts ***!
26120
+ \*******************************************************************************/
26121
+ /*! no static exports found */
26122
+ /***/ (function(module, exports, __webpack_require__) {
26123
+
26124
+ "use strict";
26125
+
26126
+ Object.defineProperty(exports, "__esModule", { value: true });
26127
+ exports.CompatiblePluginEventType = void 0;
26128
+ /**
26129
+ * Editor plugin event type
26130
+ */
26131
+ var CompatiblePluginEventType;
26132
+ (function (CompatiblePluginEventType) {
26133
+ /**
26134
+ * HTML KeyDown event
26135
+ */
26136
+ CompatiblePluginEventType[CompatiblePluginEventType["KeyDown"] = 0] = "KeyDown";
26137
+ /**
26138
+ * HTML KeyPress event
26139
+ */
26140
+ CompatiblePluginEventType[CompatiblePluginEventType["KeyPress"] = 1] = "KeyPress";
26141
+ /**
26142
+ * HTML KeyUp event
26143
+ */
26144
+ CompatiblePluginEventType[CompatiblePluginEventType["KeyUp"] = 2] = "KeyUp";
26145
+ /**
26146
+ * HTML Input / TextInput event
26147
+ */
26148
+ CompatiblePluginEventType[CompatiblePluginEventType["Input"] = 3] = "Input";
26149
+ /**
26150
+ * HTML CompositionEnd event
26151
+ */
26152
+ CompatiblePluginEventType[CompatiblePluginEventType["CompositionEnd"] = 4] = "CompositionEnd";
26153
+ /**
26154
+ * HTML MouseDown event
26155
+ */
26156
+ CompatiblePluginEventType[CompatiblePluginEventType["MouseDown"] = 5] = "MouseDown";
26157
+ /**
26158
+ * HTML MouseUp event
26159
+ */
26160
+ CompatiblePluginEventType[CompatiblePluginEventType["MouseUp"] = 6] = "MouseUp";
26161
+ /**
26162
+ * Content changed event
26163
+ */
26164
+ CompatiblePluginEventType[CompatiblePluginEventType["ContentChanged"] = 7] = "ContentChanged";
26165
+ /**
26166
+ * Extract Content with a DOM tree event
26167
+ * This event is triggered when getContent() is called with triggerExtractContentEvent = true
26168
+ * Plugin can handle this event to remove the UI only markups to return clean HTML
26169
+ * by operating on a cloned DOM tree
26170
+ */
26171
+ CompatiblePluginEventType[CompatiblePluginEventType["ExtractContentWithDom"] = 8] = "ExtractContentWithDom";
26172
+ /**
26173
+ * Before Paste event, provide a chance to change copied content
26174
+ */
26175
+ CompatiblePluginEventType[CompatiblePluginEventType["BeforeCutCopy"] = 9] = "BeforeCutCopy";
26176
+ /**
26177
+ * Before Paste event, provide a chance to change paste content
26178
+ */
26179
+ CompatiblePluginEventType[CompatiblePluginEventType["BeforePaste"] = 10] = "BeforePaste";
26180
+ /**
26181
+ * Let plugin know editor is ready now
26182
+ */
26183
+ CompatiblePluginEventType[CompatiblePluginEventType["EditorReady"] = 11] = "EditorReady";
26184
+ /**
26185
+ * Let plugin know editor is about to dispose
26186
+ */
26187
+ CompatiblePluginEventType[CompatiblePluginEventType["BeforeDispose"] = 12] = "BeforeDispose";
26188
+ /**
26189
+ * Pending format state (bold, italic, underline, ... with collapsed selection) is changed
26190
+ */
26191
+ CompatiblePluginEventType[CompatiblePluginEventType["PendingFormatStateChanged"] = 13] = "PendingFormatStateChanged";
26192
+ /**
26193
+ * Scroll event triggered by scroll container
26194
+ */
26195
+ CompatiblePluginEventType[CompatiblePluginEventType["Scroll"] = 14] = "Scroll";
26196
+ /**
26197
+ * Operating on an entity. See enum EntityOperation for more details about each operation
26198
+ */
26199
+ CompatiblePluginEventType[CompatiblePluginEventType["EntityOperation"] = 15] = "EntityOperation";
26200
+ /**
26201
+ * HTML ContextMenu event
26202
+ */
26203
+ CompatiblePluginEventType[CompatiblePluginEventType["ContextMenu"] = 16] = "ContextMenu";
26204
+ /**
26205
+ * Editor has entered shadow edit mode
26206
+ */
26207
+ CompatiblePluginEventType[CompatiblePluginEventType["EnteredShadowEdit"] = 17] = "EnteredShadowEdit";
26208
+ /**
26209
+ * Editor is about to leave shadow edit mode
26210
+ */
26211
+ CompatiblePluginEventType[CompatiblePluginEventType["LeavingShadowEdit"] = 18] = "LeavingShadowEdit";
26212
+ /**
26213
+ * Content of image is being changed from client side
26214
+ */
26215
+ CompatiblePluginEventType[CompatiblePluginEventType["EditImage"] = 19] = "EditImage";
26216
+ /**
26217
+ * Content of editor is about to be cleared by SetContent API, handle this event to cache anything you need
26218
+ * before it is gone
26219
+ */
26220
+ CompatiblePluginEventType[CompatiblePluginEventType["BeforeSetContent"] = 20] = "BeforeSetContent";
26221
+ /**
26222
+ * Zoom scale value is changed, triggered by Editor.setZoomScale() when set a different scale number
26223
+ */
26224
+ CompatiblePluginEventType[CompatiblePluginEventType["ZoomChanged"] = 21] = "ZoomChanged";
26225
+ })(CompatiblePluginEventType = exports.CompatiblePluginEventType || (exports.CompatiblePluginEventType = {}));
26226
+
26227
+
26228
+ /***/ }),
26229
+
26230
+ /***/ "./packages/roosterjs-editor-types/lib/compatibleEnum/PositionType.ts":
26231
+ /*!****************************************************************************!*\
26232
+ !*** ./packages/roosterjs-editor-types/lib/compatibleEnum/PositionType.ts ***!
26233
+ \****************************************************************************/
26234
+ /*! no static exports found */
26235
+ /***/ (function(module, exports, __webpack_require__) {
26236
+
26237
+ "use strict";
26238
+
26239
+ Object.defineProperty(exports, "__esModule", { value: true });
26240
+ exports.CompatiblePositionType = void 0;
26241
+ /**
26242
+ * Represent the type of a position
26243
+ */
26244
+ var CompatiblePositionType;
26245
+ (function (CompatiblePositionType) {
26246
+ /**
26247
+ * At the beginning of a node
26248
+ */
26249
+ CompatiblePositionType[CompatiblePositionType["Begin"] = 0] = "Begin";
26250
+ /**
26251
+ * At the end of a node
26252
+ */
26253
+ CompatiblePositionType[CompatiblePositionType["End"] = -1] = "End";
26254
+ /**
26255
+ * Before a node
26256
+ */
26257
+ CompatiblePositionType[CompatiblePositionType["Before"] = -2] = "Before";
26258
+ /**
26259
+ * After a node
26260
+ */
26261
+ CompatiblePositionType[CompatiblePositionType["After"] = -3] = "After";
26262
+ })(CompatiblePositionType = exports.CompatiblePositionType || (exports.CompatiblePositionType = {}));
26263
+
26264
+
26265
+ /***/ }),
26266
+
26267
+ /***/ "./packages/roosterjs-editor-types/lib/compatibleEnum/QueryScope.ts":
26268
+ /*!**************************************************************************!*\
26269
+ !*** ./packages/roosterjs-editor-types/lib/compatibleEnum/QueryScope.ts ***!
26270
+ \**************************************************************************/
26271
+ /*! no static exports found */
26272
+ /***/ (function(module, exports, __webpack_require__) {
26273
+
26274
+ "use strict";
26275
+
26276
+ Object.defineProperty(exports, "__esModule", { value: true });
26277
+ exports.CompatibleQueryScope = void 0;
26278
+ /**
26279
+ * Query scope for queryElements() API
26280
+ */
26281
+ var CompatibleQueryScope;
26282
+ (function (CompatibleQueryScope) {
26283
+ /**
26284
+ * Query from the whole body of root node. This is default value.
26285
+ */
26286
+ CompatibleQueryScope[CompatibleQueryScope["Body"] = 0] = "Body";
26287
+ /**
26288
+ * Query elements on a given selection (intersect)
26289
+ * The result element can contain the selection, contain part of selection, or inside selection
26290
+ */
26291
+ CompatibleQueryScope[CompatibleQueryScope["OnSelection"] = 1] = "OnSelection";
26292
+ /**
26293
+ * Query elements inside a given selection only
26294
+ */
26295
+ CompatibleQueryScope[CompatibleQueryScope["InSelection"] = 2] = "InSelection";
26296
+ })(CompatibleQueryScope = exports.CompatibleQueryScope || (exports.CompatibleQueryScope = {}));
26297
+
26298
+
26299
+ /***/ }),
26300
+
26301
+ /***/ "./packages/roosterjs-editor-types/lib/compatibleEnum/RegionType.ts":
26302
+ /*!**************************************************************************!*\
26303
+ !*** ./packages/roosterjs-editor-types/lib/compatibleEnum/RegionType.ts ***!
26304
+ \**************************************************************************/
26305
+ /*! no static exports found */
26306
+ /***/ (function(module, exports, __webpack_require__) {
26307
+
26308
+ "use strict";
26309
+
26310
+ Object.defineProperty(exports, "__esModule", { value: true });
26311
+ exports.CompatibleRegionType = void 0;
26312
+ /**
26313
+ * Type of all possible regions. Currently we only support region of Table
26314
+ */
26315
+ var CompatibleRegionType;
26316
+ (function (CompatibleRegionType) {
26317
+ /**
26318
+ * Region split by Table
26319
+ */
26320
+ CompatibleRegionType[CompatibleRegionType["Table"] = 0] = "Table";
26321
+ })(CompatibleRegionType = exports.CompatibleRegionType || (exports.CompatibleRegionType = {}));
26322
+
26323
+
26324
+ /***/ }),
26325
+
26326
+ /***/ "./packages/roosterjs-editor-types/lib/compatibleEnum/SelectionRangeTypes.ts":
26327
+ /*!***********************************************************************************!*\
26328
+ !*** ./packages/roosterjs-editor-types/lib/compatibleEnum/SelectionRangeTypes.ts ***!
26329
+ \***********************************************************************************/
26330
+ /*! no static exports found */
26331
+ /***/ (function(module, exports, __webpack_require__) {
26332
+
26333
+ "use strict";
26334
+
26335
+ Object.defineProperty(exports, "__esModule", { value: true });
26336
+ exports.CompatibleSelectionRangeTypes = void 0;
26337
+ /**
26338
+ * Types of Selection Ranges that the SelectionRangeEx can return
26339
+ */
26340
+ var CompatibleSelectionRangeTypes;
26341
+ (function (CompatibleSelectionRangeTypes) {
26342
+ /**
26343
+ * Normal selection range provided by browser.
26344
+ */
26345
+ CompatibleSelectionRangeTypes[CompatibleSelectionRangeTypes["Normal"] = 0] = "Normal";
26346
+ /**
26347
+ * Selection made inside of a single table.
26348
+ */
26349
+ CompatibleSelectionRangeTypes[CompatibleSelectionRangeTypes["TableSelection"] = 1] = "TableSelection";
26350
+ })(CompatibleSelectionRangeTypes = exports.CompatibleSelectionRangeTypes || (exports.CompatibleSelectionRangeTypes = {}));
26351
+
26352
+
26353
+ /***/ }),
26354
+
26355
+ /***/ "./packages/roosterjs-editor-types/lib/compatibleEnum/TableBorderFormat.ts":
26356
+ /*!*********************************************************************************!*\
26357
+ !*** ./packages/roosterjs-editor-types/lib/compatibleEnum/TableBorderFormat.ts ***!
26358
+ \*********************************************************************************/
26359
+ /*! no static exports found */
26360
+ /***/ (function(module, exports, __webpack_require__) {
26361
+
26362
+ "use strict";
26363
+
26364
+ Object.defineProperty(exports, "__esModule", { value: true });
26365
+ exports.CompatibleTableBorderFormat = void 0;
26366
+ /**
26367
+ * Table format border
26368
+ */
26369
+ var CompatibleTableBorderFormat;
26370
+ (function (CompatibleTableBorderFormat) {
26371
+ /**
26372
+ * All border of the table are displayed
26373
+ * __ __ __
26374
+ * |__|__|__|
26375
+ * |__|__|__|
26376
+ * |__|__|__|
26377
+ */
26378
+ CompatibleTableBorderFormat[CompatibleTableBorderFormat["DEFAULT"] = 0] = "DEFAULT";
26379
+ /**
26380
+ * Middle vertical border are not displayed
26381
+ * __ __ __
26382
+ * |__ __ __|
26383
+ * |__ __ __|
26384
+ * |__ __ __|
26385
+ */
26386
+ CompatibleTableBorderFormat[CompatibleTableBorderFormat["LIST_WITH_SIDE_BORDERS"] = 1] = "LIST_WITH_SIDE_BORDERS";
26387
+ /**
26388
+ * All borders except header rows borders are displayed
26389
+ * __ __ __
26390
+ * __|__|__
26391
+ * __|__|__
26392
+ */
26393
+ CompatibleTableBorderFormat[CompatibleTableBorderFormat["NO_HEADER_BORDERS"] = 2] = "NO_HEADER_BORDERS";
26394
+ /**
26395
+ * The left and right border of the table are not displayed
26396
+ * __ __ __
26397
+ * __|__|__
26398
+ * __|__|__
26399
+ * __|__|__
26400
+ */
26401
+ CompatibleTableBorderFormat[CompatibleTableBorderFormat["NO_SIDE_BORDERS"] = 3] = "NO_SIDE_BORDERS";
26402
+ /**
26403
+ * Only the borders that divides the header row, first column and externals are displayed
26404
+ * __ __ __
26405
+ * |__ __ __|
26406
+ * | | |
26407
+ * |__|__ __|
26408
+ */
26409
+ CompatibleTableBorderFormat[CompatibleTableBorderFormat["FIRST_COLUMN_HEADER_EXTERNAL"] = 4] = "FIRST_COLUMN_HEADER_EXTERNAL";
26410
+ /**
26411
+ * The header row has no vertical border, except for the first one
26412
+ * The first column has no horizontal border, except for the first one
26413
+ * __ __ __
26414
+ * |__ __ __
26415
+ * | |__|__|
26416
+ * | |__|__|
26417
+ */
26418
+ CompatibleTableBorderFormat[CompatibleTableBorderFormat["ESPECIAL_TYPE_1"] = 5] = "ESPECIAL_TYPE_1";
26419
+ /**
26420
+ * The header row has no vertical border, except for the first one
26421
+ * The only horizontal border of the table is the top and bottom of header row
26422
+ * __ __ __
26423
+ * |__ __ __
26424
+ * | | |
26425
+ * | | |
26426
+ */
26427
+ CompatibleTableBorderFormat[CompatibleTableBorderFormat["ESPECIAL_TYPE_2"] = 6] = "ESPECIAL_TYPE_2";
26428
+ /**
26429
+ * The only borders are the bottom of header row and the right border of first column
26430
+ * __ __ __
26431
+ * |
26432
+ * |
26433
+ */
26434
+ CompatibleTableBorderFormat[CompatibleTableBorderFormat["ESPECIAL_TYPE_3"] = 7] = "ESPECIAL_TYPE_3";
26435
+ })(CompatibleTableBorderFormat = exports.CompatibleTableBorderFormat || (exports.CompatibleTableBorderFormat = {}));
26436
+
26437
+
26438
+ /***/ }),
26439
+
26440
+ /***/ "./packages/roosterjs-editor-types/lib/compatibleEnum/TableOperation.ts":
26441
+ /*!******************************************************************************!*\
26442
+ !*** ./packages/roosterjs-editor-types/lib/compatibleEnum/TableOperation.ts ***!
26443
+ \******************************************************************************/
26444
+ /*! no static exports found */
26445
+ /***/ (function(module, exports, __webpack_require__) {
26446
+
26447
+ "use strict";
26448
+
26449
+ Object.defineProperty(exports, "__esModule", { value: true });
26450
+ exports.CompatibleTableOperation = void 0;
26451
+ /**
26452
+ * Operations used by editTable() API
26453
+ */
26454
+ var CompatibleTableOperation;
26455
+ (function (CompatibleTableOperation) {
26456
+ /**
26457
+ * Insert a row above current row
26458
+ */
26459
+ CompatibleTableOperation[CompatibleTableOperation["InsertAbove"] = 0] = "InsertAbove";
26460
+ /**
26461
+ * Insert a row below current row
26462
+ */
26463
+ CompatibleTableOperation[CompatibleTableOperation["InsertBelow"] = 1] = "InsertBelow";
26464
+ /**
26465
+ * Insert a column on the left of current column
26466
+ */
26467
+ CompatibleTableOperation[CompatibleTableOperation["InsertLeft"] = 2] = "InsertLeft";
26468
+ /**
26469
+ * Insert a column on the right of current column
26470
+ */
26471
+ CompatibleTableOperation[CompatibleTableOperation["InsertRight"] = 3] = "InsertRight";
26472
+ /**
26473
+ * Delete the whole table
26474
+ */
26475
+ CompatibleTableOperation[CompatibleTableOperation["DeleteTable"] = 4] = "DeleteTable";
26476
+ /**
26477
+ * Delete current column
26478
+ */
26479
+ CompatibleTableOperation[CompatibleTableOperation["DeleteColumn"] = 5] = "DeleteColumn";
26480
+ /**
26481
+ * Delete current row
26482
+ */
26483
+ CompatibleTableOperation[CompatibleTableOperation["DeleteRow"] = 6] = "DeleteRow";
26484
+ /**
26485
+ * Merge current row with the row above
26486
+ */
26487
+ CompatibleTableOperation[CompatibleTableOperation["MergeAbove"] = 7] = "MergeAbove";
26488
+ /**
26489
+ * Merge current row with the row below
26490
+ */
26491
+ CompatibleTableOperation[CompatibleTableOperation["MergeBelow"] = 8] = "MergeBelow";
26492
+ /**
26493
+ * Merge current column with the column on the left
26494
+ */
26495
+ CompatibleTableOperation[CompatibleTableOperation["MergeLeft"] = 9] = "MergeLeft";
26496
+ /**
26497
+ * Merge current column with the column on the right
26498
+ */
26499
+ CompatibleTableOperation[CompatibleTableOperation["MergeRight"] = 10] = "MergeRight";
26500
+ /**
26501
+ * Merge all selected cells
26502
+ */
26503
+ CompatibleTableOperation[CompatibleTableOperation["MergeCells"] = 11] = "MergeCells";
26504
+ /**
26505
+ * Split current table cell horizontally
26506
+ */
26507
+ CompatibleTableOperation[CompatibleTableOperation["SplitHorizontally"] = 12] = "SplitHorizontally";
26508
+ /**
26509
+ * Split current table cell vertically
26510
+ */
26511
+ CompatibleTableOperation[CompatibleTableOperation["SplitVertically"] = 13] = "SplitVertically";
26512
+ /**
26513
+ * Align current table at the center
26514
+ */
26515
+ CompatibleTableOperation[CompatibleTableOperation["AlignCenter"] = 14] = "AlignCenter";
26516
+ /**
26517
+ * Align current table at the left
26518
+ */
26519
+ CompatibleTableOperation[CompatibleTableOperation["AlignLeft"] = 15] = "AlignLeft";
26520
+ /**
26521
+ * Align current table at the right
26522
+ */
26523
+ CompatibleTableOperation[CompatibleTableOperation["AlignRight"] = 16] = "AlignRight";
26524
+ /**
26525
+ * Align current content table cell at the left
26526
+ */
26527
+ CompatibleTableOperation[CompatibleTableOperation["AlignCellLeft"] = 17] = "AlignCellLeft";
26528
+ /**
26529
+ * Align current content table cell at the center
26530
+ */
26531
+ CompatibleTableOperation[CompatibleTableOperation["AlignCellCenter"] = 18] = "AlignCellCenter";
26532
+ /**
26533
+ * Align current content table cell at the right
26534
+ */
26535
+ CompatibleTableOperation[CompatibleTableOperation["AlignCellRight"] = 19] = "AlignCellRight";
26536
+ /**
26537
+ * Align current content table cell at the top
26538
+ */
26539
+ CompatibleTableOperation[CompatibleTableOperation["AlignCellTop"] = 20] = "AlignCellTop";
26540
+ /**
26541
+ * Align current table cell at the middle
26542
+ */
26543
+ CompatibleTableOperation[CompatibleTableOperation["AlignCellMiddle"] = 21] = "AlignCellMiddle";
26544
+ /**
26545
+ * Align current table cell at the bottom
26546
+ */
26547
+ CompatibleTableOperation[CompatibleTableOperation["AlignCellBottom"] = 22] = "AlignCellBottom";
26548
+ })(CompatibleTableOperation = exports.CompatibleTableOperation || (exports.CompatibleTableOperation = {}));
26549
+
26550
+
26551
+ /***/ }),
26552
+
26553
+ /***/ "./packages/roosterjs-editor-types/lib/compatibleEnum/index.ts":
26554
+ /*!*********************************************************************!*\
26555
+ !*** ./packages/roosterjs-editor-types/lib/compatibleEnum/index.ts ***!
26556
+ \*********************************************************************/
26557
+ /*! no static exports found */
26558
+ /***/ (function(module, exports, __webpack_require__) {
26559
+
26560
+ "use strict";
26561
+
26562
+ Object.defineProperty(exports, "__esModule", { value: true });
26563
+ exports.CompatibleSelectionRangeTypes = exports.CompatiblePluginEventType = exports.CompatibleTableBorderFormat = exports.CompatibleKnownCreateElementDataIndex = exports.CompatibleClearFormatMode = exports.CompatibleImageEditOperation = exports.CompatibleTableOperation = exports.CompatibleRegionType = exports.CompatibleQueryScope = exports.CompatiblePositionType = exports.CompatibleListType = exports.CompatibleCapitalization = exports.CompatibleIndentation = exports.CompatibleGetContentMode = exports.CompatibleFontSizeChange = exports.CompatibleExperimentalFeatures = exports.CompatibleEntityOperation = exports.CompatibleEntityClasses = exports.CompatibleDirection = exports.CompatibleDarkModeDatasetNames = exports.CompatibleContentPosition = exports.CompatibleColorTransformDirection = exports.CompatibleChangeSource = exports.CompatibleAlignment = exports.CompatibleContentType = exports.CompatibleContentTypePrefix = exports.CompatibleNodeType = exports.CompatibleKeys = exports.CompatibleDocumentPosition = exports.CompatibleDocumentCommand = void 0;
26564
+ var DocumentCommand_1 = __webpack_require__(/*! ./DocumentCommand */ "./packages/roosterjs-editor-types/lib/compatibleEnum/DocumentCommand.ts");
26565
+ Object.defineProperty(exports, "CompatibleDocumentCommand", { enumerable: true, get: function () { return DocumentCommand_1.CompatibleDocumentCommand; } });
26566
+ var DocumentPosition_1 = __webpack_require__(/*! ./DocumentPosition */ "./packages/roosterjs-editor-types/lib/compatibleEnum/DocumentPosition.ts");
26567
+ Object.defineProperty(exports, "CompatibleDocumentPosition", { enumerable: true, get: function () { return DocumentPosition_1.CompatibleDocumentPosition; } });
26568
+ var Keys_1 = __webpack_require__(/*! ./Keys */ "./packages/roosterjs-editor-types/lib/compatibleEnum/Keys.ts");
26569
+ Object.defineProperty(exports, "CompatibleKeys", { enumerable: true, get: function () { return Keys_1.CompatibleKeys; } });
26570
+ var NodeType_1 = __webpack_require__(/*! ./NodeType */ "./packages/roosterjs-editor-types/lib/compatibleEnum/NodeType.ts");
26571
+ Object.defineProperty(exports, "CompatibleNodeType", { enumerable: true, get: function () { return NodeType_1.CompatibleNodeType; } });
26572
+ var ContentType_1 = __webpack_require__(/*! ./ContentType */ "./packages/roosterjs-editor-types/lib/compatibleEnum/ContentType.ts");
26573
+ Object.defineProperty(exports, "CompatibleContentTypePrefix", { enumerable: true, get: function () { return ContentType_1.CompatibleContentTypePrefix; } });
26574
+ Object.defineProperty(exports, "CompatibleContentType", { enumerable: true, get: function () { return ContentType_1.CompatibleContentType; } });
26575
+ var Alignment_1 = __webpack_require__(/*! ./Alignment */ "./packages/roosterjs-editor-types/lib/compatibleEnum/Alignment.ts");
26576
+ Object.defineProperty(exports, "CompatibleAlignment", { enumerable: true, get: function () { return Alignment_1.CompatibleAlignment; } });
26577
+ var ChangeSource_1 = __webpack_require__(/*! ./ChangeSource */ "./packages/roosterjs-editor-types/lib/compatibleEnum/ChangeSource.ts");
26578
+ Object.defineProperty(exports, "CompatibleChangeSource", { enumerable: true, get: function () { return ChangeSource_1.CompatibleChangeSource; } });
26579
+ var ColorTransformDirection_1 = __webpack_require__(/*! ./ColorTransformDirection */ "./packages/roosterjs-editor-types/lib/compatibleEnum/ColorTransformDirection.ts");
26580
+ Object.defineProperty(exports, "CompatibleColorTransformDirection", { enumerable: true, get: function () { return ColorTransformDirection_1.CompatibleColorTransformDirection; } });
26581
+ var ContentPosition_1 = __webpack_require__(/*! ./ContentPosition */ "./packages/roosterjs-editor-types/lib/compatibleEnum/ContentPosition.ts");
26582
+ Object.defineProperty(exports, "CompatibleContentPosition", { enumerable: true, get: function () { return ContentPosition_1.CompatibleContentPosition; } });
26583
+ var DarkModeDatasetNames_1 = __webpack_require__(/*! ./DarkModeDatasetNames */ "./packages/roosterjs-editor-types/lib/compatibleEnum/DarkModeDatasetNames.ts");
26584
+ Object.defineProperty(exports, "CompatibleDarkModeDatasetNames", { enumerable: true, get: function () { return DarkModeDatasetNames_1.CompatibleDarkModeDatasetNames; } });
26585
+ var Direction_1 = __webpack_require__(/*! ./Direction */ "./packages/roosterjs-editor-types/lib/compatibleEnum/Direction.ts");
26586
+ Object.defineProperty(exports, "CompatibleDirection", { enumerable: true, get: function () { return Direction_1.CompatibleDirection; } });
26587
+ var EntityClasses_1 = __webpack_require__(/*! ./EntityClasses */ "./packages/roosterjs-editor-types/lib/compatibleEnum/EntityClasses.ts");
26588
+ Object.defineProperty(exports, "CompatibleEntityClasses", { enumerable: true, get: function () { return EntityClasses_1.CompatibleEntityClasses; } });
26589
+ var EntityOperation_1 = __webpack_require__(/*! ./EntityOperation */ "./packages/roosterjs-editor-types/lib/compatibleEnum/EntityOperation.ts");
26590
+ Object.defineProperty(exports, "CompatibleEntityOperation", { enumerable: true, get: function () { return EntityOperation_1.CompatibleEntityOperation; } });
26591
+ var ExperimentalFeatures_1 = __webpack_require__(/*! ./ExperimentalFeatures */ "./packages/roosterjs-editor-types/lib/compatibleEnum/ExperimentalFeatures.ts");
26592
+ Object.defineProperty(exports, "CompatibleExperimentalFeatures", { enumerable: true, get: function () { return ExperimentalFeatures_1.CompatibleExperimentalFeatures; } });
26593
+ var FontSizeChange_1 = __webpack_require__(/*! ./FontSizeChange */ "./packages/roosterjs-editor-types/lib/compatibleEnum/FontSizeChange.ts");
26594
+ Object.defineProperty(exports, "CompatibleFontSizeChange", { enumerable: true, get: function () { return FontSizeChange_1.CompatibleFontSizeChange; } });
26595
+ var GetContentMode_1 = __webpack_require__(/*! ./GetContentMode */ "./packages/roosterjs-editor-types/lib/compatibleEnum/GetContentMode.ts");
26596
+ Object.defineProperty(exports, "CompatibleGetContentMode", { enumerable: true, get: function () { return GetContentMode_1.CompatibleGetContentMode; } });
26597
+ var Indentation_1 = __webpack_require__(/*! ./Indentation */ "./packages/roosterjs-editor-types/lib/compatibleEnum/Indentation.ts");
26598
+ Object.defineProperty(exports, "CompatibleIndentation", { enumerable: true, get: function () { return Indentation_1.CompatibleIndentation; } });
26599
+ var Capitalization_1 = __webpack_require__(/*! ./Capitalization */ "./packages/roosterjs-editor-types/lib/compatibleEnum/Capitalization.ts");
26600
+ Object.defineProperty(exports, "CompatibleCapitalization", { enumerable: true, get: function () { return Capitalization_1.CompatibleCapitalization; } });
26601
+ var ListType_1 = __webpack_require__(/*! ./ListType */ "./packages/roosterjs-editor-types/lib/compatibleEnum/ListType.ts");
26602
+ Object.defineProperty(exports, "CompatibleListType", { enumerable: true, get: function () { return ListType_1.CompatibleListType; } });
26603
+ var PositionType_1 = __webpack_require__(/*! ./PositionType */ "./packages/roosterjs-editor-types/lib/compatibleEnum/PositionType.ts");
26604
+ Object.defineProperty(exports, "CompatiblePositionType", { enumerable: true, get: function () { return PositionType_1.CompatiblePositionType; } });
26605
+ var QueryScope_1 = __webpack_require__(/*! ./QueryScope */ "./packages/roosterjs-editor-types/lib/compatibleEnum/QueryScope.ts");
26606
+ Object.defineProperty(exports, "CompatibleQueryScope", { enumerable: true, get: function () { return QueryScope_1.CompatibleQueryScope; } });
26607
+ var RegionType_1 = __webpack_require__(/*! ./RegionType */ "./packages/roosterjs-editor-types/lib/compatibleEnum/RegionType.ts");
26608
+ Object.defineProperty(exports, "CompatibleRegionType", { enumerable: true, get: function () { return RegionType_1.CompatibleRegionType; } });
26609
+ var TableOperation_1 = __webpack_require__(/*! ./TableOperation */ "./packages/roosterjs-editor-types/lib/compatibleEnum/TableOperation.ts");
26610
+ Object.defineProperty(exports, "CompatibleTableOperation", { enumerable: true, get: function () { return TableOperation_1.CompatibleTableOperation; } });
26611
+ var ImageEditOperation_1 = __webpack_require__(/*! ./ImageEditOperation */ "./packages/roosterjs-editor-types/lib/compatibleEnum/ImageEditOperation.ts");
26612
+ Object.defineProperty(exports, "CompatibleImageEditOperation", { enumerable: true, get: function () { return ImageEditOperation_1.CompatibleImageEditOperation; } });
26613
+ var ClearFormatMode_1 = __webpack_require__(/*! ./ClearFormatMode */ "./packages/roosterjs-editor-types/lib/compatibleEnum/ClearFormatMode.ts");
26614
+ Object.defineProperty(exports, "CompatibleClearFormatMode", { enumerable: true, get: function () { return ClearFormatMode_1.CompatibleClearFormatMode; } });
26615
+ var KnownCreateElementDataIndex_1 = __webpack_require__(/*! ./KnownCreateElementDataIndex */ "./packages/roosterjs-editor-types/lib/compatibleEnum/KnownCreateElementDataIndex.ts");
26616
+ Object.defineProperty(exports, "CompatibleKnownCreateElementDataIndex", { enumerable: true, get: function () { return KnownCreateElementDataIndex_1.CompatibleKnownCreateElementDataIndex; } });
26617
+ var TableBorderFormat_1 = __webpack_require__(/*! ./TableBorderFormat */ "./packages/roosterjs-editor-types/lib/compatibleEnum/TableBorderFormat.ts");
26618
+ Object.defineProperty(exports, "CompatibleTableBorderFormat", { enumerable: true, get: function () { return TableBorderFormat_1.CompatibleTableBorderFormat; } });
26619
+ var PluginEventType_1 = __webpack_require__(/*! ./PluginEventType */ "./packages/roosterjs-editor-types/lib/compatibleEnum/PluginEventType.ts");
26620
+ Object.defineProperty(exports, "CompatiblePluginEventType", { enumerable: true, get: function () { return PluginEventType_1.CompatiblePluginEventType; } });
26621
+ var SelectionRangeTypes_1 = __webpack_require__(/*! ./SelectionRangeTypes */ "./packages/roosterjs-editor-types/lib/compatibleEnum/SelectionRangeTypes.ts");
26622
+ Object.defineProperty(exports, "CompatibleSelectionRangeTypes", { enumerable: true, get: function () { return SelectionRangeTypes_1.CompatibleSelectionRangeTypes; } });
26623
+
26624
+
26625
+ /***/ }),
26626
+
26627
+ /***/ "./packages/roosterjs-editor-types/lib/compatibleTypes.ts":
26628
+ /*!****************************************************************!*\
26629
+ !*** ./packages/roosterjs-editor-types/lib/compatibleTypes.ts ***!
26630
+ \****************************************************************/
26631
+ /*! no static exports found */
26632
+ /***/ (function(module, exports, __webpack_require__) {
26633
+
26634
+ "use strict";
26635
+
26636
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
26637
+ if (k2 === undefined) k2 = k;
26638
+ Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
26639
+ }) : (function(o, m, k, k2) {
26640
+ if (k2 === undefined) k2 = k;
26641
+ o[k2] = m[k];
26642
+ }));
26643
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
26644
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
26645
+ };
26646
+ Object.defineProperty(exports, "__esModule", { value: true });
26647
+ __exportStar(__webpack_require__(/*! ./browser/index */ "./packages/roosterjs-editor-types/lib/browser/index.ts"), exports);
26648
+ __exportStar(__webpack_require__(/*! ./corePluginState/index */ "./packages/roosterjs-editor-types/lib/corePluginState/index.ts"), exports);
26649
+ __exportStar(__webpack_require__(/*! ./compatibleEnum/index */ "./packages/roosterjs-editor-types/lib/compatibleEnum/index.ts"), exports);
26650
+ __exportStar(__webpack_require__(/*! ./event/index */ "./packages/roosterjs-editor-types/lib/event/index.ts"), exports);
26651
+ __exportStar(__webpack_require__(/*! ./interface/index */ "./packages/roosterjs-editor-types/lib/interface/index.ts"), exports);
26652
+ __exportStar(__webpack_require__(/*! ./type/index */ "./packages/roosterjs-editor-types/lib/type/index.ts"), exports);
26653
+
26654
+
24884
26655
  /***/ }),
24885
26656
 
24886
26657
  /***/ "./packages/roosterjs-editor-types/lib/corePluginState/index.ts":
@@ -25050,6 +26821,7 @@ exports.createEditor = void 0;
25050
26821
  var createEditor_1 = __webpack_require__(/*! ./createEditor */ "./packages/roosterjs/lib/createEditor.ts");
25051
26822
  Object.defineProperty(exports, "createEditor", { enumerable: true, get: function () { return createEditor_1.default; } });
25052
26823
  __exportStar(__webpack_require__(/*! roosterjs-editor-types */ "./packages/roosterjs-editor-types/lib/index.ts"), exports);
26824
+ __exportStar(__webpack_require__(/*! roosterjs-compatible-types */ "./packages/roosterjs-compatible-types/lib/index.ts"), exports);
25053
26825
  __exportStar(__webpack_require__(/*! roosterjs-editor-dom */ "./packages/roosterjs-editor-dom/lib/index.ts"), exports);
25054
26826
  __exportStar(__webpack_require__(/*! roosterjs-editor-core */ "./packages/roosterjs-editor-core/lib/index.ts"), exports);
25055
26827
  __exportStar(__webpack_require__(/*! roosterjs-editor-api */ "./packages/roosterjs-editor-api/lib/index.ts"), exports);