Skip to content

Commit 53e385f

Browse files
author
mohaseebtariq
committed
updated peer dependencies
1 parent d580ea8 commit 53e385f

File tree

3 files changed

+16
-9
lines changed

3 files changed

+16
-9
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"test:lib": "ng test angular-editor",
1414
"build:lib": "ng-packagr -p projects/angular-editor/ng-package.json",
1515
"build-prod:lib": "ng-packagr -p projects/angular-editor/ng-package.json -c projects/angular-editor/tsconfig.lib.prod.json",
16-
"publish:lib": "npm run copy:readme && npm run copy:changelog && npm run copy:license && npm publish ./dist/angular-editor --tag next",
16+
"publish:lib": "npm run copy:readme && npm run copy:changelog && npm run copy:license && npm publish ./dist/angular-editor --tag next --access public",
1717
"copy:readme": "cpx README.md dist/angular-editor",
1818
"copy:changelog": "cpx CHANGELOG.md dist/angular-editor",
1919
"copy:license": "cpx LICENSE dist/angular-editor",

projects/angular-editor/package.json

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,28 @@
11
{
2-
"name": "@kolkov/angular-editor",
3-
"version": "3.0.0-beta.0",
2+
"name": "@mhaseebtariq/angular-editor",
3+
"version": "1.0.6",
44
"description": "A simple native WYSIWYG editor for Angular 8+, 13+. Rich Text editor component for Angular.",
5-
"author": "Andrey Kolkov <a.kolkov@gmail.com>",
6-
"repository": "https://github.com/kolkov/angular-editor",
5+
"author": "Haseeb Tariq <mohaseebtariq@gmail.com>",
6+
"repository": "https://github.com/mohaseebtariq/angular-editor",
77
"license": "MIT",
88
"private": false,
99
"bugs": {
10-
"url": "https://github.com/kolkov/angular-editor/issues"
10+
"url": "https://github.com/mohaseebtariq/angular-editor/issues"
1111
},
1212
"peerDependencies": {
13-
"@angular/common": ">=13",
14-
"@angular/core": ">=13"
13+
"@angular/common": ">=15",
14+
"@angular/core": ">=15",
15+
"@fortawesome/angular-fontawesome": "^0.10.2",
16+
"@fortawesome/free-brands-svg-icons": "^6.6.0",
17+
"@fortawesome/free-solid-svg-icons": "^6.6.0",
18+
"@fortawesome/fontawesome-svg-core": "^6.6.0"
1519
},
1620
"dependencies": {
1721
"tslib": "^2.3.0"
1822
},
23+
"publishConfig": {
24+
"access": "public"
25+
},
1926
"keywords": [
2027
"angular",
2128
"editor",

projects/angular-editor/src/lib/angular-editor-toolbar.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
<button [id]="'justifyRight-'+id" type="button" title="Justify Right" class="angular-editor-button"
5656
(click)="triggerCommand('justifyRight')" [disabled]="htmlMode" [hidden]="isButtonHidden('justifyRight')"
5757
tabindex="-1">
58-
<i class='fa fa-align-right'></i>
58+
<fa-icon [icon]="faAlignRight"></fa-icon>
5959
</button>
6060
<button [id]="'justifyFull-'+id" type="button" title="Justify Full" class="angular-editor-button"
6161
(click)="triggerCommand('justifyFull')" [disabled]="htmlMode" [hidden]="isButtonHidden('justifyFull')"

0 commit comments

Comments
 (0)