Skip to content

Commit 30788f7

Browse files
committed
chore(release): release 21.0.3
1 parent 63f74f9 commit 30788f7

File tree

12 files changed

+128
-11
lines changed

12 files changed

+128
-11
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## [21.0.3](https://github.com/NG-NEST/ng-nest/compare/21.0.2...21.0.3) (2025-12-16)
2+
3+
4+
### Features
5+
6+
* **module:steps:** add custom icon, label, description ([63f74f9](https://github.com/NG-NEST/ng-nest/commit/63f74f9558bb474601389892ceaf14edcc87d19f))
7+
8+
9+
110
## [21.0.2](https://github.com/NG-NEST/ng-nest/compare/21.0.1...21.0.2) (2025-12-04)
211

312

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ NG-NEST 是一个开源的 Web 应用程序框架,基于 Angular 和 Nest ,
2020

2121
## 当前版本
2222

23-
npm 21.0.2
23+
npm 21.0.3
2424

2525
## 支持 Angular 版本
2626

docs/ui/ng-nest/readme.en_US.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ NG-NEST is an open source Web application framework based on Angular and NEST, m
2424

2525
## Current version
2626

27-
npm 21.0.2
27+
npm 21.0.3
2828

2929
## Support Angular version
3030

docs/ui/ng-nest/readme.zh_CN.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ NG-NEST 是一个开源的 Web 应用程序框架,基于 Angular 和 Nest ,
2323

2424
## 当前版本
2525

26-
npm 21.0.2
26+
npm 21.0.3
2727

2828
## 支持 Angular 版本
2929

lib/ng-nest/ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ng-nest/ui",
3-
"version": "21.0.2",
3+
"version": "21.0.3",
44
"license": "MIT",
55
"homepage": "https://www.ngnest.com",
66
"author": "ng-nest",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ng-nest",
3-
"version": "21.0.2",
3+
"version": "21.0.3",
44
"scripts": {
55
"ng": "ng",
66
"start": "ng serve --port 4400 --host 0.0.0.0",

scripts/main/generate/docs/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export const genDir = resolve(__dirname, '../../../../src/main/docs');
2323
export const genMenusDir = resolve(__dirname, '../../../../src/app');
2424
export const genCoreDir = resolve(__dirname, '../../../../src/interfaces');
2525
export const docsPrefix = 'docs';
26-
export const version = '21.0.2';
26+
export const version = '21.0.3';
2727
export const languages = ['zh_CN', 'en_US'];
2828

2929
export class NcDocs {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
export const environment = {
22
layout: 'test',
3-
version: '21.0.2',
3+
version: '21.0.3',
44
defaultPage: 'color-picker',
55
static: 'https://ngnest.com/static'
66
};

src/environments/environment.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
export const environment = {
22
layout: 'index',
3-
version: '21.0.2',
3+
version: '21.0.3',
44
defaultPage: 'docs',
55
static: 'https://ngnest.com/static'
66
};

src/interfaces/en_US-docs.types.ts

Lines changed: 55 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37719,7 +37719,61 @@ export const en_US: {[key: string]: AppProp} = {
3771937719
"toType": "TemplateRef<any>",
3772037720
"inputType": "InputSignal<TemplateRef<any>>",
3772137721
"signal": "input",
37722-
"label": "Custom node",
37722+
"label": "Custom node (will be deprecated in version 22)",
37723+
"default": "",
37724+
"withConfig": false,
37725+
"description": "",
37726+
"example": [
37727+
{
37728+
"type": "text",
37729+
"content": ""
37730+
}
37731+
],
37732+
"transform": ""
37733+
},
37734+
{
37735+
"name": "customIconTpl",
37736+
"type": "TemplateRef<any>",
37737+
"toType": "TemplateRef<any>",
37738+
"inputType": "InputSignal<TemplateRef<any>>",
37739+
"signal": "input",
37740+
"label": "Custom node icon",
37741+
"default": "",
37742+
"withConfig": false,
37743+
"description": "",
37744+
"example": [
37745+
{
37746+
"type": "text",
37747+
"content": ""
37748+
}
37749+
],
37750+
"transform": ""
37751+
},
37752+
{
37753+
"name": "customLabelTpl",
37754+
"type": "TemplateRef<any>",
37755+
"toType": "TemplateRef<any>",
37756+
"inputType": "InputSignal<TemplateRef<any>>",
37757+
"signal": "input",
37758+
"label": "Custom node label",
37759+
"default": "",
37760+
"withConfig": false,
37761+
"description": "",
37762+
"example": [
37763+
{
37764+
"type": "text",
37765+
"content": ""
37766+
}
37767+
],
37768+
"transform": ""
37769+
},
37770+
{
37771+
"name": "customDescriptionTpl",
37772+
"type": "TemplateRef<any>",
37773+
"toType": "TemplateRef<any>",
37774+
"inputType": "InputSignal<TemplateRef<any>>",
37775+
"signal": "input",
37776+
"label": "Custom node description",
3772337777
"default": "",
3772437778
"withConfig": false,
3772537779
"description": "",

0 commit comments

Comments
 (0)