├── .editorconfig ├── .eslintrc ├── .gitignore ├── .prettierrc.js ├── CHANGELOG.md ├── LICENSE ├── README.md ├── docs ├── app │ ├── app.css │ ├── app.js │ ├── common.css │ └── common.js ├── index.html ├── modules │ └── demo1 │ │ ├── app.css │ │ └── app.js └── static │ ├── css │ └── vendor.css │ ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── fontawesome-webfont.woff2 │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 │ ├── img │ ├── avatar.png │ ├── avatar04.png │ ├── avatar2.png │ ├── avatar3.png │ ├── avatar5.png │ ├── boxed-bg.jpg │ ├── boxed-bg.png │ ├── credit │ │ ├── american-express.png │ │ ├── cirrus.png │ │ ├── mastercard.png │ │ ├── mestro.png │ │ ├── paypal.png │ │ ├── paypal2.png │ │ └── visa.png │ ├── default-50x50.gif │ ├── icons.png │ ├── photo1.png │ ├── photo2.png │ ├── photo3.jpg │ ├── photo4.jpg │ ├── user1-128x128.jpg │ ├── user2-160x160.jpg │ ├── user3-128x128.jpg │ ├── user4-128x128.jpg │ ├── user5-128x128.jpg │ ├── user6-128x128.jpg │ ├── user7-128x128.jpg │ └── user8-128x128.jpg │ └── js │ └── vendor.js ├── index.html ├── modules └── demo1 │ ├── app-aot.ts │ ├── app.module.ts │ ├── app.routing.ts │ ├── app.ts │ ├── index-aot.ts │ ├── index.ts │ ├── pages │ ├── index.ts │ ├── page1 │ │ ├── page1.component.html │ │ └── page1.component.ts │ └── page2 │ │ ├── page2.component.html │ │ └── page2.component.ts │ └── styl │ └── all.styl ├── package.json ├── src ├── app.module.ts ├── app.routing.ts ├── app.ts ├── common_module │ ├── app.ts │ ├── common.module.ts │ ├── components │ │ └── index.ts │ ├── index.ts │ ├── pipes │ │ └── index.ts │ ├── services │ │ ├── index.ts │ │ └── module-loader.service.ts │ ├── styl │ │ └── all.styl │ └── tsconfig.json ├── components │ ├── index.ts │ ├── menu │ │ ├── menu.component.html │ │ ├── menu.component.styl │ │ └── menu.component.ts │ └── tabset │ │ ├── tab-item.component.html │ │ ├── tab-item.component.ts │ │ ├── tabset.component.html │ │ ├── tabset.component.styl │ │ └── tabset.component.ts ├── config │ ├── config.dev.ts │ └── config.prod.ts ├── index.ts ├── pages │ ├── 404 │ │ └── notfound.component.ts │ ├── app │ │ ├── app.component.html │ │ └── app.component.ts │ ├── home │ │ ├── home.component.html │ │ └── home.component.ts │ ├── index.ts │ ├── layout │ │ ├── layout.component.html │ │ └── layout.component.ts │ ├── login │ │ ├── login.component.html │ │ └── login.component.ts │ └── logout │ │ ├── logout.component.html │ │ └── logout.component.ts ├── pipes │ └── index.ts ├── services │ ├── auth-guard.ts │ ├── index.ts │ └── menu.service.ts └── styl │ ├── all.styl │ ├── layout.styl │ └── vendor-reset.styl ├── tsconfig-aot.json ├── tsconfig.json ├── tslint.json └── types └── typing.d.ts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/README.md -------------------------------------------------------------------------------- /docs/app/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/docs/app/app.css -------------------------------------------------------------------------------- /docs/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/docs/app/app.js -------------------------------------------------------------------------------- /docs/app/common.css: -------------------------------------------------------------------------------- 1 | 2 | 3 | /*# sourceMappingURL=common.css.map*/ -------------------------------------------------------------------------------- /docs/app/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/docs/app/common.js -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/modules/demo1/app.css: -------------------------------------------------------------------------------- 1 | 2 | 3 | /*# sourceMappingURL=app.css.map*/ -------------------------------------------------------------------------------- /docs/modules/demo1/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/docs/modules/demo1/app.js -------------------------------------------------------------------------------- /docs/static/css/vendor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/docs/static/css/vendor.css -------------------------------------------------------------------------------- /docs/static/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/docs/static/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /docs/static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/docs/static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /docs/static/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/docs/static/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /docs/static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/docs/static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /docs/static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/docs/static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /docs/static/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/docs/static/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /docs/static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/docs/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /docs/static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/docs/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /docs/static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/docs/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /docs/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/docs/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /docs/static/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/docs/static/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /docs/static/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/docs/static/img/avatar.png -------------------------------------------------------------------------------- /docs/static/img/avatar04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/docs/static/img/avatar04.png -------------------------------------------------------------------------------- /docs/static/img/avatar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/docs/static/img/avatar2.png -------------------------------------------------------------------------------- /docs/static/img/avatar3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/docs/static/img/avatar3.png -------------------------------------------------------------------------------- /docs/static/img/avatar5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/docs/static/img/avatar5.png -------------------------------------------------------------------------------- /docs/static/img/boxed-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/docs/static/img/boxed-bg.jpg -------------------------------------------------------------------------------- /docs/static/img/boxed-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/docs/static/img/boxed-bg.png -------------------------------------------------------------------------------- /docs/static/img/credit/american-express.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/docs/static/img/credit/american-express.png -------------------------------------------------------------------------------- /docs/static/img/credit/cirrus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/docs/static/img/credit/cirrus.png -------------------------------------------------------------------------------- /docs/static/img/credit/mastercard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/docs/static/img/credit/mastercard.png -------------------------------------------------------------------------------- /docs/static/img/credit/mestro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/docs/static/img/credit/mestro.png -------------------------------------------------------------------------------- /docs/static/img/credit/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/docs/static/img/credit/paypal.png -------------------------------------------------------------------------------- /docs/static/img/credit/paypal2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/docs/static/img/credit/paypal2.png -------------------------------------------------------------------------------- /docs/static/img/credit/visa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/docs/static/img/credit/visa.png -------------------------------------------------------------------------------- /docs/static/img/default-50x50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/docs/static/img/default-50x50.gif -------------------------------------------------------------------------------- /docs/static/img/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/docs/static/img/icons.png -------------------------------------------------------------------------------- /docs/static/img/photo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/docs/static/img/photo1.png -------------------------------------------------------------------------------- /docs/static/img/photo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/docs/static/img/photo2.png -------------------------------------------------------------------------------- /docs/static/img/photo3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/docs/static/img/photo3.jpg -------------------------------------------------------------------------------- /docs/static/img/photo4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/docs/static/img/photo4.jpg -------------------------------------------------------------------------------- /docs/static/img/user1-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/docs/static/img/user1-128x128.jpg -------------------------------------------------------------------------------- /docs/static/img/user2-160x160.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/docs/static/img/user2-160x160.jpg -------------------------------------------------------------------------------- /docs/static/img/user3-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/docs/static/img/user3-128x128.jpg -------------------------------------------------------------------------------- /docs/static/img/user4-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/docs/static/img/user4-128x128.jpg -------------------------------------------------------------------------------- /docs/static/img/user5-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/docs/static/img/user5-128x128.jpg -------------------------------------------------------------------------------- /docs/static/img/user6-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/docs/static/img/user6-128x128.jpg -------------------------------------------------------------------------------- /docs/static/img/user7-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/docs/static/img/user7-128x128.jpg -------------------------------------------------------------------------------- /docs/static/img/user8-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/docs/static/img/user8-128x128.jpg -------------------------------------------------------------------------------- /docs/static/js/vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/docs/static/js/vendor.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/index.html -------------------------------------------------------------------------------- /modules/demo1/app-aot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/modules/demo1/app-aot.ts -------------------------------------------------------------------------------- /modules/demo1/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/modules/demo1/app.module.ts -------------------------------------------------------------------------------- /modules/demo1/app.routing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/modules/demo1/app.routing.ts -------------------------------------------------------------------------------- /modules/demo1/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/modules/demo1/app.ts -------------------------------------------------------------------------------- /modules/demo1/index-aot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/modules/demo1/index-aot.ts -------------------------------------------------------------------------------- /modules/demo1/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/modules/demo1/index.ts -------------------------------------------------------------------------------- /modules/demo1/pages/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/modules/demo1/pages/index.ts -------------------------------------------------------------------------------- /modules/demo1/pages/page1/page1.component.html: -------------------------------------------------------------------------------- 1 |

Demo1 -> Page1

-------------------------------------------------------------------------------- /modules/demo1/pages/page1/page1.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/modules/demo1/pages/page1/page1.component.ts -------------------------------------------------------------------------------- /modules/demo1/pages/page2/page2.component.html: -------------------------------------------------------------------------------- 1 |

Demo1 -> Page2

-------------------------------------------------------------------------------- /modules/demo1/pages/page2/page2.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/modules/demo1/pages/page2/page2.component.ts -------------------------------------------------------------------------------- /modules/demo1/styl/all.styl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/package.json -------------------------------------------------------------------------------- /src/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/src/app.module.ts -------------------------------------------------------------------------------- /src/app.routing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/src/app.routing.ts -------------------------------------------------------------------------------- /src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/src/app.ts -------------------------------------------------------------------------------- /src/common_module/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/src/common_module/app.ts -------------------------------------------------------------------------------- /src/common_module/common.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/src/common_module/common.module.ts -------------------------------------------------------------------------------- /src/common_module/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/src/common_module/components/index.ts -------------------------------------------------------------------------------- /src/common_module/index.ts: -------------------------------------------------------------------------------- 1 | export * from './app'; 2 | -------------------------------------------------------------------------------- /src/common_module/pipes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/src/common_module/pipes/index.ts -------------------------------------------------------------------------------- /src/common_module/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/src/common_module/services/index.ts -------------------------------------------------------------------------------- /src/common_module/services/module-loader.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/src/common_module/services/module-loader.service.ts -------------------------------------------------------------------------------- /src/common_module/styl/all.styl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/common_module/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/src/common_module/tsconfig.json -------------------------------------------------------------------------------- /src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/src/components/index.ts -------------------------------------------------------------------------------- /src/components/menu/menu.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/src/components/menu/menu.component.html -------------------------------------------------------------------------------- /src/components/menu/menu.component.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/src/components/menu/menu.component.styl -------------------------------------------------------------------------------- /src/components/menu/menu.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/src/components/menu/menu.component.ts -------------------------------------------------------------------------------- /src/components/tabset/tab-item.component.html: -------------------------------------------------------------------------------- 1 |
2 |
3 | -------------------------------------------------------------------------------- /src/components/tabset/tab-item.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/src/components/tabset/tab-item.component.ts -------------------------------------------------------------------------------- /src/components/tabset/tabset.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/src/components/tabset/tabset.component.html -------------------------------------------------------------------------------- /src/components/tabset/tabset.component.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/src/components/tabset/tabset.component.styl -------------------------------------------------------------------------------- /src/components/tabset/tabset.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/src/components/tabset/tabset.component.ts -------------------------------------------------------------------------------- /src/config/config.dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/src/config/config.dev.ts -------------------------------------------------------------------------------- /src/config/config.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/src/config/config.prod.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/pages/404/notfound.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/src/pages/404/notfound.component.ts -------------------------------------------------------------------------------- /src/pages/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/src/pages/app/app.component.html -------------------------------------------------------------------------------- /src/pages/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/src/pages/app/app.component.ts -------------------------------------------------------------------------------- /src/pages/home/home.component.html: -------------------------------------------------------------------------------- 1 |
Home Component
-------------------------------------------------------------------------------- /src/pages/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/src/pages/home/home.component.ts -------------------------------------------------------------------------------- /src/pages/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/src/pages/index.ts -------------------------------------------------------------------------------- /src/pages/layout/layout.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/src/pages/layout/layout.component.html -------------------------------------------------------------------------------- /src/pages/layout/layout.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/src/pages/layout/layout.component.ts -------------------------------------------------------------------------------- /src/pages/login/login.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/src/pages/login/login.component.html -------------------------------------------------------------------------------- /src/pages/login/login.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/src/pages/login/login.component.ts -------------------------------------------------------------------------------- /src/pages/logout/logout.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/src/pages/logout/logout.component.html -------------------------------------------------------------------------------- /src/pages/logout/logout.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/src/pages/logout/logout.component.ts -------------------------------------------------------------------------------- /src/pipes/index.ts: -------------------------------------------------------------------------------- 1 | export const ALL_PIPES: any[] = []; 2 | -------------------------------------------------------------------------------- /src/services/auth-guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/src/services/auth-guard.ts -------------------------------------------------------------------------------- /src/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/src/services/index.ts -------------------------------------------------------------------------------- /src/services/menu.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/src/services/menu.service.ts -------------------------------------------------------------------------------- /src/styl/all.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/src/styl/all.styl -------------------------------------------------------------------------------- /src/styl/layout.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/src/styl/layout.styl -------------------------------------------------------------------------------- /src/styl/vendor-reset.styl: -------------------------------------------------------------------------------- 1 | #nprogress .bar{ 2 | background: #d54d36; 3 | } -------------------------------------------------------------------------------- /tsconfig-aot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/tsconfig-aot.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/tslint.json -------------------------------------------------------------------------------- /types/typing.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hstarorg/ngx-modular-platform/HEAD/types/typing.d.ts --------------------------------------------------------------------------------