@talrace/ngx-noder 19.0.28 → 19.0.29
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.
|
@@ -179,13 +179,6 @@ const NEW_LINE_MARKUP = '\n';
|
|
|
179
179
|
const DEFAULT_TAB_WIDTH = 48;
|
|
180
180
|
const DEFAULT_EDGE_MAX_HEIGHT_MULTIPLIER = 0.4;
|
|
181
181
|
|
|
182
|
-
var BreakTypes;
|
|
183
|
-
(function (BreakTypes) {
|
|
184
|
-
BreakTypes[BreakTypes["Page"] = 0] = "Page";
|
|
185
|
-
BreakTypes[BreakTypes["Column"] = 1] = "Column";
|
|
186
|
-
BreakTypes[BreakTypes["TextWrapping"] = 2] = "TextWrapping";
|
|
187
|
-
})(BreakTypes || (BreakTypes = {}));
|
|
188
|
-
|
|
189
182
|
var PageType;
|
|
190
183
|
(function (PageType) {
|
|
191
184
|
PageType[PageType["Default"] = 0] = "Default";
|
|
@@ -193,6 +186,63 @@ var PageType;
|
|
|
193
186
|
PageType[PageType["Even"] = 2] = "Even";
|
|
194
187
|
})(PageType || (PageType = {}));
|
|
195
188
|
|
|
189
|
+
var Borders;
|
|
190
|
+
(function (Borders) {
|
|
191
|
+
Borders[Borders["Bottom"] = 0] = "Bottom";
|
|
192
|
+
Borders[Borders["Top"] = 1] = "Top";
|
|
193
|
+
Borders[Borders["Left"] = 2] = "Left";
|
|
194
|
+
Borders[Borders["Right"] = 3] = "Right";
|
|
195
|
+
Borders[Borders["Empty"] = 4] = "Empty";
|
|
196
|
+
Borders[Borders["All"] = 5] = "All";
|
|
197
|
+
Borders[Borders["Outside"] = 6] = "Outside";
|
|
198
|
+
Borders[Borders["Inside"] = 7] = "Inside";
|
|
199
|
+
})(Borders || (Borders = {}));
|
|
200
|
+
|
|
201
|
+
var LineStyles;
|
|
202
|
+
(function (LineStyles) {
|
|
203
|
+
LineStyles[LineStyles["SolidLine"] = 0] = "SolidLine";
|
|
204
|
+
LineStyles[LineStyles["RoundDot"] = 1] = "RoundDot";
|
|
205
|
+
LineStyles[LineStyles["SquareDot"] = 2] = "SquareDot";
|
|
206
|
+
LineStyles[LineStyles["Dash"] = 3] = "Dash";
|
|
207
|
+
LineStyles[LineStyles["DashDot"] = 4] = "DashDot";
|
|
208
|
+
LineStyles[LineStyles["LongDash"] = 5] = "LongDash";
|
|
209
|
+
LineStyles[LineStyles["LongDashDot"] = 6] = "LongDashDot";
|
|
210
|
+
LineStyles[LineStyles["LongDashDotDot"] = 7] = "LongDashDotDot";
|
|
211
|
+
LineStyles[LineStyles["Single"] = 8] = "Single";
|
|
212
|
+
LineStyles[LineStyles["Thick"] = 9] = "Thick";
|
|
213
|
+
LineStyles[LineStyles["Double"] = 10] = "Double";
|
|
214
|
+
LineStyles[LineStyles["Dotted"] = 11] = "Dotted";
|
|
215
|
+
LineStyles[LineStyles["Dashed"] = 12] = "Dashed";
|
|
216
|
+
LineStyles[LineStyles["DotDash"] = 13] = "DotDash";
|
|
217
|
+
LineStyles[LineStyles["DotDotDash"] = 14] = "DotDotDash";
|
|
218
|
+
LineStyles[LineStyles["Triple"] = 15] = "Triple";
|
|
219
|
+
LineStyles[LineStyles["ThinThickSmallGap"] = 16] = "ThinThickSmallGap";
|
|
220
|
+
LineStyles[LineStyles["ThickThinSmallGap"] = 17] = "ThickThinSmallGap";
|
|
221
|
+
LineStyles[LineStyles["ThinThickThinSmallGap"] = 18] = "ThinThickThinSmallGap";
|
|
222
|
+
LineStyles[LineStyles["ThinThickMediumGap"] = 19] = "ThinThickMediumGap";
|
|
223
|
+
LineStyles[LineStyles["ThickThinMediumGap"] = 20] = "ThickThinMediumGap";
|
|
224
|
+
LineStyles[LineStyles["ThinThickThinMediumGap"] = 21] = "ThinThickThinMediumGap";
|
|
225
|
+
LineStyles[LineStyles["ThinThickLargeGap"] = 22] = "ThinThickLargeGap";
|
|
226
|
+
LineStyles[LineStyles["ThickThinLargeGap"] = 23] = "ThickThinLargeGap";
|
|
227
|
+
LineStyles[LineStyles["ThinThickThinLargeGap"] = 24] = "ThinThickThinLargeGap";
|
|
228
|
+
LineStyles[LineStyles["Wave"] = 25] = "Wave";
|
|
229
|
+
LineStyles[LineStyles["DoubleWave"] = 26] = "DoubleWave";
|
|
230
|
+
LineStyles[LineStyles["DashSmallGap"] = 27] = "DashSmallGap";
|
|
231
|
+
LineStyles[LineStyles["DashDotStroked"] = 28] = "DashDotStroked";
|
|
232
|
+
LineStyles[LineStyles["ThreeDEmboss"] = 29] = "ThreeDEmboss";
|
|
233
|
+
LineStyles[LineStyles["ThreeDEngrave"] = 30] = "ThreeDEngrave";
|
|
234
|
+
LineStyles[LineStyles["Outset"] = 31] = "Outset";
|
|
235
|
+
LineStyles[LineStyles["Inset"] = 32] = "Inset";
|
|
236
|
+
LineStyles[LineStyles["Nil"] = 33] = "Nil";
|
|
237
|
+
})(LineStyles || (LineStyles = {}));
|
|
238
|
+
|
|
239
|
+
var BreakTypes;
|
|
240
|
+
(function (BreakTypes) {
|
|
241
|
+
BreakTypes[BreakTypes["Page"] = 0] = "Page";
|
|
242
|
+
BreakTypes[BreakTypes["Column"] = 1] = "Column";
|
|
243
|
+
BreakTypes[BreakTypes["TextWrapping"] = 2] = "TextWrapping";
|
|
244
|
+
})(BreakTypes || (BreakTypes = {}));
|
|
245
|
+
|
|
196
246
|
class DomHelper {
|
|
197
247
|
static translate(element, tx, ty) {
|
|
198
248
|
element.style.top = `${Math.round(ty)}px`;
|
|
@@ -4391,18 +4441,6 @@ class ParagraphOperationsHelper {
|
|
|
4391
4441
|
}
|
|
4392
4442
|
}
|
|
4393
4443
|
|
|
4394
|
-
var Borders;
|
|
4395
|
-
(function (Borders) {
|
|
4396
|
-
Borders[Borders["Bottom"] = 0] = "Bottom";
|
|
4397
|
-
Borders[Borders["Top"] = 1] = "Top";
|
|
4398
|
-
Borders[Borders["Left"] = 2] = "Left";
|
|
4399
|
-
Borders[Borders["Right"] = 3] = "Right";
|
|
4400
|
-
Borders[Borders["Empty"] = 4] = "Empty";
|
|
4401
|
-
Borders[Borders["All"] = 5] = "All";
|
|
4402
|
-
Borders[Borders["Outside"] = 6] = "Outside";
|
|
4403
|
-
Borders[Borders["Inside"] = 7] = "Inside";
|
|
4404
|
-
})(Borders || (Borders = {}));
|
|
4405
|
-
|
|
4406
4444
|
class ColumnModel {
|
|
4407
4445
|
constructor(fields) {
|
|
4408
4446
|
if (fields) {
|
|
@@ -4411,44 +4449,6 @@ class ColumnModel {
|
|
|
4411
4449
|
}
|
|
4412
4450
|
}
|
|
4413
4451
|
|
|
4414
|
-
var LineStyles;
|
|
4415
|
-
(function (LineStyles) {
|
|
4416
|
-
LineStyles[LineStyles["SolidLine"] = 0] = "SolidLine";
|
|
4417
|
-
LineStyles[LineStyles["RoundDot"] = 1] = "RoundDot";
|
|
4418
|
-
LineStyles[LineStyles["SquareDot"] = 2] = "SquareDot";
|
|
4419
|
-
LineStyles[LineStyles["Dash"] = 3] = "Dash";
|
|
4420
|
-
LineStyles[LineStyles["DashDot"] = 4] = "DashDot";
|
|
4421
|
-
LineStyles[LineStyles["LongDash"] = 5] = "LongDash";
|
|
4422
|
-
LineStyles[LineStyles["LongDashDot"] = 6] = "LongDashDot";
|
|
4423
|
-
LineStyles[LineStyles["LongDashDotDot"] = 7] = "LongDashDotDot";
|
|
4424
|
-
LineStyles[LineStyles["Single"] = 8] = "Single";
|
|
4425
|
-
LineStyles[LineStyles["Thick"] = 9] = "Thick";
|
|
4426
|
-
LineStyles[LineStyles["Double"] = 10] = "Double";
|
|
4427
|
-
LineStyles[LineStyles["Dotted"] = 11] = "Dotted";
|
|
4428
|
-
LineStyles[LineStyles["Dashed"] = 12] = "Dashed";
|
|
4429
|
-
LineStyles[LineStyles["DotDash"] = 13] = "DotDash";
|
|
4430
|
-
LineStyles[LineStyles["DotDotDash"] = 14] = "DotDotDash";
|
|
4431
|
-
LineStyles[LineStyles["Triple"] = 15] = "Triple";
|
|
4432
|
-
LineStyles[LineStyles["ThinThickSmallGap"] = 16] = "ThinThickSmallGap";
|
|
4433
|
-
LineStyles[LineStyles["ThickThinSmallGap"] = 17] = "ThickThinSmallGap";
|
|
4434
|
-
LineStyles[LineStyles["ThinThickThinSmallGap"] = 18] = "ThinThickThinSmallGap";
|
|
4435
|
-
LineStyles[LineStyles["ThinThickMediumGap"] = 19] = "ThinThickMediumGap";
|
|
4436
|
-
LineStyles[LineStyles["ThickThinMediumGap"] = 20] = "ThickThinMediumGap";
|
|
4437
|
-
LineStyles[LineStyles["ThinThickThinMediumGap"] = 21] = "ThinThickThinMediumGap";
|
|
4438
|
-
LineStyles[LineStyles["ThinThickLargeGap"] = 22] = "ThinThickLargeGap";
|
|
4439
|
-
LineStyles[LineStyles["ThickThinLargeGap"] = 23] = "ThickThinLargeGap";
|
|
4440
|
-
LineStyles[LineStyles["ThinThickThinLargeGap"] = 24] = "ThinThickThinLargeGap";
|
|
4441
|
-
LineStyles[LineStyles["Wave"] = 25] = "Wave";
|
|
4442
|
-
LineStyles[LineStyles["DoubleWave"] = 26] = "DoubleWave";
|
|
4443
|
-
LineStyles[LineStyles["DashSmallGap"] = 27] = "DashSmallGap";
|
|
4444
|
-
LineStyles[LineStyles["DashDotStroked"] = 28] = "DashDotStroked";
|
|
4445
|
-
LineStyles[LineStyles["ThreeDEmboss"] = 29] = "ThreeDEmboss";
|
|
4446
|
-
LineStyles[LineStyles["ThreeDEngrave"] = 30] = "ThreeDEngrave";
|
|
4447
|
-
LineStyles[LineStyles["Outset"] = 31] = "Outset";
|
|
4448
|
-
LineStyles[LineStyles["Inset"] = 32] = "Inset";
|
|
4449
|
-
LineStyles[LineStyles["Nil"] = 33] = "Nil";
|
|
4450
|
-
})(LineStyles || (LineStyles = {}));
|
|
4451
|
-
|
|
4452
4452
|
var Positions;
|
|
4453
4453
|
(function (Positions) {
|
|
4454
4454
|
Positions[Positions["Top"] = 0] = "Top";
|
|
@@ -19212,5 +19212,5 @@ class OperationModel {
|
|
|
19212
19212
|
* Generated bundle index. Do not edit.
|
|
19213
19213
|
*/
|
|
19214
19214
|
|
|
19215
|
-
export { AddLinkDialogComponent, AddLinkMobileComponent, Alignment, BaseNoderComponent, BreakTypes, CommandModel, CommandType, CommandsService, ConfirmDialogComponent, DEFAULT_BACKGROUND_COLOR, DEFAULT_EDGE_MAX_HEIGHT_MULTIPLIER, DEFAULT_FONT_COLOR, DEFAULT_FONT_FAMILY, DEFAULT_FONT_SIZE, DEFAULT_HEADINGS, DEFAULT_HEADING_STYLE_ID, DEFAULT_PARAGRAPH_STYLE, DEFAULT_TAB_WIDTH, DEFAULT_TEXT_STYLE, DEFAULT_TOOLBAR_STYLES, DefaultImageApiService, DestroyComponent, DocumentInfo, DocumentModel, DocumentNameModel, DocxModel, DomHelper, EditorComponent, EditorMobileToolbarComponent, EditorModule, EditorService, EditorTitleComponent, EditorTitleMobileComponent, EditorToolbarComponent, EditorToolbarMode, EditorToolbarModule, EditorToolbarService, ElementDataModel, ElementModel, ExternalComponent, ExternalElementModel, ExternalElementService, FileSourceModel, FontMetrics, FormatStyleHelper, GrammarService, HYPERLINK_FONT_COLOR, HYPERLINK_HEADING_STYLE_ID, ImageApiService, ImageDataModel, LastDocumentRevisionModel, MenuDropdownsComponent, MenuDropdownsMobileComponent, Mode, NEW_LINE_MARKUP, NoderTranslateLoader, NumberingLevelModel, OperationModel, OperationsHistoryInfoModel, PageSetupComponent, PageType, ParagraphStyleModel, RevisionHelper, RevisionModel, SearchResultLocation, TextFormatMobileComponent, TextStyleModel, ToolbarActionsComponent };
|
|
19215
|
+
export { AddLinkDialogComponent, AddLinkMobileComponent, Alignment, BaseNoderComponent, Borders, BreakTypes, CommandModel, CommandType, CommandsService, ConfirmDialogComponent, DEFAULT_BACKGROUND_COLOR, DEFAULT_EDGE_MAX_HEIGHT_MULTIPLIER, DEFAULT_FONT_COLOR, DEFAULT_FONT_FAMILY, DEFAULT_FONT_SIZE, DEFAULT_HEADINGS, DEFAULT_HEADING_STYLE_ID, DEFAULT_PARAGRAPH_STYLE, DEFAULT_TAB_WIDTH, DEFAULT_TEXT_STYLE, DEFAULT_TOOLBAR_STYLES, DefaultImageApiService, DestroyComponent, DocumentInfo, DocumentModel, DocumentNameModel, DocxModel, DomHelper, EditorComponent, EditorMobileToolbarComponent, EditorModule, EditorService, EditorTitleComponent, EditorTitleMobileComponent, EditorToolbarComponent, EditorToolbarMode, EditorToolbarModule, EditorToolbarService, ElementDataModel, ElementModel, ExternalComponent, ExternalElementModel, ExternalElementService, FileSourceModel, FontMetrics, FormatStyleHelper, GrammarService, HYPERLINK_FONT_COLOR, HYPERLINK_HEADING_STYLE_ID, ImageApiService, ImageDataModel, LastDocumentRevisionModel, LineStyles, MenuDropdownsComponent, MenuDropdownsMobileComponent, Mode, NEW_LINE_MARKUP, NoderTranslateLoader, NumberingLevelModel, OperationModel, OperationsHistoryInfoModel, PageSetupComponent, PageType, ParagraphStyleModel, RevisionHelper, RevisionModel, SearchResultLocation, TextFormatMobileComponent, TextStyleModel, ToolbarActionsComponent };
|
|
19216
19216
|
//# sourceMappingURL=talrace-ngx-noder.mjs.map
|