-
Notifications
You must be signed in to change notification settings - Fork 3.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
docs: documents can be converted to data #2734
Conversation
- 使用【|】中文竖线符,表示 Union Types - 例如:【有四种选择 `success`、`info`、`warning`、`error`】**应**在【类型列】表示【`success|info|warning|error`】 - 【参数列】 - 保持纯粹性 - 例如:【`[nzValidateStatus]`(Reactive Forms)】**应**在【说明列】统一描述 - 【类型列】 - **应**包含【``】代码包裹(保护 `TemplateRef<void>` 的有效性) - 【默认值列】 - 保持纯粹性 - 例如:【`info`,`banner` 模式下默认值为 `warning`】**应**把额外描述放置【说明列】 - 无默认值时**应**使用【-】替代,“无”应替代成【-】 - 站点样式:强制移除【类型列】所有 `code` 样式 ## 完整示例 | 参数 | 说明 | 类型 | 默认值 | | --- | --- | --- | --- | | `[nzBanner]` | 是否用作顶部公告 | `boolean` | `false` | | `[nzCloseText]` | 自定义关闭按钮 | `string|TemplateRef<void>` | - | | `[nzShowIcon]` | 是否显示辅助图标,`nzBanner` 模式下默认值为 `true` | `boolean` | `false` | | `[nzType]` | 指定警告提示的样式,`nzBanner` 模式下默认值为 `warning` | `success丨info丨warning丨error` | `info` | | `[nzValidateStatus]` | (Reactive Forms)会根据 FormControl 的状态自动生成校验状态 | `FormControl丨FormControlName` | `nz-form-control` 中包裹的第一个 `FormControl` | | `[nzValidateStatus]` | (Template-driven Forms)校验状态 | `success丨warning丨error丨validating` | - |
Deploy preview for ng-zorro-master ready! Built with commit a38c346 |
Codecov Report
@@ Coverage Diff @@
## master #2734 +/- ##
=======================================
Coverage 95.57% 95.57%
=======================================
Files 515 515
Lines 12191 12191
Branches 1711 1711
=======================================
Hits 11652 11652
Misses 173 173
Partials 366 366 Continue to review full report at Codecov.
|
强制移除【类型列】所有 code 样式,这句话怎么理解? |
对于字串符型Union Types的表示是否有必要增加单引号标识:
或
|
移除后应该是 |
我觉得二者都适应;但尽可能使用后者因为对于 Union Types 来说算是一体的。 |
我认为应该加单引号 |
英文描述的首字母是否需要大写?现在的文档没有统一 |
Description 部分的英文首字母这次先不调整好了,不影响解析
其他的都没有问题 @cipchk |
有些方法存在返回, 如果没有返回应当如何处理, |
建议使用 |
Hi, @cipchk plz rebase master |
done |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
@cipchk it would be better to add ci and contributor's doc to verify every commit to avoid break this. |
* docs: documents can be converted to data - 使用【|】中文竖线符,表示 Union Types - 例如:【有四种选择 `success`、`info`、`warning`、`error`】**应**在【类型列】表示【`success|info|warning|error`】 - 【参数列】 - 保持纯粹性 - 例如:【`[nzValidateStatus]`(Reactive Forms)】**应**在【说明列】统一描述 - 【类型列】 - **应**包含【``】代码包裹(保护 `TemplateRef<void>` 的有效性) - 【默认值列】 - 保持纯粹性 - 例如:【`info`,`banner` 模式下默认值为 `warning`】**应**把额外描述放置【说明列】 - 无默认值时**应**使用【-】替代,“无”应替代成【-】 - 站点样式:强制移除【类型列】所有 `code` 样式 ## 完整示例 | 参数 | 说明 | 类型 | 默认值 | | --- | --- | --- | --- | | `[nzBanner]` | 是否用作顶部公告 | `boolean` | `false` | | `[nzCloseText]` | 自定义关闭按钮 | `string|TemplateRef<void>` | - | | `[nzShowIcon]` | 是否显示辅助图标,`nzBanner` 模式下默认值为 `true` | `boolean` | `false` | | `[nzType]` | 指定警告提示的样式,`nzBanner` 模式下默认值为 `warning` | `success丨info丨warning丨error` | `info` | | `[nzValidateStatus]` | (Reactive Forms)会根据 FormControl 的状态自动生成校验状态 | `FormControl丨FormControlName` | `nz-form-control` 中包裹的第一个 `FormControl` | | `[nzValidateStatus]` | (Template-driven Forms)校验状态 | `success丨warning丨error丨validating` | - | * chore: remove code style in Type column * docs: fix missing & losing component name * docs: update all * chore: remove type and default column code style * chore: 移除中文竖线,全部使用英文全角坚线 * chore: 修正不同组件之间相互引用相同属性 * chore: fix losing nz-popover in english * docs: remove 'or'
* docs: documents can be converted to data - 使用【|】中文竖线符,表示 Union Types - 例如:【有四种选择 `success`、`info`、`warning`、`error`】**应**在【类型列】表示【`success|info|warning|error`】 - 【参数列】 - 保持纯粹性 - 例如:【`[nzValidateStatus]`(Reactive Forms)】**应**在【说明列】统一描述 - 【类型列】 - **应**包含【``】代码包裹(保护 `TemplateRef<void>` 的有效性) - 【默认值列】 - 保持纯粹性 - 例如:【`info`,`banner` 模式下默认值为 `warning`】**应**把额外描述放置【说明列】 - 无默认值时**应**使用【-】替代,“无”应替代成【-】 - 站点样式:强制移除【类型列】所有 `code` 样式 ## 完整示例 | 参数 | 说明 | 类型 | 默认值 | | --- | --- | --- | --- | | `[nzBanner]` | 是否用作顶部公告 | `boolean` | `false` | | `[nzCloseText]` | 自定义关闭按钮 | `string|TemplateRef<void>` | - | | `[nzShowIcon]` | 是否显示辅助图标,`nzBanner` 模式下默认值为 `true` | `boolean` | `false` | | `[nzType]` | 指定警告提示的样式,`nzBanner` 模式下默认值为 `warning` | `success丨info丨warning丨error` | `info` | | `[nzValidateStatus]` | (Reactive Forms)会根据 FormControl 的状态自动生成校验状态 | `FormControl丨FormControlName` | `nz-form-control` 中包裹的第一个 `FormControl` | | `[nzValidateStatus]` | (Template-driven Forms)校验状态 | `success丨warning丨error丨validating` | - | * chore: remove code style in Type column * docs: fix missing & losing component name * docs: update all * chore: remove type and default column code style * chore: 移除中文竖线,全部使用英文全角坚线 * chore: 修正不同组件之间相互引用相同属性 * chore: fix losing nz-popover in english * docs: remove 'or'
规则
success
、info
、warning
、error
】应在【类型列】表示【'success'|'info'|'warning'|'error'
】[nzValidateStatus]
(Reactive Forms)】应在【说明列】统一描述TemplateRef<void>
的有效性)info
,banner
模式下默认值为warning
】应把额外描述放置【说明列】code
样式完整示例
[nzBanner]
boolean
false
[nzCloseText]
string|TemplateRef<void>
[nzShowIcon]
nzBanner
模式下默认值为true
boolean
false
[nzType]
nzBanner
模式下默认值为warning
'success'丨'info'丨'warning'丨'error'
'info'
[nzValidateStatus]
FormControl丨FormControlName
nz-form-control
中包裹的第一个FormControl
[nzValidateStatus]
'success'丨'warning'丨'error'丨'validating'
PR Checklist
Please check if your PR fulfills the following requirements:
PR Type
What kind of change does this PR introduce?
What is the current behavior?
Issue Number: N/A
What is the new behavior?
Does this PR introduce a breaking change?
Other information