Skip to content

Commit 42e0343

Browse files
committed
build: release v16.10.0
1 parent 809cee2 commit 42e0343

File tree

3 files changed

+20
-5
lines changed

3 files changed

+20
-5
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,21 @@
22

33
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.
44

5+
# [16.10.0](https://github.com/po-ui/po-angular/compare/v16.9.0...v16.10.0) (2023-12-21)
6+
7+
8+
### Bug Fixes
9+
10+
* **select:** trata o placeholder do componente no browser Safari ([7fe25b5](https://github.com/po-ui/po-angular/commit/7fe25b590e538bdd8732cf2cc7030fec21b334ca))
11+
12+
13+
### Features
14+
15+
* **job-scheduler:** cria evento de output de erro e sucesso ([809cee2](https://github.com/po-ui/po-angular/commit/809cee2c2f5e1c4df693a12b003407e696cccb34))
16+
* **search:** implementa modo trigger no componente ([196ba3e](https://github.com/po-ui/po-angular/commit/196ba3ef6d47d72715b796d9dc3012afeb96dae7))
17+
18+
19+
520
# [16.9.0](https://github.com/po-ui/po-angular/compare/v16.8.0...v16.9.0) (2023-12-11)
621

722

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "po-ui-sources",
3-
"version": "16.9.0",
3+
"version": "16.10.0",
44
"description": "PO UI",
55
"homepage": "https://po-ui.io",
66
"license": "MIT",
@@ -74,7 +74,7 @@
7474
"@angular/router": "~16.2.0",
7575
"@capacitor/core": "4.6.3",
7676
"@capacitor/network": "^4.1.0",
77-
"@po-ui/style": "16.9.0",
77+
"@po-ui/style": "16.10.0",
7878
"capitalize": "^2.0.3",
7979
"colors": "1.4.0",
8080
"core-js": "3.13.0",

projects/portal/src/app/theme-builder/theme-builder.component.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ export class ThemeBuilderComponent implements AfterViewInit, OnInit {
316316
};
317317

318318
private readonly formPropertyS = {
319-
colorAction: '--color-secondary'
319+
colorAction: '--color-action-default'
320320
};
321321

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

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

0 commit comments

Comments
 (0)