Skip to content

Commit d3bc0ee

Browse files
authored
chore(release): release 20.1.1 (#9306)
1 parent 9a37ef8 commit d3bc0ee

File tree

7 files changed

+36
-6
lines changed

7 files changed

+36
-6
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## [20.1.1](https://github.com/NG-ZORRO/ng-zorro-antd/compare/20.1.0...20.1.1) (2025-08-05)
2+
3+
### Bug Fixes
4+
5+
* **badge:** export `NzBadgeStatusType` type ([#9298](https://github.com/NG-ZORRO/ng-zorro-antd/issues/9298)) ([91b1ad7](https://github.com/NG-ZORRO/ng-zorro-antd/commit/91b1ad7af23eda253c21530e2a01a5ac9f7c62a8))
6+
* **layout:** fix showcases ([#9303](https://github.com/NG-ZORRO/ng-zorro-antd/issues/9303)) ([9a37ef8](https://github.com/NG-ZORRO/ng-zorro-antd/commit/9a37ef8325522ee200462b75e13a72f403ec4bef))
7+
8+
19
## [20.1.0](https://github.com/NG-ZORRO/ng-zorro-antd/compare/20.0.0...20.1.0) (2025-07-21)
210

311
### Features

components/input-number/input-number.component.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import { provideNzIconsTesting } from 'ng-zorro-antd/icon/testing';
1515
import { NzInputNumberComponent } from './input-number.component';
1616
import { NzInputNumberModule } from './input-number.module';
1717

18-
describe('Input number', () => {
18+
describe('input-number', () => {
1919
let component: InputNumberTestComponent;
2020
let fixture: ComponentFixture<InputNumberTestComponent>;
2121
let hostElement: HTMLElement;
@@ -499,7 +499,7 @@ describe('Input number', () => {
499499
}
500500
});
501501

502-
describe('Input number with affixes or addons', () => {
502+
describe('input-number with affixes or addons', () => {
503503
let component: InputNumberWithAffixesAndAddonsTestComponent;
504504
let fixture: ComponentFixture<InputNumberWithAffixesAndAddonsTestComponent>;
505505

components/input-number/input-number.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ export class NzInputNumberComponent implements OnInit, ControlValueAccessor {
220220
private directionality = inject(Directionality);
221221
private nzFormStatusService = inject(NzFormStatusService, { optional: true });
222222
private autoStepTimer: ReturnType<typeof setTimeout> | null = null;
223-
private defaultFormater = (value: number): string => {
223+
private defaultFormatter = (value: number): string => {
224224
const precision = this.nzPrecision();
225225
if (isNotNil(precision)) {
226226
return value.toFixed(precision);
@@ -404,7 +404,7 @@ export class NzInputNumberComponent implements OnInit, ControlValueAccessor {
404404
}
405405

406406
private setValue(value: number | null): void {
407-
const formatter = this.nzFormatter() ?? this.defaultFormater;
407+
const formatter = this.nzFormatter() ?? this.defaultFormatter;
408408
const precision = this.nzPrecision();
409409

410410
if (isNotNil(precision)) {

components/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ng-zorro-antd",
3-
"version": "20.1.0",
3+
"version": "20.1.1",
44
"license": "MIT",
55
"description": "An enterprise-class UI components based on Ant Design and Angular",
66
"schematics": "./schematics/collection.json",

components/version/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55

66
import { Version } from '@angular/core';
77

8-
export const VERSION = new Version('20.1.0');
8+
export const VERSION = new Version('20.1.1');

docs/changelog.en-US.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,17 @@ timeline: true
1313
* Major version release is not included in this schedule for breaking change and new features.
1414

1515
---
16+
## 20.1.1
17+
18+
`2025-08-05`
19+
20+
### Bug Fixes
21+
22+
* **badge:** export `NzBadgeStatusType` type ([#9298](https://github.com/NG-ZORRO/ng-zorro-antd/issues/9298)) ([91b1ad7](https://github.com/NG-ZORRO/ng-zorro-antd/commit/91b1ad7af23eda253c21530e2a01a5ac9f7c62a8))
23+
* **layout:** fix showcases ([#9303](https://github.com/NG-ZORRO/ng-zorro-antd/issues/9303)) ([9a37ef8](https://github.com/NG-ZORRO/ng-zorro-antd/commit/9a37ef8325522ee200462b75e13a72f403ec4bef))
24+
25+
26+
1627
## 20.1.0
1728

1829
`2025-07-21`

docs/changelog.zh-CN.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,17 @@ timeline: true
1313
* 主版本号:含有破坏性更新和新特性,不在发布周期内。
1414

1515
---
16+
## 20.1.1
17+
18+
`2025-08-05`
19+
20+
### Bug Fixes
21+
22+
* **badge:** 导出 `NzBadgeStatusType` 类型 ([#9298](https://github.com/NG-ZORRO/ng-zorro-antd/issues/9298)) ([91b1ad7](https://github.com/NG-ZORRO/ng-zorro-antd/commit/91b1ad7af23eda253c21530e2a01a5ac9f7c62a8))
23+
* **layout:** 修复代码示例问题 ([#9303](https://github.com/NG-ZORRO/ng-zorro-antd/issues/9303)) ([9a37ef8](https://github.com/NG-ZORRO/ng-zorro-antd/commit/9a37ef8325522ee200462b75e13a72f403ec4bef))
24+
25+
26+
1627
## 20.1.0
1728

1829
`2025-07-21`

0 commit comments

Comments
 (0)