├── .editorconfig ├── .github └── workflows │ └── main.yml ├── .gitignore ├── .prettierrc.json ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── angular.json ├── docs ├── code-generator │ └── readme.md ├── components │ ├── readme.en_US.md │ └── readme.zh_CN.md ├── course │ ├── rbac │ │ ├── 1-introduction │ │ │ ├── demo │ │ │ │ ├── 1__ng-nest-admin │ │ │ │ │ ├── dark.png │ │ │ │ │ └── light.png │ │ │ │ └── 2__rbac │ │ │ │ │ └── rbac.png │ │ │ ├── readme.en_US.md │ │ │ └── readme.zh_CN.md │ │ ├── 2-create-project │ │ │ ├── demo │ │ │ │ ├── 1.1__bash │ │ │ │ │ └── 1.1.bash │ │ │ │ ├── 1.2__img │ │ │ │ │ └── ui.png │ │ │ │ ├── 1__bash │ │ │ │ │ └── 1.bash │ │ │ │ ├── 2.1__bash │ │ │ │ │ └── 2.1.bash │ │ │ │ ├── 2.2__img │ │ │ │ │ └── api.png │ │ │ │ ├── 2__bash │ │ │ │ │ └── 2.bash │ │ │ │ └── 3__rbac │ │ │ │ │ ├── api │ │ │ │ │ ├── .eslintrc.js │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .prettierrc │ │ │ │ │ ├── README.md │ │ │ │ │ ├── nest-cli.json │ │ │ │ │ ├── package.json │ │ │ │ │ ├── src │ │ │ │ │ │ ├── app.controller.spec.ts │ │ │ │ │ │ ├── app.controller.ts │ │ │ │ │ │ ├── app.module.ts │ │ │ │ │ │ ├── app.service.ts │ │ │ │ │ │ └── main.ts │ │ │ │ │ ├── test │ │ │ │ │ │ ├── app.e2e-spec.ts │ │ │ │ │ │ └── jest-e2e.json │ │ │ │ │ ├── tsconfig.build.json │ │ │ │ │ └── tsconfig.json │ │ │ │ │ └── ui │ │ │ │ │ ├── .browserslistrc │ │ │ │ │ ├── .editorconfig │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── README.md │ │ │ │ │ ├── angular.json │ │ │ │ │ ├── e2e │ │ │ │ │ ├── protractor.conf.js │ │ │ │ │ ├── src │ │ │ │ │ │ ├── app.e2e-spec.ts │ │ │ │ │ │ └── app.po.ts │ │ │ │ │ └── tsconfig.json │ │ │ │ │ ├── karma.conf.js │ │ │ │ │ ├── package.json │ │ │ │ │ ├── src │ │ │ │ │ ├── app │ │ │ │ │ │ ├── app-routing.module.ts │ │ │ │ │ │ ├── app.component.html │ │ │ │ │ │ ├── app.component.scss │ │ │ │ │ │ ├── app.component.spec.ts │ │ │ │ │ │ ├── app.component.ts │ │ │ │ │ │ ├── app.module.ts │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── assets │ │ │ │ │ │ └── .gitkeep │ │ │ │ │ ├── environments │ │ │ │ │ │ ├── environment.prod.ts │ │ │ │ │ │ └── environment.ts │ │ │ │ │ ├── favicon.ico │ │ │ │ │ ├── index.html │ │ │ │ │ ├── main.ts │ │ │ │ │ ├── polyfills.ts │ │ │ │ │ ├── styles.scss │ │ │ │ │ └── test.ts │ │ │ │ │ ├── tsconfig.app.json │ │ │ │ │ ├── tsconfig.base.json │ │ │ │ │ ├── tsconfig.json │ │ │ │ │ ├── tsconfig.spec.json │ │ │ │ │ └── tslint.json │ │ │ ├── readme.en_US.md │ │ │ └── readme.zh_CN.md │ │ ├── 3-ui-frame │ │ │ ├── demo │ │ │ │ ├── 1__ui │ │ │ │ │ └── src │ │ │ │ │ │ └── app │ │ │ │ │ │ └── app-routing.module.ts │ │ │ │ ├── 2__ui │ │ │ │ │ └── src │ │ │ │ │ │ └── layout │ │ │ │ │ │ └── index │ │ │ │ │ │ └── index.module.ts │ │ │ │ ├── 3__ui │ │ │ │ │ └── src │ │ │ │ │ │ └── app │ │ │ │ │ │ └── app.component.html │ │ │ │ ├── 4__ui │ │ │ │ │ └── src │ │ │ │ │ │ ├── layout │ │ │ │ │ │ └── index │ │ │ │ │ │ │ ├── content │ │ │ │ │ │ │ ├── content.component.html │ │ │ │ │ │ │ └── content.component.ts │ │ │ │ │ │ │ ├── crumb │ │ │ │ │ │ │ ├── crumb.component.html │ │ │ │ │ │ │ └── crumb.component.ts │ │ │ │ │ │ │ ├── header │ │ │ │ │ │ │ ├── header.component.html │ │ │ │ │ │ │ └── header.component.ts │ │ │ │ │ │ │ ├── index.component.html │ │ │ │ │ │ │ ├── index.component.scss │ │ │ │ │ │ │ ├── index.component.ts │ │ │ │ │ │ │ ├── index.module.ts │ │ │ │ │ │ │ ├── sidebar │ │ │ │ │ │ │ ├── sidebar.component.html │ │ │ │ │ │ │ └── sidebar.component.ts │ │ │ │ │ │ │ └── tabs │ │ │ │ │ │ │ ├── tabs.component.html │ │ │ │ │ │ │ └── tabs.component.ts │ │ │ │ │ │ └── styles.scss │ │ │ │ ├── 5__img │ │ │ │ │ └── index.png │ │ │ │ ├── 6__ui │ │ │ │ │ └── src │ │ │ │ │ │ ├── layout │ │ │ │ │ │ └── index │ │ │ │ │ │ │ ├── content │ │ │ │ │ │ │ └── content.component.html │ │ │ │ │ │ │ └── index.module.ts │ │ │ │ │ │ └── main │ │ │ │ │ │ ├── dashboard │ │ │ │ │ │ ├── dashboard.component.html │ │ │ │ │ │ ├── dashboard.component.scss │ │ │ │ │ │ ├── dashboard.component.ts │ │ │ │ │ │ └── dashboard.module.ts │ │ │ │ │ │ └── home │ │ │ │ │ │ ├── home.component.html │ │ │ │ │ │ ├── home.component.scss │ │ │ │ │ │ ├── home.component.ts │ │ │ │ │ │ └── home.module.ts │ │ │ │ ├── 7__ui │ │ │ │ │ └── src │ │ │ │ │ │ └── layout │ │ │ │ │ │ └── index │ │ │ │ │ │ └── sidebar │ │ │ │ │ │ └── sidebar.component.html │ │ │ │ ├── 8__gif │ │ │ │ │ └── sidebar.gif │ │ │ │ ├── 9__ui │ │ │ │ │ └── src │ │ │ │ │ │ ├── app │ │ │ │ │ │ └── app-routing.module.ts │ │ │ │ │ │ ├── environments │ │ │ │ │ │ └── routes.ts │ │ │ │ │ │ └── layout │ │ │ │ │ │ └── index │ │ │ │ │ │ └── index.module.ts │ │ │ │ └── __bash │ │ │ │ │ └── 1.bash │ │ │ ├── readme.en_US.md │ │ │ └── readme.zh_CN.md │ │ ├── 4-ui-navigation │ │ │ ├── demo │ │ │ │ ├── 10__gif │ │ │ │ │ └── tabs.gif │ │ │ │ ├── 11__ui │ │ │ │ │ └── src │ │ │ │ │ │ └── layout │ │ │ │ │ │ └── index │ │ │ │ │ │ ├── __index.service.ts.md │ │ │ │ │ │ └── index.service.ts │ │ │ │ ├── 12__ui │ │ │ │ │ └── src │ │ │ │ │ │ └── layout │ │ │ │ │ │ └── index │ │ │ │ │ │ └── crumb │ │ │ │ │ │ ├── crumb.component.html │ │ │ │ │ │ └── crumb.component.ts │ │ │ │ ├── 13__ui │ │ │ │ │ └── src │ │ │ │ │ │ └── layout │ │ │ │ │ │ └── index │ │ │ │ │ │ ├── __index.component.scss.md │ │ │ │ │ │ ├── __index.module.ts.md │ │ │ │ │ │ ├── crumb │ │ │ │ │ │ ├── crumb.component.html │ │ │ │ │ │ └── crumb.component.ts │ │ │ │ │ │ ├── index.component.scss │ │ │ │ │ │ ├── index.module.ts │ │ │ │ │ │ └── index.service.ts │ │ │ │ ├── 14__gif │ │ │ │ │ └── crumb.gif │ │ │ │ ├── 1__ui │ │ │ │ │ └── src │ │ │ │ │ │ └── layout │ │ │ │ │ │ └── index │ │ │ │ │ │ └── sidebar │ │ │ │ │ │ └── sidebar.component.html │ │ │ │ ├── 2__ui │ │ │ │ │ └── src │ │ │ │ │ │ └── layout │ │ │ │ │ │ └── index │ │ │ │ │ │ └── sidebar │ │ │ │ │ │ └── sidebar.component.ts │ │ │ │ ├── 3__ui │ │ │ │ │ └── src │ │ │ │ │ │ └── layout │ │ │ │ │ │ └── index │ │ │ │ │ │ └── index.service.ts │ │ │ │ ├── 4__ui │ │ │ │ │ └── src │ │ │ │ │ │ ├── environments │ │ │ │ │ │ ├── __routes.ts.md │ │ │ │ │ │ └── routes.ts │ │ │ │ │ │ ├── layout │ │ │ │ │ │ └── index │ │ │ │ │ │ │ ├── __index.component.scss.md │ │ │ │ │ │ │ ├── index.component.scss │ │ │ │ │ │ │ ├── index.service.ts │ │ │ │ │ │ │ └── sidebar │ │ │ │ │ │ │ ├── sidebar.component.html │ │ │ │ │ │ │ └── sidebar.component.ts │ │ │ │ │ │ └── main │ │ │ │ │ │ └── system │ │ │ │ │ │ ├── menus │ │ │ │ │ │ ├── menu.component.html │ │ │ │ │ │ ├── menu.component.scss │ │ │ │ │ │ ├── menu.component.ts │ │ │ │ │ │ └── menu.module.ts │ │ │ │ │ │ ├── organization │ │ │ │ │ │ ├── organization.component.html │ │ │ │ │ │ ├── organization.component.scss │ │ │ │ │ │ ├── organization.component.ts │ │ │ │ │ │ └── organization.module.ts │ │ │ │ │ │ ├── roles │ │ │ │ │ │ ├── role.component.html │ │ │ │ │ │ ├── role.component.scss │ │ │ │ │ │ ├── role.component.ts │ │ │ │ │ │ └── role.module.ts │ │ │ │ │ │ └── users │ │ │ │ │ │ ├── user.component.html │ │ │ │ │ │ ├── user.component.scss │ │ │ │ │ │ ├── user.component.ts │ │ │ │ │ │ └── user.module.ts │ │ │ │ ├── 5__gif │ │ │ │ │ └── menus.gif │ │ │ │ ├── 6__ui │ │ │ │ │ └── src │ │ │ │ │ │ └── layout │ │ │ │ │ │ └── index │ │ │ │ │ │ └── tabs │ │ │ │ │ │ └── tabs.component.html │ │ │ │ ├── 7__ui │ │ │ │ │ └── src │ │ │ │ │ │ └── layout │ │ │ │ │ │ └── index │ │ │ │ │ │ └── tabs │ │ │ │ │ │ └── tabs.component.ts │ │ │ │ ├── 8__ui │ │ │ │ │ └── src │ │ │ │ │ │ └── layout │ │ │ │ │ │ └── index │ │ │ │ │ │ ├── __index.service.ts.md │ │ │ │ │ │ └── index.service.ts │ │ │ │ └── 9__ui │ │ │ │ │ └── src │ │ │ │ │ └── layout │ │ │ │ │ └── index │ │ │ │ │ ├── __index.component.scss.md │ │ │ │ │ ├── __index.module.ts.md │ │ │ │ │ ├── index.component.scss │ │ │ │ │ ├── index.module.ts │ │ │ │ │ ├── index.service.ts │ │ │ │ │ └── tabs │ │ │ │ │ ├── tabs.component.html │ │ │ │ │ └── tabs.component.ts │ │ │ ├── readme.en_US.md │ │ │ └── readme.zh_CN.md │ │ ├── 5-user-manage │ │ │ ├── demo │ │ │ │ ├── 10__api │ │ │ │ │ └── src │ │ │ │ │ │ ├── __mai.ts.md │ │ │ │ │ │ └── main.ts │ │ │ │ ├── 11__bash │ │ │ │ │ └── 11.bash │ │ │ │ ├── 12__img │ │ │ │ │ └── 12.png │ │ │ │ ├── 13__api │ │ │ │ │ └── src │ │ │ │ │ │ └── system │ │ │ │ │ │ └── users │ │ │ │ │ │ └── dto │ │ │ │ │ │ └── create-user.dto.ts │ │ │ │ ├── 14__bash │ │ │ │ │ └── 14.bash │ │ │ │ ├── 15__api │ │ │ │ │ └── src │ │ │ │ │ │ └── system │ │ │ │ │ │ └── users │ │ │ │ │ │ └── dto │ │ │ │ │ │ ├── __create-user.dto.ts.md │ │ │ │ │ │ └── create-user.dto.ts │ │ │ │ ├── 16__api │ │ │ │ │ └── src │ │ │ │ │ │ ├── __mai.ts.md │ │ │ │ │ │ └── main.ts │ │ │ │ ├── 17__ui │ │ │ │ │ └── src │ │ │ │ │ │ └── main │ │ │ │ │ │ └── system │ │ │ │ │ │ └── users │ │ │ │ │ │ ├── __user.module.ts.md │ │ │ │ │ │ ├── user.component.html │ │ │ │ │ │ ├── user.component.scss │ │ │ │ │ │ ├── user.component.ts │ │ │ │ │ │ └── user.module.ts │ │ │ │ ├── 18__ui │ │ │ │ │ └── src │ │ │ │ │ │ ├── app │ │ │ │ │ │ ├── __app.module.ts.md │ │ │ │ │ │ └── app.module.ts │ │ │ │ │ │ └── main │ │ │ │ │ │ └── system │ │ │ │ │ │ └── users │ │ │ │ │ │ └── user.service.ts │ │ │ │ ├── 19__ui │ │ │ │ │ └── src │ │ │ │ │ │ └── main │ │ │ │ │ │ └── system │ │ │ │ │ │ └── users │ │ │ │ │ │ ├── __user.component.ts.md │ │ │ │ │ │ └── user.component.ts │ │ │ │ ├── 1__bash │ │ │ │ │ └── 1.bash │ │ │ │ ├── 20__img │ │ │ │ │ └── 20.png │ │ │ │ ├── 21__ui │ │ │ │ │ ├── __package.json.md │ │ │ │ │ ├── package.json │ │ │ │ │ └── proxy.conf.json │ │ │ │ ├── 22__ui │ │ │ │ │ └── src │ │ │ │ │ │ └── main │ │ │ │ │ │ └── system │ │ │ │ │ │ └── users │ │ │ │ │ │ ├── __user.module.ts.md │ │ │ │ │ │ ├── user-detail │ │ │ │ │ │ ├── user-detail.component.html │ │ │ │ │ │ ├── user-detail.component.scss │ │ │ │ │ │ └── user-detail.component.ts │ │ │ │ │ │ └── user.module.ts │ │ │ │ ├── 23__ui │ │ │ │ │ └── src │ │ │ │ │ │ └── main │ │ │ │ │ │ └── system │ │ │ │ │ │ └── users │ │ │ │ │ │ ├── __user.component.html.md │ │ │ │ │ │ ├── __user.component.ts.md │ │ │ │ │ │ ├── __user.module.ts.md │ │ │ │ │ │ ├── user.component.html │ │ │ │ │ │ ├── user.component.ts │ │ │ │ │ │ └── user.module.ts │ │ │ │ ├── 24__ui │ │ │ │ │ └── src │ │ │ │ │ │ └── main │ │ │ │ │ │ └── system │ │ │ │ │ │ └── users │ │ │ │ │ │ ├── __user.module.ts.md │ │ │ │ │ │ ├── user-detail │ │ │ │ │ │ ├── user-detail.component.html │ │ │ │ │ │ ├── user-detail.component.scss │ │ │ │ │ │ └── user-detail.component.ts │ │ │ │ │ │ └── user.module.ts │ │ │ │ ├── 25__ui │ │ │ │ │ └── src │ │ │ │ │ │ └── main │ │ │ │ │ │ └── system │ │ │ │ │ │ └── users │ │ │ │ │ │ ├── __user.component.html.md │ │ │ │ │ │ ├── __user.component.ts.md │ │ │ │ │ │ ├── __user.module.ts.md │ │ │ │ │ │ ├── user.component.html │ │ │ │ │ │ ├── user.component.ts │ │ │ │ │ │ └── user.module.ts │ │ │ │ ├── 26__gif │ │ │ │ │ └── 26.gif │ │ │ │ ├── 2__api │ │ │ │ │ └── ormconfig.json │ │ │ │ ├── 3__api │ │ │ │ │ └── src │ │ │ │ │ │ ├── __app.module.ts.md │ │ │ │ │ │ └── app.module.ts │ │ │ │ ├── 4__api │ │ │ │ │ └── src │ │ │ │ │ │ ├── __app.module.ts.md │ │ │ │ │ │ ├── app.module.ts │ │ │ │ │ │ └── system │ │ │ │ │ │ ├── system.module.ts │ │ │ │ │ │ └── users │ │ │ │ │ │ ├── user.controller.ts │ │ │ │ │ │ ├── user.entity.ts │ │ │ │ │ │ ├── user.module.ts │ │ │ │ │ │ └── user.service.ts │ │ │ │ ├── 5__api │ │ │ │ │ └── src │ │ │ │ │ │ └── core │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── interfaces │ │ │ │ │ │ ├── id.interface.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── result.interface.ts │ │ │ │ ├── 6__api │ │ │ │ │ ├── __tsconfig.json.md │ │ │ │ │ └── tsconfig.json │ │ │ │ ├── 7__api │ │ │ │ │ └── src │ │ │ │ │ │ └── system │ │ │ │ │ │ └── users │ │ │ │ │ │ └── user.service.ts │ │ │ │ ├── 8__api │ │ │ │ │ └── src │ │ │ │ │ │ └── system │ │ │ │ │ │ └── users │ │ │ │ │ │ └── user.controller.ts │ │ │ │ └── 9__bash │ │ │ │ │ └── 9.bash │ │ │ ├── readme.en_US.md │ │ │ └── readme.zh_CN.md │ │ ├── 6-service-optimize │ │ │ ├── demo │ │ │ │ ├── 1__api │ │ │ │ │ └── src │ │ │ │ │ │ └── system │ │ │ │ │ │ └── users │ │ │ │ │ │ └── user.service.ts │ │ │ │ ├── 2__api │ │ │ │ │ └── src │ │ │ │ │ │ └── core │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── services │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── repository.service.ts │ │ │ │ ├── 3__api │ │ │ │ │ └── src │ │ │ │ │ │ └── system │ │ │ │ │ │ └── users │ │ │ │ │ │ └── user.service.ts │ │ │ │ ├── 4__api │ │ │ │ │ └── src │ │ │ │ │ │ └── system │ │ │ │ │ │ └── users │ │ │ │ │ │ ├── dto │ │ │ │ │ │ ├── create-user.dto.ts │ │ │ │ │ │ ├── list-user.dto.ts │ │ │ │ │ │ └── update-user.dto.ts │ │ │ │ │ │ ├── user.controller.ts │ │ │ │ │ │ └── user.entity.ts │ │ │ │ ├── 5__ui │ │ │ │ │ └── src │ │ │ │ │ │ └── services │ │ │ │ │ │ └── repository.service.ts │ │ │ │ └── 6__ui │ │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── system │ │ │ │ │ └── users │ │ │ │ │ └── user.service.ts │ │ │ ├── readme.en_US.md │ │ │ └── readme.zh_CN.md │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── readme.en_US.md │ └── readme.zh_CN.md ├── form-design │ └── readme.md ├── ui │ ├── customize-theme │ │ ├── demo │ │ │ ├── __config-service │ │ │ │ └── config.service.ts │ │ │ └── __config │ │ │ │ └── config.ts │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── getting-started │ │ ├── demo │ │ │ ├── 1__bash │ │ │ │ ├── 1.bash │ │ │ │ └── __1.bash.md │ │ │ ├── 1__my-app │ │ │ │ ├── .editorconfig │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── angular.json │ │ │ │ ├── package.json │ │ │ │ ├── public │ │ │ │ │ └── favicon.ico │ │ │ │ ├── src │ │ │ │ │ ├── app │ │ │ │ │ │ ├── app.component.html │ │ │ │ │ │ ├── app.component.scss │ │ │ │ │ │ ├── app.component.spec.ts │ │ │ │ │ │ ├── app.component.ts │ │ │ │ │ │ ├── app.config.ts │ │ │ │ │ │ └── app.routes.ts │ │ │ │ │ ├── index.html │ │ │ │ │ ├── main.ts │ │ │ │ │ └── styles.scss │ │ │ │ ├── tsconfig.app.json │ │ │ │ ├── tsconfig.json │ │ │ │ └── tsconfig.spec.json │ │ │ ├── 2.1__my-app │ │ │ │ └── src │ │ │ │ │ ├── __styles.scss.md │ │ │ │ │ └── styles.scss │ │ │ ├── 2.2__my-app │ │ │ │ ├── __angular.json.md │ │ │ │ └── angular.json │ │ │ ├── 2__bash │ │ │ │ └── 1.bash │ │ │ ├── 3.1__my-app │ │ │ │ └── src │ │ │ │ │ └── app │ │ │ │ │ ├── __app.config.ts.md │ │ │ │ │ └── app.config.ts │ │ │ ├── 3.2__my-app │ │ │ │ └── src │ │ │ │ │ └── app │ │ │ │ │ ├── __app.component.ts.md │ │ │ │ │ └── app.component.ts │ │ │ ├── 3.3__my-app │ │ │ │ └── src │ │ │ │ │ └── app │ │ │ │ │ ├── app.component.html │ │ │ │ │ └── app.component.scss │ │ │ ├── 3__bash │ │ │ │ └── 1.bash │ │ │ ├── 3__img │ │ │ │ └── 1.png │ │ │ └── __bash │ │ │ │ ├── 1.bash │ │ │ │ └── __1.bash.md │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── global-config │ │ ├── demo │ │ │ └── __my-app │ │ │ │ └── src │ │ │ │ └── app │ │ │ │ ├── __app.module.ts.md │ │ │ │ └── app.module.ts │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── i18n │ │ ├── demo │ │ │ ├── 1__my-app │ │ │ │ └── src │ │ │ │ │ └── app │ │ │ │ │ ├── __app.module.ts.md │ │ │ │ │ └── app.module.ts │ │ │ ├── 2__toggle │ │ │ │ └── toggle.ts │ │ │ ├── 3__module │ │ │ │ └── module.ts │ │ │ └── 4__html │ │ │ │ └── html.html │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── ng-nest │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── readme.en_US.md │ ├── readme.zh_CN.md │ └── schematics │ │ └── readme.md ├── user-lib │ └── readme.md └── workflow-design │ └── readme.md ├── lib └── ng-nest │ └── ui │ ├── README.md │ ├── affix │ ├── affix.component.html │ ├── affix.component.scss │ ├── affix.component.spec.ts │ ├── affix.component.ts │ ├── affix.module.ts │ ├── affix.property.ts │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ └── default │ │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.scss │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── readme.md │ │ │ │ └── scope │ │ │ │ ├── readme.md │ │ │ │ ├── scope.component.html │ │ │ │ ├── scope.component.scss │ │ │ │ └── scope.component.ts │ │ ├── index.ts │ │ └── zh_CN │ │ │ └── default │ │ │ ├── default │ │ │ ├── default.component.html │ │ │ ├── default.component.scss │ │ │ ├── default.component.ts │ │ │ └── readme.md │ │ │ ├── readme.md │ │ │ └── scope │ │ │ ├── readme.md │ │ │ ├── scope.component.html │ │ │ ├── scope.component.scss │ │ │ └── scope.component.ts │ ├── index.ts │ ├── ng-package.json │ ├── public-api.ts │ └── style │ │ ├── mixin.scss │ │ └── param.scss │ ├── alert │ ├── alert.component.html │ ├── alert.component.scss │ ├── alert.component.spec.ts │ ├── alert.component.ts │ ├── alert.module.ts │ ├── alert.property.ts │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ └── default │ │ │ │ ├── custom │ │ │ │ ├── custom.component.html │ │ │ │ ├── custom.component.scss │ │ │ │ ├── custom.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.scss │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── description │ │ │ │ ├── description.component.html │ │ │ │ ├── description.component.scss │ │ │ │ ├── description.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── effect │ │ │ │ ├── effect.component.html │ │ │ │ ├── effect.component.scss │ │ │ │ ├── effect.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── icon │ │ │ │ ├── icon.component.html │ │ │ │ ├── icon.component.scss │ │ │ │ ├── icon.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── readme.md │ │ │ │ └── variant │ │ │ │ ├── readme.md │ │ │ │ ├── variant.component.html │ │ │ │ ├── variant.component.scss │ │ │ │ └── variant.component.ts │ │ ├── index.ts │ │ └── zh_CN │ │ │ └── default │ │ │ ├── custom │ │ │ ├── custom.component.html │ │ │ ├── custom.component.scss │ │ │ ├── custom.component.ts │ │ │ └── readme.md │ │ │ ├── default │ │ │ ├── default.component.html │ │ │ ├── default.component.scss │ │ │ ├── default.component.ts │ │ │ └── readme.md │ │ │ ├── description │ │ │ ├── description.component.html │ │ │ ├── description.component.scss │ │ │ ├── description.component.ts │ │ │ └── readme.md │ │ │ ├── effect │ │ │ ├── effect.component.html │ │ │ ├── effect.component.scss │ │ │ ├── effect.component.ts │ │ │ └── readme.md │ │ │ ├── icon │ │ │ ├── icon.component.html │ │ │ ├── icon.component.scss │ │ │ ├── icon.component.ts │ │ │ └── readme.md │ │ │ ├── readme.md │ │ │ └── variant │ │ │ ├── readme.md │ │ │ ├── variant.component.html │ │ │ ├── variant.component.scss │ │ │ └── variant.component.ts │ ├── index.ts │ ├── ng-package.json │ ├── public-api.ts │ └── style │ │ ├── mixin.scss │ │ └── param.scss │ ├── anchor │ ├── anchor-inner.component.ts │ ├── anchor.component.html │ ├── anchor.component.scss │ ├── anchor.component.spec.ts │ ├── anchor.component.ts │ ├── anchor.module.ts │ ├── anchor.property.ts │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ └── default │ │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.scss │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── loading │ │ │ │ ├── loading.component.html │ │ │ │ ├── loading.component.scss │ │ │ │ ├── loading.component.ts │ │ │ │ └── readme.md │ │ │ │ └── readme.md │ │ ├── index.ts │ │ └── zh_CN │ │ │ └── default │ │ │ ├── default │ │ │ ├── default.component.html │ │ │ ├── default.component.scss │ │ │ ├── default.component.ts │ │ │ └── readme.md │ │ │ ├── loading │ │ │ ├── loading.component.html │ │ │ ├── loading.component.scss │ │ │ ├── loading.component.ts │ │ │ └── readme.md │ │ │ └── readme.md │ ├── index.ts │ ├── ng-package.json │ ├── public-api.ts │ └── style │ │ ├── mixin.scss │ │ └── param.scss │ ├── api │ ├── api.component.html │ ├── api.component.spec.ts │ ├── api.component.ts │ ├── api.module.ts │ ├── api.property.ts │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── index.ts │ ├── ng-package.json │ ├── public-api.ts │ └── style │ │ ├── index.scss │ │ ├── mixin.scss │ │ └── param.scss │ ├── attachments │ ├── attachments.component.html │ ├── attachments.component.scss │ ├── attachments.component.ts │ ├── attachments.module.ts │ ├── attachments.property.ts │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ ├── default │ │ │ │ ├── default │ │ │ │ │ ├── default.component.html │ │ │ │ │ ├── default.component.scss │ │ │ │ │ ├── default.component.ts │ │ │ │ │ └── readme.md │ │ │ │ ├── drop │ │ │ │ │ ├── drop.component.html │ │ │ │ │ ├── drop.component.scss │ │ │ │ │ ├── drop.component.ts │ │ │ │ │ └── readme.md │ │ │ │ └── file-card │ │ │ │ │ ├── file-card.component.html │ │ │ │ │ ├── file-card.component.scss │ │ │ │ │ ├── file-card.component.ts │ │ │ │ │ └── readme.md │ │ │ └── readme.md │ │ ├── index.ts │ │ └── zh_CN │ │ │ ├── default │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.scss │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ ├── drop │ │ │ │ ├── drop.component.html │ │ │ │ ├── drop.component.scss │ │ │ │ ├── drop.component.ts │ │ │ │ └── readme.md │ │ │ └── file-card │ │ │ │ ├── file-card.component.html │ │ │ │ ├── file-card.component.scss │ │ │ │ ├── file-card.component.ts │ │ │ │ └── readme.md │ │ │ └── readme.md │ ├── file-card.component.html │ ├── file-card.component.scss │ ├── file-card.component.ts │ ├── index.ts │ ├── ng-package.json │ ├── public-api.ts │ └── style │ │ ├── mixin.scss │ │ └── param.scss │ ├── auto-complete │ ├── auto-complete-portal.component.html │ ├── auto-complete-portal.component.scss │ ├── auto-complete-portal.component.ts │ ├── auto-complete.component.html │ ├── auto-complete.component.scss │ ├── auto-complete.component.spec.ts │ ├── auto-complete.component.ts │ ├── auto-complete.module.ts │ ├── auto-complete.property.ts │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ └── default │ │ │ │ ├── bordered │ │ │ │ ├── bordered.component.html │ │ │ │ ├── bordered.component.scss │ │ │ │ ├── bordered.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── custom │ │ │ │ ├── custom.component.html │ │ │ │ ├── custom.component.scss │ │ │ │ ├── custom.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.scss │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── disabled │ │ │ │ ├── disabled.component.html │ │ │ │ ├── disabled.component.scss │ │ │ │ ├── disabled.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── float-label │ │ │ │ ├── float-label.component.html │ │ │ │ ├── float-label.component.scss │ │ │ │ ├── float-label.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── label │ │ │ │ ├── label.component.html │ │ │ │ ├── label.component.scss │ │ │ │ ├── label.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── readme.md │ │ │ │ ├── required │ │ │ │ ├── readme.md │ │ │ │ ├── required.component.html │ │ │ │ ├── required.component.scss │ │ │ │ └── required.component.ts │ │ │ │ ├── size │ │ │ │ ├── readme.md │ │ │ │ ├── size.component.html │ │ │ │ ├── size.component.scss │ │ │ │ └── size.component.ts │ │ │ │ └── variant │ │ │ │ ├── readme.md │ │ │ │ ├── variant.component.html │ │ │ │ ├── variant.component.scss │ │ │ │ └── variant.component.ts │ │ ├── index.ts │ │ └── zh_CN │ │ │ └── default │ │ │ ├── bordered │ │ │ ├── bordered.component.html │ │ │ ├── bordered.component.scss │ │ │ ├── bordered.component.ts │ │ │ └── readme.md │ │ │ ├── custom │ │ │ ├── custom.component.html │ │ │ ├── custom.component.scss │ │ │ ├── custom.component.ts │ │ │ └── readme.md │ │ │ ├── default │ │ │ ├── default.component.html │ │ │ ├── default.component.scss │ │ │ ├── default.component.ts │ │ │ └── readme.md │ │ │ ├── disabled │ │ │ ├── disabled.component.html │ │ │ ├── disabled.component.scss │ │ │ ├── disabled.component.ts │ │ │ └── readme.md │ │ │ ├── float-label │ │ │ ├── float-label.component.html │ │ │ ├── float-label.component.scss │ │ │ ├── float-label.component.ts │ │ │ └── readme.md │ │ │ ├── label │ │ │ ├── label.component.html │ │ │ ├── label.component.scss │ │ │ ├── label.component.ts │ │ │ └── readme.md │ │ │ ├── readme.md │ │ │ ├── required │ │ │ ├── readme.md │ │ │ ├── required.component.html │ │ │ ├── required.component.scss │ │ │ └── required.component.ts │ │ │ ├── size │ │ │ ├── readme.md │ │ │ ├── size.component.html │ │ │ ├── size.component.scss │ │ │ └── size.component.ts │ │ │ └── variant │ │ │ ├── readme.md │ │ │ ├── variant.component.html │ │ │ ├── variant.component.scss │ │ │ └── variant.component.ts │ ├── index.ts │ ├── ng-package.json │ ├── public-api.ts │ └── style │ │ ├── mixin.scss │ │ └── param.scss │ ├── avatar │ ├── avatar-group.component.html │ ├── avatar-group.component.scss │ ├── avatar-group.component.ts │ ├── avatar.component.html │ ├── avatar.component.scss │ ├── avatar.component.spec.ts │ ├── avatar.component.ts │ ├── avatar.module.ts │ ├── avatar.property.ts │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ └── default │ │ │ │ ├── badge │ │ │ │ ├── badge.component.html │ │ │ │ ├── badge.component.scss │ │ │ │ ├── badge.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.scss │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── display │ │ │ │ ├── display.component.html │ │ │ │ ├── display.component.scss │ │ │ │ ├── display.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── fallback │ │ │ │ ├── fallback.component.html │ │ │ │ ├── fallback.component.scss │ │ │ │ ├── fallback.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── fit │ │ │ │ ├── fit.component.html │ │ │ │ ├── fit.component.scss │ │ │ │ ├── fit.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── group │ │ │ │ ├── group.component.html │ │ │ │ ├── group.component.scss │ │ │ │ ├── group.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── label │ │ │ │ ├── label.component.html │ │ │ │ ├── label.component.scss │ │ │ │ ├── label.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── readme.md │ │ │ │ └── response │ │ │ │ ├── readme.md │ │ │ │ ├── response.component.html │ │ │ │ ├── response.component.scss │ │ │ │ └── response.component.ts │ │ ├── index.ts │ │ └── zh_CN │ │ │ └── default │ │ │ ├── badge │ │ │ ├── badge.component.html │ │ │ ├── badge.component.scss │ │ │ ├── badge.component.ts │ │ │ └── readme.md │ │ │ ├── default │ │ │ ├── default.component.html │ │ │ ├── default.component.scss │ │ │ ├── default.component.ts │ │ │ └── readme.md │ │ │ ├── display │ │ │ ├── display.component.html │ │ │ ├── display.component.scss │ │ │ ├── display.component.ts │ │ │ └── readme.md │ │ │ ├── fallback │ │ │ ├── fallback.component.html │ │ │ ├── fallback.component.scss │ │ │ ├── fallback.component.ts │ │ │ └── readme.md │ │ │ ├── fit │ │ │ ├── fit.component.html │ │ │ ├── fit.component.scss │ │ │ ├── fit.component.ts │ │ │ └── readme.md │ │ │ ├── group │ │ │ ├── group.component.html │ │ │ ├── group.component.scss │ │ │ ├── group.component.ts │ │ │ └── readme.md │ │ │ ├── label │ │ │ ├── label.component.html │ │ │ ├── label.component.scss │ │ │ ├── label.component.ts │ │ │ └── readme.md │ │ │ ├── readme.md │ │ │ └── response │ │ │ ├── readme.md │ │ │ ├── response.component.html │ │ │ ├── response.component.scss │ │ │ └── response.component.ts │ ├── index.ts │ ├── ng-package.json │ ├── public-api.ts │ └── style │ │ ├── mixin.scss │ │ └── param.scss │ ├── back-top │ ├── back-top.component.html │ ├── back-top.component.scss │ ├── back-top.component.spec.ts │ ├── back-top.component.ts │ ├── back-top.module.ts │ ├── back-top.property.ts │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ └── default │ │ │ │ ├── custom │ │ │ │ ├── custom.component.html │ │ │ │ ├── custom.component.scss │ │ │ │ ├── custom.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── readme.md │ │ │ │ └── target │ │ │ │ ├── readme.md │ │ │ │ ├── target.component.html │ │ │ │ ├── target.component.scss │ │ │ │ └── target.component.ts │ │ ├── index.ts │ │ └── zh_CN │ │ │ └── default │ │ │ ├── custom │ │ │ ├── custom.component.html │ │ │ ├── custom.component.scss │ │ │ ├── custom.component.ts │ │ │ └── readme.md │ │ │ ├── default │ │ │ ├── default.component.html │ │ │ ├── default.component.ts │ │ │ └── readme.md │ │ │ ├── readme.md │ │ │ └── target │ │ │ ├── readme.md │ │ │ ├── target.component.html │ │ │ ├── target.component.scss │ │ │ └── target.component.ts │ ├── index.ts │ ├── ng-package.json │ ├── public-api.ts │ └── style │ │ ├── mixin.scss │ │ └── param.scss │ ├── badge │ ├── badge.component.html │ ├── badge.component.scss │ ├── badge.component.spec.ts │ ├── badge.component.ts │ ├── badge.module.ts │ ├── badge.property.ts │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ └── default │ │ │ │ ├── animation │ │ │ │ ├── animation.component.html │ │ │ │ ├── animation.component.scss │ │ │ │ ├── animation.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── color │ │ │ │ ├── color.component.html │ │ │ │ ├── color.component.scss │ │ │ │ ├── color.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── custom │ │ │ │ ├── custom.component.html │ │ │ │ ├── custom.component.scss │ │ │ │ ├── custom.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.scss │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── dot │ │ │ │ ├── dot.component.html │ │ │ │ ├── dot.component.scss │ │ │ │ ├── dot.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── max │ │ │ │ ├── max.component.html │ │ │ │ ├── max.component.scss │ │ │ │ ├── max.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── offset │ │ │ │ ├── offset.component.html │ │ │ │ ├── offset.component.scss │ │ │ │ ├── offset.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── readme.md │ │ │ │ └── standalone │ │ │ │ ├── readme.md │ │ │ │ ├── standalone.component.html │ │ │ │ ├── standalone.component.scss │ │ │ │ └── standalone.component.ts │ │ ├── index.ts │ │ └── zh_CN │ │ │ └── default │ │ │ ├── animation │ │ │ ├── animation.component.html │ │ │ ├── animation.component.scss │ │ │ ├── animation.component.ts │ │ │ └── readme.md │ │ │ ├── color │ │ │ ├── color.component.html │ │ │ ├── color.component.scss │ │ │ ├── color.component.ts │ │ │ └── readme.md │ │ │ ├── custom │ │ │ ├── custom.component.html │ │ │ ├── custom.component.scss │ │ │ ├── custom.component.ts │ │ │ └── readme.md │ │ │ ├── default │ │ │ ├── default.component.html │ │ │ ├── default.component.scss │ │ │ ├── default.component.ts │ │ │ └── readme.md │ │ │ ├── dot │ │ │ ├── dot.component.html │ │ │ ├── dot.component.scss │ │ │ ├── dot.component.ts │ │ │ └── readme.md │ │ │ ├── max │ │ │ ├── max.component.html │ │ │ ├── max.component.scss │ │ │ ├── max.component.ts │ │ │ └── readme.md │ │ │ ├── offset │ │ │ ├── offset.component.html │ │ │ ├── offset.component.scss │ │ │ ├── offset.component.ts │ │ │ └── readme.md │ │ │ ├── readme.md │ │ │ └── standalone │ │ │ ├── readme.md │ │ │ ├── standalone.component.html │ │ │ ├── standalone.component.scss │ │ │ └── standalone.component.ts │ ├── index.ts │ ├── ng-package.json │ ├── public-api.ts │ └── style │ │ ├── mixin.scss │ │ └── param.scss │ ├── base-form │ ├── base-form.component.spec.ts │ ├── base-form.component.ts │ ├── base-form.module.ts │ ├── base-form.property.ts │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── index.ts │ ├── ng-package.json │ └── public-api.ts │ ├── bubble │ ├── bubble.component.html │ ├── bubble.component.scss │ ├── bubble.component.ts │ ├── bubble.module.ts │ ├── bubble.property.ts │ ├── bubbles.component.html │ ├── bubbles.component.scss │ ├── bubbles.component.ts │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ ├── default │ │ │ │ ├── avatar │ │ │ │ │ ├── avatar.component.html │ │ │ │ │ ├── avatar.component.scss │ │ │ │ │ ├── avatar.component.ts │ │ │ │ │ └── readme.md │ │ │ │ ├── default │ │ │ │ │ ├── default.component.html │ │ │ │ │ ├── default.component.scss │ │ │ │ │ ├── default.component.ts │ │ │ │ │ └── readme.md │ │ │ │ ├── header │ │ │ │ │ ├── header.component.html │ │ │ │ │ ├── header.component.scss │ │ │ │ │ ├── header.component.ts │ │ │ │ │ └── readme.md │ │ │ │ ├── list │ │ │ │ │ ├── list.component.html │ │ │ │ │ ├── list.component.scss │ │ │ │ │ ├── list.component.ts │ │ │ │ │ └── readme.md │ │ │ │ ├── loading │ │ │ │ │ ├── loading.component.html │ │ │ │ │ ├── loading.component.scss │ │ │ │ │ ├── loading.component.ts │ │ │ │ │ └── readme.md │ │ │ │ ├── renderer │ │ │ │ │ ├── readme.md │ │ │ │ │ ├── renderer.component.html │ │ │ │ │ ├── renderer.component.scss │ │ │ │ │ └── renderer.component.ts │ │ │ │ ├── template │ │ │ │ │ ├── readme.md │ │ │ │ │ ├── template.component.html │ │ │ │ │ ├── template.component.scss │ │ │ │ │ └── template.component.ts │ │ │ │ ├── typing │ │ │ │ │ ├── readme.md │ │ │ │ │ ├── typing.component.html │ │ │ │ │ ├── typing.component.scss │ │ │ │ │ └── typing.component.ts │ │ │ │ └── variant │ │ │ │ │ ├── readme.md │ │ │ │ │ ├── variant.component.html │ │ │ │ │ ├── variant.component.scss │ │ │ │ │ └── variant.component.ts │ │ │ └── readme.md │ │ ├── index.ts │ │ └── zh_CN │ │ │ ├── default │ │ │ ├── avatar │ │ │ │ ├── avatar.component.html │ │ │ │ ├── avatar.component.scss │ │ │ │ ├── avatar.component.ts │ │ │ │ └── readme.md │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.scss │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ ├── header │ │ │ │ ├── header.component.html │ │ │ │ ├── header.component.scss │ │ │ │ ├── header.component.ts │ │ │ │ └── readme.md │ │ │ ├── list │ │ │ │ ├── list.component.html │ │ │ │ ├── list.component.scss │ │ │ │ ├── list.component.ts │ │ │ │ └── readme.md │ │ │ ├── loading │ │ │ │ ├── loading.component.html │ │ │ │ ├── loading.component.scss │ │ │ │ ├── loading.component.ts │ │ │ │ └── readme.md │ │ │ ├── renderer │ │ │ │ ├── readme.md │ │ │ │ ├── renderer.component.html │ │ │ │ ├── renderer.component.scss │ │ │ │ └── renderer.component.ts │ │ │ ├── template │ │ │ │ ├── readme.md │ │ │ │ ├── template.component.html │ │ │ │ ├── template.component.scss │ │ │ │ └── template.component.ts │ │ │ ├── typing │ │ │ │ ├── readme.md │ │ │ │ ├── typing.component.html │ │ │ │ ├── typing.component.scss │ │ │ │ └── typing.component.ts │ │ │ └── variant │ │ │ │ ├── readme.md │ │ │ │ ├── variant.component.html │ │ │ │ ├── variant.component.scss │ │ │ │ └── variant.component.ts │ │ │ └── readme.md │ ├── index.ts │ ├── ng-package.json │ ├── public-api.ts │ └── style │ │ ├── mixin.scss │ │ └── param.scss │ ├── button │ ├── button.component.html │ ├── button.component.scss │ ├── button.component.spec.ts │ ├── button.component.ts │ ├── button.module.ts │ ├── button.property.ts │ ├── buttons.component.scss │ ├── buttons.component.ts │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ └── default │ │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.scss │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── disabled │ │ │ │ ├── disabled.component.html │ │ │ │ ├── disabled.component.scss │ │ │ │ ├── disabled.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── group │ │ │ │ ├── group.component.html │ │ │ │ ├── group.component.scss │ │ │ │ ├── group.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── loading │ │ │ │ ├── loading.component.html │ │ │ │ ├── loading.component.scss │ │ │ │ ├── loading.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── readme.md │ │ │ │ ├── size │ │ │ │ ├── readme.md │ │ │ │ ├── size.component.html │ │ │ │ ├── size.component.scss │ │ │ │ └── size.component.ts │ │ │ │ └── text │ │ │ │ ├── readme.md │ │ │ │ ├── text.component.html │ │ │ │ ├── text.component.scss │ │ │ │ └── text.component.ts │ │ ├── index.ts │ │ └── zh_CN │ │ │ └── default │ │ │ ├── default │ │ │ ├── default.component.html │ │ │ ├── default.component.scss │ │ │ ├── default.component.ts │ │ │ └── readme.md │ │ │ ├── disabled │ │ │ ├── disabled.component.html │ │ │ ├── disabled.component.scss │ │ │ ├── disabled.component.ts │ │ │ └── readme.md │ │ │ ├── group │ │ │ ├── group.component.html │ │ │ ├── group.component.scss │ │ │ ├── group.component.ts │ │ │ └── readme.md │ │ │ ├── loading │ │ │ ├── loading.component.html │ │ │ ├── loading.component.scss │ │ │ ├── loading.component.ts │ │ │ └── readme.md │ │ │ ├── readme.md │ │ │ ├── size │ │ │ ├── readme.md │ │ │ ├── size.component.html │ │ │ ├── size.component.scss │ │ │ └── size.component.ts │ │ │ └── text │ │ │ ├── readme.md │ │ │ ├── text.component.html │ │ │ ├── text.component.scss │ │ │ └── text.component.ts │ ├── index.ts │ ├── ng-package.json │ ├── public-api.ts │ └── style │ │ ├── mixin.scss │ │ └── param.scss │ ├── calendar │ ├── calendar.component.html │ ├── calendar.component.scss │ ├── calendar.component.spec.ts │ ├── calendar.component.ts │ ├── calendar.module.ts │ ├── calendar.property.ts │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ └── default │ │ │ │ ├── card │ │ │ │ ├── card.component.html │ │ │ │ ├── card.component.scss │ │ │ │ ├── card.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.scss │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── header │ │ │ │ ├── header.component.html │ │ │ │ ├── header.component.scss │ │ │ │ ├── header.component.ts │ │ │ │ └── readme.md │ │ │ │ └── readme.md │ │ ├── index.ts │ │ └── zh_CN │ │ │ └── default │ │ │ ├── card │ │ │ ├── card.component.html │ │ │ ├── card.component.scss │ │ │ ├── card.component.ts │ │ │ └── readme.md │ │ │ ├── default │ │ │ ├── default.component.html │ │ │ ├── default.component.scss │ │ │ ├── default.component.ts │ │ │ └── readme.md │ │ │ ├── header │ │ │ ├── header.component.html │ │ │ ├── header.component.scss │ │ │ ├── header.component.ts │ │ │ └── readme.md │ │ │ └── readme.md │ ├── index.ts │ ├── ng-package.json │ ├── public-api.ts │ └── style │ │ ├── mixin.scss │ │ └── param.scss │ ├── card │ ├── card.component.html │ ├── card.component.scss │ ├── card.component.spec.ts │ ├── card.component.ts │ ├── card.module.ts │ ├── card.property.ts │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ └── default │ │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── header │ │ │ │ ├── header.component.html │ │ │ │ ├── header.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── img │ │ │ │ ├── img.component.html │ │ │ │ ├── img.component.scss │ │ │ │ ├── img.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── readme.md │ │ │ │ ├── shadow │ │ │ │ ├── readme.md │ │ │ │ ├── shadow.component.html │ │ │ │ └── shadow.component.ts │ │ │ │ └── variant │ │ │ │ ├── readme.md │ │ │ │ ├── variant.component.html │ │ │ │ ├── variant.component.scss │ │ │ │ └── variant.component.ts │ │ ├── index.ts │ │ └── zh_CN │ │ │ └── default │ │ │ ├── default │ │ │ ├── default.component.html │ │ │ ├── default.component.ts │ │ │ └── readme.md │ │ │ ├── header │ │ │ ├── header.component.html │ │ │ ├── header.component.ts │ │ │ └── readme.md │ │ │ ├── img │ │ │ ├── img.component.html │ │ │ ├── img.component.scss │ │ │ ├── img.component.ts │ │ │ └── readme.md │ │ │ ├── readme.md │ │ │ ├── shadow │ │ │ ├── readme.md │ │ │ ├── shadow.component.html │ │ │ └── shadow.component.ts │ │ │ └── variant │ │ │ ├── readme.md │ │ │ ├── variant.component.html │ │ │ ├── variant.component.scss │ │ │ └── variant.component.ts │ ├── index.ts │ ├── ng-package.json │ ├── public-api.ts │ └── style │ │ ├── mixin.scss │ │ └── param.scss │ ├── carousel │ ├── carousel-panel.component.html │ ├── carousel-panel.component.scss │ ├── carousel-panel.component.ts │ ├── carousel.component.html │ ├── carousel.component.scss │ ├── carousel.component.spec.ts │ ├── carousel.component.ts │ ├── carousel.module.ts │ ├── carousel.property.ts │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ └── default │ │ │ │ ├── arrow │ │ │ │ ├── arrow.component.html │ │ │ │ ├── arrow.component.scss │ │ │ │ ├── arrow.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── card │ │ │ │ ├── card.component.html │ │ │ │ ├── card.component.scss │ │ │ │ ├── card.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.scss │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── direction │ │ │ │ ├── direction.component.html │ │ │ │ ├── direction.component.scss │ │ │ │ ├── direction.component.ts │ │ │ │ └── readme.md │ │ │ │ └── readme.md │ │ ├── index.ts │ │ └── zh_CN │ │ │ └── default │ │ │ ├── arrow │ │ │ ├── arrow.component.html │ │ │ ├── arrow.component.scss │ │ │ ├── arrow.component.ts │ │ │ └── readme.md │ │ │ ├── card │ │ │ ├── card.component.html │ │ │ ├── card.component.scss │ │ │ ├── card.component.ts │ │ │ └── readme.md │ │ │ ├── default │ │ │ ├── default.component.html │ │ │ ├── default.component.scss │ │ │ ├── default.component.ts │ │ │ └── readme.md │ │ │ ├── direction │ │ │ ├── direction.component.html │ │ │ ├── direction.component.scss │ │ │ ├── direction.component.ts │ │ │ └── readme.md │ │ │ └── readme.md │ ├── index.ts │ ├── ng-package.json │ ├── public-api.ts │ └── style │ │ ├── mixin.scss │ │ └── param.scss │ ├── cascade │ ├── cascade-portal.component.html │ ├── cascade-portal.component.scss │ ├── cascade-portal.component.ts │ ├── cascade.component.html │ ├── cascade.component.scss │ ├── cascade.component.spec.ts │ ├── cascade.component.ts │ ├── cascade.module.ts │ ├── cascade.property.ts │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ └── default │ │ │ │ ├── bordered │ │ │ │ ├── bordered.component.html │ │ │ │ ├── bordered.component.scss │ │ │ │ ├── bordered.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.scss │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── disabled │ │ │ │ ├── disabled.component.html │ │ │ │ ├── disabled.component.scss │ │ │ │ ├── disabled.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── float-label │ │ │ │ ├── float-label.component.html │ │ │ │ ├── float-label.component.scss │ │ │ │ ├── float-label.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── hover │ │ │ │ ├── hover.component.html │ │ │ │ ├── hover.component.scss │ │ │ │ ├── hover.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── label │ │ │ │ ├── label.component.html │ │ │ │ ├── label.component.scss │ │ │ │ ├── label.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── readme.md │ │ │ │ ├── required │ │ │ │ ├── readme.md │ │ │ │ ├── required.component.html │ │ │ │ ├── required.component.scss │ │ │ │ └── required.component.ts │ │ │ │ └── size │ │ │ │ ├── readme.md │ │ │ │ ├── size.component.html │ │ │ │ ├── size.component.scss │ │ │ │ └── size.component.ts │ │ ├── index.ts │ │ └── zh_CN │ │ │ └── default │ │ │ ├── bordered │ │ │ ├── bordered.component.html │ │ │ ├── bordered.component.scss │ │ │ ├── bordered.component.ts │ │ │ └── readme.md │ │ │ ├── default │ │ │ ├── default.component.html │ │ │ ├── default.component.scss │ │ │ ├── default.component.ts │ │ │ └── readme.md │ │ │ ├── disabled │ │ │ ├── disabled.component.html │ │ │ ├── disabled.component.scss │ │ │ ├── disabled.component.ts │ │ │ └── readme.md │ │ │ ├── float-label │ │ │ ├── float-label.component.html │ │ │ ├── float-label.component.scss │ │ │ ├── float-label.component.ts │ │ │ └── readme.md │ │ │ ├── hover │ │ │ ├── hover.component.html │ │ │ ├── hover.component.scss │ │ │ ├── hover.component.ts │ │ │ └── readme.md │ │ │ ├── label │ │ │ ├── label.component.html │ │ │ ├── label.component.scss │ │ │ ├── label.component.ts │ │ │ └── readme.md │ │ │ ├── readme.md │ │ │ ├── required │ │ │ ├── readme.md │ │ │ ├── required.component.html │ │ │ ├── required.component.scss │ │ │ └── required.component.ts │ │ │ ├── size │ │ │ ├── readme.md │ │ │ ├── size.component.html │ │ │ ├── size.component.scss │ │ │ └── size.component.ts │ │ │ └── variant │ │ │ ├── readme.md │ │ │ ├── variant.component.html │ │ │ ├── variant.component.scss │ │ │ └── variant.component.ts │ ├── index.ts │ ├── ng-package.json │ ├── public-api.ts │ └── style │ │ ├── mixin.scss │ │ └── param.scss │ ├── checkbox │ ├── checkbox.component.html │ ├── checkbox.component.scss │ ├── checkbox.component.spec.ts │ ├── checkbox.component.ts │ ├── checkbox.module.ts │ ├── checkbox.property.ts │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ └── default │ │ │ │ ├── async │ │ │ │ ├── async.component.html │ │ │ │ ├── async.component.scss │ │ │ │ ├── async.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── button │ │ │ │ ├── button.component.html │ │ │ │ ├── button.component.scss │ │ │ │ ├── button.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── check-all │ │ │ │ ├── check-all.component.html │ │ │ │ ├── check-all.component.scss │ │ │ │ ├── check-all.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.scss │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── disabled │ │ │ │ ├── disabled.component.html │ │ │ │ ├── disabled.component.scss │ │ │ │ ├── disabled.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── icon │ │ │ │ ├── icon.component.html │ │ │ │ ├── icon.component.scss │ │ │ │ ├── icon.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── perpost │ │ │ │ ├── perpost.component.html │ │ │ │ ├── perpost.component.scss │ │ │ │ ├── perpost.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── readme.md │ │ │ │ ├── single │ │ │ │ ├── readme.md │ │ │ │ ├── single.component.html │ │ │ │ └── single.component.ts │ │ │ │ ├── tag │ │ │ │ ├── readme.md │ │ │ │ ├── tag.component.html │ │ │ │ ├── tag.component.scss │ │ │ │ └── tag.component.ts │ │ │ │ └── vertical │ │ │ │ ├── readme.md │ │ │ │ ├── vertical.component.html │ │ │ │ ├── vertical.component.scss │ │ │ │ └── vertical.component.ts │ │ ├── index.ts │ │ └── zh_CN │ │ │ └── default │ │ │ ├── async │ │ │ ├── async.component.html │ │ │ ├── async.component.scss │ │ │ ├── async.component.ts │ │ │ └── readme.md │ │ │ ├── button │ │ │ ├── button.component.html │ │ │ ├── button.component.scss │ │ │ ├── button.component.ts │ │ │ └── readme.md │ │ │ ├── check-all │ │ │ ├── check-all.component.html │ │ │ ├── check-all.component.scss │ │ │ ├── check-all.component.ts │ │ │ └── readme.md │ │ │ ├── default │ │ │ ├── default.component.html │ │ │ ├── default.component.scss │ │ │ ├── default.component.ts │ │ │ └── readme.md │ │ │ ├── disabled │ │ │ ├── disabled.component.html │ │ │ ├── disabled.component.scss │ │ │ ├── disabled.component.ts │ │ │ └── readme.md │ │ │ ├── icon │ │ │ ├── icon.component.html │ │ │ ├── icon.component.scss │ │ │ ├── icon.component.ts │ │ │ └── readme.md │ │ │ ├── perpost │ │ │ ├── perpost.component.html │ │ │ ├── perpost.component.scss │ │ │ ├── perpost.component.ts │ │ │ └── readme.md │ │ │ ├── readme.md │ │ │ ├── single │ │ │ ├── readme.md │ │ │ ├── single.component.html │ │ │ └── single.component.ts │ │ │ ├── tag │ │ │ ├── readme.md │ │ │ ├── tag.component.html │ │ │ ├── tag.component.scss │ │ │ └── tag.component.ts │ │ │ └── vertical │ │ │ ├── readme.md │ │ │ ├── vertical.component.html │ │ │ ├── vertical.component.scss │ │ │ └── vertical.component.ts │ ├── index.ts │ ├── ng-package.json │ ├── public-api.ts │ └── style │ │ ├── mixin.scss │ │ └── param.scss │ ├── collapse │ ├── collapse-panel.component.html │ ├── collapse-panel.component.scss │ ├── collapse-panel.component.ts │ ├── collapse.component.html │ ├── collapse.component.scss │ ├── collapse.component.spec.ts │ ├── collapse.component.ts │ ├── collapse.module.ts │ ├── collapse.property.ts │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ └── default │ │ │ │ ├── accordion │ │ │ │ ├── accordion.component.html │ │ │ │ ├── accordion.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── arrow │ │ │ │ ├── arrow.component.html │ │ │ │ ├── arrow.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── border │ │ │ │ ├── border.component.html │ │ │ │ ├── border.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── custom │ │ │ │ ├── custom.component.html │ │ │ │ ├── custom.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── disabled │ │ │ │ ├── disabled.component.html │ │ │ │ ├── disabled.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── ghost │ │ │ │ ├── ghost.component.html │ │ │ │ ├── ghost.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── icon │ │ │ │ ├── icon.component.html │ │ │ │ ├── icon.component.ts │ │ │ │ └── readme.md │ │ │ │ └── readme.md │ │ ├── index.ts │ │ └── zh_CN │ │ │ └── default │ │ │ ├── accordion │ │ │ ├── accordion.component.html │ │ │ ├── accordion.component.ts │ │ │ └── readme.md │ │ │ ├── arrow │ │ │ ├── arrow.component.html │ │ │ ├── arrow.component.ts │ │ │ └── readme.md │ │ │ ├── border │ │ │ ├── border.component.html │ │ │ ├── border.component.ts │ │ │ └── readme.md │ │ │ ├── custom │ │ │ ├── custom.component.html │ │ │ ├── custom.component.ts │ │ │ └── readme.md │ │ │ ├── default │ │ │ ├── default.component.html │ │ │ ├── default.component.ts │ │ │ └── readme.md │ │ │ ├── disabled │ │ │ ├── disabled.component.html │ │ │ ├── disabled.component.ts │ │ │ └── readme.md │ │ │ ├── ghost │ │ │ ├── ghost.component.html │ │ │ ├── ghost.component.ts │ │ │ └── readme.md │ │ │ ├── icon │ │ │ ├── icon.component.html │ │ │ ├── icon.component.ts │ │ │ └── readme.md │ │ │ └── readme.md │ ├── index.ts │ ├── ng-package.json │ ├── public-api.ts │ └── style │ │ ├── mixin.scss │ │ └── param.scss │ ├── color-picker │ ├── color-map.data.ts │ ├── color-picker-portal.component.html │ ├── color-picker-portal.component.scss │ ├── color-picker-portal.component.ts │ ├── color-picker.component.html │ ├── color-picker.component.scss │ ├── color-picker.component.spec.ts │ ├── color-picker.component.ts │ ├── color-picker.directive.ts │ ├── color-picker.module.ts │ ├── color-picker.property.ts │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ └── default │ │ │ │ ├── bordered │ │ │ │ ├── bordered.component.html │ │ │ │ ├── bordered.component.scss │ │ │ │ ├── bordered.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.scss │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── disabled │ │ │ │ ├── disabled.component.html │ │ │ │ ├── disabled.component.scss │ │ │ │ ├── disabled.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── float-label │ │ │ │ ├── float-label.component.html │ │ │ │ ├── float-label.component.scss │ │ │ │ ├── float-label.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── label │ │ │ │ ├── label.component.html │ │ │ │ ├── label.component.scss │ │ │ │ ├── label.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── panel │ │ │ │ ├── panel.component.html │ │ │ │ ├── panel.component.scss │ │ │ │ ├── panel.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── readme.md │ │ │ │ ├── required │ │ │ │ ├── readme.md │ │ │ │ ├── required.component.html │ │ │ │ ├── required.component.scss │ │ │ │ └── required.component.ts │ │ │ │ ├── size │ │ │ │ ├── readme.md │ │ │ │ ├── size.component.html │ │ │ │ ├── size.component.scss │ │ │ │ └── size.component.ts │ │ │ │ └── variant │ │ │ │ ├── readme.md │ │ │ │ ├── variant.component.html │ │ │ │ ├── variant.component.scss │ │ │ │ └── variant.component.ts │ │ ├── index.ts │ │ └── zh_CN │ │ │ └── default │ │ │ ├── bordered │ │ │ ├── bordered.component.html │ │ │ ├── bordered.component.scss │ │ │ ├── bordered.component.ts │ │ │ └── readme.md │ │ │ ├── default │ │ │ ├── default.component.html │ │ │ ├── default.component.scss │ │ │ ├── default.component.ts │ │ │ └── readme.md │ │ │ ├── disabled │ │ │ ├── disabled.component.html │ │ │ ├── disabled.component.scss │ │ │ ├── disabled.component.ts │ │ │ └── readme.md │ │ │ ├── float-label │ │ │ ├── float-label.component.html │ │ │ ├── float-label.component.scss │ │ │ ├── float-label.component.ts │ │ │ └── readme.md │ │ │ ├── label │ │ │ ├── label.component.html │ │ │ ├── label.component.scss │ │ │ ├── label.component.ts │ │ │ └── readme.md │ │ │ ├── panel │ │ │ ├── panel.component.html │ │ │ ├── panel.component.scss │ │ │ ├── panel.component.ts │ │ │ └── readme.md │ │ │ ├── readme.md │ │ │ ├── required │ │ │ ├── readme.md │ │ │ ├── required.component.html │ │ │ ├── required.component.scss │ │ │ └── required.component.ts │ │ │ ├── size │ │ │ ├── readme.md │ │ │ ├── size.component.html │ │ │ ├── size.component.scss │ │ │ └── size.component.ts │ │ │ └── variant │ │ │ ├── readme.md │ │ │ ├── variant.component.html │ │ │ ├── variant.component.scss │ │ │ └── variant.component.ts │ ├── index.ts │ ├── ng-package.json │ ├── public-api.ts │ └── style │ │ ├── mixin.scss │ │ └── param.scss │ ├── color │ ├── color.component.html │ ├── color.component.spec.ts │ ├── color.component.ts │ ├── color.module.ts │ ├── color.property.ts │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ └── default │ │ │ │ ├── assist │ │ │ │ ├── assist.component.html │ │ │ │ ├── assist.component.scss │ │ │ │ ├── assist.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.scss │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── neutral │ │ │ │ ├── neutral.component.html │ │ │ │ ├── neutral.component.scss │ │ │ │ ├── neutral.component.ts │ │ │ │ └── readme.md │ │ │ │ └── readme.md │ │ ├── index.ts │ │ └── zh_CN │ │ │ └── default │ │ │ ├── assist │ │ │ ├── assist.component.html │ │ │ ├── assist.component.scss │ │ │ ├── assist.component.ts │ │ │ └── readme.md │ │ │ ├── default │ │ │ ├── default.component.html │ │ │ ├── default.component.scss │ │ │ ├── default.component.ts │ │ │ └── readme.md │ │ │ ├── neutral │ │ │ ├── neutral.component.html │ │ │ ├── neutral.component.scss │ │ │ ├── neutral.component.ts │ │ │ └── readme.md │ │ │ └── readme.md │ ├── index.ts │ ├── ng-package.json │ ├── public-api.ts │ └── style │ │ ├── index.scss │ │ ├── mixin.scss │ │ └── param.scss │ ├── comment │ ├── comment-reply.component.html │ ├── comment-reply.component.scss │ ├── comment-reply.component.ts │ ├── comment.component.html │ ├── comment.component.scss │ ├── comment.component.spec.ts │ ├── comment.component.ts │ ├── comment.module.ts │ ├── comment.property.ts │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ └── default │ │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ │ └── readme.md │ │ ├── index.ts │ │ └── zh_CN │ │ │ └── default │ │ │ ├── default │ │ │ ├── default.component.html │ │ │ ├── default.component.ts │ │ │ └── readme.md │ │ │ └── readme.md │ ├── index.ts │ ├── ng-package.json │ ├── public-api.ts │ └── style │ │ ├── mixin.scss │ │ └── param.scss │ ├── container │ ├── aside.component.scss │ ├── aside.component.ts │ ├── container.component.scss │ ├── container.component.spec.ts │ ├── container.component.ts │ ├── container.module.ts │ ├── container.property.ts │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ └── default │ │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.scss │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ │ └── readme.md │ │ ├── index.ts │ │ └── zh_CN │ │ │ └── default │ │ │ ├── default │ │ │ ├── default.component.html │ │ │ ├── default.component.scss │ │ │ ├── default.component.ts │ │ │ └── readme.md │ │ │ └── readme.md │ ├── footer.component.scss │ ├── footer.component.ts │ ├── header.component.scss │ ├── header.component.ts │ ├── index.ts │ ├── main.component.scss │ ├── main.component.ts │ ├── ng-package.json │ ├── public-api.ts │ └── style │ │ ├── mixin.scss │ │ └── param.scss │ ├── core │ ├── components │ │ ├── index.ts │ │ ├── inner-html.component.ts │ │ └── public-api.ts │ ├── config │ │ ├── config.service.ts │ │ ├── config.spec.ts │ │ ├── config.ts │ │ ├── index.ts │ │ └── public-api.ts │ ├── functions │ │ ├── chunk.ts │ │ ├── clone-deep.ts │ │ ├── convert.ts │ │ ├── csspx.ts │ │ ├── cssrem.ts │ │ ├── date.ts │ │ ├── drop.ts │ │ ├── file-size.ts │ │ ├── flex.ts │ │ ├── group-by.ts │ │ ├── guid.ts │ │ ├── has-in.ts │ │ ├── index.ts │ │ ├── order-by.ts │ │ ├── parent-path.ts │ │ ├── property.ts │ │ ├── public-api.ts │ │ ├── remove.ts │ │ └── resize.ts │ ├── index.ts │ ├── interfaces │ │ ├── data.type.ts │ │ ├── identify.type.ts │ │ ├── index.ts │ │ ├── layout.type.ts │ │ ├── public-api.ts │ │ └── result-list.type.ts │ ├── ng-package.json │ ├── public-api.ts │ ├── readme.md │ ├── services │ │ ├── http.service.ts │ │ ├── index.ts │ │ ├── preloading-strategy.service.ts │ │ ├── public-api.ts │ │ ├── repository.service.ts │ │ ├── reuse-strategy.service.ts │ │ └── storage.service.ts │ ├── theme │ │ ├── index.ts │ │ ├── public-api.ts │ │ ├── theme.service.ts │ │ ├── theme.spec.ts │ │ └── theme.ts │ └── util │ │ ├── animation.ts │ │ ├── camel-to-kebab.ts │ │ ├── check.ts │ │ ├── computed-style.ts │ │ ├── host.ts │ │ ├── html.ts │ │ ├── index.ts │ │ ├── kebab-to-camel.ts │ │ ├── log.ts │ │ ├── option.ts │ │ ├── public-api.ts │ │ └── sleep.ts │ ├── coversations │ ├── coversations.component.html │ ├── coversations.component.scss │ ├── coversations.component.ts │ ├── coversations.module.ts │ ├── coversations.property.ts │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ ├── default │ │ │ │ ├── default │ │ │ │ │ ├── default.component.html │ │ │ │ │ ├── default.component.scss │ │ │ │ │ ├── default.component.ts │ │ │ │ │ └── readme.md │ │ │ │ ├── group │ │ │ │ │ ├── group.component.html │ │ │ │ │ ├── group.component.scss │ │ │ │ │ ├── group.component.ts │ │ │ │ │ └── readme.md │ │ │ │ ├── load-more │ │ │ │ │ ├── load-more.component.html │ │ │ │ │ ├── load-more.component.scss │ │ │ │ │ ├── load-more.component.ts │ │ │ │ │ └── readme.md │ │ │ │ ├── model │ │ │ │ │ ├── model.component.html │ │ │ │ │ ├── model.component.scss │ │ │ │ │ ├── model.component.ts │ │ │ │ │ └── readme.md │ │ │ │ └── template │ │ │ │ │ ├── readme.md │ │ │ │ │ ├── template.component.html │ │ │ │ │ ├── template.component.scss │ │ │ │ │ └── template.component.ts │ │ │ └── readme.md │ │ ├── index.ts │ │ └── zh_CN │ │ │ ├── default │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.scss │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ ├── group │ │ │ │ ├── group.component.html │ │ │ │ ├── group.component.scss │ │ │ │ ├── group.component.ts │ │ │ │ └── readme.md │ │ │ ├── load-more │ │ │ │ ├── load-more.component.html │ │ │ │ ├── load-more.component.scss │ │ │ │ ├── load-more.component.ts │ │ │ │ └── readme.md │ │ │ ├── model │ │ │ │ ├── model.component.html │ │ │ │ ├── model.component.scss │ │ │ │ ├── model.component.ts │ │ │ │ └── readme.md │ │ │ └── template │ │ │ │ ├── readme.md │ │ │ │ ├── template.component.html │ │ │ │ ├── template.component.scss │ │ │ │ └── template.component.ts │ │ │ └── readme.md │ ├── index.ts │ ├── ng-package.json │ ├── public-api.ts │ └── style │ │ ├── mixin.scss │ │ └── param.scss │ ├── crumb │ ├── crumb.component.html │ ├── crumb.component.spec.ts │ ├── crumb.component.ts │ ├── crumb.module.ts │ ├── crumb.property.ts │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ └── default │ │ │ │ ├── custom │ │ │ │ ├── custom.component.html │ │ │ │ ├── custom.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── icon │ │ │ │ ├── icon.component.html │ │ │ │ ├── icon.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── readme.md │ │ │ │ └── separator │ │ │ │ ├── readme.md │ │ │ │ ├── separator.component.html │ │ │ │ └── separator.component.ts │ │ ├── index.ts │ │ └── zh_CN │ │ │ └── default │ │ │ ├── custom │ │ │ ├── custom.component.html │ │ │ ├── custom.component.ts │ │ │ └── readme.md │ │ │ ├── default │ │ │ ├── default.component.html │ │ │ ├── default.component.ts │ │ │ └── readme.md │ │ │ ├── icon │ │ │ ├── icon.component.html │ │ │ ├── icon.component.ts │ │ │ └── readme.md │ │ │ ├── readme.md │ │ │ └── separator │ │ │ ├── readme.md │ │ │ ├── separator.component.html │ │ │ └── separator.component.ts │ ├── index.ts │ ├── ng-package.json │ ├── public-api.ts │ └── style │ │ ├── index.scss │ │ ├── mixin.scss │ │ └── param.scss │ ├── date-picker │ ├── date-picker-portal.component.html │ ├── date-picker-portal.component.scss │ ├── date-picker-portal.component.ts │ ├── date-picker.component.html │ ├── date-picker.component.scss │ ├── date-picker.component.spec.ts │ ├── date-picker.component.ts │ ├── date-picker.module.ts │ ├── date-picker.property.ts │ ├── date-quarter.pipe.ts │ ├── date-range-portal.component.html │ ├── date-range-portal.component.scss │ ├── date-range-portal.component.ts │ ├── date-range.component.html │ ├── date-range.component.scss │ ├── date-range.component.spec.ts │ ├── date-range.component.ts │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ └── default │ │ │ │ ├── bordered │ │ │ │ ├── bordered.component.html │ │ │ │ ├── bordered.component.scss │ │ │ │ ├── bordered.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.scss │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── disabled-date │ │ │ │ ├── disabled-date.component.html │ │ │ │ ├── disabled-date.component.scss │ │ │ │ ├── disabled-date.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── disabled │ │ │ │ ├── disabled.component.html │ │ │ │ ├── disabled.component.scss │ │ │ │ ├── disabled.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── float-label │ │ │ │ ├── float-label.component.html │ │ │ │ ├── float-label.component.scss │ │ │ │ ├── float-label.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── footer │ │ │ │ ├── footer.component.html │ │ │ │ ├── footer.component.scss │ │ │ │ ├── footer.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── label │ │ │ │ ├── label.component.html │ │ │ │ ├── label.component.scss │ │ │ │ ├── label.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── range │ │ │ │ ├── range.component.html │ │ │ │ ├── range.component.scss │ │ │ │ ├── range.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── readme.md │ │ │ │ ├── required │ │ │ │ ├── readme.md │ │ │ │ ├── required.component.html │ │ │ │ ├── required.component.scss │ │ │ │ └── required.component.ts │ │ │ │ ├── size │ │ │ │ ├── readme.md │ │ │ │ ├── size.component.html │ │ │ │ ├── size.component.scss │ │ │ │ └── size.component.ts │ │ │ │ ├── time │ │ │ │ ├── readme.md │ │ │ │ ├── time.component.html │ │ │ │ ├── time.component.scss │ │ │ │ └── time.component.ts │ │ │ │ ├── today │ │ │ │ ├── readme.md │ │ │ │ ├── today.component.html │ │ │ │ ├── today.component.scss │ │ │ │ └── today.component.ts │ │ │ │ ├── variant │ │ │ │ ├── readme.md │ │ │ │ ├── variant.component.html │ │ │ │ ├── variant.component.scss │ │ │ │ └── variant.component.ts │ │ │ │ └── year-month │ │ │ │ ├── readme.md │ │ │ │ ├── year-month.component.html │ │ │ │ ├── year-month.component.scss │ │ │ │ └── year-month.component.ts │ │ ├── index.ts │ │ └── zh_CN │ │ │ └── default │ │ │ ├── bordered │ │ │ ├── bordered.component.html │ │ │ ├── bordered.component.scss │ │ │ ├── bordered.component.ts │ │ │ └── readme.md │ │ │ ├── default │ │ │ ├── default.component.html │ │ │ ├── default.component.scss │ │ │ ├── default.component.ts │ │ │ └── readme.md │ │ │ ├── disabled-date │ │ │ ├── disabled-date.component.html │ │ │ ├── disabled-date.component.scss │ │ │ ├── disabled-date.component.ts │ │ │ └── readme.md │ │ │ ├── disabled │ │ │ ├── disabled.component.html │ │ │ ├── disabled.component.scss │ │ │ ├── disabled.component.ts │ │ │ └── readme.md │ │ │ ├── float-label │ │ │ ├── float-label.component.html │ │ │ ├── float-label.component.scss │ │ │ ├── float-label.component.ts │ │ │ └── readme.md │ │ │ ├── footer │ │ │ ├── footer.component.html │ │ │ ├── footer.component.scss │ │ │ ├── footer.component.ts │ │ │ └── readme.md │ │ │ ├── label │ │ │ ├── label.component.html │ │ │ ├── label.component.scss │ │ │ ├── label.component.ts │ │ │ └── readme.md │ │ │ ├── range │ │ │ ├── range.component.html │ │ │ ├── range.component.scss │ │ │ ├── range.component.ts │ │ │ └── readme.md │ │ │ ├── readme.md │ │ │ ├── required │ │ │ ├── readme.md │ │ │ ├── required.component.html │ │ │ ├── required.component.scss │ │ │ └── required.component.ts │ │ │ ├── size │ │ │ ├── readme.md │ │ │ ├── size.component.html │ │ │ ├── size.component.scss │ │ │ └── size.component.ts │ │ │ ├── time │ │ │ ├── readme.md │ │ │ ├── time.component.html │ │ │ ├── time.component.scss │ │ │ └── time.component.ts │ │ │ ├── today │ │ │ ├── readme.md │ │ │ ├── today.component.html │ │ │ ├── today.component.scss │ │ │ └── today.component.ts │ │ │ ├── variant │ │ │ ├── readme.md │ │ │ ├── variant.component.html │ │ │ ├── variant.component.scss │ │ │ └── variant.component.ts │ │ │ └── year-month │ │ │ ├── readme.md │ │ │ ├── year-month.component.html │ │ │ ├── year-month.component.scss │ │ │ └── year-month.component.ts │ ├── index.ts │ ├── ng-package.json │ ├── picker-date.component.html │ ├── picker-date.component.scss │ ├── picker-date.component.ts │ ├── picker-month.component.html │ ├── picker-month.component.scss │ ├── picker-month.component.ts │ ├── picker-quarter.component.html │ ├── picker-quarter.component.scss │ ├── picker-quarter.component.ts │ ├── picker-year.component.html │ ├── picker-year.component.scss │ ├── picker-year.component.ts │ ├── public-api.ts │ └── style │ │ ├── mixin.scss │ │ └── param.scss │ ├── description │ ├── description-item.component.ts │ ├── description.component.html │ ├── description.component.spec.ts │ ├── description.component.ts │ ├── description.module.ts │ ├── description.property.ts │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ └── default │ │ │ │ ├── border │ │ │ │ ├── border.component.html │ │ │ │ ├── border.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── readme.md │ │ │ │ ├── size │ │ │ │ ├── readme.md │ │ │ │ ├── size.component.html │ │ │ │ └── size.component.ts │ │ │ │ ├── split │ │ │ │ ├── readme.md │ │ │ │ ├── split.component.html │ │ │ │ └── split.component.ts │ │ │ │ └── vertical │ │ │ │ ├── readme.md │ │ │ │ ├── vertical.component.html │ │ │ │ └── vertical.component.ts │ │ ├── index.ts │ │ └── zh_CN │ │ │ └── default │ │ │ ├── border │ │ │ ├── border.component.html │ │ │ ├── border.component.ts │ │ │ └── readme.md │ │ │ ├── default │ │ │ ├── default.component.html │ │ │ ├── default.component.ts │ │ │ └── readme.md │ │ │ ├── readme.md │ │ │ ├── size │ │ │ ├── readme.md │ │ │ ├── size.component.html │ │ │ └── size.component.ts │ │ │ ├── split │ │ │ ├── readme.md │ │ │ ├── split.component.html │ │ │ └── split.component.ts │ │ │ └── vertical │ │ │ ├── readme.md │ │ │ ├── vertical.component.html │ │ │ └── vertical.component.ts │ ├── index.ts │ ├── ng-package.json │ ├── public-api.ts │ └── style │ │ ├── index.scss │ │ ├── mixin.scss │ │ └── param.scss │ ├── dialog │ ├── dialog-container.component.html │ ├── dialog-container.component.scss │ ├── dialog-container.component.ts │ ├── dialog-portal.component.html │ ├── dialog-portal.component.scss │ ├── dialog-portal.component.ts │ ├── dialog-portal.directives.ts │ ├── dialog-ref.ts │ ├── dialog.component.html │ ├── dialog.component.scss │ ├── dialog.component.spec.ts │ ├── dialog.component.ts │ ├── dialog.module.ts │ ├── dialog.property.ts │ ├── dialog.service.ts │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ └── default │ │ │ │ ├── container │ │ │ │ ├── container.component.html │ │ │ │ ├── container.component.scss │ │ │ │ ├── container.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── custom │ │ │ │ ├── custom.component.html │ │ │ │ ├── custom.component.scss │ │ │ │ ├── custom.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.scss │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── draggable │ │ │ │ ├── draggable.component.html │ │ │ │ ├── draggable.component.scss │ │ │ │ ├── draggable.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── readme.md │ │ │ │ └── service │ │ │ │ ├── readme.md │ │ │ │ ├── service-dialog.component.html │ │ │ │ ├── service-dialog.component.ts │ │ │ │ ├── service.component.html │ │ │ │ ├── service.component.scss │ │ │ │ └── service.component.ts │ │ ├── index.ts │ │ └── zh_CN │ │ │ └── default │ │ │ ├── container │ │ │ ├── container.component.html │ │ │ ├── container.component.scss │ │ │ ├── container.component.ts │ │ │ └── readme.md │ │ │ ├── custom │ │ │ ├── custom.component.html │ │ │ ├── custom.component.scss │ │ │ ├── custom.component.ts │ │ │ └── readme.md │ │ │ ├── default │ │ │ ├── default.component.html │ │ │ ├── default.component.scss │ │ │ ├── default.component.ts │ │ │ └── readme.md │ │ │ ├── draggable │ │ │ ├── draggable.component.html │ │ │ ├── draggable.component.scss │ │ │ ├── draggable.component.ts │ │ │ └── readme.md │ │ │ ├── readme.md │ │ │ └── service │ │ │ ├── readme.md │ │ │ ├── service-dialog.component.html │ │ │ ├── service-dialog.component.ts │ │ │ ├── service.component.html │ │ │ ├── service.component.scss │ │ │ └── service.component.ts │ ├── index.ts │ ├── ng-package.json │ ├── public-api.ts │ └── style │ │ ├── mixin.scss │ │ └── param.scss │ ├── divider │ └── readme.md │ ├── doc │ ├── doc.component.html │ ├── doc.component.spec.ts │ ├── doc.component.ts │ ├── doc.module.ts │ ├── doc.property.ts │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── index.ts │ ├── ng-package.json │ ├── public-api.ts │ └── style │ │ ├── index.scss │ │ ├── mixin.scss │ │ └── param.scss │ ├── drag │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── drag.directive.spec.ts │ ├── drag.directive.ts │ ├── drag.module.ts │ ├── drag.property.ts │ ├── index.ts │ ├── ng-package.json │ └── public-api.ts │ ├── drawer │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── drawer-container.component.html │ ├── drawer-container.component.scss │ ├── drawer-container.component.ts │ ├── drawer-portal.component.html │ ├── drawer-portal.component.scss │ ├── drawer-portal.component.ts │ ├── drawer-portal.directives.ts │ ├── drawer-ref.ts │ ├── drawer.component.html │ ├── drawer.component.scss │ ├── drawer.component.spec.ts │ ├── drawer.component.ts │ ├── drawer.module.ts │ ├── drawer.property.ts │ ├── drawer.service.ts │ ├── examples │ │ ├── en_US │ │ │ └── default │ │ │ │ ├── container │ │ │ │ ├── container.component.html │ │ │ │ ├── container.component.scss │ │ │ │ ├── container.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── custom │ │ │ │ ├── custom.component.html │ │ │ │ ├── custom.component.scss │ │ │ │ ├── custom.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.scss │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── multiple │ │ │ │ ├── multiple.component.html │ │ │ │ ├── multiple.component.scss │ │ │ │ ├── multiple.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── readme.md │ │ │ │ ├── service │ │ │ │ ├── readme.md │ │ │ │ ├── service-drawer.component.html │ │ │ │ ├── service-drawer.component.ts │ │ │ │ ├── service.component.html │ │ │ │ ├── service.component.scss │ │ │ │ └── service.component.ts │ │ │ │ └── title │ │ │ │ ├── readme.md │ │ │ │ ├── title.component.html │ │ │ │ ├── title.component.scss │ │ │ │ └── title.component.ts │ │ ├── index.ts │ │ └── zh_CN │ │ │ └── default │ │ │ ├── container │ │ │ ├── container.component.html │ │ │ ├── container.component.scss │ │ │ ├── container.component.ts │ │ │ └── readme.md │ │ │ ├── custom │ │ │ ├── custom.component.html │ │ │ ├── custom.component.scss │ │ │ ├── custom.component.ts │ │ │ └── readme.md │ │ │ ├── default │ │ │ ├── default.component.html │ │ │ ├── default.component.scss │ │ │ ├── default.component.ts │ │ │ └── readme.md │ │ │ ├── multiple │ │ │ ├── multiple.component.html │ │ │ ├── multiple.component.scss │ │ │ ├── multiple.component.ts │ │ │ └── readme.md │ │ │ ├── readme.md │ │ │ ├── service │ │ │ ├── readme.md │ │ │ ├── service-drawer.component.html │ │ │ ├── service-drawer.component.ts │ │ │ ├── service.component.html │ │ │ ├── service.component.scss │ │ │ └── service.component.ts │ │ │ └── title │ │ │ ├── readme.md │ │ │ ├── title.component.html │ │ │ ├── title.component.scss │ │ │ └── title.component.ts │ ├── index.ts │ ├── ng-package.json │ ├── public-api.ts │ └── style │ │ ├── mixin.scss │ │ └── param.scss │ ├── dropdown │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── dropdown-portal.component.html │ ├── dropdown-portal.component.scss │ ├── dropdown-portal.component.ts │ ├── dropdown.component.html │ ├── dropdown.component.scss │ ├── dropdown.component.spec.ts │ ├── dropdown.component.ts │ ├── dropdown.module.ts │ ├── dropdown.property.ts │ ├── examples │ │ ├── en_US │ │ │ └── default │ │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── multistage │ │ │ │ ├── multistage.component.html │ │ │ │ ├── multistage.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── prop │ │ │ │ ├── prop.component.html │ │ │ │ ├── prop.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── readme.md │ │ │ │ └── trigger │ │ │ │ ├── readme.md │ │ │ │ ├── trigger.component.html │ │ │ │ ├── trigger.component.scss │ │ │ │ └── trigger.component.ts │ │ ├── index.ts │ │ └── zh_CN │ │ │ └── default │ │ │ ├── default │ │ │ ├── default.component.html │ │ │ ├── default.component.ts │ │ │ └── readme.md │ │ │ ├── multistage │ │ │ ├── multistage.component.html │ │ │ ├── multistage.component.ts │ │ │ └── readme.md │ │ │ ├── prop │ │ │ ├── prop.component.html │ │ │ ├── prop.component.ts │ │ │ └── readme.md │ │ │ ├── readme.md │ │ │ └── trigger │ │ │ ├── readme.md │ │ │ ├── trigger.component.html │ │ │ ├── trigger.component.scss │ │ │ └── trigger.component.ts │ ├── index.ts │ ├── ng-package.json │ ├── public-api.ts │ └── style │ │ ├── mixin.scss │ │ └── param.scss │ ├── empty │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── empty.component.html │ ├── empty.component.scss │ ├── empty.component.spec.ts │ ├── empty.component.ts │ ├── empty.module.ts │ ├── empty.property.ts │ ├── examples │ │ ├── en_US │ │ │ └── default │ │ │ │ ├── custom │ │ │ │ ├── custom.component.html │ │ │ │ ├── custom.component.scss │ │ │ │ ├── custom.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ │ └── readme.md │ │ ├── index.ts │ │ └── zh_CN │ │ │ └── default │ │ │ ├── custom │ │ │ ├── custom.component.html │ │ │ ├── custom.component.scss │ │ │ ├── custom.component.ts │ │ │ └── readme.md │ │ │ ├── default │ │ │ ├── default.component.html │ │ │ ├── default.component.ts │ │ │ └── readme.md │ │ │ └── readme.md │ ├── index.ts │ ├── ng-package.json │ ├── public-api.ts │ └── style │ │ ├── mixin.scss │ │ └── param.scss │ ├── examples │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples.component.html │ ├── examples.component.spec.ts │ ├── examples.component.ts │ ├── examples.module.ts │ ├── examples.property.ts │ ├── index.ts │ ├── ng-package.json │ ├── public-api.ts │ └── style │ │ ├── index.scss │ │ ├── mixin.scss │ │ └── param.scss │ ├── find │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ └── default │ │ │ │ ├── bordered │ │ │ │ ├── bordered.component.html │ │ │ │ ├── bordered.component.scss │ │ │ │ ├── bordered.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.scss │ │ │ │ ├── default.component.ts │ │ │ │ ├── default.service.ts │ │ │ │ └── readme.md │ │ │ │ ├── disabled │ │ │ │ ├── disabled.component.html │ │ │ │ ├── disabled.component.scss │ │ │ │ ├── disabled.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── label │ │ │ │ ├── label.component.html │ │ │ │ ├── label.component.scss │ │ │ │ ├── label.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── readme.md │ │ │ │ ├── size │ │ │ │ ├── readme.md │ │ │ │ ├── size.component.html │ │ │ │ ├── size.component.scss │ │ │ │ └── size.component.ts │ │ │ │ ├── tree-table │ │ │ │ ├── readme.md │ │ │ │ ├── tree-table.component.html │ │ │ │ ├── tree-table.component.scss │ │ │ │ ├── tree-table.component.ts │ │ │ │ ├── tree-table.service.ts │ │ │ │ └── tree.service.ts │ │ │ │ └── tree │ │ │ │ ├── readme.md │ │ │ │ ├── tree.component.html │ │ │ │ ├── tree.component.scss │ │ │ │ ├── tree.component.ts │ │ │ │ └── tree.service.ts │ │ ├── index.ts │ │ └── zh_CN │ │ │ └── default │ │ │ ├── bordered │ │ │ ├── bordered.component.html │ │ │ ├── bordered.component.scss │ │ │ ├── bordered.component.ts │ │ │ └── readme.md │ │ │ ├── default │ │ │ ├── default.component.html │ │ │ ├── default.component.scss │ │ │ ├── default.component.ts │ │ │ ├── default.service.ts │ │ │ └── readme.md │ │ │ ├── disabled │ │ │ ├── disabled.component.html │ │ │ ├── disabled.component.scss │ │ │ ├── disabled.component.ts │ │ │ └── readme.md │ │ │ ├── label │ │ │ ├── label.component.html │ │ │ ├── label.component.scss │ │ │ ├── label.component.ts │ │ │ └── readme.md │ │ │ ├── readme.md │ │ │ ├── size │ │ │ ├── readme.md │ │ │ ├── size.component.html │ │ │ ├── size.component.scss │ │ │ └── size.component.ts │ │ │ ├── tree-table │ │ │ ├── readme.md │ │ │ ├── tree-table.component.html │ │ │ ├── tree-table.component.scss │ │ │ ├── tree-table.component.ts │ │ │ ├── tree-table.service.ts │ │ │ └── tree.service.ts │ │ │ └── tree │ │ │ ├── readme.md │ │ │ ├── tree.component.html │ │ │ ├── tree.component.scss │ │ │ ├── tree.component.ts │ │ │ └── tree.service.ts │ ├── find.component.html │ ├── find.component.scss │ ├── find.component.spec.ts │ ├── find.component.ts │ ├── find.module.ts │ ├── find.property.ts │ ├── index.ts │ ├── ng-package.json │ ├── public-api.ts │ └── style │ │ ├── mixin.scss │ │ └── param.scss │ ├── form │ ├── control.component.html │ ├── control.component.scss │ ├── control.component.ts │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ └── default │ │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.ts │ │ │ │ ├── default.service.ts │ │ │ │ ├── readme.md │ │ │ │ └── tree.service.ts │ │ │ │ ├── form-vaild │ │ │ │ ├── form-vaild.component.html │ │ │ │ ├── form-vaild.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── label-row │ │ │ │ ├── label-row.component.html │ │ │ │ ├── label-row.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── readme.md │ │ │ │ └── title │ │ │ │ ├── readme.md │ │ │ │ ├── title.component.html │ │ │ │ └── title.component.ts │ │ ├── index.ts │ │ └── zh_CN │ │ │ └── default │ │ │ ├── default │ │ │ ├── default.component.html │ │ │ ├── default.component.ts │ │ │ ├── default.service.ts │ │ │ ├── readme.md │ │ │ └── tree.service.ts │ │ │ ├── form-vaild │ │ │ ├── form-vaild.component.html │ │ │ ├── form-vaild.component.ts │ │ │ └── readme.md │ │ │ ├── label-row │ │ │ ├── label-row.component.html │ │ │ ├── label-row.component.ts │ │ │ └── readme.md │ │ │ ├── readme.md │ │ │ └── title │ │ │ ├── readme.md │ │ │ ├── title.component.html │ │ │ └── title.component.ts │ ├── form.component.html │ ├── form.component.scss │ ├── form.component.spec.ts │ ├── form.component.ts │ ├── form.module.ts │ ├── form.property.ts │ ├── index.ts │ ├── ng-package.json │ ├── public-api.ts │ └── style │ │ ├── mixin.scss │ │ └── param.scss │ ├── highlight │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ └── default │ │ │ │ ├── copy │ │ │ │ ├── copy.component.html │ │ │ │ ├── copy.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── html │ │ │ │ ├── html.component.html │ │ │ │ ├── html.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── readme.md │ │ │ │ ├── scss │ │ │ │ ├── readme.md │ │ │ │ ├── scss.component.html │ │ │ │ └── scss.component.ts │ │ │ │ └── typescript │ │ │ │ ├── readme.md │ │ │ │ ├── typescript.component.html │ │ │ │ └── typescript.component.ts │ │ ├── index.ts │ │ └── zh_CN │ │ │ └── default │ │ │ ├── copy │ │ │ ├── copy.component.html │ │ │ ├── copy.component.ts │ │ │ └── readme.md │ │ │ ├── html │ │ │ ├── html.component.html │ │ │ ├── html.component.ts │ │ │ └── readme.md │ │ │ ├── readme.md │ │ │ ├── scss │ │ │ ├── readme.md │ │ │ ├── scss.component.html │ │ │ └── scss.component.ts │ │ │ └── typescript │ │ │ ├── readme.md │ │ │ ├── typescript.component.html │ │ │ └── typescript.component.ts │ ├── highlight.component.html │ ├── highlight.component.spec.ts │ ├── highlight.component.ts │ ├── highlight.module.ts │ ├── highlight.property.ts │ ├── highlight.service.ts │ ├── index.ts │ ├── ng-package.json │ ├── public-api.ts │ └── style │ │ ├── index.scss │ │ ├── mixin.scss │ │ └── param.scss │ ├── i18n │ ├── i18n.directive.ts │ ├── i18n.module.ts │ ├── i18n.pipe.spec.ts │ ├── i18n.pipe.ts │ ├── i18n.property.ts │ ├── i18n.service.ts │ ├── index.ts │ ├── languages │ │ ├── ar_EG.ts │ │ ├── bg_BG.ts │ │ ├── ca_ES.ts │ │ ├── cs_CZ.ts │ │ ├── da_DK.ts │ │ ├── de_DE.ts │ │ ├── el_GR.ts │ │ ├── en_GB.ts │ │ ├── en_US.ts │ │ ├── es_ES.ts │ │ ├── et_EE.ts │ │ ├── fa_IR.ts │ │ ├── fi_FI.ts │ │ ├── fr_BE.ts │ │ ├── fr_FR.ts │ │ ├── he_IL.ts │ │ ├── hi_IN.ts │ │ ├── hr_HR.ts │ │ ├── hu_HU.ts │ │ ├── hy_AM.ts │ │ ├── id_ID.ts │ │ ├── is_IS.ts │ │ ├── it_IT.ts │ │ ├── ja_JP.ts │ │ ├── ka_GE.ts │ │ ├── kn_IN.ts │ │ ├── ko_KR.ts │ │ ├── ku_IQ.ts │ │ ├── lv_LV.ts │ │ ├── mn_MN.ts │ │ ├── ms_MY.ts │ │ ├── nb_NO.ts │ │ ├── ne_NP.ts │ │ ├── nl_BE.ts │ │ ├── nl_NL.ts │ │ ├── pl_PL.ts │ │ ├── pt_BR.ts │ │ ├── pt_PT.ts │ │ ├── ro_RO.ts │ │ ├── ru_RU.ts │ │ ├── sk_SK.ts │ │ ├── sl_SI.ts │ │ ├── sr_RS.ts │ │ ├── sv_SE.ts │ │ ├── ta_IN.ts │ │ ├── th_TH.ts │ │ ├── tr_TR.ts │ │ ├── uk_UA.ts │ │ ├── vi_VN.ts │ │ ├── zh_CN.ts │ │ └── zh_TW.ts │ ├── ng-package.json │ └── public-api.ts │ ├── icon │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ └── default │ │ │ │ ├── ant-design │ │ │ │ ├── ant-design.component.html │ │ │ │ ├── ant-design.component.scss │ │ │ │ ├── ant-design.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── custom │ │ │ │ ├── custom.component.html │ │ │ │ ├── custom.component.scss │ │ │ │ ├── custom.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── eva │ │ │ │ ├── eva.component.html │ │ │ │ ├── eva.component.scss │ │ │ │ ├── eva.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── feather │ │ │ │ ├── feather.component.html │ │ │ │ ├── feather.component.scss │ │ │ │ ├── feather.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── font-awesome │ │ │ │ ├── font-awesome.component.html │ │ │ │ ├── font-awesome.component.scss │ │ │ │ ├── font-awesome.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── material-design │ │ │ │ ├── material-design.component.html │ │ │ │ ├── material-design.component.scss │ │ │ │ ├── material-design.component.ts │ │ │ │ └── readme.md │ │ │ │ └── readme.md │ │ ├── index.ts │ │ └── zh_CN │ │ │ └── default │ │ │ ├── ant-design │ │ │ ├── ant-design.component.html │ │ │ ├── ant-design.component.scss │ │ │ ├── ant-design.component.ts │ │ │ └── readme.md │ │ │ ├── custom │ │ │ ├── custom.component.html │ │ │ ├── custom.component.scss │ │ │ ├── custom.component.ts │ │ │ └── readme.md │ │ │ ├── eva │ │ │ ├── eva.component.html │ │ │ ├── eva.component.scss │ │ │ ├── eva.component.ts │ │ │ └── readme.md │ │ │ ├── feather │ │ │ ├── feather.component.html │ │ │ ├── feather.component.scss │ │ │ ├── feather.component.ts │ │ │ └── readme.md │ │ │ ├── font-awesome │ │ │ ├── font-awesome.component.html │ │ │ ├── font-awesome.component.scss │ │ │ ├── font-awesome.component.ts │ │ │ └── readme.md │ │ │ ├── material-design │ │ │ ├── material-design.component.html │ │ │ ├── material-design.component.scss │ │ │ ├── material-design.component.ts │ │ │ └── readme.md │ │ │ └── readme.md │ ├── icon.component.html │ ├── icon.component.spec.ts │ ├── icon.component.ts │ ├── icon.module.ts │ ├── icon.property.ts │ ├── icon.service.ts │ ├── index.ts │ ├── ng-package.json │ ├── public-api.ts │ └── style │ │ ├── index.scss │ │ ├── mixin.scss │ │ └── param.scss │ ├── image │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ └── default │ │ │ │ ├── custom │ │ │ │ ├── custom.component.html │ │ │ │ ├── custom.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── fallback │ │ │ │ ├── fallback.component.html │ │ │ │ ├── fallback.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── group │ │ │ │ ├── group.component.html │ │ │ │ ├── group.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── placeholder │ │ │ │ ├── placeholder.component.html │ │ │ │ ├── placeholder.component.ts │ │ │ │ └── readme.md │ │ │ │ └── readme.md │ │ ├── index.ts │ │ └── zh_CN │ │ │ └── default │ │ │ ├── custom │ │ │ ├── custom.component.html │ │ │ ├── custom.component.ts │ │ │ └── readme.md │ │ │ ├── default │ │ │ ├── default.component.html │ │ │ ├── default.component.ts │ │ │ └── readme.md │ │ │ ├── fallback │ │ │ ├── fallback.component.html │ │ │ ├── fallback.component.ts │ │ │ └── readme.md │ │ │ ├── group │ │ │ ├── group.component.html │ │ │ ├── group.component.ts │ │ │ └── readme.md │ │ │ ├── placeholder │ │ │ ├── placeholder.component.html │ │ │ ├── placeholder.component.ts │ │ │ └── readme.md │ │ │ └── readme.md │ ├── image-group.component.html │ ├── image-group.component.scss │ ├── image-group.component.ts │ ├── image-preview.component.html │ ├── image-preview.component.scss │ ├── image-preview.component.ts │ ├── image.component.html │ ├── image.component.scss │ ├── image.component.spec.ts │ ├── image.component.ts │ ├── image.module.ts │ ├── image.property.ts │ ├── index.ts │ ├── ng-package.json │ ├── public-api.ts │ └── style │ │ ├── mixin.scss │ │ └── param.scss │ ├── index.ts │ ├── inner │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── index.ts │ ├── inner.component.html │ ├── inner.component.spec.ts │ ├── inner.component.ts │ ├── inner.module.ts │ ├── inner.property.ts │ ├── ng-package.json │ ├── public-api.ts │ └── style │ │ ├── index.scss │ │ ├── mixin.scss │ │ └── param.scss │ ├── input-number │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ └── default │ │ │ │ ├── bordered │ │ │ │ ├── bordered.component.html │ │ │ │ ├── bordered.component.scss │ │ │ │ ├── bordered.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── disabled │ │ │ │ ├── disabled.component.html │ │ │ │ ├── disabled.component.scss │ │ │ │ ├── disabled.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── format │ │ │ │ ├── format.component.html │ │ │ │ ├── format.component.scss │ │ │ │ ├── format.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── hidden-button │ │ │ │ ├── hidden-button.component.html │ │ │ │ ├── hidden-button.component.scss │ │ │ │ ├── hidden-button.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── label │ │ │ │ ├── label.component.html │ │ │ │ ├── label.component.scss │ │ │ │ ├── label.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── limit │ │ │ │ ├── limit.component.html │ │ │ │ ├── limit.component.scss │ │ │ │ ├── limit.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── precision │ │ │ │ ├── precision.component.html │ │ │ │ ├── precision.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── readme.md │ │ │ │ ├── required │ │ │ │ ├── readme.md │ │ │ │ ├── required.component.html │ │ │ │ ├── required.component.scss │ │ │ │ └── required.component.ts │ │ │ │ ├── size │ │ │ │ ├── readme.md │ │ │ │ ├── size.component.html │ │ │ │ ├── size.component.scss │ │ │ │ └── size.component.ts │ │ │ │ └── variant │ │ │ │ ├── readme.md │ │ │ │ ├── variant.component.html │ │ │ │ ├── variant.component.scss │ │ │ │ └── variant.component.ts │ │ ├── index.ts │ │ └── zh_CN │ │ │ └── default │ │ │ ├── bordered │ │ │ ├── bordered.component.html │ │ │ ├── bordered.component.scss │ │ │ ├── bordered.component.ts │ │ │ └── readme.md │ │ │ ├── default │ │ │ ├── default.component.html │ │ │ ├── default.component.ts │ │ │ └── readme.md │ │ │ ├── disabled │ │ │ ├── disabled.component.html │ │ │ ├── disabled.component.scss │ │ │ ├── disabled.component.ts │ │ │ └── readme.md │ │ │ ├── format │ │ │ ├── format.component.html │ │ │ ├── format.component.scss │ │ │ ├── format.component.ts │ │ │ └── readme.md │ │ │ ├── hidden-button │ │ │ ├── hidden-button.component.html │ │ │ ├── hidden-button.component.scss │ │ │ ├── hidden-button.component.ts │ │ │ └── readme.md │ │ │ ├── label │ │ │ ├── label.component.html │ │ │ ├── label.component.scss │ │ │ ├── label.component.ts │ │ │ └── readme.md │ │ │ ├── limit │ │ │ ├── limit.component.html │ │ │ ├── limit.component.scss │ │ │ ├── limit.component.ts │ │ │ └── readme.md │ │ │ ├── precision │ │ │ ├── precision.component.html │ │ │ ├── precision.component.ts │ │ │ └── readme.md │ │ │ ├── readme.md │ │ │ ├── required │ │ │ ├── readme.md │ │ │ ├── required.component.html │ │ │ ├── required.component.scss │ │ │ └── required.component.ts │ │ │ ├── size │ │ │ ├── readme.md │ │ │ ├── size.component.html │ │ │ ├── size.component.scss │ │ │ └── size.component.ts │ │ │ └── variant │ │ │ ├── readme.md │ │ │ ├── variant.component.html │ │ │ ├── variant.component.scss │ │ │ └── variant.component.ts │ ├── index.ts │ ├── input-number.component.html │ ├── input-number.component.spec.ts │ ├── input-number.component.ts │ ├── input-number.module.ts │ ├── input-number.property.ts │ ├── ng-package.json │ ├── public-api.ts │ └── style │ │ ├── index.scss │ │ ├── mixin.scss │ │ └── param.scss │ ├── input │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ └── default │ │ │ │ ├── bordered │ │ │ │ ├── bordered.component.html │ │ │ │ ├── bordered.component.scss │ │ │ │ ├── bordered.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── clear │ │ │ │ ├── clear.component.html │ │ │ │ ├── clear.component.scss │ │ │ │ ├── clear.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.scss │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── disabled │ │ │ │ ├── disabled.component.html │ │ │ │ ├── disabled.component.scss │ │ │ │ ├── disabled.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── float-label │ │ │ │ ├── float-label.component.html │ │ │ │ ├── float-label.component.scss │ │ │ │ ├── float-label.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── focus │ │ │ │ ├── focus.component.html │ │ │ │ ├── focus.component.scss │ │ │ │ ├── focus.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── group │ │ │ │ ├── group.component.html │ │ │ │ ├── group.component.scss │ │ │ │ ├── group.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── icon │ │ │ │ ├── icon.component.html │ │ │ │ ├── icon.component.scss │ │ │ │ ├── icon.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── label │ │ │ │ ├── label.component.html │ │ │ │ ├── label.component.scss │ │ │ │ ├── label.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── length │ │ │ │ ├── length.component.html │ │ │ │ ├── length.component.scss │ │ │ │ ├── length.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── perpost │ │ │ │ ├── perpost.component.html │ │ │ │ ├── perpost.component.scss │ │ │ │ ├── perpost.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── readme.md │ │ │ │ ├── required │ │ │ │ ├── readme.md │ │ │ │ ├── required.component.html │ │ │ │ ├── required.component.scss │ │ │ │ └── required.component.ts │ │ │ │ ├── size │ │ │ │ ├── readme.md │ │ │ │ ├── size.component.html │ │ │ │ ├── size.component.scss │ │ │ │ └── size.component.ts │ │ │ │ └── variant │ │ │ │ ├── readme.md │ │ │ │ ├── variant.component.html │ │ │ │ ├── variant.component.scss │ │ │ │ └── variant.component.ts │ │ ├── index.ts │ │ └── zh_CN │ │ │ └── default │ │ │ ├── bordered │ │ │ ├── bordered.component.html │ │ │ ├── bordered.component.scss │ │ │ ├── bordered.component.ts │ │ │ └── readme.md │ │ │ ├── clear │ │ │ ├── clear.component.html │ │ │ ├── clear.component.scss │ │ │ ├── clear.component.ts │ │ │ └── readme.md │ │ │ ├── default │ │ │ ├── default.component.html │ │ │ ├── default.component.scss │ │ │ ├── default.component.ts │ │ │ └── readme.md │ │ │ ├── disabled │ │ │ ├── disabled.component.html │ │ │ ├── disabled.component.scss │ │ │ ├── disabled.component.ts │ │ │ └── readme.md │ │ │ ├── float-label │ │ │ ├── float-label.component.html │ │ │ ├── float-label.component.scss │ │ │ ├── float-label.component.ts │ │ │ └── readme.md │ │ │ ├── focus │ │ │ ├── focus.component.html │ │ │ ├── focus.component.scss │ │ │ ├── focus.component.ts │ │ │ └── readme.md │ │ │ ├── group │ │ │ ├── group.component.html │ │ │ ├── group.component.scss │ │ │ ├── group.component.ts │ │ │ └── readme.md │ │ │ ├── icon │ │ │ ├── icon.component.html │ │ │ ├── icon.component.scss │ │ │ ├── icon.component.ts │ │ │ └── readme.md │ │ │ ├── label │ │ │ ├── label.component.html │ │ │ ├── label.component.scss │ │ │ ├── label.component.ts │ │ │ └── readme.md │ │ │ ├── length │ │ │ ├── length.component.html │ │ │ ├── length.component.scss │ │ │ ├── length.component.ts │ │ │ └── readme.md │ │ │ ├── perpost │ │ │ ├── perpost.component.html │ │ │ ├── perpost.component.scss │ │ │ ├── perpost.component.ts │ │ │ └── readme.md │ │ │ ├── readme.md │ │ │ ├── required │ │ │ ├── readme.md │ │ │ ├── required.component.html │ │ │ ├── required.component.scss │ │ │ └── required.component.ts │ │ │ ├── size │ │ │ ├── readme.md │ │ │ ├── size.component.html │ │ │ ├── size.component.scss │ │ │ └── size.component.ts │ │ │ └── variant │ │ │ ├── readme.md │ │ │ ├── variant.component.html │ │ │ ├── variant.component.scss │ │ │ └── variant.component.ts │ ├── index.ts │ ├── input-group.component.html │ ├── input-group.component.scss │ ├── input-group.component.ts │ ├── input.component.html │ ├── input.component.scss │ ├── input.component.spec.ts │ ├── input.component.ts │ ├── input.module.ts │ ├── input.property.ts │ ├── ng-package.json │ ├── public-api.ts │ └── style │ │ ├── mixin.scss │ │ └── param.scss │ ├── karma.conf.js │ ├── keyword │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── index.ts │ ├── keyword.directive.spec.ts │ ├── keyword.directive.ts │ ├── keyword.module.ts │ ├── keyword.property.ts │ ├── ng-package.json │ └── public-api.ts │ ├── layout │ ├── col.component.scss │ ├── col.component.ts │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ └── default │ │ │ │ ├── blend │ │ │ │ ├── blend.component.html │ │ │ │ ├── blend.component.scss │ │ │ │ ├── blend.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.scss │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── flex │ │ │ │ ├── flex.component.html │ │ │ │ ├── flex.component.scss │ │ │ │ ├── flex.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── hidden │ │ │ │ ├── hidden.component.html │ │ │ │ ├── hidden.component.scss │ │ │ │ ├── hidden.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── layout │ │ │ │ ├── layout.component.html │ │ │ │ ├── layout.component.scss │ │ │ │ ├── layout.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── offset │ │ │ │ ├── offset.component.html │ │ │ │ ├── offset.component.scss │ │ │ │ ├── offset.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── readme.md │ │ │ │ └── space │ │ │ │ ├── readme.md │ │ │ │ ├── space.component.html │ │ │ │ ├── space.component.scss │ │ │ │ └── space.component.ts │ │ ├── index.ts │ │ └── zh_CN │ │ │ └── default │ │ │ ├── blend │ │ │ ├── blend.component.html │ │ │ ├── blend.component.scss │ │ │ ├── blend.component.ts │ │ │ └── readme.md │ │ │ ├── default │ │ │ ├── default.component.html │ │ │ ├── default.component.scss │ │ │ ├── default.component.ts │ │ │ └── readme.md │ │ │ ├── flex │ │ │ ├── flex.component.html │ │ │ ├── flex.component.scss │ │ │ ├── flex.component.ts │ │ │ └── readme.md │ │ │ ├── hidden │ │ │ ├── hidden.component.html │ │ │ ├── hidden.component.scss │ │ │ ├── hidden.component.ts │ │ │ └── readme.md │ │ │ ├── layout │ │ │ ├── layout.component.html │ │ │ ├── layout.component.scss │ │ │ ├── layout.component.ts │ │ │ └── readme.md │ │ │ ├── offset │ │ │ ├── offset.component.html │ │ │ ├── offset.component.scss │ │ │ ├── offset.component.ts │ │ │ └── readme.md │ │ │ ├── readme.md │ │ │ └── space │ │ │ ├── readme.md │ │ │ ├── space.component.html │ │ │ ├── space.component.scss │ │ │ └── space.component.ts │ ├── index.ts │ ├── layout.component.spec.ts │ ├── layout.module.ts │ ├── layout.property.ts │ ├── ng-package.json │ ├── public-api.ts │ ├── row.component.scss │ ├── row.component.ts │ └── style │ │ ├── mixin.scss │ │ └── param.scss │ ├── link │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ └── default │ │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.scss │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── disabled │ │ │ │ ├── disabled.component.html │ │ │ │ ├── disabled.component.scss │ │ │ │ ├── disabled.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── icon │ │ │ │ ├── icon.component.html │ │ │ │ ├── icon.component.scss │ │ │ │ ├── icon.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── readme.md │ │ │ │ └── underline │ │ │ │ ├── readme.md │ │ │ │ ├── underline.component.html │ │ │ │ ├── underline.component.scss │ │ │ │ └── underline.component.ts │ │ ├── index.ts │ │ └── zh_CN │ │ │ └── default │ │ │ ├── default │ │ │ ├── default.component.html │ │ │ ├── default.component.scss │ │ │ ├── default.component.ts │ │ │ └── readme.md │ │ │ ├── disabled │ │ │ ├── disabled.component.html │ │ │ ├── disabled.component.scss │ │ │ ├── disabled.component.ts │ │ │ └── readme.md │ │ │ ├── icon │ │ │ ├── icon.component.html │ │ │ ├── icon.component.scss │ │ │ ├── icon.component.ts │ │ │ └── readme.md │ │ │ ├── readme.md │ │ │ └── underline │ │ │ ├── readme.md │ │ │ ├── underline.component.html │ │ │ ├── underline.component.scss │ │ │ └── underline.component.ts │ ├── index.ts │ ├── link.component.html │ ├── link.component.scss │ ├── link.component.spec.ts │ ├── link.component.ts │ ├── link.module.ts │ ├── link.property.ts │ ├── ng-package.json │ ├── public-api.ts │ └── style │ │ ├── mixin.scss │ │ └── param.scss │ ├── list │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ └── default │ │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.scss │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── group │ │ │ │ ├── group.component.html │ │ │ │ ├── group.component.scss │ │ │ │ ├── group.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── load-more │ │ │ │ ├── load-more.component.html │ │ │ │ ├── load-more.component.scss │ │ │ │ ├── load-more.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── readme.md │ │ │ │ ├── scroll │ │ │ │ ├── readme.md │ │ │ │ ├── scroll.component.html │ │ │ │ ├── scroll.component.scss │ │ │ │ └── scroll.component.ts │ │ │ │ └── size │ │ │ │ ├── readme.md │ │ │ │ ├── size.component.html │ │ │ │ ├── size.component.scss │ │ │ │ └── size.component.ts │ │ ├── index.ts │ │ └── zh_CN │ │ │ └── default │ │ │ ├── default │ │ │ ├── default.component.html │ │ │ ├── default.component.scss │ │ │ ├── default.component.ts │ │ │ └── readme.md │ │ │ ├── group │ │ │ ├── group.component.html │ │ │ ├── group.component.scss │ │ │ ├── group.component.ts │ │ │ └── readme.md │ │ │ ├── load-more │ │ │ ├── load-more.component.html │ │ │ ├── load-more.component.scss │ │ │ ├── load-more.component.ts │ │ │ └── readme.md │ │ │ ├── readme.md │ │ │ ├── scroll │ │ │ ├── readme.md │ │ │ ├── scroll.component.html │ │ │ ├── scroll.component.scss │ │ │ └── scroll.component.ts │ │ │ └── size │ │ │ ├── readme.md │ │ │ ├── size.component.html │ │ │ ├── size.component.scss │ │ │ └── size.component.ts │ ├── index.ts │ ├── list-drop-group.directive.ts │ ├── list-option.component.html │ ├── list-option.component.scss │ ├── list-option.component.ts │ ├── list.component.html │ ├── list.component.scss │ ├── list.component.spec.ts │ ├── list.component.ts │ ├── list.module.ts │ ├── list.property.ts │ ├── ng-package.json │ ├── public-api.ts │ └── style │ │ ├── mixin.scss │ │ └── param.scss │ ├── loading │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ └── default │ │ │ │ ├── custom │ │ │ │ ├── custom.component.html │ │ │ │ ├── custom.component.scss │ │ │ │ ├── custom.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.scss │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── full-screen │ │ │ │ ├── full-screen.component.html │ │ │ │ ├── full-screen.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── readme.md │ │ │ │ └── type │ │ │ │ ├── readme.md │ │ │ │ ├── type.component.html │ │ │ │ ├── type.component.scss │ │ │ │ └── type.component.ts │ │ ├── index.ts │ │ └── zh_CN │ │ │ └── default │ │ │ ├── custom │ │ │ ├── custom.component.html │ │ │ ├── custom.component.scss │ │ │ ├── custom.component.ts │ │ │ └── readme.md │ │ │ ├── default │ │ │ ├── default.component.html │ │ │ ├── default.component.scss │ │ │ ├── default.component.ts │ │ │ └── readme.md │ │ │ ├── full-screen │ │ │ ├── full-screen.component.html │ │ │ ├── full-screen.component.ts │ │ │ └── readme.md │ │ │ ├── readme.md │ │ │ └── type │ │ │ ├── readme.md │ │ │ ├── type.component.html │ │ │ ├── type.component.scss │ │ │ └── type.component.ts │ ├── index.ts │ ├── loading.component.html │ ├── loading.component.scss │ ├── loading.component.spec.ts │ ├── loading.component.ts │ ├── loading.module.ts │ ├── loading.property.ts │ ├── ng-package.json │ ├── public-api.ts │ └── style │ │ ├── mixin.scss │ │ └── param.scss │ ├── menu │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ └── default │ │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── icon │ │ │ │ ├── icon.component.html │ │ │ │ ├── icon.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── layout │ │ │ │ ├── layout.component.html │ │ │ │ ├── layout.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── leaf │ │ │ │ ├── leaf.component.html │ │ │ │ ├── leaf.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── readme.md │ │ │ │ └── size │ │ │ │ ├── readme.md │ │ │ │ ├── size.component.html │ │ │ │ ├── size.component.scss │ │ │ │ └── size.component.ts │ │ ├── index.ts │ │ └── zh_CN │ │ │ └── default │ │ │ ├── default │ │ │ ├── default.component.html │ │ │ ├── default.component.ts │ │ │ └── readme.md │ │ │ ├── icon │ │ │ ├── icon.component.html │ │ │ ├── icon.component.ts │ │ │ └── readme.md │ │ │ ├── layout │ │ │ ├── layout.component.html │ │ │ ├── layout.component.ts │ │ │ └── readme.md │ │ │ ├── leaf │ │ │ ├── leaf.component.html │ │ │ ├── leaf.component.ts │ │ │ └── readme.md │ │ │ ├── readme.md │ │ │ └── size │ │ │ ├── readme.md │ │ │ ├── size.component.html │ │ │ ├── size.component.scss │ │ │ └── size.component.ts │ ├── index.ts │ ├── menu-node.component.html │ ├── menu-node.component.ts │ ├── menu.component.html │ ├── menu.component.scss │ ├── menu.component.spec.ts │ ├── menu.component.ts │ ├── menu.module.ts │ ├── menu.property.ts │ ├── ng-package.json │ ├── public-api.ts │ └── style │ │ ├── mixin.scss │ │ └── param.scss │ ├── message-box │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ └── default │ │ │ │ ├── confirm │ │ │ │ ├── confirm.component.html │ │ │ │ ├── confirm.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── custom │ │ │ │ ├── custom.component.html │ │ │ │ ├── custom.component.scss │ │ │ │ ├── custom.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.scss │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── prompt │ │ │ │ ├── prompt.component.html │ │ │ │ ├── prompt.component.ts │ │ │ │ └── readme.md │ │ │ │ └── readme.md │ │ ├── index.ts │ │ └── zh_CN │ │ │ └── default │ │ │ ├── confirm │ │ │ ├── confirm.component.html │ │ │ ├── confirm.component.ts │ │ │ └── readme.md │ │ │ ├── custom │ │ │ ├── custom.component.html │ │ │ ├── custom.component.scss │ │ │ ├── custom.component.ts │ │ │ └── readme.md │ │ │ ├── default │ │ │ ├── default.component.html │ │ │ ├── default.component.scss │ │ │ ├── default.component.ts │ │ │ └── readme.md │ │ │ ├── prompt │ │ │ ├── prompt.component.html │ │ │ ├── prompt.component.ts │ │ │ └── readme.md │ │ │ ├── readme.md │ │ │ └── textarea │ │ │ ├── readme.md │ │ │ ├── textarea.component.html │ │ │ └── textarea.component.ts │ ├── index.ts │ ├── message-box.component.html │ ├── message-box.component.scss │ ├── message-box.component.spec.ts │ ├── message-box.component.ts │ ├── message-box.module.ts │ ├── message-box.property.ts │ ├── message-box.service.ts │ ├── ng-package.json │ ├── public-api.ts │ └── style │ │ ├── mixin.scss │ │ └── param.scss │ ├── message │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ └── default │ │ │ │ ├── close │ │ │ │ ├── close.component.html │ │ │ │ ├── close.component.scss │ │ │ │ ├── close.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.scss │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── loading │ │ │ │ ├── loading.component.html │ │ │ │ ├── loading.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── readme.md │ │ │ │ ├── single │ │ │ │ ├── readme.md │ │ │ │ ├── single.component.html │ │ │ │ ├── single.component.scss │ │ │ │ └── single.component.ts │ │ │ │ └── type │ │ │ │ ├── readme.md │ │ │ │ ├── type.component.html │ │ │ │ ├── type.component.scss │ │ │ │ └── type.component.ts │ │ ├── index.ts │ │ └── zh_CN │ │ │ └── default │ │ │ ├── close │ │ │ ├── close.component.html │ │ │ ├── close.component.scss │ │ │ ├── close.component.ts │ │ │ └── readme.md │ │ │ ├── default │ │ │ ├── default.component.html │ │ │ ├── default.component.scss │ │ │ ├── default.component.ts │ │ │ └── readme.md │ │ │ ├── loading │ │ │ ├── loading.component.html │ │ │ ├── loading.component.ts │ │ │ └── readme.md │ │ │ ├── readme.md │ │ │ ├── single │ │ │ ├── readme.md │ │ │ ├── single.component.html │ │ │ ├── single.component.scss │ │ │ └── single.component.ts │ │ │ └── type │ │ │ ├── readme.md │ │ │ ├── type.component.html │ │ │ ├── type.component.scss │ │ │ └── type.component.ts │ ├── index.ts │ ├── message-ref.ts │ ├── message.component.html │ ├── message.component.scss │ ├── message.component.spec.ts │ ├── message.component.ts │ ├── message.module.ts │ ├── message.property.ts │ ├── message.service.ts │ ├── ng-package.json │ ├── public-api.ts │ ├── readme.md │ └── style │ │ ├── mixin.scss │ │ └── param.scss │ ├── ng-package.json │ ├── notification │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ └── default │ │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.scss │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── readme.md │ │ │ │ └── type │ │ │ │ ├── readme.md │ │ │ │ ├── type.component.html │ │ │ │ ├── type.component.scss │ │ │ │ └── type.component.ts │ │ ├── index.ts │ │ └── zh_CN │ │ │ └── default │ │ │ ├── default │ │ │ ├── default.component.html │ │ │ ├── default.component.scss │ │ │ ├── default.component.ts │ │ │ └── readme.md │ │ │ ├── readme.md │ │ │ └── type │ │ │ ├── readme.md │ │ │ ├── type.component.html │ │ │ ├── type.component.scss │ │ │ └── type.component.ts │ ├── index.ts │ ├── ng-package.json │ ├── notification.component.html │ ├── notification.component.scss │ ├── notification.component.spec.ts │ ├── notification.component.ts │ ├── notification.module.ts │ ├── notification.property.ts │ ├── notification.service.ts │ ├── public-api.ts │ └── style │ │ ├── mixin.scss │ │ └── param.scss │ ├── outlet │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ └── default │ │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.scss │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ │ └── readme.md │ │ ├── index.ts │ │ └── zh_CN │ │ │ └── default │ │ │ ├── default │ │ │ ├── default.component.html │ │ │ ├── default.component.scss │ │ │ ├── default.component.ts │ │ │ └── readme.md │ │ │ └── readme.md │ ├── index.ts │ ├── ng-package.json │ ├── outlet.directive.spec.ts │ ├── outlet.directive.ts │ ├── outlet.module.ts │ ├── outlet.property.ts │ ├── public-api.ts │ └── style │ │ ├── mixin.scss │ │ └── param.scss │ ├── package.json │ ├── page-header │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ └── default │ │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ │ └── readme.md │ │ ├── index.ts │ │ └── zh_CN │ │ │ └── default │ │ │ ├── default │ │ │ ├── default.component.html │ │ │ ├── default.component.ts │ │ │ └── readme.md │ │ │ └── readme.md │ ├── index.ts │ ├── ng-package.json │ ├── page-header.component.html │ ├── page-header.component.scss │ ├── page-header.component.spec.ts │ ├── page-header.component.ts │ ├── page-header.module.ts │ ├── page-header.property.ts │ ├── public-api.ts │ └── style │ │ ├── mixin.scss │ │ └── param.scss │ ├── pagination │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ └── default │ │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── readme.md │ │ │ │ └── style │ │ │ │ ├── readme.md │ │ │ │ ├── style.component.html │ │ │ │ └── style.component.ts │ │ ├── index.ts │ │ └── zh_CN │ │ │ └── default │ │ │ ├── default │ │ │ ├── default.component.html │ │ │ ├── default.component.ts │ │ │ └── readme.md │ │ │ ├── readme.md │ │ │ └── style │ │ │ ├── readme.md │ │ │ ├── style.component.html │ │ │ └── style.component.ts │ ├── index.ts │ ├── ng-package.json │ ├── pagination.component.html │ ├── pagination.component.spec.ts │ ├── pagination.component.ts │ ├── pagination.module.ts │ ├── pagination.property.ts │ ├── public-api.ts │ └── style │ │ ├── index.scss │ │ ├── mixin.scss │ │ └── param.scss │ ├── pattern │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── index.ts │ ├── ng-package.json │ ├── pattern.component.html │ ├── pattern.component.spec.ts │ ├── pattern.component.ts │ ├── pattern.module.ts │ ├── pattern.property.ts │ ├── public-api.ts │ └── style │ │ ├── index.scss │ │ ├── mixin.scss │ │ └── param.scss │ ├── popconfirm │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ └── default │ │ │ │ ├── async-close │ │ │ │ ├── async-close.component.html │ │ │ │ ├── async-close.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── condition │ │ │ │ ├── condition.component.html │ │ │ │ ├── condition.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ │ └── readme.md │ │ ├── index.ts │ │ └── zh_CN │ │ │ └── default │ │ │ ├── async-close │ │ │ ├── async-close.component.html │ │ │ ├── async-close.component.ts │ │ │ └── readme.md │ │ │ ├── condition │ │ │ ├── condition.component.html │ │ │ ├── condition.component.ts │ │ │ └── readme.md │ │ │ ├── default │ │ │ ├── default.component.html │ │ │ ├── default.component.ts │ │ │ └── readme.md │ │ │ └── readme.md │ ├── index.ts │ ├── ng-package.json │ ├── popconfirm.component.html │ ├── popconfirm.component.scss │ ├── popconfirm.component.spec.ts │ ├── popconfirm.component.ts │ ├── popconfirm.module.ts │ ├── popconfirm.property.ts │ ├── public-api.ts │ └── style │ │ ├── mixin.scss │ │ └── param.scss │ ├── popover │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ └── default │ │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.scss │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ │ └── readme.md │ │ ├── index.ts │ │ └── zh_CN │ │ │ └── default │ │ │ ├── default │ │ │ ├── default.component.html │ │ │ ├── default.component.scss │ │ │ ├── default.component.ts │ │ │ └── readme.md │ │ │ └── readme.md │ ├── index.ts │ ├── ng-package.json │ ├── popover-portal.component.html │ ├── popover-portal.component.scss │ ├── popover-portal.component.ts │ ├── popover.directive.spec.ts │ ├── popover.directive.ts │ ├── popover.module.ts │ ├── popover.property.ts │ ├── public-api.ts │ └── style │ │ ├── mixin.scss │ │ └── param.scss │ ├── portal │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── index.ts │ ├── ng-package.json │ ├── portal.component.spec.ts │ ├── portal.module.ts │ ├── portal.property.ts │ ├── portal.service.ts │ ├── public-api.ts │ └── style │ │ ├── index.scss │ │ ├── mixin.scss │ │ └── param.scss │ ├── progress │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ └── default │ │ │ │ ├── circle │ │ │ │ ├── circle.component.html │ │ │ │ ├── circle.component.scss │ │ │ │ ├── circle.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── color │ │ │ │ ├── color.component.html │ │ │ │ ├── color.component.scss │ │ │ │ ├── color.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── dashboard │ │ │ │ ├── dashboard.component.html │ │ │ │ ├── dashboard.component.scss │ │ │ │ ├── dashboard.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.scss │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── format │ │ │ │ ├── format.component.html │ │ │ │ ├── format.component.scss │ │ │ │ ├── format.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── gradient │ │ │ │ ├── gradient.component.html │ │ │ │ ├── gradient.component.scss │ │ │ │ ├── gradient.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── inside │ │ │ │ ├── inside.component.html │ │ │ │ ├── inside.component.scss │ │ │ │ ├── inside.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── readme.md │ │ │ │ ├── steps │ │ │ │ ├── readme.md │ │ │ │ ├── steps.component.html │ │ │ │ ├── steps.component.scss │ │ │ │ └── steps.component.ts │ │ │ │ └── subsection │ │ │ │ ├── readme.md │ │ │ │ ├── subsection.component.html │ │ │ │ ├── subsection.component.scss │ │ │ │ └── subsection.component.ts │ │ ├── index.ts │ │ └── zh_CN │ │ │ └── default │ │ │ ├── circle │ │ │ ├── circle.component.html │ │ │ ├── circle.component.scss │ │ │ ├── circle.component.ts │ │ │ └── readme.md │ │ │ ├── color │ │ │ ├── color.component.html │ │ │ ├── color.component.scss │ │ │ ├── color.component.ts │ │ │ └── readme.md │ │ │ ├── dashboard │ │ │ ├── dashboard.component.html │ │ │ ├── dashboard.component.scss │ │ │ ├── dashboard.component.ts │ │ │ └── readme.md │ │ │ ├── default │ │ │ ├── default.component.html │ │ │ ├── default.component.scss │ │ │ ├── default.component.ts │ │ │ └── readme.md │ │ │ ├── format │ │ │ ├── format.component.html │ │ │ ├── format.component.scss │ │ │ ├── format.component.ts │ │ │ └── readme.md │ │ │ ├── gradient │ │ │ ├── gradient.component.html │ │ │ ├── gradient.component.scss │ │ │ ├── gradient.component.ts │ │ │ └── readme.md │ │ │ ├── inside │ │ │ ├── inside.component.html │ │ │ ├── inside.component.scss │ │ │ ├── inside.component.ts │ │ │ └── readme.md │ │ │ ├── readme.md │ │ │ ├── steps │ │ │ ├── readme.md │ │ │ ├── steps.component.html │ │ │ ├── steps.component.scss │ │ │ └── steps.component.ts │ │ │ └── subsection │ │ │ ├── readme.md │ │ │ ├── subsection.component.html │ │ │ ├── subsection.component.scss │ │ │ └── subsection.component.ts │ ├── index.ts │ ├── ng-package.json │ ├── progress.component.html │ ├── progress.component.scss │ ├── progress.component.spec.ts │ ├── progress.component.ts │ ├── progress.module.ts │ ├── progress.property.ts │ ├── public-api.ts │ └── style │ │ ├── mixin.scss │ │ └── param.scss │ ├── prompts │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ ├── default │ │ │ │ ├── default │ │ │ │ │ ├── default.component.html │ │ │ │ │ ├── default.component.scss │ │ │ │ │ ├── default.component.ts │ │ │ │ │ └── readme.md │ │ │ │ ├── disabled │ │ │ │ │ ├── disabled.component.html │ │ │ │ │ ├── disabled.component.scss │ │ │ │ │ ├── disabled.component.ts │ │ │ │ │ └── readme.md │ │ │ │ ├── style │ │ │ │ │ ├── readme.md │ │ │ │ │ ├── style.component.html │ │ │ │ │ ├── style.component.scss │ │ │ │ │ └── style.component.ts │ │ │ │ ├── vertical │ │ │ │ │ ├── readme.md │ │ │ │ │ ├── vertical.component.html │ │ │ │ │ ├── vertical.component.scss │ │ │ │ │ └── vertical.component.ts │ │ │ │ └── wrap │ │ │ │ │ ├── readme.md │ │ │ │ │ ├── wrap.component.html │ │ │ │ │ ├── wrap.component.scss │ │ │ │ │ └── wrap.component.ts │ │ │ └── readme.md │ │ ├── index.ts │ │ └── zh_CN │ │ │ ├── default │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.scss │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ ├── disabled │ │ │ │ ├── disabled.component.html │ │ │ │ ├── disabled.component.scss │ │ │ │ ├── disabled.component.ts │ │ │ │ └── readme.md │ │ │ ├── style │ │ │ │ ├── readme.md │ │ │ │ ├── style.component.html │ │ │ │ ├── style.component.scss │ │ │ │ └── style.component.ts │ │ │ ├── vertical │ │ │ │ ├── readme.md │ │ │ │ ├── vertical.component.html │ │ │ │ ├── vertical.component.scss │ │ │ │ └── vertical.component.ts │ │ │ └── wrap │ │ │ │ ├── readme.md │ │ │ │ ├── wrap.component.html │ │ │ │ ├── wrap.component.scss │ │ │ │ └── wrap.component.ts │ │ │ └── readme.md │ ├── index.ts │ ├── ng-package.json │ ├── prompts.component.html │ ├── prompts.component.scss │ ├── prompts.component.ts │ ├── prompts.module.ts │ ├── prompts.property.ts │ ├── public-api.ts │ └── style │ │ ├── mixin.scss │ │ └── param.scss │ ├── radio │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ └── default │ │ │ │ ├── async │ │ │ │ ├── async.component.html │ │ │ │ ├── async.component.scss │ │ │ │ ├── async.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── button │ │ │ │ ├── button.component.html │ │ │ │ ├── button.component.scss │ │ │ │ ├── button.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.scss │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── disabled │ │ │ │ ├── disabled.component.html │ │ │ │ ├── disabled.component.scss │ │ │ │ ├── disabled.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── icon │ │ │ │ ├── icon.component.html │ │ │ │ ├── icon.component.scss │ │ │ │ ├── icon.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── perpost │ │ │ │ ├── perpost.component.html │ │ │ │ ├── perpost.component.scss │ │ │ │ ├── perpost.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── readme.md │ │ │ │ ├── tag │ │ │ │ ├── readme.md │ │ │ │ ├── tag.component.html │ │ │ │ ├── tag.component.scss │ │ │ │ └── tag.component.ts │ │ │ │ └── vertical │ │ │ │ ├── readme.md │ │ │ │ ├── vertical.component.html │ │ │ │ ├── vertical.component.scss │ │ │ │ └── vertical.component.ts │ │ ├── index.ts │ │ └── zh_CN │ │ │ └── default │ │ │ ├── async │ │ │ ├── async.component.html │ │ │ ├── async.component.scss │ │ │ ├── async.component.ts │ │ │ └── readme.md │ │ │ ├── button │ │ │ ├── button.component.html │ │ │ ├── button.component.scss │ │ │ ├── button.component.ts │ │ │ └── readme.md │ │ │ ├── default │ │ │ ├── default.component.html │ │ │ ├── default.component.scss │ │ │ ├── default.component.ts │ │ │ └── readme.md │ │ │ ├── disabled │ │ │ ├── disabled.component.html │ │ │ ├── disabled.component.scss │ │ │ ├── disabled.component.ts │ │ │ └── readme.md │ │ │ ├── icon │ │ │ ├── icon.component.html │ │ │ ├── icon.component.scss │ │ │ ├── icon.component.ts │ │ │ └── readme.md │ │ │ ├── perpost │ │ │ ├── perpost.component.html │ │ │ ├── perpost.component.scss │ │ │ ├── perpost.component.ts │ │ │ └── readme.md │ │ │ ├── readme.md │ │ │ ├── tag │ │ │ ├── readme.md │ │ │ ├── tag.component.html │ │ │ ├── tag.component.scss │ │ │ └── tag.component.ts │ │ │ └── vertical │ │ │ ├── readme.md │ │ │ ├── vertical.component.html │ │ │ ├── vertical.component.scss │ │ │ └── vertical.component.ts │ ├── index.ts │ ├── ng-package.json │ ├── public-api.ts │ ├── radio.component.html │ ├── radio.component.scss │ ├── radio.component.spec.ts │ ├── radio.component.ts │ ├── radio.module.ts │ ├── radio.property.ts │ └── style │ │ ├── mixin.scss │ │ └── param.scss │ ├── rate │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ └── default │ │ │ │ ├── color │ │ │ │ ├── color.component.html │ │ │ │ ├── color.component.scss │ │ │ │ ├── color.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── custom │ │ │ │ ├── custom.component.html │ │ │ │ ├── custom.component.scss │ │ │ │ ├── custom.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.scss │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── disabled │ │ │ │ ├── disabled.component.html │ │ │ │ ├── disabled.component.scss │ │ │ │ ├── disabled.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── half │ │ │ │ ├── half.component.html │ │ │ │ ├── half.component.scss │ │ │ │ ├── half.component.ts │ │ │ │ └── readme.md │ │ │ │ └── readme.md │ │ ├── index.ts │ │ └── zh_CN │ │ │ └── default │ │ │ ├── color │ │ │ ├── color.component.html │ │ │ ├── color.component.scss │ │ │ ├── color.component.ts │ │ │ └── readme.md │ │ │ ├── custom │ │ │ ├── custom.component.html │ │ │ ├── custom.component.scss │ │ │ ├── custom.component.ts │ │ │ └── readme.md │ │ │ ├── default │ │ │ ├── default.component.html │ │ │ ├── default.component.scss │ │ │ ├── default.component.ts │ │ │ └── readme.md │ │ │ ├── disabled │ │ │ ├── disabled.component.html │ │ │ ├── disabled.component.scss │ │ │ ├── disabled.component.ts │ │ │ └── readme.md │ │ │ ├── half │ │ │ ├── half.component.html │ │ │ ├── half.component.scss │ │ │ ├── half.component.ts │ │ │ └── readme.md │ │ │ └── readme.md │ ├── index.ts │ ├── ng-package.json │ ├── public-api.ts │ ├── rate.component.html │ ├── rate.component.scss │ ├── rate.component.spec.ts │ ├── rate.component.ts │ ├── rate.module.ts │ ├── rate.property.ts │ └── style │ │ ├── mixin.scss │ │ └── param.scss │ ├── resizable │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── index.ts │ ├── ng-package.json │ ├── public-api.ts │ ├── resizable.directive.spec.ts │ ├── resizable.directive.ts │ ├── resizable.module.ts │ └── resizable.property.ts │ ├── result │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ └── default │ │ │ │ ├── error │ │ │ │ ├── error.component.html │ │ │ │ ├── error.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── icon │ │ │ │ ├── icon.component.html │ │ │ │ ├── icon.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── img │ │ │ │ ├── img.component.html │ │ │ │ ├── img.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── info │ │ │ │ ├── info.component.html │ │ │ │ ├── info.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── readme.md │ │ │ │ ├── result403 │ │ │ │ ├── readme.md │ │ │ │ ├── result403.component.html │ │ │ │ └── result403.component.ts │ │ │ │ ├── result404 │ │ │ │ ├── readme.md │ │ │ │ ├── result404.component.html │ │ │ │ └── result404.component.ts │ │ │ │ ├── result500 │ │ │ │ ├── readme.md │ │ │ │ ├── result500.component.html │ │ │ │ └── result500.component.ts │ │ │ │ ├── success │ │ │ │ ├── readme.md │ │ │ │ ├── success.component.html │ │ │ │ └── success.component.ts │ │ │ │ └── warning │ │ │ │ ├── readme.md │ │ │ │ ├── warning.component.html │ │ │ │ └── warning.component.ts │ │ ├── index.ts │ │ └── zh_CN │ │ │ └── default │ │ │ ├── error │ │ │ ├── error.component.html │ │ │ ├── error.component.ts │ │ │ └── readme.md │ │ │ ├── icon │ │ │ ├── icon.component.html │ │ │ ├── icon.component.ts │ │ │ └── readme.md │ │ │ ├── img │ │ │ ├── img.component.html │ │ │ ├── img.component.ts │ │ │ └── readme.md │ │ │ ├── info │ │ │ ├── info.component.html │ │ │ ├── info.component.ts │ │ │ └── readme.md │ │ │ ├── readme.md │ │ │ ├── result403 │ │ │ ├── readme.md │ │ │ ├── result403.component.html │ │ │ └── result403.component.ts │ │ │ ├── result404 │ │ │ ├── readme.md │ │ │ ├── result404.component.html │ │ │ └── result404.component.ts │ │ │ ├── result500 │ │ │ ├── readme.md │ │ │ ├── result500.component.html │ │ │ └── result500.component.ts │ │ │ ├── success │ │ │ ├── readme.md │ │ │ ├── success.component.html │ │ │ └── success.component.ts │ │ │ └── warning │ │ │ ├── readme.md │ │ │ ├── warning.component.html │ │ │ └── warning.component.ts │ ├── index.ts │ ├── ng-package.json │ ├── public-api.ts │ ├── result.component.html │ ├── result.component.scss │ ├── result.component.spec.ts │ ├── result.component.ts │ ├── result.module.ts │ ├── result.property.ts │ └── style │ │ ├── mixin.scss │ │ └── param.scss │ ├── ripple │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── index.ts │ ├── ng-package.json │ ├── public-api.ts │ ├── ripple.directive.spec.ts │ ├── ripple.directive.ts │ ├── ripple.module.ts │ └── ripple.property.ts │ ├── scrollable │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ ├── default │ │ │ │ └── default │ │ │ │ │ ├── default.component.html │ │ │ │ │ ├── default.component.scss │ │ │ │ │ ├── default.component.ts │ │ │ │ │ └── readme.md │ │ │ └── readme.md │ │ ├── index.ts │ │ └── zh_CN │ │ │ ├── default │ │ │ └── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.scss │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ └── readme.md │ ├── index.ts │ ├── ng-package.json │ ├── public-api.ts │ ├── scrollable.component.html │ ├── scrollable.component.scss │ ├── scrollable.component.ts │ ├── scrollable.module.ts │ └── style │ │ ├── mixin.scss │ │ └── param.scss │ ├── select │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ └── default │ │ │ │ ├── async │ │ │ │ ├── async.component.html │ │ │ │ ├── async.component.scss │ │ │ │ ├── async.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── bordered │ │ │ │ ├── bordered.component.html │ │ │ │ ├── bordered.component.scss │ │ │ │ ├── bordered.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── custom │ │ │ │ ├── custom.component.html │ │ │ │ ├── custom.component.scss │ │ │ │ ├── custom.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.scss │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── disabled │ │ │ │ ├── disabled.component.html │ │ │ │ ├── disabled.component.scss │ │ │ │ ├── disabled.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── float-label │ │ │ │ ├── float-label.component.html │ │ │ │ ├── float-label.component.scss │ │ │ │ ├── float-label.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── input │ │ │ │ ├── input.component.html │ │ │ │ ├── input.component.scss │ │ │ │ ├── input.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── label │ │ │ │ ├── label.component.html │ │ │ │ ├── label.component.scss │ │ │ │ ├── label.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── multiple │ │ │ │ ├── multiple.component.html │ │ │ │ ├── multiple.component.scss │ │ │ │ ├── multiple.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── readme.md │ │ │ │ ├── required │ │ │ │ ├── readme.md │ │ │ │ ├── required.component.html │ │ │ │ ├── required.component.scss │ │ │ │ └── required.component.ts │ │ │ │ ├── search │ │ │ │ ├── readme.md │ │ │ │ ├── search.component.html │ │ │ │ ├── search.component.scss │ │ │ │ └── search.component.ts │ │ │ │ ├── size │ │ │ │ ├── readme.md │ │ │ │ ├── size.component.html │ │ │ │ ├── size.component.scss │ │ │ │ └── size.component.ts │ │ │ │ └── variant │ │ │ │ ├── readme.md │ │ │ │ ├── variant.component.html │ │ │ │ ├── variant.component.scss │ │ │ │ └── variant.component.ts │ │ ├── index.ts │ │ └── zh_CN │ │ │ └── default │ │ │ ├── async │ │ │ ├── async.component.html │ │ │ ├── async.component.scss │ │ │ ├── async.component.ts │ │ │ └── readme.md │ │ │ ├── bordered │ │ │ ├── bordered.component.html │ │ │ ├── bordered.component.scss │ │ │ ├── bordered.component.ts │ │ │ └── readme.md │ │ │ ├── custom │ │ │ ├── custom.component.html │ │ │ ├── custom.component.scss │ │ │ ├── custom.component.ts │ │ │ └── readme.md │ │ │ ├── default │ │ │ ├── default.component.html │ │ │ ├── default.component.scss │ │ │ ├── default.component.ts │ │ │ └── readme.md │ │ │ ├── disabled │ │ │ ├── disabled.component.html │ │ │ ├── disabled.component.scss │ │ │ ├── disabled.component.ts │ │ │ └── readme.md │ │ │ ├── float-label │ │ │ ├── float-label.component.html │ │ │ ├── float-label.component.scss │ │ │ ├── float-label.component.ts │ │ │ └── readme.md │ │ │ ├── input │ │ │ ├── input.component.html │ │ │ ├── input.component.scss │ │ │ ├── input.component.ts │ │ │ └── readme.md │ │ │ ├── label │ │ │ ├── label.component.html │ │ │ ├── label.component.scss │ │ │ ├── label.component.ts │ │ │ └── readme.md │ │ │ ├── multiple │ │ │ ├── multiple.component.html │ │ │ ├── multiple.component.scss │ │ │ ├── multiple.component.ts │ │ │ └── readme.md │ │ │ ├── readme.md │ │ │ ├── required │ │ │ ├── readme.md │ │ │ ├── required.component.html │ │ │ ├── required.component.scss │ │ │ └── required.component.ts │ │ │ ├── search │ │ │ ├── readme.md │ │ │ ├── search.component.html │ │ │ ├── search.component.scss │ │ │ └── search.component.ts │ │ │ ├── size │ │ │ ├── readme.md │ │ │ ├── size.component.html │ │ │ ├── size.component.scss │ │ │ └── size.component.ts │ │ │ └── variant │ │ │ ├── readme.md │ │ │ ├── variant.component.html │ │ │ ├── variant.component.scss │ │ │ └── variant.component.ts │ ├── index.ts │ ├── ng-package.json │ ├── public-api.ts │ ├── select-portal.component.html │ ├── select-portal.component.scss │ ├── select-portal.component.ts │ ├── select.component.html │ ├── select.component.scss │ ├── select.component.spec.ts │ ├── select.component.ts │ ├── select.module.ts │ ├── select.property.ts │ └── style │ │ ├── mixin.scss │ │ └── param.scss │ ├── sender │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ ├── default │ │ │ │ ├── actions │ │ │ │ │ ├── actions.component.html │ │ │ │ │ ├── actions.component.scss │ │ │ │ │ ├── actions.component.ts │ │ │ │ │ └── readme.md │ │ │ │ ├── default │ │ │ │ │ ├── default.component.html │ │ │ │ │ ├── default.component.scss │ │ │ │ │ ├── default.component.ts │ │ │ │ │ └── readme.md │ │ │ │ ├── header │ │ │ │ │ ├── header.component.html │ │ │ │ │ ├── header.component.scss │ │ │ │ │ ├── header.component.ts │ │ │ │ │ └── readme.md │ │ │ │ └── submit-type │ │ │ │ │ ├── readme.md │ │ │ │ │ ├── submit-type.component.html │ │ │ │ │ ├── submit-type.component.scss │ │ │ │ │ └── submit-type.component.ts │ │ │ └── readme.md │ │ ├── index.ts │ │ └── zh_CN │ │ │ ├── default │ │ │ ├── actions │ │ │ │ ├── actions.component.html │ │ │ │ ├── actions.component.scss │ │ │ │ ├── actions.component.ts │ │ │ │ └── readme.md │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.scss │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ ├── header │ │ │ │ ├── header.component.html │ │ │ │ ├── header.component.scss │ │ │ │ ├── header.component.ts │ │ │ │ └── readme.md │ │ │ └── submit-type │ │ │ │ ├── readme.md │ │ │ │ ├── submit-type.component.html │ │ │ │ ├── submit-type.component.scss │ │ │ │ └── submit-type.component.ts │ │ │ └── readme.md │ ├── index.ts │ ├── ng-package.json │ ├── public-api.ts │ ├── sender.component.html │ ├── sender.component.scss │ ├── sender.component.ts │ ├── sender.module.ts │ ├── sender.property.ts │ ├── stop.component.html │ ├── stop.component.scss │ ├── stop.component.ts │ └── style │ │ ├── mixin.scss │ │ └── param.scss │ ├── skeleton │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ └── default │ │ │ │ ├── active │ │ │ │ ├── active.component.html │ │ │ │ ├── active.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── complex │ │ │ │ ├── complex.component.html │ │ │ │ ├── complex.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── list │ │ │ │ ├── list.component.html │ │ │ │ ├── list.component.scss │ │ │ │ ├── list.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── loading │ │ │ │ ├── loading.component.html │ │ │ │ ├── loading.component.scss │ │ │ │ ├── loading.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── readme.md │ │ │ │ └── table │ │ │ │ ├── readme.md │ │ │ │ ├── table.component.html │ │ │ │ └── table.component.ts │ │ ├── index.ts │ │ └── zh_CN │ │ │ └── default │ │ │ ├── active │ │ │ ├── active.component.html │ │ │ ├── active.component.ts │ │ │ └── readme.md │ │ │ ├── complex │ │ │ ├── complex.component.html │ │ │ ├── complex.component.ts │ │ │ └── readme.md │ │ │ ├── default │ │ │ ├── default.component.html │ │ │ ├── default.component.ts │ │ │ └── readme.md │ │ │ ├── list │ │ │ ├── list.component.html │ │ │ ├── list.component.scss │ │ │ ├── list.component.ts │ │ │ └── readme.md │ │ │ ├── loading │ │ │ ├── loading.component.html │ │ │ ├── loading.component.scss │ │ │ ├── loading.component.ts │ │ │ └── readme.md │ │ │ ├── readme.md │ │ │ └── table │ │ │ ├── readme.md │ │ │ ├── table.component.html │ │ │ └── table.component.ts │ ├── index.ts │ ├── ng-package.json │ ├── public-api.ts │ ├── skeleton.component.html │ ├── skeleton.component.scss │ ├── skeleton.component.spec.ts │ ├── skeleton.component.ts │ ├── skeleton.module.ts │ ├── skeleton.property.ts │ └── style │ │ ├── mixin.scss │ │ └── param.scss │ ├── slider-select │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ └── default │ │ │ │ ├── custom-value │ │ │ │ ├── custom-value.component.html │ │ │ │ ├── custom-value.component.scss │ │ │ │ ├── custom-value.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.scss │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── disabled │ │ │ │ ├── disabled.component.html │ │ │ │ ├── disabled.component.scss │ │ │ │ ├── disabled.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── icon │ │ │ │ ├── icon.component.html │ │ │ │ ├── icon.component.scss │ │ │ │ ├── icon.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── label │ │ │ │ ├── label.component.html │ │ │ │ ├── label.component.scss │ │ │ │ ├── label.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── limit │ │ │ │ ├── limit.component.html │ │ │ │ ├── limit.component.scss │ │ │ │ ├── limit.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── marks │ │ │ │ ├── marks.component.html │ │ │ │ ├── marks.component.scss │ │ │ │ ├── marks.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── precision │ │ │ │ ├── precision.component.html │ │ │ │ ├── precision.component.scss │ │ │ │ ├── precision.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── range │ │ │ │ ├── range.component.html │ │ │ │ ├── range.component.scss │ │ │ │ ├── range.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── readme.md │ │ │ │ ├── reverse │ │ │ │ ├── readme.md │ │ │ │ ├── reverse.component.html │ │ │ │ ├── reverse.component.scss │ │ │ │ └── reverse.component.ts │ │ │ │ └── vertical │ │ │ │ ├── readme.md │ │ │ │ ├── vertical.component.html │ │ │ │ ├── vertical.component.scss │ │ │ │ └── vertical.component.ts │ │ ├── index.ts │ │ └── zh_CN │ │ │ └── default │ │ │ ├── custom-value │ │ │ ├── custom-value.component.html │ │ │ ├── custom-value.component.scss │ │ │ ├── custom-value.component.ts │ │ │ └── readme.md │ │ │ ├── default │ │ │ ├── default.component.html │ │ │ ├── default.component.scss │ │ │ ├── default.component.ts │ │ │ └── readme.md │ │ │ ├── disabled │ │ │ ├── disabled.component.html │ │ │ ├── disabled.component.scss │ │ │ ├── disabled.component.ts │ │ │ └── readme.md │ │ │ ├── icon │ │ │ ├── icon.component.html │ │ │ ├── icon.component.scss │ │ │ ├── icon.component.ts │ │ │ └── readme.md │ │ │ ├── label │ │ │ ├── label.component.html │ │ │ ├── label.component.scss │ │ │ ├── label.component.ts │ │ │ └── readme.md │ │ │ ├── limit │ │ │ ├── limit.component.html │ │ │ ├── limit.component.scss │ │ │ ├── limit.component.ts │ │ │ └── readme.md │ │ │ ├── marks │ │ │ ├── marks.component.html │ │ │ ├── marks.component.scss │ │ │ ├── marks.component.ts │ │ │ └── readme.md │ │ │ ├── precision │ │ │ ├── precision.component.html │ │ │ ├── precision.component.scss │ │ │ ├── precision.component.ts │ │ │ └── readme.md │ │ │ ├── range │ │ │ ├── range.component.html │ │ │ ├── range.component.scss │ │ │ ├── range.component.ts │ │ │ └── readme.md │ │ │ ├── readme.md │ │ │ ├── reverse │ │ │ ├── readme.md │ │ │ ├── reverse.component.html │ │ │ ├── reverse.component.scss │ │ │ └── reverse.component.ts │ │ │ └── vertical │ │ │ ├── readme.md │ │ │ ├── vertical.component.html │ │ │ ├── vertical.component.scss │ │ │ └── vertical.component.ts │ ├── index.ts │ ├── ng-package.json │ ├── public-api.ts │ ├── slider-select.component.html │ ├── slider-select.component.scss │ ├── slider-select.component.spec.ts │ ├── slider-select.component.ts │ ├── slider-select.module.ts │ ├── slider-select.property.ts │ └── style │ │ ├── mixin.scss │ │ └── param.scss │ ├── slider │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ └── default │ │ │ │ ├── activated │ │ │ │ ├── activated.component.html │ │ │ │ ├── activated.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── custom │ │ │ │ ├── custom.component.html │ │ │ │ ├── custom.component.scss │ │ │ │ ├── custom.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── expand │ │ │ │ ├── expand.component.html │ │ │ │ ├── expand.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── readme.md │ │ │ │ ├── scroll │ │ │ │ ├── readme.md │ │ │ │ ├── scroll.component.html │ │ │ │ └── scroll.component.ts │ │ │ │ └── size │ │ │ │ ├── readme.md │ │ │ │ ├── size.component.html │ │ │ │ ├── size.component.scss │ │ │ │ └── size.component.ts │ │ ├── index.ts │ │ └── zh_CN │ │ │ └── default │ │ │ ├── activated │ │ │ ├── activated.component.html │ │ │ ├── activated.component.ts │ │ │ └── readme.md │ │ │ ├── custom │ │ │ ├── custom.component.html │ │ │ ├── custom.component.scss │ │ │ ├── custom.component.ts │ │ │ └── readme.md │ │ │ ├── default │ │ │ ├── default.component.html │ │ │ ├── default.component.ts │ │ │ └── readme.md │ │ │ ├── expand │ │ │ ├── expand.component.html │ │ │ ├── expand.component.ts │ │ │ └── readme.md │ │ │ ├── readme.md │ │ │ ├── scroll │ │ │ ├── readme.md │ │ │ ├── scroll.component.html │ │ │ └── scroll.component.ts │ │ │ └── size │ │ │ ├── readme.md │ │ │ ├── size.component.html │ │ │ ├── size.component.scss │ │ │ └── size.component.ts │ ├── index.ts │ ├── ng-package.json │ ├── public-api.ts │ ├── slider.component.html │ ├── slider.component.scss │ ├── slider.component.spec.ts │ ├── slider.component.ts │ ├── slider.module.ts │ ├── slider.property.ts │ └── style │ │ ├── mixin.scss │ │ └── param.scss │ ├── statistic │ ├── countdown.component.html │ ├── countdown.component.scss │ ├── countdown.component.spec.ts │ ├── countdown.component.ts │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ └── default │ │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.scss │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── down │ │ │ │ ├── down.component.html │ │ │ │ ├── down.component.scss │ │ │ │ ├── down.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── prefix │ │ │ │ ├── prefix.component.html │ │ │ │ ├── prefix.component.scss │ │ │ │ ├── prefix.component.ts │ │ │ │ └── readme.md │ │ │ │ └── readme.md │ │ ├── index.ts │ │ └── zh_CN │ │ │ └── default │ │ │ ├── default │ │ │ ├── default.component.html │ │ │ ├── default.component.scss │ │ │ ├── default.component.ts │ │ │ └── readme.md │ │ │ ├── down │ │ │ ├── down.component.html │ │ │ ├── down.component.scss │ │ │ ├── down.component.ts │ │ │ └── readme.md │ │ │ ├── prefix │ │ │ ├── prefix.component.html │ │ │ ├── prefix.component.scss │ │ │ ├── prefix.component.ts │ │ │ └── readme.md │ │ │ └── readme.md │ ├── index.ts │ ├── ng-package.json │ ├── public-api.ts │ ├── statistic.component.html │ ├── statistic.component.scss │ ├── statistic.component.spec.ts │ ├── statistic.component.ts │ ├── statistic.module.ts │ ├── statistic.property.ts │ └── style │ │ ├── mixin.scss │ │ └── param.scss │ ├── steps │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ └── default │ │ │ │ ├── custom │ │ │ │ ├── custom.component.html │ │ │ │ ├── custom.component.scss │ │ │ │ ├── custom.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── description │ │ │ │ ├── description.component.html │ │ │ │ ├── description.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── icon │ │ │ │ ├── icon.component.html │ │ │ │ ├── icon.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── index │ │ │ │ ├── index.component.html │ │ │ │ ├── index.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── layout │ │ │ │ ├── layout.component.html │ │ │ │ ├── layout.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── node-status │ │ │ │ ├── node-status.component.html │ │ │ │ ├── node-status.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── readme.md │ │ │ │ ├── status │ │ │ │ ├── readme.md │ │ │ │ ├── status.component.html │ │ │ │ └── status.component.ts │ │ │ │ └── tabs │ │ │ │ ├── readme.md │ │ │ │ ├── tabs.component.html │ │ │ │ ├── tabs.component.scss │ │ │ │ └── tabs.component.ts │ │ ├── index.ts │ │ └── zh_CN │ │ │ └── default │ │ │ ├── custom │ │ │ ├── custom.component.html │ │ │ ├── custom.component.scss │ │ │ ├── custom.component.ts │ │ │ └── readme.md │ │ │ ├── default │ │ │ ├── default.component.html │ │ │ ├── default.component.ts │ │ │ └── readme.md │ │ │ ├── description │ │ │ ├── description.component.html │ │ │ ├── description.component.ts │ │ │ └── readme.md │ │ │ ├── icon │ │ │ ├── icon.component.html │ │ │ ├── icon.component.ts │ │ │ └── readme.md │ │ │ ├── index │ │ │ ├── index.component.html │ │ │ ├── index.component.ts │ │ │ └── readme.md │ │ │ ├── layout │ │ │ ├── layout.component.html │ │ │ ├── layout.component.ts │ │ │ └── readme.md │ │ │ ├── node-status │ │ │ ├── node-status.component.html │ │ │ ├── node-status.component.ts │ │ │ └── readme.md │ │ │ ├── readme.md │ │ │ ├── status │ │ │ ├── readme.md │ │ │ ├── status.component.html │ │ │ └── status.component.ts │ │ │ └── tabs │ │ │ ├── readme.md │ │ │ ├── tabs.component.html │ │ │ ├── tabs.component.scss │ │ │ └── tabs.component.ts │ ├── index.ts │ ├── ng-package.json │ ├── public-api.ts │ ├── steps.component.html │ ├── steps.component.scss │ ├── steps.component.spec.ts │ ├── steps.component.ts │ ├── steps.module.ts │ ├── steps.property.ts │ └── style │ │ ├── mixin.scss │ │ └── param.scss │ ├── style │ ├── animates │ │ ├── base.scss │ │ ├── conect.scss │ │ ├── fade.scss │ │ ├── index.scss │ │ ├── move.scss │ │ ├── opacity.scss │ │ └── slide.scss │ ├── core │ │ └── index.scss │ ├── directives │ │ ├── index.scss │ │ ├── keyword │ │ │ ├── index.scss │ │ │ ├── mixin.scss │ │ │ └── param.scss │ │ ├── resizable │ │ │ ├── index.scss │ │ │ ├── mixin.scss │ │ │ └── param.scss │ │ └── ripple │ │ │ ├── index.scss │ │ │ ├── mixin.scss │ │ │ └── param.scss │ ├── mixins │ │ ├── colors.scss │ │ ├── compatibility.scss │ │ ├── flex.scss │ │ ├── form.scss │ │ ├── function.scss │ │ ├── hidden.scss │ │ ├── reset.scss │ │ └── size.scss │ └── params │ │ └── index.scss │ ├── suggestion │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ ├── default │ │ │ │ └── default │ │ │ │ │ ├── default.component.html │ │ │ │ │ ├── default.component.scss │ │ │ │ │ ├── default.component.ts │ │ │ │ │ └── readme.md │ │ │ └── readme.md │ │ ├── index.ts │ │ └── zh_CN │ │ │ ├── default │ │ │ └── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.scss │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ └── readme.md │ ├── index.ts │ ├── ng-package.json │ ├── public-api.ts │ ├── style │ │ ├── mixin.scss │ │ └── param.scss │ ├── suggestion.component.html │ ├── suggestion.component.scss │ ├── suggestion.component.ts │ ├── suggestion.module.ts │ └── suggestion.property.ts │ ├── switch │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ └── default │ │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.scss │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── disabled │ │ │ │ ├── disabled.component.html │ │ │ │ ├── disabled.component.scss │ │ │ │ ├── disabled.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── label │ │ │ │ ├── label.component.html │ │ │ │ ├── label.component.scss │ │ │ │ ├── label.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── loading │ │ │ │ ├── loading.component.html │ │ │ │ ├── loading.component.scss │ │ │ │ ├── loading.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── readme.md │ │ │ │ ├── size │ │ │ │ ├── readme.md │ │ │ │ ├── size.component.html │ │ │ │ ├── size.component.scss │ │ │ │ └── size.component.ts │ │ │ │ └── text │ │ │ │ ├── readme.md │ │ │ │ ├── text.component.html │ │ │ │ ├── text.component.scss │ │ │ │ └── text.component.ts │ │ ├── index.ts │ │ └── zh_CN │ │ │ └── default │ │ │ ├── default │ │ │ ├── default.component.html │ │ │ ├── default.component.scss │ │ │ ├── default.component.ts │ │ │ └── readme.md │ │ │ ├── disabled │ │ │ ├── disabled.component.html │ │ │ ├── disabled.component.scss │ │ │ ├── disabled.component.ts │ │ │ └── readme.md │ │ │ ├── label │ │ │ ├── label.component.html │ │ │ ├── label.component.scss │ │ │ ├── label.component.ts │ │ │ └── readme.md │ │ │ ├── loading │ │ │ ├── loading.component.html │ │ │ ├── loading.component.scss │ │ │ ├── loading.component.ts │ │ │ └── readme.md │ │ │ ├── readme.md │ │ │ ├── size │ │ │ ├── readme.md │ │ │ ├── size.component.html │ │ │ ├── size.component.scss │ │ │ └── size.component.ts │ │ │ └── text │ │ │ ├── readme.md │ │ │ ├── text.component.html │ │ │ ├── text.component.scss │ │ │ └── text.component.ts │ ├── index.ts │ ├── ng-package.json │ ├── public-api.ts │ ├── style │ │ ├── mixin.scss │ │ └── param.scss │ ├── switch.component.html │ ├── switch.component.scss │ ├── switch.component.spec.ts │ ├── switch.component.ts │ ├── switch.module.ts │ └── switch.property.ts │ ├── table-view │ ├── cell.ts │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── index.ts │ │ └── zh_CN │ │ │ ├── default │ │ │ └── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.scss │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ └── readme.md │ ├── index.ts │ ├── ng-package.json │ ├── public-api.ts │ ├── row.ts │ ├── style │ │ ├── mixin.scss │ │ └── param.scss │ ├── table-view.component.html │ ├── table-view.component.scss │ ├── table-view.component.ts │ ├── table-view.module.ts │ ├── table-view.property.ts │ ├── table-view.service.ts │ └── text-column.ts │ ├── table │ ├── checkbox-drag-select.directive.ts │ ├── checkbox-drag-select.service.ts │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ └── default │ │ │ │ ├── adaption │ │ │ │ ├── adaption.component.html │ │ │ │ ├── adaption.component.ts │ │ │ │ ├── adaption.service.ts │ │ │ │ └── readme.md │ │ │ │ ├── array-data │ │ │ │ ├── array-data.component.html │ │ │ │ ├── array-data.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── bordered │ │ │ │ ├── bordered.component.html │ │ │ │ ├── bordered.component.ts │ │ │ │ ├── bordered.service.ts │ │ │ │ └── readme.md │ │ │ │ ├── checkbox │ │ │ │ ├── checkbox.component.html │ │ │ │ ├── checkbox.component.ts │ │ │ │ ├── checkbox.service.ts │ │ │ │ └── readme.md │ │ │ │ ├── config │ │ │ │ ├── config.component.html │ │ │ │ ├── config.component.ts │ │ │ │ ├── config.service.ts │ │ │ │ └── readme.md │ │ │ │ ├── custom │ │ │ │ ├── custom.component.html │ │ │ │ ├── custom.component.scss │ │ │ │ ├── custom.component.ts │ │ │ │ ├── custom.service.ts │ │ │ │ └── readme.md │ │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.ts │ │ │ │ ├── default.service.ts │ │ │ │ └── readme.md │ │ │ │ ├── drag-column │ │ │ │ ├── drag-column.component.html │ │ │ │ ├── drag-column.component.ts │ │ │ │ ├── drag-column.service.ts │ │ │ │ └── readme.md │ │ │ │ ├── drag-width │ │ │ │ ├── drag-width.component.html │ │ │ │ ├── drag-width.component.ts │ │ │ │ ├── drag-width.service.ts │ │ │ │ └── readme.md │ │ │ │ ├── edit │ │ │ │ ├── edit.component.html │ │ │ │ ├── edit.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── expand │ │ │ │ ├── expand.component.html │ │ │ │ ├── expand.component.scss │ │ │ │ ├── expand.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── fix │ │ │ │ ├── fix.component.html │ │ │ │ ├── fix.component.ts │ │ │ │ ├── fix.service.ts │ │ │ │ └── readme.md │ │ │ │ ├── head-template │ │ │ │ ├── head-template.component.html │ │ │ │ ├── head-template.component.ts │ │ │ │ ├── head-template.service.ts │ │ │ │ └── readme.md │ │ │ │ ├── head │ │ │ │ ├── head.component.html │ │ │ │ ├── head.component.ts │ │ │ │ ├── head.service.ts │ │ │ │ └── readme.md │ │ │ │ ├── header │ │ │ │ ├── header.component.html │ │ │ │ ├── header.component.ts │ │ │ │ ├── header.service.ts │ │ │ │ └── readme.md │ │ │ │ ├── innerHTML │ │ │ │ ├── innerHTML.component.html │ │ │ │ ├── innerHTML.component.ts │ │ │ │ ├── innerHTML.service.ts │ │ │ │ └── readme.md │ │ │ │ ├── readme.md │ │ │ │ ├── row-size │ │ │ │ ├── readme.md │ │ │ │ ├── row-size.component.html │ │ │ │ ├── row-size.component.ts │ │ │ │ └── row-size.service.ts │ │ │ │ ├── rowclass │ │ │ │ ├── readme.md │ │ │ │ ├── rowclass.component.html │ │ │ │ ├── rowclass.component.scss │ │ │ │ ├── rowclass.component.ts │ │ │ │ └── rowclass.service.ts │ │ │ │ ├── scroll │ │ │ │ ├── readme.md │ │ │ │ ├── scroll.component.html │ │ │ │ ├── scroll.component.ts │ │ │ │ └── scroll.service.ts │ │ │ │ └── search │ │ │ │ ├── readme.md │ │ │ │ ├── search.component.html │ │ │ │ ├── search.component.ts │ │ │ │ └── search.service.ts │ │ ├── index.ts │ │ └── zh_CN │ │ │ └── default │ │ │ ├── adaption │ │ │ ├── adaption.component.html │ │ │ ├── adaption.component.ts │ │ │ ├── adaption.service.ts │ │ │ └── readme.md │ │ │ ├── array-data │ │ │ ├── array-data.component.html │ │ │ ├── array-data.component.ts │ │ │ └── readme.md │ │ │ ├── bordered │ │ │ ├── bordered.component.html │ │ │ ├── bordered.component.ts │ │ │ ├── bordered.service.ts │ │ │ └── readme.md │ │ │ ├── checkbox │ │ │ ├── checkbox.component.html │ │ │ ├── checkbox.component.ts │ │ │ ├── checkbox.service.ts │ │ │ └── readme.md │ │ │ ├── config │ │ │ ├── config.component.html │ │ │ ├── config.component.ts │ │ │ ├── config.service.ts │ │ │ └── readme.md │ │ │ ├── custom │ │ │ ├── custom.component.html │ │ │ ├── custom.component.scss │ │ │ ├── custom.component.ts │ │ │ ├── custom.service.ts │ │ │ └── readme.md │ │ │ ├── default │ │ │ ├── default.component.html │ │ │ ├── default.component.ts │ │ │ ├── default.service.ts │ │ │ └── readme.md │ │ │ ├── drag-column │ │ │ ├── drag-column.component.html │ │ │ ├── drag-column.component.ts │ │ │ ├── drag-column.service.ts │ │ │ └── readme.md │ │ │ ├── drag-width │ │ │ ├── drag-width.component.html │ │ │ ├── drag-width.component.ts │ │ │ ├── drag-width.service.ts │ │ │ └── readme.md │ │ │ ├── edit │ │ │ ├── edit.component.html │ │ │ ├── edit.component.ts │ │ │ └── readme.md │ │ │ ├── expand │ │ │ ├── expand.component.html │ │ │ ├── expand.component.scss │ │ │ ├── expand.component.ts │ │ │ └── readme.md │ │ │ ├── fix │ │ │ ├── fix.component.html │ │ │ ├── fix.component.ts │ │ │ ├── fix.service.ts │ │ │ └── readme.md │ │ │ ├── head-template │ │ │ ├── head-template.component.html │ │ │ ├── head-template.component.ts │ │ │ ├── head-template.service.ts │ │ │ └── readme.md │ │ │ ├── head │ │ │ ├── head.component.html │ │ │ ├── head.component.ts │ │ │ ├── head.service.ts │ │ │ └── readme.md │ │ │ ├── header │ │ │ ├── header.component.html │ │ │ ├── header.component.ts │ │ │ ├── header.service.ts │ │ │ └── readme.md │ │ │ ├── innerHTML │ │ │ ├── innerHTML.component.html │ │ │ ├── innerHTML.component.ts │ │ │ ├── innerHTML.service.ts │ │ │ └── readme.md │ │ │ ├── readme.md │ │ │ ├── row-size │ │ │ ├── readme.md │ │ │ ├── row-size.component.html │ │ │ ├── row-size.component.ts │ │ │ └── row-size.service.ts │ │ │ ├── rowclass │ │ │ ├── readme.md │ │ │ ├── rowclass.component.html │ │ │ ├── rowclass.component.scss │ │ │ ├── rowclass.component.ts │ │ │ └── rowclass.service.ts │ │ │ ├── scroll │ │ │ ├── readme.md │ │ │ ├── scroll.component.html │ │ │ ├── scroll.component.ts │ │ │ └── scroll.service.ts │ │ │ └── search │ │ │ ├── readme.md │ │ │ ├── search.component.html │ │ │ ├── search.component.ts │ │ │ └── search.service.ts │ ├── index.ts │ ├── ng-package.json │ ├── public-api.ts │ ├── style │ │ ├── mixin.scss │ │ └── param.scss │ ├── table-body.component.html │ ├── table-body.component.ts │ ├── table-foot.component.html │ ├── table-foot.component.ts │ ├── table-head.component.html │ ├── table-head.component.ts │ ├── table.component.html │ ├── table.component.scss │ ├── table.component.spec.ts │ ├── table.component.ts │ ├── table.module.ts │ └── table.property.ts │ ├── tabs │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ └── default │ │ │ │ ├── action │ │ │ │ ├── action.component.html │ │ │ │ ├── action.component.scss │ │ │ │ ├── action.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── card │ │ │ │ ├── card.component.html │ │ │ │ ├── card.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── custom │ │ │ │ ├── custom.component.html │ │ │ │ ├── custom.component.scss │ │ │ │ ├── custom.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── expand │ │ │ │ ├── expand.component.html │ │ │ │ ├── expand.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── layout │ │ │ │ ├── layout.component.html │ │ │ │ ├── layout.component.scss │ │ │ │ ├── layout.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── readme.md │ │ │ │ ├── router │ │ │ │ ├── readme.md │ │ │ │ ├── router.component.html │ │ │ │ └── router.component.ts │ │ │ │ └── tag │ │ │ │ ├── readme.md │ │ │ │ ├── tag.component.html │ │ │ │ └── tag.component.ts │ │ ├── index.ts │ │ └── zh_CN │ │ │ └── default │ │ │ ├── action │ │ │ ├── action.component.html │ │ │ ├── action.component.scss │ │ │ ├── action.component.ts │ │ │ └── readme.md │ │ │ ├── card │ │ │ ├── card.component.html │ │ │ ├── card.component.ts │ │ │ └── readme.md │ │ │ ├── custom │ │ │ ├── custom.component.html │ │ │ ├── custom.component.scss │ │ │ ├── custom.component.ts │ │ │ └── readme.md │ │ │ ├── default │ │ │ ├── default.component.html │ │ │ ├── default.component.ts │ │ │ └── readme.md │ │ │ ├── expand │ │ │ ├── expand.component.html │ │ │ ├── expand.component.ts │ │ │ └── readme.md │ │ │ ├── layout │ │ │ ├── layout.component.html │ │ │ ├── layout.component.scss │ │ │ ├── layout.component.ts │ │ │ └── readme.md │ │ │ ├── readme.md │ │ │ ├── router │ │ │ ├── readme.md │ │ │ ├── router.component.html │ │ │ └── router.component.ts │ │ │ └── tag │ │ │ ├── readme.md │ │ │ ├── tag.component.html │ │ │ └── tag.component.ts │ ├── index.ts │ ├── ng-package.json │ ├── public-api.ts │ ├── style │ │ ├── index.scss │ │ ├── mixin.scss │ │ └── param.scss │ ├── tab-content.component.html │ ├── tab-content.component.ts │ ├── tab-link.directive.ts │ ├── tab.component.html │ ├── tab.component.ts │ ├── tabs.component.html │ ├── tabs.component.spec.ts │ ├── tabs.component.ts │ ├── tabs.module.ts │ └── tabs.property.ts │ ├── tag │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ └── default │ │ │ │ ├── bordered │ │ │ │ ├── bordered.component.html │ │ │ │ ├── bordered.component.scss │ │ │ │ ├── bordered.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── checked │ │ │ │ ├── checked.component.html │ │ │ │ ├── checked.component.scss │ │ │ │ ├── checked.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── close │ │ │ │ ├── close.component.html │ │ │ │ ├── close.component.scss │ │ │ │ ├── close.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── color │ │ │ │ ├── color.component.html │ │ │ │ ├── color.component.scss │ │ │ │ ├── color.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.scss │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── readme.md │ │ │ │ └── size │ │ │ │ ├── readme.md │ │ │ │ ├── size.component.html │ │ │ │ ├── size.component.scss │ │ │ │ └── size.component.ts │ │ ├── index.ts │ │ └── zh_CN │ │ │ └── default │ │ │ ├── bordered │ │ │ ├── bordered.component.html │ │ │ ├── bordered.component.scss │ │ │ ├── bordered.component.ts │ │ │ └── readme.md │ │ │ ├── checked │ │ │ ├── checked.component.html │ │ │ ├── checked.component.scss │ │ │ ├── checked.component.ts │ │ │ └── readme.md │ │ │ ├── close │ │ │ ├── close.component.html │ │ │ ├── close.component.scss │ │ │ ├── close.component.ts │ │ │ └── readme.md │ │ │ ├── color │ │ │ ├── color.component.html │ │ │ ├── color.component.scss │ │ │ ├── color.component.ts │ │ │ └── readme.md │ │ │ ├── default │ │ │ ├── default.component.html │ │ │ ├── default.component.scss │ │ │ ├── default.component.ts │ │ │ └── readme.md │ │ │ ├── readme.md │ │ │ └── size │ │ │ ├── readme.md │ │ │ ├── size.component.html │ │ │ ├── size.component.scss │ │ │ └── size.component.ts │ ├── index.ts │ ├── ng-package.json │ ├── public-api.ts │ ├── style │ │ ├── mixin.scss │ │ └── param.scss │ ├── tag.component.html │ ├── tag.component.scss │ ├── tag.component.spec.ts │ ├── tag.component.ts │ ├── tag.module.ts │ └── tag.property.ts │ ├── text-retract │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ └── default │ │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.scss │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ │ └── readme.md │ │ ├── index.ts │ │ └── zh_CN │ │ │ └── default │ │ │ ├── default │ │ │ ├── default.component.html │ │ │ ├── default.component.scss │ │ │ ├── default.component.ts │ │ │ └── readme.md │ │ │ └── readme.md │ ├── index.ts │ ├── ng-package.json │ ├── public-api.ts │ ├── style │ │ ├── mixin.scss │ │ └── param.scss │ ├── text-retract.component.html │ ├── text-retract.component.scss │ ├── text-retract.component.spec.ts │ ├── text-retract.component.ts │ ├── text-retract.module.ts │ └── text-retract.property.ts │ ├── textarea │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ └── default │ │ │ │ ├── clear │ │ │ │ ├── clear.component.html │ │ │ │ ├── clear.component.scss │ │ │ │ ├── clear.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.scss │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── disabled │ │ │ │ ├── disabled.component.html │ │ │ │ ├── disabled.component.scss │ │ │ │ ├── disabled.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── float-label │ │ │ │ ├── float-label.component.html │ │ │ │ ├── float-label.component.scss │ │ │ │ ├── float-label.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── icon │ │ │ │ ├── icon.component.html │ │ │ │ ├── icon.component.scss │ │ │ │ ├── icon.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── label │ │ │ │ ├── label.component.html │ │ │ │ ├── label.component.scss │ │ │ │ ├── label.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── length │ │ │ │ ├── length.component.html │ │ │ │ ├── length.component.scss │ │ │ │ ├── length.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── readme.md │ │ │ │ ├── required │ │ │ │ ├── readme.md │ │ │ │ ├── required.component.html │ │ │ │ ├── required.component.scss │ │ │ │ └── required.component.ts │ │ │ │ └── variant │ │ │ │ ├── readme.md │ │ │ │ ├── variant.component.html │ │ │ │ ├── variant.component.scss │ │ │ │ └── variant.component.ts │ │ ├── index.ts │ │ └── zh_CN │ │ │ └── default │ │ │ ├── clear │ │ │ ├── clear.component.html │ │ │ ├── clear.component.scss │ │ │ ├── clear.component.ts │ │ │ └── readme.md │ │ │ ├── default │ │ │ ├── default.component.html │ │ │ ├── default.component.scss │ │ │ ├── default.component.ts │ │ │ └── readme.md │ │ │ ├── disabled │ │ │ ├── disabled.component.html │ │ │ ├── disabled.component.scss │ │ │ ├── disabled.component.ts │ │ │ └── readme.md │ │ │ ├── float-label │ │ │ ├── float-label.component.html │ │ │ ├── float-label.component.scss │ │ │ ├── float-label.component.ts │ │ │ └── readme.md │ │ │ ├── icon │ │ │ ├── icon.component.html │ │ │ ├── icon.component.scss │ │ │ ├── icon.component.ts │ │ │ └── readme.md │ │ │ ├── label │ │ │ ├── label.component.html │ │ │ ├── label.component.scss │ │ │ ├── label.component.ts │ │ │ └── readme.md │ │ │ ├── length │ │ │ ├── length.component.html │ │ │ ├── length.component.scss │ │ │ ├── length.component.ts │ │ │ └── readme.md │ │ │ ├── readme.md │ │ │ ├── required │ │ │ ├── readme.md │ │ │ ├── required.component.html │ │ │ ├── required.component.scss │ │ │ └── required.component.ts │ │ │ └── variant │ │ │ ├── readme.md │ │ │ ├── variant.component.html │ │ │ ├── variant.component.scss │ │ │ └── variant.component.ts │ ├── index.ts │ ├── ng-package.json │ ├── public-api.ts │ ├── style │ │ ├── index.scss │ │ ├── mixin.scss │ │ └── param.scss │ ├── textarea.component.html │ ├── textarea.component.spec.ts │ ├── textarea.component.ts │ ├── textarea.module.ts │ └── textarea.property.ts │ ├── theme │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ └── default │ │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.scss │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ │ └── readme.md │ │ ├── index.ts │ │ └── zh_CN │ │ │ └── default │ │ │ ├── default │ │ │ ├── default.component.html │ │ │ ├── default.component.scss │ │ │ ├── default.component.ts │ │ │ └── readme.md │ │ │ └── readme.md │ ├── index.ts │ ├── ng-package.json │ ├── public-api.ts │ ├── style │ │ ├── index.scss │ │ ├── mixin.scss │ │ └── param.scss │ ├── theme.component.html │ ├── theme.component.spec.ts │ ├── theme.component.ts │ ├── theme.module.ts │ └── theme.property.ts │ ├── thought-chain │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ ├── default │ │ │ │ ├── collapsible │ │ │ │ │ ├── collapsible.component.html │ │ │ │ │ ├── collapsible.component.scss │ │ │ │ │ ├── collapsible.component.ts │ │ │ │ │ └── readme.md │ │ │ │ ├── content │ │ │ │ │ ├── content.component.html │ │ │ │ │ ├── content.component.scss │ │ │ │ │ ├── content.component.ts │ │ │ │ │ └── readme.md │ │ │ │ ├── default │ │ │ │ │ ├── default.component.html │ │ │ │ │ ├── default.component.scss │ │ │ │ │ ├── default.component.ts │ │ │ │ │ └── readme.md │ │ │ │ ├── extra │ │ │ │ │ ├── extra.component.html │ │ │ │ │ ├── extra.component.scss │ │ │ │ │ ├── extra.component.ts │ │ │ │ │ └── readme.md │ │ │ │ ├── next │ │ │ │ │ ├── next.component.html │ │ │ │ │ ├── next.component.scss │ │ │ │ │ ├── next.component.ts │ │ │ │ │ └── readme.md │ │ │ │ └── size │ │ │ │ │ ├── readme.md │ │ │ │ │ ├── size.component.html │ │ │ │ │ ├── size.component.scss │ │ │ │ │ └── size.component.ts │ │ │ └── readme.md │ │ ├── index.ts │ │ └── zh_CN │ │ │ ├── default │ │ │ ├── collapsible │ │ │ │ ├── collapsible.component.html │ │ │ │ ├── collapsible.component.scss │ │ │ │ ├── collapsible.component.ts │ │ │ │ └── readme.md │ │ │ ├── content │ │ │ │ ├── content.component.html │ │ │ │ ├── content.component.scss │ │ │ │ ├── content.component.ts │ │ │ │ └── readme.md │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.scss │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ ├── extra │ │ │ │ ├── extra.component.html │ │ │ │ ├── extra.component.scss │ │ │ │ ├── extra.component.ts │ │ │ │ └── readme.md │ │ │ ├── next │ │ │ │ ├── next.component.html │ │ │ │ ├── next.component.scss │ │ │ │ ├── next.component.ts │ │ │ │ └── readme.md │ │ │ └── size │ │ │ │ ├── readme.md │ │ │ │ ├── size.component.html │ │ │ │ ├── size.component.scss │ │ │ │ └── size.component.ts │ │ │ └── readme.md │ ├── index.ts │ ├── ng-package.json │ ├── public-api.ts │ ├── style │ │ ├── mixin.scss │ │ └── param.scss │ ├── thought-chain.component.html │ ├── thought-chain.component.scss │ ├── thought-chain.component.ts │ ├── thought-chain.module.ts │ └── thought-chain.property.ts │ ├── time-ago │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ └── default │ │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.scss │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ │ └── readme.md │ │ ├── index.ts │ │ └── zh_CN │ │ │ └── default │ │ │ ├── default │ │ │ ├── default.component.html │ │ │ ├── default.component.scss │ │ │ ├── default.component.ts │ │ │ └── readme.md │ │ │ └── readme.md │ ├── index.ts │ ├── ng-package.json │ ├── public-api.ts │ ├── style │ │ ├── mixin.scss │ │ └── param.scss │ ├── time-ago.module.ts │ ├── time-ago.pipe.spec.ts │ ├── time-ago.pipe.ts │ └── time-ago.property.ts │ ├── time-picker │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ └── default │ │ │ │ ├── bordered │ │ │ │ ├── bordered.component.html │ │ │ │ ├── bordered.component.scss │ │ │ │ ├── bordered.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.scss │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── disabled │ │ │ │ ├── disabled.component.html │ │ │ │ ├── disabled.component.scss │ │ │ │ ├── disabled.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── float-label │ │ │ │ ├── float-label.component.html │ │ │ │ ├── float-label.component.scss │ │ │ │ ├── float-label.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── hour-minute │ │ │ │ ├── hour-minute.component.html │ │ │ │ ├── hour-minute.component.scss │ │ │ │ ├── hour-minute.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── label │ │ │ │ ├── label.component.html │ │ │ │ ├── label.component.scss │ │ │ │ ├── label.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── preset │ │ │ │ ├── preset.component.html │ │ │ │ ├── preset.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── readme.md │ │ │ │ ├── required │ │ │ │ ├── readme.md │ │ │ │ ├── required.component.html │ │ │ │ ├── required.component.scss │ │ │ │ └── required.component.ts │ │ │ │ ├── size │ │ │ │ ├── readme.md │ │ │ │ ├── size.component.html │ │ │ │ ├── size.component.scss │ │ │ │ └── size.component.ts │ │ │ │ ├── step │ │ │ │ ├── readme.md │ │ │ │ ├── step.component.html │ │ │ │ └── step.component.ts │ │ │ │ ├── use12hours │ │ │ │ ├── readme.md │ │ │ │ ├── use12hours.component.html │ │ │ │ ├── use12hours.component.scss │ │ │ │ └── use12hours.component.ts │ │ │ │ └── variant │ │ │ │ ├── readme.md │ │ │ │ ├── variant.component.html │ │ │ │ ├── variant.component.scss │ │ │ │ └── variant.component.ts │ │ ├── index.ts │ │ └── zh_CN │ │ │ └── default │ │ │ ├── bordered │ │ │ ├── bordered.component.html │ │ │ ├── bordered.component.scss │ │ │ ├── bordered.component.ts │ │ │ └── readme.md │ │ │ ├── default │ │ │ ├── default.component.html │ │ │ ├── default.component.scss │ │ │ ├── default.component.ts │ │ │ └── readme.md │ │ │ ├── disabled │ │ │ ├── disabled.component.html │ │ │ ├── disabled.component.scss │ │ │ ├── disabled.component.ts │ │ │ └── readme.md │ │ │ ├── float-label │ │ │ ├── float-label.component.html │ │ │ ├── float-label.component.scss │ │ │ ├── float-label.component.ts │ │ │ └── readme.md │ │ │ ├── hour-minute │ │ │ ├── hour-minute.component.html │ │ │ ├── hour-minute.component.scss │ │ │ ├── hour-minute.component.ts │ │ │ └── readme.md │ │ │ ├── label │ │ │ ├── label.component.html │ │ │ ├── label.component.scss │ │ │ ├── label.component.ts │ │ │ └── readme.md │ │ │ ├── preset │ │ │ ├── preset.component.html │ │ │ ├── preset.component.ts │ │ │ └── readme.md │ │ │ ├── readme.md │ │ │ ├── required │ │ │ ├── readme.md │ │ │ ├── required.component.html │ │ │ ├── required.component.scss │ │ │ └── required.component.ts │ │ │ ├── size │ │ │ ├── readme.md │ │ │ ├── size.component.html │ │ │ ├── size.component.scss │ │ │ └── size.component.ts │ │ │ ├── step │ │ │ ├── readme.md │ │ │ ├── step.component.html │ │ │ └── step.component.ts │ │ │ ├── use12hours │ │ │ ├── readme.md │ │ │ ├── use12hours.component.html │ │ │ ├── use12hours.component.scss │ │ │ └── use12hours.component.ts │ │ │ └── variant │ │ │ ├── readme.md │ │ │ ├── variant.component.html │ │ │ ├── variant.component.scss │ │ │ └── variant.component.ts │ ├── index.ts │ ├── ng-package.json │ ├── public-api.ts │ ├── style │ │ ├── mixin.scss │ │ └── param.scss │ ├── time-picker-frame.component.html │ ├── time-picker-frame.component.scss │ ├── time-picker-frame.component.ts │ ├── time-picker-portal.component.html │ ├── time-picker-portal.component.scss │ ├── time-picker-portal.component.ts │ ├── time-picker.component.html │ ├── time-picker.component.scss │ ├── time-picker.component.spec.ts │ ├── time-picker.component.ts │ ├── time-picker.module.ts │ └── time-picker.property.ts │ ├── time-range │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ └── default │ │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.scss │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ │ └── readme.md │ │ ├── index.ts │ │ └── zh_CN │ │ │ └── default │ │ │ ├── default │ │ │ ├── default.component.html │ │ │ ├── default.component.scss │ │ │ ├── default.component.ts │ │ │ └── readme.md │ │ │ └── readme.md │ ├── index.ts │ ├── ng-package.json │ ├── public-api.ts │ ├── style │ │ ├── mixin.scss │ │ └── param.scss │ ├── time-range.module.ts │ ├── time-range.pipe.spec.ts │ ├── time-range.pipe.ts │ └── time-range.property.ts │ ├── timeline │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ └── default │ │ │ │ ├── color │ │ │ │ ├── color.component.html │ │ │ │ ├── color.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── custom │ │ │ │ ├── custom.component.html │ │ │ │ ├── custom.component.scss │ │ │ │ ├── custom.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── icon │ │ │ │ ├── icon.component.html │ │ │ │ ├── icon.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── loading │ │ │ │ ├── loading.component.html │ │ │ │ ├── loading.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── mode │ │ │ │ ├── mode.component.html │ │ │ │ ├── mode.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── readme.md │ │ │ │ ├── size │ │ │ │ ├── readme.md │ │ │ │ ├── size.component.html │ │ │ │ └── size.component.ts │ │ │ │ └── type │ │ │ │ ├── readme.md │ │ │ │ ├── type.component.html │ │ │ │ └── type.component.ts │ │ ├── index.ts │ │ └── zh_CN │ │ │ └── default │ │ │ ├── color │ │ │ ├── color.component.html │ │ │ ├── color.component.ts │ │ │ └── readme.md │ │ │ ├── custom │ │ │ ├── custom.component.html │ │ │ ├── custom.component.scss │ │ │ ├── custom.component.ts │ │ │ └── readme.md │ │ │ ├── default │ │ │ ├── default.component.html │ │ │ ├── default.component.ts │ │ │ └── readme.md │ │ │ ├── icon │ │ │ ├── icon.component.html │ │ │ ├── icon.component.ts │ │ │ └── readme.md │ │ │ ├── loading │ │ │ ├── loading.component.html │ │ │ ├── loading.component.ts │ │ │ └── readme.md │ │ │ ├── mode │ │ │ ├── mode.component.html │ │ │ ├── mode.component.ts │ │ │ └── readme.md │ │ │ ├── readme.md │ │ │ ├── size │ │ │ ├── readme.md │ │ │ ├── size.component.html │ │ │ └── size.component.ts │ │ │ └── type │ │ │ ├── readme.md │ │ │ ├── type.component.html │ │ │ └── type.component.ts │ ├── index.ts │ ├── ng-package.json │ ├── public-api.ts │ ├── style │ │ ├── mixin.scss │ │ └── param.scss │ ├── timeline.component.html │ ├── timeline.component.scss │ ├── timeline.component.spec.ts │ ├── timeline.component.ts │ ├── timeline.module.ts │ └── timeline.property.ts │ ├── tooltip │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ └── default │ │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.scss │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ │ └── readme.md │ │ ├── index.ts │ │ └── zh_CN │ │ │ └── default │ │ │ ├── default │ │ │ ├── default.component.html │ │ │ ├── default.component.scss │ │ │ ├── default.component.ts │ │ │ └── readme.md │ │ │ └── readme.md │ ├── index.ts │ ├── ng-package.json │ ├── public-api.ts │ ├── style │ │ ├── mixin.scss │ │ └── param.scss │ ├── tooltip-portal.component.html │ ├── tooltip-portal.component.scss │ ├── tooltip-portal.component.ts │ ├── tooltip.directive.spec.ts │ ├── tooltip.directive.ts │ ├── tooltip.module.ts │ └── tooltip.property.ts │ ├── transfer │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ └── default │ │ │ │ ├── custom │ │ │ │ ├── custom.component.html │ │ │ │ ├── custom.component.scss │ │ │ │ ├── custom.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── drag │ │ │ │ ├── drag.component.html │ │ │ │ ├── drag.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── footer │ │ │ │ ├── footer.component.html │ │ │ │ ├── footer.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── inverse │ │ │ │ ├── inverse.component.html │ │ │ │ ├── inverse.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── readme.md │ │ │ │ ├── search │ │ │ │ ├── readme.md │ │ │ │ ├── search.component.html │ │ │ │ ├── search.component.ts │ │ │ │ └── search.service.ts │ │ │ │ ├── table │ │ │ │ ├── readme.md │ │ │ │ ├── table.component.html │ │ │ │ ├── table.component.ts │ │ │ │ └── table.service.ts │ │ │ │ └── tree │ │ │ │ ├── readme.md │ │ │ │ ├── tree.component.html │ │ │ │ └── tree.component.ts │ │ ├── index.ts │ │ └── zh_CN │ │ │ └── default │ │ │ ├── custom │ │ │ ├── custom.component.html │ │ │ ├── custom.component.scss │ │ │ ├── custom.component.ts │ │ │ └── readme.md │ │ │ ├── default │ │ │ ├── default.component.html │ │ │ ├── default.component.ts │ │ │ └── readme.md │ │ │ ├── drag │ │ │ ├── drag.component.html │ │ │ ├── drag.component.ts │ │ │ └── readme.md │ │ │ ├── footer │ │ │ ├── footer.component.html │ │ │ ├── footer.component.ts │ │ │ └── readme.md │ │ │ ├── inverse │ │ │ ├── inverse.component.html │ │ │ ├── inverse.component.ts │ │ │ └── readme.md │ │ │ ├── readme.md │ │ │ ├── search │ │ │ ├── readme.md │ │ │ ├── search.component.html │ │ │ ├── search.component.ts │ │ │ └── search.service.ts │ │ │ ├── table │ │ │ ├── readme.md │ │ │ ├── table.component.html │ │ │ ├── table.component.ts │ │ │ └── table.service.ts │ │ │ └── tree │ │ │ ├── readme.md │ │ │ ├── tree.component.html │ │ │ └── tree.component.ts │ ├── index.ts │ ├── ng-package.json │ ├── public-api.ts │ ├── style │ │ ├── mixin.scss │ │ └── param.scss │ ├── transfer.component.html │ ├── transfer.component.scss │ ├── transfer.component.spec.ts │ ├── transfer.component.ts │ ├── transfer.module.ts │ └── transfer.property.ts │ ├── tree-file │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ └── default │ │ │ │ ├── content │ │ │ │ ├── content.component.html │ │ │ │ ├── content.component.scss │ │ │ │ ├── content.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.scss │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ │ └── readme.md │ │ ├── index.ts │ │ └── zh_CN │ │ │ └── default │ │ │ ├── content │ │ │ ├── content.component.html │ │ │ ├── content.component.scss │ │ │ ├── content.component.ts │ │ │ └── readme.md │ │ │ ├── default │ │ │ ├── default.component.html │ │ │ ├── default.component.scss │ │ │ ├── default.component.ts │ │ │ └── readme.md │ │ │ └── readme.md │ ├── index.ts │ ├── ng-package.json │ ├── public-api.ts │ ├── style │ │ ├── mixin.scss │ │ └── param.scss │ ├── tree-file.component.html │ ├── tree-file.component.scss │ ├── tree-file.component.spec.ts │ ├── tree-file.component.ts │ ├── tree-file.module.ts │ └── tree-file.property.ts │ ├── tree-select │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ └── default │ │ │ │ ├── async │ │ │ │ ├── async.component.html │ │ │ │ ├── async.component.scss │ │ │ │ ├── async.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── bordered │ │ │ │ ├── bordered.component.html │ │ │ │ ├── bordered.component.scss │ │ │ │ ├── bordered.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── custom │ │ │ │ ├── custom.component.html │ │ │ │ ├── custom.component.scss │ │ │ │ ├── custom.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.scss │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── disabled │ │ │ │ ├── disabled.component.html │ │ │ │ ├── disabled.component.scss │ │ │ │ ├── disabled.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── float-label │ │ │ │ ├── float-label.component.html │ │ │ │ ├── float-label.component.scss │ │ │ │ ├── float-label.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── label │ │ │ │ ├── label.component.html │ │ │ │ ├── label.component.scss │ │ │ │ ├── label.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── leaf │ │ │ │ ├── leaf.component.html │ │ │ │ ├── leaf.component.scss │ │ │ │ ├── leaf.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── multiple │ │ │ │ ├── multiple.component.html │ │ │ │ ├── multiple.component.scss │ │ │ │ ├── multiple.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── path │ │ │ │ ├── path.component.html │ │ │ │ ├── path.component.scss │ │ │ │ ├── path.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── readme.md │ │ │ │ ├── required │ │ │ │ ├── readme.md │ │ │ │ ├── required.component.html │ │ │ │ ├── required.component.scss │ │ │ │ └── required.component.ts │ │ │ │ ├── scroll │ │ │ │ ├── readme.md │ │ │ │ ├── scroll.component.html │ │ │ │ └── scroll.component.ts │ │ │ │ ├── search │ │ │ │ ├── readme.md │ │ │ │ ├── search.component.html │ │ │ │ ├── search.component.scss │ │ │ │ └── search.component.ts │ │ │ │ ├── size │ │ │ │ ├── readme.md │ │ │ │ ├── size.component.html │ │ │ │ ├── size.component.scss │ │ │ │ └── size.component.ts │ │ │ │ └── variant │ │ │ │ ├── readme.md │ │ │ │ ├── variant.component.html │ │ │ │ ├── variant.component.scss │ │ │ │ └── variant.component.ts │ │ ├── index.ts │ │ └── zh_CN │ │ │ └── default │ │ │ ├── async │ │ │ ├── async.component.html │ │ │ ├── async.component.scss │ │ │ ├── async.component.ts │ │ │ └── readme.md │ │ │ ├── bordered │ │ │ ├── bordered.component.html │ │ │ ├── bordered.component.scss │ │ │ ├── bordered.component.ts │ │ │ └── readme.md │ │ │ ├── custom │ │ │ ├── custom.component.html │ │ │ ├── custom.component.scss │ │ │ ├── custom.component.ts │ │ │ └── readme.md │ │ │ ├── default │ │ │ ├── default.component.html │ │ │ ├── default.component.scss │ │ │ ├── default.component.ts │ │ │ └── readme.md │ │ │ ├── disabled │ │ │ ├── disabled.component.html │ │ │ ├── disabled.component.scss │ │ │ ├── disabled.component.ts │ │ │ └── readme.md │ │ │ ├── float-label │ │ │ ├── float-label.component.html │ │ │ ├── float-label.component.scss │ │ │ ├── float-label.component.ts │ │ │ └── readme.md │ │ │ ├── label │ │ │ ├── label.component.html │ │ │ ├── label.component.scss │ │ │ ├── label.component.ts │ │ │ └── readme.md │ │ │ ├── leaf │ │ │ ├── leaf.component.html │ │ │ ├── leaf.component.scss │ │ │ ├── leaf.component.ts │ │ │ └── readme.md │ │ │ ├── multiple │ │ │ ├── multiple.component.html │ │ │ ├── multiple.component.scss │ │ │ ├── multiple.component.ts │ │ │ └── readme.md │ │ │ ├── path │ │ │ ├── path.component.html │ │ │ ├── path.component.scss │ │ │ ├── path.component.ts │ │ │ └── readme.md │ │ │ ├── readme.md │ │ │ ├── required │ │ │ ├── readme.md │ │ │ ├── required.component.html │ │ │ ├── required.component.scss │ │ │ └── required.component.ts │ │ │ ├── scroll │ │ │ ├── readme.md │ │ │ ├── scroll.component.html │ │ │ └── scroll.component.ts │ │ │ ├── search │ │ │ ├── readme.md │ │ │ ├── search.component.html │ │ │ ├── search.component.scss │ │ │ └── search.component.ts │ │ │ ├── size │ │ │ ├── readme.md │ │ │ ├── size.component.html │ │ │ ├── size.component.scss │ │ │ └── size.component.ts │ │ │ └── variant │ │ │ ├── readme.md │ │ │ ├── variant.component.html │ │ │ ├── variant.component.scss │ │ │ └── variant.component.ts │ ├── index.ts │ ├── ng-package.json │ ├── public-api.ts │ ├── style │ │ ├── mixin.scss │ │ └── param.scss │ ├── tree-select-portal.component.html │ ├── tree-select-portal.component.scss │ ├── tree-select-portal.component.ts │ ├── tree-select.component.html │ ├── tree-select.component.scss │ ├── tree-select.component.spec.ts │ ├── tree-select.component.ts │ ├── tree-select.module.ts │ └── tree-select.property.ts │ ├── tree │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ └── default │ │ │ │ ├── activated │ │ │ │ ├── activated.component.html │ │ │ │ ├── activated.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── checkbox │ │ │ │ ├── checkbox.component.html │ │ │ │ ├── checkbox.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── control │ │ │ │ ├── control.component.html │ │ │ │ ├── control.component.scss │ │ │ │ ├── control.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── custom │ │ │ │ ├── custom.component.html │ │ │ │ ├── custom.component.scss │ │ │ │ ├── custom.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── drag │ │ │ │ ├── drag.component.html │ │ │ │ ├── drag.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── height │ │ │ │ ├── height.component.html │ │ │ │ ├── height.component.scss │ │ │ │ ├── height.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── icon │ │ │ │ ├── icon.component.html │ │ │ │ ├── icon.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── lazy │ │ │ │ ├── lazy.component.html │ │ │ │ ├── lazy.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── line │ │ │ │ ├── line.component.html │ │ │ │ ├── line.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── open │ │ │ │ ├── open.component.html │ │ │ │ ├── open.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── readme.md │ │ │ │ ├── sort │ │ │ │ ├── readme.md │ │ │ │ ├── sort.component.html │ │ │ │ └── sort.component.ts │ │ │ │ ├── status │ │ │ │ ├── readme.md │ │ │ │ ├── status.component.html │ │ │ │ └── status.component.ts │ │ │ │ └── virtual-scroll │ │ │ │ ├── readme.md │ │ │ │ ├── virtual-scroll.component.html │ │ │ │ └── virtual-scroll.component.ts │ │ ├── index.ts │ │ └── zh_CN │ │ │ └── default │ │ │ ├── activated │ │ │ ├── activated.component.html │ │ │ ├── activated.component.ts │ │ │ └── readme.md │ │ │ ├── checkbox │ │ │ ├── checkbox.component.html │ │ │ ├── checkbox.component.ts │ │ │ └── readme.md │ │ │ ├── control │ │ │ ├── control.component.html │ │ │ ├── control.component.scss │ │ │ ├── control.component.ts │ │ │ └── readme.md │ │ │ ├── custom │ │ │ ├── custom.component.html │ │ │ ├── custom.component.scss │ │ │ ├── custom.component.ts │ │ │ └── readme.md │ │ │ ├── default │ │ │ ├── default.component.html │ │ │ ├── default.component.ts │ │ │ └── readme.md │ │ │ ├── drag │ │ │ ├── drag.component.html │ │ │ ├── drag.component.ts │ │ │ └── readme.md │ │ │ ├── height │ │ │ ├── height.component.html │ │ │ ├── height.component.scss │ │ │ ├── height.component.ts │ │ │ └── readme.md │ │ │ ├── icon │ │ │ ├── icon.component.html │ │ │ ├── icon.component.ts │ │ │ └── readme.md │ │ │ ├── lazy │ │ │ ├── lazy.component.html │ │ │ ├── lazy.component.ts │ │ │ └── readme.md │ │ │ ├── line │ │ │ ├── line.component.html │ │ │ ├── line.component.ts │ │ │ └── readme.md │ │ │ ├── open │ │ │ ├── open.component.html │ │ │ ├── open.component.ts │ │ │ └── readme.md │ │ │ ├── readme.md │ │ │ ├── sort │ │ │ ├── readme.md │ │ │ ├── sort.component.html │ │ │ └── sort.component.ts │ │ │ ├── status │ │ │ ├── readme.md │ │ │ ├── status.component.html │ │ │ └── status.component.ts │ │ │ └── virtual-scroll │ │ │ ├── readme.md │ │ │ ├── virtual-scroll.component.html │ │ │ └── virtual-scroll.component.ts │ ├── index.ts │ ├── ng-package.json │ ├── public-api.ts │ ├── style │ │ ├── mixin.scss │ │ └── param.scss │ ├── tree-node.component.html │ ├── tree-node.component.scss │ ├── tree-node.component.ts │ ├── tree.component.html │ ├── tree.component.scss │ ├── tree.component.spec.ts │ ├── tree.component.ts │ ├── tree.module.ts │ ├── tree.property.ts │ └── tree.service.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ ├── tsconfig.spec.json │ ├── typography │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── examples │ │ ├── en_US │ │ │ └── default │ │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── line-height │ │ │ │ ├── line-height.component.html │ │ │ │ ├── line-height.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── readme.md │ │ │ │ └── size │ │ │ │ ├── readme.md │ │ │ │ ├── size.component.html │ │ │ │ └── size.component.ts │ │ ├── index.ts │ │ └── zh_CN │ │ │ └── default │ │ │ ├── default │ │ │ ├── default.component.html │ │ │ ├── default.component.ts │ │ │ └── readme.md │ │ │ ├── line-height │ │ │ ├── line-height.component.html │ │ │ ├── line-height.component.ts │ │ │ └── readme.md │ │ │ ├── readme.md │ │ │ └── size │ │ │ ├── readme.md │ │ │ ├── size.component.html │ │ │ └── size.component.ts │ ├── index.ts │ ├── ng-package.json │ ├── public-api.ts │ ├── style │ │ ├── index.scss │ │ ├── mixin.scss │ │ └── param.scss │ ├── typography.component.html │ ├── typography.component.spec.ts │ ├── typography.component.ts │ ├── typography.module.ts │ └── typography.property.ts │ ├── upload │ ├── docs │ │ ├── readme.en_US.md │ │ └── readme.zh_CN.md │ ├── drag-overlay.component.html │ ├── drag-overlay.component.scss │ ├── drag-overlay.component.ts │ ├── drag-overlay.service.ts │ ├── examples │ │ ├── en_US │ │ │ └── default │ │ │ │ ├── custom │ │ │ │ ├── custom.component.html │ │ │ │ ├── custom.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── disabled │ │ │ │ ├── disabled.component.html │ │ │ │ ├── disabled.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── drop │ │ │ │ ├── drop.component.html │ │ │ │ ├── drop.component.scss │ │ │ │ ├── drop.component.ts │ │ │ │ └── readme.md │ │ │ │ ├── img │ │ │ │ ├── img.component.html │ │ │ │ ├── img.component.scss │ │ │ │ ├── img.component.ts │ │ │ │ └── readme.md │ │ │ │ └── readme.md │ │ ├── index.ts │ │ └── zh_CN │ │ │ └── default │ │ │ ├── custom │ │ │ ├── custom.component.html │ │ │ ├── custom.component.ts │ │ │ └── readme.md │ │ │ ├── default │ │ │ ├── default.component.html │ │ │ ├── default.component.ts │ │ │ └── readme.md │ │ │ ├── disabled │ │ │ ├── disabled.component.html │ │ │ ├── disabled.component.ts │ │ │ └── readme.md │ │ │ ├── drop │ │ │ ├── drop.component.html │ │ │ ├── drop.component.scss │ │ │ ├── drop.component.ts │ │ │ └── readme.md │ │ │ ├── img │ │ │ ├── img.component.html │ │ │ ├── img.component.scss │ │ │ ├── img.component.ts │ │ │ └── readme.md │ │ │ └── readme.md │ ├── index.ts │ ├── ng-package.json │ ├── public-api.ts │ ├── style │ │ ├── mixin.scss │ │ └── param.scss │ ├── upload-portal.component.html │ ├── upload-portal.component.scss │ ├── upload-portal.component.ts │ ├── upload.component.html │ ├── upload.component.scss │ ├── upload.component.spec.ts │ ├── upload.component.ts │ ├── upload.module.ts │ └── upload.property.ts │ └── welcome │ ├── docs │ ├── readme.en_US.md │ └── readme.zh_CN.md │ ├── examples │ ├── en_US │ │ ├── default │ │ │ ├── default │ │ │ │ ├── default.component.html │ │ │ │ ├── default.component.scss │ │ │ │ ├── default.component.ts │ │ │ │ └── readme.md │ │ │ ├── style │ │ │ │ ├── readme.md │ │ │ │ ├── style.component.html │ │ │ │ ├── style.component.scss │ │ │ │ └── style.component.ts │ │ │ └── variant │ │ │ │ ├── readme.md │ │ │ │ ├── variant.component.html │ │ │ │ ├── variant.component.scss │ │ │ │ └── variant.component.ts │ │ └── readme.md │ ├── index.ts │ └── zh_CN │ │ ├── default │ │ ├── default │ │ │ ├── default.component.html │ │ │ ├── default.component.scss │ │ │ ├── default.component.ts │ │ │ └── readme.md │ │ ├── style │ │ │ ├── readme.md │ │ │ ├── style.component.html │ │ │ ├── style.component.scss │ │ │ └── style.component.ts │ │ └── variant │ │ │ ├── readme.md │ │ │ ├── variant.component.html │ │ │ ├── variant.component.scss │ │ │ └── variant.component.ts │ │ └── readme.md │ ├── index.ts │ ├── ng-package.json │ ├── public-api.ts │ ├── style │ ├── mixin.scss │ └── param.scss │ ├── welcome.component.html │ ├── welcome.component.scss │ ├── welcome.component.ts │ ├── welcome.module.ts │ └── welcome.property.ts ├── ngsw-config.json ├── package.json ├── public ├── favicon.ico ├── fonts │ ├── dm-mono.woff2 │ └── inter.woff2 ├── i18n │ ├── en_US.json │ └── zh_CN.json ├── img │ ├── admin │ │ ├── ng-nest-admin-home.png │ │ ├── ng-nest-admin-menu.png │ │ ├── ng-nest-admin-role-find.png │ │ ├── ng-nest-admin-roles.png │ │ ├── ng-nest-admin-users.png │ │ └── ng-nest-admin.gif │ ├── clouds.png │ ├── logo │ │ ├── logo-128x128.png │ │ ├── logo-144x144.png │ │ ├── logo-152x152.png │ │ ├── logo-16x16.png │ │ ├── logo-194x194.png │ │ ├── logo-32x32.png │ │ ├── logo-384x384.png │ │ ├── logo-48x48.png │ │ ├── logo-512x512.png │ │ ├── logo-72x72.png │ │ └── logo-96x96.png │ ├── module.png │ ├── ng-nest-ai.png │ ├── stars.png │ ├── tim.jpg │ ├── twinkling.png │ └── weixin.jpg ├── js │ └── baidu-stat.js ├── manifest.webmanifest ├── styles │ └── prism.css └── svg │ ├── car.svg │ ├── home.svg │ └── weather.svg ├── scripts ├── main │ ├── generate │ │ ├── clear-examples │ │ │ └── index.ts │ │ └── docs │ │ │ ├── index.ts │ │ │ └── ui │ │ │ ├── components.ts │ │ │ └── index.ts │ ├── interfaces │ │ ├── core.ts │ │ ├── demo.ts │ │ ├── examples.ts │ │ ├── menu.ts │ │ ├── module.ts │ │ ├── page.ts │ │ ├── pattern.ts │ │ ├── prop.ts │ │ ├── spec.ts │ │ ├── tabs.ts │ │ ├── template.ts │ │ └── type.ts │ ├── templates │ │ ├── component.template.ts │ │ ├── custom-component.template.html │ │ ├── default-component.template.html │ │ ├── examples-component.template.html │ │ ├── highlight-component.template.html │ │ ├── module.template.ts │ │ ├── router-component.template.html │ │ ├── routes-module.template.ts │ │ ├── tabs-component.template.html │ │ └── tree-file.component.template.html │ └── utils │ │ ├── check-mkdir.ts │ │ ├── copy-dir.ts │ │ ├── first-letter-capital.ts │ │ ├── generate-cates.ts │ │ ├── generate-core.ts │ │ ├── generate-menu.ts │ │ ├── generate-page.ts │ │ ├── generate-pattern.ts │ │ ├── generate-prop.ts │ │ ├── generate-tabs.ts │ │ ├── handler-cates.ts │ │ ├── handler-component.ts │ │ ├── handler-core.ts │ │ ├── handler-demo.ts │ │ ├── handler-module.ts │ │ ├── handler-page.ts │ │ ├── handler-pattern.ts │ │ ├── handler-prop.ts │ │ ├── handler-spec.ts │ │ ├── handler-tabs.ts │ │ ├── has-in.ts │ │ ├── index.ts │ │ ├── md-split.ts │ │ ├── md-to-html.ts │ │ ├── order-by.ts │ │ ├── parse-md-doc.ts │ │ ├── random-string.ts │ │ ├── replace-key.ts │ │ ├── themes.ts │ │ └── traverse-ditector.ts └── tsconfig.json ├── server.ts ├── src ├── app │ ├── app.component.html │ ├── app.component.scss │ ├── app.component.ts │ ├── app.config.server.ts │ ├── app.config.ts │ ├── app.initializer.ts │ ├── app.menus.ts │ └── app.routes.ts ├── environments │ ├── environment.development.ts │ ├── environment.ts │ └── index.ts ├── index.html ├── interfaces │ ├── core.interface.ts │ ├── en_US-docs.types.ts │ ├── index.ts │ ├── menu.interface.ts │ └── zh_CN-docs.types.ts ├── main.server.ts ├── main.ts ├── main │ ├── api │ │ ├── api-routes.module.ts │ │ ├── api.component.html │ │ ├── api.component.scss │ │ └── api.component.ts │ ├── demo │ │ ├── demo-routes.module.ts │ │ ├── demo.component.html │ │ ├── demo.component.scss │ │ └── demo.component.ts │ ├── docs │ │ ├── docs-routes.module.ts │ │ ├── docs.component.html │ │ ├── docs.component.scss │ │ └── docs.component.ts │ ├── exception │ │ ├── 404-routes.module.ts │ │ ├── 404.component.html │ │ ├── 404.component.scss │ │ └── 404.component.ts │ ├── home │ │ ├── home-routes.module.ts │ │ ├── home.component.html │ │ ├── home.component.scss │ │ └── home.component.ts │ ├── layout │ │ ├── affix │ │ │ ├── affix.component.html │ │ │ └── affix.component.ts │ │ ├── content │ │ │ ├── content.component.html │ │ │ └── content.component.ts │ │ ├── footer │ │ │ ├── footer.component.html │ │ │ └── footer.component.ts │ │ ├── header │ │ │ ├── header.component.html │ │ │ └── header.component.ts │ │ ├── layout-routes.module.ts │ │ ├── layout.component.html │ │ ├── layout.component.scss │ │ ├── layout.component.ts │ │ ├── layout.service.ts │ │ ├── logo │ │ │ ├── logo.component.html │ │ │ └── logo.component.ts │ │ ├── nav │ │ │ ├── nav.component.html │ │ │ └── nav.component.ts │ │ ├── search │ │ │ ├── search.component.html │ │ │ └── search.component.ts │ │ ├── sider │ │ │ ├── sider.component.html │ │ │ └── sider.component.ts │ │ └── theme │ │ │ ├── theme.component.html │ │ │ ├── theme.component.scss │ │ │ └── theme.component.ts │ ├── news │ │ ├── news-routes.module.ts │ │ ├── news.component.html │ │ └── news.component.ts │ ├── no-auth │ │ ├── no-auth-routes.module.ts │ │ └── no-auth.component.ts │ └── test │ │ ├── affix │ │ ├── affix.component.html │ │ └── affix.component.ts │ │ ├── alert │ │ ├── alert.component.html │ │ └── alert.component.ts │ │ ├── anchor │ │ ├── anchor.component.html │ │ └── anchor.component.ts │ │ ├── attachments │ │ ├── attachments.component.html │ │ └── attachments.component.ts │ │ ├── auto-complete │ │ ├── auto-complete.component.html │ │ └── auto-complete.component.ts │ │ ├── avatar │ │ ├── avatar.component.html │ │ └── avatar.component.ts │ │ ├── back-top │ │ ├── back-top.component.html │ │ └── back-top.component.ts │ │ ├── badge │ │ ├── badge.component.html │ │ └── badge.component.ts │ │ ├── bubble │ │ ├── bubble.component.html │ │ └── bubble.component.ts │ │ ├── button │ │ ├── button.component.html │ │ └── button.component.ts │ │ ├── calendar │ │ ├── calendar.component.html │ │ └── calendar.component.ts │ │ ├── card │ │ ├── card.component.html │ │ └── card.component.ts │ │ ├── carousel │ │ ├── carousel.component.html │ │ └── carousel.component.ts │ │ ├── cascade │ │ ├── cascade.component.html │ │ └── cascade.component.ts │ │ ├── checkbox │ │ ├── checkbox.component.html │ │ └── checkbox.component.ts │ │ ├── collapse │ │ ├── collapse.component.html │ │ └── collapse.component.ts │ │ ├── color-picker │ │ ├── color-picker.component.html │ │ └── color-picker.component.ts │ │ ├── color │ │ ├── color.component.html │ │ └── color.component.ts │ │ ├── comment │ │ ├── comment.component.html │ │ └── comment.component.ts │ │ ├── container │ │ ├── container.component.html │ │ └── container.component.ts │ │ ├── coversations │ │ ├── coversations.component.html │ │ └── coversations.component.ts │ │ ├── crumb │ │ ├── crumb.component.html │ │ └── crumb.component.ts │ │ ├── date-picker │ │ ├── date-picker.component.html │ │ └── date-picker.component.ts │ │ ├── description │ │ ├── description.component.html │ │ └── description.component.ts │ │ ├── dialog │ │ ├── dialog.component.html │ │ └── dialog.component.ts │ │ ├── drawer │ │ ├── drawer.component.html │ │ └── drawer.component.ts │ │ ├── dropdown │ │ ├── dropdown.component.html │ │ └── dropdown.component.ts │ │ ├── empty │ │ ├── empty.component.html │ │ └── empty.component.ts │ │ ├── find │ │ ├── find.component.html │ │ └── find.component.ts │ │ ├── form │ │ ├── form.component.html │ │ └── form.component.ts │ │ ├── highlight │ │ ├── highlight.component.html │ │ └── highlight.component.ts │ │ ├── icon │ │ ├── icon.component.html │ │ └── icon.component.ts │ │ ├── image │ │ ├── image.component.html │ │ └── image.component.ts │ │ ├── input-number │ │ ├── input-number.component.html │ │ └── input-number.component.ts │ │ ├── input │ │ ├── input.component.html │ │ └── input.component.ts │ │ ├── layout │ │ ├── layout.component.html │ │ └── layout.component.ts │ │ ├── link │ │ ├── link.component.html │ │ └── link.component.ts │ │ ├── list │ │ ├── list.component.html │ │ └── list.component.ts │ │ ├── loading │ │ ├── loading.component.html │ │ └── loading.component.ts │ │ ├── menu │ │ ├── menu.component.html │ │ └── menu.component.ts │ │ ├── message-box │ │ ├── message-box.component.html │ │ └── message-box.component.ts │ │ ├── message │ │ ├── message.component.html │ │ └── message.component.ts │ │ ├── notification │ │ ├── notification.component.html │ │ └── notification.component.ts │ │ ├── outlet │ │ ├── outlet.component.html │ │ └── outlet.component.ts │ │ ├── page-header │ │ ├── page-header.component.html │ │ └── page-header.component.ts │ │ ├── pagination │ │ ├── pagination.component.html │ │ └── pagination.component.ts │ │ ├── popconfirm │ │ ├── popconfirm.component.html │ │ └── popconfirm.component.ts │ │ ├── popover │ │ ├── popover.component.html │ │ └── popover.component.ts │ │ ├── progress │ │ ├── progress.component.html │ │ └── progress.component.ts │ │ ├── prompts │ │ ├── prompts.component.html │ │ └── prompts.component.ts │ │ ├── radio │ │ ├── radio.component.html │ │ └── radio.component.ts │ │ ├── rate │ │ ├── rate.component.html │ │ └── rate.component.ts │ │ ├── result │ │ ├── result.component.html │ │ └── result.component.ts │ │ ├── scrollable │ │ ├── scrollable.component.html │ │ └── scrollable.component.ts │ │ ├── select │ │ ├── select.component.html │ │ └── select.component.ts │ │ ├── sender │ │ ├── sender.component.html │ │ └── sender.component.ts │ │ ├── skeleton │ │ ├── skeleton.component.html │ │ └── skeleton.component.ts │ │ ├── slider-select │ │ ├── slider-select.component.html │ │ └── slider-select.component.ts │ │ ├── slider │ │ ├── slider.component.html │ │ └── slider.component.ts │ │ ├── statistic │ │ ├── statistic.component.html │ │ └── statistic.component.ts │ │ ├── steps │ │ ├── steps.component.html │ │ └── steps.component.ts │ │ ├── suggestion │ │ ├── suggestion.component.html │ │ └── suggestion.component.ts │ │ ├── switch │ │ ├── switch.component.html │ │ └── switch.component.ts │ │ ├── table-view │ │ ├── table-view.component.html │ │ └── table-view.component.ts │ │ ├── table │ │ ├── table.component.html │ │ └── table.component.ts │ │ ├── tabs │ │ ├── tabs.component.html │ │ └── tabs.component.ts │ │ ├── tag │ │ ├── tag.component.html │ │ └── tag.component.ts │ │ ├── test-routes.module.ts │ │ ├── test.component.html │ │ ├── test.component.scss │ │ ├── test.component.ts │ │ ├── text-retract │ │ ├── text-retract.component.html │ │ └── text-retract.component.ts │ │ ├── textarea │ │ ├── textarea.component.html │ │ └── textarea.component.ts │ │ ├── theme │ │ ├── theme.component.html │ │ └── theme.component.ts │ │ ├── thought-chain │ │ ├── thought-chain.component.html │ │ └── thought-chain.component.ts │ │ ├── time-ago │ │ ├── time-ago.component.html │ │ └── time-ago.component.ts │ │ ├── time-picker │ │ ├── time-picker.component.html │ │ └── time-picker.component.ts │ │ ├── time-range │ │ ├── time-range.component.html │ │ └── time-range.component.ts │ │ ├── timeline │ │ ├── timeline.component.html │ │ └── timeline.component.ts │ │ ├── tooltip │ │ ├── tooltip.component.html │ │ └── tooltip.component.ts │ │ ├── transfer │ │ ├── transfer.component.html │ │ └── transfer.component.ts │ │ ├── tree-file │ │ ├── tree-file.component.html │ │ └── tree-file.component.ts │ │ ├── tree-select │ │ ├── tree-select.component.html │ │ └── tree-select.component.ts │ │ ├── tree │ │ ├── tree.component.html │ │ └── tree.component.ts │ │ ├── typography │ │ ├── typography.component.html │ │ └── typography.component.ts │ │ ├── upload │ │ ├── upload.component.html │ │ └── upload.component.ts │ │ └── welcome │ │ ├── welcome.component.html │ │ └── welcome.component.ts ├── services │ ├── config.service.ts │ ├── icon.service.ts │ ├── index.ts │ ├── online-ide │ │ ├── files │ │ │ ├── angular.json.ts │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── environment.ts │ │ │ ├── main.ts │ │ │ ├── polyfills.ts │ │ │ ├── tsconfig.app.json.ts │ │ │ └── tsconfig.json.ts │ │ └── online-ide.service.ts │ ├── prism.service.ts │ └── types.service.ts ├── share │ ├── adaption │ │ └── adaption.directive.ts │ ├── api-name │ │ ├── api-name.component.html │ │ ├── api-name.component.scss │ │ └── api-name.component.ts │ ├── api-reference │ │ ├── api-reference.component.html │ │ ├── api-reference.component.scss │ │ └── api-reference.component.ts │ ├── developing │ │ ├── developing.component.html │ │ ├── developing.component.scss │ │ └── developing.component.ts │ ├── index.ts │ ├── md-to-html.pipe.ts │ └── share.module.ts ├── styles.scss ├── styles │ ├── default.scss │ └── mixin.scss └── utils │ ├── index.ts │ └── strings.ts ├── tsconfig.app.json ├── tsconfig.json └── tsconfig.spec.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/angular.json -------------------------------------------------------------------------------- /docs/code-generator/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 4 3 | label: '代码生成' 4 | type: 'router' 5 | hidden: true 6 | --- 7 | -------------------------------------------------------------------------------- /docs/components/readme.en_US.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 2 3 | label: 'Components' 4 | type: 'router' 5 | --- 6 | -------------------------------------------------------------------------------- /docs/components/readme.zh_CN.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 2 3 | label: '组件' 4 | type: 'router' 5 | --- 6 | -------------------------------------------------------------------------------- /docs/course/rbac/2-create-project/demo/1.1__bash/1.1.bash: -------------------------------------------------------------------------------- 1 | $ cd ui 2 | $ ng serve -o -------------------------------------------------------------------------------- /docs/course/rbac/2-create-project/demo/3__rbac/ui/src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/course/rbac/2-create-project/demo/3__rbac/ui/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/course/rbac/3-ui-frame/demo/4__ui/src/layout/index/content/content.component.html: -------------------------------------------------------------------------------- 1 | content 2 | -------------------------------------------------------------------------------- /docs/course/rbac/3-ui-frame/demo/4__ui/src/layout/index/crumb/crumb.component.html: -------------------------------------------------------------------------------- 1 | crumb 2 | -------------------------------------------------------------------------------- /docs/course/rbac/3-ui-frame/demo/4__ui/src/layout/index/header/header.component.html: -------------------------------------------------------------------------------- 1 | header -------------------------------------------------------------------------------- /docs/course/rbac/3-ui-frame/demo/4__ui/src/layout/index/tabs/tabs.component.html: -------------------------------------------------------------------------------- 1 | tabs 2 | -------------------------------------------------------------------------------- /docs/course/rbac/3-ui-frame/demo/6__ui/src/main/dashboard/dashboard.component.html: -------------------------------------------------------------------------------- 1 |
dashboard works!
2 | -------------------------------------------------------------------------------- /docs/course/rbac/3-ui-frame/demo/6__ui/src/main/dashboard/dashboard.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/course/rbac/3-ui-frame/demo/6__ui/src/main/home/home.component.html: -------------------------------------------------------------------------------- 1 |home works!
2 | -------------------------------------------------------------------------------- /docs/course/rbac/3-ui-frame/demo/6__ui/src/main/home/home.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/course/rbac/4-ui-navigation/demo/11__ui/src/layout/index/__index.service.ts.md: -------------------------------------------------------------------------------- 1 | --- 2 | primary: '6,22,29,60-80' 3 | --- 4 | -------------------------------------------------------------------------------- /docs/course/rbac/4-ui-navigation/demo/13__ui/src/layout/index/__index.component.scss.md: -------------------------------------------------------------------------------- 1 | --- 2 | primary: '115-119' 3 | --- 4 | -------------------------------------------------------------------------------- /docs/course/rbac/4-ui-navigation/demo/13__ui/src/layout/index/__index.module.ts.md: -------------------------------------------------------------------------------- 1 | --- 2 | primary: '14,23' 3 | --- 4 | -------------------------------------------------------------------------------- /docs/course/rbac/4-ui-navigation/demo/4__ui/src/environments/__routes.ts.md: -------------------------------------------------------------------------------- 1 | --- 2 | primary: '28-47' 3 | --- 4 | -------------------------------------------------------------------------------- /docs/course/rbac/4-ui-navigation/demo/4__ui/src/layout/index/__index.component.scss.md: -------------------------------------------------------------------------------- 1 | --- 2 | primary: '22-35' 3 | --- 4 | -------------------------------------------------------------------------------- /docs/course/rbac/4-ui-navigation/demo/4__ui/src/main/system/menus/menu.component.html: -------------------------------------------------------------------------------- 1 |menu works!
2 | -------------------------------------------------------------------------------- /docs/course/rbac/4-ui-navigation/demo/4__ui/src/main/system/menus/menu.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/course/rbac/4-ui-navigation/demo/4__ui/src/main/system/organization/organization.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/course/rbac/4-ui-navigation/demo/4__ui/src/main/system/roles/role.component.html: -------------------------------------------------------------------------------- 1 |role works!
2 | -------------------------------------------------------------------------------- /docs/course/rbac/4-ui-navigation/demo/4__ui/src/main/system/roles/role.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/course/rbac/4-ui-navigation/demo/4__ui/src/main/system/users/user.component.html: -------------------------------------------------------------------------------- 1 |user works!
2 | -------------------------------------------------------------------------------- /docs/course/rbac/4-ui-navigation/demo/4__ui/src/main/system/users/user.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/course/rbac/4-ui-navigation/demo/9__ui/src/layout/index/__index.module.ts.md: -------------------------------------------------------------------------------- 1 | --- 2 | primary: '12,20' 3 | --- 4 | -------------------------------------------------------------------------------- /docs/course/rbac/5-user-manage/demo/10__api/src/__mai.ts.md: -------------------------------------------------------------------------------- 1 | --- 2 | primary: '2,8-15' 3 | --- 4 | -------------------------------------------------------------------------------- /docs/course/rbac/5-user-manage/demo/15__api/src/system/users/dto/__create-user.dto.ts.md: -------------------------------------------------------------------------------- 1 | --- 2 | primary: '26,33' 3 | --- 4 | -------------------------------------------------------------------------------- /docs/course/rbac/5-user-manage/demo/16__api/src/__mai.ts.md: -------------------------------------------------------------------------------- 1 | --- 2 | primary: '2,9' 3 | --- 4 | -------------------------------------------------------------------------------- /docs/course/rbac/5-user-manage/demo/17__ui/src/main/system/users/__user.module.ts.md: -------------------------------------------------------------------------------- 1 | --- 2 | primary: '5,11' 3 | --- 4 | -------------------------------------------------------------------------------- /docs/course/rbac/5-user-manage/demo/18__ui/src/app/__app.module.ts.md: -------------------------------------------------------------------------------- 1 | --- 2 | primary: '6,10' 3 | --- 4 | -------------------------------------------------------------------------------- /docs/course/rbac/5-user-manage/demo/21__ui/__package.json.md: -------------------------------------------------------------------------------- 1 | --- 2 | primary: '6' 3 | --- 4 | -------------------------------------------------------------------------------- /docs/course/rbac/5-user-manage/demo/22__ui/src/main/system/users/__user.module.ts.md: -------------------------------------------------------------------------------- 1 | --- 2 | primary: '6,9,15-16' 3 | --- 4 | -------------------------------------------------------------------------------- /docs/course/rbac/5-user-manage/demo/22__ui/src/main/system/users/user-detail/user-detail.component.html: -------------------------------------------------------------------------------- 1 | user-deital 2 | -------------------------------------------------------------------------------- /docs/course/rbac/5-user-manage/demo/22__ui/src/main/system/users/user-detail/user-detail.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/course/rbac/5-user-manage/demo/23__ui/src/main/system/users/__user.component.html.md: -------------------------------------------------------------------------------- 1 | --- 2 | primary: '1-3' 3 | --- 4 | -------------------------------------------------------------------------------- /docs/course/rbac/5-user-manage/demo/23__ui/src/main/system/users/__user.component.ts.md: -------------------------------------------------------------------------------- 1 | --- 2 | primary: '7,14' 3 | --- 4 | -------------------------------------------------------------------------------- /docs/course/rbac/5-user-manage/demo/24__ui/src/main/system/users/__user.module.ts.md: -------------------------------------------------------------------------------- 1 | --- 2 | primary: '8,9,17-18' 3 | --- 4 | -------------------------------------------------------------------------------- /docs/course/rbac/5-user-manage/demo/25__ui/src/main/system/users/__user.module.ts.md: -------------------------------------------------------------------------------- 1 | --- 2 | primary: '10,11,21-22' 3 | --- 4 | -------------------------------------------------------------------------------- /docs/course/rbac/5-user-manage/demo/3__api/src/__app.module.ts.md: -------------------------------------------------------------------------------- 1 | --- 2 | primary: '2,7' 3 | --- 4 | -------------------------------------------------------------------------------- /docs/course/rbac/5-user-manage/demo/4__api/src/__app.module.ts.md: -------------------------------------------------------------------------------- 1 | --- 2 | primary: '5,8' 3 | --- 4 | -------------------------------------------------------------------------------- /docs/course/rbac/5-user-manage/demo/5__api/src/core/index.ts: -------------------------------------------------------------------------------- 1 | export * from './interfaces'; 2 | -------------------------------------------------------------------------------- /docs/course/rbac/5-user-manage/demo/6__api/__tsconfig.json.md: -------------------------------------------------------------------------------- 1 | --- 2 | primary: '15' 3 | --- 4 | -------------------------------------------------------------------------------- /docs/course/rbac/6-service-optimize/demo/2__api/src/core/services/index.ts: -------------------------------------------------------------------------------- 1 | export * from './repository.service'; 2 | -------------------------------------------------------------------------------- /docs/course/rbac/readme.en_US.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'RBAC System' 4 | type: 'router' 5 | default: true 6 | --- 7 | -------------------------------------------------------------------------------- /docs/course/rbac/readme.zh_CN.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'RBAC 权限系统' 4 | type: 'router' 5 | default: true 6 | --- 7 | -------------------------------------------------------------------------------- /docs/course/readme.en_US.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 3 3 | label: 'Tutorial' 4 | type: 'router' 5 | --- 6 | -------------------------------------------------------------------------------- /docs/course/readme.zh_CN.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 3 3 | label: '教程' 4 | type: 'router' 5 | --- 6 | -------------------------------------------------------------------------------- /docs/form-design/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 2 3 | label: '表单设计器' 4 | type: 'router' 5 | hidden: true 6 | --- 7 | -------------------------------------------------------------------------------- /docs/ui/getting-started/demo/1__bash/__1.bash.md: -------------------------------------------------------------------------------- 1 | --- 2 | info: 4,8,11 3 | --- 4 | -------------------------------------------------------------------------------- /docs/ui/getting-started/demo/1__my-app/src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/ui/getting-started/demo/2.1__my-app/src/__styles.scss.md: -------------------------------------------------------------------------------- 1 | --- 2 | primary: '2' 3 | --- 4 | -------------------------------------------------------------------------------- /docs/ui/getting-started/demo/2.2__my-app/__angular.json.md: -------------------------------------------------------------------------------- 1 | --- 2 | primary: '32' 3 | --- 4 | -------------------------------------------------------------------------------- /docs/ui/getting-started/demo/2__bash/1.bash: -------------------------------------------------------------------------------- 1 | $ cd my-app 2 | $ npm install @ng-nest/ui -------------------------------------------------------------------------------- /docs/ui/getting-started/demo/3.2__my-app/src/app/__app.component.ts.md: -------------------------------------------------------------------------------- 1 | --- 2 | primary: '2, 7' 3 | --- 4 | -------------------------------------------------------------------------------- /docs/ui/getting-started/demo/__bash/__1.bash.md: -------------------------------------------------------------------------------- 1 | --- 2 | info: 11-12 3 | --- 4 | -------------------------------------------------------------------------------- /docs/ui/global-config/demo/__my-app/src/app/__app.module.ts.md: -------------------------------------------------------------------------------- 1 | --- 2 | primary: '5, 7-18, 24' 3 | --- 4 | -------------------------------------------------------------------------------- /docs/ui/global-config/readme.en_US.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/docs/ui/global-config/readme.en_US.md -------------------------------------------------------------------------------- /docs/ui/global-config/readme.zh_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/docs/ui/global-config/readme.zh_CN.md -------------------------------------------------------------------------------- /docs/ui/i18n/demo/1__my-app/src/app/__app.module.ts.md: -------------------------------------------------------------------------------- 1 | --- 2 | primary: '6, 11' 3 | --- 4 | -------------------------------------------------------------------------------- /docs/ui/i18n/demo/2__toggle/toggle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/docs/ui/i18n/demo/2__toggle/toggle.ts -------------------------------------------------------------------------------- /docs/ui/i18n/demo/3__module/module.ts: -------------------------------------------------------------------------------- 1 | import { XI18nModule } from '@ng-nest/ui/i18n'; 2 | -------------------------------------------------------------------------------- /docs/ui/i18n/demo/4__html/html.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/docs/ui/i18n/demo/4__html/html.html -------------------------------------------------------------------------------- /docs/ui/i18n/readme.en_US.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/docs/ui/i18n/readme.en_US.md -------------------------------------------------------------------------------- /docs/ui/i18n/readme.zh_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/docs/ui/i18n/readme.zh_CN.md -------------------------------------------------------------------------------- /docs/ui/ng-nest/readme.en_US.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/docs/ui/ng-nest/readme.en_US.md -------------------------------------------------------------------------------- /docs/ui/ng-nest/readme.zh_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/docs/ui/ng-nest/readme.zh_CN.md -------------------------------------------------------------------------------- /docs/ui/readme.en_US.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'UI Components' 4 | type: 'router' 5 | default: true 6 | --- 7 | -------------------------------------------------------------------------------- /docs/ui/readme.zh_CN.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'UI 库' 4 | type: 'router' 5 | default: true 6 | --- 7 | -------------------------------------------------------------------------------- /docs/ui/schematics/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/docs/ui/schematics/readme.md -------------------------------------------------------------------------------- /docs/user-lib/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 5 3 | label: '用户模块' 4 | type: 'router' 5 | hidden: true 6 | --- 7 | -------------------------------------------------------------------------------- /docs/workflow-design/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 3 3 | label: '工作流设计' 4 | type: 'router' 5 | hidden: true 6 | --- 7 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/README.md -------------------------------------------------------------------------------- /lib/ng-nest/ui/affix/affix.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/affix/affix.module.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/affix/affix.property.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/affix/affix.property.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/affix/examples/en_US/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'Base' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/affix/examples/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/affix/examples/index.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/affix/examples/zh_CN/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '基础用法' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/affix/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/affix/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/affix/ng-package.json -------------------------------------------------------------------------------- /lib/ng-nest/ui/affix/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/affix/public-api.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/affix/style/mixin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/affix/style/mixin.scss -------------------------------------------------------------------------------- /lib/ng-nest/ui/affix/style/param.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/affix/style/param.scss -------------------------------------------------------------------------------- /lib/ng-nest/ui/alert/alert.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/alert/alert.module.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/alert/alert.property.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/alert/alert.property.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/alert/examples/en_US/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'Base' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/alert/examples/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/alert/examples/index.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/alert/examples/zh_CN/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '基础用法' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/alert/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/alert/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/alert/ng-package.json -------------------------------------------------------------------------------- /lib/ng-nest/ui/alert/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/alert/public-api.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/alert/style/mixin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/alert/style/mixin.scss -------------------------------------------------------------------------------- /lib/ng-nest/ui/alert/style/param.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/alert/style/param.scss -------------------------------------------------------------------------------- /lib/ng-nest/ui/anchor/anchor.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/anchor/anchor.module.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/anchor/examples/en_US/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'Base' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/anchor/examples/zh_CN/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '基础用法' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/anchor/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/anchor/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/anchor/ng-package.json -------------------------------------------------------------------------------- /lib/ng-nest/ui/anchor/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/anchor/public-api.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/anchor/style/mixin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/anchor/style/mixin.scss -------------------------------------------------------------------------------- /lib/ng-nest/ui/anchor/style/param.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/anchor/style/param.scss -------------------------------------------------------------------------------- /lib/ng-nest/ui/api/api.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/api/api.component.html -------------------------------------------------------------------------------- /lib/ng-nest/ui/api/api.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/api/api.component.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/api/api.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/api/api.module.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/api/api.property.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/api/api.property.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/api/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/api/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/api/ng-package.json -------------------------------------------------------------------------------- /lib/ng-nest/ui/api/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/api/public-api.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/api/style/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/api/style/index.scss -------------------------------------------------------------------------------- /lib/ng-nest/ui/api/style/mixin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/api/style/mixin.scss -------------------------------------------------------------------------------- /lib/ng-nest/ui/api/style/param.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/api/style/param.scss -------------------------------------------------------------------------------- /lib/ng-nest/ui/attachments/examples/en_US/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'Base' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/attachments/examples/zh_CN/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '基础用法' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/attachments/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/auto-complete/examples/en_US/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'defalut' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/auto-complete/examples/zh_CN/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '默认' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/auto-complete/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/avatar/avatar.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/avatar/avatar.module.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/avatar/examples/en_US/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'Base' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/avatar/examples/zh_CN/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '基础用法' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/avatar/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/avatar/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/avatar/ng-package.json -------------------------------------------------------------------------------- /lib/ng-nest/ui/avatar/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/avatar/public-api.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/avatar/style/mixin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/avatar/style/mixin.scss -------------------------------------------------------------------------------- /lib/ng-nest/ui/avatar/style/param.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/avatar/style/param.scss -------------------------------------------------------------------------------- /lib/ng-nest/ui/back-top/examples/en_US/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'Base' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/back-top/examples/zh_CN/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '基础用法' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/back-top/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/back-top/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/back-top/public-api.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/badge/badge.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/badge/badge.module.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/badge/badge.property.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/badge/badge.property.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/badge/examples/en_US/default/animation/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 9 3 | label: 'Switching' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/badge/examples/en_US/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'Base' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/badge/examples/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/badge/examples/index.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/badge/examples/zh_CN/default/animation/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 9 3 | label: '切换动效' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/badge/examples/zh_CN/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '基础用法' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/badge/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/badge/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/badge/ng-package.json -------------------------------------------------------------------------------- /lib/ng-nest/ui/badge/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/badge/public-api.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/badge/style/mixin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/badge/style/mixin.scss -------------------------------------------------------------------------------- /lib/ng-nest/ui/badge/style/param.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/badge/style/param.scss -------------------------------------------------------------------------------- /lib/ng-nest/ui/base-form/docs/readme.en_US.md: -------------------------------------------------------------------------------- 1 | --- 2 | label: 'Base Form' 3 | hidden: true 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/base-form/docs/readme.zh_CN.md: -------------------------------------------------------------------------------- 1 | --- 2 | label: '基础表单' 3 | hidden: true 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/base-form/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/base-form/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/base-form/public-api.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/bubble/bubble.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/bubble/bubble.module.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/bubble/examples/en_US/default/default/default.component.scss: -------------------------------------------------------------------------------- 1 | :host { 2 | } 3 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/bubble/examples/en_US/default/header/header.component.scss: -------------------------------------------------------------------------------- 1 | :host { 2 | } 3 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/bubble/examples/en_US/default/loading/loading.component.scss: -------------------------------------------------------------------------------- 1 | :host { 2 | } 3 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/bubble/examples/en_US/default/renderer/renderer.component.scss: -------------------------------------------------------------------------------- 1 | :host { 2 | } 3 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/bubble/examples/en_US/default/typing/typing.component.scss: -------------------------------------------------------------------------------- 1 | :host { 2 | } 3 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/bubble/examples/en_US/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'Base' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/bubble/examples/zh_CN/default/default/default.component.scss: -------------------------------------------------------------------------------- 1 | :host { 2 | } 3 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/bubble/examples/zh_CN/default/header/header.component.scss: -------------------------------------------------------------------------------- 1 | :host { 2 | } 3 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/bubble/examples/zh_CN/default/loading/loading.component.scss: -------------------------------------------------------------------------------- 1 | :host { 2 | } 3 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/bubble/examples/zh_CN/default/renderer/renderer.component.scss: -------------------------------------------------------------------------------- 1 | :host { 2 | } 3 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/bubble/examples/zh_CN/default/typing/typing.component.scss: -------------------------------------------------------------------------------- 1 | :host { 2 | } 3 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/bubble/examples/zh_CN/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '基础用法' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/bubble/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/bubble/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/bubble/ng-package.json -------------------------------------------------------------------------------- /lib/ng-nest/ui/bubble/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/bubble/public-api.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/bubble/style/mixin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/bubble/style/mixin.scss -------------------------------------------------------------------------------- /lib/ng-nest/ui/bubble/style/param.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/bubble/style/param.scss -------------------------------------------------------------------------------- /lib/ng-nest/ui/button/button.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/button/button.module.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/button/examples/en_US/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'Base' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/button/examples/zh_CN/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '基础用法' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/button/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/button/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/button/ng-package.json -------------------------------------------------------------------------------- /lib/ng-nest/ui/button/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/button/public-api.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/button/style/mixin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/button/style/mixin.scss -------------------------------------------------------------------------------- /lib/ng-nest/ui/button/style/param.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/button/style/param.scss -------------------------------------------------------------------------------- /lib/ng-nest/ui/calendar/examples/en_US/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'Base' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/calendar/examples/zh_CN/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '基础用法' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/calendar/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/calendar/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/calendar/public-api.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/card/card.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/card/card.component.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/card/card.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/card/card.module.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/card/card.property.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/card/card.property.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/card/examples/en_US/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'Base' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/card/examples/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/card/examples/index.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/card/examples/zh_CN/default/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '基础用法' 4 | --- 5 | 6 | 卡片只有内容区域。 7 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/card/examples/zh_CN/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '基础用法' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/card/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/card/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/card/ng-package.json -------------------------------------------------------------------------------- /lib/ng-nest/ui/card/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/card/public-api.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/card/style/mixin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/card/style/mixin.scss -------------------------------------------------------------------------------- /lib/ng-nest/ui/card/style/param.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/card/style/param.scss -------------------------------------------------------------------------------- /lib/ng-nest/ui/carousel/examples/en_US/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'Base' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/carousel/examples/zh_CN/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '基础用法' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/carousel/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/carousel/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/carousel/public-api.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/cascade/examples/en_US/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'Base' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/cascade/examples/zh_CN/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '基础用法' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/cascade/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/cascade/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/cascade/ng-package.json -------------------------------------------------------------------------------- /lib/ng-nest/ui/cascade/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/cascade/public-api.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/checkbox/examples/en_US/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'Base' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/checkbox/examples/zh_CN/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '基础用法' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/checkbox/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/checkbox/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/checkbox/public-api.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/collapse/examples/en_US/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'Base' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/collapse/examples/zh_CN/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '基础用法' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/collapse/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/collapse/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/collapse/public-api.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/color-picker/examples/en_US/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'Base' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/color-picker/examples/zh_CN/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '默认' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/color-picker/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/color/color.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/color/color.module.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/color/color.property.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/color/color.property.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/color/examples/en_US/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'Primary' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/color/examples/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/color/examples/index.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/color/examples/zh_CN/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '主色' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/color/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/color/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/color/ng-package.json -------------------------------------------------------------------------------- /lib/ng-nest/ui/color/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/color/public-api.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/color/style/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/color/style/index.scss -------------------------------------------------------------------------------- /lib/ng-nest/ui/color/style/mixin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/color/style/mixin.scss -------------------------------------------------------------------------------- /lib/ng-nest/ui/color/style/param.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/color/style/param.scss -------------------------------------------------------------------------------- /lib/ng-nest/ui/comment/examples/en_US/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'Base' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/comment/examples/zh_CN/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '基础用法' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/comment/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/comment/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/comment/ng-package.json -------------------------------------------------------------------------------- /lib/ng-nest/ui/comment/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/comment/public-api.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/container/examples/en_US/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '常见页面布局' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/container/examples/zh_CN/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '常见页面布局' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/container/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/container/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/container/public-api.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/core/components/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/core/components/public-api.ts: -------------------------------------------------------------------------------- 1 | export * from './inner-html.component'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/core/config/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/core/config/config.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/core/config/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/core/functions/chunk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/core/functions/chunk.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/core/functions/csspx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/core/functions/csspx.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/core/functions/date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/core/functions/date.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/core/functions/drop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/core/functions/drop.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/core/functions/flex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/core/functions/flex.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/core/functions/guid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/core/functions/guid.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/core/functions/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/core/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/core/interfaces/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/core/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/core/ng-package.json -------------------------------------------------------------------------------- /lib/ng-nest/ui/core/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/core/public-api.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/core/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/core/readme.md -------------------------------------------------------------------------------- /lib/ng-nest/ui/core/services/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/core/theme/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/core/theme/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/core/theme/theme.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/core/util/animation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/core/util/animation.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/core/util/check.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/core/util/check.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/core/util/host.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/core/util/host.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/core/util/html.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/core/util/html.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/core/util/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/core/util/log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/core/util/log.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/core/util/option.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/core/util/option.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/core/util/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/core/util/public-api.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/core/util/sleep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/core/util/sleep.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/coversations/examples/en_US/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'Base' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/coversations/examples/zh_CN/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '基础用法' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/coversations/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/crumb/crumb.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/crumb/crumb.module.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/crumb/crumb.property.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/crumb/crumb.property.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/crumb/examples/en_US/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'Base' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/crumb/examples/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/crumb/examples/index.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/crumb/examples/zh_CN/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '基本用法' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/crumb/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/crumb/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/crumb/ng-package.json -------------------------------------------------------------------------------- /lib/ng-nest/ui/crumb/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/crumb/public-api.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/crumb/style/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/crumb/style/index.scss -------------------------------------------------------------------------------- /lib/ng-nest/ui/crumb/style/mixin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/crumb/style/mixin.scss -------------------------------------------------------------------------------- /lib/ng-nest/ui/crumb/style/param.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/crumb/style/param.scss -------------------------------------------------------------------------------- /lib/ng-nest/ui/date-picker/examples/en_US/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'Base' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/date-picker/examples/zh_CN/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '默认' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/date-picker/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/description/examples/en_US/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'Base' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/description/examples/en_US/default/vertical/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 4 3 | label: 'Vertical layout' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/description/examples/zh_CN/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '基础样式' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/description/examples/zh_CN/default/vertical/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 4 3 | label: '垂直布局' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/description/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/dialog/dialog-ref.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/dialog/dialog-ref.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/dialog/dialog.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/dialog/dialog.module.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/dialog/examples/en_US/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'Base' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/dialog/examples/zh_CN/default/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '基础用法' 4 | --- 5 | 6 | 九宫格的位置展示。 7 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/dialog/examples/zh_CN/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '基础用法' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/dialog/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/dialog/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/dialog/ng-package.json -------------------------------------------------------------------------------- /lib/ng-nest/ui/dialog/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/dialog/public-api.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/dialog/style/mixin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/dialog/style/mixin.scss -------------------------------------------------------------------------------- /lib/ng-nest/ui/dialog/style/param.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/dialog/style/param.scss -------------------------------------------------------------------------------- /lib/ng-nest/ui/divider/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/divider/readme.md -------------------------------------------------------------------------------- /lib/ng-nest/ui/doc/doc.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/doc/doc.component.html -------------------------------------------------------------------------------- /lib/ng-nest/ui/doc/doc.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/doc/doc.component.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/doc/doc.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/doc/doc.module.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/doc/doc.property.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/doc/doc.property.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/doc/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/doc/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/doc/ng-package.json -------------------------------------------------------------------------------- /lib/ng-nest/ui/doc/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/doc/public-api.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/doc/style/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/doc/style/index.scss -------------------------------------------------------------------------------- /lib/ng-nest/ui/doc/style/mixin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/doc/style/mixin.scss -------------------------------------------------------------------------------- /lib/ng-nest/ui/doc/style/param.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/doc/style/param.scss -------------------------------------------------------------------------------- /lib/ng-nest/ui/drag/docs/readme.en_US.md: -------------------------------------------------------------------------------- 1 | --- 2 | label: 'Drag' 3 | hidden: true 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/drag/docs/readme.zh_CN.md: -------------------------------------------------------------------------------- 1 | --- 2 | label: 'Drag 拖动' 3 | hidden: true 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/drag/drag.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/drag/drag.directive.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/drag/drag.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/drag/drag.module.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/drag/drag.property.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/drag/drag.property.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/drag/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/drag/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/drag/ng-package.json -------------------------------------------------------------------------------- /lib/ng-nest/ui/drag/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/drag/public-api.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/drawer/drawer-ref.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/drawer/drawer-ref.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/drawer/drawer.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/drawer/drawer.module.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/drawer/examples/en_US/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'Base' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/drawer/examples/en_US/default/title/title.component.scss: -------------------------------------------------------------------------------- 1 | :host { 2 | } 3 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/drawer/examples/zh_CN/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '基础用法' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/drawer/examples/zh_CN/default/title/title.component.scss: -------------------------------------------------------------------------------- 1 | :host { 2 | } 3 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/drawer/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/drawer/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/drawer/ng-package.json -------------------------------------------------------------------------------- /lib/ng-nest/ui/drawer/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/drawer/public-api.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/drawer/style/mixin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/drawer/style/mixin.scss -------------------------------------------------------------------------------- /lib/ng-nest/ui/drawer/style/param.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/drawer/style/param.scss -------------------------------------------------------------------------------- /lib/ng-nest/ui/dropdown/examples/en_US/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'Base' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/dropdown/examples/zh_CN/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '基础用法' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/dropdown/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/dropdown/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/dropdown/public-api.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/empty/empty.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/empty/empty.module.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/empty/empty.property.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/empty/empty.property.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/empty/examples/en_US/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'Base' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/empty/examples/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/empty/examples/index.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/empty/examples/zh_CN/default/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '基础用法' 4 | --- 5 | 6 | 默认样式。 7 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/empty/examples/zh_CN/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '基础用法' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/empty/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/empty/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/empty/ng-package.json -------------------------------------------------------------------------------- /lib/ng-nest/ui/empty/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/empty/public-api.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/empty/style/mixin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/empty/style/mixin.scss -------------------------------------------------------------------------------- /lib/ng-nest/ui/empty/style/param.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/empty/style/param.scss -------------------------------------------------------------------------------- /lib/ng-nest/ui/examples/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/examples/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/examples/public-api.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/find/examples/en_US/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'Base' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/find/examples/en_US/default/tree-table/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 3 3 | label: 'Tree table' 4 | --- 5 | 6 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/find/examples/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/find/examples/index.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/find/examples/zh_CN/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '默认' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/find/examples/zh_CN/default/tree-table/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 3 3 | label: '树加表格选择' 4 | --- 5 | 6 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/find/find.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/find/find.component.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/find/find.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/find/find.module.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/find/find.property.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/find/find.property.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/find/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/find/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/find/ng-package.json -------------------------------------------------------------------------------- /lib/ng-nest/ui/find/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/find/public-api.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/find/style/mixin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/find/style/mixin.scss -------------------------------------------------------------------------------- /lib/ng-nest/ui/find/style/param.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/find/style/param.scss -------------------------------------------------------------------------------- /lib/ng-nest/ui/form/examples/en_US/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | title: 'defalut' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/form/examples/en_US/default/title/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 3 3 | label: 'No title' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/form/examples/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/form/examples/index.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/form/examples/zh_CN/default/label-row/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 2 3 | label: '标签位置' 4 | --- 5 | 6 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/form/examples/zh_CN/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | title: '默认' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/form/examples/zh_CN/default/title/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 3 3 | label: '不要标题' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/form/form.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/form/form.component.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/form/form.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/form/form.module.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/form/form.property.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/form/form.property.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/form/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/form/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/form/ng-package.json -------------------------------------------------------------------------------- /lib/ng-nest/ui/form/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/form/public-api.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/form/style/mixin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/form/style/mixin.scss -------------------------------------------------------------------------------- /lib/ng-nest/ui/form/style/param.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/form/style/param.scss -------------------------------------------------------------------------------- /lib/ng-nest/ui/highlight/examples/en_US/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'HTML' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/highlight/examples/zh_CN/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'HTML' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/highlight/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/highlight/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/highlight/public-api.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/i18n/i18n.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/i18n/i18n.directive.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/i18n/i18n.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/i18n/i18n.module.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/i18n/i18n.pipe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/i18n/i18n.pipe.spec.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/i18n/i18n.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/i18n/i18n.pipe.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/i18n/i18n.property.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/i18n/i18n.property.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/i18n/i18n.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/i18n/i18n.service.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/i18n/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/i18n/languages/ar_EG.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/i18n/languages/ar_EG.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/i18n/languages/bg_BG.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/i18n/languages/bg_BG.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/i18n/languages/ca_ES.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/i18n/languages/ca_ES.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/i18n/languages/cs_CZ.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/i18n/languages/cs_CZ.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/i18n/languages/da_DK.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/i18n/languages/da_DK.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/i18n/languages/de_DE.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/i18n/languages/de_DE.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/i18n/languages/el_GR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/i18n/languages/el_GR.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/i18n/languages/en_GB.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/i18n/languages/en_GB.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/i18n/languages/en_US.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/i18n/languages/en_US.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/i18n/languages/es_ES.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/i18n/languages/es_ES.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/i18n/languages/et_EE.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/i18n/languages/et_EE.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/i18n/languages/fa_IR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/i18n/languages/fa_IR.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/i18n/languages/fi_FI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/i18n/languages/fi_FI.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/i18n/languages/fr_BE.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/i18n/languages/fr_BE.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/i18n/languages/fr_FR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/i18n/languages/fr_FR.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/i18n/languages/he_IL.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/i18n/languages/he_IL.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/i18n/languages/hi_IN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/i18n/languages/hi_IN.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/i18n/languages/hr_HR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/i18n/languages/hr_HR.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/i18n/languages/hu_HU.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/i18n/languages/hu_HU.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/i18n/languages/hy_AM.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/i18n/languages/hy_AM.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/i18n/languages/id_ID.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/i18n/languages/id_ID.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/i18n/languages/is_IS.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/i18n/languages/is_IS.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/i18n/languages/it_IT.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/i18n/languages/it_IT.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/i18n/languages/ja_JP.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/i18n/languages/ja_JP.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/i18n/languages/ka_GE.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/i18n/languages/ka_GE.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/i18n/languages/kn_IN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/i18n/languages/kn_IN.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/i18n/languages/ko_KR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/i18n/languages/ko_KR.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/i18n/languages/ku_IQ.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/i18n/languages/ku_IQ.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/i18n/languages/lv_LV.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/i18n/languages/lv_LV.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/i18n/languages/mn_MN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/i18n/languages/mn_MN.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/i18n/languages/ms_MY.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/i18n/languages/ms_MY.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/i18n/languages/nb_NO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/i18n/languages/nb_NO.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/i18n/languages/ne_NP.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/i18n/languages/ne_NP.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/i18n/languages/nl_BE.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/i18n/languages/nl_BE.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/i18n/languages/nl_NL.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/i18n/languages/nl_NL.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/i18n/languages/pl_PL.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/i18n/languages/pl_PL.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/i18n/languages/pt_BR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/i18n/languages/pt_BR.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/i18n/languages/pt_PT.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/i18n/languages/pt_PT.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/i18n/languages/ro_RO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/i18n/languages/ro_RO.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/i18n/languages/ru_RU.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/i18n/languages/ru_RU.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/i18n/languages/sk_SK.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/i18n/languages/sk_SK.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/i18n/languages/sl_SI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/i18n/languages/sl_SI.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/i18n/languages/sr_RS.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/i18n/languages/sr_RS.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/i18n/languages/sv_SE.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/i18n/languages/sv_SE.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/i18n/languages/ta_IN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/i18n/languages/ta_IN.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/i18n/languages/th_TH.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/i18n/languages/th_TH.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/i18n/languages/tr_TR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/i18n/languages/tr_TR.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/i18n/languages/uk_UA.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/i18n/languages/uk_UA.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/i18n/languages/vi_VN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/i18n/languages/vi_VN.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/i18n/languages/zh_CN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/i18n/languages/zh_CN.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/i18n/languages/zh_TW.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/i18n/languages/zh_TW.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/i18n/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/i18n/ng-package.json -------------------------------------------------------------------------------- /lib/ng-nest/ui/i18n/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/i18n/public-api.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/icon/examples/en_US/default/custom/custom.component.scss: -------------------------------------------------------------------------------- 1 | :host { 2 | font-size: 2em; 3 | } 4 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/icon/examples/en_US/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'HTML' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/icon/examples/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/icon/examples/index.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/icon/examples/zh_CN/default/custom/custom.component.scss: -------------------------------------------------------------------------------- 1 | :host { 2 | font-size: 2em; 3 | } 4 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/icon/examples/zh_CN/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'HTML' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/icon/icon.component.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/icon/icon.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/icon/icon.component.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/icon/icon.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/icon/icon.module.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/icon/icon.property.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/icon/icon.property.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/icon/icon.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/icon/icon.service.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/icon/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/icon/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/icon/ng-package.json -------------------------------------------------------------------------------- /lib/ng-nest/ui/icon/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/icon/public-api.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/icon/style/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/icon/style/index.scss -------------------------------------------------------------------------------- /lib/ng-nest/ui/icon/style/mixin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/icon/style/mixin.scss -------------------------------------------------------------------------------- /lib/ng-nest/ui/icon/style/param.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/icon/style/param.scss -------------------------------------------------------------------------------- /lib/ng-nest/ui/image/examples/en_US/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'Base' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/image/examples/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/image/examples/index.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/image/examples/zh_CN/default/custom/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 5 3 | label: '弹框' 4 | --- 5 | 6 | 使用方法弹出预览界面。 7 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/image/examples/zh_CN/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '基础用法' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/image/image.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/image/image.module.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/image/image.property.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/image/image.property.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/image/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/image/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/image/ng-package.json -------------------------------------------------------------------------------- /lib/ng-nest/ui/image/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/image/public-api.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/image/style/mixin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/image/style/mixin.scss -------------------------------------------------------------------------------- /lib/ng-nest/ui/image/style/param.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/image/style/param.scss -------------------------------------------------------------------------------- /lib/ng-nest/ui/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/index.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/inner/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/inner/inner.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/inner/inner.module.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/inner/inner.property.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/inner/inner.property.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/inner/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/inner/ng-package.json -------------------------------------------------------------------------------- /lib/ng-nest/ui/inner/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/inner/public-api.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/inner/style/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/inner/style/index.scss -------------------------------------------------------------------------------- /lib/ng-nest/ui/input-number/examples/en_US/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'defalut' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/input-number/examples/zh_CN/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '默认' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/input-number/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/input/examples/en_US/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'defalut' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/input/examples/zh_CN/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '默认' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/input/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/input/input.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/input/input.module.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/input/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/input/ng-package.json -------------------------------------------------------------------------------- /lib/ng-nest/ui/input/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/input/public-api.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/karma.conf.js -------------------------------------------------------------------------------- /lib/ng-nest/ui/keyword/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/keyword/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/keyword/public-api.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/layout/examples/en_US/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'Base' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/layout/examples/zh_CN/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '基础布局' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/layout/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/layout/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/layout/public-api.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/link/examples/en_US/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'Base' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/link/examples/zh_CN/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '基础用法' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/link/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/link/link.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/link/link.module.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/link/link.property.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/link/link.property.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/link/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/link/ng-package.json -------------------------------------------------------------------------------- /lib/ng-nest/ui/link/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/link/public-api.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/link/style/mixin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/link/style/mixin.scss -------------------------------------------------------------------------------- /lib/ng-nest/ui/link/style/param.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/link/style/param.scss -------------------------------------------------------------------------------- /lib/ng-nest/ui/list/examples/en_US/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'defalut' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/list/examples/zh_CN/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '默认' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/list/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/list/list.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/list/list.module.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/list/list.property.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/list/list.property.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/list/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/list/ng-package.json -------------------------------------------------------------------------------- /lib/ng-nest/ui/list/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/list/public-api.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/list/style/mixin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/list/style/mixin.scss -------------------------------------------------------------------------------- /lib/ng-nest/ui/list/style/param.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/list/style/param.scss -------------------------------------------------------------------------------- /lib/ng-nest/ui/loading/examples/en_US/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'Base' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/loading/examples/zh_CN/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '基础用法' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/loading/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/loading/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/loading/public-api.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/menu/examples/en_US/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'Base' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/menu/examples/zh_CN/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '基本用法' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/menu/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/menu/menu.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/menu/menu.module.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/menu/menu.property.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/menu/menu.property.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/menu/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/menu/ng-package.json -------------------------------------------------------------------------------- /lib/ng-nest/ui/menu/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/menu/public-api.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/menu/style/mixin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/menu/style/mixin.scss -------------------------------------------------------------------------------- /lib/ng-nest/ui/menu/style/param.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/menu/style/param.scss -------------------------------------------------------------------------------- /lib/ng-nest/ui/message-box/examples/en_US/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'Base' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/message-box/examples/zh_CN/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '基础用法' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/message-box/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/message/examples/en_US/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'Base' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/message/examples/zh_CN/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '基础用法' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/message/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/message/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/message/public-api.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/message/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/message/readme.md -------------------------------------------------------------------------------- /lib/ng-nest/ui/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/ng-package.json -------------------------------------------------------------------------------- /lib/ng-nest/ui/notification/examples/en_US/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'Base' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/notification/examples/zh_CN/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '基础用法' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/notification/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/outlet/examples/en_US/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'Base' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/outlet/examples/zh_CN/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '基础用法' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/outlet/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/outlet/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/outlet/public-api.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/package.json -------------------------------------------------------------------------------- /lib/ng-nest/ui/page-header/examples/en_US/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'Base' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/page-header/examples/zh_CN/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '基础用法' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/page-header/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/pagination/examples/en_US/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'defalut' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/pagination/examples/zh_CN/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '默认' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/pagination/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/pattern/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/pattern/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/pattern/public-api.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/popconfirm/examples/en_US/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'Base' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/popconfirm/examples/zh_CN/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '基础用法' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/popconfirm/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/popover/examples/en_US/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'Base' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/popover/examples/zh_CN/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '基础用法' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/popover/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/popover/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/popover/public-api.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/portal/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/portal/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/portal/public-api.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/progress/examples/en_US/default/circle/circle.component.scss: -------------------------------------------------------------------------------- 1 | :host { 2 | } 3 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/progress/examples/en_US/default/dashboard/dashboard.component.scss: -------------------------------------------------------------------------------- 1 | :host { 2 | } 3 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/progress/examples/en_US/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'Base' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/progress/examples/zh_CN/default/circle/circle.component.scss: -------------------------------------------------------------------------------- 1 | :host { 2 | } 3 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/progress/examples/zh_CN/default/dashboard/dashboard.component.scss: -------------------------------------------------------------------------------- 1 | :host { 2 | } 3 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/progress/examples/zh_CN/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '基础用法' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/progress/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/prompts/examples/en_US/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'Base' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/prompts/examples/zh_CN/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '基础用法' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/prompts/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/prompts/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/prompts/public-api.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/radio/examples/en_US/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'Base' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/radio/examples/zh_CN/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '基础用法' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/radio/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/radio/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/radio/ng-package.json -------------------------------------------------------------------------------- /lib/ng-nest/ui/radio/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/radio/public-api.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/radio/radio.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/radio/radio.module.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/rate/examples/en_US/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'Base' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/rate/examples/zh_CN/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '基础用法' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/rate/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/rate/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/rate/ng-package.json -------------------------------------------------------------------------------- /lib/ng-nest/ui/rate/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/rate/public-api.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/rate/rate.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/rate/rate.module.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/rate/rate.property.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/rate/rate.property.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/rate/style/mixin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/rate/style/mixin.scss -------------------------------------------------------------------------------- /lib/ng-nest/ui/rate/style/param.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/rate/style/param.scss -------------------------------------------------------------------------------- /lib/ng-nest/ui/resizable/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/result/examples/en_US/default/error/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 4 3 | label: 'error' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/result/examples/en_US/default/icon/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'Icon' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/result/examples/en_US/default/img/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 2 3 | label: 'Image' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/result/examples/en_US/default/info/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 2 3 | label: 'Info' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/result/examples/en_US/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'Base' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/result/examples/en_US/default/result403/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 5 3 | label: '403' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/result/examples/en_US/default/result404/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 6 3 | label: '404' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/result/examples/en_US/default/result500/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 7 3 | label: '500' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/result/examples/en_US/default/success/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'Success' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/result/examples/en_US/default/warning/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 3 3 | label: 'Warning' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/result/examples/zh_CN/default/error/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 4 3 | label: 'error' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/result/examples/zh_CN/default/icon/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '图标' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/result/examples/zh_CN/default/img/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 2 3 | label: '图片' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/result/examples/zh_CN/default/info/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 2 3 | label: 'info' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/result/examples/zh_CN/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '基础用法' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/result/examples/zh_CN/default/result403/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 5 3 | label: '403' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/result/examples/zh_CN/default/result404/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 6 3 | label: '404' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/result/examples/zh_CN/default/result500/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 7 3 | label: '500' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/result/examples/zh_CN/default/success/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'success' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/result/examples/zh_CN/default/warning/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 3 3 | label: 'warning' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/result/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/result/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/result/public-api.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/ripple/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/ripple/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/ripple/public-api.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/scrollable/examples/en_US/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '基础用法' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/scrollable/examples/zh_CN/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '基础用法' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/scrollable/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/select/examples/en_US/default/async/async.component.scss: -------------------------------------------------------------------------------- 1 | :host { 2 | } 3 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/select/examples/en_US/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'defalut' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/select/examples/zh_CN/default/async/async.component.scss: -------------------------------------------------------------------------------- 1 | :host { 2 | } 3 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/select/examples/zh_CN/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '默认' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/select/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/select/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/select/public-api.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/sender/examples/en_US/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '基础用法' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/sender/examples/zh_CN/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '基础用法' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/sender/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/sender/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/sender/public-api.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/skeleton/examples/en_US/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'Base' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/skeleton/examples/zh_CN/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '基础用法' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/skeleton/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/slider-select/examples/en_US/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'defalut' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/slider-select/examples/zh_CN/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '默认' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/slider-select/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/slider/examples/en_US/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'Base' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/slider/examples/zh_CN/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '基础用法' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/slider/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/slider/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/slider/public-api.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/statistic/countdown.component.scss: -------------------------------------------------------------------------------- 1 | x-countdown { 2 | display: inline-block; 3 | } 4 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/statistic/examples/en_US/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'Base' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/statistic/examples/zh_CN/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '基础用法' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/statistic/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/steps/examples/en_US/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'Base' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/steps/examples/zh_CN/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '基础用法' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/steps/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/steps/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/steps/ng-package.json -------------------------------------------------------------------------------- /lib/ng-nest/ui/steps/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/steps/public-api.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/steps/steps.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/steps/steps.module.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/style/core/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/style/core/index.scss -------------------------------------------------------------------------------- /lib/ng-nest/ui/style/mixins/function.scss: -------------------------------------------------------------------------------- 1 | // Function 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/suggestion/examples/en_US/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'Base' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/suggestion/examples/zh_CN/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '基础用法' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/suggestion/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/switch/examples/en_US/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'default' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/switch/examples/zh_CN/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '默认' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/switch/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/switch/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/switch/public-api.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/table-view/cell.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/table-view/cell.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/table-view/examples/zh_CN/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '基础用法' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/table-view/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/table-view/row.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/table-view/row.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/table/examples/en_US/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'Base' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/table/examples/zh_CN/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '基础用法' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/table/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/table/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/table/ng-package.json -------------------------------------------------------------------------------- /lib/ng-nest/ui/table/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/table/public-api.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/table/table.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/table/table.module.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/tabs/examples/en_US/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'Base' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/tabs/examples/zh_CN/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '基础用法' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/tabs/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/tabs/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/tabs/ng-package.json -------------------------------------------------------------------------------- /lib/ng-nest/ui/tabs/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/tabs/public-api.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/tabs/style/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/tabs/style/index.scss -------------------------------------------------------------------------------- /lib/ng-nest/ui/tabs/style/mixin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/tabs/style/mixin.scss -------------------------------------------------------------------------------- /lib/ng-nest/ui/tabs/style/param.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/tabs/style/param.scss -------------------------------------------------------------------------------- /lib/ng-nest/ui/tabs/tab.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/tabs/tab.component.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/tabs/tabs.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/tabs/tabs.module.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/tabs/tabs.property.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/tabs/tabs.property.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/tag/examples/en_US/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'Base' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/tag/examples/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/tag/examples/index.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/tag/examples/zh_CN/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '基础用法' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/tag/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/tag/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/tag/ng-package.json -------------------------------------------------------------------------------- /lib/ng-nest/ui/tag/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/tag/public-api.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/tag/style/mixin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/tag/style/mixin.scss -------------------------------------------------------------------------------- /lib/ng-nest/ui/tag/style/param.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/tag/style/param.scss -------------------------------------------------------------------------------- /lib/ng-nest/ui/tag/tag.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/tag/tag.component.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/tag/tag.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/tag/tag.module.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/tag/tag.property.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/tag/tag.property.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/text-retract/examples/en_US/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'Base' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/text-retract/examples/zh_CN/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '基础用法' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/text-retract/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/textarea/examples/en_US/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'defalut' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/textarea/examples/zh_CN/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '默认' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/textarea/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/theme/examples/en_US/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '主色' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/theme/examples/zh_CN/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '主色' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/theme/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/theme/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/theme/ng-package.json -------------------------------------------------------------------------------- /lib/ng-nest/ui/theme/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/theme/public-api.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/theme/theme.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/theme/theme.module.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/thought-chain/examples/en_US/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'Base' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/thought-chain/examples/zh_CN/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '基础用法' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/thought-chain/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/time-ago/examples/en_US/default/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'Base' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/time-ago/examples/en_US/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'Base' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/time-ago/examples/zh_CN/default/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '基础用法' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/time-ago/examples/zh_CN/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '基础用法' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/time-ago/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/time-picker/examples/en_US/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'defalut' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/time-picker/examples/zh_CN/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '默认' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/time-picker/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/time-range/examples/en_US/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'Base' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/time-range/examples/zh_CN/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '基础用法' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/time-range/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/timeline/examples/en_US/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'Base' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/timeline/examples/zh_CN/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '基础用法' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/timeline/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/tooltip/examples/en_US/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'Base' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/tooltip/examples/zh_CN/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '基础用法' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/tooltip/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/tooltip/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/tooltip/public-api.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/transfer/examples/en_US/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'Base' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/transfer/examples/zh_CN/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '基础用法' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/transfer/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/tree-file/examples/en_US/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'Base' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/tree-file/examples/zh_CN/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '基础用法' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/tree-file/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/tree-select/examples/en_US/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'default' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/tree-select/examples/zh_CN/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '默认' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/tree-select/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/tree/examples/en_US/default/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'Base' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/tree/examples/en_US/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'Base' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/tree/examples/zh_CN/default/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '基础用法' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/tree/examples/zh_CN/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '基础用法' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/tree/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/tree/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/tree/ng-package.json -------------------------------------------------------------------------------- /lib/ng-nest/ui/tree/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/tree/public-api.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/tree/style/mixin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/tree/style/mixin.scss -------------------------------------------------------------------------------- /lib/ng-nest/ui/tree/style/param.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/tree/style/param.scss -------------------------------------------------------------------------------- /lib/ng-nest/ui/tree/tree.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/tree/tree.module.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/tree/tree.property.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/tree/tree.property.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/tree/tree.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/tree/tree.service.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/tsconfig.json -------------------------------------------------------------------------------- /lib/ng-nest/ui/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/tsconfig.lib.json -------------------------------------------------------------------------------- /lib/ng-nest/ui/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/tsconfig.spec.json -------------------------------------------------------------------------------- /lib/ng-nest/ui/typography/examples/en_US/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'Font' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/typography/examples/zh_CN/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '字体' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/typography/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/upload/examples/en_US/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'Base' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/upload/examples/zh_CN/default/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '基础用法' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/upload/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/upload/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/upload/public-api.ts -------------------------------------------------------------------------------- /lib/ng-nest/ui/welcome/examples/en_US/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: 'Base' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/welcome/examples/zh_CN/readme.md: -------------------------------------------------------------------------------- 1 | --- 2 | order: 1 3 | label: '基础用法' 4 | --- 5 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/welcome/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /lib/ng-nest/ui/welcome/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/lib/ng-nest/ui/welcome/public-api.ts -------------------------------------------------------------------------------- /ngsw-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/ngsw-config.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/fonts/dm-mono.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/public/fonts/dm-mono.woff2 -------------------------------------------------------------------------------- /public/fonts/inter.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/public/fonts/inter.woff2 -------------------------------------------------------------------------------- /public/i18n/en_US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/public/i18n/en_US.json -------------------------------------------------------------------------------- /public/i18n/zh_CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/public/i18n/zh_CN.json -------------------------------------------------------------------------------- /public/img/admin/ng-nest-admin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/public/img/admin/ng-nest-admin.gif -------------------------------------------------------------------------------- /public/img/clouds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/public/img/clouds.png -------------------------------------------------------------------------------- /public/img/logo/logo-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/public/img/logo/logo-128x128.png -------------------------------------------------------------------------------- /public/img/logo/logo-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/public/img/logo/logo-144x144.png -------------------------------------------------------------------------------- /public/img/logo/logo-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/public/img/logo/logo-152x152.png -------------------------------------------------------------------------------- /public/img/logo/logo-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/public/img/logo/logo-16x16.png -------------------------------------------------------------------------------- /public/img/logo/logo-194x194.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/public/img/logo/logo-194x194.png -------------------------------------------------------------------------------- /public/img/logo/logo-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/public/img/logo/logo-32x32.png -------------------------------------------------------------------------------- /public/img/logo/logo-384x384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/public/img/logo/logo-384x384.png -------------------------------------------------------------------------------- /public/img/logo/logo-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/public/img/logo/logo-48x48.png -------------------------------------------------------------------------------- /public/img/logo/logo-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/public/img/logo/logo-512x512.png -------------------------------------------------------------------------------- /public/img/logo/logo-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/public/img/logo/logo-72x72.png -------------------------------------------------------------------------------- /public/img/logo/logo-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/public/img/logo/logo-96x96.png -------------------------------------------------------------------------------- /public/img/module.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/public/img/module.png -------------------------------------------------------------------------------- /public/img/ng-nest-ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/public/img/ng-nest-ai.png -------------------------------------------------------------------------------- /public/img/stars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/public/img/stars.png -------------------------------------------------------------------------------- /public/img/tim.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/public/img/tim.jpg -------------------------------------------------------------------------------- /public/img/twinkling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/public/img/twinkling.png -------------------------------------------------------------------------------- /public/img/weixin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/public/img/weixin.jpg -------------------------------------------------------------------------------- /public/js/baidu-stat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/public/js/baidu-stat.js -------------------------------------------------------------------------------- /public/manifest.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/public/manifest.webmanifest -------------------------------------------------------------------------------- /public/styles/prism.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/svg/car.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/public/svg/car.svg -------------------------------------------------------------------------------- /public/svg/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/public/svg/home.svg -------------------------------------------------------------------------------- /public/svg/weather.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/public/svg/weather.svg -------------------------------------------------------------------------------- /scripts/main/generate/docs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/scripts/main/generate/docs/index.ts -------------------------------------------------------------------------------- /scripts/main/interfaces/core.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/scripts/main/interfaces/core.ts -------------------------------------------------------------------------------- /scripts/main/interfaces/demo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/scripts/main/interfaces/demo.ts -------------------------------------------------------------------------------- /scripts/main/interfaces/examples.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/scripts/main/interfaces/examples.ts -------------------------------------------------------------------------------- /scripts/main/interfaces/menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/scripts/main/interfaces/menu.ts -------------------------------------------------------------------------------- /scripts/main/interfaces/module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/scripts/main/interfaces/module.ts -------------------------------------------------------------------------------- /scripts/main/interfaces/page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/scripts/main/interfaces/page.ts -------------------------------------------------------------------------------- /scripts/main/interfaces/pattern.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/scripts/main/interfaces/pattern.ts -------------------------------------------------------------------------------- /scripts/main/interfaces/prop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/scripts/main/interfaces/prop.ts -------------------------------------------------------------------------------- /scripts/main/interfaces/spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/scripts/main/interfaces/spec.ts -------------------------------------------------------------------------------- /scripts/main/interfaces/tabs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/scripts/main/interfaces/tabs.ts -------------------------------------------------------------------------------- /scripts/main/interfaces/template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/scripts/main/interfaces/template.ts -------------------------------------------------------------------------------- /scripts/main/interfaces/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/scripts/main/interfaces/type.ts -------------------------------------------------------------------------------- /scripts/main/templates/default-component.template.html: -------------------------------------------------------------------------------- 1 | {{ __name }} 2 | -------------------------------------------------------------------------------- /scripts/main/utils/check-mkdir.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/scripts/main/utils/check-mkdir.ts -------------------------------------------------------------------------------- /scripts/main/utils/copy-dir.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/scripts/main/utils/copy-dir.ts -------------------------------------------------------------------------------- /scripts/main/utils/generate-cates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/scripts/main/utils/generate-cates.ts -------------------------------------------------------------------------------- /scripts/main/utils/generate-core.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/scripts/main/utils/generate-core.ts -------------------------------------------------------------------------------- /scripts/main/utils/generate-menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/scripts/main/utils/generate-menu.ts -------------------------------------------------------------------------------- /scripts/main/utils/generate-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/scripts/main/utils/generate-page.ts -------------------------------------------------------------------------------- /scripts/main/utils/generate-prop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/scripts/main/utils/generate-prop.ts -------------------------------------------------------------------------------- /scripts/main/utils/generate-tabs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/scripts/main/utils/generate-tabs.ts -------------------------------------------------------------------------------- /scripts/main/utils/handler-cates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/scripts/main/utils/handler-cates.ts -------------------------------------------------------------------------------- /scripts/main/utils/handler-core.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/scripts/main/utils/handler-core.ts -------------------------------------------------------------------------------- /scripts/main/utils/handler-demo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/scripts/main/utils/handler-demo.ts -------------------------------------------------------------------------------- /scripts/main/utils/handler-module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/scripts/main/utils/handler-module.ts -------------------------------------------------------------------------------- /scripts/main/utils/handler-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/scripts/main/utils/handler-page.ts -------------------------------------------------------------------------------- /scripts/main/utils/handler-prop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/scripts/main/utils/handler-prop.ts -------------------------------------------------------------------------------- /scripts/main/utils/handler-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/scripts/main/utils/handler-spec.ts -------------------------------------------------------------------------------- /scripts/main/utils/handler-tabs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/scripts/main/utils/handler-tabs.ts -------------------------------------------------------------------------------- /scripts/main/utils/has-in.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/scripts/main/utils/has-in.ts -------------------------------------------------------------------------------- /scripts/main/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/scripts/main/utils/index.ts -------------------------------------------------------------------------------- /scripts/main/utils/md-split.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/scripts/main/utils/md-split.ts -------------------------------------------------------------------------------- /scripts/main/utils/md-to-html.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/scripts/main/utils/md-to-html.ts -------------------------------------------------------------------------------- /scripts/main/utils/order-by.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/scripts/main/utils/order-by.ts -------------------------------------------------------------------------------- /scripts/main/utils/parse-md-doc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/scripts/main/utils/parse-md-doc.ts -------------------------------------------------------------------------------- /scripts/main/utils/random-string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/scripts/main/utils/random-string.ts -------------------------------------------------------------------------------- /scripts/main/utils/replace-key.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/scripts/main/utils/replace-key.ts -------------------------------------------------------------------------------- /scripts/main/utils/themes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/scripts/main/utils/themes.ts -------------------------------------------------------------------------------- /scripts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/scripts/tsconfig.json -------------------------------------------------------------------------------- /server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/server.ts -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/src/app/app.component.scss -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.config.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/src/app/app.config.server.ts -------------------------------------------------------------------------------- /src/app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/src/app/app.config.ts -------------------------------------------------------------------------------- /src/app/app.initializer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/src/app/app.initializer.ts -------------------------------------------------------------------------------- /src/app/app.menus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/src/app/app.menus.ts -------------------------------------------------------------------------------- /src/app/app.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/src/app/app.routes.ts -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/environments/index.ts: -------------------------------------------------------------------------------- 1 | export * from './environment'; 2 | -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/src/index.html -------------------------------------------------------------------------------- /src/interfaces/core.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/src/interfaces/core.interface.ts -------------------------------------------------------------------------------- /src/interfaces/en_US-docs.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/src/interfaces/en_US-docs.types.ts -------------------------------------------------------------------------------- /src/interfaces/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/src/interfaces/index.ts -------------------------------------------------------------------------------- /src/interfaces/menu.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/src/interfaces/menu.interface.ts -------------------------------------------------------------------------------- /src/interfaces/zh_CN-docs.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/src/interfaces/zh_CN-docs.types.ts -------------------------------------------------------------------------------- /src/main.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/src/main.server.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/main/api/api-routes.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/src/main/api/api-routes.module.ts -------------------------------------------------------------------------------- /src/main/api/api.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/src/main/api/api.component.html -------------------------------------------------------------------------------- /src/main/api/api.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/src/main/api/api.component.scss -------------------------------------------------------------------------------- /src/main/api/api.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/src/main/api/api.component.ts -------------------------------------------------------------------------------- /src/main/demo/demo-routes.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/src/main/demo/demo-routes.module.ts -------------------------------------------------------------------------------- /src/main/demo/demo.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/src/main/demo/demo.component.html -------------------------------------------------------------------------------- /src/main/demo/demo.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/src/main/demo/demo.component.scss -------------------------------------------------------------------------------- /src/main/demo/demo.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/src/main/demo/demo.component.ts -------------------------------------------------------------------------------- /src/main/docs/docs-routes.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/src/main/docs/docs-routes.module.ts -------------------------------------------------------------------------------- /src/main/docs/docs.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/src/main/docs/docs.component.html -------------------------------------------------------------------------------- /src/main/docs/docs.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/src/main/docs/docs.component.scss -------------------------------------------------------------------------------- /src/main/docs/docs.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/src/main/docs/docs.component.ts -------------------------------------------------------------------------------- /src/main/exception/404.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/src/main/exception/404.component.ts -------------------------------------------------------------------------------- /src/main/home/home-routes.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/src/main/home/home-routes.module.ts -------------------------------------------------------------------------------- /src/main/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/src/main/home/home.component.html -------------------------------------------------------------------------------- /src/main/home/home.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/src/main/home/home.component.scss -------------------------------------------------------------------------------- /src/main/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/src/main/home/home.component.ts -------------------------------------------------------------------------------- /src/main/layout/layout.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/src/main/layout/layout.component.ts -------------------------------------------------------------------------------- /src/main/layout/layout.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/src/main/layout/layout.service.ts -------------------------------------------------------------------------------- /src/main/layout/nav/nav.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/src/main/layout/nav/nav.component.ts -------------------------------------------------------------------------------- /src/main/news/news-routes.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/src/main/news/news-routes.module.ts -------------------------------------------------------------------------------- /src/main/news/news.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/src/main/news/news.component.html -------------------------------------------------------------------------------- /src/main/news/news.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/src/main/news/news.component.ts -------------------------------------------------------------------------------- /src/main/test/card/card.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/src/main/test/card/card.component.ts -------------------------------------------------------------------------------- /src/main/test/find/find.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/src/main/test/find/find.component.ts -------------------------------------------------------------------------------- /src/main/test/form/form.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/src/main/test/form/form.component.ts -------------------------------------------------------------------------------- /src/main/test/icon/icon.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/src/main/test/icon/icon.component.ts -------------------------------------------------------------------------------- /src/main/test/link/link.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/src/main/test/link/link.component.ts -------------------------------------------------------------------------------- /src/main/test/list/list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/src/main/test/list/list.component.ts -------------------------------------------------------------------------------- /src/main/test/menu/menu.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/src/main/test/menu/menu.component.ts -------------------------------------------------------------------------------- /src/main/test/rate/rate.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/src/main/test/rate/rate.component.ts -------------------------------------------------------------------------------- /src/main/test/tabs/tabs.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/src/main/test/tabs/tabs.component.ts -------------------------------------------------------------------------------- /src/main/test/tag/tag.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/src/main/test/tag/tag.component.html -------------------------------------------------------------------------------- /src/main/test/tag/tag.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/src/main/test/tag/tag.component.ts -------------------------------------------------------------------------------- /src/main/test/test-routes.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/src/main/test/test-routes.module.ts -------------------------------------------------------------------------------- /src/main/test/test.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/src/main/test/test.component.html -------------------------------------------------------------------------------- /src/main/test/test.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/src/main/test/test.component.scss -------------------------------------------------------------------------------- /src/main/test/test.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/src/main/test/test.component.ts -------------------------------------------------------------------------------- /src/main/test/tree/tree.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/src/main/test/tree/tree.component.ts -------------------------------------------------------------------------------- /src/services/config.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/src/services/config.service.ts -------------------------------------------------------------------------------- /src/services/icon.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/src/services/icon.service.ts -------------------------------------------------------------------------------- /src/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/src/services/index.ts -------------------------------------------------------------------------------- /src/services/prism.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/src/services/prism.service.ts -------------------------------------------------------------------------------- /src/services/types.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/src/services/types.service.ts -------------------------------------------------------------------------------- /src/share/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/src/share/index.ts -------------------------------------------------------------------------------- /src/share/md-to-html.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/src/share/md-to-html.pipe.ts -------------------------------------------------------------------------------- /src/share/share.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/src/share/share.module.ts -------------------------------------------------------------------------------- /src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/src/styles.scss -------------------------------------------------------------------------------- /src/styles/default.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/src/styles/default.scss -------------------------------------------------------------------------------- /src/styles/mixin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/src/styles/mixin.scss -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- 1 | export * from './strings'; 2 | -------------------------------------------------------------------------------- /src/utils/strings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/src/utils/strings.ts -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NG-NEST/ng-nest/HEAD/tsconfig.spec.json --------------------------------------------------------------------------------