Skip to content

Commit

Permalink
docs: update (#1236)
Browse files Browse the repository at this point in the history
  • Loading branch information
cipchk authored Apr 23, 2021
1 parent 9b9f3c8 commit d362f98
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/abc/date-picker/index.en-US.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ type: Form
title: range-picker
subtitle: Data Range
cols: 1
module: import { DataRangeModule } from '@delon/abc/date-picker';
module: import { DatePickerModule } from '@delon/abc/date-picker';
---

Based on the `nz-range-picker` further optimization, better service to start and end dates.
Expand Down
2 changes: 1 addition & 1 deletion packages/abc/date-picker/index.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ type: Form
title: range-picker
subtitle: 日期范围
cols: 1
module: import { DateRangeModule } from '@delon/abc/date-picker';
module: import { DatePickerModule } from '@delon/abc/date-picker';
---

基于 `nz-range-picker` 进一步优化,更好的服务于开始与结束日期。
Expand Down
2 changes: 2 additions & 0 deletions packages/form/docs/qa.en-US.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,4 +92,6 @@ You can get a specific attribute of Schema by calling `getProperty` function, th
const statusProperty = this.sf.getProperty('/status')!;
statusProperty.schema.enum = ['1', '2', '3'];
statusProperty.widget.reset('2');
// Or manually trigger `detectChanges`
// statusProperty.widget.detectChanges();
```
2 changes: 2 additions & 0 deletions packages/form/docs/qa.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,4 +92,6 @@ Schema 的 `default` 用于设置初始化,一般情况下当修改表单时
const statusProperty = this.sf.getProperty('/status')!;
statusProperty.schema.enum = ['1', '2', '3'];
statusProperty.widget.reset('2');
// 或手动触发 `detectChanges`
// statusProperty.widget.detectChanges();
```

0 comments on commit d362f98

Please sign in to comment.