Skip to content

Commit

Permalink
chore(release): actualiza version a 8.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
ma7payne committed Nov 29, 2024
1 parent f1ccb33 commit bc1afc5
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 37 deletions.
3 changes: 1 addition & 2 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,7 @@
],
"styles": [
"src/demo/styles.scss",
"src/demo/app/wizard/styles.scss",
"node_modules/@fortawesome/fontawesome-free/css/all.css"
"src/demo/app/wizard/styles.scss"
],
"scripts": [
"./node_modules/intro.js/intro.js"
Expand Down
43 changes: 18 additions & 25 deletions package-lock.json

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

7 changes: 3 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@andes/plex",
"version": "8.0.6",
"version": "8.0.7",
"repository": {
"type": "git",
"url": "git+https://github.com/andes/plex.git"
Expand All @@ -16,7 +16,7 @@
"lint": "ng lint",
"e2e": "ng e2e",
"serve": "ng serve --progress=false",
"prepublishOnly": "rm -rf dist && tsc -p ./ --outDir dist/",
"prepublishOnly": "tsc -p ./ --outDir dist/",
"test:ci": "ng test --watch=false --progress=false --browsers=ChromeHeadlessCI",
"cypress": "wait-on http://localhost:4200 && cypress run",
"test:cypress": "run-p --race serve cypress",
Expand All @@ -30,9 +30,8 @@
},
"main": "./dist/index.js",
"dependencies": {
"@andes/icons": "^1.1.12",
"@andes/icons": "^1.1.28",
"@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",
Expand Down
12 changes: 6 additions & 6 deletions src/lib/text/text.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,13 @@ export class PlexTextComponent implements OnInit, AfterViewInit, ControlValueAcc

config: EditorConfig = {
buttons: [
{ ...BOLD_BUTTON, title: 'Negrita' },
{ ...ITALIC_BUTTON, title: 'Itálica' },
{ ...BOLD_BUTTON, title: 'Negrita', icon: 'adi adi-Bold', },
{ ...ITALIC_BUTTON, title: 'Itálica', icon:'adi adi-Italic' },
{ ...FONT_SIZE_SELECT, title: 'Tamaño' },
{ ...JUSTIFY_LEFT_BUTTON, title: 'Alinear a Izquierda' },
{ ...JUSTIFY_CENTER_BUTTON, title: 'Alinear a Derecha' },
{ ...JUSTIFY_RIGHT_BUTTON, title: 'Centrar' },
{ ...UNDERLINE_BUTTON, title: 'Subrayar' }]
{ ...JUSTIFY_LEFT_BUTTON, title: 'Alinear a Izquierda', icon: 'adi adi-Bandera-izquierda' },
{ ...JUSTIFY_CENTER_BUTTON, title: 'Alinear a Derecha', icon: 'adi adi-Bandera-derecha' },
{ ...JUSTIFY_RIGHT_BUTTON, title: 'Centrar', icon: 'adi adi-Bandera-centro' },
{ ...UNDERLINE_BUTTON, title: 'Subrayar', icon: 'adi adi-Underline' }]
};

// Public
Expand Down

0 comments on commit bc1afc5

Please sign in to comment.