diff --git a/projects/portal/docs/processors/helpers/file-writer.js b/projects/portal/docs/processors/helpers/file-writer.js
index 0945c89bc..7366f6c87 100644
--- a/projects/portal/docs/processors/helpers/file-writer.js
+++ b/projects/portal/docs/processors/helpers/file-writer.js
@@ -119,12 +119,12 @@ import { Component } from '@angular/core';
export class Sample{{component}}ViewComponent {
hideSampleCodeTabs = true;
sampleCodeButtonLabel = 'Talk is cheap, show me the code!';
- sampleCodeButtonIcon = 'ph ph-plus';
+ sampleCodeButtonIcon = 'an an-plus';
toggleSampleCodeTabs() {
this.hideSampleCodeTabs = !this.hideSampleCodeTabs;
this.sampleCodeButtonLabel = this.hideSampleCodeTabs ? 'Talk is cheap, show me the code!' : 'Okay, hide the code';
- this.sampleCodeButtonIcon = this.hideSampleCodeTabs ? 'ph ph-plus' : 'ph ph-minus';
+ this.sampleCodeButtonIcon = this.hideSampleCodeTabs ? 'an an-plus' : 'an an-minus';
}
}
`;
@@ -206,7 +206,7 @@ export class Doc{{component}}Component implements OnInit, OnDestroy {
activeTab = 'doc';
actions: Array<{}> = [
- { label: 'Documentação', action: this.goBack.bind(this), icon: 'ph ph-file-text' },
+ { label: 'Documentação', action: this.goBack.bind(this), icon: 'an an-file-text' },
{ label: 'Colabore', action: this.improveDocs.bind(this) },
];
diff --git a/projects/portal/src/app/app.component.ts b/projects/portal/src/app/app.component.ts
index ed1377b42..c43ba0f40 100644
--- a/projects/portal/src/app/app.component.ts
+++ b/projects/portal/src/app/app.component.ts
@@ -91,11 +91,11 @@ export class AppComponent implements OnInit, OnDestroy {
get actions() {
return [
- { icon: 'ph ph-github-logo', link: 'https://github.com/po-ui', label: 'Github' },
- { icon: 'ph ph-x-logo', link: 'https://twitter.com/@pouidev', label: 'Twitter' },
- { icon: 'ph ph-instagram-logo', link: 'https://www.instagram.com/pouidev/', label: 'Instagram' },
+ { icon: 'an an-github-logo', link: 'https://github.com/po-ui', label: 'Github' },
+ { icon: 'an an-x-logo', link: 'https://twitter.com/@pouidev', label: 'Twitter' },
+ { icon: 'an an-instagram-logo', link: 'https://www.instagram.com/pouidev/', label: 'Instagram' },
{
- icon: `${this.themeStorage === 'po-theme-dark' ? 'ph ph-sun' : 'ph ph-moon'}`,
+ icon: `${this.themeStorage === 'po-theme-dark' ? 'an an-sun' : 'an an-moon'}`,
label: 'tema',
action: this.changeTheme.bind(this)
}
diff --git a/projects/portal/src/app/icons/icons.component.html b/projects/portal/src/app/icons/icons.component.html
index 3c264cdbc..3ace7b7f4 100644
--- a/projects/portal/src/app/icons/icons.component.html
+++ b/projects/portal/src/app/icons/icons.component.html
@@ -60,14 +60,14 @@
diff --git a/projects/portal/src/app/icons/icons.component.ts b/projects/portal/src/app/icons/icons.component.ts
index f5203447f..4714c584c 100644
--- a/projects/portal/src/app/icons/icons.component.ts
+++ b/projects/portal/src/app/icons/icons.component.ts
@@ -51,7 +51,7 @@ export class IconsComponent {
return {
value: _iconName,
tags: _iconTags,
- code: `ph${isFill ? '-fill' : ''} ph-${_iconName}`
+ code: `an${isFill ? '-fill' : ''} an-${_iconName}`
};
});
diff --git a/projects/templates/src/lib/components/po-page-change-password/po-page-change-password.component.spec.ts b/projects/templates/src/lib/components/po-page-change-password/po-page-change-password.component.spec.ts
index 5c225e5bf..3619f7282 100644
--- a/projects/templates/src/lib/components/po-page-change-password/po-page-change-password.component.spec.ts
+++ b/projects/templates/src/lib/components/po-page-change-password/po-page-change-password.component.spec.ts
@@ -659,8 +659,8 @@ describe('PoPageChangePasswordComponent:', () => {
component.requirements = requirements;
fixture.detectChanges();
- expect(nativeElement.querySelector('.ph-check.po-page-change-password-required-ok')).toBeTruthy();
- expect(nativeElement.querySelector('.ph-minus po-page-change-password-required-minus')).toBeFalsy();
+ expect(nativeElement.querySelector('.an-check.po-page-change-password-required-ok')).toBeTruthy();
+ expect(nativeElement.querySelector('.an-minus po-page-change-password-required-minus')).toBeFalsy();
});
it('should add a `po-icon-minus` for a requirement with false status', () => {
@@ -668,8 +668,8 @@ describe('PoPageChangePasswordComponent:', () => {
component.requirements = requirements;
fixture.detectChanges();
- expect(nativeElement.querySelector('.ph-minus.po-page-change-password-required-minus')).toBeTruthy();
- expect(nativeElement.querySelector('.ph-check.po-page-change-password-required-ok')).toBeFalsy();
+ expect(nativeElement.querySelector('.an-minus.po-page-change-password-required-minus')).toBeTruthy();
+ expect(nativeElement.querySelector('.an-check.po-page-change-password-required-ok')).toBeFalsy();
});
it('should add requirement text', () => {
diff --git a/projects/templates/src/lib/components/po-page-dynamic-search/samples/sample-po-page-dynamic-search-hiring-processes/sample-po-page-dynamic-search-hiring-processes.component.ts b/projects/templates/src/lib/components/po-page-dynamic-search/samples/sample-po-page-dynamic-search-hiring-processes/sample-po-page-dynamic-search-hiring-processes.component.ts
index cfafc4186..61a33e21c 100644
--- a/projects/templates/src/lib/components/po-page-dynamic-search/samples/sample-po-page-dynamic-search-hiring-processes/sample-po-page-dynamic-search-hiring-processes.component.ts
+++ b/projects/templates/src/lib/components/po-page-dynamic-search/samples/sample-po-page-dynamic-search-hiring-processes/sample-po-page-dynamic-search-hiring-processes.component.ts
@@ -34,25 +34,25 @@ export class SamplePoPageDynamicSearchHiringProcessesComponent implements OnInit
label: 'Hide Remove All Disclaimer',
action: this.onClickRemoveAllDisclaimer.bind(this),
visible: this.isVisibleRemoveAllDisclaimer.bind(this),
- icon: 'ph ph-eye-closed'
+ icon: 'an an-eye-closed'
},
{
label: 'Show Remove All Disclaimer',
action: this.onClickRemoveAllDisclaimer.bind(this),
visible: this.isHideRemoveAllDisclaimer.bind(this),
- icon: 'ph ph-eye-on'
+ icon: 'an an-eye-on'
},
{
label: 'Hide Close City Disclaimer',
action: this.onClickCloseCityDisclaimer.bind(this),
visible: this.isVisibleCloseCityDisclaimer.bind(this),
- icon: 'ph ph-eye-closed'
+ icon: 'an an-eye-closed'
},
{
label: 'Show Close City Disclaimer',
action: this.onClickCloseCityDisclaimer.bind(this),
visible: this.isHideCloseCityDisclaimer.bind(this),
- icon: 'ph ph-eye-on'
+ icon: 'an an-eye-on'
}
];
diff --git a/projects/templates/src/lib/components/po-page-dynamic-table/interfaces/po-page-dynamic-table-custom-action.interface.ts b/projects/templates/src/lib/components/po-page-dynamic-table/interfaces/po-page-dynamic-table-custom-action.interface.ts
index 4f685dcf6..ab295ca43 100644
--- a/projects/templates/src/lib/components/po-page-dynamic-table/interfaces/po-page-dynamic-table-custom-action.interface.ts
+++ b/projects/templates/src/lib/components/po-page-dynamic-table/interfaces/po-page-dynamic-table-custom-action.interface.ts
@@ -51,7 +51,7 @@ export interface PoPageDynamicTableCustomAction {
* É possível usar qualquer um dos ícones da [Biblioteca de ícones](https://po-ui.io/icons). conforme exemplo abaixo:
* ```
*
+ * [p-property]="[{ label: 'PHOSPHOR ICON', icon: 'an an-newspaper' }]">
*
* ```
*
diff --git a/projects/templates/src/lib/components/po-page-dynamic-table/interfaces/po-page-dynamic-table-custom-table-action.interface.ts b/projects/templates/src/lib/components/po-page-dynamic-table/interfaces/po-page-dynamic-table-custom-table-action.interface.ts
index f809b21a6..b8060d8a6 100644
--- a/projects/templates/src/lib/components/po-page-dynamic-table/interfaces/po-page-dynamic-table-custom-table-action.interface.ts
+++ b/projects/templates/src/lib/components/po-page-dynamic-table/interfaces/po-page-dynamic-table-custom-table-action.interface.ts
@@ -60,7 +60,7 @@ export interface PoPageDynamicTableCustomTableAction {
* É possível usar qualquer um dos ícones da [Biblioteca de ícones](https://po-ui.io/icons). conforme exemplo abaixo:
* ```
*
+ * [p-property]="[{ label: 'PHOSPHOR ICON', icon: 'an an-newspaper' }]">
*
* ```
*
diff --git a/projects/templates/src/lib/components/po-page-dynamic-table/po-page-dynamic-table.component.ts b/projects/templates/src/lib/components/po-page-dynamic-table/po-page-dynamic-table.component.ts
index 6c13e0d6d..190e4c2ae 100644
--- a/projects/templates/src/lib/components/po-page-dynamic-table/po-page-dynamic-table.component.ts
+++ b/projects/templates/src/lib/components/po-page-dynamic-table/po-page-dynamic-table.component.ts
@@ -727,7 +727,7 @@ export class PoPageDynamicTableComponent extends PoPageDynamicListBaseComponent
* {
* label: 'Update',
* action: this.updateTable.bind(this),
- * icon: 'ph-arrows-clockwise'
+ * icon: 'an-arrows-clockwise'
* }]
*
* updateTable() {
diff --git a/projects/templates/src/lib/components/po-page-dynamic-table/samples/sample-po-page-dynamic-table-hotels/sample-po-page-dynamic-table-hotels.component.ts b/projects/templates/src/lib/components/po-page-dynamic-table/samples/sample-po-page-dynamic-table-hotels/sample-po-page-dynamic-table-hotels.component.ts
index 055080434..7729c75f0 100644
--- a/projects/templates/src/lib/components/po-page-dynamic-table/samples/sample-po-page-dynamic-table-hotels/sample-po-page-dynamic-table-hotels.component.ts
+++ b/projects/templates/src/lib/components/po-page-dynamic-table/samples/sample-po-page-dynamic-table-hotels/sample-po-page-dynamic-table-hotels.component.ts
@@ -95,25 +95,25 @@ export class SamplePoPageDynamicTableHotelsComponent {
label: 'Hide Remove All Disclaimer',
action: this.onClickRemoveAllDisclaimer.bind(this),
visible: this.isVisibleRemoveAllDisclaimer.bind(this),
- icon: 'ph ph-eye-closed'
+ icon: 'an an-eye-closed'
},
{
label: 'Show Remove All Disclaimer',
action: this.onClickRemoveAllDisclaimer.bind(this),
visible: this.isHideRemoveAllDisclaimer.bind(this),
- icon: 'ph ph-eye'
+ icon: 'an an-eye'
},
{
label: 'Hide Close City Disclaimer',
action: this.onClickCloseCityDisclaimer.bind(this),
visible: this.isVisibleCloseCityDisclaimer.bind(this),
- icon: 'ph ph-eye-closed'
+ icon: 'an an-eye-closed'
},
{
label: 'Show Close City Disclaimer',
action: this.onClickCloseCityDisclaimer.bind(this),
visible: this.isHideCloseCityDisclaimer.bind(this),
- icon: 'ph ph-eye'
+ icon: 'an an-eye'
}
];
@@ -121,7 +121,7 @@ export class SamplePoPageDynamicTableHotelsComponent {
{
label: 'Details',
action: this.onClickHotelDetail.bind(this),
- icon: 'ph ph-user'
+ icon: 'an an-user'
}
];
diff --git a/projects/templates/src/lib/components/po-page-dynamic-table/samples/sample-po-page-dynamic-table-users/sample-po-page-dynamic-table-users.component.ts b/projects/templates/src/lib/components/po-page-dynamic-table/samples/sample-po-page-dynamic-table-users/sample-po-page-dynamic-table-users.component.ts
index 15e9e8d4f..644808e12 100644
--- a/projects/templates/src/lib/components/po-page-dynamic-table/samples/sample-po-page-dynamic-table-users/sample-po-page-dynamic-table-users.component.ts
+++ b/projects/templates/src/lib/components/po-page-dynamic-table/samples/sample-po-page-dynamic-table-users/sample-po-page-dynamic-table-users.component.ts
@@ -81,27 +81,27 @@ export class SamplePoPageDynamicTableUsersComponent implements OnInit {
label: 'Actions Right',
action: this.onClickActionsSide.bind(this),
visible: this.isVisibleActionsRight.bind(this),
- icon: 'ph ph-caret-right'
+ icon: 'an an-caret-right'
},
{
label: 'Actions Left',
action: this.onClickActionsSide.bind(this),
visible: this.isVisibleActionsLeft.bind(this),
- icon: 'ph ph-caret-left'
+ icon: 'an an-caret-left'
},
{
label: 'Fixed Filter',
action: this.onClickFixedFilter.bind(this),
visible: this.isVisibleFixedFilter.bind(this),
- icon: 'ph ph-lock'
+ icon: 'an an-lock'
},
{
label: 'Not Fixed Filter',
action: this.onClickFixedFilter.bind(this),
visible: this.isVisibleNotFixedFilter.bind(this),
- icon: 'ph ph-lock-open'
+ icon: 'an an-lock-open'
},
- { label: 'Print', action: this.printPage.bind(this), icon: 'ph ph-printer' }
+ { label: 'Print', action: this.printPage.bind(this), icon: 'an an-printer' }
];
tableCustomActions: Array
= [
@@ -109,13 +109,13 @@ export class SamplePoPageDynamicTableUsersComponent implements OnInit {
label: 'Details',
action: this.onClickUserDetail.bind(this),
disabled: this.isUserInactive.bind(this),
- icon: 'ph ph-user'
+ icon: 'an an-user'
},
{
label: 'Dependents',
action: this.onClickDependents.bind(this),
visible: this.hasDependents.bind(this),
- icon: 'ph ph-user'
+ icon: 'an an-user'
}
];
@@ -127,7 +127,7 @@ export class SamplePoPageDynamicTableUsersComponent implements OnInit {
{
label: 'Download .csv',
action: this.usersService.downloadCsv.bind(this.usersService, this.serviceApi),
- icon: 'ph ph-download-simple'
+ icon: 'an an-download-simple'
}
];
}
diff --git a/projects/ui/src/lib/components/po-badge/po-badge-base.component.ts b/projects/ui/src/lib/components/po-badge/po-badge-base.component.ts
index e420e1438..656d96898 100644
--- a/projects/ui/src/lib/components/po-badge/po-badge-base.component.ts
+++ b/projects/ui/src/lib/components/po-badge/po-badge-base.component.ts
@@ -90,7 +90,7 @@ export class PoBadgeBaseComponent {
* ```
* É possível usar qualquer um dos ícones da [Biblioteca de ícones](https://po-ui.io/icons). conforme exemplo abaixo:
* ```
- *
+ *
* ```
* Também é possível utilizar outras fontes de ícones, por exemplo a biblioteca *Font Awesome*, da seguinte forma:
* ```
diff --git a/projects/ui/src/lib/components/po-badge/samples/sample-po-badge-labs/sample-po-badge-labs.component.ts b/projects/ui/src/lib/components/po-badge/samples/sample-po-badge-labs/sample-po-badge-labs.component.ts
index 1401752d6..d71a88ac8 100644
--- a/projects/ui/src/lib/components/po-badge/samples/sample-po-badge-labs/sample-po-badge-labs.component.ts
+++ b/projects/ui/src/lib/components/po-badge/samples/sample-po-badge-labs/sample-po-badge-labs.component.ts
@@ -18,9 +18,9 @@ export class SamplePoBadgeLabsComponent implements OnInit {
propertiesOptions: Array = [{ value: 'showBorder', label: 'Show Border' }];
iconsOptions: Array = [
- { label: 'ph-check', value: 'ph ph-check' },
- { label: 'ph-check-circle', value: 'ph ph-check-circle' },
- { label: 'ph ph-check', value: 'ph ph-check' },
+ { label: 'an-check', value: 'an an-check' },
+ { label: 'an-check-circle', value: 'an an-check-circle' },
+ { label: 'an an-check', value: 'an an-check' },
{ label: 'fa-minus', value: 'fa fa-minus' },
{ label: 'true (Enabled when status is settled)', value: 'true', disabled: true },
{ label: 'None', value: 'false' }
diff --git a/projects/ui/src/lib/components/po-button-group/po-button-group-item.interface.ts b/projects/ui/src/lib/components/po-button-group/po-button-group-item.interface.ts
index bd80634bb..4f6f214cc 100644
--- a/projects/ui/src/lib/components/po-button-group/po-button-group-item.interface.ts
+++ b/projects/ui/src/lib/components/po-button-group/po-button-group-item.interface.ts
@@ -25,7 +25,7 @@ export interface PoButtonGroupItem {
* É possível usar qualquer um dos ícones da [Biblioteca de ícones](https://po-ui.io/icons). conforme exemplo abaixo:
* ```
* buttons: Array = [
- * { label: 'Button 1', action: this.action.bind(this), icon: 'ph ph-user' },
+ * { label: 'Button 1', action: this.action.bind(this), icon: 'an an-user' },
* ];
* ```
* Também é possível utilizar outras fontes de ícones, por exemplo a biblioteca *Font Awesome*, da seguinte forma:
diff --git a/projects/ui/src/lib/components/po-button-group/samples/sample-po-button-group-attendance/sample-po-button-group-attendance.component.ts b/projects/ui/src/lib/components/po-button-group/samples/sample-po-button-group-attendance/sample-po-button-group-attendance.component.ts
index c33d16abb..8bfcd2cc9 100644
--- a/projects/ui/src/lib/components/po-button-group/samples/sample-po-button-group-attendance/sample-po-button-group-attendance.component.ts
+++ b/projects/ui/src/lib/components/po-button-group/samples/sample-po-button-group-attendance/sample-po-button-group-attendance.component.ts
@@ -9,9 +9,9 @@ import { PoButtonGroupItem, PoNotificationService } from '@po-ui/ng-components';
})
export class SamplePoButtonGroupAttendanceComponent {
attendances: Array = [
- { label: 'Appointment', icon: 'ph ph-calendar-dots', action: this.getPassword.bind(this) },
- { label: 'Emergency', icon: 'ph ph-syringe', action: this.getPassword.bind(this) },
- { label: 'Exams', icon: 'ph ph-flask', action: this.getPassword.bind(this) }
+ { label: 'Appointment', icon: 'an an-calendar-dots', action: this.getPassword.bind(this) },
+ { label: 'Emergency', icon: 'an an-syringe', action: this.getPassword.bind(this) },
+ { label: 'Exams', icon: 'an an-flask', action: this.getPassword.bind(this) }
];
constructor(private poNotification: PoNotificationService) {}
diff --git a/projects/ui/src/lib/components/po-button-group/samples/sample-po-button-group-labs/sample-po-button-group-labs.component.ts b/projects/ui/src/lib/components/po-button-group/samples/sample-po-button-group-labs/sample-po-button-group-labs.component.ts
index 89572e9f4..6f2638c8b 100644
--- a/projects/ui/src/lib/components/po-button-group/samples/sample-po-button-group-labs/sample-po-button-group-labs.component.ts
+++ b/projects/ui/src/lib/components/po-button-group/samples/sample-po-button-group-labs/sample-po-button-group-labs.component.ts
@@ -19,8 +19,8 @@ export class SamplePoButtonGroupLabsComponent implements OnInit {
toggle: PoButtonGroupToggle;
iconsOptions: Array = [
- { label: 'ph ph-newspaper', value: 'ph ph-newspaper' },
- { label: 'ph ph-calendar-dots', value: 'ph ph-calendar-dots' },
+ { label: 'an an-newspaper', value: 'an an-newspaper' },
+ { label: 'an an-calendar-dots', value: 'an an-calendar-dots' },
{ label: 'fa fa-podcast', value: 'fa fa-podcast' },
{ label: 'fa fa-calculator', value: 'fa fa-calculator' }
];
diff --git a/projects/ui/src/lib/components/po-button-group/samples/sample-po-button-group-post/sample-po-button-group-post.component.ts b/projects/ui/src/lib/components/po-button-group/samples/sample-po-button-group-post/sample-po-button-group-post.component.ts
index 8e3aa718b..ab1d8bc2c 100644
--- a/projects/ui/src/lib/components/po-button-group/samples/sample-po-button-group-post/sample-po-button-group-post.component.ts
+++ b/projects/ui/src/lib/components/po-button-group/samples/sample-po-button-group-post/sample-po-button-group-post.component.ts
@@ -15,20 +15,20 @@ export class SamplePoButtonGroupPostComponent {
textArea: string = '"Luck is a thing that comes in many forms and who can recognize her?" - Ernest Hemingway';
fontStyle: Array = [
- { icon: 'ph ph-text-b', action: () => (this.setBold = !this.setBold), tooltip: 'Bold' },
- { icon: 'ph ph-text-italic', action: () => (this.setItalic = !this.setItalic), tooltip: 'Italic' },
- { icon: 'ph ph-text-underline', action: () => (this.setUnderline = !this.setUnderline), tooltip: 'Underline' }
+ { icon: 'an an-text-b', action: () => (this.setBold = !this.setBold), tooltip: 'Bold' },
+ { icon: 'an an-text-italic', action: () => (this.setItalic = !this.setItalic), tooltip: 'Italic' },
+ { icon: 'an an-text-underline', action: () => (this.setUnderline = !this.setUnderline), tooltip: 'Underline' }
];
textAlign: Array = [
{
- icon: 'ph ph-text-align-left',
+ icon: 'an an-text-align-left',
selected: true,
action: () => (this.setTextAlignment = 'left'),
tooltip: 'Left align'
},
- { icon: 'ph ph-text-align-center', action: () => (this.setTextAlignment = 'center'), tooltip: 'Center align' },
- { icon: 'ph ph-text-align-right', action: () => (this.setTextAlignment = 'right'), tooltip: 'Right align' },
- { icon: 'ph ph-text-align-justify', action: () => (this.setTextAlignment = 'justify'), tooltip: 'Justify' }
+ { icon: 'an an-text-align-center', action: () => (this.setTextAlignment = 'center'), tooltip: 'Center align' },
+ { icon: 'an an-text-align-right', action: () => (this.setTextAlignment = 'right'), tooltip: 'Right align' },
+ { icon: 'an an-text-align-justify', action: () => (this.setTextAlignment = 'justify'), tooltip: 'Justify' }
];
}
diff --git a/projects/ui/src/lib/components/po-button/po-button-base.component.ts b/projects/ui/src/lib/components/po-button/po-button-base.component.ts
index 2510e85e6..f5a1aaafb 100644
--- a/projects/ui/src/lib/components/po-button/po-button-base.component.ts
+++ b/projects/ui/src/lib/components/po-button/po-button-base.component.ts
@@ -89,7 +89,7 @@ export class PoButtonBaseComponent {
*
* É possível usar qualquer um dos ícones da [Biblioteca de ícones](https://po-ui.io/icons). conforme exemplo abaixo:
* ```
- *
+ *
* ```
* Também é possível utilizar outras fontes de ícones, por exemplo a biblioteca *Font Awesome*, da seguinte forma:
* ```
diff --git a/projects/ui/src/lib/components/po-button/samples/sample-po-button-labs/sample-po-button-labs.component.e2e-spec.ts b/projects/ui/src/lib/components/po-button/samples/sample-po-button-labs/sample-po-button-labs.component.e2e-spec.ts
index 3467923f2..6f3d8a613 100644
--- a/projects/ui/src/lib/components/po-button/samples/sample-po-button-labs/sample-po-button-labs.component.e2e-spec.ts
+++ b/projects/ui/src/lib/components/po-button/samples/sample-po-button-labs/sample-po-button-labs.component.e2e-spec.ts
@@ -19,10 +19,10 @@ describe('SamplePoButtonLabs E2E', () => {
expect(button.poModal.isPresent()).toBeFalsy();
});
- it('Check `po-button` show icon `ph ph-newspaper` after select icon `ph ph-newspaper`', () => {
+ it('Check `po-button` show icon `an an-newspaper` after select icon `an an-newspaper`', () => {
button.poRadioLogoPO.click();
- expect(button.poButtonIcon.getAttribute('class')).toContain('ph ph-newspaper');
+ expect(button.poButtonIcon.getAttribute('class')).toContain('an an-newspaper');
});
it('Check `po-button` show icon `po-icon-user` after select icon `po-icon-user`', () => {
diff --git a/projects/ui/src/lib/components/po-button/samples/sample-po-button-labs/sample-po-button-labs.component.po.ts b/projects/ui/src/lib/components/po-button/samples/sample-po-button-labs/sample-po-button-labs.component.po.ts
index 9a4507f5c..d46618791 100644
--- a/projects/ui/src/lib/components/po-button/samples/sample-po-button-labs/sample-po-button-labs.component.po.ts
+++ b/projects/ui/src/lib/components/po-button/samples/sample-po-button-labs/sample-po-button-labs.component.po.ts
@@ -28,15 +28,15 @@ export class SamplePoButtonLabsComponentPO {
}
get poRadioLogoPO() {
- return this.getPoButtonIcon('ph ph-newspaper');
+ return this.getPoButtonIcon('an an-newspaper');
}
get poRadioCalendar() {
- return this.getPoButtonIcon('ph ph-calendar-dots');
+ return this.getPoButtonIcon('an an-calendar-dots');
}
get poRadioUser() {
- return this.getPoButtonIcon('ph ph-user');
+ return this.getPoButtonIcon('an an-user');
}
get poRadioNone() {
return this.getPoButtonIcon('undefined');
diff --git a/projects/ui/src/lib/components/po-button/samples/sample-po-button-labs/sample-po-button-labs.component.ts b/projects/ui/src/lib/components/po-button/samples/sample-po-button-labs/sample-po-button-labs.component.ts
index 84c38cbde..f810f11a4 100644
--- a/projects/ui/src/lib/components/po-button/samples/sample-po-button-labs/sample-po-button-labs.component.ts
+++ b/projects/ui/src/lib/components/po-button/samples/sample-po-button-labs/sample-po-button-labs.component.ts
@@ -22,9 +22,9 @@ export class SamplePoButtonLabsComponent implements OnInit {
];
iconsOptions: Array = [
- { label: 'ph ph-newspaper', value: 'ph ph-newspaper' },
- { label: 'ph ph-calendar-dots', value: 'ph ph-calendar-dots' },
- { label: 'ph ph-user', value: 'ph ph-user' },
+ { label: 'an an-newspaper', value: 'an an-newspaper' },
+ { label: 'an an-calendar-dots', value: 'an an-calendar-dots' },
+ { label: 'an an-user', value: 'an an-user' },
{ label: 'fa fa-podcast', value: 'fa fa-podcast' }
];
diff --git a/projects/ui/src/lib/components/po-container/samples/sample-po-container-dashboard/sample-po-container-dashboard.component.ts b/projects/ui/src/lib/components/po-container/samples/sample-po-container-dashboard/sample-po-container-dashboard.component.ts
index 9e2811c48..974876f19 100644
--- a/projects/ui/src/lib/components/po-container/samples/sample-po-container-dashboard/sample-po-container-dashboard.component.ts
+++ b/projects/ui/src/lib/components/po-container/samples/sample-po-container-dashboard/sample-po-container-dashboard.component.ts
@@ -37,10 +37,10 @@ export class SamplePoContainerDashboardComponent implements AfterContentChecked,
items: Array