@skyux/text-editor 5.0.1 → 5.5.0-alpha.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.
Files changed (128) hide show
  1. package/README.md +7 -1
  2. package/bundles/skyux-text-editor.umd.js +370 -223
  3. package/documentation.json +316 -302
  4. package/esm2015/index.js +15 -0
  5. package/esm2015/index.js.map +1 -0
  6. package/esm2015/lib/modules/rich-text-display/rich-text-display.component.js +39 -0
  7. package/esm2015/lib/modules/rich-text-display/rich-text-display.component.js.map +1 -0
  8. package/esm2015/lib/modules/rich-text-display/rich-text-display.module.js +18 -0
  9. package/esm2015/lib/modules/rich-text-display/rich-text-display.module.js.map +1 -0
  10. package/esm2015/lib/modules/shared/forms-utility.js +10 -0
  11. package/esm2015/lib/modules/shared/forms-utility.js.map +1 -0
  12. package/esm2015/lib/modules/shared/sky-text-editor-resources.module.js +106 -0
  13. package/esm2015/lib/modules/shared/sky-text-editor-resources.module.js.map +1 -0
  14. package/esm2015/lib/modules/text-editor/defaults/font-list-defaults.js +42 -0
  15. package/esm2015/lib/modules/text-editor/defaults/font-list-defaults.js.map +1 -0
  16. package/esm2015/lib/modules/text-editor/defaults/font-size-list-defaults.js +7 -0
  17. package/esm2015/lib/modules/text-editor/defaults/font-size-list-defaults.js.map +1 -0
  18. package/esm2015/lib/modules/text-editor/defaults/menu-defaults.js +5 -0
  19. package/esm2015/lib/modules/text-editor/defaults/menu-defaults.js.map +1 -0
  20. package/esm2015/lib/modules/text-editor/defaults/style-state-defaults.js +15 -0
  21. package/esm2015/lib/modules/text-editor/defaults/style-state-defaults.js.map +1 -0
  22. package/esm2015/lib/modules/text-editor/defaults/toolbar-action-defaults.js +12 -0
  23. package/esm2015/lib/modules/text-editor/defaults/toolbar-action-defaults.js.map +1 -0
  24. package/esm2015/lib/modules/text-editor/menubar/text-editor-menubar.component.js +196 -0
  25. package/esm2015/lib/modules/text-editor/menubar/text-editor-menubar.component.js.map +1 -0
  26. package/esm2015/lib/modules/text-editor/services/text-editor-adapter.service.js +473 -0
  27. package/esm2015/lib/modules/text-editor/services/text-editor-adapter.service.js.map +1 -0
  28. package/esm2015/lib/modules/text-editor/services/text-editor-selection.service.js +80 -0
  29. package/esm2015/lib/modules/text-editor/services/text-editor-selection.service.js.map +1 -0
  30. package/esm2015/lib/modules/text-editor/services/text-editor.service.js +61 -0
  31. package/esm2015/lib/modules/text-editor/services/text-editor.service.js.map +1 -0
  32. package/esm2015/lib/modules/text-editor/services/text-sanitization.service.js +38 -0
  33. package/esm2015/lib/modules/text-editor/services/text-sanitization.service.js.map +1 -0
  34. package/esm2015/lib/modules/text-editor/text-editor.component.js +322 -0
  35. package/esm2015/lib/modules/text-editor/text-editor.component.js.map +1 -0
  36. package/esm2015/lib/modules/text-editor/text-editor.module.js +99 -0
  37. package/esm2015/lib/modules/text-editor/text-editor.module.js.map +1 -0
  38. package/esm2015/lib/modules/text-editor/toolbar/text-editor-toolbar.component.js +175 -0
  39. package/esm2015/lib/modules/text-editor/toolbar/text-editor-toolbar.component.js.map +1 -0
  40. package/esm2015/lib/modules/text-editor/types/editor-command.js +2 -0
  41. package/esm2015/lib/modules/text-editor/types/editor-command.js.map +1 -0
  42. package/esm2015/lib/modules/text-editor/types/editor-setting.js +2 -0
  43. package/esm2015/lib/modules/text-editor/types/editor-setting.js.map +1 -0
  44. package/esm2015/lib/modules/text-editor/types/font-state.js +2 -0
  45. package/esm2015/lib/modules/text-editor/types/font-state.js.map +1 -0
  46. package/esm2015/lib/modules/text-editor/types/menu-type.js +2 -0
  47. package/esm2015/lib/modules/text-editor/types/menu-type.js.map +1 -0
  48. package/esm2015/lib/modules/text-editor/types/style-state.js +2 -0
  49. package/esm2015/lib/modules/text-editor/types/style-state.js.map +1 -0
  50. package/esm2015/lib/modules/text-editor/types/text-editor-merge-field.js +2 -0
  51. package/esm2015/lib/modules/text-editor/types/text-editor-merge-field.js.map +1 -0
  52. package/esm2015/lib/modules/text-editor/types/toolbar-action-type.js +2 -0
  53. package/esm2015/lib/modules/text-editor/types/toolbar-action-type.js.map +1 -0
  54. package/esm2015/lib/modules/text-editor/url-modal/text-editor-url-modal-context.js +6 -0
  55. package/esm2015/lib/modules/text-editor/url-modal/text-editor-url-modal-context.js.map +1 -0
  56. package/esm2015/lib/modules/text-editor/url-modal/text-editor-url-modal-result.js +2 -0
  57. package/esm2015/lib/modules/text-editor/url-modal/text-editor-url-modal-result.js.map +1 -0
  58. package/esm2015/lib/modules/text-editor/url-modal/text-editor-url-modal.component.js +121 -0
  59. package/esm2015/lib/modules/text-editor/url-modal/text-editor-url-modal.component.js.map +1 -0
  60. package/esm2015/lib/modules/text-editor/url-modal/text-editor-url-target.js +9 -0
  61. package/esm2015/lib/modules/text-editor/url-modal/text-editor-url-target.js.map +1 -0
  62. package/esm2015/skyux-text-editor.js +2 -2
  63. package/esm2015/skyux-text-editor.js.map +1 -0
  64. package/fesm2015/skyux-text-editor.js +411 -265
  65. package/fesm2015/skyux-text-editor.js.map +1 -1
  66. package/index.d.ts +12 -0
  67. package/{modules → lib/modules}/rich-text-display/rich-text-display.component.d.ts +0 -0
  68. package/{modules → lib/modules}/rich-text-display/rich-text-display.module.d.ts +0 -0
  69. package/{modules → lib/modules}/shared/forms-utility.d.ts +0 -0
  70. package/{modules → lib/modules}/shared/sky-text-editor-resources.module.d.ts +0 -0
  71. package/{modules → lib/modules}/text-editor/defaults/font-list-defaults.d.ts +0 -0
  72. package/{modules → lib/modules}/text-editor/defaults/font-size-list-defaults.d.ts +0 -0
  73. package/{modules → lib/modules}/text-editor/defaults/menu-defaults.d.ts +0 -0
  74. package/{modules → lib/modules}/text-editor/defaults/style-state-defaults.d.ts +0 -0
  75. package/{modules → lib/modules}/text-editor/defaults/toolbar-action-defaults.d.ts +0 -0
  76. package/{modules → lib/modules}/text-editor/menubar/text-editor-menubar.component.d.ts +0 -0
  77. package/{modules → lib/modules}/text-editor/services/text-editor-adapter.service.d.ts +0 -0
  78. package/{modules → lib/modules}/text-editor/services/text-editor-selection.service.d.ts +0 -0
  79. package/{modules → lib/modules}/text-editor/services/text-editor.service.d.ts +8 -0
  80. package/{modules → lib/modules}/text-editor/services/text-sanitization.service.d.ts +0 -0
  81. package/{modules → lib/modules}/text-editor/text-editor.component.d.ts +24 -10
  82. package/{modules → lib/modules}/text-editor/text-editor.module.d.ts +0 -0
  83. package/{modules → lib/modules}/text-editor/toolbar/text-editor-toolbar.component.d.ts +0 -0
  84. package/{modules → lib/modules}/text-editor/types/editor-command.d.ts +0 -0
  85. package/{modules → lib/modules}/text-editor/types/editor-setting.d.ts +6 -2
  86. package/{modules → lib/modules}/text-editor/types/font-state.d.ts +0 -0
  87. package/{modules → lib/modules}/text-editor/types/menu-type.d.ts +0 -0
  88. package/{modules → lib/modules}/text-editor/types/style-state.d.ts +0 -0
  89. package/{modules → lib/modules}/text-editor/types/text-editor-merge-field.d.ts +0 -0
  90. package/{modules → lib/modules}/text-editor/types/toolbar-action-type.d.ts +0 -0
  91. package/{modules → lib/modules}/text-editor/url-modal/text-editor-url-modal-context.d.ts +0 -0
  92. package/{modules → lib/modules}/text-editor/url-modal/text-editor-url-modal-result.d.ts +0 -0
  93. package/{modules → lib/modules}/text-editor/url-modal/text-editor-url-modal.component.d.ts +0 -0
  94. package/{modules → lib/modules}/text-editor/url-modal/text-editor-url-target.d.ts +0 -0
  95. package/package.json +13 -13
  96. package/skyux-text-editor.d.ts +1 -1
  97. package/LICENSE +0 -21
  98. package/bundles/skyux-text-editor.umd.js.map +0 -1
  99. package/esm2015/modules/rich-text-display/rich-text-display.component.js +0 -37
  100. package/esm2015/modules/rich-text-display/rich-text-display.module.js +0 -26
  101. package/esm2015/modules/shared/forms-utility.js +0 -10
  102. package/esm2015/modules/shared/sky-text-editor-resources.module.js +0 -41
  103. package/esm2015/modules/text-editor/defaults/font-list-defaults.js +0 -42
  104. package/esm2015/modules/text-editor/defaults/font-size-list-defaults.js +0 -5
  105. package/esm2015/modules/text-editor/defaults/menu-defaults.js +0 -8
  106. package/esm2015/modules/text-editor/defaults/style-state-defaults.js +0 -15
  107. package/esm2015/modules/text-editor/defaults/toolbar-action-defaults.js +0 -12
  108. package/esm2015/modules/text-editor/menubar/text-editor-menubar.component.js +0 -189
  109. package/esm2015/modules/text-editor/services/text-editor-adapter.service.js +0 -451
  110. package/esm2015/modules/text-editor/services/text-editor-selection.service.js +0 -76
  111. package/esm2015/modules/text-editor/services/text-editor.service.js +0 -49
  112. package/esm2015/modules/text-editor/services/text-sanitization.service.js +0 -38
  113. package/esm2015/modules/text-editor/text-editor.component.js +0 -282
  114. package/esm2015/modules/text-editor/text-editor.module.js +0 -101
  115. package/esm2015/modules/text-editor/toolbar/text-editor-toolbar.component.js +0 -163
  116. package/esm2015/modules/text-editor/types/editor-command.js +0 -2
  117. package/esm2015/modules/text-editor/types/editor-setting.js +0 -2
  118. package/esm2015/modules/text-editor/types/font-state.js +0 -2
  119. package/esm2015/modules/text-editor/types/menu-type.js +0 -2
  120. package/esm2015/modules/text-editor/types/style-state.js +0 -2
  121. package/esm2015/modules/text-editor/types/text-editor-merge-field.js +0 -2
  122. package/esm2015/modules/text-editor/types/toolbar-action-type.js +0 -2
  123. package/esm2015/modules/text-editor/url-modal/text-editor-url-modal-context.js +0 -6
  124. package/esm2015/modules/text-editor/url-modal/text-editor-url-modal-result.js +0 -2
  125. package/esm2015/modules/text-editor/url-modal/text-editor-url-modal.component.js +0 -112
  126. package/esm2015/modules/text-editor/url-modal/text-editor-url-target.js +0 -9
  127. package/esm2015/public-api.js +0 -15
  128. package/public-api.d.ts +0 -12
@@ -19,7 +19,7 @@
19
19
  "originalName": "",
20
20
  "children": [
21
21
  {
22
- "id": 216,
22
+ "id": 225,
23
23
  "name": "SkyRichTextDisplayModule",
24
24
  "kind": 128,
25
25
  "kindString": "Class",
@@ -29,30 +29,32 @@
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: [\n CommonModule\n ],\n exports: [\n SkyRichTextDisplayComponent\n ],\n declarations: [\n SkyRichTextDisplayComponent\n ]\n}"
37
+ "obj": "{\n imports: [CommonModule],\n exports: [SkyRichTextDisplayComponent],\n declarations: [SkyRichTextDisplayComponent],\n}"
36
38
  }
37
39
  }
38
40
  ],
39
41
  "children": [
40
42
  {
41
- "id": 217,
43
+ "id": 226,
42
44
  "name": "constructor",
43
45
  "kind": 512,
44
46
  "kindString": "Constructor",
45
47
  "flags": {},
46
48
  "signatures": [
47
49
  {
48
- "id": 218,
50
+ "id": 227,
49
51
  "name": "new SkyRichTextDisplayModule",
50
52
  "kind": 16384,
51
53
  "kindString": "Constructor signature",
52
54
  "flags": {},
53
55
  "type": {
54
56
  "type": "reference",
55
- "id": 216,
57
+ "id": 225,
56
58
  "name": "SkyRichTextDisplayModule"
57
59
  }
58
60
  }
@@ -64,20 +66,20 @@
64
66
  "title": "Constructors",
65
67
  "kind": 512,
66
68
  "children": [
67
- 217
69
+ 226
68
70
  ]
69
71
  }
70
72
  ],
71
73
  "sources": [
72
74
  {
73
75
  "fileName": "projects/text-editor/src/modules/rich-text-display/rich-text-display.module.ts",
74
- "line": 24,
76
+ "line": 12,
75
77
  "character": 13
76
78
  }
77
79
  ]
78
80
  },
79
81
  {
80
- "id": 237,
82
+ "id": 246,
81
83
  "name": "SkyTextEditorModule",
82
84
  "kind": 128,
83
85
  "kindString": "Class",
@@ -87,30 +89,32 @@
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\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: [\n SkyTextEditorUrlModalComponent\n ]\n}"
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
  ],
97
101
  "children": [
98
102
  {
99
- "id": 238,
103
+ "id": 247,
100
104
  "name": "constructor",
101
105
  "kind": 512,
102
106
  "kindString": "Constructor",
103
107
  "flags": {},
104
108
  "signatures": [
105
109
  {
106
- "id": 239,
110
+ "id": 248,
107
111
  "name": "new SkyTextEditorModule",
108
112
  "kind": 16384,
109
113
  "kindString": "Constructor signature",
110
114
  "flags": {},
111
115
  "type": {
112
116
  "type": "reference",
113
- "id": 237,
117
+ "id": 246,
114
118
  "name": "SkyTextEditorModule"
115
119
  }
116
120
  }
@@ -122,14 +126,14 @@
122
126
  "title": "Constructors",
123
127
  "kind": 512,
124
128
  "children": [
125
- 238
129
+ 247
126
130
  ]
127
131
  }
128
132
  ],
129
133
  "sources": [
130
134
  {
131
135
  "fileName": "projects/text-editor/src/modules/text-editor/text-editor.module.ts",
132
- "line": 111,
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'\n}"
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": 41,
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": 37,
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": 25,
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": 19,
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 providers: [\n {\n provide: NG_VALUE_ACCESSOR,\n // tslint:disable-next-line: no-forward-ref\n useExisting: forwardRef(() => SkyTextEditorComponent),\n multi: true\n }\n ],\n changeDetection: ChangeDetectionStrategy.OnPush,\n encapsulation: ViewEncapsulation.None\n}"
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": 277,
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
  },
@@ -410,6 +426,32 @@
410
426
  "type": "reference",
411
427
  "name": "SkyTextSanitizationService"
412
428
  }
429
+ },
430
+ {
431
+ "id": 155,
432
+ "name": "ngControl",
433
+ "kind": 32768,
434
+ "kindString": "Parameter",
435
+ "flags": {},
436
+ "type": {
437
+ "type": "reference",
438
+ "qualifiedName": "NgControl",
439
+ "package": "@angular/forms",
440
+ "name": "NgControl"
441
+ }
442
+ },
443
+ {
444
+ "id": 156,
445
+ "name": "zone",
446
+ "kind": 32768,
447
+ "kindString": "Parameter",
448
+ "flags": {},
449
+ "type": {
450
+ "type": "reference",
451
+ "qualifiedName": "NgZone",
452
+ "package": "@angular/core",
453
+ "name": "NgZone"
454
+ }
413
455
  }
414
456
  ],
415
457
  "type": {
@@ -421,7 +463,7 @@
421
463
  ]
422
464
  },
423
465
  {
424
- "id": 155,
466
+ "id": 157,
425
467
  "name": "autofocus",
426
468
  "kind": 1024,
427
469
  "kindString": "Property",
@@ -436,6 +478,8 @@
436
478
  "name": "Input",
437
479
  "type": {
438
480
  "type": "reference",
481
+ "qualifiedName": "InputDecorator",
482
+ "package": "@angular/core",
439
483
  "name": "Input"
440
484
  },
441
485
  "arguments": {}
@@ -444,7 +488,7 @@
444
488
  "sources": [
445
489
  {
446
490
  "fileName": "projects/text-editor/src/modules/text-editor/text-editor.component.ts",
447
- "line": 116,
491
+ "line": 70,
448
492
  "character": 9
449
493
  }
450
494
  ],
@@ -455,7 +499,7 @@
455
499
  "defaultValue": "false"
456
500
  },
457
501
  {
458
- "id": 160,
502
+ "id": 162,
459
503
  "name": "editorFocusStream",
460
504
  "kind": 1024,
461
505
  "kindString": "Property",
@@ -465,7 +509,7 @@
465
509
  "sources": [
466
510
  {
467
511
  "fileName": "projects/text-editor/src/modules/text-editor/text-editor.component.ts",
468
- "line": 151,
512
+ "line": 116,
469
513
  "character": 9
470
514
  }
471
515
  ],
@@ -477,12 +521,14 @@
477
521
  "name": "unknown"
478
522
  }
479
523
  ],
524
+ "qualifiedName": "Subject",
525
+ "package": "rxjs",
480
526
  "name": "Subject"
481
527
  },
482
528
  "defaultValue": "..."
483
529
  },
484
530
  {
485
- "id": 161,
531
+ "id": 163,
486
532
  "name": "fontList",
487
533
  "kind": 1024,
488
534
  "kindString": "Property",
@@ -503,6 +549,8 @@
503
549
  "name": "Input",
504
550
  "type": {
505
551
  "type": "reference",
552
+ "qualifiedName": "InputDecorator",
553
+ "package": "@angular/core",
506
554
  "name": "Input"
507
555
  },
508
556
  "arguments": {}
@@ -511,7 +559,7 @@
511
559
  "sources": [
512
560
  {
513
561
  "fileName": "projects/text-editor/src/modules/text-editor/text-editor.component.ts",
514
- "line": 160,
562
+ "line": 123,
515
563
  "character": 9
516
564
  }
517
565
  ],
@@ -519,14 +567,14 @@
519
567
  "type": "array",
520
568
  "elementType": {
521
569
  "type": "reference",
522
- "id": 219,
570
+ "id": 228,
523
571
  "name": "SkyTextEditorFont"
524
572
  }
525
573
  },
526
- "defaultValue": "..."
574
+ "defaultValue": "FONT_LIST_DEFAULTS"
527
575
  },
528
576
  {
529
- "id": 162,
577
+ "id": 164,
530
578
  "name": "fontSizeList",
531
579
  "kind": 1024,
532
580
  "kindString": "Property",
@@ -547,6 +595,8 @@
547
595
  "name": "Input",
548
596
  "type": {
549
597
  "type": "reference",
598
+ "qualifiedName": "InputDecorator",
599
+ "package": "@angular/core",
550
600
  "name": "Input"
551
601
  },
552
602
  "arguments": {}
@@ -555,7 +605,7 @@
555
605
  "sources": [
556
606
  {
557
607
  "fileName": "projects/text-editor/src/modules/text-editor/text-editor.component.ts",
558
- "line": 167,
608
+ "line": 130,
559
609
  "character": 9
560
610
  }
561
611
  ],
@@ -566,10 +616,10 @@
566
616
  "name": "number"
567
617
  }
568
618
  },
569
- "defaultValue": "..."
619
+ "defaultValue": "FONT_SIZE_LIST_DEFAULTS"
570
620
  },
571
621
  {
572
- "id": 163,
622
+ "id": 165,
573
623
  "name": "id",
574
624
  "kind": 1024,
575
625
  "kindString": "Property",
@@ -584,6 +634,8 @@
584
634
  "name": "Input",
585
635
  "type": {
586
636
  "type": "reference",
637
+ "qualifiedName": "InputDecorator",
638
+ "package": "@angular/core",
587
639
  "name": "Input"
588
640
  },
589
641
  "arguments": {}
@@ -592,7 +644,7 @@
592
644
  "sources": [
593
645
  {
594
646
  "fileName": "projects/text-editor/src/modules/text-editor/text-editor.component.ts",
595
- "line": 174,
647
+ "line": 137,
596
648
  "character": 9
597
649
  }
598
650
  ],
@@ -603,7 +655,7 @@
603
655
  "defaultValue": "..."
604
656
  },
605
657
  {
606
- "id": 168,
658
+ "id": 170,
607
659
  "name": "menus",
608
660
  "kind": 1024,
609
661
  "kindString": "Property",
@@ -624,6 +676,8 @@
624
676
  "name": "Input",
625
677
  "type": {
626
678
  "type": "reference",
679
+ "qualifiedName": "InputDecorator",
680
+ "package": "@angular/core",
627
681
  "name": "Input"
628
682
  },
629
683
  "arguments": {}
@@ -632,7 +686,7 @@
632
686
  "sources": [
633
687
  {
634
688
  "fileName": "projects/text-editor/src/modules/text-editor/text-editor.component.ts",
635
- "line": 200,
689
+ "line": 163,
636
690
  "character": 9
637
691
  }
638
692
  ],
@@ -640,14 +694,14 @@
640
694
  "type": "array",
641
695
  "elementType": {
642
696
  "type": "reference",
643
- "id": 222,
697
+ "id": 231,
644
698
  "name": "SkyTextEditorMenuType"
645
699
  }
646
700
  },
647
- "defaultValue": "..."
701
+ "defaultValue": "MENU_DEFAULTS"
648
702
  },
649
703
  {
650
- "id": 169,
704
+ "id": 171,
651
705
  "name": "mergeFields",
652
706
  "kind": 1024,
653
707
  "kindString": "Property",
@@ -662,6 +716,8 @@
662
716
  "name": "Input",
663
717
  "type": {
664
718
  "type": "reference",
719
+ "qualifiedName": "InputDecorator",
720
+ "package": "@angular/core",
665
721
  "name": "Input"
666
722
  },
667
723
  "arguments": {}
@@ -670,7 +726,7 @@
670
726
  "sources": [
671
727
  {
672
728
  "fileName": "projects/text-editor/src/modules/text-editor/text-editor.component.ts",
673
- "line": 206,
729
+ "line": 169,
674
730
  "character": 9
675
731
  }
676
732
  ],
@@ -678,14 +734,14 @@
678
734
  "type": "array",
679
735
  "elementType": {
680
736
  "type": "reference",
681
- "id": 232,
737
+ "id": 241,
682
738
  "name": "SkyTextEditorMergeField"
683
739
  }
684
740
  },
685
741
  "defaultValue": "[]"
686
742
  },
687
743
  {
688
- "id": 174,
744
+ "id": 176,
689
745
  "name": "toolbarActions",
690
746
  "kind": 1024,
691
747
  "kindString": "Property",
@@ -706,6 +762,8 @@
706
762
  "name": "Input",
707
763
  "type": {
708
764
  "type": "reference",
765
+ "qualifiedName": "InputDecorator",
766
+ "package": "@angular/core",
709
767
  "name": "Input"
710
768
  },
711
769
  "arguments": {}
@@ -714,7 +772,7 @@
714
772
  "sources": [
715
773
  {
716
774
  "fileName": "projects/text-editor/src/modules/text-editor/text-editor.component.ts",
717
- "line": 233,
775
+ "line": 194,
718
776
  "character": 9
719
777
  }
720
778
  ],
@@ -722,14 +780,14 @@
722
780
  "type": "array",
723
781
  "elementType": {
724
782
  "type": "reference",
725
- "id": 236,
783
+ "id": 245,
726
784
  "name": "SkyTextEditorToolbarActionType"
727
785
  }
728
786
  },
729
- "defaultValue": "..."
787
+ "defaultValue": "TOOLBAR_ACTION_DEFAULTS"
730
788
  },
731
789
  {
732
- "id": 156,
790
+ "id": 158,
733
791
  "name": "disabled",
734
792
  "kind": 262144,
735
793
  "kindString": "Accessor",
@@ -741,6 +799,8 @@
741
799
  "name": "Input",
742
800
  "type": {
743
801
  "type": "reference",
802
+ "qualifiedName": "InputDecorator",
803
+ "package": "@angular/core",
744
804
  "name": "Input"
745
805
  },
746
806
  "arguments": {}
@@ -749,19 +809,25 @@
749
809
  "sources": [
750
810
  {
751
811
  "fileName": "projects/text-editor/src/modules/text-editor/text-editor.component.ts",
752
- "line": 123,
812
+ "line": 77,
753
813
  "character": 13
754
814
  }
755
815
  ],
756
816
  "getSignature": [
757
817
  {
758
- "id": 157,
818
+ "id": 159,
759
819
  "name": "disabled",
760
820
  "kind": 524288,
761
821
  "kindString": "Get signature",
762
822
  "flags": {},
763
823
  "comment": {
764
- "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
+ ]
765
831
  },
766
832
  "type": {
767
833
  "type": "intrinsic",
@@ -771,7 +837,7 @@
771
837
  ],
772
838
  "setSignature": [
773
839
  {
774
- "id": 158,
840
+ "id": 160,
775
841
  "name": "disabled",
776
842
  "kind": 1048576,
777
843
  "kindString": "Set signature",
@@ -787,7 +853,7 @@
787
853
  },
788
854
  "parameters": [
789
855
  {
790
- "id": 159,
856
+ "id": 161,
791
857
  "name": "value",
792
858
  "kind": 32768,
793
859
  "kindString": "Parameter",
@@ -806,7 +872,7 @@
806
872
  ]
807
873
  },
808
874
  {
809
- "id": 164,
875
+ "id": 166,
810
876
  "name": "initialStyleState",
811
877
  "kind": 262144,
812
878
  "kindString": "Accessor",
@@ -818,6 +884,8 @@
818
884
  "name": "Input",
819
885
  "type": {
820
886
  "type": "reference",
887
+ "qualifiedName": "InputDecorator",
888
+ "package": "@angular/core",
821
889
  "name": "Input"
822
890
  },
823
891
  "arguments": {}
@@ -826,13 +894,13 @@
826
894
  "sources": [
827
895
  {
828
896
  "fileName": "projects/text-editor/src/modules/text-editor/text-editor.component.ts",
829
- "line": 180,
897
+ "line": 143,
830
898
  "character": 13
831
899
  }
832
900
  ],
833
901
  "getSignature": [
834
902
  {
835
- "id": 165,
903
+ "id": 167,
836
904
  "name": "initialStyleState",
837
905
  "kind": 524288,
838
906
  "kindString": "Get signature",
@@ -842,14 +910,14 @@
842
910
  },
843
911
  "type": {
844
912
  "type": "reference",
845
- "id": 223,
913
+ "id": 232,
846
914
  "name": "SkyTextEditorStyleState"
847
915
  }
848
916
  }
849
917
  ],
850
918
  "setSignature": [
851
919
  {
852
- "id": 166,
920
+ "id": 168,
853
921
  "name": "initialStyleState",
854
922
  "kind": 1048576,
855
923
  "kindString": "Set signature",
@@ -859,14 +927,14 @@
859
927
  },
860
928
  "parameters": [
861
929
  {
862
- "id": 167,
930
+ "id": 169,
863
931
  "name": "state",
864
932
  "kind": 32768,
865
933
  "kindString": "Parameter",
866
934
  "flags": {},
867
935
  "type": {
868
936
  "type": "reference",
869
- "id": 223,
937
+ "id": 232,
870
938
  "name": "SkyTextEditorStyleState"
871
939
  }
872
940
  }
@@ -879,7 +947,7 @@
879
947
  ]
880
948
  },
881
949
  {
882
- "id": 170,
950
+ "id": 172,
883
951
  "name": "placeholder",
884
952
  "kind": 262144,
885
953
  "kindString": "Accessor",
@@ -891,6 +959,8 @@
891
959
  "name": "Input",
892
960
  "type": {
893
961
  "type": "reference",
962
+ "qualifiedName": "InputDecorator",
963
+ "package": "@angular/core",
894
964
  "name": "Input"
895
965
  },
896
966
  "arguments": {}
@@ -899,13 +969,13 @@
899
969
  "sources": [
900
970
  {
901
971
  "fileName": "projects/text-editor/src/modules/text-editor/text-editor.component.ts",
902
- "line": 212,
972
+ "line": 175,
903
973
  "character": 13
904
974
  }
905
975
  ],
906
976
  "getSignature": [
907
977
  {
908
- "id": 171,
978
+ "id": 173,
909
979
  "name": "placeholder",
910
980
  "kind": 524288,
911
981
  "kindString": "Get signature",
@@ -921,7 +991,7 @@
921
991
  ],
922
992
  "setSignature": [
923
993
  {
924
- "id": 172,
994
+ "id": 174,
925
995
  "name": "placeholder",
926
996
  "kind": 1048576,
927
997
  "kindString": "Set signature",
@@ -931,7 +1001,7 @@
931
1001
  },
932
1002
  "parameters": [
933
1003
  {
934
- "id": 173,
1004
+ "id": 175,
935
1005
  "name": "value",
936
1006
  "kind": 32768,
937
1007
  "kindString": "Parameter",
@@ -950,7 +1020,7 @@
950
1020
  ]
951
1021
  },
952
1022
  {
953
- "id": 175,
1023
+ "id": 177,
954
1024
  "name": "value",
955
1025
  "kind": 262144,
956
1026
  "kindString": "Accessor",
@@ -960,17 +1030,20 @@
960
1030
  "sources": [
961
1031
  {
962
1032
  "fileName": "projects/text-editor/src/modules/text-editor/text-editor.component.ts",
963
- "line": 235,
1033
+ "line": 199,
964
1034
  "character": 13
965
1035
  }
966
1036
  ],
967
1037
  "getSignature": [
968
1038
  {
969
- "id": 176,
1039
+ "id": 178,
970
1040
  "name": "value",
971
1041
  "kind": 524288,
972
1042
  "kindString": "Get signature",
973
1043
  "flags": {},
1044
+ "comment": {
1045
+ "shortText": "The internal value of the control."
1046
+ },
974
1047
  "type": {
975
1048
  "type": "intrinsic",
976
1049
  "name": "string"
@@ -979,14 +1052,17 @@
979
1052
  ],
980
1053
  "setSignature": [
981
1054
  {
982
- "id": 177,
1055
+ "id": 179,
983
1056
  "name": "value",
984
1057
  "kind": 1048576,
985
1058
  "kindString": "Set signature",
986
1059
  "flags": {},
1060
+ "comment": {
1061
+ "shortText": "The internal value of the control."
1062
+ },
987
1063
  "parameters": [
988
1064
  {
989
- "id": 178,
1065
+ "id": 180,
990
1066
  "name": "value",
991
1067
  "kind": 32768,
992
1068
  "kindString": "Parameter",
@@ -1005,7 +1081,7 @@
1005
1081
  ]
1006
1082
  },
1007
1083
  {
1008
- "id": 187,
1084
+ "id": 189,
1009
1085
  "name": "ngAfterViewInit",
1010
1086
  "kind": 2048,
1011
1087
  "kindString": "Method",
@@ -1015,13 +1091,13 @@
1015
1091
  "sources": [
1016
1092
  {
1017
1093
  "fileName": "projects/text-editor/src/modules/text-editor/text-editor.component.ts",
1018
- "line": 285,
1094
+ "line": 268,
1019
1095
  "character": 9
1020
1096
  }
1021
1097
  ],
1022
1098
  "signatures": [
1023
1099
  {
1024
- "id": 188,
1100
+ "id": 190,
1025
1101
  "name": "ngAfterViewInit",
1026
1102
  "kind": 4096,
1027
1103
  "kindString": "Call signature",
@@ -1042,7 +1118,7 @@
1042
1118
  }
1043
1119
  },
1044
1120
  {
1045
- "id": 189,
1121
+ "id": 191,
1046
1122
  "name": "ngOnDestroy",
1047
1123
  "kind": 2048,
1048
1124
  "kindString": "Method",
@@ -1052,13 +1128,13 @@
1052
1128
  "sources": [
1053
1129
  {
1054
1130
  "fileName": "projects/text-editor/src/modules/text-editor/text-editor.component.ts",
1055
- "line": 289,
1131
+ "line": 272,
1056
1132
  "character": 9
1057
1133
  }
1058
1134
  ],
1059
1135
  "signatures": [
1060
1136
  {
1061
- "id": 190,
1137
+ "id": 192,
1062
1138
  "name": "ngOnDestroy",
1063
1139
  "kind": 4096,
1064
1140
  "kindString": "Call signature",
@@ -1079,36 +1155,7 @@
1079
1155
  }
1080
1156
  },
1081
1157
  {
1082
- "id": 205,
1083
- "name": "onChange",
1084
- "kind": 2048,
1085
- "kindString": "Method",
1086
- "flags": {
1087
- "isPublic": true
1088
- },
1089
- "sources": [
1090
- {
1091
- "fileName": "projects/text-editor/src/modules/text-editor/text-editor.component.ts",
1092
- "line": 330,
1093
- "character": 9
1094
- }
1095
- ],
1096
- "signatures": [
1097
- {
1098
- "id": 206,
1099
- "name": "onChange",
1100
- "kind": 4096,
1101
- "kindString": "Call signature",
1102
- "flags": {},
1103
- "type": {
1104
- "type": "intrinsic",
1105
- "name": "void"
1106
- }
1107
- }
1108
- ]
1109
- },
1110
- {
1111
- "id": 191,
1158
+ "id": 193,
1112
1159
  "name": "onIframeLoad",
1113
1160
  "kind": 2048,
1114
1161
  "kindString": "Method",
@@ -1118,13 +1165,13 @@
1118
1165
  "sources": [
1119
1166
  {
1120
1167
  "fileName": "projects/text-editor/src/modules/text-editor/text-editor.component.ts",
1121
- "line": 296,
1168
+ "line": 279,
1122
1169
  "character": 9
1123
1170
  }
1124
1171
  ],
1125
1172
  "signatures": [
1126
1173
  {
1127
- "id": 192,
1174
+ "id": 194,
1128
1175
  "name": "onIframeLoad",
1129
1176
  "kind": 4096,
1130
1177
  "kindString": "Call signature",
@@ -1137,36 +1184,7 @@
1137
1184
  ]
1138
1185
  },
1139
1186
  {
1140
- "id": 211,
1141
- "name": "onTouch",
1142
- "kind": 2048,
1143
- "kindString": "Method",
1144
- "flags": {
1145
- "isPublic": true
1146
- },
1147
- "sources": [
1148
- {
1149
- "fileName": "projects/text-editor/src/modules/text-editor/text-editor.component.ts",
1150
- "line": 386,
1151
- "character": 9
1152
- }
1153
- ],
1154
- "signatures": [
1155
- {
1156
- "id": 212,
1157
- "name": "onTouch",
1158
- "kind": 4096,
1159
- "kindString": "Call signature",
1160
- "flags": {},
1161
- "type": {
1162
- "type": "intrinsic",
1163
- "name": "void"
1164
- }
1165
- }
1166
- ]
1167
- },
1168
- {
1169
- "id": 196,
1187
+ "id": 198,
1170
1188
  "name": "registerOnChange",
1171
1189
  "kind": 2048,
1172
1190
  "kindString": "Method",
@@ -1176,47 +1194,74 @@
1176
1194
  "sources": [
1177
1195
  {
1178
1196
  "fileName": "projects/text-editor/src/modules/text-editor/text-editor.component.ts",
1179
- "line": 315,
1197
+ "line": 304,
1180
1198
  "character": 9
1181
1199
  }
1182
1200
  ],
1183
1201
  "signatures": [
1184
1202
  {
1185
- "id": 197,
1203
+ "id": 199,
1186
1204
  "name": "registerOnChange",
1187
1205
  "kind": 4096,
1188
1206
  "kindString": "Call signature",
1189
1207
  "flags": {},
1208
+ "comment": {
1209
+ "shortText": "Implemented as part of ControlValueAccessor."
1210
+ },
1190
1211
  "parameters": [
1191
1212
  {
1192
- "id": 198,
1213
+ "id": 200,
1193
1214
  "name": "fn",
1194
1215
  "kind": 32768,
1195
1216
  "kindString": "Parameter",
1196
1217
  "flags": {},
1197
1218
  "type": {
1198
- "type": "intrinsic",
1199
- "name": "any"
1219
+ "type": "reflection",
1220
+ "declaration": {
1221
+ "id": 201,
1222
+ "name": "__type",
1223
+ "kind": 65536,
1224
+ "kindString": "Type literal",
1225
+ "flags": {},
1226
+ "signatures": [
1227
+ {
1228
+ "id": 202,
1229
+ "name": "__type",
1230
+ "kind": 4096,
1231
+ "kindString": "Call signature",
1232
+ "flags": {},
1233
+ "parameters": [
1234
+ {
1235
+ "id": 203,
1236
+ "name": "value",
1237
+ "kind": 32768,
1238
+ "kindString": "Parameter",
1239
+ "flags": {},
1240
+ "type": {
1241
+ "type": "intrinsic",
1242
+ "name": "any"
1243
+ }
1244
+ }
1245
+ ],
1246
+ "type": {
1247
+ "type": "intrinsic",
1248
+ "name": "void"
1249
+ }
1250
+ }
1251
+ ]
1252
+ }
1200
1253
  }
1201
1254
  }
1202
1255
  ],
1203
1256
  "type": {
1204
1257
  "type": "intrinsic",
1205
1258
  "name": "void"
1206
- },
1207
- "implementationOf": {
1208
- "type": "reference",
1209
- "name": "ControlValueAccessor.registerOnChange"
1210
1259
  }
1211
1260
  }
1212
- ],
1213
- "implementationOf": {
1214
- "type": "reference",
1215
- "name": "ControlValueAccessor.registerOnChange"
1216
- }
1261
+ ]
1217
1262
  },
1218
1263
  {
1219
- "id": 199,
1264
+ "id": 204,
1220
1265
  "name": "registerOnTouched",
1221
1266
  "kind": 2048,
1222
1267
  "kindString": "Method",
@@ -1226,47 +1271,61 @@
1226
1271
  "sources": [
1227
1272
  {
1228
1273
  "fileName": "projects/text-editor/src/modules/text-editor/text-editor.component.ts",
1229
- "line": 319,
1274
+ "line": 311,
1230
1275
  "character": 9
1231
1276
  }
1232
1277
  ],
1233
1278
  "signatures": [
1234
1279
  {
1235
- "id": 200,
1280
+ "id": 205,
1236
1281
  "name": "registerOnTouched",
1237
1282
  "kind": 4096,
1238
1283
  "kindString": "Call signature",
1239
1284
  "flags": {},
1285
+ "comment": {
1286
+ "shortText": "Implemented as part of ControlValueAccessor."
1287
+ },
1240
1288
  "parameters": [
1241
1289
  {
1242
- "id": 201,
1290
+ "id": 206,
1243
1291
  "name": "fn",
1244
1292
  "kind": 32768,
1245
1293
  "kindString": "Parameter",
1246
1294
  "flags": {},
1247
1295
  "type": {
1248
- "type": "intrinsic",
1249
- "name": "any"
1296
+ "type": "reflection",
1297
+ "declaration": {
1298
+ "id": 207,
1299
+ "name": "__type",
1300
+ "kind": 65536,
1301
+ "kindString": "Type literal",
1302
+ "flags": {},
1303
+ "signatures": [
1304
+ {
1305
+ "id": 208,
1306
+ "name": "__type",
1307
+ "kind": 4096,
1308
+ "kindString": "Call signature",
1309
+ "flags": {},
1310
+ "type": {
1311
+ "type": "intrinsic",
1312
+ "name": "void"
1313
+ }
1314
+ }
1315
+ ]
1316
+ }
1250
1317
  }
1251
1318
  }
1252
1319
  ],
1253
1320
  "type": {
1254
1321
  "type": "intrinsic",
1255
1322
  "name": "void"
1256
- },
1257
- "implementationOf": {
1258
- "type": "reference",
1259
- "name": "ControlValueAccessor.registerOnTouched"
1260
1323
  }
1261
1324
  }
1262
- ],
1263
- "implementationOf": {
1264
- "type": "reference",
1265
- "name": "ControlValueAccessor.registerOnTouched"
1266
- }
1325
+ ]
1267
1326
  },
1268
1327
  {
1269
- "id": 202,
1328
+ "id": 209,
1270
1329
  "name": "setDisabledState",
1271
1330
  "kind": 2048,
1272
1331
  "kindString": "Method",
@@ -1276,13 +1335,13 @@
1276
1335
  "sources": [
1277
1336
  {
1278
1337
  "fileName": "projects/text-editor/src/modules/text-editor/text-editor.component.ts",
1279
- "line": 326,
1338
+ "line": 318,
1280
1339
  "character": 9
1281
1340
  }
1282
1341
  ],
1283
1342
  "signatures": [
1284
1343
  {
1285
- "id": 203,
1344
+ "id": 210,
1286
1345
  "name": "setDisabledState",
1287
1346
  "kind": 4096,
1288
1347
  "kindString": "Call signature",
@@ -1292,7 +1351,7 @@
1292
1351
  },
1293
1352
  "parameters": [
1294
1353
  {
1295
- "id": 204,
1354
+ "id": 211,
1296
1355
  "name": "isDisabled",
1297
1356
  "kind": 32768,
1298
1357
  "kindString": "Parameter",
@@ -1303,43 +1362,6 @@
1303
1362
  }
1304
1363
  }
1305
1364
  ],
1306
- "type": {
1307
- "type": "intrinsic",
1308
- "name": "void"
1309
- },
1310
- "implementationOf": {
1311
- "type": "reference",
1312
- "name": "ControlValueAccessor.setDisabledState"
1313
- }
1314
- }
1315
- ],
1316
- "implementationOf": {
1317
- "type": "reference",
1318
- "name": "ControlValueAccessor.setDisabledState"
1319
- }
1320
- },
1321
- {
1322
- "id": 207,
1323
- "name": "updateValueAndStyle",
1324
- "kind": 2048,
1325
- "kindString": "Method",
1326
- "flags": {
1327
- "isPublic": true
1328
- },
1329
- "sources": [
1330
- {
1331
- "fileName": "projects/text-editor/src/modules/text-editor/text-editor.component.ts",
1332
- "line": 334,
1333
- "character": 9
1334
- }
1335
- ],
1336
- "signatures": [
1337
- {
1338
- "id": 208,
1339
- "name": "updateValueAndStyle",
1340
- "kind": 4096,
1341
- "kindString": "Call signature",
1342
- "flags": {},
1343
1365
  "type": {
1344
1366
  "type": "intrinsic",
1345
1367
  "name": "void"
@@ -1348,7 +1370,7 @@
1348
1370
  ]
1349
1371
  },
1350
1372
  {
1351
- "id": 193,
1373
+ "id": 195,
1352
1374
  "name": "writeValue",
1353
1375
  "kind": 2048,
1354
1376
  "kindString": "Method",
@@ -1358,21 +1380,24 @@
1358
1380
  "sources": [
1359
1381
  {
1360
1382
  "fileName": "projects/text-editor/src/modules/text-editor/text-editor.component.ts",
1361
- "line": 305,
1383
+ "line": 291,
1362
1384
  "character": 9
1363
1385
  }
1364
1386
  ],
1365
1387
  "signatures": [
1366
1388
  {
1367
- "id": 194,
1389
+ "id": 196,
1368
1390
  "name": "writeValue",
1369
1391
  "kind": 4096,
1370
1392
  "kindString": "Call signature",
1371
1393
  "flags": {},
1394
+ "comment": {
1395
+ "shortText": "Implemented as part of ControlValueAccessor."
1396
+ },
1372
1397
  "parameters": [
1373
1398
  {
1374
- "id": 195,
1375
- "name": "obj",
1399
+ "id": 197,
1400
+ "name": "value",
1376
1401
  "kind": 32768,
1377
1402
  "kindString": "Parameter",
1378
1403
  "flags": {},
@@ -1385,17 +1410,9 @@
1385
1410
  "type": {
1386
1411
  "type": "intrinsic",
1387
1412
  "name": "void"
1388
- },
1389
- "implementationOf": {
1390
- "type": "reference",
1391
- "name": "ControlValueAccessor.writeValue"
1392
1413
  }
1393
1414
  }
1394
- ],
1395
- "implementationOf": {
1396
- "type": "reference",
1397
- "name": "ControlValueAccessor.writeValue"
1398
- }
1415
+ ]
1399
1416
  }
1400
1417
  ],
1401
1418
  "groups": [
@@ -1410,74 +1427,71 @@
1410
1427
  "title": "Properties",
1411
1428
  "kind": 1024,
1412
1429
  "children": [
1413
- 155,
1414
- 160,
1415
- 161,
1430
+ 157,
1416
1431
  162,
1417
1432
  163,
1418
- 168,
1419
- 169,
1420
- 174
1433
+ 164,
1434
+ 165,
1435
+ 170,
1436
+ 171,
1437
+ 176
1421
1438
  ]
1422
1439
  },
1423
1440
  {
1424
1441
  "title": "Accessors",
1425
1442
  "kind": 262144,
1426
1443
  "children": [
1427
- 156,
1428
- 164,
1429
- 170,
1430
- 175
1444
+ 158,
1445
+ 166,
1446
+ 172,
1447
+ 177
1431
1448
  ]
1432
1449
  },
1433
1450
  {
1434
1451
  "title": "Methods",
1435
1452
  "kind": 2048,
1436
1453
  "children": [
1437
- 187,
1438
1454
  189,
1439
- 205,
1440
1455
  191,
1441
- 211,
1442
- 196,
1443
- 199,
1444
- 202,
1445
- 207,
1446
- 193
1456
+ 193,
1457
+ 198,
1458
+ 204,
1459
+ 209,
1460
+ 195
1447
1461
  ]
1448
1462
  }
1449
1463
  ],
1450
1464
  "sources": [
1451
1465
  {
1452
1466
  "fileName": "projects/text-editor/src/modules/text-editor/text-editor.component.ts",
1453
- "line": 110,
1467
+ "line": 65,
1454
1468
  "character": 13
1455
1469
  }
1456
1470
  ],
1457
1471
  "implementedTypes": [
1458
1472
  {
1459
1473
  "type": "reference",
1474
+ "qualifiedName": "AfterViewInit",
1475
+ "package": "@angular/core",
1460
1476
  "name": "AfterViewInit"
1461
1477
  },
1462
1478
  {
1463
1479
  "type": "reference",
1464
- "name": "ControlValueAccessor"
1465
- },
1466
- {
1467
- "type": "reference",
1480
+ "qualifiedName": "OnDestroy",
1481
+ "package": "@angular/core",
1468
1482
  "name": "OnDestroy"
1469
1483
  }
1470
1484
  ]
1471
1485
  },
1472
1486
  {
1473
- "id": 219,
1487
+ "id": 228,
1474
1488
  "name": "SkyTextEditorFont",
1475
1489
  "kind": 256,
1476
1490
  "kindString": "Interface",
1477
1491
  "flags": {},
1478
1492
  "children": [
1479
1493
  {
1480
- "id": 220,
1494
+ "id": 229,
1481
1495
  "name": "name",
1482
1496
  "kind": 1024,
1483
1497
  "kindString": "Property",
@@ -1488,7 +1502,7 @@
1488
1502
  "sources": [
1489
1503
  {
1490
1504
  "fileName": "projects/text-editor/src/modules/text-editor/types/font-state.ts",
1491
- "line": 6,
1505
+ "line": 5,
1492
1506
  "character": 2
1493
1507
  }
1494
1508
  ],
@@ -1498,7 +1512,7 @@
1498
1512
  }
1499
1513
  },
1500
1514
  {
1501
- "id": 221,
1515
+ "id": 230,
1502
1516
  "name": "value",
1503
1517
  "kind": 1024,
1504
1518
  "kindString": "Property",
@@ -1509,7 +1523,7 @@
1509
1523
  "sources": [
1510
1524
  {
1511
1525
  "fileName": "projects/text-editor/src/modules/text-editor/types/font-state.ts",
1512
- "line": 11,
1526
+ "line": 10,
1513
1527
  "character": 2
1514
1528
  }
1515
1529
  ],
@@ -1524,8 +1538,8 @@
1524
1538
  "title": "Properties",
1525
1539
  "kind": 1024,
1526
1540
  "children": [
1527
- 220,
1528
- 221
1541
+ 229,
1542
+ 230
1529
1543
  ]
1530
1544
  }
1531
1545
  ],
@@ -1538,14 +1552,14 @@
1538
1552
  ]
1539
1553
  },
1540
1554
  {
1541
- "id": 232,
1555
+ "id": 241,
1542
1556
  "name": "SkyTextEditorMergeField",
1543
1557
  "kind": 256,
1544
1558
  "kindString": "Interface",
1545
1559
  "flags": {},
1546
1560
  "children": [
1547
1561
  {
1548
- "id": 233,
1562
+ "id": 242,
1549
1563
  "name": "id",
1550
1564
  "kind": 1024,
1551
1565
  "kindString": "Property",
@@ -1556,7 +1570,7 @@
1556
1570
  "sources": [
1557
1571
  {
1558
1572
  "fileName": "projects/text-editor/src/modules/text-editor/types/text-editor-merge-field.ts",
1559
- "line": 6,
1573
+ "line": 5,
1560
1574
  "character": 2
1561
1575
  }
1562
1576
  ],
@@ -1566,7 +1580,7 @@
1566
1580
  }
1567
1581
  },
1568
1582
  {
1569
- "id": 234,
1583
+ "id": 243,
1570
1584
  "name": "name",
1571
1585
  "kind": 1024,
1572
1586
  "kindString": "Property",
@@ -1577,7 +1591,7 @@
1577
1591
  "sources": [
1578
1592
  {
1579
1593
  "fileName": "projects/text-editor/src/modules/text-editor/types/text-editor-merge-field.ts",
1580
- "line": 11,
1594
+ "line": 10,
1581
1595
  "character": 2
1582
1596
  }
1583
1597
  ],
@@ -1587,7 +1601,7 @@
1587
1601
  }
1588
1602
  },
1589
1603
  {
1590
- "id": 235,
1604
+ "id": 244,
1591
1605
  "name": "previewImageUrl",
1592
1606
  "kind": 1024,
1593
1607
  "kindString": "Property",
@@ -1600,7 +1614,7 @@
1600
1614
  "sources": [
1601
1615
  {
1602
1616
  "fileName": "projects/text-editor/src/modules/text-editor/types/text-editor-merge-field.ts",
1603
- "line": 17,
1617
+ "line": 16,
1604
1618
  "character": 2
1605
1619
  }
1606
1620
  ],
@@ -1615,9 +1629,9 @@
1615
1629
  "title": "Properties",
1616
1630
  "kind": 1024,
1617
1631
  "children": [
1618
- 233,
1619
- 234,
1620
- 235
1632
+ 242,
1633
+ 243,
1634
+ 244
1621
1635
  ]
1622
1636
  }
1623
1637
  ],
@@ -1630,14 +1644,14 @@
1630
1644
  ]
1631
1645
  },
1632
1646
  {
1633
- "id": 223,
1647
+ "id": 232,
1634
1648
  "name": "SkyTextEditorStyleState",
1635
1649
  "kind": 256,
1636
1650
  "kindString": "Interface",
1637
1651
  "flags": {},
1638
1652
  "children": [
1639
1653
  {
1640
- "id": 224,
1654
+ "id": 233,
1641
1655
  "name": "backColor",
1642
1656
  "kind": 1024,
1643
1657
  "kindString": "Property",
@@ -1648,7 +1662,7 @@
1648
1662
  "sources": [
1649
1663
  {
1650
1664
  "fileName": "projects/text-editor/src/modules/text-editor/types/style-state.ts",
1651
- "line": 6,
1665
+ "line": 5,
1652
1666
  "character": 2
1653
1667
  }
1654
1668
  ],
@@ -1658,7 +1672,7 @@
1658
1672
  }
1659
1673
  },
1660
1674
  {
1661
- "id": 228,
1675
+ "id": 237,
1662
1676
  "name": "boldState",
1663
1677
  "kind": 1024,
1664
1678
  "kindString": "Property",
@@ -1669,7 +1683,7 @@
1669
1683
  "sources": [
1670
1684
  {
1671
1685
  "fileName": "projects/text-editor/src/modules/text-editor/types/style-state.ts",
1672
- "line": 27,
1686
+ "line": 26,
1673
1687
  "character": 2
1674
1688
  }
1675
1689
  ],
@@ -1679,7 +1693,7 @@
1679
1693
  }
1680
1694
  },
1681
1695
  {
1682
- "id": 227,
1696
+ "id": 236,
1683
1697
  "name": "font",
1684
1698
  "kind": 1024,
1685
1699
  "kindString": "Property",
@@ -1690,7 +1704,7 @@
1690
1704
  "sources": [
1691
1705
  {
1692
1706
  "fileName": "projects/text-editor/src/modules/text-editor/types/style-state.ts",
1693
- "line": 22,
1707
+ "line": 21,
1694
1708
  "character": 2
1695
1709
  }
1696
1710
  ],
@@ -1700,7 +1714,7 @@
1700
1714
  }
1701
1715
  },
1702
1716
  {
1703
- "id": 225,
1717
+ "id": 234,
1704
1718
  "name": "fontColor",
1705
1719
  "kind": 1024,
1706
1720
  "kindString": "Property",
@@ -1711,7 +1725,7 @@
1711
1725
  "sources": [
1712
1726
  {
1713
1727
  "fileName": "projects/text-editor/src/modules/text-editor/types/style-state.ts",
1714
- "line": 11,
1728
+ "line": 10,
1715
1729
  "character": 2
1716
1730
  }
1717
1731
  ],
@@ -1721,7 +1735,7 @@
1721
1735
  }
1722
1736
  },
1723
1737
  {
1724
- "id": 226,
1738
+ "id": 235,
1725
1739
  "name": "fontSize",
1726
1740
  "kind": 1024,
1727
1741
  "kindString": "Property",
@@ -1732,7 +1746,7 @@
1732
1746
  "sources": [
1733
1747
  {
1734
1748
  "fileName": "projects/text-editor/src/modules/text-editor/types/style-state.ts",
1735
- "line": 16,
1749
+ "line": 15,
1736
1750
  "character": 2
1737
1751
  }
1738
1752
  ],
@@ -1742,7 +1756,7 @@
1742
1756
  }
1743
1757
  },
1744
1758
  {
1745
- "id": 229,
1759
+ "id": 238,
1746
1760
  "name": "italicState",
1747
1761
  "kind": 1024,
1748
1762
  "kindString": "Property",
@@ -1753,7 +1767,7 @@
1753
1767
  "sources": [
1754
1768
  {
1755
1769
  "fileName": "projects/text-editor/src/modules/text-editor/types/style-state.ts",
1756
- "line": 32,
1770
+ "line": 31,
1757
1771
  "character": 2
1758
1772
  }
1759
1773
  ],
@@ -1763,7 +1777,7 @@
1763
1777
  }
1764
1778
  },
1765
1779
  {
1766
- "id": 231,
1780
+ "id": 240,
1767
1781
  "name": "linkState",
1768
1782
  "kind": 1024,
1769
1783
  "kindString": "Property",
@@ -1774,7 +1788,7 @@
1774
1788
  "sources": [
1775
1789
  {
1776
1790
  "fileName": "projects/text-editor/src/modules/text-editor/types/style-state.ts",
1777
- "line": 42,
1791
+ "line": 41,
1778
1792
  "character": 2
1779
1793
  }
1780
1794
  ],
@@ -1784,7 +1798,7 @@
1784
1798
  }
1785
1799
  },
1786
1800
  {
1787
- "id": 230,
1801
+ "id": 239,
1788
1802
  "name": "underlineState",
1789
1803
  "kind": 1024,
1790
1804
  "kindString": "Property",
@@ -1795,7 +1809,7 @@
1795
1809
  "sources": [
1796
1810
  {
1797
1811
  "fileName": "projects/text-editor/src/modules/text-editor/types/style-state.ts",
1798
- "line": 37,
1812
+ "line": 36,
1799
1813
  "character": 2
1800
1814
  }
1801
1815
  ],
@@ -1810,14 +1824,14 @@
1810
1824
  "title": "Properties",
1811
1825
  "kind": 1024,
1812
1826
  "children": [
1813
- 224,
1814
- 228,
1815
- 227,
1816
- 225,
1817
- 226,
1818
- 229,
1819
- 231,
1820
- 230
1827
+ 233,
1828
+ 237,
1829
+ 236,
1830
+ 234,
1831
+ 235,
1832
+ 238,
1833
+ 240,
1834
+ 239
1821
1835
  ]
1822
1836
  }
1823
1837
  ],
@@ -1830,7 +1844,7 @@
1830
1844
  ]
1831
1845
  },
1832
1846
  {
1833
- "id": 222,
1847
+ "id": 231,
1834
1848
  "name": "SkyTextEditorMenuType",
1835
1849
  "kind": 4194304,
1836
1850
  "kindString": "Type alias",
@@ -1861,7 +1875,7 @@
1861
1875
  }
1862
1876
  },
1863
1877
  {
1864
- "id": 236,
1878
+ "id": 245,
1865
1879
  "name": "SkyTextEditorToolbarActionType",
1866
1880
  "kind": 4194304,
1867
1881
  "kindString": "Type alias",
@@ -1921,8 +1935,8 @@
1921
1935
  "title": "Classes",
1922
1936
  "kind": 128,
1923
1937
  "children": [
1924
- 216,
1925
- 237,
1938
+ 225,
1939
+ 246,
1926
1940
  1,
1927
1941
  147
1928
1942
  ]
@@ -1931,23 +1945,23 @@
1931
1945
  "title": "Interfaces",
1932
1946
  "kind": 256,
1933
1947
  "children": [
1934
- 219,
1935
- 232,
1936
- 223
1948
+ 228,
1949
+ 241,
1950
+ 232
1937
1951
  ]
1938
1952
  },
1939
1953
  {
1940
1954
  "title": "Type aliases",
1941
1955
  "kind": 4194304,
1942
1956
  "children": [
1943
- 222,
1944
- 236
1957
+ 231,
1958
+ 245
1945
1959
  ]
1946
1960
  }
1947
1961
  ],
1948
1962
  "sources": [
1949
1963
  {
1950
- "fileName": "projects/text-editor/src/public-api.ts",
1964
+ "fileName": "index.ts",
1951
1965
  "line": 1,
1952
1966
  "character": 0
1953
1967
  }
@@ -1957,32 +1971,32 @@
1957
1971
  {
1958
1972
  "fileName": "rich-text-display-demo.component.html",
1959
1973
  "filePath": "/projects/text-editor/documentation/code-examples/rich-text-display/rich-text-display-demo.component.html",
1960
- "rawContents": "<sky-rich-text-display\n [richText]=\"richText\"\n></sky-rich-text-display>\n"
1974
+ "rawContents": "<sky-rich-text-display [richText]=\"richText\"></sky-rich-text-display>\n"
1961
1975
  },
1962
1976
  {
1963
1977
  "fileName": "rich-text-display-demo.component.ts",
1964
1978
  "filePath": "/projects/text-editor/documentation/code-examples/rich-text-display/rich-text-display-demo.component.ts",
1965
- "rawContents": "import {\n Component\n} 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\n public richText: string = `<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}\n"
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"
1966
1980
  },
1967
1981
  {
1968
1982
  "fileName": "rich-text-display-demo.module.ts",
1969
1983
  "filePath": "/projects/text-editor/documentation/code-examples/rich-text-display/rich-text-display-demo.module.ts",
1970
- "rawContents": "import {\n NgModule\n} from '@angular/core';\n\nimport {\n CommonModule\n} from '@angular/common';\n\nimport {\n SkyRichTextDisplayModule\n} from '@skyux/text-editor';\n\nimport {\n RichTextDisplayDemoComponent\n} from './rich-text-display-demo.component';\n\n@NgModule({\n imports: [\n CommonModule,\n SkyRichTextDisplayModule\n ],\n declarations: [\n RichTextDisplayDemoComponent\n ],\n exports: [\n RichTextDisplayDemoComponent\n ]\n})\nexport class RichTextDisplayDemoModule { }\n"
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"
1971
1985
  },
1972
1986
  {
1973
1987
  "fileName": "text-editor-demo.component.html",
1974
1988
  "filePath": "/projects/text-editor/documentation/code-examples/text-editor/text-editor-demo.component.html",
1975
- "rawContents": "<form\n novalidate\n [formGroup]=\"myForm\"\n>\n <h3\n skyId\n #textEditorLabel=\"skyId\"\n >\n Text editor demo\n </h3>\n <sky-text-editor\n formControlName=\"myText\"\n [attr.aria-labelledby]=\"textEditorLabel.id\"\n >\n </sky-text-editor>\n</form>\n"
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"
1976
1990
  },
1977
1991
  {
1978
1992
  "fileName": "text-editor-demo.component.ts",
1979
1993
  "filePath": "/projects/text-editor/documentation/code-examples/text-editor/text-editor-demo.component.ts",
1980
- "rawContents": "import {\n Component,\n OnInit\n} from '@angular/core';\n\nimport {\n FormBuilder,\n FormControl,\n FormGroup\n} 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\n public myForm: FormGroup;\n\n private richText: string = `<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(\n private formBuilder: FormBuilder\n ) {}\n\n public ngOnInit(): void {\n this.myForm = this.formBuilder.group({\n myText: new FormControl(this.richText)\n });\n }\n\n}\n"
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"
1981
1995
  },
1982
1996
  {
1983
1997
  "fileName": "text-editor-demo.module.ts",
1984
1998
  "filePath": "/projects/text-editor/documentation/code-examples/text-editor/text-editor-demo.module.ts",
1985
- "rawContents": "import {\n NgModule\n} from '@angular/core';\n\nimport {\n CommonModule\n} from '@angular/common';\n\nimport {\n ReactiveFormsModule\n} from '@angular/forms';\n\nimport {\n SkyIdModule\n} from '@skyux/core';\n\nimport {\n SkyTextEditorModule\n} from '@skyux/text-editor';\n\nimport {\n TextEditorDemoComponent\n} from './text-editor-demo.component';\n\n@NgModule({\n imports: [\n CommonModule,\n ReactiveFormsModule,\n SkyIdModule,\n SkyTextEditorModule\n ],\n declarations: [\n TextEditorDemoComponent\n ],\n exports: [\n TextEditorDemoComponent\n ]\n})\nexport class TextEditorDemoModule { }\n"
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"
1986
2000
  }
1987
2001
  ]
1988
- }
2002
+ }