@skyux/text-editor 6.25.0 → 6.25.2
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/documentation.json +2 -2
- package/package.json +12 -12
package/documentation.json
CHANGED
|
@@ -1942,12 +1942,12 @@
|
|
|
1942
1942
|
{
|
|
1943
1943
|
"fileName": "text-editor-demo.component.html",
|
|
1944
1944
|
"filePath": "/projects/text-editor/documentation/code-examples/text-editor-inline-help/text-editor-demo.component.html",
|
|
1945
|
-
"rawContents": "<form novalidate [formGroup]=\"myForm\">\n <sky-input-box>\n <label skyId #textEditorLabel=\"skyId\" class=\"sky-control-label\">\n Text editor demo\n </label>\n <sky-help-inline
|
|
1945
|
+
"rawContents": "<form novalidate [formGroup]=\"myForm\">\n <sky-input-box>\n <label skyId #textEditorLabel=\"skyId\" class=\"sky-control-label\">\n Text editor demo\n </label>\n <sky-help-inline\n class=\"sky-control-help\"\n (actionClick)=\"onActionClick()\"\n ></sky-help-inline>\n <sky-text-editor\n formControlName=\"myText\"\n [attr.aria-labelledby]=\"textEditorLabel.id\"\n class=\"sky-form-control\"\n >\n </sky-text-editor>\n </sky-input-box>\n</form>\n"
|
|
1946
1946
|
},
|
|
1947
1947
|
{
|
|
1948
1948
|
"fileName": "text-editor-demo.component.ts",
|
|
1949
1949
|
"filePath": "/projects/text-editor/documentation/code-examples/text-editor-inline-help/text-editor-demo.component.ts",
|
|
1950
|
-
"rawContents": "import { Component, OnInit } from '@angular/core';\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"
|
|
1950
|
+
"rawContents": "import { Component, OnInit } from '@angular/core';\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 public onActionClick(): void {\n alert('Help inline button clicked!');\n }\n}\n"
|
|
1951
1951
|
},
|
|
1952
1952
|
{
|
|
1953
1953
|
"fileName": "text-editor-demo.module.ts",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/text-editor",
|
|
3
|
-
"version": "6.25.
|
|
3
|
+
"version": "6.25.2",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -36,17 +36,17 @@
|
|
|
36
36
|
"@angular/core": "^13.3.2",
|
|
37
37
|
"@angular/forms": "^13.3.2",
|
|
38
38
|
"@angular/platform-browser": "^13.3.2",
|
|
39
|
-
"@skyux/colorpicker": "6.25.
|
|
40
|
-
"@skyux/core": "6.25.
|
|
41
|
-
"@skyux/forms": "6.25.
|
|
42
|
-
"@skyux/i18n": "6.25.
|
|
43
|
-
"@skyux/indicators": "6.25.
|
|
44
|
-
"@skyux/layout": "6.25.
|
|
45
|
-
"@skyux/modals": "6.25.
|
|
46
|
-
"@skyux/popovers": "6.25.
|
|
47
|
-
"@skyux/tabs": "6.25.
|
|
48
|
-
"@skyux/theme": "6.25.
|
|
49
|
-
"@skyux/validation": "6.25.
|
|
39
|
+
"@skyux/colorpicker": "6.25.2",
|
|
40
|
+
"@skyux/core": "6.25.2",
|
|
41
|
+
"@skyux/forms": "6.25.2",
|
|
42
|
+
"@skyux/i18n": "6.25.2",
|
|
43
|
+
"@skyux/indicators": "6.25.2",
|
|
44
|
+
"@skyux/layout": "6.25.2",
|
|
45
|
+
"@skyux/modals": "6.25.2",
|
|
46
|
+
"@skyux/popovers": "6.25.2",
|
|
47
|
+
"@skyux/tabs": "6.25.2",
|
|
48
|
+
"@skyux/theme": "6.25.2",
|
|
49
|
+
"@skyux/validation": "6.25.2"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
52
|
"dompurify": "2.3.6",
|