@skyux/text-editor 5.0.2 → 5.5.0-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -1
- package/bundles/skyux-text-editor.umd.js +270 -170
- package/documentation.json +109 -57
- package/esm2015/index.js +15 -0
- package/esm2015/index.js.map +1 -0
- package/esm2015/lib/modules/rich-text-display/rich-text-display.component.js +39 -0
- package/esm2015/lib/modules/rich-text-display/rich-text-display.component.js.map +1 -0
- package/esm2015/lib/modules/rich-text-display/rich-text-display.module.js +18 -0
- package/esm2015/lib/modules/rich-text-display/rich-text-display.module.js.map +1 -0
- package/esm2015/lib/modules/shared/forms-utility.js +10 -0
- package/esm2015/lib/modules/shared/forms-utility.js.map +1 -0
- package/esm2015/lib/modules/shared/sky-text-editor-resources.module.js +106 -0
- package/esm2015/lib/modules/shared/sky-text-editor-resources.module.js.map +1 -0
- package/esm2015/lib/modules/text-editor/defaults/font-list-defaults.js +42 -0
- package/esm2015/lib/modules/text-editor/defaults/font-list-defaults.js.map +1 -0
- package/esm2015/lib/modules/text-editor/defaults/font-size-list-defaults.js +7 -0
- package/esm2015/lib/modules/text-editor/defaults/font-size-list-defaults.js.map +1 -0
- package/esm2015/lib/modules/text-editor/defaults/menu-defaults.js +5 -0
- package/esm2015/lib/modules/text-editor/defaults/menu-defaults.js.map +1 -0
- package/esm2015/lib/modules/text-editor/defaults/style-state-defaults.js +15 -0
- package/esm2015/lib/modules/text-editor/defaults/style-state-defaults.js.map +1 -0
- package/esm2015/lib/modules/text-editor/defaults/toolbar-action-defaults.js +12 -0
- package/esm2015/lib/modules/text-editor/defaults/toolbar-action-defaults.js.map +1 -0
- package/esm2015/lib/modules/text-editor/menubar/text-editor-menubar.component.js +196 -0
- package/esm2015/lib/modules/text-editor/menubar/text-editor-menubar.component.js.map +1 -0
- package/esm2015/lib/modules/text-editor/services/text-editor-adapter.service.js +473 -0
- package/esm2015/lib/modules/text-editor/services/text-editor-adapter.service.js.map +1 -0
- package/esm2015/lib/modules/text-editor/services/text-editor-selection.service.js +80 -0
- package/esm2015/lib/modules/text-editor/services/text-editor-selection.service.js.map +1 -0
- package/esm2015/lib/modules/text-editor/services/text-editor.service.js +61 -0
- package/esm2015/lib/modules/text-editor/services/text-editor.service.js.map +1 -0
- package/esm2015/lib/modules/text-editor/services/text-sanitization.service.js +38 -0
- package/esm2015/lib/modules/text-editor/services/text-sanitization.service.js.map +1 -0
- package/esm2015/lib/modules/text-editor/text-editor.component.js +322 -0
- package/esm2015/lib/modules/text-editor/text-editor.component.js.map +1 -0
- package/esm2015/lib/modules/text-editor/text-editor.module.js +99 -0
- package/esm2015/lib/modules/text-editor/text-editor.module.js.map +1 -0
- package/esm2015/lib/modules/text-editor/toolbar/text-editor-toolbar.component.js +175 -0
- package/esm2015/lib/modules/text-editor/toolbar/text-editor-toolbar.component.js.map +1 -0
- package/esm2015/lib/modules/text-editor/types/editor-command.js +2 -0
- package/esm2015/lib/modules/text-editor/types/editor-command.js.map +1 -0
- package/esm2015/lib/modules/text-editor/types/editor-setting.js +2 -0
- package/esm2015/lib/modules/text-editor/types/editor-setting.js.map +1 -0
- package/esm2015/lib/modules/text-editor/types/font-state.js +2 -0
- package/esm2015/lib/modules/text-editor/types/font-state.js.map +1 -0
- package/esm2015/lib/modules/text-editor/types/menu-type.js +2 -0
- package/esm2015/lib/modules/text-editor/types/menu-type.js.map +1 -0
- package/esm2015/lib/modules/text-editor/types/style-state.js +2 -0
- package/esm2015/lib/modules/text-editor/types/style-state.js.map +1 -0
- package/esm2015/lib/modules/text-editor/types/text-editor-merge-field.js +2 -0
- package/esm2015/lib/modules/text-editor/types/text-editor-merge-field.js.map +1 -0
- package/esm2015/lib/modules/text-editor/types/toolbar-action-type.js +2 -0
- package/esm2015/lib/modules/text-editor/types/toolbar-action-type.js.map +1 -0
- package/esm2015/lib/modules/text-editor/url-modal/text-editor-url-modal-context.js +6 -0
- package/esm2015/lib/modules/text-editor/url-modal/text-editor-url-modal-context.js.map +1 -0
- package/esm2015/lib/modules/text-editor/url-modal/text-editor-url-modal-result.js +2 -0
- package/esm2015/lib/modules/text-editor/url-modal/text-editor-url-modal-result.js.map +1 -0
- package/esm2015/lib/modules/text-editor/url-modal/text-editor-url-modal.component.js +121 -0
- package/esm2015/lib/modules/text-editor/url-modal/text-editor-url-modal.component.js.map +1 -0
- package/esm2015/lib/modules/text-editor/url-modal/text-editor-url-target.js +9 -0
- package/esm2015/lib/modules/text-editor/url-modal/text-editor-url-target.js.map +1 -0
- package/esm2015/skyux-text-editor.js +2 -2
- package/esm2015/skyux-text-editor.js.map +1 -0
- package/fesm2015/skyux-text-editor.js +332 -232
- package/fesm2015/skyux-text-editor.js.map +1 -1
- package/index.d.ts +12 -0
- package/{modules → lib/modules}/rich-text-display/rich-text-display.component.d.ts +0 -0
- package/{modules → lib/modules}/rich-text-display/rich-text-display.module.d.ts +0 -0
- package/{modules → lib/modules}/shared/forms-utility.d.ts +0 -0
- package/{modules → lib/modules}/shared/sky-text-editor-resources.module.d.ts +0 -0
- package/{modules → lib/modules}/text-editor/defaults/font-list-defaults.d.ts +0 -0
- package/{modules → lib/modules}/text-editor/defaults/font-size-list-defaults.d.ts +0 -0
- package/{modules → lib/modules}/text-editor/defaults/menu-defaults.d.ts +0 -0
- package/{modules → lib/modules}/text-editor/defaults/style-state-defaults.d.ts +0 -0
- package/{modules → lib/modules}/text-editor/defaults/toolbar-action-defaults.d.ts +0 -0
- package/{modules → lib/modules}/text-editor/menubar/text-editor-menubar.component.d.ts +0 -0
- package/{modules → lib/modules}/text-editor/services/text-editor-adapter.service.d.ts +0 -0
- package/{modules → lib/modules}/text-editor/services/text-editor-selection.service.d.ts +0 -0
- package/{modules → lib/modules}/text-editor/services/text-editor.service.d.ts +0 -0
- package/{modules → lib/modules}/text-editor/services/text-sanitization.service.d.ts +0 -0
- package/{modules → lib/modules}/text-editor/text-editor.component.d.ts +0 -0
- package/{modules → lib/modules}/text-editor/text-editor.module.d.ts +0 -0
- package/{modules → lib/modules}/text-editor/toolbar/text-editor-toolbar.component.d.ts +0 -0
- package/{modules → lib/modules}/text-editor/types/editor-command.d.ts +0 -0
- package/{modules → lib/modules}/text-editor/types/editor-setting.d.ts +0 -0
- package/{modules → lib/modules}/text-editor/types/font-state.d.ts +0 -0
- package/{modules → lib/modules}/text-editor/types/menu-type.d.ts +0 -0
- package/{modules → lib/modules}/text-editor/types/style-state.d.ts +0 -0
- package/{modules → lib/modules}/text-editor/types/text-editor-merge-field.d.ts +0 -0
- package/{modules → lib/modules}/text-editor/types/toolbar-action-type.d.ts +0 -0
- package/{modules → lib/modules}/text-editor/url-modal/text-editor-url-modal-context.d.ts +0 -0
- package/{modules → lib/modules}/text-editor/url-modal/text-editor-url-modal-result.d.ts +0 -0
- package/{modules → lib/modules}/text-editor/url-modal/text-editor-url-modal.component.d.ts +0 -0
- package/{modules → lib/modules}/text-editor/url-modal/text-editor-url-target.d.ts +0 -0
- package/package.json +27 -13
- package/skyux-text-editor.d.ts +1 -1
- package/LICENSE +0 -21
- package/bundles/skyux-text-editor.umd.js.map +0 -1
- package/esm2015/modules/rich-text-display/rich-text-display.component.js +0 -37
- package/esm2015/modules/rich-text-display/rich-text-display.module.js +0 -26
- package/esm2015/modules/shared/forms-utility.js +0 -10
- package/esm2015/modules/shared/sky-text-editor-resources.module.js +0 -41
- package/esm2015/modules/text-editor/defaults/font-list-defaults.js +0 -42
- package/esm2015/modules/text-editor/defaults/font-size-list-defaults.js +0 -5
- package/esm2015/modules/text-editor/defaults/menu-defaults.js +0 -8
- package/esm2015/modules/text-editor/defaults/style-state-defaults.js +0 -15
- package/esm2015/modules/text-editor/defaults/toolbar-action-defaults.js +0 -12
- package/esm2015/modules/text-editor/menubar/text-editor-menubar.component.js +0 -189
- package/esm2015/modules/text-editor/services/text-editor-adapter.service.js +0 -460
- package/esm2015/modules/text-editor/services/text-editor-selection.service.js +0 -76
- package/esm2015/modules/text-editor/services/text-editor.service.js +0 -61
- package/esm2015/modules/text-editor/services/text-sanitization.service.js +0 -38
- package/esm2015/modules/text-editor/text-editor.component.js +0 -307
- package/esm2015/modules/text-editor/text-editor.module.js +0 -101
- package/esm2015/modules/text-editor/toolbar/text-editor-toolbar.component.js +0 -163
- package/esm2015/modules/text-editor/types/editor-command.js +0 -2
- package/esm2015/modules/text-editor/types/editor-setting.js +0 -2
- package/esm2015/modules/text-editor/types/font-state.js +0 -2
- package/esm2015/modules/text-editor/types/menu-type.js +0 -2
- package/esm2015/modules/text-editor/types/style-state.js +0 -2
- package/esm2015/modules/text-editor/types/text-editor-merge-field.js +0 -2
- package/esm2015/modules/text-editor/types/toolbar-action-type.js +0 -2
- package/esm2015/modules/text-editor/url-modal/text-editor-url-modal-context.js +0 -6
- package/esm2015/modules/text-editor/url-modal/text-editor-url-modal-result.js +0 -2
- package/esm2015/modules/text-editor/url-modal/text-editor-url-modal.component.js +0 -112
- package/esm2015/modules/text-editor/url-modal/text-editor-url-target.js +0 -9
- package/esm2015/public-api.js +0 -15
- package/public-api.d.ts +0 -12
package/documentation.json
CHANGED
|
@@ -29,10 +29,12 @@
|
|
|
29
29
|
"name": "NgModule",
|
|
30
30
|
"type": {
|
|
31
31
|
"type": "reference",
|
|
32
|
+
"qualifiedName": "NgModuleDecorator",
|
|
33
|
+
"package": "@angular/core",
|
|
32
34
|
"name": "NgModule"
|
|
33
35
|
},
|
|
34
36
|
"arguments": {
|
|
35
|
-
"obj": "{\n imports: [
|
|
37
|
+
"obj": "{\n imports: [CommonModule],\n exports: [SkyRichTextDisplayComponent],\n declarations: [SkyRichTextDisplayComponent],\n}"
|
|
36
38
|
}
|
|
37
39
|
}
|
|
38
40
|
],
|
|
@@ -71,7 +73,7 @@
|
|
|
71
73
|
"sources": [
|
|
72
74
|
{
|
|
73
75
|
"fileName": "projects/text-editor/src/modules/rich-text-display/rich-text-display.module.ts",
|
|
74
|
-
"line":
|
|
76
|
+
"line": 12,
|
|
75
77
|
"character": 13
|
|
76
78
|
}
|
|
77
79
|
]
|
|
@@ -87,10 +89,12 @@
|
|
|
87
89
|
"name": "NgModule",
|
|
88
90
|
"type": {
|
|
89
91
|
"type": "reference",
|
|
92
|
+
"qualifiedName": "NgModuleDecorator",
|
|
93
|
+
"package": "@angular/core",
|
|
90
94
|
"name": "NgModule"
|
|
91
95
|
},
|
|
92
96
|
"arguments": {
|
|
93
|
-
"obj": "{\n imports: [\n CommonModule,\n FormsModule,\n ReactiveFormsModule,\n SkyCoreAdapterModule,\n SkyTextEditorResourcesModule,\n SkyI18nModule,\n SkyIconModule,\n SkyIdModule,\n SkyInputBoxModule,\n SkyColorpickerModule,\n SkyCheckboxModule,\n SkyDropdownModule,\n SkyModalModule,\n SkyTabsModule,\n SkyThemeModule,\n SkyToolbarModule
|
|
97
|
+
"obj": "{\n imports: [\n CommonModule,\n FormsModule,\n ReactiveFormsModule,\n SkyCoreAdapterModule,\n SkyTextEditorResourcesModule,\n SkyI18nModule,\n SkyIconModule,\n SkyIdModule,\n SkyInputBoxModule,\n SkyColorpickerModule,\n SkyCheckboxModule,\n SkyDropdownModule,\n SkyModalModule,\n SkyTabsModule,\n SkyThemeModule,\n SkyToolbarModule,\n ],\n exports: [\n SkyTextEditorComponent,\n SkyTextEditorUrlModalComponent,\n SkyTextEditorToolbarComponent,\n SkyTextEditorMenubarComponent,\n ],\n declarations: [\n SkyTextEditorComponent,\n SkyTextEditorUrlModalComponent,\n SkyTextEditorToolbarComponent,\n SkyTextEditorMenubarComponent,\n ],\n entryComponents: [SkyTextEditorUrlModalComponent],\n}"
|
|
94
98
|
}
|
|
95
99
|
}
|
|
96
100
|
],
|
|
@@ -129,7 +133,7 @@
|
|
|
129
133
|
"sources": [
|
|
130
134
|
{
|
|
131
135
|
"fileName": "projects/text-editor/src/modules/text-editor/text-editor.module.ts",
|
|
132
|
-
"line":
|
|
136
|
+
"line": 70,
|
|
133
137
|
"character": 13
|
|
134
138
|
}
|
|
135
139
|
]
|
|
@@ -145,10 +149,12 @@
|
|
|
145
149
|
"name": "Component",
|
|
146
150
|
"type": {
|
|
147
151
|
"type": "reference",
|
|
152
|
+
"qualifiedName": "ComponentDecorator",
|
|
153
|
+
"package": "@angular/core",
|
|
148
154
|
"name": "Component"
|
|
149
155
|
},
|
|
150
156
|
"arguments": {
|
|
151
|
-
"obj": "{\n selector: 'sky-rich-text-display',\n templateUrl: './rich-text-display.component.html'
|
|
157
|
+
"obj": "{\n selector: 'sky-rich-text-display',\n templateUrl: './rich-text-display.component.html',\n}"
|
|
152
158
|
}
|
|
153
159
|
}
|
|
154
160
|
],
|
|
@@ -162,7 +168,7 @@
|
|
|
162
168
|
"sources": [
|
|
163
169
|
{
|
|
164
170
|
"fileName": "projects/text-editor/src/modules/rich-text-display/rich-text-display.component.ts",
|
|
165
|
-
"line":
|
|
171
|
+
"line": 32,
|
|
166
172
|
"character": 2
|
|
167
173
|
}
|
|
168
174
|
],
|
|
@@ -182,6 +188,8 @@
|
|
|
182
188
|
"flags": {},
|
|
183
189
|
"type": {
|
|
184
190
|
"type": "reference",
|
|
191
|
+
"qualifiedName": "DomSanitizer",
|
|
192
|
+
"package": "@angular/platform-browser",
|
|
185
193
|
"name": "DomSanitizer"
|
|
186
194
|
}
|
|
187
195
|
},
|
|
@@ -216,12 +224,14 @@
|
|
|
216
224
|
"sources": [
|
|
217
225
|
{
|
|
218
226
|
"fileName": "projects/text-editor/src/modules/rich-text-display/rich-text-display.component.ts",
|
|
219
|
-
"line":
|
|
227
|
+
"line": 28,
|
|
220
228
|
"character": 9
|
|
221
229
|
}
|
|
222
230
|
],
|
|
223
231
|
"type": {
|
|
224
232
|
"type": "reference",
|
|
233
|
+
"qualifiedName": "SafeHtml",
|
|
234
|
+
"package": "@angular/platform-browser",
|
|
225
235
|
"name": "SafeHtml"
|
|
226
236
|
},
|
|
227
237
|
"defaultValue": "''"
|
|
@@ -239,6 +249,8 @@
|
|
|
239
249
|
"name": "Input",
|
|
240
250
|
"type": {
|
|
241
251
|
"type": "reference",
|
|
252
|
+
"qualifiedName": "InputDecorator",
|
|
253
|
+
"package": "@angular/core",
|
|
242
254
|
"name": "Input"
|
|
243
255
|
},
|
|
244
256
|
"arguments": {}
|
|
@@ -247,7 +259,7 @@
|
|
|
247
259
|
"sources": [
|
|
248
260
|
{
|
|
249
261
|
"fileName": "projects/text-editor/src/modules/rich-text-display/rich-text-display.component.ts",
|
|
250
|
-
"line":
|
|
262
|
+
"line": 16,
|
|
251
263
|
"character": 13
|
|
252
264
|
}
|
|
253
265
|
],
|
|
@@ -308,7 +320,7 @@
|
|
|
308
320
|
"sources": [
|
|
309
321
|
{
|
|
310
322
|
"fileName": "projects/text-editor/src/modules/rich-text-display/rich-text-display.component.ts",
|
|
311
|
-
"line":
|
|
323
|
+
"line": 11,
|
|
312
324
|
"character": 13
|
|
313
325
|
}
|
|
314
326
|
]
|
|
@@ -327,10 +339,12 @@
|
|
|
327
339
|
"name": "Component",
|
|
328
340
|
"type": {
|
|
329
341
|
"type": "reference",
|
|
342
|
+
"qualifiedName": "ComponentDecorator",
|
|
343
|
+
"package": "@angular/core",
|
|
330
344
|
"name": "Component"
|
|
331
345
|
},
|
|
332
346
|
"arguments": {
|
|
333
|
-
"obj": "{\n selector: 'sky-text-editor',\n templateUrl: './text-editor.component.html',\n styleUrls: ['./text-editor.component.scss'],\n changeDetection: ChangeDetectionStrategy.OnPush,\n encapsulation: ViewEncapsulation.None
|
|
347
|
+
"obj": "{\n selector: 'sky-text-editor',\n templateUrl: './text-editor.component.html',\n styleUrls: ['./text-editor.component.scss'],\n changeDetection: ChangeDetectionStrategy.OnPush,\n encapsulation: ViewEncapsulation.None,\n}"
|
|
334
348
|
}
|
|
335
349
|
}
|
|
336
350
|
],
|
|
@@ -344,7 +358,7 @@
|
|
|
344
358
|
"sources": [
|
|
345
359
|
{
|
|
346
360
|
"fileName": "projects/text-editor/src/modules/text-editor/text-editor.component.ts",
|
|
347
|
-
"line":
|
|
361
|
+
"line": 256,
|
|
348
362
|
"character": 2
|
|
349
363
|
}
|
|
350
364
|
],
|
|
@@ -364,6 +378,8 @@
|
|
|
364
378
|
"flags": {},
|
|
365
379
|
"type": {
|
|
366
380
|
"type": "reference",
|
|
381
|
+
"qualifiedName": "ChangeDetectorRef",
|
|
382
|
+
"package": "@angular/core",
|
|
367
383
|
"name": "ChangeDetectorRef"
|
|
368
384
|
}
|
|
369
385
|
},
|
|
@@ -419,6 +435,8 @@
|
|
|
419
435
|
"flags": {},
|
|
420
436
|
"type": {
|
|
421
437
|
"type": "reference",
|
|
438
|
+
"qualifiedName": "NgControl",
|
|
439
|
+
"package": "@angular/forms",
|
|
422
440
|
"name": "NgControl"
|
|
423
441
|
}
|
|
424
442
|
},
|
|
@@ -430,6 +448,8 @@
|
|
|
430
448
|
"flags": {},
|
|
431
449
|
"type": {
|
|
432
450
|
"type": "reference",
|
|
451
|
+
"qualifiedName": "NgZone",
|
|
452
|
+
"package": "@angular/core",
|
|
433
453
|
"name": "NgZone"
|
|
434
454
|
}
|
|
435
455
|
}
|
|
@@ -458,6 +478,8 @@
|
|
|
458
478
|
"name": "Input",
|
|
459
479
|
"type": {
|
|
460
480
|
"type": "reference",
|
|
481
|
+
"qualifiedName": "InputDecorator",
|
|
482
|
+
"package": "@angular/core",
|
|
461
483
|
"name": "Input"
|
|
462
484
|
},
|
|
463
485
|
"arguments": {}
|
|
@@ -466,7 +488,7 @@
|
|
|
466
488
|
"sources": [
|
|
467
489
|
{
|
|
468
490
|
"fileName": "projects/text-editor/src/modules/text-editor/text-editor.component.ts",
|
|
469
|
-
"line":
|
|
491
|
+
"line": 70,
|
|
470
492
|
"character": 9
|
|
471
493
|
}
|
|
472
494
|
],
|
|
@@ -487,7 +509,7 @@
|
|
|
487
509
|
"sources": [
|
|
488
510
|
{
|
|
489
511
|
"fileName": "projects/text-editor/src/modules/text-editor/text-editor.component.ts",
|
|
490
|
-
"line":
|
|
512
|
+
"line": 116,
|
|
491
513
|
"character": 9
|
|
492
514
|
}
|
|
493
515
|
],
|
|
@@ -499,6 +521,8 @@
|
|
|
499
521
|
"name": "unknown"
|
|
500
522
|
}
|
|
501
523
|
],
|
|
524
|
+
"qualifiedName": "Subject",
|
|
525
|
+
"package": "rxjs",
|
|
502
526
|
"name": "Subject"
|
|
503
527
|
},
|
|
504
528
|
"defaultValue": "..."
|
|
@@ -525,6 +549,8 @@
|
|
|
525
549
|
"name": "Input",
|
|
526
550
|
"type": {
|
|
527
551
|
"type": "reference",
|
|
552
|
+
"qualifiedName": "InputDecorator",
|
|
553
|
+
"package": "@angular/core",
|
|
528
554
|
"name": "Input"
|
|
529
555
|
},
|
|
530
556
|
"arguments": {}
|
|
@@ -533,7 +559,7 @@
|
|
|
533
559
|
"sources": [
|
|
534
560
|
{
|
|
535
561
|
"fileName": "projects/text-editor/src/modules/text-editor/text-editor.component.ts",
|
|
536
|
-
"line":
|
|
562
|
+
"line": 123,
|
|
537
563
|
"character": 9
|
|
538
564
|
}
|
|
539
565
|
],
|
|
@@ -545,7 +571,7 @@
|
|
|
545
571
|
"name": "SkyTextEditorFont"
|
|
546
572
|
}
|
|
547
573
|
},
|
|
548
|
-
"defaultValue": "
|
|
574
|
+
"defaultValue": "FONT_LIST_DEFAULTS"
|
|
549
575
|
},
|
|
550
576
|
{
|
|
551
577
|
"id": 164,
|
|
@@ -569,6 +595,8 @@
|
|
|
569
595
|
"name": "Input",
|
|
570
596
|
"type": {
|
|
571
597
|
"type": "reference",
|
|
598
|
+
"qualifiedName": "InputDecorator",
|
|
599
|
+
"package": "@angular/core",
|
|
572
600
|
"name": "Input"
|
|
573
601
|
},
|
|
574
602
|
"arguments": {}
|
|
@@ -577,7 +605,7 @@
|
|
|
577
605
|
"sources": [
|
|
578
606
|
{
|
|
579
607
|
"fileName": "projects/text-editor/src/modules/text-editor/text-editor.component.ts",
|
|
580
|
-
"line":
|
|
608
|
+
"line": 130,
|
|
581
609
|
"character": 9
|
|
582
610
|
}
|
|
583
611
|
],
|
|
@@ -588,7 +616,7 @@
|
|
|
588
616
|
"name": "number"
|
|
589
617
|
}
|
|
590
618
|
},
|
|
591
|
-
"defaultValue": "
|
|
619
|
+
"defaultValue": "FONT_SIZE_LIST_DEFAULTS"
|
|
592
620
|
},
|
|
593
621
|
{
|
|
594
622
|
"id": 165,
|
|
@@ -606,6 +634,8 @@
|
|
|
606
634
|
"name": "Input",
|
|
607
635
|
"type": {
|
|
608
636
|
"type": "reference",
|
|
637
|
+
"qualifiedName": "InputDecorator",
|
|
638
|
+
"package": "@angular/core",
|
|
609
639
|
"name": "Input"
|
|
610
640
|
},
|
|
611
641
|
"arguments": {}
|
|
@@ -614,7 +644,7 @@
|
|
|
614
644
|
"sources": [
|
|
615
645
|
{
|
|
616
646
|
"fileName": "projects/text-editor/src/modules/text-editor/text-editor.component.ts",
|
|
617
|
-
"line":
|
|
647
|
+
"line": 137,
|
|
618
648
|
"character": 9
|
|
619
649
|
}
|
|
620
650
|
],
|
|
@@ -646,6 +676,8 @@
|
|
|
646
676
|
"name": "Input",
|
|
647
677
|
"type": {
|
|
648
678
|
"type": "reference",
|
|
679
|
+
"qualifiedName": "InputDecorator",
|
|
680
|
+
"package": "@angular/core",
|
|
649
681
|
"name": "Input"
|
|
650
682
|
},
|
|
651
683
|
"arguments": {}
|
|
@@ -654,7 +686,7 @@
|
|
|
654
686
|
"sources": [
|
|
655
687
|
{
|
|
656
688
|
"fileName": "projects/text-editor/src/modules/text-editor/text-editor.component.ts",
|
|
657
|
-
"line":
|
|
689
|
+
"line": 163,
|
|
658
690
|
"character": 9
|
|
659
691
|
}
|
|
660
692
|
],
|
|
@@ -666,7 +698,7 @@
|
|
|
666
698
|
"name": "SkyTextEditorMenuType"
|
|
667
699
|
}
|
|
668
700
|
},
|
|
669
|
-
"defaultValue": "
|
|
701
|
+
"defaultValue": "MENU_DEFAULTS"
|
|
670
702
|
},
|
|
671
703
|
{
|
|
672
704
|
"id": 171,
|
|
@@ -684,6 +716,8 @@
|
|
|
684
716
|
"name": "Input",
|
|
685
717
|
"type": {
|
|
686
718
|
"type": "reference",
|
|
719
|
+
"qualifiedName": "InputDecorator",
|
|
720
|
+
"package": "@angular/core",
|
|
687
721
|
"name": "Input"
|
|
688
722
|
},
|
|
689
723
|
"arguments": {}
|
|
@@ -692,7 +726,7 @@
|
|
|
692
726
|
"sources": [
|
|
693
727
|
{
|
|
694
728
|
"fileName": "projects/text-editor/src/modules/text-editor/text-editor.component.ts",
|
|
695
|
-
"line":
|
|
729
|
+
"line": 169,
|
|
696
730
|
"character": 9
|
|
697
731
|
}
|
|
698
732
|
],
|
|
@@ -728,6 +762,8 @@
|
|
|
728
762
|
"name": "Input",
|
|
729
763
|
"type": {
|
|
730
764
|
"type": "reference",
|
|
765
|
+
"qualifiedName": "InputDecorator",
|
|
766
|
+
"package": "@angular/core",
|
|
731
767
|
"name": "Input"
|
|
732
768
|
},
|
|
733
769
|
"arguments": {}
|
|
@@ -736,7 +772,7 @@
|
|
|
736
772
|
"sources": [
|
|
737
773
|
{
|
|
738
774
|
"fileName": "projects/text-editor/src/modules/text-editor/text-editor.component.ts",
|
|
739
|
-
"line":
|
|
775
|
+
"line": 194,
|
|
740
776
|
"character": 9
|
|
741
777
|
}
|
|
742
778
|
],
|
|
@@ -748,7 +784,7 @@
|
|
|
748
784
|
"name": "SkyTextEditorToolbarActionType"
|
|
749
785
|
}
|
|
750
786
|
},
|
|
751
|
-
"defaultValue": "
|
|
787
|
+
"defaultValue": "TOOLBAR_ACTION_DEFAULTS"
|
|
752
788
|
},
|
|
753
789
|
{
|
|
754
790
|
"id": 158,
|
|
@@ -763,6 +799,8 @@
|
|
|
763
799
|
"name": "Input",
|
|
764
800
|
"type": {
|
|
765
801
|
"type": "reference",
|
|
802
|
+
"qualifiedName": "InputDecorator",
|
|
803
|
+
"package": "@angular/core",
|
|
766
804
|
"name": "Input"
|
|
767
805
|
},
|
|
768
806
|
"arguments": {}
|
|
@@ -771,7 +809,7 @@
|
|
|
771
809
|
"sources": [
|
|
772
810
|
{
|
|
773
811
|
"fileName": "projects/text-editor/src/modules/text-editor/text-editor.component.ts",
|
|
774
|
-
"line":
|
|
812
|
+
"line": 77,
|
|
775
813
|
"character": 13
|
|
776
814
|
}
|
|
777
815
|
],
|
|
@@ -783,7 +821,13 @@
|
|
|
783
821
|
"kindString": "Get signature",
|
|
784
822
|
"flags": {},
|
|
785
823
|
"comment": {
|
|
786
|
-
"shortText": "Indicates whether to disable the text editor."
|
|
824
|
+
"shortText": "Indicates whether to disable the text editor.",
|
|
825
|
+
"tags": [
|
|
826
|
+
{
|
|
827
|
+
"tag": "default",
|
|
828
|
+
"text": "false\n"
|
|
829
|
+
}
|
|
830
|
+
]
|
|
787
831
|
},
|
|
788
832
|
"type": {
|
|
789
833
|
"type": "intrinsic",
|
|
@@ -840,6 +884,8 @@
|
|
|
840
884
|
"name": "Input",
|
|
841
885
|
"type": {
|
|
842
886
|
"type": "reference",
|
|
887
|
+
"qualifiedName": "InputDecorator",
|
|
888
|
+
"package": "@angular/core",
|
|
843
889
|
"name": "Input"
|
|
844
890
|
},
|
|
845
891
|
"arguments": {}
|
|
@@ -848,7 +894,7 @@
|
|
|
848
894
|
"sources": [
|
|
849
895
|
{
|
|
850
896
|
"fileName": "projects/text-editor/src/modules/text-editor/text-editor.component.ts",
|
|
851
|
-
"line":
|
|
897
|
+
"line": 143,
|
|
852
898
|
"character": 13
|
|
853
899
|
}
|
|
854
900
|
],
|
|
@@ -913,6 +959,8 @@
|
|
|
913
959
|
"name": "Input",
|
|
914
960
|
"type": {
|
|
915
961
|
"type": "reference",
|
|
962
|
+
"qualifiedName": "InputDecorator",
|
|
963
|
+
"package": "@angular/core",
|
|
916
964
|
"name": "Input"
|
|
917
965
|
},
|
|
918
966
|
"arguments": {}
|
|
@@ -921,7 +969,7 @@
|
|
|
921
969
|
"sources": [
|
|
922
970
|
{
|
|
923
971
|
"fileName": "projects/text-editor/src/modules/text-editor/text-editor.component.ts",
|
|
924
|
-
"line":
|
|
972
|
+
"line": 175,
|
|
925
973
|
"character": 13
|
|
926
974
|
}
|
|
927
975
|
],
|
|
@@ -982,7 +1030,7 @@
|
|
|
982
1030
|
"sources": [
|
|
983
1031
|
{
|
|
984
1032
|
"fileName": "projects/text-editor/src/modules/text-editor/text-editor.component.ts",
|
|
985
|
-
"line":
|
|
1033
|
+
"line": 199,
|
|
986
1034
|
"character": 13
|
|
987
1035
|
}
|
|
988
1036
|
],
|
|
@@ -1043,7 +1091,7 @@
|
|
|
1043
1091
|
"sources": [
|
|
1044
1092
|
{
|
|
1045
1093
|
"fileName": "projects/text-editor/src/modules/text-editor/text-editor.component.ts",
|
|
1046
|
-
"line":
|
|
1094
|
+
"line": 268,
|
|
1047
1095
|
"character": 9
|
|
1048
1096
|
}
|
|
1049
1097
|
],
|
|
@@ -1080,7 +1128,7 @@
|
|
|
1080
1128
|
"sources": [
|
|
1081
1129
|
{
|
|
1082
1130
|
"fileName": "projects/text-editor/src/modules/text-editor/text-editor.component.ts",
|
|
1083
|
-
"line":
|
|
1131
|
+
"line": 272,
|
|
1084
1132
|
"character": 9
|
|
1085
1133
|
}
|
|
1086
1134
|
],
|
|
@@ -1117,7 +1165,7 @@
|
|
|
1117
1165
|
"sources": [
|
|
1118
1166
|
{
|
|
1119
1167
|
"fileName": "projects/text-editor/src/modules/text-editor/text-editor.component.ts",
|
|
1120
|
-
"line":
|
|
1168
|
+
"line": 279,
|
|
1121
1169
|
"character": 9
|
|
1122
1170
|
}
|
|
1123
1171
|
],
|
|
@@ -1146,7 +1194,7 @@
|
|
|
1146
1194
|
"sources": [
|
|
1147
1195
|
{
|
|
1148
1196
|
"fileName": "projects/text-editor/src/modules/text-editor/text-editor.component.ts",
|
|
1149
|
-
"line":
|
|
1197
|
+
"line": 304,
|
|
1150
1198
|
"character": 9
|
|
1151
1199
|
}
|
|
1152
1200
|
],
|
|
@@ -1223,7 +1271,7 @@
|
|
|
1223
1271
|
"sources": [
|
|
1224
1272
|
{
|
|
1225
1273
|
"fileName": "projects/text-editor/src/modules/text-editor/text-editor.component.ts",
|
|
1226
|
-
"line":
|
|
1274
|
+
"line": 311,
|
|
1227
1275
|
"character": 9
|
|
1228
1276
|
}
|
|
1229
1277
|
],
|
|
@@ -1287,7 +1335,7 @@
|
|
|
1287
1335
|
"sources": [
|
|
1288
1336
|
{
|
|
1289
1337
|
"fileName": "projects/text-editor/src/modules/text-editor/text-editor.component.ts",
|
|
1290
|
-
"line":
|
|
1338
|
+
"line": 318,
|
|
1291
1339
|
"character": 9
|
|
1292
1340
|
}
|
|
1293
1341
|
],
|
|
@@ -1332,7 +1380,7 @@
|
|
|
1332
1380
|
"sources": [
|
|
1333
1381
|
{
|
|
1334
1382
|
"fileName": "projects/text-editor/src/modules/text-editor/text-editor.component.ts",
|
|
1335
|
-
"line":
|
|
1383
|
+
"line": 291,
|
|
1336
1384
|
"character": 9
|
|
1337
1385
|
}
|
|
1338
1386
|
],
|
|
@@ -1416,17 +1464,21 @@
|
|
|
1416
1464
|
"sources": [
|
|
1417
1465
|
{
|
|
1418
1466
|
"fileName": "projects/text-editor/src/modules/text-editor/text-editor.component.ts",
|
|
1419
|
-
"line":
|
|
1467
|
+
"line": 65,
|
|
1420
1468
|
"character": 13
|
|
1421
1469
|
}
|
|
1422
1470
|
],
|
|
1423
1471
|
"implementedTypes": [
|
|
1424
1472
|
{
|
|
1425
1473
|
"type": "reference",
|
|
1474
|
+
"qualifiedName": "AfterViewInit",
|
|
1475
|
+
"package": "@angular/core",
|
|
1426
1476
|
"name": "AfterViewInit"
|
|
1427
1477
|
},
|
|
1428
1478
|
{
|
|
1429
1479
|
"type": "reference",
|
|
1480
|
+
"qualifiedName": "OnDestroy",
|
|
1481
|
+
"package": "@angular/core",
|
|
1430
1482
|
"name": "OnDestroy"
|
|
1431
1483
|
}
|
|
1432
1484
|
]
|
|
@@ -1450,7 +1502,7 @@
|
|
|
1450
1502
|
"sources": [
|
|
1451
1503
|
{
|
|
1452
1504
|
"fileName": "projects/text-editor/src/modules/text-editor/types/font-state.ts",
|
|
1453
|
-
"line":
|
|
1505
|
+
"line": 5,
|
|
1454
1506
|
"character": 2
|
|
1455
1507
|
}
|
|
1456
1508
|
],
|
|
@@ -1471,7 +1523,7 @@
|
|
|
1471
1523
|
"sources": [
|
|
1472
1524
|
{
|
|
1473
1525
|
"fileName": "projects/text-editor/src/modules/text-editor/types/font-state.ts",
|
|
1474
|
-
"line":
|
|
1526
|
+
"line": 10,
|
|
1475
1527
|
"character": 2
|
|
1476
1528
|
}
|
|
1477
1529
|
],
|
|
@@ -1518,7 +1570,7 @@
|
|
|
1518
1570
|
"sources": [
|
|
1519
1571
|
{
|
|
1520
1572
|
"fileName": "projects/text-editor/src/modules/text-editor/types/text-editor-merge-field.ts",
|
|
1521
|
-
"line":
|
|
1573
|
+
"line": 5,
|
|
1522
1574
|
"character": 2
|
|
1523
1575
|
}
|
|
1524
1576
|
],
|
|
@@ -1539,7 +1591,7 @@
|
|
|
1539
1591
|
"sources": [
|
|
1540
1592
|
{
|
|
1541
1593
|
"fileName": "projects/text-editor/src/modules/text-editor/types/text-editor-merge-field.ts",
|
|
1542
|
-
"line":
|
|
1594
|
+
"line": 10,
|
|
1543
1595
|
"character": 2
|
|
1544
1596
|
}
|
|
1545
1597
|
],
|
|
@@ -1562,7 +1614,7 @@
|
|
|
1562
1614
|
"sources": [
|
|
1563
1615
|
{
|
|
1564
1616
|
"fileName": "projects/text-editor/src/modules/text-editor/types/text-editor-merge-field.ts",
|
|
1565
|
-
"line":
|
|
1617
|
+
"line": 16,
|
|
1566
1618
|
"character": 2
|
|
1567
1619
|
}
|
|
1568
1620
|
],
|
|
@@ -1610,7 +1662,7 @@
|
|
|
1610
1662
|
"sources": [
|
|
1611
1663
|
{
|
|
1612
1664
|
"fileName": "projects/text-editor/src/modules/text-editor/types/style-state.ts",
|
|
1613
|
-
"line":
|
|
1665
|
+
"line": 5,
|
|
1614
1666
|
"character": 2
|
|
1615
1667
|
}
|
|
1616
1668
|
],
|
|
@@ -1631,7 +1683,7 @@
|
|
|
1631
1683
|
"sources": [
|
|
1632
1684
|
{
|
|
1633
1685
|
"fileName": "projects/text-editor/src/modules/text-editor/types/style-state.ts",
|
|
1634
|
-
"line":
|
|
1686
|
+
"line": 26,
|
|
1635
1687
|
"character": 2
|
|
1636
1688
|
}
|
|
1637
1689
|
],
|
|
@@ -1652,7 +1704,7 @@
|
|
|
1652
1704
|
"sources": [
|
|
1653
1705
|
{
|
|
1654
1706
|
"fileName": "projects/text-editor/src/modules/text-editor/types/style-state.ts",
|
|
1655
|
-
"line":
|
|
1707
|
+
"line": 21,
|
|
1656
1708
|
"character": 2
|
|
1657
1709
|
}
|
|
1658
1710
|
],
|
|
@@ -1673,7 +1725,7 @@
|
|
|
1673
1725
|
"sources": [
|
|
1674
1726
|
{
|
|
1675
1727
|
"fileName": "projects/text-editor/src/modules/text-editor/types/style-state.ts",
|
|
1676
|
-
"line":
|
|
1728
|
+
"line": 10,
|
|
1677
1729
|
"character": 2
|
|
1678
1730
|
}
|
|
1679
1731
|
],
|
|
@@ -1694,7 +1746,7 @@
|
|
|
1694
1746
|
"sources": [
|
|
1695
1747
|
{
|
|
1696
1748
|
"fileName": "projects/text-editor/src/modules/text-editor/types/style-state.ts",
|
|
1697
|
-
"line":
|
|
1749
|
+
"line": 15,
|
|
1698
1750
|
"character": 2
|
|
1699
1751
|
}
|
|
1700
1752
|
],
|
|
@@ -1715,7 +1767,7 @@
|
|
|
1715
1767
|
"sources": [
|
|
1716
1768
|
{
|
|
1717
1769
|
"fileName": "projects/text-editor/src/modules/text-editor/types/style-state.ts",
|
|
1718
|
-
"line":
|
|
1770
|
+
"line": 31,
|
|
1719
1771
|
"character": 2
|
|
1720
1772
|
}
|
|
1721
1773
|
],
|
|
@@ -1736,7 +1788,7 @@
|
|
|
1736
1788
|
"sources": [
|
|
1737
1789
|
{
|
|
1738
1790
|
"fileName": "projects/text-editor/src/modules/text-editor/types/style-state.ts",
|
|
1739
|
-
"line":
|
|
1791
|
+
"line": 41,
|
|
1740
1792
|
"character": 2
|
|
1741
1793
|
}
|
|
1742
1794
|
],
|
|
@@ -1757,7 +1809,7 @@
|
|
|
1757
1809
|
"sources": [
|
|
1758
1810
|
{
|
|
1759
1811
|
"fileName": "projects/text-editor/src/modules/text-editor/types/style-state.ts",
|
|
1760
|
-
"line":
|
|
1812
|
+
"line": 36,
|
|
1761
1813
|
"character": 2
|
|
1762
1814
|
}
|
|
1763
1815
|
],
|
|
@@ -1909,7 +1961,7 @@
|
|
|
1909
1961
|
],
|
|
1910
1962
|
"sources": [
|
|
1911
1963
|
{
|
|
1912
|
-
"fileName": "
|
|
1964
|
+
"fileName": "index.ts",
|
|
1913
1965
|
"line": 1,
|
|
1914
1966
|
"character": 0
|
|
1915
1967
|
}
|
|
@@ -1919,32 +1971,32 @@
|
|
|
1919
1971
|
{
|
|
1920
1972
|
"fileName": "rich-text-display-demo.component.html",
|
|
1921
1973
|
"filePath": "/projects/text-editor/documentation/code-examples/rich-text-display/rich-text-display-demo.component.html",
|
|
1922
|
-
"rawContents": "<sky-rich-text-display
|
|
1974
|
+
"rawContents": "<sky-rich-text-display [richText]=\"richText\"></sky-rich-text-display>\n"
|
|
1923
1975
|
},
|
|
1924
1976
|
{
|
|
1925
1977
|
"fileName": "rich-text-display-demo.component.ts",
|
|
1926
1978
|
"filePath": "/projects/text-editor/documentation/code-examples/rich-text-display/rich-text-display-demo.component.ts",
|
|
1927
|
-
"rawContents": "import {
|
|
1979
|
+
"rawContents": "import { Component } from '@angular/core';\n\n@Component({\n selector: 'app-rich-text-display-demo',\n templateUrl: './rich-text-display-demo.component.html',\n})\nexport class RichTextDisplayDemoComponent {\n public richText = `<font style=\"font-size: 18px\" face=\"Arial\" color=\"#a25353\"><b>Exclusively committed to your impact</b></font><p>Since day one, Blackbaud has been 100% focused on driving impact for social good organizations.</p><p>We equip change agents with <b>cloud software</b>, <i>services</i>, <u>expertise</u>, and <font color=\"#a25353\">data intelligence</font> designed with unmatched insight and supported with unparalleled commitment. Every day, our <b>customers</b> achieve unmatched impact as they advance their missions.</p><ul><li><a href=\"#\">Build a better world</a></li><li><a href=\"#\">Explore our solutions</a></li></ul>`;\n}\n"
|
|
1928
1980
|
},
|
|
1929
1981
|
{
|
|
1930
1982
|
"fileName": "rich-text-display-demo.module.ts",
|
|
1931
1983
|
"filePath": "/projects/text-editor/documentation/code-examples/rich-text-display/rich-text-display-demo.module.ts",
|
|
1932
|
-
"rawContents": "import {
|
|
1984
|
+
"rawContents": "import { NgModule } from '@angular/core';\n\nimport { CommonModule } from '@angular/common';\n\nimport { SkyRichTextDisplayModule } from '@skyux/text-editor';\n\nimport { RichTextDisplayDemoComponent } from './rich-text-display-demo.component';\n\n@NgModule({\n imports: [CommonModule, SkyRichTextDisplayModule],\n declarations: [RichTextDisplayDemoComponent],\n exports: [RichTextDisplayDemoComponent],\n})\nexport class RichTextDisplayDemoModule {}\n"
|
|
1933
1985
|
},
|
|
1934
1986
|
{
|
|
1935
1987
|
"fileName": "text-editor-demo.component.html",
|
|
1936
1988
|
"filePath": "/projects/text-editor/documentation/code-examples/text-editor/text-editor-demo.component.html",
|
|
1937
|
-
"rawContents": "<form
|
|
1989
|
+
"rawContents": "<form novalidate [formGroup]=\"myForm\">\n <h3 skyId #textEditorLabel=\"skyId\">Text editor demo</h3>\n <sky-text-editor\n formControlName=\"myText\"\n [attr.aria-labelledby]=\"textEditorLabel.id\"\n >\n </sky-text-editor>\n</form>\n"
|
|
1938
1990
|
},
|
|
1939
1991
|
{
|
|
1940
1992
|
"fileName": "text-editor-demo.component.ts",
|
|
1941
1993
|
"filePath": "/projects/text-editor/documentation/code-examples/text-editor/text-editor-demo.component.ts",
|
|
1942
|
-
"rawContents": "import {
|
|
1994
|
+
"rawContents": "import { Component, OnInit } from '@angular/core';\n\nimport { FormBuilder, FormControl, FormGroup } from '@angular/forms';\n\n@Component({\n selector: 'app-text-editor-demo',\n templateUrl: './text-editor-demo.component.html',\n})\nexport class TextEditorDemoComponent implements OnInit {\n public myForm: FormGroup;\n\n private richText = `<font style=\"font-size: 18px\" face=\"Arial\" color=\"#a25353\"><b>Exclusively committed to your impact</b></font><p>Since day one, Blackbaud has been 100% focused on driving impact for social good organizations.</p><p>We equip change agents with <b>cloud software</b>, <i>services</i>, <u>expertise</u>, and <font color=\"#a25353\">data intelligence</font> designed with unmatched insight and supported with unparalleled commitment. Every day, our <b>customers</b> achieve unmatched impact as they advance their missions.</p><ul><li><a href=\"#\">Build a better world</a></li><li><a href=\"#\">Explore our solutions</a></li></ul>`;\n\n constructor(private formBuilder: FormBuilder) {}\n\n public ngOnInit(): void {\n this.myForm = this.formBuilder.group({\n myText: new FormControl(this.richText),\n });\n }\n}\n"
|
|
1943
1995
|
},
|
|
1944
1996
|
{
|
|
1945
1997
|
"fileName": "text-editor-demo.module.ts",
|
|
1946
1998
|
"filePath": "/projects/text-editor/documentation/code-examples/text-editor/text-editor-demo.module.ts",
|
|
1947
|
-
"rawContents": "import {
|
|
1999
|
+
"rawContents": "import { NgModule } from '@angular/core';\n\nimport { CommonModule } from '@angular/common';\n\nimport { ReactiveFormsModule } from '@angular/forms';\n\nimport { SkyIdModule } from '@skyux/core';\n\nimport { SkyTextEditorModule } from '@skyux/text-editor';\n\nimport { TextEditorDemoComponent } from './text-editor-demo.component';\n\n@NgModule({\n imports: [\n CommonModule,\n ReactiveFormsModule,\n SkyIdModule,\n SkyTextEditorModule,\n ],\n declarations: [TextEditorDemoComponent],\n exports: [TextEditorDemoComponent],\n})\nexport class TextEditorDemoModule {}\n"
|
|
1948
2000
|
}
|
|
1949
2001
|
]
|
|
1950
|
-
}
|
|
2002
|
+
}
|