Skip to content

Commit

Permalink
fix(text): cambio de libreria para editor html
Browse files Browse the repository at this point in the history
  • Loading branch information
ma7payne committed Nov 1, 2024
1 parent a7ff625 commit 683865a
Show file tree
Hide file tree
Showing 9 changed files with 150 additions and 1,897 deletions.
3 changes: 2 additions & 1 deletion angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@
],
"styles": [
"src/demo/styles.scss",
"src/demo/app/wizard/styles.scss"
"src/demo/app/wizard/styles.scss",
"node_modules/@fortawesome/fontawesome-free/css/all.css"
],
"scripts": [
"./node_modules/intro.js/intro.js"
Expand Down
84 changes: 24 additions & 60 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@
"dependencies": {
"@andes/icons": "^1.1.12",
"@angular/material": "^12.2.13",
"@fortawesome/fontawesome-free": "^5.15.4",
"@mdi/font": "^5.0.45",
"@types/estree": "^1.0.2",
"@types/intro.js": "^2.4.6",
"@types/jquery": "^3.3.38",
"@types/quill": "^1.3.10",
"@types/tether-shepherd": "^1.2.28",
"animate.css": "^3.7.0",
"awesome-phonenumber": "^1.2.0",
Expand All @@ -51,8 +51,8 @@
"moment": "^2.16.0",
"ng2-charts": "^2.4.2",
"ngx-infinite-scroll": "^8.0.1",
"ngx-simple-text-editor": "^1.4.0",
"node-waves": "^0.7.5",
"quill": "^1.3.6",
"rxjs": "^7.0.0",
"selectize": "0.12.4",
"sweetalert2": "^6.6.2",
Expand Down
6 changes: 3 additions & 3 deletions src/demo/app/text/text.html
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
<plex-title titulo="HTML Editor"></plex-title>
<plex-grid type="full">
<form>
<plex-text label="Escriba el informe" [(ngModel)]="richText.contenido" name="contenido1" [html]="true"
<plex-text label="Escriba el informe" [(ngModel)]="richText.contenido" name="contenido" [html]="true"
[readonly]="false" [height]="'100px'" [qlToolbar]="qlToolbar">
</plex-text>
</form>
Expand All @@ -76,7 +76,7 @@
<plex-title titulo="HTML Editor con height = 200"></plex-title>
<plex-grid type="full" size="md">
<form>
<plex-text label="Escriba el informe" [(ngModel)]="richText.contenido" name="contenido2" [html]="true"
<plex-text label="Escriba el informe" [(ngModel)]="richText.contenido" name="contenido" [html]="true"
[height]="'200px'" [readonly]="false">
</plex-text>
</form>
Expand All @@ -92,7 +92,7 @@
<plex-layout-sidebar type="invert">
<plex-title titulo="plex-text [height]='300px'"></plex-title>
<form>
<plex-text label="Escriba el informe" [(ngModel)]="richText.contenido" name="contenido2" [html]="true"
<plex-text label="Escriba el informe" [(ngModel)]="richText.contenido" name="contenido" [html]="true"
[height]="'300px'" [readonly]="false">
</plex-text>
</form>
Expand Down
Loading

0 comments on commit 683865a

Please sign in to comment.