@skyux/text-editor 9.0.0-alpha.0 → 9.0.0-alpha.1

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 (2) hide show
  1. package/documentation.json +23 -23
  2. package/package.json +12 -12
@@ -2324,19 +2324,14 @@
2324
2324
  },
2325
2325
  "codeExamples": [
2326
2326
  {
2327
- "fileName": "rich-text-display-demo.component.html",
2328
- "filePath": "/projects/text-editor/documentation/code-examples/rich-text-display/rich-text-display-demo.component.html",
2329
- "rawContents": "<sky-rich-text-display [richText]=\"richText\"></sky-rich-text-display>\n"
2330
- },
2331
- {
2332
- "fileName": "rich-text-display-demo.component.ts",
2333
- "filePath": "/projects/text-editor/documentation/code-examples/rich-text-display/rich-text-display-demo.component.ts",
2334
- "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"
2327
+ "fileName": "text-editor-demo.module.ts",
2328
+ "filePath": "/projects/text-editor/documentation/code-examples/text-editor-inline-help/text-editor-demo.module.ts",
2329
+ "rawContents": "import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { ReactiveFormsModule } from '@angular/forms';\nimport { SkyInputBoxModule } from '@skyux/forms';\nimport { SkyTextEditorModule } from '@skyux/text-editor';\n\nimport { TextEditorDemoComponent } from './text-editor-demo.component';\n\n@NgModule({\n imports: [\n CommonModule,\n ReactiveFormsModule,\n SkyInputBoxModule,\n SkyTextEditorModule,\n ],\n declarations: [TextEditorDemoComponent],\n exports: [TextEditorDemoComponent],\n})\nexport class TextEditorDemoModule {}\n"
2335
2330
  },
2336
2331
  {
2337
- "fileName": "rich-text-display-demo.module.ts",
2338
- "filePath": "/projects/text-editor/documentation/code-examples/rich-text-display/rich-text-display-demo.module.ts",
2339
- "rawContents": "import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\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"
2332
+ "fileName": "text-editor-demo.component.ts",
2333
+ "filePath": "/projects/text-editor/documentation/code-examples/text-editor-inline-help/text-editor-demo.component.ts",
2334
+ "rawContents": "import { Component } from '@angular/core';\nimport {\n UntypedFormBuilder,\n UntypedFormControl,\n UntypedFormGroup,\n} from '@angular/forms';\n\n@Component({\n selector: 'app-text-editor-demo',\n templateUrl: './text-editor-demo.component.html',\n})\nexport class TextEditorDemoComponent {\n public myForm: UntypedFormGroup;\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(formBuilder: UntypedFormBuilder) {\n this.myForm = formBuilder.group({\n myText: new UntypedFormControl(this.richText),\n });\n }\n}\n"
2340
2335
  },
2341
2336
  {
2342
2337
  "fileName": "text-editor-demo.component.html",
@@ -2344,14 +2339,14 @@
2344
2339
  "rawContents": "<form novalidate [formGroup]=\"myForm\">\n <sky-input-box\n helpPopoverContent=\"Enter some beautifully formatted text.\"\n labelText=\"Text editor demo\"\n >\n <sky-text-editor formControlName=\"myText\" />\n </sky-input-box>\n</form>\n"
2345
2340
  },
2346
2341
  {
2347
- "fileName": "text-editor-demo.component.ts",
2348
- "filePath": "/projects/text-editor/documentation/code-examples/text-editor-inline-help/text-editor-demo.component.ts",
2349
- "rawContents": "import { Component } from '@angular/core';\nimport {\n UntypedFormBuilder,\n UntypedFormControl,\n UntypedFormGroup,\n} from '@angular/forms';\n\n@Component({\n selector: 'app-text-editor-demo',\n templateUrl: './text-editor-demo.component.html',\n})\nexport class TextEditorDemoComponent {\n public myForm: UntypedFormGroup;\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(formBuilder: UntypedFormBuilder) {\n this.myForm = formBuilder.group({\n myText: new UntypedFormControl(this.richText),\n });\n }\n}\n"
2342
+ "fileName": "text-editor-demo.module.ts",
2343
+ "filePath": "/projects/text-editor/documentation/code-examples/text-editor/text-editor-demo.module.ts",
2344
+ "rawContents": "import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { ReactiveFormsModule } from '@angular/forms';\nimport { SkyIdModule } from '@skyux/core';\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"
2350
2345
  },
2351
2346
  {
2352
- "fileName": "text-editor-demo.module.ts",
2353
- "filePath": "/projects/text-editor/documentation/code-examples/text-editor-inline-help/text-editor-demo.module.ts",
2354
- "rawContents": "import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { ReactiveFormsModule } from '@angular/forms';\nimport { SkyInputBoxModule } from '@skyux/forms';\nimport { SkyTextEditorModule } from '@skyux/text-editor';\n\nimport { TextEditorDemoComponent } from './text-editor-demo.component';\n\n@NgModule({\n imports: [\n CommonModule,\n ReactiveFormsModule,\n SkyInputBoxModule,\n SkyTextEditorModule,\n ],\n declarations: [TextEditorDemoComponent],\n exports: [TextEditorDemoComponent],\n})\nexport class TextEditorDemoModule {}\n"
2347
+ "fileName": "text-editor-demo.component.ts",
2348
+ "filePath": "/projects/text-editor/documentation/code-examples/text-editor/text-editor-demo.component.ts",
2349
+ "rawContents": "import { Component } from '@angular/core';\nimport {\n UntypedFormBuilder,\n UntypedFormControl,\n UntypedFormGroup,\n} from '@angular/forms';\n\n@Component({\n selector: 'app-text-editor-demo',\n templateUrl: './text-editor-demo.component.html',\n})\nexport class TextEditorDemoComponent {\n public myForm: UntypedFormGroup;\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(formBuilder: UntypedFormBuilder) {\n this.myForm = formBuilder.group({\n myText: new UntypedFormControl(this.richText),\n });\n }\n}\n"
2355
2350
  },
2356
2351
  {
2357
2352
  "fileName": "text-editor-demo.component.html",
@@ -2359,14 +2354,19 @@
2359
2354
  "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"
2360
2355
  },
2361
2356
  {
2362
- "fileName": "text-editor-demo.component.ts",
2363
- "filePath": "/projects/text-editor/documentation/code-examples/text-editor/text-editor-demo.component.ts",
2364
- "rawContents": "import { Component } from '@angular/core';\nimport {\n UntypedFormBuilder,\n UntypedFormControl,\n UntypedFormGroup,\n} from '@angular/forms';\n\n@Component({\n selector: 'app-text-editor-demo',\n templateUrl: './text-editor-demo.component.html',\n})\nexport class TextEditorDemoComponent {\n public myForm: UntypedFormGroup;\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(formBuilder: UntypedFormBuilder) {\n this.myForm = formBuilder.group({\n myText: new UntypedFormControl(this.richText),\n });\n }\n}\n"
2357
+ "fileName": "rich-text-display-demo.module.ts",
2358
+ "filePath": "/projects/text-editor/documentation/code-examples/rich-text-display/rich-text-display-demo.module.ts",
2359
+ "rawContents": "import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\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"
2365
2360
  },
2366
2361
  {
2367
- "fileName": "text-editor-demo.module.ts",
2368
- "filePath": "/projects/text-editor/documentation/code-examples/text-editor/text-editor-demo.module.ts",
2369
- "rawContents": "import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { ReactiveFormsModule } from '@angular/forms';\nimport { SkyIdModule } from '@skyux/core';\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"
2362
+ "fileName": "rich-text-display-demo.component.ts",
2363
+ "filePath": "/projects/text-editor/documentation/code-examples/rich-text-display/rich-text-display-demo.component.ts",
2364
+ "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"
2365
+ },
2366
+ {
2367
+ "fileName": "rich-text-display-demo.component.html",
2368
+ "filePath": "/projects/text-editor/documentation/code-examples/rich-text-display/rich-text-display-demo.component.html",
2369
+ "rawContents": "<sky-rich-text-display [richText]=\"richText\"></sky-rich-text-display>\n"
2370
2370
  }
2371
2371
  ]
2372
2372
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skyux/text-editor",
3
- "version": "9.0.0-alpha.0",
3
+ "version": "9.0.0-alpha.1",
4
4
  "author": "Blackbaud, Inc.",
5
5
  "keywords": [
6
6
  "blackbaud",
@@ -34,17 +34,17 @@
34
34
  "@angular/core": "^16.1.7",
35
35
  "@angular/forms": "^16.1.7",
36
36
  "@angular/platform-browser": "^16.1.7",
37
- "@skyux/colorpicker": "9.0.0-alpha.0",
38
- "@skyux/core": "9.0.0-alpha.0",
39
- "@skyux/forms": "9.0.0-alpha.0",
40
- "@skyux/i18n": "9.0.0-alpha.0",
41
- "@skyux/indicators": "9.0.0-alpha.0",
42
- "@skyux/layout": "9.0.0-alpha.0",
43
- "@skyux/modals": "9.0.0-alpha.0",
44
- "@skyux/popovers": "9.0.0-alpha.0",
45
- "@skyux/tabs": "9.0.0-alpha.0",
46
- "@skyux/theme": "9.0.0-alpha.0",
47
- "@skyux/validation": "9.0.0-alpha.0"
37
+ "@skyux/colorpicker": "9.0.0-alpha.1",
38
+ "@skyux/core": "9.0.0-alpha.1",
39
+ "@skyux/forms": "9.0.0-alpha.1",
40
+ "@skyux/i18n": "9.0.0-alpha.1",
41
+ "@skyux/indicators": "9.0.0-alpha.1",
42
+ "@skyux/layout": "9.0.0-alpha.1",
43
+ "@skyux/modals": "9.0.0-alpha.1",
44
+ "@skyux/popovers": "9.0.0-alpha.1",
45
+ "@skyux/tabs": "9.0.0-alpha.1",
46
+ "@skyux/theme": "9.0.0-alpha.1",
47
+ "@skyux/validation": "9.0.0-alpha.1"
48
48
  },
49
49
  "dependencies": {
50
50
  "dompurify": "3.0.1",