-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(module:date-picker): add nzShowWeekNumber property (#7621)
- Loading branch information
Showing
11 changed files
with
85 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
--- | ||
order: 16 | ||
title: | ||
zh-CN: 显示周数 | ||
en-US: Week Number | ||
--- | ||
|
||
## zh-CN | ||
|
||
使用 `nzShowWeekNumber` 显示周数 | ||
|
||
## en-US | ||
|
||
Display week numbers with `nzShowWeekNumber`. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
import { Component } from '@angular/core'; | ||
|
||
@Component({ | ||
selector: 'nz-demo-date-picker-week-number', | ||
template: ` | ||
<nz-radio-group [(ngModel)]="showWeekNumber"> | ||
<label nz-radio-button [nzValue]="true">true</label> | ||
<label nz-radio-button [nzValue]="false">false</label> | ||
</nz-radio-group> | ||
<br /> | ||
<br /> | ||
<nz-date-picker [nzShowWeekNumber]="showWeekNumber"></nz-date-picker> | ||
<br /> | ||
<nz-range-picker [nzShowWeekNumber]="showWeekNumber"></nz-range-picker> | ||
`, | ||
styles: [ | ||
` | ||
nz-date-picker, | ||
nz-range-picker { | ||
margin: 0 8px 12px 0; | ||
} | ||
` | ||
] | ||
}) | ||
export class NzDemoDatePickerWeekNumberComponent { | ||
showWeekNumber: boolean = false; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters