@skyux/text-editor 7.0.0 → 7.1.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 (2) hide show
  1. package/documentation.json +2 -2
  2. package/package.json +12 -12
@@ -2266,7 +2266,7 @@
2266
2266
  {
2267
2267
  "fileName": "text-editor-demo.component.ts",
2268
2268
  "filePath": "/projects/text-editor/documentation/code-examples/text-editor-inline-help/text-editor-demo.component.ts",
2269
- "rawContents": "import { Component, OnInit } 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 implements OnInit {\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(private formBuilder: UntypedFormBuilder) {}\n\n public ngOnInit(): void {\n this.myForm = this.formBuilder.group({\n myText: new UntypedFormControl(this.richText),\n });\n }\n\n public onActionClick(): void {\n alert('Help inline button clicked!');\n }\n}\n"
2269
+ "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 public onActionClick(): void {\n alert('Help inline button clicked!');\n }\n}\n"
2270
2270
  },
2271
2271
  {
2272
2272
  "fileName": "text-editor-demo.module.ts",
@@ -2281,7 +2281,7 @@
2281
2281
  {
2282
2282
  "fileName": "text-editor-demo.component.ts",
2283
2283
  "filePath": "/projects/text-editor/documentation/code-examples/text-editor/text-editor-demo.component.ts",
2284
- "rawContents": "import { Component, OnInit } 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 implements OnInit {\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(private formBuilder: UntypedFormBuilder) {}\n\n public ngOnInit(): void {\n this.myForm = this.formBuilder.group({\n myText: new UntypedFormControl(this.richText),\n });\n }\n}\n"
2284
+ "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"
2285
2285
  },
2286
2286
  {
2287
2287
  "fileName": "text-editor-demo.module.ts",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skyux/text-editor",
3
- "version": "7.0.0",
3
+ "version": "7.1.0",
4
4
  "author": "Blackbaud, Inc.",
5
5
  "keywords": [
6
6
  "blackbaud",
@@ -36,17 +36,17 @@
36
36
  "@angular/core": "^14.2.11",
37
37
  "@angular/forms": "^14.2.11",
38
38
  "@angular/platform-browser": "^14.2.11",
39
- "@skyux/colorpicker": "7.0.0",
40
- "@skyux/core": "7.0.0",
41
- "@skyux/forms": "7.0.0",
42
- "@skyux/i18n": "7.0.0",
43
- "@skyux/indicators": "7.0.0",
44
- "@skyux/layout": "7.0.0",
45
- "@skyux/modals": "7.0.0",
46
- "@skyux/popovers": "7.0.0",
47
- "@skyux/tabs": "7.0.0",
48
- "@skyux/theme": "7.0.0",
49
- "@skyux/validation": "7.0.0"
39
+ "@skyux/colorpicker": "7.1.0",
40
+ "@skyux/core": "7.1.0",
41
+ "@skyux/forms": "7.1.0",
42
+ "@skyux/i18n": "7.1.0",
43
+ "@skyux/indicators": "7.1.0",
44
+ "@skyux/layout": "7.1.0",
45
+ "@skyux/modals": "7.1.0",
46
+ "@skyux/popovers": "7.1.0",
47
+ "@skyux/tabs": "7.1.0",
48
+ "@skyux/theme": "7.1.0",
49
+ "@skyux/validation": "7.1.0"
50
50
  },
51
51
  "dependencies": {
52
52
  "dompurify": "2.4.1",