Skip to content

Commit 2890698

Browse files
AndyKIronGitHub Action
andauthored
Release / 8.x.x (#365)
* ci(8.x.x): init after merge * fix(dg-10041): fix input v1 component for error shown * chore(release): 8.5.1-rc.0 * chore(release): 8.5.1 --------- Co-authored-by: GitHub Action <github-action@users.noreply.github.com>
1 parent 53f6bb2 commit 2890698

5 files changed

Lines changed: 18 additions & 4 deletions

File tree

CHANGELOG.md

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

33
All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.
44

5+
### [8.5.1](https://github.com/ironSource/fusion-ui/compare/v8.5.1-rc.0...v8.5.1) (2025-09-04)
6+
7+
### [8.5.1-rc.0](https://github.com/ironSource/fusion-ui/compare/v8.5.0...v8.5.1-rc.0) (2025-09-04)
8+
9+
10+
### Bug Fixes
11+
12+
* **dg-10041:** fix input v1 component for error shown ([7a5d4be](https://github.com/ironSource/fusion-ui/commit/7a5d4be361e5966ec9eb3ce1a4a4ecbe4eda1631))
13+
14+
15+
### CI
16+
17+
* **8.x.x:** init after merge ([04d63a6](https://github.com/ironSource/fusion-ui/commit/04d63a648a6befe17a0f6816f4344a6613d7e489))
18+
519
## [8.5.0](https://github.com/ironSource/fusion-ui/compare/v8.5.0-rc.0...v8.5.0) (2025-01-20)
620

721
## [8.5.0-rc.0](https://github.com/ironSource/fusion-ui/compare/v8.4.2...v8.5.0-rc.0) (2025-01-12)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ Fusion-UI also comes with built-in accessibility features, ensuring that your ap
1212

1313
Whether you're building a simple website or a complex web application, Fusion-UI is the perfect choice for your UI needs. Get started today and experience the power and simplicity of Fusion-UI!
1414

15-
**FusionUI installation:**
15+
**FusionUI installation:**
1616

1717
```npm install --save @ironsource/fusion-ui```

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fusion-ui",
3-
"version": "8.5.0",
3+
"version": "8.5.1",
44
"description": "UI library created by ironSource",
55
"license": "MIT",
66
"repository": {

projects/fusion-ui/components/input/v1/input.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@
105105
</div>
106106

107107
<div class="fu-error-msg"
108-
*ngIf="config?.error !== true"
108+
*ngIf="config?.error && config?.error !== true"
109109
[hidden]="config?.errorType && showErrorIcon()"
110110
[class.focused]="focused"
111111
[innerHTML]="config.error">

projects/fusion-ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ironsource/fusion-ui",
3-
"version": "8.5.0",
3+
"version": "8.5.1",
44
"dependencies": {
55
"chart.js": "4.4.2",
66
"@floating-ui/dom": "^1.0.9",

0 commit comments

Comments
 (0)