├── .gitignore ├── LICENSE ├── README.md ├── angular-cli-build.js ├── angular-cli.json ├── config ├── environment.dev.ts ├── environment.js └── environment.prod.ts ├── package.json ├── src ├── components │ ├── button │ │ ├── _button-mixin.scss │ │ ├── button-group.html │ │ ├── button-group.ts │ │ ├── button.html │ │ ├── button.scss │ │ └── button.ts │ ├── icon │ │ ├── icon.scss │ │ └── icon.ts │ └── layout │ │ ├── col.ts │ │ └── row.ts ├── core │ ├── annotations │ │ └── field-value.ts │ └── style │ │ ├── _default-theme.scss │ │ └── _mixins.scss └── demo-app │ ├── demo-app │ ├── demo-app.html │ └── demo-app.ts │ ├── environment.ts │ ├── index.html │ ├── main.scss │ ├── main.ts │ ├── system-config.ts │ ├── tsconfig.json │ └── typings.d.ts └── typings.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibufu/angular2-ant-design/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibufu/angular2-ant-design/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibufu/angular2-ant-design/HEAD/README.md -------------------------------------------------------------------------------- /angular-cli-build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibufu/angular2-ant-design/HEAD/angular-cli-build.js -------------------------------------------------------------------------------- /angular-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibufu/angular2-ant-design/HEAD/angular-cli.json -------------------------------------------------------------------------------- /config/environment.dev.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: false 3 | }; 4 | -------------------------------------------------------------------------------- /config/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibufu/angular2-ant-design/HEAD/config/environment.js -------------------------------------------------------------------------------- /config/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibufu/angular2-ant-design/HEAD/package.json -------------------------------------------------------------------------------- /src/components/button/_button-mixin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibufu/angular2-ant-design/HEAD/src/components/button/_button-mixin.scss -------------------------------------------------------------------------------- /src/components/button/button-group.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibufu/angular2-ant-design/HEAD/src/components/button/button-group.html -------------------------------------------------------------------------------- /src/components/button/button-group.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibufu/angular2-ant-design/HEAD/src/components/button/button-group.ts -------------------------------------------------------------------------------- /src/components/button/button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibufu/angular2-ant-design/HEAD/src/components/button/button.html -------------------------------------------------------------------------------- /src/components/button/button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibufu/angular2-ant-design/HEAD/src/components/button/button.scss -------------------------------------------------------------------------------- /src/components/button/button.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibufu/angular2-ant-design/HEAD/src/components/button/button.ts -------------------------------------------------------------------------------- /src/components/icon/icon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibufu/angular2-ant-design/HEAD/src/components/icon/icon.scss -------------------------------------------------------------------------------- /src/components/icon/icon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibufu/angular2-ant-design/HEAD/src/components/icon/icon.ts -------------------------------------------------------------------------------- /src/components/layout/col.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by lcx on 2016/8/4. 3 | */ 4 | -------------------------------------------------------------------------------- /src/components/layout/row.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibufu/angular2-ant-design/HEAD/src/components/layout/row.ts -------------------------------------------------------------------------------- /src/core/annotations/field-value.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibufu/angular2-ant-design/HEAD/src/core/annotations/field-value.ts -------------------------------------------------------------------------------- /src/core/style/_default-theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibufu/angular2-ant-design/HEAD/src/core/style/_default-theme.scss -------------------------------------------------------------------------------- /src/core/style/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibufu/angular2-ant-design/HEAD/src/core/style/_mixins.scss -------------------------------------------------------------------------------- /src/demo-app/demo-app/demo-app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibufu/angular2-ant-design/HEAD/src/demo-app/demo-app/demo-app.html -------------------------------------------------------------------------------- /src/demo-app/demo-app/demo-app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibufu/angular2-ant-design/HEAD/src/demo-app/demo-app/demo-app.ts -------------------------------------------------------------------------------- /src/demo-app/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibufu/angular2-ant-design/HEAD/src/demo-app/environment.ts -------------------------------------------------------------------------------- /src/demo-app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibufu/angular2-ant-design/HEAD/src/demo-app/index.html -------------------------------------------------------------------------------- /src/demo-app/main.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/demo-app/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibufu/angular2-ant-design/HEAD/src/demo-app/main.ts -------------------------------------------------------------------------------- /src/demo-app/system-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibufu/angular2-ant-design/HEAD/src/demo-app/system-config.ts -------------------------------------------------------------------------------- /src/demo-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibufu/angular2-ant-design/HEAD/src/demo-app/tsconfig.json -------------------------------------------------------------------------------- /src/demo-app/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibufu/angular2-ant-design/HEAD/src/demo-app/typings.d.ts -------------------------------------------------------------------------------- /typings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibufu/angular2-ant-design/HEAD/typings.json --------------------------------------------------------------------------------