├── .nvmrc ├── scripts ├── gulp │ └── tasks │ │ └── release.ts ├── site │ ├── _site │ │ ├── iframe │ │ │ ├── app │ │ │ │ ├── app.component.html │ │ │ │ └── app.component.ts │ │ │ ├── environments │ │ │ │ └── environment.prod.ts │ │ │ └── tsconfig.app.json │ │ └── doc │ │ │ ├── app │ │ │ ├── share │ │ │ │ ├── codebox │ │ │ │ │ └── index.ts │ │ │ │ ├── github-btn │ │ │ │ │ └── index.ts │ │ │ │ └── highlight │ │ │ │ │ └── index.ts │ │ │ ├── favicon.ico │ │ │ └── online-ide │ │ │ │ └── files │ │ │ │ ├── environment.ts │ │ │ │ └── polyfill.ts │ │ │ ├── style │ │ │ ├── home.less │ │ │ └── rtl.less │ │ │ ├── zone-flags.ts │ │ │ ├── google854eb8b183564acb.html │ │ │ ├── favicon.ico │ │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.pre-prod.ts │ │ │ ├── robots.txt │ │ │ ├── assets │ │ │ ├── icons │ │ │ │ ├── icon-72.png │ │ │ │ ├── icon-96.png │ │ │ │ ├── icon-128.png │ │ │ │ ├── icon-144.png │ │ │ │ ├── icon-152.png │ │ │ │ ├── apple-icon-120.png │ │ │ │ ├── apple-icon-152.png │ │ │ │ ├── apple-icon-167.png │ │ │ │ ├── apple-icon-180.png │ │ │ │ ├── manifest-icon-192.png │ │ │ │ └── manifest-icon-512.png │ │ │ ├── fonts │ │ │ │ ├── iconfont.eot │ │ │ │ ├── iconfont.ttf │ │ │ │ ├── iconfont.woff │ │ │ │ ├── Lato │ │ │ │ │ ├── Lato-Black.ttf │ │ │ │ │ ├── Lato-Light.ttf │ │ │ │ │ ├── Lato-Black.woff │ │ │ │ │ ├── Lato-Black.woff2 │ │ │ │ │ ├── Lato-Light.woff │ │ │ │ │ ├── Lato-Light.woff2 │ │ │ │ │ ├── Lato-Regular.eot │ │ │ │ │ ├── Lato-Regular.ttf │ │ │ │ │ ├── Lato-Regular.woff │ │ │ │ │ └── Lato-Regular.woff2 │ │ │ │ └── Raleway │ │ │ │ │ ├── Raleway.eot │ │ │ │ │ ├── Raleway.ttf │ │ │ │ │ ├── Raleway.woff │ │ │ │ │ ├── Raleway.woff2 │ │ │ │ │ ├── Raleway-Bold.ttf │ │ │ │ │ ├── Raleway-Thin.ttf │ │ │ │ │ ├── Raleway-Black.ttf │ │ │ │ │ ├── Raleway-Black.woff │ │ │ │ │ ├── Raleway-Italic.ttf │ │ │ │ │ ├── Raleway-Light.ttf │ │ │ │ │ ├── Raleway-Light.woff │ │ │ │ │ ├── Raleway-Medium.ttf │ │ │ │ │ ├── Raleway-Black.woff2 │ │ │ │ │ ├── Raleway-ExtraBold.ttf │ │ │ │ │ ├── Raleway-Light.woff2 │ │ │ │ │ ├── Raleway-Regular.ttf │ │ │ │ │ ├── Raleway-SemiBold.ttf │ │ │ │ │ ├── Raleway-SemiBold.woff │ │ │ │ │ ├── Raleway-BlackItalic.ttf │ │ │ │ │ ├── Raleway-BoldItalic.ttf │ │ │ │ │ ├── Raleway-ExtraLight.ttf │ │ │ │ │ ├── Raleway-LightItalic.ttf │ │ │ │ │ ├── Raleway-SemiBold.woff2 │ │ │ │ │ ├── Raleway-ThinItalic.ttf │ │ │ │ │ ├── Raleway-MediumItalic.ttf │ │ │ │ │ ├── Raleway-SemiBoldItalic.ttf │ │ │ │ │ ├── Raleway-ExtraBoldItalic.ttf │ │ │ │ │ └── Raleway-ExtraLightItalic.ttf │ │ │ └── img │ │ │ │ └── site-preview.png │ │ │ ├── tsconfig.es5.json │ │ │ ├── typings.d.ts │ │ │ └── tsconfig.app.json │ ├── utils │ │ ├── name-without-suffix.js │ │ ├── angular-nonbindable.js │ │ ├── capitalize-first-letter.js │ │ └── camelcase.js │ └── template │ │ ├── example-union.template.html │ │ ├── app.routing.module.template.ts │ │ └── example-split.template.html ├── release │ └── tsconfig.json ├── schematics │ └── template │ │ └── schema.ts.template └── release-helper.sh ├── .npmrc ├── components ├── avatar │ ├── style │ │ └── entry.less │ ├── package.json │ ├── demo │ │ ├── group.md │ │ ├── badge.md │ │ └── basic.md │ └── index.ts ├── button │ ├── style │ │ └── entry.less │ ├── package.json │ ├── index.ts │ └── demo │ │ └── danger.md ├── divider │ ├── style │ │ └── entry.less │ ├── package.json │ ├── demo │ │ ├── module │ │ ├── orientation.md │ │ └── vertical.md │ └── index.ts ├── drawer │ ├── style │ │ ├── entry.less │ │ ├── customize.less │ │ └── index.less │ ├── package.json │ ├── demo │ │ ├── basic-right.md │ │ └── placement.md │ └── index.ts ├── graph │ ├── style │ │ └── entry.less │ ├── demo │ │ └── customized.md │ ├── package.json │ └── index.ts ├── grid │ ├── style │ │ └── entry.less │ ├── package.json │ ├── demo │ │ ├── flex-align.md │ │ ├── flex-order.md │ │ └── playground.md │ └── index.ts ├── icon │ ├── style │ │ ├── entry.less │ │ └── index.less │ ├── testing │ │ ├── package.json │ │ └── index.ts │ ├── package.json │ ├── index.ts │ └── page │ │ └── zh-CN.txt ├── message │ ├── style │ │ └── entry.less │ ├── package.json │ ├── demo │ │ ├── info.md │ │ └── other.md │ └── index.ts ├── steps │ ├── style │ │ └── entry.less │ ├── package.json │ ├── demo │ │ ├── simple.md │ │ ├── nav.md │ │ ├── progress-dot.md │ │ └── vertical.md │ └── index.ts ├── tag │ ├── style │ │ └── entry.less │ ├── package.json │ ├── demo │ │ ├── icon.md │ │ └── hot-tags.md │ └── index.ts ├── time-picker │ ├── time-value-accessor.directive.spec.ts │ ├── style │ │ ├── entry.less │ │ └── index.less │ ├── package.json │ ├── demo │ │ ├── value.md │ │ ├── disabled.md │ │ └── module │ └── index.ts ├── back-top │ ├── style │ │ └── entry.less │ ├── package.json │ ├── demo │ │ ├── module │ │ ├── basic.md │ │ └── target.md │ └── index.ts ├── input-number │ ├── style │ │ └── entry.less │ ├── package.json │ ├── demo │ │ ├── basic.md │ │ ├── precision.md │ │ └── module │ └── index.ts ├── notification │ ├── style │ │ ├── entry.less │ │ └── customize.less │ ├── package.json │ ├── demo │ │ ├── custom-icon.md │ │ └── basic.md │ └── index.ts ├── progress │ ├── style │ │ └── entry.less │ ├── package.json │ ├── demo │ │ ├── line.md │ │ ├── circle.md │ │ ├── dynamic.md │ │ ├── segment.md │ │ ├── step.md │ │ ├── line-mini.md │ │ └── circle-mini.md │ └── index.ts ├── skeleton │ ├── style │ │ └── entry.less │ ├── package.json │ ├── demo │ │ ├── basic.md │ │ ├── active.md │ │ ├── list.md │ │ ├── children.md │ │ ├── complex.md │ │ └── element.md │ └── index.ts ├── statistic │ ├── style │ │ └── entry.less │ ├── package.json │ ├── demo │ │ ├── basic.md │ │ ├── countdown.md │ │ ├── card.md │ │ └── unit.md │ └── index.ts ├── style │ ├── themes │ │ └── index.less │ ├── entry.less │ ├── dark.less │ ├── index.less │ ├── aliyun.less │ ├── compact.less │ ├── core │ │ └── index.less │ └── mixins │ │ ├── box.less │ │ └── size.less ├── timeline │ ├── style │ │ ├── entry.less │ │ └── index.tsx │ ├── package.json │ ├── demo │ │ ├── basic.md │ │ ├── alternate.md │ │ ├── right.md │ │ ├── custom.md │ │ └── position.md │ └── index.ts ├── resizable │ ├── style │ │ └── entry.less │ ├── package.json │ ├── demo │ │ ├── basic.md │ │ ├── grid.md │ │ ├── layout.md │ │ ├── table.md │ │ ├── customize.md │ │ ├── drawer.md │ │ ├── preview.md │ │ └── lock-aspect-ratio.md │ └── index.ts ├── affix │ ├── style │ │ ├── patch.less │ │ ├── entry.less │ │ └── index.less │ ├── package.json │ ├── demo │ │ ├── basic.md │ │ └── on-change.md │ └── index.ts ├── alert │ ├── style │ │ ├── patch.less │ │ └── entry.less │ ├── package.json │ ├── demo │ │ ├── module │ │ ├── closable.md │ │ ├── basic.md │ │ ├── description.md │ │ └── icon.md │ └── index.ts ├── anchor │ ├── style │ │ ├── patch.less │ │ └── entry.less │ ├── package.json │ ├── demo │ │ ├── module │ │ ├── basic.md │ │ └── static.md │ └── index.ts ├── empty │ ├── style │ │ ├── patch.less │ │ ├── entry.less │ │ └── rtl.less │ ├── package.json │ ├── demo │ │ ├── basic.md │ │ ├── description.md │ │ ├── basic.ts │ │ ├── customize.md │ │ └── config.md │ └── index.ts ├── result │ ├── style │ │ ├── patch.less │ │ └── entry.less │ ├── package.json │ ├── demo │ │ ├── info.md │ │ ├── warning.md │ │ ├── custom.md │ │ ├── error.md │ │ ├── foo.md │ │ ├── fof.md │ │ ├── success.md │ │ └── fot.md │ └── index.ts ├── space │ ├── style │ │ ├── patch.less │ │ ├── entry.less │ │ └── rtl.less │ ├── package.json │ ├── demo │ │ ├── align.md │ │ ├── customize.md │ │ ├── basic.md │ │ └── vertical.md │ └── index.ts ├── spin │ ├── style │ │ ├── patch.less │ │ └── entry.less │ ├── package.json │ ├── demo │ │ ├── basic.md │ │ ├── inside.md │ │ ├── tip.md │ │ ├── custom-indicator.md │ │ └── basic.ts │ └── index.ts ├── comment │ ├── style │ │ ├── entry.less │ │ └── patch.less │ ├── package.json │ ├── demo │ │ ├── nested.md │ │ └── basic.md │ └── index.ts ├── carousel │ ├── style │ │ └── entry.less │ ├── package.json │ ├── demo │ │ ├── basic.md │ │ ├── fade.md │ │ ├── module │ │ ├── position.md │ │ └── autoplay.md │ └── index.ts ├── descriptions │ ├── style │ │ ├── entry.less │ │ └── patch.less │ ├── package.json │ ├── demo │ │ ├── basic.md │ │ ├── border.md │ │ ├── vertical-border.md │ │ └── custom-size.md │ └── index.ts ├── image │ ├── style │ │ ├── entry.less │ │ └── patch.less │ ├── package.json │ ├── demo │ │ ├── basic.md │ │ ├── fallback.md │ │ └── placeholder.md │ └── index.ts ├── mention │ ├── style │ │ ├── entry.less │ │ └── patch.less │ ├── package.json │ ├── demo │ │ ├── basic.md │ │ ├── preview.md │ │ ├── async.md │ │ ├── multilines.md │ │ ├── placement.md │ │ └── controlled.md │ └── index.ts ├── pagination │ ├── style │ │ ├── patch.less │ │ └── entry.less │ ├── package.json │ ├── demo │ │ ├── module │ │ ├── more.md │ │ ├── basic.md │ │ ├── mini.md │ │ ├── simple.md │ │ ├── changer.md │ │ ├── controlled.md │ │ ├── jump.md │ │ └── item-render.md │ └── index.ts ├── popover │ ├── style │ │ ├── patch.less │ │ ├── entry.less │ │ └── customize.less │ ├── package.json │ ├── demo │ │ ├── placement.md │ │ └── trigger-type.md │ └── index.ts ├── switch │ ├── style │ │ ├── patch.less │ │ └── entry.less │ ├── package.json │ ├── demo │ │ ├── basic.md │ │ ├── text.md │ │ ├── loading.md │ │ ├── disabled.md │ │ └── size.md │ └── index.ts ├── tabs │ ├── style │ │ └── entry.less │ ├── package.json │ ├── demo │ │ ├── basic.md │ │ ├── disabled.md │ │ ├── icon.md │ │ ├── link-router.md │ │ └── extra.md │ └── index.ts ├── tooltip │ ├── style │ │ ├── entry.less │ │ └── patch.less │ ├── package.json │ ├── demo │ │ ├── basic.md │ │ └── placement.md │ └── index.ts ├── tree │ ├── style │ │ └── entry.less │ ├── package.json │ ├── demo │ │ ├── search.md │ │ ├── line.md │ │ ├── basic-controlled.md │ │ └── customized-icon.md │ └── index.ts ├── badge │ ├── style │ │ └── entry.less │ ├── package.json │ ├── demo │ │ ├── ribbon.md │ │ ├── status.md │ │ ├── change.md │ │ ├── link.md │ │ └── dot.md │ └── index.ts ├── checkbox │ ├── style │ │ ├── entry.less │ │ ├── patch.less │ │ └── index.less │ ├── package.json │ ├── demo │ │ ├── basic.md │ │ ├── module │ │ ├── disabled.md │ │ └── controller.md │ └── index.ts ├── collapse │ ├── style │ │ ├── entry.less │ │ └── patch.less │ ├── package.json │ ├── demo │ │ ├── module │ │ ├── borderless.md │ │ ├── mix.md │ │ └── ghost.md │ └── index.ts ├── input │ ├── style │ │ └── entry.less │ ├── package.json │ ├── demo │ │ ├── borderless.md │ │ ├── textarea.md │ │ ├── basic.md │ │ ├── password-input.md │ │ ├── addon.md │ │ ├── allow-clear.md │ │ ├── presuffix.md │ │ └── textarea-with-character-count.md │ └── index.ts ├── layout │ ├── style │ │ ├── entry.less │ │ ├── patch.less │ │ └── rtl.less │ ├── package.json │ ├── demo │ │ └── basic.md │ └── index.ts ├── popconfirm │ ├── style │ │ ├── patch.less │ │ ├── entry.less │ │ └── index.less │ ├── package.json │ ├── demo │ │ ├── basic.md │ │ ├── placement.md │ │ ├── custom-icon.md │ │ └── dynamic-trigger.md │ └── index.ts ├── radio │ ├── style │ │ ├── entry.less │ │ └── patch.less │ ├── package.json │ ├── demo │ │ ├── basic.md │ │ ├── disable.md │ │ ├── solid.md │ │ ├── radiobutton.md │ │ └── radiogroup.md │ └── index.ts ├── breadcrumb │ ├── style │ │ └── entry.less │ ├── package.json │ ├── demo │ │ ├── basic.md │ │ ├── with-icon.md │ │ └── dropdown.md │ └── index.ts ├── ng-zorro-antd.less ├── rate │ ├── style │ │ ├── index.tsx │ │ └── entry.less │ ├── package.json │ ├── demo │ │ ├── basic.md │ │ ├── module │ │ ├── half.md │ │ ├── disabled.md │ │ ├── clear.md │ │ ├── text.md │ │ └── basic.ts │ └── index.ts ├── auto-complete │ ├── style │ │ ├── patch.less │ │ └── entry.less │ ├── package.json │ ├── demo │ │ └── custom.md │ └── index.ts ├── form │ ├── style │ │ ├── entry.less │ │ └── horizontal.less │ ├── package.json │ ├── demo │ │ ├── dynamic-form-item.md │ │ ├── normal-login.md │ │ ├── register.md │ │ ├── horizontal-login.md │ │ └── layout.md │ └── index.ts ├── modal │ ├── style │ │ ├── entry.less │ │ ├── customize.less │ │ └── index.less │ ├── package.json │ ├── demo │ │ ├── basic.md │ │ └── manual.md │ └── index.ts ├── card │ ├── package.json │ ├── style │ │ └── entry.less │ ├── demo │ │ ├── grid-card.md │ │ ├── tabs.md │ │ ├── border-less.md │ │ ├── simple.md │ │ └── basic.md │ └── index.ts ├── cascader │ ├── style │ │ ├── patch.less │ │ └── entry.less │ ├── package.json │ ├── demo │ │ ├── search.md │ │ ├── basic.md │ │ ├── size.md │ │ ├── trigger.md │ │ ├── custom-field-names.md │ │ ├── modal.md │ │ ├── hover.md │ │ ├── default-value.md │ │ ├── change-on-select.md │ │ ├── custom-template.md │ │ ├── reactive-form.md │ │ ├── trigger-action.md │ │ └── lazy.md │ └── index.ts ├── code-editor │ ├── style │ │ └── entry.less │ ├── demo │ │ ├── basic.md │ │ ├── diff.md │ │ └── complex.md │ ├── package.json │ └── index.ts ├── i18n │ ├── package.json │ └── index.ts ├── list │ ├── package.json │ ├── demo │ │ ├── basic.md │ │ ├── resposive.md │ │ └── loadmore.md │ ├── style │ │ ├── patch.less │ │ └── entry.less │ └── index.ts ├── menu │ ├── package.json │ ├── style │ │ └── entry.less │ ├── demo │ │ ├── horizontal.md │ │ ├── vertical.md │ │ └── inline.md │ └── index.ts ├── ng-zorro-antd.aliyun.less ├── ng-zorro-antd.dark.less ├── pipes │ ├── package.json │ ├── demo │ │ ├── css-unit.md │ │ ├── trim.md │ │ ├── bytes.md │ │ └── ellipsis.md │ └── index.ts ├── select │ ├── package.json │ ├── style │ │ └── entry.less │ ├── demo │ │ ├── basic.md │ │ ├── search-box.md │ │ ├── border-less.md │ │ ├── scroll-load.md │ │ ├── search.md │ │ ├── options.md │ │ └── optgroup.md │ └── index.ts ├── slider │ ├── package.json │ ├── style │ │ └── entry.less │ ├── demo │ │ ├── vertical.md │ │ └── reverse.md │ └── index.ts ├── table │ ├── package.json │ ├── demo │ │ ├── basic.md │ │ ├── nested-table.md │ │ ├── bordered.md │ │ ├── dynamic-settings.md │ │ └── grouping-columns.md │ └── index.ts ├── typography │ ├── package.json │ ├── style │ │ └── entry.less │ ├── demo │ │ ├── basic.md │ │ ├── suffix.md │ │ ├── ellipsis.md │ │ ├── text.md │ │ └── title.md │ └── index.ts ├── upload │ ├── package.json │ ├── style │ │ ├── patch.less │ │ └── entry.less │ ├── demo │ │ ├── upload-with-aliyun-oss.md │ │ └── directory.md │ └── index.ts ├── version │ ├── package.json │ ├── index.ts │ └── public-api.ts ├── calendar │ ├── package.json │ ├── style │ │ └── entry.less │ ├── demo │ │ ├── basic.md │ │ ├── card.md │ │ └── select.md │ └── index.ts ├── core │ ├── color │ │ ├── package.json │ │ ├── index.ts │ │ └── public-api.ts │ ├── config │ │ ├── package.json │ │ └── index.ts │ ├── logger │ │ ├── package.json │ │ ├── index.ts │ │ └── public-api.ts │ ├── outlet │ │ ├── package.json │ │ └── index.ts │ ├── overlay │ │ ├── package.json │ │ └── index.ts │ ├── pipe │ │ ├── package.json │ │ └── index.ts │ ├── testing │ │ └── package.json │ ├── time │ │ ├── package.json │ │ └── index.ts │ ├── tree │ │ ├── package.json │ │ └── index.ts │ ├── types │ │ ├── package.json │ │ └── index.ts │ ├── util │ │ ├── package.json │ │ └── index.ts │ ├── wave │ │ ├── package.json │ │ └── index.ts │ ├── animation │ │ ├── package.json │ │ └── index.ts │ ├── environments │ │ ├── package.json │ │ └── index.ts │ ├── highlight │ │ ├── package.json │ │ └── index.ts │ ├── no-animation │ │ ├── package.json │ │ └── index.ts │ ├── polyfill │ │ ├── package.json │ │ └── index.ts │ ├── services │ │ ├── package.json │ │ └── index.ts │ ├── trans-button │ │ ├── package.json │ │ └── index.ts │ ├── element-patch │ │ ├── package.json │ │ └── index.ts │ ├── transition-patch │ │ ├── package.json │ │ └── index.ts │ └── resize-observers │ │ ├── package.json │ │ └── index.ts ├── dropdown │ ├── package.json │ ├── style │ │ └── entry.less │ ├── demo │ │ ├── placement.md │ │ ├── basic.md │ │ ├── item.md │ │ ├── context-menu.md │ │ └── sub-menu.md │ └── index.ts ├── ng-zorro-antd.compact.less ├── page-header │ ├── package.json │ ├── style │ │ └── entry.less │ └── index.ts ├── transfer │ ├── package.json │ ├── demo │ │ ├── search.md │ │ ├── tree-transfer.md │ │ └── table-transfer.md │ └── index.ts ├── tree-select │ ├── package.json │ ├── demo │ │ ├── basic.md │ │ └── checkable.md │ └── index.ts ├── tree-view │ ├── package.json │ ├── demo │ │ ├── directory.md │ │ ├── search.md │ │ ├── checkbox.md │ │ ├── virtual-scroll.md │ │ ├── editable.md │ │ ├── line.md │ │ └── basic.md │ ├── index.ts │ └── style │ │ └── entry.less ├── date-picker │ ├── package.json │ ├── demo │ │ ├── bordered.md │ │ ├── disabled.md │ │ ├── basic.md │ │ ├── format.md │ │ └── range-picker.md │ ├── style │ │ └── entry.less │ ├── index.ts │ └── lib │ │ └── index.ts └── tsconfig.lib.prod.json ├── schematics ├── ng-generate │ ├── side-menu │ │ ├── files │ │ │ └── src │ │ │ │ └── app │ │ │ │ └── pages │ │ │ │ └── welcome │ │ │ │ ├── welcome.component.html.template │ │ │ │ └── welcome.component.__style__.template │ │ └── schema.ts │ ├── topnav │ │ ├── files │ │ │ └── src │ │ │ │ └── app │ │ │ │ └── pages │ │ │ │ └── welcome │ │ │ │ ├── welcome.component.__style__.template │ │ │ │ └── welcome.component.html.template │ │ └── schema.ts │ └── blank │ │ └── schema.ts ├── ng-component │ ├── files │ │ └── __path__ │ │ │ └── __name@dasherize@if-flat__ │ │ │ ├── __name@dasherize__.component.__style__.template │ │ │ └── __name@dasherize__.component.html.template │ └── schema.ts └── ng-update │ └── data │ ├── method-call-checks.ts │ └── attribute-selectors.ts ├── .prettierignore ├── .github └── semantic.yml └── .gitattributes /.nvmrc: -------------------------------------------------------------------------------- 1 | 12.14.1 2 | -------------------------------------------------------------------------------- /scripts/gulp/tasks/release.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | node-options=--max-old-space-size=14000 -------------------------------------------------------------------------------- /components/avatar/style/entry.less: -------------------------------------------------------------------------------- 1 | @import './index.less'; 2 | -------------------------------------------------------------------------------- /components/button/style/entry.less: -------------------------------------------------------------------------------- 1 | @import './index.less'; 2 | -------------------------------------------------------------------------------- /components/divider/style/entry.less: -------------------------------------------------------------------------------- 1 | @import './index.less'; 2 | -------------------------------------------------------------------------------- /components/drawer/style/entry.less: -------------------------------------------------------------------------------- 1 | @import './index.less'; 2 | -------------------------------------------------------------------------------- /components/graph/style/entry.less: -------------------------------------------------------------------------------- 1 | @import './index.less'; 2 | -------------------------------------------------------------------------------- /components/grid/style/entry.less: -------------------------------------------------------------------------------- 1 | @import './index.less'; 2 | -------------------------------------------------------------------------------- /components/icon/style/entry.less: -------------------------------------------------------------------------------- 1 | @import './index.less'; 2 | -------------------------------------------------------------------------------- /components/message/style/entry.less: -------------------------------------------------------------------------------- 1 | @import './index.less'; 2 | -------------------------------------------------------------------------------- /components/steps/style/entry.less: -------------------------------------------------------------------------------- 1 | @import './index.less'; 2 | -------------------------------------------------------------------------------- /components/tag/style/entry.less: -------------------------------------------------------------------------------- 1 | @import './index.less'; 2 | -------------------------------------------------------------------------------- /components/time-picker/time-value-accessor.directive.spec.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/back-top/style/entry.less: -------------------------------------------------------------------------------- 1 | @import './index.less'; 2 | -------------------------------------------------------------------------------- /components/input-number/style/entry.less: -------------------------------------------------------------------------------- 1 | @import './index.less'; 2 | -------------------------------------------------------------------------------- /components/notification/style/entry.less: -------------------------------------------------------------------------------- 1 | @import './index.less'; 2 | -------------------------------------------------------------------------------- /components/progress/style/entry.less: -------------------------------------------------------------------------------- 1 | @import './index.less'; 2 | -------------------------------------------------------------------------------- /components/skeleton/style/entry.less: -------------------------------------------------------------------------------- 1 | @import './index.less'; 2 | -------------------------------------------------------------------------------- /components/statistic/style/entry.less: -------------------------------------------------------------------------------- 1 | @import './index.less'; 2 | -------------------------------------------------------------------------------- /components/style/themes/index.less: -------------------------------------------------------------------------------- 1 | @import './default.less'; 2 | -------------------------------------------------------------------------------- /components/time-picker/style/entry.less: -------------------------------------------------------------------------------- 1 | @import './index.less'; 2 | -------------------------------------------------------------------------------- /components/timeline/style/entry.less: -------------------------------------------------------------------------------- 1 | @import './index.less'; 2 | -------------------------------------------------------------------------------- /components/resizable/style/entry.less: -------------------------------------------------------------------------------- 1 | @import './index.less'; 2 | 3 | -------------------------------------------------------------------------------- /components/affix/style/patch.less: -------------------------------------------------------------------------------- 1 | nz-affix { 2 | display: block; 3 | } 4 | -------------------------------------------------------------------------------- /components/alert/style/patch.less: -------------------------------------------------------------------------------- 1 | nz-alert { 2 | display: block; 3 | } 4 | -------------------------------------------------------------------------------- /components/anchor/style/patch.less: -------------------------------------------------------------------------------- 1 | nz-link { 2 | display: block; 3 | } 4 | -------------------------------------------------------------------------------- /components/empty/style/patch.less: -------------------------------------------------------------------------------- 1 | nz-empty { 2 | display: block; 3 | } 4 | -------------------------------------------------------------------------------- /components/result/style/patch.less: -------------------------------------------------------------------------------- 1 | nz-result { 2 | display: block; 3 | } 4 | -------------------------------------------------------------------------------- /components/space/style/patch.less: -------------------------------------------------------------------------------- 1 | nz-space-item { 2 | display: block; 3 | } -------------------------------------------------------------------------------- /components/spin/style/patch.less: -------------------------------------------------------------------------------- 1 | nz-spin { 2 | display: block; 3 | } 4 | -------------------------------------------------------------------------------- /components/comment/style/entry.less: -------------------------------------------------------------------------------- 1 | @import './index.less'; 2 | @import "./patch"; -------------------------------------------------------------------------------- /components/style/entry.less: -------------------------------------------------------------------------------- 1 | @import './index.less'; 2 | @import './patch.less'; 3 | -------------------------------------------------------------------------------- /scripts/site/_site/iframe/app/app.component.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/affix/style/entry.less: -------------------------------------------------------------------------------- 1 | @import './index.less'; 2 | @import "./patch"; 3 | -------------------------------------------------------------------------------- /components/carousel/style/entry.less: -------------------------------------------------------------------------------- 1 | @import './index.less'; 2 | @import './patch'; 3 | -------------------------------------------------------------------------------- /components/descriptions/style/entry.less: -------------------------------------------------------------------------------- 1 | @import "./index.less"; 2 | @import "./patch"; -------------------------------------------------------------------------------- /components/empty/style/entry.less: -------------------------------------------------------------------------------- 1 | @import './index.less'; 2 | @import "./patch"; 3 | -------------------------------------------------------------------------------- /components/image/style/entry.less: -------------------------------------------------------------------------------- 1 | @import './index.less'; 2 | @import './patch.less'; -------------------------------------------------------------------------------- /components/mention/style/entry.less: -------------------------------------------------------------------------------- 1 | @import './index.less'; 2 | @import "./patch"; 3 | -------------------------------------------------------------------------------- /components/pagination/style/patch.less: -------------------------------------------------------------------------------- 1 | nz-pagination { 2 | display: block; 3 | } 4 | -------------------------------------------------------------------------------- /components/popover/style/patch.less: -------------------------------------------------------------------------------- 1 | .ant-popover { 2 | position: relative; 3 | } 4 | -------------------------------------------------------------------------------- /components/space/style/entry.less: -------------------------------------------------------------------------------- 1 | @import './index.less'; 2 | @import './patch.less'; -------------------------------------------------------------------------------- /components/spin/style/entry.less: -------------------------------------------------------------------------------- 1 | @import './index.less'; 2 | @import './patch.less'; 3 | -------------------------------------------------------------------------------- /components/style/dark.less: -------------------------------------------------------------------------------- 1 | @import './themes/dark.less'; 2 | @import './core/index'; 3 | -------------------------------------------------------------------------------- /components/style/index.less: -------------------------------------------------------------------------------- 1 | @import './themes/index'; 2 | @import './core/index'; 3 | -------------------------------------------------------------------------------- /components/switch/style/patch.less: -------------------------------------------------------------------------------- 1 | nz-switch { 2 | display: inline-block; 3 | } 4 | -------------------------------------------------------------------------------- /components/tabs/style/entry.less: -------------------------------------------------------------------------------- 1 | @import './index.less'; 2 | @import './patch.less'; 3 | -------------------------------------------------------------------------------- /components/tooltip/style/entry.less: -------------------------------------------------------------------------------- 1 | @import './index.less'; 2 | @import "./patch"; 3 | -------------------------------------------------------------------------------- /components/tooltip/style/patch.less: -------------------------------------------------------------------------------- 1 | .ant-tooltip { 2 | position: relative; 3 | } 4 | -------------------------------------------------------------------------------- /components/tree/style/entry.less: -------------------------------------------------------------------------------- 1 | @import './index.less'; 2 | @import './patch.less'; 3 | -------------------------------------------------------------------------------- /components/alert/style/entry.less: -------------------------------------------------------------------------------- 1 | @import './index.less'; 2 | @import './patch.less'; 3 | -------------------------------------------------------------------------------- /components/badge/style/entry.less: -------------------------------------------------------------------------------- 1 | @import './index.less'; 2 | @import './patch.less'; 3 | -------------------------------------------------------------------------------- /components/checkbox/style/entry.less: -------------------------------------------------------------------------------- 1 | @import './index.less'; 2 | @import './patch.less'; 3 | -------------------------------------------------------------------------------- /components/collapse/style/entry.less: -------------------------------------------------------------------------------- 1 | @import './index.less'; 2 | @import './patch.less'; 3 | -------------------------------------------------------------------------------- /components/descriptions/style/patch.less: -------------------------------------------------------------------------------- 1 | nz-descriptions { 2 | display: block; 3 | } 4 | -------------------------------------------------------------------------------- /components/input/style/entry.less: -------------------------------------------------------------------------------- 1 | @import './index.less'; 2 | @import './patch.less'; 3 | -------------------------------------------------------------------------------- /components/layout/style/entry.less: -------------------------------------------------------------------------------- 1 | @import './index.less'; 2 | @import './patch.less'; 3 | -------------------------------------------------------------------------------- /components/popconfirm/style/patch.less: -------------------------------------------------------------------------------- 1 | .ant-popover { 2 | position: relative; 3 | } 4 | -------------------------------------------------------------------------------- /components/radio/style/entry.less: -------------------------------------------------------------------------------- 1 | @import './index.less'; 2 | @import './patch.less'; 3 | -------------------------------------------------------------------------------- /components/result/style/entry.less: -------------------------------------------------------------------------------- 1 | @import "./index.less"; 2 | @import "./patch.less"; 3 | -------------------------------------------------------------------------------- /components/style/aliyun.less: -------------------------------------------------------------------------------- 1 | @import './themes/aliyun.less'; 2 | @import './core/index'; 3 | -------------------------------------------------------------------------------- /components/switch/style/entry.less: -------------------------------------------------------------------------------- 1 | @import './index.less'; 2 | @import './patch.less'; 3 | -------------------------------------------------------------------------------- /schematics/ng-generate/side-menu/files/src/app/pages/welcome/welcome.component.html.template: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/site/_site/doc/app/share/codebox/index.ts: -------------------------------------------------------------------------------- 1 | export * from './codebox.component'; 2 | -------------------------------------------------------------------------------- /components/breadcrumb/style/entry.less: -------------------------------------------------------------------------------- 1 | @import './index.less'; 2 | @import './patch.less'; 3 | -------------------------------------------------------------------------------- /components/ng-zorro-antd.less: -------------------------------------------------------------------------------- 1 | @import "./style/entry.less"; 2 | @import "./components.less"; 3 | -------------------------------------------------------------------------------- /components/rate/style/index.tsx: -------------------------------------------------------------------------------- 1 | import '../../style/index.less'; 2 | import './index.less'; 3 | -------------------------------------------------------------------------------- /components/style/compact.less: -------------------------------------------------------------------------------- 1 | @import './themes/compact.less'; 2 | @import './core/index'; 3 | -------------------------------------------------------------------------------- /schematics/ng-generate/side-menu/files/src/app/pages/welcome/welcome.component.__style__.template: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /schematics/ng-generate/topnav/files/src/app/pages/welcome/welcome.component.__style__.template: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/site/_site/doc/app/share/github-btn/index.ts: -------------------------------------------------------------------------------- 1 | export * from './github-btn.component'; 2 | -------------------------------------------------------------------------------- /scripts/site/_site/doc/app/share/highlight/index.ts: -------------------------------------------------------------------------------- 1 | export * from './highlight.component'; 2 | -------------------------------------------------------------------------------- /scripts/site/_site/doc/style/home.less: -------------------------------------------------------------------------------- 1 | @home-bg-color: #2f54eb; 2 | @home-text-color: #314659; 3 | -------------------------------------------------------------------------------- /scripts/site/_site/doc/zone-flags.ts: -------------------------------------------------------------------------------- 1 | (window as any)['__zone_symbol__PASSIVE_EVENTS'] = ['scroll']; -------------------------------------------------------------------------------- /components/auto-complete/style/patch.less: -------------------------------------------------------------------------------- 1 | .ant-select-dropdown-hidden { 2 | display: none; 3 | } 4 | -------------------------------------------------------------------------------- /components/timeline/style/index.tsx: -------------------------------------------------------------------------------- 1 | import '../../style/index.less'; 2 | import './index.less'; 3 | -------------------------------------------------------------------------------- /scripts/site/_site/doc/google854eb8b183564acb.html: -------------------------------------------------------------------------------- 1 | google-site-verification: google854eb8b183564acb.html -------------------------------------------------------------------------------- /components/radio/style/patch.less: -------------------------------------------------------------------------------- 1 | .ant-radio + span { 2 | &:empty { 3 | display: none; 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /schematics/ng-component/files/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.__style__.template: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/checkbox/style/patch.less: -------------------------------------------------------------------------------- 1 | .ant-checkbox + span { 2 | &:empty { 3 | display: none; 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /schematics/ng-generate/topnav/files/src/app/pages/welcome/welcome.component.html.template: -------------------------------------------------------------------------------- 1 |

welcome works!

2 | -------------------------------------------------------------------------------- /scripts/site/utils/name-without-suffix.js: -------------------------------------------------------------------------------- 1 | module.exports = function (name) { 2 | return name.split('.')[0]; 3 | } -------------------------------------------------------------------------------- /scripts/site/_site/iframe/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /components/image/style/patch.less: -------------------------------------------------------------------------------- 1 | .cdk-overlay-backdrop { 2 | 3 | &.ant-image-preview-mask { 4 | opacity: 1; 5 | } 6 | } -------------------------------------------------------------------------------- /scripts/release/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "lib": ["es2016"], 4 | "types": ["node"] 5 | } 6 | } -------------------------------------------------------------------------------- /scripts/site/_site/doc/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erupts/ng-zorro-antd/master/scripts/site/_site/doc/favicon.ico -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | **/*.md 2 | **/*.svg 3 | **/test.ts 4 | coverage/ 5 | publish/ 6 | schematics/ 7 | package.json 8 | **/template/* 9 | -------------------------------------------------------------------------------- /components/anchor/style/entry.less: -------------------------------------------------------------------------------- 1 | @import './index.less'; 2 | @import '../../affix/style/entry.less'; 3 | @import "./patch"; 4 | -------------------------------------------------------------------------------- /components/form/style/entry.less: -------------------------------------------------------------------------------- 1 | @import './index.less'; 2 | // style dependencies 3 | @import '../../grid/style/entry.less'; 4 | -------------------------------------------------------------------------------- /components/modal/style/entry.less: -------------------------------------------------------------------------------- 1 | @import './index.less'; 2 | // style dependencies 3 | @import '../../button/style/entry.less'; 4 | -------------------------------------------------------------------------------- /components/rate/style/entry.less: -------------------------------------------------------------------------------- 1 | @import './index.less'; 2 | // style dependencies 3 | @import '../../tooltip/style/entry.less'; 4 | -------------------------------------------------------------------------------- /components/affix/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/alert/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/anchor/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/avatar/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/badge/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/button/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/card/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/cascader/style/patch.less: -------------------------------------------------------------------------------- 1 | .ant-cascader-menus { 2 | position: relative; 3 | margin-top: 2px; 4 | margin-bottom: 2px; 5 | } -------------------------------------------------------------------------------- /components/code-editor/style/entry.less: -------------------------------------------------------------------------------- 1 | @import './index.less'; 2 | // style dependencies 3 | @import '../../spin/style/entry.less'; 4 | -------------------------------------------------------------------------------- /components/collapse/style/patch.less: -------------------------------------------------------------------------------- 1 | nz-collapse { 2 | display: block; 3 | } 4 | nz-collapse-panel { 5 | display: block; 6 | } 7 | -------------------------------------------------------------------------------- /components/comment/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/comment/style/patch.less: -------------------------------------------------------------------------------- 1 | nz-comment { 2 | display: block; 3 | } 4 | 5 | nz-comment-content { 6 | display: block; 7 | } 8 | -------------------------------------------------------------------------------- /components/divider/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/drawer/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/empty/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/form/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/grid/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/i18n/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/image/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/input/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/layout/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/list/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/mention/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/menu/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/message/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/modal/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/modal/style/customize.less: -------------------------------------------------------------------------------- 1 | @import './index.less'; 2 | 3 | .popover-customize-bg(@dialog-prefix-cls, @popover-background); 4 | -------------------------------------------------------------------------------- /components/ng-zorro-antd.aliyun.less: -------------------------------------------------------------------------------- 1 | @import "./style/aliyun.less"; 2 | @import "./style/entry.less"; 3 | @import "./components.less"; 4 | -------------------------------------------------------------------------------- /components/ng-zorro-antd.dark.less: -------------------------------------------------------------------------------- 1 | @import "./style/dark.less"; 2 | @import "./style/entry.less"; 3 | @import "./components.less"; 4 | -------------------------------------------------------------------------------- /components/pipes/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/popover/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/popover/style/entry.less: -------------------------------------------------------------------------------- 1 | @import './index.less'; 2 | // style dependencies 3 | // deps-lint-skip: tooltip 4 | @import "./patch"; -------------------------------------------------------------------------------- /components/radio/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/rate/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/result/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/select/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/slider/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/slider/style/entry.less: -------------------------------------------------------------------------------- 1 | @import './index.less'; 2 | // style dependencies 3 | @import '../../tooltip/style/entry.less'; 4 | -------------------------------------------------------------------------------- /components/space/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/spin/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/steps/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/switch/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/table/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/tabs/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/tag/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/tooltip/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/tree/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/typography/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /components/upload/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/upload/style/patch.less: -------------------------------------------------------------------------------- 1 | .ant-upload-list-rtl.ant-upload-list-picture-card .ant-upload-list-item { 2 | float: unset; 3 | } 4 | -------------------------------------------------------------------------------- /components/version/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /scripts/site/_site/doc/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erupts/ng-zorro-antd/master/scripts/site/_site/doc/app/favicon.ico -------------------------------------------------------------------------------- /components/alert/demo/module: -------------------------------------------------------------------------------- 1 | import { NzAlertModule } from 'ng-zorro-antd/alert'; 2 | 3 | export const moduleList = [ NzAlertModule ]; 4 | -------------------------------------------------------------------------------- /components/anchor/demo/module: -------------------------------------------------------------------------------- 1 | import { NzAnchorModule } from 'ng-zorro-antd/anchor'; 2 | 3 | export const moduleList = [ NzAnchorModule ]; 4 | -------------------------------------------------------------------------------- /components/back-top/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/breadcrumb/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/calendar/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/carousel/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/cascader/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/checkbox/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/collapse/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/core/color/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/core/config/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/core/logger/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/core/outlet/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/core/overlay/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/core/pipe/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/core/testing/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/core/time/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/core/tree/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/core/types/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/core/util/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/core/wave/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/descriptions/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/drawer/style/customize.less: -------------------------------------------------------------------------------- 1 | @import './index.less'; 2 | 3 | .popover-customize-bg(@drawer-prefix-cls, @popover-background); 4 | -------------------------------------------------------------------------------- /components/dropdown/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/icon/testing/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/input-number/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/ng-zorro-antd.compact.less: -------------------------------------------------------------------------------- 1 | @import "./style/compact.less"; 2 | @import "./style/entry.less"; 3 | @import "./components.less"; 4 | -------------------------------------------------------------------------------- /components/notification/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/page-header/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/pagination/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/popconfirm/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/popover/style/customize.less: -------------------------------------------------------------------------------- 1 | @import './index.less'; 2 | 3 | .popover-customize-bg(@popover-prefix-cls, @popover-background); 4 | -------------------------------------------------------------------------------- /components/progress/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/resizable/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/skeleton/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/statistic/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/time-picker/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/timeline/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/transfer/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/tree-select/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/tree-view/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/auto-complete/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/checkbox/style/index.less: -------------------------------------------------------------------------------- 1 | @import '../../style/themes/index'; 2 | @import './mixin'; 3 | 4 | .antCheckboxFn(); 5 | @import './rtl'; 6 | -------------------------------------------------------------------------------- /components/core/animation/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/core/environments/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/core/highlight/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/core/no-animation/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/core/polyfill/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/core/services/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/core/trans-button/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /schematics/ng-generate/blank/schema.ts: -------------------------------------------------------------------------------- 1 | 2 | export interface Schema { 3 | /** Name of the project to target. */ 4 | project?: string; 5 | } 6 | -------------------------------------------------------------------------------- /scripts/site/_site/doc/app/online-ide/files/environment.ts: -------------------------------------------------------------------------------- 1 | export default `export const environment = { 2 | production: false 3 | }; 4 | `; 5 | -------------------------------------------------------------------------------- /scripts/site/_site/doc/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true, 3 | preProduction: false 4 | }; 5 | -------------------------------------------------------------------------------- /scripts/site/_site/doc/robots.txt: -------------------------------------------------------------------------------- 1 | user-agent: * 2 | disallow: /iframe/ 3 | disallow: /version/ 4 | sitemap: https://ng.ant.design/sitemap.xml 5 | -------------------------------------------------------------------------------- /components/back-top/demo/module: -------------------------------------------------------------------------------- 1 | import { NzBackTopModule } from 'ng-zorro-antd/back-top'; 2 | 3 | export const moduleList = [ NzBackTopModule ]; 4 | -------------------------------------------------------------------------------- /components/core/element-patch/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/core/transition-patch/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /components/notification/style/customize.less: -------------------------------------------------------------------------------- 1 | @import './index.less'; 2 | 3 | .popover-customize-bg(@notification-prefix-cls, @popover-background); 4 | -------------------------------------------------------------------------------- /components/style/core/index.less: -------------------------------------------------------------------------------- 1 | @import '../mixins/index'; 2 | @import 'base'; 3 | @import 'global'; 4 | @import 'iconfont'; 5 | @import 'motion'; 6 | -------------------------------------------------------------------------------- /scripts/site/_site/doc/assets/icons/icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erupts/ng-zorro-antd/master/scripts/site/_site/doc/assets/icons/icon-72.png -------------------------------------------------------------------------------- /scripts/site/_site/doc/assets/icons/icon-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erupts/ng-zorro-antd/master/scripts/site/_site/doc/assets/icons/icon-96.png -------------------------------------------------------------------------------- /scripts/site/_site/doc/environments/environment.pre-prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true, 3 | preProduction: true 4 | }; 5 | -------------------------------------------------------------------------------- /scripts/site/_site/doc/tsconfig.es5.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./tsconfig.app.json", 3 | "compilerOptions": { 4 | "target": "es5" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /scripts/site/template/example-union.template.html: -------------------------------------------------------------------------------- 1 |
2 |
3 | {{content}} 4 |
5 |
-------------------------------------------------------------------------------- /components/time-picker/style/index.less: -------------------------------------------------------------------------------- 1 | @import '../../style/themes/index'; 2 | @import '../../style/mixins/index'; 3 | @import '../../input/style/mixin'; 4 | -------------------------------------------------------------------------------- /schematics/ng-component/files/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html.template: -------------------------------------------------------------------------------- 1 |

2 | <%= dasherize(name) %> works! 3 |

-------------------------------------------------------------------------------- /scripts/site/_site/doc/assets/fonts/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erupts/ng-zorro-antd/master/scripts/site/_site/doc/assets/fonts/iconfont.eot -------------------------------------------------------------------------------- /scripts/site/_site/doc/assets/fonts/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erupts/ng-zorro-antd/master/scripts/site/_site/doc/assets/fonts/iconfont.ttf -------------------------------------------------------------------------------- /scripts/site/_site/doc/assets/fonts/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erupts/ng-zorro-antd/master/scripts/site/_site/doc/assets/fonts/iconfont.woff -------------------------------------------------------------------------------- /scripts/site/_site/doc/assets/icons/icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erupts/ng-zorro-antd/master/scripts/site/_site/doc/assets/icons/icon-128.png -------------------------------------------------------------------------------- /scripts/site/_site/doc/assets/icons/icon-144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erupts/ng-zorro-antd/master/scripts/site/_site/doc/assets/icons/icon-144.png -------------------------------------------------------------------------------- /scripts/site/_site/doc/assets/icons/icon-152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erupts/ng-zorro-antd/master/scripts/site/_site/doc/assets/icons/icon-152.png -------------------------------------------------------------------------------- /scripts/site/_site/doc/assets/img/site-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erupts/ng-zorro-antd/master/scripts/site/_site/doc/assets/img/site-preview.png -------------------------------------------------------------------------------- /components/dropdown/style/entry.less: -------------------------------------------------------------------------------- 1 | @import './index.less'; 2 | @import './patch.less'; 3 | // style dependencies 4 | @import '../../button/style/entry.less'; 5 | -------------------------------------------------------------------------------- /components/icon/style/index.less: -------------------------------------------------------------------------------- 1 | @import '../../style/themes/index'; 2 | @import '../../style/mixins/index'; 3 | 4 | @icon-prefix-cls: ~'@{ant-prefix}-icon'; 5 | -------------------------------------------------------------------------------- /components/pagination/demo/module: -------------------------------------------------------------------------------- 1 | import { NzPaginationModule } from 'ng-zorro-antd/pagination'; 2 | 3 | export const moduleList = [ NzPaginationModule ]; 4 | -------------------------------------------------------------------------------- /components/select/style/entry.less: -------------------------------------------------------------------------------- 1 | @import './index.less'; 2 | // style dependencies 3 | @import '../../empty/style/entry.less'; 4 | @import './patch.less'; 5 | -------------------------------------------------------------------------------- /components/style/mixins/box.less: -------------------------------------------------------------------------------- 1 | .box(@position: absolute) { 2 | position: @position; 3 | top: 0; 4 | right: 0; 5 | bottom: 0; 6 | left: 0; 7 | } 8 | -------------------------------------------------------------------------------- /scripts/site/_site/doc/typings.d.ts: -------------------------------------------------------------------------------- 1 | /* SystemJS module definition */ 2 | declare var module: NodeModule; 3 | interface NodeModule { 4 | id: string; 5 | } 6 | -------------------------------------------------------------------------------- /components/affix/style/index.less: -------------------------------------------------------------------------------- 1 | @import '../../style/themes/index'; 2 | 3 | .@{ant-prefix}-affix { 4 | position: fixed; 5 | z-index: @zindex-affix; 6 | } 7 | -------------------------------------------------------------------------------- /components/pagination/style/entry.less: -------------------------------------------------------------------------------- 1 | @import './index.less'; 2 | // style dependencies 3 | @import '../../select/style/entry.less'; 4 | @import './patch.less'; 5 | -------------------------------------------------------------------------------- /scripts/site/_site/doc/app/online-ide/files/polyfill.ts: -------------------------------------------------------------------------------- 1 | export default ` 2 | import 'zone.js/dist/zone'; 3 | import "core-js/proposals/reflect-metadata"; 4 | `; 5 | -------------------------------------------------------------------------------- /scripts/site/_site/doc/assets/fonts/Lato/Lato-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erupts/ng-zorro-antd/master/scripts/site/_site/doc/assets/fonts/Lato/Lato-Black.ttf -------------------------------------------------------------------------------- /scripts/site/_site/doc/assets/fonts/Lato/Lato-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erupts/ng-zorro-antd/master/scripts/site/_site/doc/assets/fonts/Lato/Lato-Light.ttf -------------------------------------------------------------------------------- /scripts/site/_site/doc/assets/fonts/Raleway/Raleway.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erupts/ng-zorro-antd/master/scripts/site/_site/doc/assets/fonts/Raleway/Raleway.eot -------------------------------------------------------------------------------- /scripts/site/_site/doc/assets/fonts/Raleway/Raleway.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erupts/ng-zorro-antd/master/scripts/site/_site/doc/assets/fonts/Raleway/Raleway.ttf -------------------------------------------------------------------------------- /scripts/site/_site/doc/assets/icons/apple-icon-120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erupts/ng-zorro-antd/master/scripts/site/_site/doc/assets/icons/apple-icon-120.png -------------------------------------------------------------------------------- /scripts/site/_site/doc/assets/icons/apple-icon-152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erupts/ng-zorro-antd/master/scripts/site/_site/doc/assets/icons/apple-icon-152.png -------------------------------------------------------------------------------- /scripts/site/_site/doc/assets/icons/apple-icon-167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erupts/ng-zorro-antd/master/scripts/site/_site/doc/assets/icons/apple-icon-167.png -------------------------------------------------------------------------------- /scripts/site/_site/doc/assets/icons/apple-icon-180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erupts/ng-zorro-antd/master/scripts/site/_site/doc/assets/icons/apple-icon-180.png -------------------------------------------------------------------------------- /scripts/site/_site/doc/tsconfig.app.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig.app.json", 3 | "files": [ 4 | "./main.ts", 5 | "./polyfills.ts" 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /scripts/site/_site/iframe/tsconfig.app.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig.app.json", 3 | "files": [ 4 | "./main.ts", 5 | "./polyfills.ts" 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /scripts/site/_site/doc/assets/fonts/Lato/Lato-Black.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erupts/ng-zorro-antd/master/scripts/site/_site/doc/assets/fonts/Lato/Lato-Black.woff -------------------------------------------------------------------------------- /scripts/site/_site/doc/assets/fonts/Lato/Lato-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erupts/ng-zorro-antd/master/scripts/site/_site/doc/assets/fonts/Lato/Lato-Black.woff2 -------------------------------------------------------------------------------- /scripts/site/_site/doc/assets/fonts/Lato/Lato-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erupts/ng-zorro-antd/master/scripts/site/_site/doc/assets/fonts/Lato/Lato-Light.woff -------------------------------------------------------------------------------- /scripts/site/_site/doc/assets/fonts/Lato/Lato-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erupts/ng-zorro-antd/master/scripts/site/_site/doc/assets/fonts/Lato/Lato-Light.woff2 -------------------------------------------------------------------------------- /scripts/site/_site/doc/assets/fonts/Lato/Lato-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erupts/ng-zorro-antd/master/scripts/site/_site/doc/assets/fonts/Lato/Lato-Regular.eot -------------------------------------------------------------------------------- /scripts/site/_site/doc/assets/fonts/Lato/Lato-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erupts/ng-zorro-antd/master/scripts/site/_site/doc/assets/fonts/Lato/Lato-Regular.ttf -------------------------------------------------------------------------------- /scripts/site/_site/doc/assets/fonts/Raleway/Raleway.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erupts/ng-zorro-antd/master/scripts/site/_site/doc/assets/fonts/Raleway/Raleway.woff -------------------------------------------------------------------------------- /scripts/site/_site/doc/assets/fonts/Raleway/Raleway.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erupts/ng-zorro-antd/master/scripts/site/_site/doc/assets/fonts/Raleway/Raleway.woff2 -------------------------------------------------------------------------------- /scripts/site/_site/doc/assets/icons/manifest-icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erupts/ng-zorro-antd/master/scripts/site/_site/doc/assets/icons/manifest-icon-192.png -------------------------------------------------------------------------------- /scripts/site/_site/doc/assets/icons/manifest-icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erupts/ng-zorro-antd/master/scripts/site/_site/doc/assets/icons/manifest-icon-512.png -------------------------------------------------------------------------------- /scripts/site/utils/angular-nonbindable.js: -------------------------------------------------------------------------------- 1 | module.exports = function angularNonBindAble(content) { 2 | return content.replace(/{/g, '{').replace(/}/g, '}') 3 | }; -------------------------------------------------------------------------------- /scripts/site/_site/doc/assets/fonts/Lato/Lato-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erupts/ng-zorro-antd/master/scripts/site/_site/doc/assets/fonts/Lato/Lato-Regular.woff -------------------------------------------------------------------------------- /scripts/site/_site/doc/assets/fonts/Lato/Lato-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erupts/ng-zorro-antd/master/scripts/site/_site/doc/assets/fonts/Lato/Lato-Regular.woff2 -------------------------------------------------------------------------------- /scripts/site/_site/doc/assets/fonts/Raleway/Raleway-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erupts/ng-zorro-antd/master/scripts/site/_site/doc/assets/fonts/Raleway/Raleway-Bold.ttf -------------------------------------------------------------------------------- /scripts/site/_site/doc/assets/fonts/Raleway/Raleway-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erupts/ng-zorro-antd/master/scripts/site/_site/doc/assets/fonts/Raleway/Raleway-Thin.ttf -------------------------------------------------------------------------------- /scripts/site/template/app.routing.module.template.ts: -------------------------------------------------------------------------------- 1 | import { Routes } from '@angular/router'; 2 | {{importPart}} 3 | export const routes: Routes = [ 4 | {{routingPart}} 5 | ]; -------------------------------------------------------------------------------- /scripts/site/utils/capitalize-first-letter.js: -------------------------------------------------------------------------------- 1 | module.exports = function capitalizeFirstLetter(string) { 2 | return string.charAt(0).toUpperCase() + string.slice(1); 3 | }; 4 | -------------------------------------------------------------------------------- /components/calendar/style/entry.less: -------------------------------------------------------------------------------- 1 | @import './index.less'; 2 | // style dependencies 3 | @import '../../select/style/entry.less'; 4 | @import '../../radio/style/entry.less'; 5 | -------------------------------------------------------------------------------- /components/typography/style/entry.less: -------------------------------------------------------------------------------- 1 | @import './index.less'; 2 | 3 | // style dependencies 4 | @import '../../tooltip/style/entry.less'; 5 | @import '../../input/style/entry.less'; -------------------------------------------------------------------------------- /scripts/site/_site/doc/assets/fonts/Raleway/Raleway-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erupts/ng-zorro-antd/master/scripts/site/_site/doc/assets/fonts/Raleway/Raleway-Black.ttf -------------------------------------------------------------------------------- /scripts/site/_site/doc/assets/fonts/Raleway/Raleway-Black.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erupts/ng-zorro-antd/master/scripts/site/_site/doc/assets/fonts/Raleway/Raleway-Black.woff -------------------------------------------------------------------------------- /scripts/site/_site/doc/assets/fonts/Raleway/Raleway-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erupts/ng-zorro-antd/master/scripts/site/_site/doc/assets/fonts/Raleway/Raleway-Italic.ttf -------------------------------------------------------------------------------- /scripts/site/_site/doc/assets/fonts/Raleway/Raleway-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erupts/ng-zorro-antd/master/scripts/site/_site/doc/assets/fonts/Raleway/Raleway-Light.ttf -------------------------------------------------------------------------------- /scripts/site/_site/doc/assets/fonts/Raleway/Raleway-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erupts/ng-zorro-antd/master/scripts/site/_site/doc/assets/fonts/Raleway/Raleway-Light.woff -------------------------------------------------------------------------------- /scripts/site/_site/doc/assets/fonts/Raleway/Raleway-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erupts/ng-zorro-antd/master/scripts/site/_site/doc/assets/fonts/Raleway/Raleway-Medium.ttf -------------------------------------------------------------------------------- /components/drawer/style/index.less: -------------------------------------------------------------------------------- 1 | @import '../../style/themes/index'; 2 | @import '../../style/mixins/index'; 3 | @import './drawer'; 4 | @import './customize'; 5 | @import './rtl'; 6 | -------------------------------------------------------------------------------- /scripts/site/_site/doc/assets/fonts/Raleway/Raleway-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erupts/ng-zorro-antd/master/scripts/site/_site/doc/assets/fonts/Raleway/Raleway-Black.woff2 -------------------------------------------------------------------------------- /scripts/site/_site/doc/assets/fonts/Raleway/Raleway-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erupts/ng-zorro-antd/master/scripts/site/_site/doc/assets/fonts/Raleway/Raleway-ExtraBold.ttf -------------------------------------------------------------------------------- /scripts/site/_site/doc/assets/fonts/Raleway/Raleway-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erupts/ng-zorro-antd/master/scripts/site/_site/doc/assets/fonts/Raleway/Raleway-Light.woff2 -------------------------------------------------------------------------------- /scripts/site/_site/doc/assets/fonts/Raleway/Raleway-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erupts/ng-zorro-antd/master/scripts/site/_site/doc/assets/fonts/Raleway/Raleway-Regular.ttf -------------------------------------------------------------------------------- /scripts/site/_site/doc/assets/fonts/Raleway/Raleway-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erupts/ng-zorro-antd/master/scripts/site/_site/doc/assets/fonts/Raleway/Raleway-SemiBold.ttf -------------------------------------------------------------------------------- /scripts/site/_site/doc/assets/fonts/Raleway/Raleway-SemiBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erupts/ng-zorro-antd/master/scripts/site/_site/doc/assets/fonts/Raleway/Raleway-SemiBold.woff -------------------------------------------------------------------------------- /scripts/site/utils/camelcase.js: -------------------------------------------------------------------------------- 1 | module.exports = function camelCase(value) { 2 | return value.replace(/-\w/g, (r, i) => { 3 | return value.charAt(i + 1).toUpperCase(); 4 | }) 5 | } -------------------------------------------------------------------------------- /components/layout/style/patch.less: -------------------------------------------------------------------------------- 1 | nz-content { 2 | display: block; 3 | } 4 | 5 | nz-footer { 6 | display: block; 7 | } 8 | 9 | nz-header { 10 | display: block; 11 | } 12 | -------------------------------------------------------------------------------- /components/menu/style/entry.less: -------------------------------------------------------------------------------- 1 | @import './index.less'; 2 | // style dependencies 3 | // deps-lint-skip: layout 4 | @import '../../tooltip/style/entry.less'; 5 | @import './patch.less'; 6 | -------------------------------------------------------------------------------- /components/skeleton/demo/basic.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 0 3 | title: 4 | zh-CN: 基本 5 | en-US: Basic 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 最简单的用法。 11 | 12 | ## en-US 13 | 14 | Basic usage. -------------------------------------------------------------------------------- /scripts/site/_site/doc/assets/fonts/Raleway/Raleway-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erupts/ng-zorro-antd/master/scripts/site/_site/doc/assets/fonts/Raleway/Raleway-BlackItalic.ttf -------------------------------------------------------------------------------- /scripts/site/_site/doc/assets/fonts/Raleway/Raleway-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erupts/ng-zorro-antd/master/scripts/site/_site/doc/assets/fonts/Raleway/Raleway-BoldItalic.ttf -------------------------------------------------------------------------------- /scripts/site/_site/doc/assets/fonts/Raleway/Raleway-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erupts/ng-zorro-antd/master/scripts/site/_site/doc/assets/fonts/Raleway/Raleway-ExtraLight.ttf -------------------------------------------------------------------------------- /scripts/site/_site/doc/assets/fonts/Raleway/Raleway-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erupts/ng-zorro-antd/master/scripts/site/_site/doc/assets/fonts/Raleway/Raleway-LightItalic.ttf -------------------------------------------------------------------------------- /scripts/site/_site/doc/assets/fonts/Raleway/Raleway-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erupts/ng-zorro-antd/master/scripts/site/_site/doc/assets/fonts/Raleway/Raleway-SemiBold.woff2 -------------------------------------------------------------------------------- /scripts/site/_site/doc/assets/fonts/Raleway/Raleway-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erupts/ng-zorro-antd/master/scripts/site/_site/doc/assets/fonts/Raleway/Raleway-ThinItalic.ttf -------------------------------------------------------------------------------- /components/anchor/demo/basic.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 0 3 | title: 4 | zh-CN: 基本 5 | en-US: Basic 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 最简单的用法。 11 | 12 | ## en-US 13 | 14 | The simplest usage. -------------------------------------------------------------------------------- /components/mention/demo/basic.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 0 3 | title: 4 | zh-CN: 基本使用 5 | en-US: Basic 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 基本使用 11 | 12 | ## en-US 13 | 14 | Basic usage. 15 | -------------------------------------------------------------------------------- /components/mention/style/patch.less: -------------------------------------------------------------------------------- 1 | .ant-mention-dropdown { 2 | top: 100%; 3 | left: 0; 4 | position: relative; 5 | width: 100%; 6 | margin-top: 4px; 7 | margin-bottom: 4px; 8 | } 9 | -------------------------------------------------------------------------------- /components/modal/demo/basic.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 0 3 | title: 4 | zh-CN: 基本 5 | en-US: Basic 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 第一个对话框。 11 | 12 | ## en-US 13 | 14 | Basic modal. 15 | -------------------------------------------------------------------------------- /components/pagination/demo/more.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | title: 4 | zh-CN: 更多 5 | en-US: More 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 更多分页。 11 | 12 | ## en-US 13 | 14 | More pages. 15 | -------------------------------------------------------------------------------- /components/space/demo/align.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 3 3 | title: 4 | zh-CN: 对齐 5 | en-US: Align 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 设置对齐模式。 11 | 12 | ## en-US 13 | 14 | Config item align. -------------------------------------------------------------------------------- /components/tree/demo/search.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 5 3 | title: 4 | zh-CN: 可搜索 5 | en-US: Searchable 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 可搜索的树。 11 | 12 | ## en-US 13 | 14 | Searchable Tree. -------------------------------------------------------------------------------- /scripts/site/_site/doc/assets/fonts/Raleway/Raleway-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erupts/ng-zorro-antd/master/scripts/site/_site/doc/assets/fonts/Raleway/Raleway-MediumItalic.ttf -------------------------------------------------------------------------------- /scripts/site/_site/doc/assets/fonts/Raleway/Raleway-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erupts/ng-zorro-antd/master/scripts/site/_site/doc/assets/fonts/Raleway/Raleway-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /components/back-top/demo/basic.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 0 3 | title: 4 | zh-CN: 基本 5 | en-US: Basic 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 最简单的用法。 11 | 12 | ## en-US 13 | 14 | The most basic usage. -------------------------------------------------------------------------------- /components/card/style/entry.less: -------------------------------------------------------------------------------- 1 | @import './index.less'; 2 | // style dependencies 3 | @import '../../tabs/style/entry.less'; 4 | @import '../../grid/style/entry.less'; 5 | @import './patch.less'; 6 | -------------------------------------------------------------------------------- /components/descriptions/demo/basic.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 0 3 | title: 4 | zh-CN: 基本 5 | en-US: Basic 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 简单的展示。 11 | 12 | ## en-US 13 | 14 | Basic usage. 15 | -------------------------------------------------------------------------------- /components/list/demo/basic.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | title: 4 | zh-CN: 基础列表 5 | en-US: Basic list 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 基础列表。 11 | 12 | ## en-US 13 | 14 | Basic list. 15 | -------------------------------------------------------------------------------- /components/pipes/demo/css-unit.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 2 3 | title: 4 | zh-CN: nzToCssUnit 5 | en-US: nzToCssUnit 6 | --- 7 | 8 | ## zh-CN 9 | 10 | Css 单位 11 | 12 | ## en-US 13 | 14 | Css unit -------------------------------------------------------------------------------- /components/radio/demo/basic.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 0 3 | title: 4 | zh-CN: 基本 5 | en-US: Basic 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 最简单的用法。 11 | 12 | ## en-US 13 | 14 | The simplest use. 15 | -------------------------------------------------------------------------------- /components/rate/demo/basic.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 0 3 | title: 4 | zh-CN: 基本 5 | en-US: Basic 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 最简单的用法。 11 | 12 | ## en-US 13 | 14 | The simplest usage. 15 | -------------------------------------------------------------------------------- /scripts/site/_site/doc/assets/fonts/Raleway/Raleway-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erupts/ng-zorro-antd/master/scripts/site/_site/doc/assets/fonts/Raleway/Raleway-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /scripts/site/_site/doc/assets/fonts/Raleway/Raleway-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erupts/ng-zorro-antd/master/scripts/site/_site/doc/assets/fonts/Raleway/Raleway-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /components/affix/demo/basic.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 0 3 | title: 4 | zh-CN: 基本 5 | en-US: Basic 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 最简单的用法。 11 | 12 | ## en-US 13 | 14 | The simplest usage. 15 | 16 | -------------------------------------------------------------------------------- /components/auto-complete/style/entry.less: -------------------------------------------------------------------------------- 1 | @import './index.less'; 2 | // style dependencies 3 | @import '../../select/style/entry.less'; 4 | @import '../../input/style/entry.less'; 5 | @import "./patch"; 6 | -------------------------------------------------------------------------------- /components/badge/demo/ribbon.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 10 3 | title: 4 | zh-CN: 缎带 5 | en-US: Ribbon 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 使用缎带型的徽标。 11 | 12 | ## en-US 13 | 14 | Use ribbon badge. 15 | -------------------------------------------------------------------------------- /components/carousel/demo/basic.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 0 3 | title: 4 | zh-CN: 基本 5 | en-US: Basic 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 最简单的用法。 11 | 12 | ## en-US 13 | 14 | Basic usage. 15 | 16 | -------------------------------------------------------------------------------- /components/cascader/style/entry.less: -------------------------------------------------------------------------------- 1 | @import './index.less'; 2 | @import './patch.less'; 3 | // style dependencies 4 | @import '../../empty/style/entry.less'; 5 | @import '../../input/style/entry.less'; 6 | -------------------------------------------------------------------------------- /components/code-editor/demo/basic.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 0 3 | title: 4 | zh-CN: 基本 5 | en-US: Basic 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 最简单的用法。 11 | 12 | ## en-US 13 | 14 | The simplest usage. 15 | -------------------------------------------------------------------------------- /components/date-picker/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | }, 6 | "whitelistedNonPeerDependencies": ["tslib", "date-fns"] 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /components/input/demo/borderless.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 11 3 | title: 4 | zh-CN: 无边框 5 | en-US: Borderless 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 没有边框。 11 | 12 | ## en-US 13 | 14 | Borderless input. -------------------------------------------------------------------------------- /components/rate/demo/module: -------------------------------------------------------------------------------- 1 | import { NzIconModule } from 'ng-zorro-antd/icon'; 2 | import { NzRateModule } from 'ng-zorro-antd/rate'; 3 | 4 | export const moduleList = [ NzIconModule, NzRateModule ]; 5 | -------------------------------------------------------------------------------- /components/result/demo/info.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | title: 4 | zh-CN: Info 5 | en-US: Info 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 展示处理结果。 11 | 12 | ## en-US 13 | 14 | Show processing results. 15 | -------------------------------------------------------------------------------- /components/result/demo/warning.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 3 3 | title: 4 | zh-CN: Warning 5 | en-US: Warning 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 警告类型的结果。 11 | 12 | ## en-US 13 | 14 | Show warning. 15 | -------------------------------------------------------------------------------- /components/tree-view/demo/directory.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 2 3 | title: 4 | zh-CN: 目录 5 | en-US: Directory 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 目录树 11 | 12 | ## en-US 13 | 14 | Directory tree. 15 | -------------------------------------------------------------------------------- /components/tree-view/demo/search.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 6 3 | title: 4 | zh-CN: 搜索 5 | en-US: search 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 可搜索的树。 11 | 12 | ## en-US 13 | 14 | Searchable Tree. 15 | -------------------------------------------------------------------------------- /components/tree/demo/line.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 6 3 | title: 4 | zh-CN: 连接线 5 | en-US: Tree With Line 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 带连接线的树。 11 | 12 | ## en-US 13 | 14 | Tree With Line. 15 | -------------------------------------------------------------------------------- /components/breadcrumb/demo/basic.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 0 3 | title: 4 | zh-CN: 基本 5 | en-US: Basic Usage 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 最简单的用法。 11 | 12 | ## en-US 13 | 14 | The simplest use 15 | -------------------------------------------------------------------------------- /components/empty/demo/basic.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 0 3 | title: 4 | zh-CN: 基本 5 | en-US: Basic 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 简单的展示。 11 | 12 | ## en-US 13 | 14 | Simplest usage. 15 | 16 | 17 | -------------------------------------------------------------------------------- /components/list/style/patch.less: -------------------------------------------------------------------------------- 1 | nz-list, 2 | nz-list nz-spin, 3 | nz-list-header, 4 | nz-list-footer, 5 | nz-list-pagination, 6 | nz-list-empty, 7 | nz-list-item-extra { 8 | display: block; 9 | } 10 | -------------------------------------------------------------------------------- /components/mention/demo/preview.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 9 3 | title: 4 | zh-CN: 预览 5 | en-US: Preview 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 渲染提及 11 | 12 | ## en-US 13 | 14 | Rendering the mentions. 15 | -------------------------------------------------------------------------------- /components/modal/style/index.less: -------------------------------------------------------------------------------- 1 | @import '../../style/themes/index'; 2 | @import '../../style/mixins/index'; 3 | @import './modal'; 4 | @import './confirm'; 5 | @import './customize'; 6 | @import './rtl'; 7 | -------------------------------------------------------------------------------- /components/page-header/style/entry.less: -------------------------------------------------------------------------------- 1 | @import './index.less'; 2 | // style dependencies 3 | @import '../../divider/style/entry.less'; 4 | @import '../../breadcrumb/style/entry.less'; 5 | @import "./patch"; 6 | -------------------------------------------------------------------------------- /components/pagination/demo/basic.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 0 3 | title: 4 | zh-CN: 基本 5 | en-US: Basic 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 基础分页。 11 | 12 | ## en-US 13 | 14 | Basic pagination. 15 | 16 | -------------------------------------------------------------------------------- /components/pagination/demo/mini.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 4 3 | title: 4 | zh-CN: 迷你 5 | en-US: Mini size 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 迷你版本。 11 | 12 | ## en-US 13 | 14 | Mini size pagination. 15 | -------------------------------------------------------------------------------- /components/pagination/demo/simple.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 6 3 | title: 4 | zh-CN: 简洁 5 | en-US: Simple mode 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 简单的翻页。 11 | 12 | ## en-US 13 | 14 | Simple mode. 15 | 16 | -------------------------------------------------------------------------------- /components/result/demo/custom.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 8 3 | title: 4 | zh-CN: 自定义 icon 5 | en-US: Custom Icon 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 自定义 icon。 11 | 12 | ## en-US 13 | 14 | Custom icon. 15 | -------------------------------------------------------------------------------- /components/result/demo/error.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 7 3 | title: 4 | zh-CN: Error 5 | en-US: Error 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 复杂的错误反馈。 11 | 12 | ## en-US 13 | 14 | Complex error feedback. 15 | -------------------------------------------------------------------------------- /components/result/demo/foo.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 6 3 | title: 4 | zh-CN: 500 5 | en-US: 500 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 服务器发生了错误。 11 | 12 | ## en-US 13 | 14 | There is an error on server. 15 | -------------------------------------------------------------------------------- /components/statistic/demo/basic.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 0 3 | title: 4 | zh-CN: 基本用法 5 | en-US: Basic Usage 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 简单的展示。 11 | 12 | ## en-US 13 | 14 | Simplest Usage. 15 | -------------------------------------------------------------------------------- /components/statistic/demo/countdown.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 3 3 | title: 4 | zh-CN: 倒计时 5 | en-US: Countdown 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 倒计时组件。 11 | 12 | ## en-US 13 | 14 | Countdown component. -------------------------------------------------------------------------------- /components/style/mixins/size.less: -------------------------------------------------------------------------------- 1 | // Sizing shortcuts 2 | 3 | .size(@width; @height) { 4 | width: @width; 5 | height: @height; 6 | } 7 | 8 | .square(@size) { 9 | .size(@size; @size); 10 | } 11 | -------------------------------------------------------------------------------- /components/switch/demo/basic.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 0 3 | title: 4 | zh-CN: 基本 5 | en-US: Basic 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 最简单的用法。 11 | 12 | ## en-US 13 | 14 | The most basic usage. 15 | 16 | -------------------------------------------------------------------------------- /components/timeline/demo/basic.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 0 3 | title: 4 | zh-CN: 基本用法 5 | en-US: Basic 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 基本的时间轴。 11 | 12 | ## en-US 13 | 14 | Basic timeline. 15 | 16 | -------------------------------------------------------------------------------- /components/tooltip/demo/basic.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 0 3 | title: 4 | zh-CN: 基本 5 | en-US: Basic 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 最简单的用法。 11 | 12 | ## en-US 13 | 14 | The simplest usage. 15 | 16 | -------------------------------------------------------------------------------- /components/tree-select/demo/basic.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 0 3 | title: 4 | zh-CN: 基本 5 | en-US: Basic 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 最简单的用法。 11 | 12 | ## en-US 13 | 14 | The most basic usage. 15 | -------------------------------------------------------------------------------- /components/upload/style/entry.less: -------------------------------------------------------------------------------- 1 | @import './index.less'; 2 | // style dependencies 3 | @import '../../progress/style/entry.less'; 4 | @import '../../tooltip/style/entry.less'; 5 | @import './patch.less'; 6 | -------------------------------------------------------------------------------- /schematics/ng-component/schema.ts: -------------------------------------------------------------------------------- 1 | import { ZorroComponentOptions } from '../utils/build-component'; 2 | 3 | export interface Schema extends ZorroComponentOptions { 4 | [key: string]: string | boolean; 5 | } 6 | -------------------------------------------------------------------------------- /schematics/ng-generate/topnav/schema.ts: -------------------------------------------------------------------------------- 1 | import { Style } from '@schematics/angular/application/schema'; 2 | 3 | export interface Schema { 4 | project: string; 5 | style: Style; 6 | prefix: string; 7 | } 8 | -------------------------------------------------------------------------------- /.github/semantic.yml: -------------------------------------------------------------------------------- 1 | titleAndCommits: true 2 | types: 3 | - feat 4 | - fix 5 | - docs 6 | - style 7 | - refactor 8 | - perf 9 | - test 10 | - build 11 | - ci 12 | - chore 13 | - revert -------------------------------------------------------------------------------- /components/divider/demo/module: -------------------------------------------------------------------------------- 1 | import { NzDividerModule } from 'ng-zorro-antd/divider'; 2 | import { NzIconModule } from 'ng-zorro-antd/icon'; 3 | 4 | export const moduleList = [ NzDividerModule, NzIconModule ]; 5 | -------------------------------------------------------------------------------- /components/icon/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | }, 6 | "whitelistedNonPeerDependencies": ["tslib", "@ant-design/icons-angular"] 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /components/image/demo/basic.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 0 3 | title: 4 | zh-CN: 基本用法 5 | en-US: Basic Usage 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 单击图像可以放大显示。 11 | 12 | ## en-US 13 | 14 | Click the image to preview. -------------------------------------------------------------------------------- /components/input/demo/textarea.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 5 3 | title: 4 | zh-CN: 文本域 5 | en-US: TextArea 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 用于多行输入。 11 | 12 | ## en-US 13 | 14 | For multi-line input. 15 | -------------------------------------------------------------------------------- /components/popconfirm/demo/basic.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 0 3 | title: 4 | zh-CN: 基本 5 | en-US: Basic 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 最简单的用法。 11 | 12 | ## en-US 13 | 14 | The basic example. 15 | 16 | 17 | -------------------------------------------------------------------------------- /components/popconfirm/style/entry.less: -------------------------------------------------------------------------------- 1 | // style dependencies 2 | // deps-lint-skip: tooltip, popover 3 | @import '../../popover/style/entry.less'; 4 | @import '../../button/style/entry.less'; 5 | @import "./patch"; 6 | -------------------------------------------------------------------------------- /components/progress/demo/line.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 0 3 | title: 4 | zh-CN: 进度条 5 | en-US: Progress bar 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 标准的进度条。 11 | 12 | ## en-US 13 | 14 | A standard progress bar. 15 | -------------------------------------------------------------------------------- /components/rate/demo/half.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | title: 4 | zh-CN: 半星 5 | en-US: Half star 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 支持选中半星。 11 | 12 | ## en-US 13 | 14 | Support select half star. 15 | 16 | -------------------------------------------------------------------------------- /components/resizable/demo/basic.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 0 3 | title: 4 | zh-CN: 基本使用 5 | en-US: Basic Usage 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 基本使用。 11 | 12 | ## en-US 13 | 14 | Basic Usage. 15 | 16 | 17 | -------------------------------------------------------------------------------- /components/result/demo/fof.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 5 3 | title: 4 | zh-CN: 404 5 | en-US: 404 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 此页面未找到。 11 | 12 | ## en-US 13 | 14 | The page you visited does not exist. 15 | -------------------------------------------------------------------------------- /components/result/demo/success.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 0 3 | title: 4 | zh-CN: Success 5 | en-US: Success 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 成功的结果。 11 | 12 | ## en-US 13 | 14 | Show successful results. 15 | -------------------------------------------------------------------------------- /components/select/demo/basic.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 0 3 | title: 4 | zh-CN: 基本使用 5 | en-US: Basic Usage 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 基本使用。 11 | 12 | ## en-US 13 | 14 | Basic Usage. 15 | 16 | 17 | -------------------------------------------------------------------------------- /components/skeleton/demo/active.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 2 3 | title: 4 | zh-CN: 动画效果 5 | en-US: Active Animation 6 | --- 7 | ## zh-CN 8 | 9 | 显示动画效果。 10 | 11 | ## en-US 12 | 13 | Display active animation. -------------------------------------------------------------------------------- /components/switch/demo/text.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 2 3 | title: 4 | zh-CN: 文字和图标 5 | en-US: Text & icon 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 带有文字和图标。 11 | 12 | ## en-US 13 | 14 | With text and icon. 15 | 16 | -------------------------------------------------------------------------------- /components/tabs/demo/basic.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 0 3 | title: 4 | zh-CN: 基本 5 | en-US: Basic 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 默认选中第一项。 11 | 12 | ## en-US 13 | 14 | Default activate first tab. 15 | 16 | -------------------------------------------------------------------------------- /components/tabs/demo/disabled.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | title: 4 | zh-CN: 禁用 5 | en-US: Disabled 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 禁用某一项。 11 | 12 | ## en-US 13 | 14 | Disabled a tab. 15 | 16 | 17 | -------------------------------------------------------------------------------- /components/tabs/demo/icon.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 2 3 | title: 4 | zh-CN: 图标 5 | en-US: Icon 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 有图标的标签。 11 | 12 | ## en-US 13 | 14 | The Tab with Icon. 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /components/tree-view/demo/checkbox.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | title: 4 | zh-CN: 选择框 5 | en-US: checkbox 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 带选择框的树。 11 | 12 | ## en-US 13 | 14 | Tree with checkboxes. 15 | -------------------------------------------------------------------------------- /components/typography/demo/basic.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 0 3 | title: 4 | zh-CN: 基本 5 | en-US: Basic 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 展示文档样例。 11 | 12 | ## en-US 13 | 14 | Display the document sample. 15 | -------------------------------------------------------------------------------- /schematics/ng-generate/side-menu/schema.ts: -------------------------------------------------------------------------------- 1 | import { Style } from '@schematics/angular/application/schema'; 2 | 3 | export interface Schema { 4 | project: string; 5 | style: Style; 6 | prefix: string; 7 | } 8 | -------------------------------------------------------------------------------- /schematics/ng-update/data/method-call-checks.ts: -------------------------------------------------------------------------------- 1 | import { MethodCallUpgradeData, VersionChanges } from '@angular/cdk/schematics'; 2 | 3 | export const methodCallChecks: VersionChanges = {}; 4 | -------------------------------------------------------------------------------- /components/avatar/demo/group.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 4 3 | title: 4 | zh-CN: 头像组 5 | en-US: Avatar Group 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 头像组合展现。 11 | 12 | ## en-US 13 | 14 | Avatar group display. 15 | 16 | -------------------------------------------------------------------------------- /components/carousel/demo/fade.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 2 3 | title: 4 | zh-CN: 渐显 5 | en-US: Fade in 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 切换效果为渐显。 11 | 12 | ## en-US 13 | 14 | Slides use fade for transition. 15 | -------------------------------------------------------------------------------- /components/carousel/demo/module: -------------------------------------------------------------------------------- 1 | import { NzCarouselModule } from 'ng-zorro-antd/carousel'; 2 | import { NzRadioModule } from 'ng-zorro-antd/radio'; 3 | 4 | export const moduleList = [ NzCarouselModule, NzRadioModule ]; 5 | -------------------------------------------------------------------------------- /components/collapse/demo/module: -------------------------------------------------------------------------------- 1 | import { NzCollapseModule } from 'ng-zorro-antd/collapse'; 2 | import { NzIconModule } from 'ng-zorro-antd/icon'; 3 | 4 | export const moduleList = [ NzCollapseModule, NzIconModule ]; 5 | -------------------------------------------------------------------------------- /components/drawer/demo/basic-right.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 0 3 | title: 4 | zh-CN: 基础抽屉 5 | en-US: Basic 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 基础抽屉,点击触发按钮抽屉从右滑出,点击遮罩区关闭 11 | 12 | ## en-US 13 | 14 | Basic drawer. 15 | -------------------------------------------------------------------------------- /components/dropdown/demo/placement.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | title: 4 | zh-CN: 弹出位置 5 | en-US: Placement 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 支持 6 个弹出位置。 11 | 12 | ## en-US 13 | 14 | Support 6 placements. 15 | -------------------------------------------------------------------------------- /components/input-number/demo/basic.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 0 3 | title: 4 | zh-CN: 基本 5 | en-US: Basic 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 数字输入框。 11 | 12 | ## en-US 13 | 14 | Numeric-only input box. 15 | 16 | -------------------------------------------------------------------------------- /components/input/demo/basic.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 0 3 | title: 4 | zh-CN: 基本使用 5 | en-US: Basic usage 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 基本使用。 11 | 12 | ## en-US 13 | 14 | Basic usage example. 15 | 16 | -------------------------------------------------------------------------------- /components/input/demo/password-input.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 10 3 | title: 4 | zh-CN: 密码框 5 | en-US: Password box 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 密码框。 11 | 12 | ## en-US 13 | 14 | Input type of password. -------------------------------------------------------------------------------- /components/mention/demo/async.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | title: 4 | zh-CN: 异步加载 5 | en-US: Asynchronous loading 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 匹配内容列表为异步返回时。 11 | 12 | ## en-US 13 | 14 | async 15 | 16 | -------------------------------------------------------------------------------- /components/mention/demo/multilines.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 5 3 | title: 4 | zh-CN: 多行 5 | en-US: Multi-lines Mode 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 多行模式。 11 | 12 | ## en-US 13 | 14 | Multi lines mode. 15 | 16 | -------------------------------------------------------------------------------- /components/message/demo/info.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 0 3 | title: 4 | zh-CN: 普通提示 5 | en-US: Normal prompt 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 信息提醒反馈。 11 | 12 | ## en-US 13 | 14 | Normal messages as feedbacks. 15 | -------------------------------------------------------------------------------- /components/pagination/demo/changer.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 2 3 | title: 4 | zh-CN: 改变 5 | en-US: Changer 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 改变每页显示条目数。 11 | 12 | ## en-US 13 | 14 | Change `nzPageSize`. 15 | 16 | -------------------------------------------------------------------------------- /components/pagination/demo/controlled.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 8 3 | title: 4 | zh-CN: 页码 5 | en-US: Page Index 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 改变页码。 11 | 12 | ## en-US 13 | 14 | Change page index number. 15 | -------------------------------------------------------------------------------- /components/pagination/demo/jump.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 3 3 | title: 4 | zh-CN: 跳转 5 | en-US: Jumper 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 快速跳转到某一页。 11 | 12 | ## en-US 13 | 14 | Jump to a page directly. 15 | 16 | -------------------------------------------------------------------------------- /components/pipes/demo/trim.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 8 3 | title: 4 | zh-CN: nzTrim 5 | en-US: nzTrim 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 去除字符串左右空字符串 11 | 12 | ## en-US 13 | 14 | Strip left and right empty string -------------------------------------------------------------------------------- /components/radio/demo/disable.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | title: 4 | zh-CN: 不可用 5 | en-US: Disabled 6 | --- 7 | 8 | ## zh-CN 9 | 10 | `nz-radio` 不可用。 11 | 12 | ## en-US 13 | 14 | `nz-radio` unavailable. 15 | -------------------------------------------------------------------------------- /components/resizable/demo/grid.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 4 3 | title: 4 | zh-CN: 栅格 5 | en-US: Grid 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 配合栅格使用 11 | 12 | ## en-US 13 | 14 | Resize with grid. 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /components/resizable/demo/layout.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 5 3 | title: 4 | zh-CN: 布局 5 | en-US: Layout 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 调整布局尺寸。 11 | 12 | ## en-US 13 | 14 | Layout with resizable. 15 | 16 | 17 | -------------------------------------------------------------------------------- /components/resizable/demo/table.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 7 3 | title: 4 | zh-CN: 表格 5 | en-US: Table 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 调整表头宽度。 11 | 12 | ## en-US 13 | 14 | Resize the table header. 15 | 16 | 17 | -------------------------------------------------------------------------------- /components/select/demo/search-box.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 9 3 | title: 4 | zh-CN: 搜索框 5 | en-US: Search Box 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 搜索和远程数据结合。 11 | 12 | ## en-US 13 | 14 | Search with remote data. 15 | -------------------------------------------------------------------------------- /components/space/demo/customize.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 3 3 | title: 4 | zh-CN: 自定义尺寸 5 | en-US: Customize Size 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 自定义间距大小。 11 | 12 | ## en-US 13 | 14 | Custom spacing size. 15 | -------------------------------------------------------------------------------- /components/steps/demo/simple.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 0 3 | title: 4 | zh-CN: 基本用法 5 | en-US: Basic 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 简单的步骤条。 11 | 12 | ## en-US 13 | 14 | The most basic step bar. 15 | 16 | 17 | -------------------------------------------------------------------------------- /components/typography/demo/suffix.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 6 3 | title: 4 | zh-CN: 后缀 5 | en-US: suffix 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 添加后缀的省略。 11 | 12 | ## en-US 13 | 14 | add suffix ellipsis support. 15 | -------------------------------------------------------------------------------- /components/checkbox/demo/basic.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 0 3 | title: 4 | zh-CN: 基本用法 5 | en-US: Basic 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 简单的 checkbox。 11 | 12 | ## en-US 13 | 14 | Basic usage of checkbox. 15 | 16 | -------------------------------------------------------------------------------- /components/checkbox/demo/module: -------------------------------------------------------------------------------- 1 | import { NzCheckboxModule } from 'ng-zorro-antd/checkbox'; 2 | import { NzButtonModule } from 'ng-zorro-antd/button'; 3 | 4 | export const moduleList = [ NzCheckboxModule, NzButtonModule ]; 5 | -------------------------------------------------------------------------------- /components/code-editor/demo/diff.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | title: 4 | zh-CN: Diff 编辑器 5 | en-US: Diff Editor 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 使用 diff 模式。 11 | 12 | ## en-US 13 | 14 | Use diff editor mode. 15 | -------------------------------------------------------------------------------- /components/code-editor/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | }, 7 | "peerDependencies": { 8 | "monaco-editor": "^0.14.0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /components/comment/demo/nested.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 2 3 | title: 4 | zh-CN: 嵌套评论 5 | en-US: Nested comments 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 评论可以嵌套。 11 | 12 | ## en-US 13 | 14 | Comments can be nested. 15 | 16 | -------------------------------------------------------------------------------- /components/mention/demo/placement.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 0 3 | title: 4 | zh-CN: 向上展开 5 | en-US: Placement 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 向上展开建议。 11 | 12 | ## en-US 13 | 14 | Change the suggestions placement. 15 | -------------------------------------------------------------------------------- /components/menu/demo/horizontal.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 0 3 | title: 4 | zh-CN: 顶部导航 5 | en-US: Top Navigation 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 水平的顶部导航菜单。 11 | 12 | ## en-US 13 | 14 | Horizontal top navigation menu. -------------------------------------------------------------------------------- /components/resizable/demo/customize.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | title: 4 | zh-CN: 自定义 5 | en-US: Customize 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 自定义拖拽柄样式。 11 | 12 | 13 | ## en-US 14 | 15 | Customize Handle。 16 | 17 | -------------------------------------------------------------------------------- /components/resizable/demo/drawer.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 6 3 | title: 4 | zh-CN: 抽屉 5 | en-US: Drawer 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 调整抽屉宽度。 11 | 12 | ## en-US 13 | 14 | Resize the drawer width. 15 | 16 | 17 | -------------------------------------------------------------------------------- /components/skeleton/demo/list.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 5 3 | title: 4 | zh-CN: 列表样例 5 | en-US: List Sample 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 在列表组件中使用加载占位符。 11 | 12 | ## en-US 13 | 14 | Use skeleton in list component. -------------------------------------------------------------------------------- /components/slider/demo/vertical.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 6 3 | title: 4 | zh-CN: 垂直 5 | en-US: Vertical 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 垂直方向的 Slider。 11 | 12 | ## en-US 13 | 14 | The vertical Slider. 15 | 16 | 17 | -------------------------------------------------------------------------------- /components/space/demo/basic.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 0 3 | title: 4 | zh-CN: 基本用法 5 | en-US: Basic Usage 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 相邻组件水平间距。 11 | 12 | ## en-US 13 | 14 | Crowded components horizontal spacing. -------------------------------------------------------------------------------- /components/spin/demo/basic.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 0 3 | title: 4 | zh-CN: 基本用法 5 | en-US: Basic Usage 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 一个简单的 loading 状态。 11 | 12 | ## en-US 13 | 14 | A simple loading status. 15 | -------------------------------------------------------------------------------- /components/spin/demo/inside.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 2 3 | title: 4 | zh-CN: 容器 5 | en-US: Inside a container 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 放入一个容器中。 11 | 12 | ## en-US 13 | 14 | Spin in a container. 15 | 16 | -------------------------------------------------------------------------------- /components/statistic/demo/card.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 2 3 | title: 4 | zh-CN: 在卡片中使用 5 | en-US: In Card 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 在卡片中展示统计数值。 11 | 12 | ## en-US 13 | 14 | Display statistic data in Card. 15 | -------------------------------------------------------------------------------- /components/steps/demo/nav.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 11 3 | title: 4 | zh-CN: 导航步骤 5 | en-US: Navigation Steps 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 导航类型的步骤条。 11 | 12 | ## en-US 13 | 14 | Navigation steps. 15 | 16 | 17 | -------------------------------------------------------------------------------- /components/switch/demo/loading.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 4 3 | title: 4 | zh-CN: 加载中 5 | en-US: Loading 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 标识开关操作仍在执行中。 11 | 12 | ## en-US 13 | 14 | Mark a pending state of switch. 15 | -------------------------------------------------------------------------------- /components/tag/demo/icon.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 7 3 | title: 4 | zh-CN: 图标按钮 5 | en-US: Icon 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 在 tag 组件内嵌入 icon。 11 | 12 | 13 | ## en-US 14 | 15 | Tag components can contain an icon. -------------------------------------------------------------------------------- /components/time-picker/demo/value.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | title: 4 | zh-CN: 数据绑定 5 | en-US: Data binding 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 可以进行双向绑定。 11 | 12 | ## en-US 13 | 14 | Work with two-way binding. 15 | -------------------------------------------------------------------------------- /components/timeline/demo/alternate.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 3 3 | title: 4 | zh-CN: 交替展现 5 | en-US: Alternate 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 内容在时间轴两侧交替出现。 11 | 12 | ## en-US 13 | 14 | Alternate timeline. 15 | 16 | -------------------------------------------------------------------------------- /components/tree-view/demo/virtual-scroll.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 7 3 | title: 4 | zh-CN: 虚拟滚动 5 | en-US: Virtual Scroll 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 使用虚拟滚动。 11 | 12 | ## en-US 13 | 14 | Use virtual scroll. 15 | -------------------------------------------------------------------------------- /components/typography/demo/ellipsis.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 3 3 | title: 4 | zh-CN: 省略号 5 | en-US: ellipsis 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 多行文本省略。 11 | 12 | ## en-US 13 | 14 | Multiple line ellipsis support. 15 | -------------------------------------------------------------------------------- /scripts/site/_site/iframe/app/app.component.ts: -------------------------------------------------------------------------------- 1 | import { Component } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'app-root', 5 | templateUrl: './app.component.html' 6 | }) 7 | export class AppComponent {} 8 | -------------------------------------------------------------------------------- /components/alert/demo/closable.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 2 3 | title: 4 | zh-CN: 可关闭的警告提示 5 | en-US: Closable 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 显示关闭按钮,点击可关闭警告提示。 11 | 12 | ## en-US 13 | 14 | To show close button. 15 | 16 | -------------------------------------------------------------------------------- /components/badge/demo/status.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 6 3 | title: 4 | zh-CN: 状态点 5 | en-US: Status 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 用于表示状态的小圆点。 11 | 12 | ## en-US 13 | 14 | Standalone badge with status. 15 | 16 | 17 | -------------------------------------------------------------------------------- /components/card/demo/grid-card.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 6 3 | title: 4 | zh-CN: 网格型内嵌卡片 5 | en-US: Grid card 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 一种常见的卡片内容区隔模式。 11 | 12 | ## en-US 13 | 14 | Grid style card content. 15 | 16 | -------------------------------------------------------------------------------- /components/card/demo/tabs.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 8 3 | title: 4 | zh-CN: 带页签的卡片 5 | en-US: With tabs 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 可承载更多内容。 11 | 12 | ## en-US 13 | 14 | More content can be hosted. 15 | 16 | 17 | -------------------------------------------------------------------------------- /components/cascader/demo/search.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 11 3 | title: 4 | zh-CN: 搜索 5 | en-US: Search 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 可以直接搜索选项并选择。 11 | 12 | ## en-US 13 | 14 | Search and select an option directly. 15 | -------------------------------------------------------------------------------- /components/checkbox/demo/disabled.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | title: 4 | zh-CN: 不可用 5 | en-US: Disabled 6 | --- 7 | 8 | ## zh-CN 9 | 10 | checkbox 不可用。 11 | 12 | ## en-US 13 | 14 | Disabled checkbox. 15 | 16 | 17 | -------------------------------------------------------------------------------- /components/core/resize-observers/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | }, 6 | "whitelistedNonPeerDependencies": ["tslib", "resize-observer-polyfill"] 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /components/date-picker/demo/bordered.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 12 3 | title: 4 | zh-CN: 无边框 5 | en-US: Bordered-less 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 无边框样式。 11 | 12 | ## en-US 13 | 14 | Bordered-less style component. 15 | -------------------------------------------------------------------------------- /components/dropdown/demo/basic.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 0 3 | title: 4 | zh-CN: 基本 5 | en-US: Basic 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 最简单的下拉菜单。 11 | 12 | ## en-US 13 | 14 | The most basic dropdown menu. 15 | 16 | 17 | -------------------------------------------------------------------------------- /components/empty/demo/description.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 4 3 | title: 4 | zh-CN: 无描述 5 | en-US: No description 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 无描述展示。 11 | 12 | ## en-US 13 | 14 | Simplest Usage with no description. 15 | -------------------------------------------------------------------------------- /components/graph/demo/customized.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | title: 4 | zh-CN: 自定义 5 | en-US: Custom graph node 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 自定义 node 样式。 11 | 12 | ## en-US 13 | 14 | Custom node style of graph. 15 | -------------------------------------------------------------------------------- /components/grid/demo/flex-align.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 5 3 | title: 4 | zh-CN: 对齐 5 | en-US: Alignment 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 子元素垂直对齐。 11 | 12 | ## en-US 13 | 14 | Child elements vertically aligned. 15 | 16 | -------------------------------------------------------------------------------- /components/input-number/demo/precision.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 5 3 | title: 4 | zh-CN: 精度 5 | en-US: Precision 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 指定 value 的精度 11 | 12 | ## en-US 13 | 14 | Set precision of the value 15 | -------------------------------------------------------------------------------- /components/list/demo/resposive.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 5 3 | title: 4 | zh-CN: 响应式的栅格列表 5 | en-US: Responsive grid list 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 响应式的栅格列表。 11 | 12 | ## en-US 13 | 14 | Responsive grid list. 15 | -------------------------------------------------------------------------------- /components/modal/demo/manual.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 8 3 | title: 4 | zh-CN: 手动移除 5 | en-US: Manual to destroy 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 手动关闭modal。 11 | 12 | ## en-US 13 | 14 | Manually destroying a modal. 15 | -------------------------------------------------------------------------------- /components/progress/demo/circle.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | title: 4 | zh-CN: 进度圈 5 | en-US: Circular progress bar 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 圈形的进度。 11 | 12 | ## en-US 13 | 14 | A circular progress bar. 15 | 16 | -------------------------------------------------------------------------------- /components/result/demo/fot.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 4 3 | title: 4 | zh-CN: 403 5 | en-US: 403 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 你没有此页面的访问权限。 11 | 12 | ## en-US 13 | 14 | You are not authorized to access this page. 15 | -------------------------------------------------------------------------------- /components/select/demo/border-less.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 21 3 | title: 4 | zh-CN: 无边框 5 | en-US: Bordered-less 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 无边框样式。 11 | 12 | ## en-US 13 | 14 | Bordered-less style component. 15 | -------------------------------------------------------------------------------- /components/table/demo/basic.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 0 3 | title: 4 | en-US: Basic Usage 5 | zh-CN: 基本用法 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 简单的表格,最后一列是各种操作。 11 | 12 | ## en-US 13 | 14 | Simple table with actions. 15 | 16 | -------------------------------------------------------------------------------- /components/tag/demo/hot-tags.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 4 3 | title: 4 | zh-CN: 热门标签 5 | en-US: Hot Tags 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 选择你感兴趣的话题。 11 | 12 | ## en-US 13 | 14 | Select your favourite topics. 15 | 16 | 17 | -------------------------------------------------------------------------------- /components/tree-select/demo/checkable.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 3 3 | title: 4 | zh-CN: 可勾选 5 | en-US: Checkable 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 使用勾选框实现多选功能。 11 | 12 | ## en-US 13 | 14 | Multiple and checkable. 15 | 16 | -------------------------------------------------------------------------------- /components/tree-view/demo/editable.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 5 3 | title: 4 | zh-CN: 可编辑 5 | en-US: editable 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 带添加和删除功能的树。 11 | 12 | ## en-US 13 | 14 | Tree with add and delete actions. 15 | -------------------------------------------------------------------------------- /components/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./tsconfig.lib.json", 3 | "compilerOptions": { 4 | "declarationMap": false 5 | }, 6 | "angularCompilerOptions": { 7 | "enableIvy": false 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /components/typography/demo/text.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 2 3 | title: 4 | zh-CN: 文本组件 5 | en-US: Text Component 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 内置不同样式的文本。 11 | 12 | ## en-US 13 | 14 | Provides multiple types of text. 15 | -------------------------------------------------------------------------------- /schematics/ng-update/data/attribute-selectors.ts: -------------------------------------------------------------------------------- 1 | import { AttributeSelectorUpgradeData, VersionChanges } from '@angular/cdk/schematics'; 2 | 3 | export const attributeSelectors: VersionChanges = {}; 4 | -------------------------------------------------------------------------------- /scripts/schematics/template/schema.ts.template: -------------------------------------------------------------------------------- 1 | import { ZorroComponentOptions } from '../../utils/build-component'; 2 | 3 | export interface Schema extends ZorroComponentOptions { 4 | [key: string]: string | boolean; 5 | } 6 | -------------------------------------------------------------------------------- /components/affix/demo/on-change.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | title: 4 | zh-CN: 固定状态改变的回调 5 | en-US: Callback 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 可以获得是否固定的状态。 11 | 12 | ## en-US 13 | 14 | Callback with affixed state. 15 | 16 | -------------------------------------------------------------------------------- /components/alert/demo/basic.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 0 3 | title: 4 | zh-CN: 基本 5 | en-US: Basic 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 最简单的用法,适用于简短的警告提示。 11 | 12 | ## en-US 13 | 14 | The simplest usage for short messages. 15 | 16 | -------------------------------------------------------------------------------- /components/cascader/demo/basic.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 0 3 | title: 4 | zh-CN: 基本 5 | en-US: Basic 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 省市区级联。 11 | 12 | ## en-US 13 | 14 | Cascade selection box for selecting province/city/district. -------------------------------------------------------------------------------- /components/cascader/demo/size.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 6 3 | title: 4 | zh-CN: 大小 5 | en-US: Size 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 不同大小的级联选择器。 11 | 12 | ## en-US 13 | 14 | Cascade selection box of different sizes. 15 | 16 | -------------------------------------------------------------------------------- /components/cascader/demo/trigger.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 2 3 | title: 4 | zh-CN: 可以自定义显示 5 | en-US: Custom trigger 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 切换按钮和结果分开。 11 | 12 | ## en-US 13 | 14 | Separate trigger button and result. -------------------------------------------------------------------------------- /components/date-picker/demo/disabled.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 6 3 | title: 4 | zh-CN: 禁用 5 | en-US: Disabled 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 选择框的不可用状态。 11 | 12 | ## en-US 13 | 14 | A disabled state of the `DatePicker`. 15 | -------------------------------------------------------------------------------- /components/dropdown/demo/item.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 2 3 | title: 4 | zh-CN: 其他元素 5 | en-US: Other elements 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 分割线和不可用菜单项。 11 | 12 | ## en-US 13 | 14 | Divider and disabled menu item. 15 | 16 | -------------------------------------------------------------------------------- /components/image/demo/fallback.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | title: 4 | zh-CN: 容错处理 5 | en-US: Fault tolerant 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 加载失败显示图像占位符。 11 | 12 | ## en-US 13 | 14 | Load failed to display image placeholder. -------------------------------------------------------------------------------- /components/layout/demo/basic.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 0 3 | title: 4 | zh-CN: 基本结构 5 | en-US: Basic Structure 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 典型的页面布局。 11 | 12 | ## en-US 13 | 14 | Classic page layouts. 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /components/menu/demo/vertical.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 3 3 | title: 4 | zh-CN: 垂直菜单 5 | en-US: Vertical menu 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 子菜单是弹出的形式。 11 | 12 | ## en-US 13 | 14 | Submenus open as pop-ups. 15 | 16 | 17 | -------------------------------------------------------------------------------- /components/progress/demo/dynamic.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 4 3 | title: 4 | zh-CN: 动态展示 5 | en-US: Dynamic 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 会动的进度条才是好进度条。 11 | 12 | ## en-US 13 | 14 | A dynamic progress bar is better. 15 | 16 | -------------------------------------------------------------------------------- /components/radio/demo/solid.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 9 3 | title: 4 | zh-CN: 填底的按钮样式 5 | en-US: Solid radio button 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 实色填底的单选按钮样式。 11 | 12 | ## en-US 13 | 14 | Solid radio button style. 15 | 16 | -------------------------------------------------------------------------------- /components/resizable/demo/preview.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 3 3 | title: 4 | zh-CN: 预览 5 | en-US: Preview 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 在应用尺寸前预览。 11 | 12 | ## en-US 13 | 14 | Preview before apply size. 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /components/select/demo/scroll-load.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 17 3 | title: 4 | zh-CN: 下拉加载 5 | en-US: Load Data on Scroll 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 一个带有下拉加载远程数据的例子。 11 | 12 | ## en-US 13 | 14 | Load data on scroll. 15 | -------------------------------------------------------------------------------- /components/statistic/demo/unit.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | title: 4 | zh-CN: 单位 5 | en-US: Unit 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 通过前缀和后缀添加单位。 11 | 12 | ## en-US 13 | 14 | Add unit through `nzPrefix` and `nzSuffix`. 15 | -------------------------------------------------------------------------------- /components/switch/demo/disabled.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | title: 4 | zh-CN: 不可用 5 | en-US: Disabled 6 | --- 7 | 8 | ## zh-CN 9 | 10 | Switch 失效状态。 11 | 12 | ## en-US 13 | 14 | Disabled state of `Switch`. 15 | 16 | 17 | -------------------------------------------------------------------------------- /components/time-picker/demo/disabled.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 3 3 | title: 4 | zh-CN: 禁用 5 | en-US: disabled 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 禁用时间选择。 11 | 12 | ## en-US 13 | 14 | A disabled state of the `nz-time-picker`. 15 | -------------------------------------------------------------------------------- /components/time-picker/demo/module: -------------------------------------------------------------------------------- 1 | import { NzTimePickerModule } from 'ng-zorro-antd/time-picker'; 2 | import { NzButtonModule } from 'ng-zorro-antd/button'; 3 | 4 | export const moduleList = [ NzTimePickerModule, NzButtonModule ]; 5 | -------------------------------------------------------------------------------- /components/timeline/demo/right.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 5 3 | title: 4 | zh-CN: 右侧时间轴点 5 | en-US: Right alternate 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 时间轴可以在内容的右边。 11 | 12 | ## en-US 13 | 14 | Right alternate timeline. 15 | 16 | -------------------------------------------------------------------------------- /components/tooltip/demo/placement.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | title: 4 | zh-CN: 位置 5 | en-US: Placement 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 位置有 12 个方向。 11 | 12 | ## en-US 13 | 14 | The ToolTip has 12 placements choice. 15 | -------------------------------------------------------------------------------- /components/typography/demo/title.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | title: 4 | zh-CN: 标题组件 5 | en-US: Title Component 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 展示不同级别的标题。 11 | 12 | ## en-US 13 | 14 | Display title in different level. 15 | -------------------------------------------------------------------------------- /scripts/site/template/example-split.template.html: -------------------------------------------------------------------------------- 1 |
2 |
3 | {{first}} 4 |
5 |
6 | {{second}} 7 |
8 |
9 | -------------------------------------------------------------------------------- /components/auto-complete/demo/custom.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 2 3 | title: 4 | zh-CN: 自定义输入组件 5 | en-US: Customize Input Component 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 自定义输入组件。 11 | 12 | ## en-US 13 | 14 | Customize Input Component 15 | -------------------------------------------------------------------------------- /components/avatar/demo/badge.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 3 3 | title: 4 | zh-CN: 带徽标的头像 5 | en-US: With Badge 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 通常用于消息提示。 11 | 12 | ## en-US 13 | 14 | Usually used for messages remind. 15 | 16 | 17 | -------------------------------------------------------------------------------- /components/avatar/demo/basic.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 0 3 | title: 4 | zh-CN: 基本 5 | en-US: Basic 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 头像有三种尺寸,两种形状可选。 11 | 12 | ## en-US 13 | 14 | Three sizes and two shapes are available. 15 | 16 | -------------------------------------------------------------------------------- /components/badge/demo/change.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 4 3 | title: 4 | zh-CN: 动态 5 | en-US: Dynamic 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 展示动态变化的效果。 11 | 12 | ## en-US 13 | 14 | The count will be animated as it changes. 15 | 16 | 17 | -------------------------------------------------------------------------------- /components/carousel/demo/position.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | title: 4 | zh-CN: 位置 5 | en-US: Position 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 位置有 4 个方向。 11 | 12 | ## en-US 13 | 14 | There are four positions available. 15 | 16 | 17 | -------------------------------------------------------------------------------- /components/cascader/demo/custom-field-names.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 16 3 | title: 4 | zh-CN: 自定义字段名 5 | en-US: Custom Field Names 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 自定义字段名。 11 | 12 | ## en-US 13 | 14 | Custom field names. 15 | 16 | -------------------------------------------------------------------------------- /components/cascader/demo/modal.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 11 3 | title: 4 | zh-CN: 模态窗口 5 | en-US: Modal Dialog 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 在模态窗口中使用级联控件。 11 | 12 | ## en-US 13 | 14 | Show Cascade selection box in a modal dialog. -------------------------------------------------------------------------------- /components/collapse/demo/borderless.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 3 3 | title: 4 | zh-CN: 简洁风格 5 | en-US: Borderless 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 一套没有边框的简洁样式。 11 | 12 | ## en-US 13 | 14 | A borderless style of Collapse. 15 | 16 | -------------------------------------------------------------------------------- /components/dropdown/demo/context-menu.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 8 3 | title: 4 | zh-CN: 右键菜单 5 | en-US: Context Menu 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 在区域内任意右击触发。 11 | 12 | ## en-US 13 | 14 | Trigger `dropdown` with contextmenu. 15 | -------------------------------------------------------------------------------- /components/dropdown/demo/sub-menu.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 6 3 | title: 4 | zh-CN: 多级菜单 5 | en-US: Cascading menu 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 传入的菜单里有多个层级。 11 | 12 | ## en-US 13 | 14 | The menu has multiple levels. 15 | 16 | -------------------------------------------------------------------------------- /components/graph/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "entryFile": "public-api.ts" 5 | } 6 | }, 7 | "peerDependencies": { 8 | "dagre-compound": "0.0.4", 9 | "d3": "^6.2.0" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /components/grid/demo/flex-order.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 6 3 | title: 4 | zh-CN: 排序 5 | en-US: Order 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 通过 `nzOrder` 来改变元素的排序。 11 | 12 | ## en-US 13 | 14 | To change the element sort by `nzOrder`. 15 | -------------------------------------------------------------------------------- /components/input-number/demo/module: -------------------------------------------------------------------------------- 1 | import { NzInputNumberModule } from 'ng-zorro-antd/input-number'; 2 | import { NzButtonModule } from 'ng-zorro-antd/button'; 3 | 4 | export const moduleList = [ NzInputNumberModule, NzButtonModule ]; 5 | -------------------------------------------------------------------------------- /components/input/demo/addon.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 2 3 | title: 4 | zh-CN: 前置/后置标签 5 | en-US: Pre / Post tab 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 用于配置一些固定组合。 11 | 12 | ## en-US 13 | 14 | Using pre & post tabs example. 15 | 16 | -------------------------------------------------------------------------------- /components/menu/demo/inline.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | title: 4 | zh-CN: 内嵌菜单 5 | en-US: Inline menu 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 垂直菜单,子菜单内嵌在菜单区域。 11 | 12 | ## en-US 13 | 14 | Vertical menu with inline submenus. 15 | 16 | -------------------------------------------------------------------------------- /components/pipes/demo/bytes.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | title: 4 | zh-CN: nzBytes 5 | en-US: nzBytes 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 存储单位的换算,增加可读性 11 | 12 | ## en-US 13 | 14 | Conversion of storage units to increase readability -------------------------------------------------------------------------------- /components/popconfirm/demo/placement.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 2 3 | title: 4 | zh-CN: 位置 5 | en-US: Placement 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 位置有十二个方向。 11 | 12 | ## en-US 13 | 14 | There are 12 placement options available. 15 | -------------------------------------------------------------------------------- /components/progress/demo/segment.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 9 3 | title: 4 | zh-CN: 分段进度条 5 | en-US: Progress bar with success segment 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 标准的进度条。 11 | 12 | ## en-US 13 | 14 | A standard progress bar. 15 | -------------------------------------------------------------------------------- /components/progress/demo/step.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 11 3 | title: 4 | zh-CN: 步骤进度条 5 | en-US: Progress bar with steps 6 | 7 | --- 8 | 9 | ## zh-CN 10 | 11 | 带步骤的进度条。 12 | 13 | ## en-US 14 | 15 | A progress bar with steps. 16 | -------------------------------------------------------------------------------- /components/rate/demo/disabled.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 3 3 | title: 4 | zh-CN: 只读 5 | en-US: Read only 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 只读,无法进行鼠标交互。 11 | 12 | ## en-US 13 | 14 | Read only, can't use mouse to interact. 15 | 16 | -------------------------------------------------------------------------------- /components/spin/demo/tip.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 4 3 | title: 4 | zh-CN: 自定义描述文案 5 | en-US: Customized description 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 自定义描述文案。 11 | 12 | ## en-US 13 | 14 | Customized description content. 15 | 16 | -------------------------------------------------------------------------------- /components/steps/demo/progress-dot.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 8 3 | title: 4 | zh-CN: 点状步骤条 5 | en-US: Dot Style 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 包含步骤点的进度条。 11 | 12 | ## en-US 13 | 14 | Steps with progress dot style. 15 | 16 | 17 | -------------------------------------------------------------------------------- /components/tabs/demo/link-router.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 13 3 | title: 4 | zh-CN: 路由联动 5 | en-US: With Router 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 与路由联动,点击 tab 更改路由,并且在路由改变时自动切换 tab。 11 | 12 | ## en-US 13 | 14 | Link with router. 15 | -------------------------------------------------------------------------------- /components/transfer/demo/search.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | title: 4 | zh-CN: 带搜索框 5 | en-US: Search 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 带搜索框的穿梭框,可以自定义搜索函数。 11 | 12 | ## en-US 13 | 14 | Transfer with a search box. 15 | 16 | 17 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Enforce Unix newlines 2 | *.css text eol=lf 3 | *.html text eol=lf 4 | *.js text eol=lf 5 | *.ts text eol=lf 6 | *.json text eol=lf 7 | *.less text eol=lf 8 | *.md text eol=lf 9 | *.yml text eol=lf 10 | -------------------------------------------------------------------------------- /components/anchor/demo/static.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 2 3 | title: 4 | zh-CN: 静态位置 5 | en-US: Static Anchor 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 不浮动,状态不随页面滚动变化。 11 | 12 | ## en-US 13 | 14 | Do not change state when page is scrolling. 15 | -------------------------------------------------------------------------------- /components/calendar/demo/basic.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 0 3 | title: 4 | zh-CN: 基本 5 | en-US: Basic 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 一个通用的日历面板,支持年/月切换。 11 | 12 | ## en-US 13 | 14 | A basic calendar component with Year/Month switch. 15 | -------------------------------------------------------------------------------- /components/cascader/demo/hover.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 3 3 | title: 4 | zh-CN: 移入展开 5 | en-US: Hover 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 通过移入展开下级菜单,点击完成选择。 11 | 12 | ## en-US 13 | 14 | Hover to expand sub menu, click to select option. 15 | -------------------------------------------------------------------------------- /components/collapse/demo/mix.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 2 3 | title: 4 | zh-CN: 面板嵌套 5 | en-US: Nested panel 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 嵌套折叠面板。 11 | 12 | ## en-US 13 | 14 | `Collapse` is nested inside the `Collapse`. 15 | 16 | 17 | -------------------------------------------------------------------------------- /components/descriptions/demo/border.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | title: 4 | zh-CN: 带边框的 5 | en-US: Border 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 带边框和背景颜色列表。 11 | 12 | ## en-US 13 | 14 | Descriptions with border and background color. 15 | -------------------------------------------------------------------------------- /components/descriptions/demo/vertical-border.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 5 3 | title: 4 | zh-CN: 垂直边框 5 | en-US: Vertical border 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 垂直且带边框。 11 | 12 | ## en-US 13 | 14 | Vertical descriptions with border. 15 | -------------------------------------------------------------------------------- /components/drawer/demo/placement.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | title: 4 | zh-CN: 自定义位置 5 | en-US: Custom Placement 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 自定义位置,点击触发按钮抽屉从相应的位置滑出,点击遮罩区关闭 11 | 12 | ## en-US 13 | 14 | Basic drawer. 15 | 16 | -------------------------------------------------------------------------------- /components/rate/demo/clear.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 4 3 | title: 4 | zh-CN: 清除 5 | en-US: Clear star 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 支持允许或者禁用清除。 11 | 12 | ## en-US 13 | 14 | Support set allow to clear star when click again. 15 | 16 | -------------------------------------------------------------------------------- /components/rate/demo/text.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 2 3 | title: 4 | zh-CN: 文案展现 5 | en-US: Show copywriting 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 给评分组件加上文案展示。 11 | 12 | ## en-US 13 | 14 | Add copywriting in rate components. 15 | 16 | 17 | -------------------------------------------------------------------------------- /components/steps/demo/vertical.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 4 3 | title: 4 | zh-CN: 竖直方向的步骤条 5 | en-US: Vertical 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 简单的竖直方向的步骤条。 11 | 12 | ## en-US 13 | 14 | A simple step bar in the vertical direction. 15 | -------------------------------------------------------------------------------- /components/table/demo/nested-table.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 24 3 | title: 4 | en-US: Nested tables 5 | zh-CN: 嵌套子表格 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 展示每行数据更详细的信息。 11 | 12 | ## en-US 13 | 14 | Showing more detailed info of every row. 15 | -------------------------------------------------------------------------------- /components/tree/demo/basic-controlled.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | title: 4 | zh-CN: 受控操作示例 5 | en-US: basic controlled example 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 受控操作示例(默认)。 11 | 12 | ## en-US 13 | 14 | basic controlled example. 15 | -------------------------------------------------------------------------------- /components/upload/demo/upload-with-aliyun-oss.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 11 3 | title: 4 | zh-CN: 阿里云 OSS 5 | en-US: Aliyun OSS 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 使用阿里云 OSS 上传示例. 11 | 12 | ## en-US 13 | 14 | Use Aliyun OSS upload example. -------------------------------------------------------------------------------- /scripts/site/_site/doc/style/rtl.less: -------------------------------------------------------------------------------- 1 | [data-direction='rtl'] { 2 | #_hj_feedback_container { 3 | > div { 4 | left: 32px; 5 | } 6 | } 7 | .fixed-widgets { 8 | right: auto; 9 | left: 32px; 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /components/card/demo/border-less.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | title: 4 | zh-CN: 无边框 5 | en-US: No border 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 在灰色背景上使用无边框的卡片。 11 | 12 | ## en-US 13 | 14 | A borderless card on a gray background. 15 | 16 | 17 | -------------------------------------------------------------------------------- /components/card/demo/simple.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 2 3 | title: 4 | zh-CN: 简洁卡片 5 | en-US: Simple card 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 只包含内容区域。 11 | 12 | ## en-US 13 | 14 | A simple card only containing a content area. 15 | 16 | 17 | -------------------------------------------------------------------------------- /components/carousel/demo/autoplay.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 3 3 | title: 4 | zh-CN: 自动切换 5 | en-US: Scroll automatically 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 定时切换下一张。 11 | 12 | ## en-US 13 | 14 | Timing of scrolling to the next card/picture. 15 | -------------------------------------------------------------------------------- /components/cascader/demo/default-value.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | title: 4 | zh-CN: 默认值 5 | en-US: Default value 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 默认值通过数组的方式指定。 11 | 12 | ## en-US 13 | 14 | Specifies default value by an array. 15 | 16 | -------------------------------------------------------------------------------- /components/collapse/demo/ghost.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 6 3 | title: 4 | zh-CN: 幽灵折叠面板 5 | en-US: Ghost Collapse 6 | --- 7 | 8 | 9 | ## zh-CN 10 | 11 | 将折叠面板的背景变成透明。 12 | 13 | ## en-US 14 | 15 | Making collapse's background to transparent. -------------------------------------------------------------------------------- /components/form/demo/dynamic-form-item.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 5 3 | title: 4 | zh-CN: 动态增减表单项 5 | en-US: Dynamic Form Item 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 动态增加、减少表单项。 11 | 12 | ## en-US 13 | 14 | Add or remove form items dynamically. 15 | -------------------------------------------------------------------------------- /components/form/demo/normal-login.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | title: 4 | zh-CN: 登录框 5 | en-US: Login Form 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 普通的登录框,可以容纳更多的元素。 11 | 12 | ## en-US 13 | 14 | Normal login form which can contain more elements. -------------------------------------------------------------------------------- /components/image/demo/placeholder.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 3 3 | title: 4 | zh-CN: 渐进加载 5 | en-US: Progressive Loading 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 大图使用 placeholder 渐进加载。 11 | 12 | ## en-US 13 | 14 | Progressive when large image loading. -------------------------------------------------------------------------------- /components/input/demo/allow-clear.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 11 3 | title: 4 | zh-CN: 带移除图标 5 | en-US: With clear icon 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 带移除图标的输入框,点击图标删除所有内容。 11 | 12 | ## en-US 13 | 14 | Input with clear icon. 15 | 16 | -------------------------------------------------------------------------------- /components/list/demo/loadmore.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 2 3 | title: 4 | zh-CN: 加载更多 5 | en-US: Load more 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 可通过 `loadMore` 属性实现加载更多功能。 11 | 12 | ## en-US 13 | 14 | Load more list with `loadMore` property. 15 | -------------------------------------------------------------------------------- /components/popover/demo/placement.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 2 3 | title: 4 | zh-CN: 位置 5 | en-US: Placement 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 位置有十二个方向。 11 | 12 | ## en-US 13 | 14 | There are 12 `placement` options available. 15 | 16 | 17 | -------------------------------------------------------------------------------- /components/progress/demo/line-mini.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 2 3 | title: 4 | zh-CN: 小型进度条 5 | en-US: Mini size progress bar 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 适合放在较狭窄的区域内。 11 | 12 | ## en-US 13 | 14 | Appropriate for a narrow area. 15 | 16 | -------------------------------------------------------------------------------- /components/radio/demo/radiobutton.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 3 3 | title: 4 | zh-CN: 按钮样式 5 | en-US: Radio Style 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 按钮样式的单选组合。 11 | 12 | ## en-US 13 | 14 | The combination of radio button style. 15 | 16 | 17 | -------------------------------------------------------------------------------- /components/resizable/demo/lock-aspect-ratio.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 2 3 | title: 4 | zh-CN: 锁定比例 5 | en-US: Lock Aspect Ratio 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 锁定宽高比。 11 | 12 | ## en-US 13 | 14 | Lock the resize aspect ratio. 15 | 16 | 17 | -------------------------------------------------------------------------------- /components/select/demo/search.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | title: 4 | zh-CN: 带搜索框 5 | en-US: Select with search field 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 展开后可对选项进行搜索。 11 | 12 | ## en-US 13 | 14 | Search the options while expanded. 15 | 16 | -------------------------------------------------------------------------------- /components/skeleton/demo/children.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 4 3 | title: 4 | zh-CN: 包含子组件 5 | en-US: Contains sub component 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 加载占位图包含子组件。 11 | 12 | ## en-US 13 | 14 | Skeleton contains sub component. 15 | -------------------------------------------------------------------------------- /scripts/release-helper.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | rm -rf archive-docs 3 | git clone https://github.com/NG-ZORRO/archive-docs.git 4 | cp -r archive-docs/issue-helper dist/issue-helper 5 | cp -r archive-docs/version dist/version 6 | rm -rf archive-docs -------------------------------------------------------------------------------- /components/affix/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/alert/demo/description.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 3 3 | title: 4 | zh-CN: 含有辅助性文字介绍 5 | en-US: Description 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 含有辅助性文字介绍的警告提示。 11 | 12 | ## en-US 13 | 14 | Additional description for alert message. 15 | 16 | -------------------------------------------------------------------------------- /components/alert/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/anchor/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/avatar/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/badge/demo/link.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 3 3 | title: 4 | zh-CN: 可点击 5 | en-US: Clickable 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 用 a 标签进行包裹即可。 11 | 12 | ## en-US 13 | 14 | The badge can be wrapped with `a` tag to make it linkable. 15 | 16 | -------------------------------------------------------------------------------- /components/badge/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/breadcrumb/demo/with-icon.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | title: 4 | zh-CN: 带有图标的 5 | en-US: With an Icon 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 图标放在文字前面。 11 | 12 | ## en-US 13 | 14 | The icon should be placed in front of the text. 15 | 16 | -------------------------------------------------------------------------------- /components/button/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/calendar/demo/card.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 2 3 | title: 4 | zh-CN: 卡片模式 5 | en-US: Card 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 用于嵌套在空间有限的容器中。 11 | 12 | ## en-US 13 | 14 | Nested inside a container element for rendering in limited space. 15 | -------------------------------------------------------------------------------- /components/card/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/cascader/demo/change-on-select.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 5 3 | title: 4 | zh-CN: 选择即改变 5 | en-US: Change on select 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 这种交互允许只选中父级选项。 11 | 12 | ## en-US 13 | 14 | Allow only select parent options. 15 | 16 | -------------------------------------------------------------------------------- /components/cascader/demo/custom-template.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 17 3 | title: 4 | zh-CN: 自定义选择项 5 | en-US: Custom option template 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 自定义选项的模板。 11 | 12 | ## en-US 13 | 14 | Custom cascader option template. 15 | 16 | -------------------------------------------------------------------------------- /components/cascader/demo/reactive-form.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 8 3 | title: 4 | zh-CN: 响应表单 5 | en-US: ReactiveForm 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 通过表单的`重置`功能清空已选择的值。 11 | 12 | ## en-US 13 | 14 | Reset control value by Ng Reactive Form. 15 | -------------------------------------------------------------------------------- /components/code-editor/demo/complex.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 4 3 | title: 4 | zh-CN: 复杂 5 | en-US: Complex 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 带加载效果和工具条的更复杂的例子。 11 | 12 | ## en-US 13 | 14 | A more complex demo with loading effect and toolkit. 15 | -------------------------------------------------------------------------------- /components/date-picker/style/entry.less: -------------------------------------------------------------------------------- 1 | @import './index.less'; 2 | // style dependencies 3 | // deps-lint-skip: input 4 | @import '../../input/style/entry.less'; 5 | @import '../../time-picker/style/entry.less'; 6 | @import '../../tag/style/entry.less'; 7 | -------------------------------------------------------------------------------- /components/divider/demo/orientation.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | title: 4 | zh-CN: 标题位置 5 | en-US: Orientation of title 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 修改分割线标题的位置。 11 | 12 | ## en-US 13 | 14 | Set orientation of divider to left or right. 15 | -------------------------------------------------------------------------------- /components/drawer/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/empty/demo/basic.ts: -------------------------------------------------------------------------------- 1 | import { Component } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'nz-demo-empty-basic', 5 | template: ` 6 | 7 | ` 8 | }) 9 | export class NzDemoEmptyBasicComponent {} 10 | -------------------------------------------------------------------------------- /components/empty/demo/customize.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 2 3 | title: 4 | zh-CN: 自定义 5 | en-US: Customize 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 自定义图片、描述、附属内容。 11 | 12 | ## en-US 13 | 14 | Customize image, description and extra content. 15 | 16 | 17 | -------------------------------------------------------------------------------- /components/empty/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/empty/style/rtl.less: -------------------------------------------------------------------------------- 1 | @import '../../style/themes/index'; 2 | @import '../../style/mixins/index'; 3 | 4 | @empty-prefix-cls: ~'@{ant-prefix}-empty'; 5 | 6 | .@{empty-prefix-cls} { 7 | &-rtl { 8 | direction: rtl; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /components/form/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/form/style/horizontal.less: -------------------------------------------------------------------------------- 1 | @import './index'; 2 | 3 | .@{form-prefix-cls}-horizontal { 4 | .@{form-item-prefix-cls}-label { 5 | flex-grow: 0; 6 | } 7 | .@{form-item-prefix-cls}-control { 8 | flex: 1 1 0; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /components/graph/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/grid/demo/playground.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 9 3 | title: 4 | zh-CN: 栅格配置器 5 | en-US: Playground 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 可以简单配置几种等分栅格和间距。 11 | 12 | ## en-US 13 | 14 | A simple playground for column count and gutter. 15 | 16 | -------------------------------------------------------------------------------- /components/grid/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/i18n/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/icon/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/icon/page/zh-CN.txt: -------------------------------------------------------------------------------- 1 | { 2 | chooseTheme: '选择图标主题风格', 3 | direction: '方向性图标', 4 | suggestion: '提示建议性图标', 5 | edit: '编辑类图标', 6 | data: '数据类图标', 7 | other: '网站通用图标', 8 | logo: '品牌和标识', 9 | search: '在此搜索图标,点击图标可复制代码' 10 | } 11 | -------------------------------------------------------------------------------- /components/image/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/input/demo/presuffix.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 8 3 | title: 4 | zh-CN: 前缀和后缀 5 | en-US: prefix and suffix 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 在输入框上添加前缀或后缀图标。 11 | 12 | ## en-US 13 | 14 | Add prefix or suffix icons inside input. 15 | -------------------------------------------------------------------------------- /components/input/demo/textarea-with-character-count.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 12 3 | title: 4 | zh-CN: 带数字提示的文本域 5 | en-US: Textarea with character count 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 展示数字提示。 11 | 12 | ## en-US 13 | 14 | Show character count. -------------------------------------------------------------------------------- /components/input/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/layout/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/list/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/menu/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/modal/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/pagination/demo/item-render.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 10 3 | title: 4 | zh-CN: 上一步和下一步 5 | en-US: Prev and next 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 修改上一步和下一步为文字链接。 11 | 12 | ## en-US 13 | 14 | Use text link for prev and next button. 15 | -------------------------------------------------------------------------------- /components/pipes/demo/ellipsis.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 3 3 | title: 4 | zh-CN: nzEllipsis 5 | en-US: nzEllipsis 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 截断字符串,用指定的字符串结尾 11 | 12 | ## en-US 13 | 14 | Truncate the string, ending with the specified string -------------------------------------------------------------------------------- /components/pipes/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/popover/demo/trigger-type.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 6 3 | title: 4 | zh-CN: 三种触发方式 5 | en-US: Three ways to trigger 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 鼠标移入、聚集、点击。 11 | 12 | ## en-US 13 | 14 | Mouse to click, focus and move in. 15 | 16 | -------------------------------------------------------------------------------- /components/progress/demo/circle-mini.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 3 3 | title: 4 | zh-CN: 小型进度圈 5 | en-US: Mini size circular progress bar 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 小一号的圈形进度。 11 | 12 | ## en-US 13 | 14 | A smaller circular progress bar. 15 | -------------------------------------------------------------------------------- /components/radio/demo/radiogroup.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | title: 4 | zh-CN: 单选组合 5 | en-US: Radio Group 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 一组互斥的 `nz-radio` 配合使用。 11 | 12 | ## en-US 13 | 14 | A group of `nz-radio` components. 15 | 16 | 17 | -------------------------------------------------------------------------------- /components/radio/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/rate/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/result/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/select/demo/options.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 23 3 | title: 4 | zh-CN: 传入 Options 5 | en-US: Input Options 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 通过 `nzOptions` 直接传入选项内容 11 | 12 | ## en-US 13 | 14 | Pass all options via `nzOptions` 15 | 16 | -------------------------------------------------------------------------------- /components/select/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/skeleton/demo/complex.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | title: 4 | zh-CN: 复杂的组合 5 | en-US: Complex combination 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 更复杂的组合。 11 | 12 | ## en-US 13 | 14 | Complex combination with avatar and multiple paragraphs. -------------------------------------------------------------------------------- /components/slider/demo/reverse.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 8 3 | title: 4 | zh-CN: 反向 5 | en-US: Reverse 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 设置 `nzReverse` 可以将滑动条置反。 11 | 12 | ## en-US 13 | 14 | Using `nzReverse` to render slider reversely. 15 | 16 | -------------------------------------------------------------------------------- /components/slider/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/space/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/space/style/rtl.less: -------------------------------------------------------------------------------- 1 | @import '../../style/themes/index'; 2 | @import '../../style/mixins/index'; 3 | 4 | @space-prefix-cls: ~'@{ant-prefix}-space'; 5 | 6 | .@{space-prefix-cls} { 7 | &-rtl { 8 | direction: rtl; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /components/spin/demo/custom-indicator.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 6 3 | title: 4 | zh-CN: 自定义指示符 5 | en-US: Custom spinning indicator 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 使用自定义指示符。 11 | 12 | ## en-US 13 | 14 | Use custom loading indicator. 15 | 16 | -------------------------------------------------------------------------------- /components/spin/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/steps/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/switch/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/table/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/tabs/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/tag/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/timeline/demo/custom.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 4 3 | title: 4 | zh-CN: 自定义时间轴点 5 | en-US: Custom 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 可以设置为图标或其他自定义元素。 11 | 12 | ## en-US 13 | 14 | Set a node as an icon or other custom element. 15 | 16 | -------------------------------------------------------------------------------- /components/tree-view/demo/line.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 4 3 | title: 4 | zh-CN: 带连接线的树 5 | en-US: Tree with line 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 节点之间带连接线的树,常用于文件目录结构展示。 11 | 12 | ## en-US 13 | 14 | Tree with connected line between nodes. 15 | -------------------------------------------------------------------------------- /components/tree/demo/customized-icon.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 7 3 | title: 4 | zh-CN: 自定义图标 5 | en-US: Customize Icon 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 可以针对不同的节点定制图标。 11 | 12 | ## en-US 13 | 14 | You can customize icons for different nodes. 15 | -------------------------------------------------------------------------------- /components/tree/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/upload/demo/directory.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 6 3 | title: 4 | zh-CN: 文件夹上传 5 | en-US: Upload directory 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 支持上传一个文件夹里的所有文件。 11 | 12 | ## en-US 13 | 14 | You can select and upload a whole directory. 15 | -------------------------------------------------------------------------------- /components/upload/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/alert/demo/icon.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 4 3 | title: 4 | zh-CN: 图标 5 | en-US: Icon 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 可口的图标让信息类型更加醒目。 11 | 12 | ## en-US 13 | 14 | Decent icon make information more clear and more friendly. 15 | 16 | 17 | -------------------------------------------------------------------------------- /components/back-top/demo/target.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 4 3 | title: 4 | zh-CN: 滚动容器 5 | en-US: Using nzTarget 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 设置 `nzTarget` 参数,允许对某个容器返回顶部。 11 | 12 | ## en-US 13 | 14 | specifies the scrollable area dom node. 15 | -------------------------------------------------------------------------------- /components/back-top/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/badge/demo/dot.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 3 3 | title: 4 | zh-CN: 讨嫌的小红点 5 | en-US: Red badge 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 没有具体的数字。 11 | 12 | ## en-US 13 | 14 | This will simply display a red badge, without a specific count. 15 | 16 | -------------------------------------------------------------------------------- /components/breadcrumb/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/calendar/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/carousel/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/cascader/demo/trigger-action.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 12 3 | title: 4 | zh-CN: 鼠标移入触发 5 | en-US: Trigger Action 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 鼠标移入触发显示菜单,移出隐藏菜单。 11 | 12 | ## en-US 13 | 14 | Show menu on mouse enter and hide on mouse leave. -------------------------------------------------------------------------------- /components/cascader/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/checkbox/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/code-editor/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/collapse/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/comment/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/core/color/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/core/color/public-api.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './color'; 7 | -------------------------------------------------------------------------------- /components/core/config/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/core/logger/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/core/outlet/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/core/pipe/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/core/time/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/core/tree/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/core/types/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/core/util/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/core/wave/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/date-picker/demo/basic.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 0 3 | title: 4 | zh-CN: 基本 5 | en-US: Basic 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 最简单的用法,在浮层中可以选择或者输入日期。 11 | 12 | ## en-US 13 | 14 | Basic use case. Users can select or input a date in panel. 15 | -------------------------------------------------------------------------------- /components/date-picker/demo/format.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 3 3 | title: 4 | zh-CN: 日期格式 5 | en-US: Date Format 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 使用 `nzFormat` 属性,可以自定义日期显示格式。 11 | 12 | ## en-US 13 | 14 | We can set the date format by `nzFormat`. 15 | -------------------------------------------------------------------------------- /components/date-picker/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/descriptions/demo/custom-size.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 2 3 | title: 4 | zh-CN: 自定义尺寸 5 | en-US: Custom size 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 自定义尺寸,适应在各种容器中展示。 11 | 12 | ## en-US 13 | 14 | Custom sizes to fit in a variety of containers. 15 | -------------------------------------------------------------------------------- /components/divider/demo/vertical.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 2 3 | title: 4 | zh-CN: 垂直分割线 5 | en-US: Vertical 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 使用 `nzType="vertical"` 设置为行内的垂直分割线。 11 | 12 | ## en-US 13 | 14 | Use `nzType="vertical"` make it vertical. 15 | -------------------------------------------------------------------------------- /components/divider/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/dropdown/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/empty/demo/config.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 3 3 | title: 4 | zh-CN: 全局化配置 5 | en-US: Default Config 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 自定义全局组件的 Empty 样式。 11 | 12 | ## en-US 13 | 14 | Use `NzEmptyService` set global Empty style. 15 | 16 | 17 | -------------------------------------------------------------------------------- /components/form/demo/register.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 2 3 | title: 4 | zh-CN: 注册新用户 5 | en-US: Registration 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 用户填写必须的信息以注册新用户。 11 | 12 | ## en-US 13 | 14 | Fill in this form to create a new account for you. 15 | 16 | -------------------------------------------------------------------------------- /components/layout/style/rtl.less: -------------------------------------------------------------------------------- 1 | @import '../../style/themes/index'; 2 | @import '../../style/mixins/index'; 3 | 4 | @layout-prefix-cls: ~'@{ant-prefix}-layout'; 5 | 6 | .@{layout-prefix-cls} { 7 | &-rtl { 8 | direction: rtl; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /components/list/style/entry.less: -------------------------------------------------------------------------------- 1 | @import './index.less'; 2 | @import '../../empty/style/entry.less'; 3 | @import '../../spin/style/entry.less'; 4 | @import '../../pagination/style/entry.less'; 5 | @import '../../grid/style/entry.less'; 6 | @import "./patch"; 7 | -------------------------------------------------------------------------------- /components/mention/demo/controlled.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 4 3 | title: 4 | zh-CN: 配合 Form 使用 5 | en-US: With Form 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 受控模式,例如配合 Form 使用。 11 | 12 | ## en-US 13 | 14 | Controlled mode, for example, to work with `Form`. 15 | -------------------------------------------------------------------------------- /components/mention/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/message/demo/other.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | title: 4 | zh-CN: 其他提示类型 5 | en-US: Other types of message 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 包括成功、失败、警告。 11 | 12 | ## en-US 13 | 14 | Messages of success, error and warning types. 15 | 16 | -------------------------------------------------------------------------------- /components/message/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/page-header/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/pagination/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/popconfirm/demo/custom-icon.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 4 3 | title: 4 | zh-CN: 自定义 icon 图标 5 | en-US: Customize icon 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 使用 `nzIcon` 自定义提示图标。 11 | 12 | ## en-US 13 | 14 | Set `nzIcon` to customize the icon. 15 | -------------------------------------------------------------------------------- /components/popconfirm/demo/dynamic-trigger.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 3 3 | title: 4 | zh-CN: 条件触发 5 | en-US: Conditional trigger 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 可以判断是否需要弹出。 11 | 12 | ## en-US 13 | 14 | Make it pop up under some conditions. 15 | 16 | -------------------------------------------------------------------------------- /components/popconfirm/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/popconfirm/style/index.less: -------------------------------------------------------------------------------- 1 | @import '../../style/themes/index'; 2 | @import '../../style/mixins/index'; 3 | 4 | @popconfirm-prefix-cls: ~'@{ant-prefix}-popconfirm'; 5 | 6 | .@{popconfirm-prefix-cls} { 7 | z-index: @zindex-popoconfirm; 8 | } 9 | -------------------------------------------------------------------------------- /components/popover/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/progress/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/resizable/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/skeleton/demo/element.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 3 3 | title: 4 | zh-CN: 按钮/头像/输入框/图像 5 | en-US: Button/Avatar/Input/Image 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 骨架按钮、头像、输入框和图像。 11 | 12 | ## en-US 13 | 14 | Skeleton button, avatar, input and image. -------------------------------------------------------------------------------- /components/skeleton/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/spin/demo/basic.ts: -------------------------------------------------------------------------------- 1 | import { Component } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'nz-demo-spin-basic', 5 | template: ` 6 | 7 | ` 8 | }) 9 | export class NzDemoSpinBasicComponent {} 10 | -------------------------------------------------------------------------------- /components/statistic/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/table/demo/bordered.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 11 3 | title: 4 | en-US: border, title and footer 5 | zh-CN: 带边框 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 添加表格边框线,页头和页脚。 11 | 12 | ## en-US 13 | 14 | Add border, title and footer for table. 15 | 16 | -------------------------------------------------------------------------------- /components/time-picker/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/timeline/demo/position.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 6 3 | title: 4 | zh-CN: 自定义位置 5 | en-US: Custom Position 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 可以为每一项指定位置。 11 | 12 | ## en-US 13 | 14 | You can assign different positions to timeline items. 15 | -------------------------------------------------------------------------------- /components/timeline/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/tooltip/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/transfer/demo/tree-transfer.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 6 3 | title: 4 | zh-CN: 树穿梭框 5 | en-US: Tree Transfer 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 使用 Tree 组件作为自定义渲染列表。 11 | 12 | ## en-US 13 | 14 | Customize render list with Tree component. 15 | -------------------------------------------------------------------------------- /components/transfer/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/tree-select/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/tree-view/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/tree-view/style/entry.less: -------------------------------------------------------------------------------- 1 | /* 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | @import 'index.less'; 7 | -------------------------------------------------------------------------------- /components/typography/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/version/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/version/public-api.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './version'; 7 | -------------------------------------------------------------------------------- /components/auto-complete/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/calendar/demo/select.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 3 3 | title: 4 | zh-CN: 选择功能 5 | en-US: Selectable Calendar 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 一个通用的日历面板,支持年/月切换。 11 | 12 | ## en-US 13 | 14 | A basic calendar component with Year/Month switch. 15 | -------------------------------------------------------------------------------- /components/card/demo/basic.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 0 3 | title: 4 | zh-CN: 典型卡片 5 | en-US: Basic card 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 包含标题、内容、操作区域。 11 | 12 | ## en-US 13 | 14 | A basic card containing a title, content and an extra corner content. 15 | -------------------------------------------------------------------------------- /components/cascader/demo/lazy.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 9 3 | title: 4 | zh-CN: 动态加载选项 5 | en-US: Load Options Lazily 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 使用 `nzLoadData` 实现动态加载选项。 11 | 12 | ## en-US 13 | 14 | Load options lazily with `nzLoadData`. 15 | 16 | -------------------------------------------------------------------------------- /components/core/animation/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/core/highlight/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/core/logger/public-api.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './logger'; 7 | -------------------------------------------------------------------------------- /components/core/overlay/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/core/polyfill/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/core/services/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/date-picker/demo/range-picker.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | title: 4 | zh-CN: 范围选择器 5 | en-US: Range Picker 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 通过设置 `nzMode` 属性,指定范围选择器类型。 11 | 12 | ## en-US 13 | 14 | Set range picker type by `nzMode` prop. 15 | -------------------------------------------------------------------------------- /components/date-picker/lib/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/descriptions/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/form/demo/horizontal-login.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 0 3 | title: 4 | zh-CN: 内联登录栏 5 | en-US: Inline Login Form 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 内联登录栏,常用在顶部导航栏中。 11 | 12 | ## en-US 13 | 14 | Inline login form is often used in navigation bar. 15 | -------------------------------------------------------------------------------- /components/form/demo/layout.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 12 3 | title: 4 | zh-CN: 表单布局 5 | en-US: Form Layout 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 表单有三种布局。 11 | 12 | ## en-US 13 | 14 | There are three layout for form: `horizontal`, `vertical`, `inline`. 15 | 16 | -------------------------------------------------------------------------------- /components/icon/testing/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/input-number/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/notification/demo/custom-icon.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 4 3 | title: 4 | zh-CN: 自定义图标 5 | en-US: Customized Icon 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 图标可以被自定义。 11 | 12 | ## en-US 13 | 14 | The icon can be customized to any `TemplateRef`. 15 | -------------------------------------------------------------------------------- /components/notification/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/rate/demo/basic.ts: -------------------------------------------------------------------------------- 1 | import { Component } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'nz-demo-rate-basic', 5 | template: ` 6 | 7 | ` 8 | }) 9 | export class NzDemoRateBasicComponent {} 10 | -------------------------------------------------------------------------------- /components/select/demo/optgroup.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 6 3 | title: 4 | zh-CN: 分组 5 | en-US: Option Group 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 用 `nz-option-group` 进行选项分组。 11 | 12 | ## en-US 13 | 14 | Using `nz-option-group` to group the options. 15 | 16 | -------------------------------------------------------------------------------- /components/space/demo/vertical.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | title: 4 | zh-CN: 垂直间距 5 | en-US: Vertical Space 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 相邻组件垂直间距。 11 | 12 | 可以设置 `width: 100%` 独占一行。 13 | 14 | ## en-US 15 | 16 | Crowded components vertical spacing. -------------------------------------------------------------------------------- /components/switch/demo/size.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 3 3 | title: 4 | zh-CN: 两种大小 5 | en-US: Two sizes 6 | --- 7 | 8 | ## zh-CN 9 | 10 | `nzSize="small"` 表示小号开关。 11 | 12 | ## en-US 13 | 14 | `nzSize="small"` represents a small sized switch. 15 | 16 | 17 | -------------------------------------------------------------------------------- /components/table/demo/dynamic-settings.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 30 3 | title: 4 | en-US: Dynamic Settings 5 | zh-CN: 动态控制表格属性 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 选择不同配置组合查看效果。 11 | 12 | ## en-US 13 | 14 | Select different settings to see the result. 15 | 16 | -------------------------------------------------------------------------------- /components/table/demo/grouping-columns.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 21 3 | title: 4 | en-US: Grouping table head 5 | zh-CN: 表头分组 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 固定列与分组表头联合使用。 11 | 12 | ## en-US 13 | 14 | Group table head with fixed columns. 15 | 16 | 17 | -------------------------------------------------------------------------------- /components/tabs/demo/extra.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 4 3 | title: 4 | zh-CN: 附加内容 5 | en-US: Extra content 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 可以在页签右边添加附加操作。 11 | 12 | ## en-US 13 | 14 | You can add extra actions to the right of Tabs. 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /components/transfer/demo/table-transfer.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 5 3 | title: 4 | zh-CN: 表格穿梭框 5 | en-US: Table Transfer 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 使用 Table 组件作为自定义渲染列表。 11 | 12 | ## en-US 13 | 14 | Customize render list with Table component. 15 | -------------------------------------------------------------------------------- /components/tree-view/demo/basic.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 0 3 | title: 4 | zh-CN: 基本 5 | en-US: basic 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 最简单的用法,选中,禁用,展开等功能。 11 | 12 | ## en-US 13 | 14 | The most basic usage including select, disable and expand features. 15 | -------------------------------------------------------------------------------- /components/breadcrumb/demo/dropdown.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 5 3 | title: 4 | zh-CN: 带下拉菜单的面包屑 5 | en-US: Bread crumbs with drop down menu 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 面包屑支持下拉菜单。 11 | 12 | ## en-US 13 | 14 | Breadcrumbs support drop down menu. 15 | 16 | -------------------------------------------------------------------------------- /components/button/demo/danger.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 9 3 | title: 4 | zh-CN: 危险按钮 5 | en-US: Danger Buttons 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 使用 `nzDanger` 将按钮标识为危险状态。 11 | 12 | ## en-US 13 | 14 | You can use `nzDanger` to mark button as danger status. 15 | -------------------------------------------------------------------------------- /components/checkbox/demo/controller.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 2 3 | title: 4 | zh-CN: 受控的 Checkbox 5 | en-US: Controlled Checkbox 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 联动 checkbox。 11 | 12 | ## en-US 13 | 14 | Communicated with other components. 15 | 16 | 17 | -------------------------------------------------------------------------------- /components/comment/demo/basic.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 0 3 | title: 4 | zh-CN: 基本评论 5 | en-US: Basic comment 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 一个基本的评论组件,带有作者、头像、时间和操作。 11 | 12 | ## en-US 13 | 14 | A basic comment with author, avatar, time and actions. 15 | 16 | -------------------------------------------------------------------------------- /components/core/element-patch/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/core/environments/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/core/no-animation/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/core/resize-observers/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/core/trans-button/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/core/transition-patch/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Use of this source code is governed by an MIT-style license that can be 3 | * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE 4 | */ 5 | 6 | export * from './public-api'; 7 | -------------------------------------------------------------------------------- /components/notification/demo/basic.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 0 3 | title: 4 | zh-CN: 基本 5 | en-US: Basic 6 | --- 7 | 8 | ## zh-CN 9 | 10 | 最简单的用法,4.5 秒后自动关闭。 11 | 12 | ## en-US 13 | 14 | The simplest usage that close the notification box after 4.5s. 15 | 16 | --------------------------------------------------------------------------------