Skip to content

Commit

Permalink
build: release v16.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jcorrea97 committed Dec 21, 2023
1 parent 809cee2 commit 42e0343
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 5 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,21 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

# [16.10.0](https://github.com/po-ui/po-angular/compare/v16.9.0...v16.10.0) (2023-12-21)


### Bug Fixes

* **select:** trata o placeholder do componente no browser Safari ([7fe25b5](https://github.com/po-ui/po-angular/commit/7fe25b590e538bdd8732cf2cc7030fec21b334ca))


### Features

* **job-scheduler:** cria evento de output de erro e sucesso ([809cee2](https://github.com/po-ui/po-angular/commit/809cee2c2f5e1c4df693a12b003407e696cccb34))
* **search:** implementa modo trigger no componente ([196ba3e](https://github.com/po-ui/po-angular/commit/196ba3ef6d47d72715b796d9dc3012afeb96dae7))



# [16.9.0](https://github.com/po-ui/po-angular/compare/v16.8.0...v16.9.0) (2023-12-11)


Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "po-ui-sources",
"version": "16.9.0",
"version": "16.10.0",
"description": "PO UI",
"homepage": "https://po-ui.io",
"license": "MIT",
Expand Down Expand Up @@ -74,7 +74,7 @@
"@angular/router": "~16.2.0",
"@capacitor/core": "4.6.3",
"@capacitor/network": "^4.1.0",
"@po-ui/style": "16.9.0",
"@po-ui/style": "16.10.0",
"capitalize": "^2.0.3",
"colors": "1.4.0",
"core-js": "3.13.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ export class ThemeBuilderComponent implements AfterViewInit, OnInit {
};

private readonly formPropertyS = {
colorAction: '--color-secondary'
colorAction: '--color-action-default'
};

private readonly formPropertyT = {
Expand Down Expand Up @@ -835,7 +835,7 @@ export class ThemeBuilderComponent implements AfterViewInit, OnInit {
this.brandFormS.reset({
colorAction: ['#753399']
});
document.getElementById('myPortal').style.setProperty('--color-secondary', null);
document.getElementById('myPortal').style.setProperty('--color-action-default', null);

this.brandFormT.reset({
colorAction: ['#ffd464']
Expand Down Expand Up @@ -1586,7 +1586,7 @@ export class ThemeBuilderComponent implements AfterViewInit, OnInit {
if (changes[fieldName]) {
document.getElementById('myPortal').style.setProperty(this.formPropertyS[fieldName], value);
const colorBack = getComputedStyle(document.querySelector('po-page-default')).getPropertyValue(
'--color-secondary'
'--color-action-default'
);
if (!this.changedColorButton) {
this.ratioButton = this.setRatioComponent(this.changedColorButton, colorBack, '#ffffff');
Expand Down

0 comments on commit 42e0343

Please sign in to comment.