├── .cz-config.js ├── .discoveryrc.js ├── .editorconfig ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── angular.json ├── assets └── logo.png ├── e2e ├── protractor.conf.js ├── src │ ├── app.e2e-spec.ts │ └── app.po.ts └── tsconfig.e2e.json ├── jest.json ├── ngsw-config.json ├── package.json ├── projects ├── connect │ ├── README.md │ ├── karma.conf.js │ ├── ng-package.json │ ├── ng-package.prod.json │ ├── package.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ └── connect.ts │ │ ├── public_api.ts │ │ └── test.ts │ ├── tsconfig.lib.json │ ├── tsconfig.spec.json │ └── tslint.json ├── platform │ ├── README.md │ ├── karma.conf.js │ ├── ng-package.json │ ├── ng-package.prod.json │ ├── package.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── directives │ │ │ │ ├── async.directive.ts │ │ │ │ ├── compose.directive.ts │ │ │ │ ├── cookies.directive.ts │ │ │ │ ├── http.directive.ts │ │ │ │ ├── init.directive.ts │ │ │ │ ├── is-dev-mode.directive.ts │ │ │ │ ├── keep-alive.directive.ts │ │ │ │ ├── lazy.directive.ts │ │ │ │ ├── nest.directive.ts │ │ │ │ ├── rename-prop.directive.ts │ │ │ │ ├── repeat.directive.ts │ │ │ │ ├── return.directive.ts │ │ │ │ ├── route.directive.ts │ │ │ │ ├── set-props.directive.ts │ │ │ │ ├── timeout.directive.ts │ │ │ │ ├── track-by-key.directive.ts │ │ │ │ ├── use-effect.directive.ts │ │ │ │ ├── use-reducer.directive.ts │ │ │ │ ├── use-state.directive.ts │ │ │ │ └── virtual.directive.ts │ │ │ ├── ivy-hooks │ │ │ │ ├── use-effect.hook.ts │ │ │ │ ├── use-reducer.hook.ts │ │ │ │ └── use-state.hook.ts │ │ │ ├── pipes │ │ │ │ ├── call.pipe.ts │ │ │ │ └── console.pipe.ts │ │ │ ├── platform.module.ts │ │ │ └── tools │ │ │ │ ├── cookies.tools.ts │ │ │ │ ├── index.ts │ │ │ │ ├── recompose │ │ │ │ ├── composed.view.ts │ │ │ │ └── index.ts │ │ │ │ ├── utils │ │ │ │ └── index.ts │ │ │ │ └── virtual.handler.ts │ │ ├── public_api.ts │ │ ├── test.ts │ │ ├── test │ │ │ ├── directives │ │ │ │ ├── async.directive.spec.ts │ │ │ │ ├── cookies.directive.spec.ts │ │ │ │ ├── http.directive.spec.ts │ │ │ │ ├── init.directive.spec.ts │ │ │ │ ├── is-dev-mode.directive.spec.ts │ │ │ │ ├── lazy.directive.spec.ts │ │ │ │ ├── nest.directive.spec.ts │ │ │ │ ├── rename-prop.directive.spec.ts │ │ │ │ ├── repeat.directive.spec.ts │ │ │ │ ├── return.directive.spec.ts │ │ │ │ ├── timeout.directive.spec.ts │ │ │ │ ├── track-by-key.directive.spec.ts │ │ │ │ ├── use-effect.directive.spec.ts │ │ │ │ ├── use-reducer.directive.spec.ts │ │ │ │ └── use-state.directive.spec.ts │ │ │ └── pipes │ │ │ │ ├── call.pipe.spec.ts │ │ │ │ └── console.pipe.spec.ts │ │ └── testing │ │ │ ├── http.ts │ │ │ └── index.ts │ ├── tsconfig.lib.json │ ├── tsconfig.spec.json │ └── tslint.json └── socketio │ ├── README.md │ ├── karma.conf.js │ ├── ng-package.json │ ├── ng-package.prod.json │ ├── package.json │ ├── src │ ├── index.ts │ ├── lib │ │ ├── directives │ │ │ ├── socket.io.directive.ts │ │ │ └── socket.io.on.directive.ts │ │ └── socket.io.module.ts │ ├── public_api.ts │ └── test.ts │ ├── tsconfig.lib.json │ ├── tsconfig.spec.json │ └── tslint.json ├── regain ├── .cache │ └── .discoveryjs.default.cache ├── crawler.js ├── prepare.js └── ui │ ├── page │ ├── default.js │ └── file.js │ └── sidebar.js ├── schematics ├── .gitignore ├── .npmignore ├── README.md ├── package-lock.json ├── package.json ├── src │ ├── collection.json │ └── examples │ │ ├── files │ │ ├── angular.json │ │ ├── package.json │ │ └── src │ │ │ ├── app │ │ │ └── app.module.ts │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ ├── polyfills.ts │ │ │ └── styles.css │ │ ├── index.ts │ │ └── index_spec.ts └── tsconfig.json ├── src ├── app │ ├── app.component.html │ ├── app.component.scss │ ├── app.component.ts │ ├── app.module.ts │ └── counter │ │ ├── counter.component.css │ │ ├── counter.component.html │ │ ├── counter.component.spec.ts │ │ └── counter.component.ts ├── assets │ ├── .gitkeep │ └── icons │ │ ├── icon-128x128.png │ │ ├── icon-144x144.png │ │ ├── icon-152x152.png │ │ ├── icon-192x192.png │ │ ├── icon-384x384.png │ │ ├── icon-512x512.png │ │ ├── icon-72x72.png │ │ └── icon-96x96.png ├── browserslist ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── jest.ts ├── karma.conf.js ├── main.ts ├── manifest.json ├── polyfills.ts ├── styles.css ├── test.ts ├── tsconfig.app.json ├── tsconfig.spec.json └── tslint.json ├── tsconfig.json └── tslint.json /.cz-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/.cz-config.js -------------------------------------------------------------------------------- /.discoveryrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/.discoveryrc.js -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/angular.json -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/assets/logo.png -------------------------------------------------------------------------------- /e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/e2e/protractor.conf.js -------------------------------------------------------------------------------- /e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/e2e/src/app.po.ts -------------------------------------------------------------------------------- /e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /jest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/jest.json -------------------------------------------------------------------------------- /ngsw-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/ngsw-config.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/package.json -------------------------------------------------------------------------------- /projects/connect/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/connect/README.md -------------------------------------------------------------------------------- /projects/connect/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/connect/karma.conf.js -------------------------------------------------------------------------------- /projects/connect/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/connect/ng-package.json -------------------------------------------------------------------------------- /projects/connect/ng-package.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/connect/ng-package.prod.json -------------------------------------------------------------------------------- /projects/connect/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/connect/package.json -------------------------------------------------------------------------------- /projects/connect/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public_api'; 2 | -------------------------------------------------------------------------------- /projects/connect/src/lib/connect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/connect/src/lib/connect.ts -------------------------------------------------------------------------------- /projects/connect/src/public_api.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/connect'; 2 | 3 | -------------------------------------------------------------------------------- /projects/connect/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/connect/src/test.ts -------------------------------------------------------------------------------- /projects/connect/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/connect/tsconfig.lib.json -------------------------------------------------------------------------------- /projects/connect/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/connect/tsconfig.spec.json -------------------------------------------------------------------------------- /projects/connect/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/connect/tslint.json -------------------------------------------------------------------------------- /projects/platform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/platform/README.md -------------------------------------------------------------------------------- /projects/platform/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/platform/karma.conf.js -------------------------------------------------------------------------------- /projects/platform/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/platform/ng-package.json -------------------------------------------------------------------------------- /projects/platform/ng-package.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/platform/ng-package.prod.json -------------------------------------------------------------------------------- /projects/platform/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/platform/package.json -------------------------------------------------------------------------------- /projects/platform/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public_api'; 2 | -------------------------------------------------------------------------------- /projects/platform/src/lib/directives/async.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/platform/src/lib/directives/async.directive.ts -------------------------------------------------------------------------------- /projects/platform/src/lib/directives/compose.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/platform/src/lib/directives/compose.directive.ts -------------------------------------------------------------------------------- /projects/platform/src/lib/directives/cookies.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/platform/src/lib/directives/cookies.directive.ts -------------------------------------------------------------------------------- /projects/platform/src/lib/directives/http.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/platform/src/lib/directives/http.directive.ts -------------------------------------------------------------------------------- /projects/platform/src/lib/directives/init.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/platform/src/lib/directives/init.directive.ts -------------------------------------------------------------------------------- /projects/platform/src/lib/directives/is-dev-mode.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/platform/src/lib/directives/is-dev-mode.directive.ts -------------------------------------------------------------------------------- /projects/platform/src/lib/directives/keep-alive.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/platform/src/lib/directives/keep-alive.directive.ts -------------------------------------------------------------------------------- /projects/platform/src/lib/directives/lazy.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/platform/src/lib/directives/lazy.directive.ts -------------------------------------------------------------------------------- /projects/platform/src/lib/directives/nest.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/platform/src/lib/directives/nest.directive.ts -------------------------------------------------------------------------------- /projects/platform/src/lib/directives/rename-prop.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/platform/src/lib/directives/rename-prop.directive.ts -------------------------------------------------------------------------------- /projects/platform/src/lib/directives/repeat.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/platform/src/lib/directives/repeat.directive.ts -------------------------------------------------------------------------------- /projects/platform/src/lib/directives/return.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/platform/src/lib/directives/return.directive.ts -------------------------------------------------------------------------------- /projects/platform/src/lib/directives/route.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/platform/src/lib/directives/route.directive.ts -------------------------------------------------------------------------------- /projects/platform/src/lib/directives/set-props.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/platform/src/lib/directives/set-props.directive.ts -------------------------------------------------------------------------------- /projects/platform/src/lib/directives/timeout.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/platform/src/lib/directives/timeout.directive.ts -------------------------------------------------------------------------------- /projects/platform/src/lib/directives/track-by-key.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/platform/src/lib/directives/track-by-key.directive.ts -------------------------------------------------------------------------------- /projects/platform/src/lib/directives/use-effect.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/platform/src/lib/directives/use-effect.directive.ts -------------------------------------------------------------------------------- /projects/platform/src/lib/directives/use-reducer.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/platform/src/lib/directives/use-reducer.directive.ts -------------------------------------------------------------------------------- /projects/platform/src/lib/directives/use-state.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/platform/src/lib/directives/use-state.directive.ts -------------------------------------------------------------------------------- /projects/platform/src/lib/directives/virtual.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/platform/src/lib/directives/virtual.directive.ts -------------------------------------------------------------------------------- /projects/platform/src/lib/ivy-hooks/use-effect.hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/platform/src/lib/ivy-hooks/use-effect.hook.ts -------------------------------------------------------------------------------- /projects/platform/src/lib/ivy-hooks/use-reducer.hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/platform/src/lib/ivy-hooks/use-reducer.hook.ts -------------------------------------------------------------------------------- /projects/platform/src/lib/ivy-hooks/use-state.hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/platform/src/lib/ivy-hooks/use-state.hook.ts -------------------------------------------------------------------------------- /projects/platform/src/lib/pipes/call.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/platform/src/lib/pipes/call.pipe.ts -------------------------------------------------------------------------------- /projects/platform/src/lib/pipes/console.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/platform/src/lib/pipes/console.pipe.ts -------------------------------------------------------------------------------- /projects/platform/src/lib/platform.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/platform/src/lib/platform.module.ts -------------------------------------------------------------------------------- /projects/platform/src/lib/tools/cookies.tools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/platform/src/lib/tools/cookies.tools.ts -------------------------------------------------------------------------------- /projects/platform/src/lib/tools/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/platform/src/lib/tools/index.ts -------------------------------------------------------------------------------- /projects/platform/src/lib/tools/recompose/composed.view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/platform/src/lib/tools/recompose/composed.view.ts -------------------------------------------------------------------------------- /projects/platform/src/lib/tools/recompose/index.ts: -------------------------------------------------------------------------------- 1 | export * from './composed.view'; 2 | -------------------------------------------------------------------------------- /projects/platform/src/lib/tools/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/platform/src/lib/tools/utils/index.ts -------------------------------------------------------------------------------- /projects/platform/src/lib/tools/virtual.handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/platform/src/lib/tools/virtual.handler.ts -------------------------------------------------------------------------------- /projects/platform/src/public_api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/platform/src/public_api.ts -------------------------------------------------------------------------------- /projects/platform/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/platform/src/test.ts -------------------------------------------------------------------------------- /projects/platform/src/test/directives/async.directive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/platform/src/test/directives/async.directive.spec.ts -------------------------------------------------------------------------------- /projects/platform/src/test/directives/cookies.directive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/platform/src/test/directives/cookies.directive.spec.ts -------------------------------------------------------------------------------- /projects/platform/src/test/directives/http.directive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/platform/src/test/directives/http.directive.spec.ts -------------------------------------------------------------------------------- /projects/platform/src/test/directives/init.directive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/platform/src/test/directives/init.directive.spec.ts -------------------------------------------------------------------------------- /projects/platform/src/test/directives/is-dev-mode.directive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/platform/src/test/directives/is-dev-mode.directive.spec.ts -------------------------------------------------------------------------------- /projects/platform/src/test/directives/lazy.directive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/platform/src/test/directives/lazy.directive.spec.ts -------------------------------------------------------------------------------- /projects/platform/src/test/directives/nest.directive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/platform/src/test/directives/nest.directive.spec.ts -------------------------------------------------------------------------------- /projects/platform/src/test/directives/rename-prop.directive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/platform/src/test/directives/rename-prop.directive.spec.ts -------------------------------------------------------------------------------- /projects/platform/src/test/directives/repeat.directive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/platform/src/test/directives/repeat.directive.spec.ts -------------------------------------------------------------------------------- /projects/platform/src/test/directives/return.directive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/platform/src/test/directives/return.directive.spec.ts -------------------------------------------------------------------------------- /projects/platform/src/test/directives/timeout.directive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/platform/src/test/directives/timeout.directive.spec.ts -------------------------------------------------------------------------------- /projects/platform/src/test/directives/track-by-key.directive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/platform/src/test/directives/track-by-key.directive.spec.ts -------------------------------------------------------------------------------- /projects/platform/src/test/directives/use-effect.directive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/platform/src/test/directives/use-effect.directive.spec.ts -------------------------------------------------------------------------------- /projects/platform/src/test/directives/use-reducer.directive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/platform/src/test/directives/use-reducer.directive.spec.ts -------------------------------------------------------------------------------- /projects/platform/src/test/directives/use-state.directive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/platform/src/test/directives/use-state.directive.spec.ts -------------------------------------------------------------------------------- /projects/platform/src/test/pipes/call.pipe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/platform/src/test/pipes/call.pipe.spec.ts -------------------------------------------------------------------------------- /projects/platform/src/test/pipes/console.pipe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/platform/src/test/pipes/console.pipe.spec.ts -------------------------------------------------------------------------------- /projects/platform/src/testing/http.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/platform/src/testing/http.ts -------------------------------------------------------------------------------- /projects/platform/src/testing/index.ts: -------------------------------------------------------------------------------- 1 | export * from './http'; 2 | -------------------------------------------------------------------------------- /projects/platform/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/platform/tsconfig.lib.json -------------------------------------------------------------------------------- /projects/platform/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/platform/tsconfig.spec.json -------------------------------------------------------------------------------- /projects/platform/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/platform/tslint.json -------------------------------------------------------------------------------- /projects/socketio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/socketio/README.md -------------------------------------------------------------------------------- /projects/socketio/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/socketio/karma.conf.js -------------------------------------------------------------------------------- /projects/socketio/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/socketio/ng-package.json -------------------------------------------------------------------------------- /projects/socketio/ng-package.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/socketio/ng-package.prod.json -------------------------------------------------------------------------------- /projects/socketio/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/socketio/package.json -------------------------------------------------------------------------------- /projects/socketio/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public_api'; 2 | -------------------------------------------------------------------------------- /projects/socketio/src/lib/directives/socket.io.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/socketio/src/lib/directives/socket.io.directive.ts -------------------------------------------------------------------------------- /projects/socketio/src/lib/directives/socket.io.on.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/socketio/src/lib/directives/socket.io.on.directive.ts -------------------------------------------------------------------------------- /projects/socketio/src/lib/socket.io.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/socketio/src/lib/socket.io.module.ts -------------------------------------------------------------------------------- /projects/socketio/src/public_api.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/socket.io.module'; 2 | -------------------------------------------------------------------------------- /projects/socketio/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/socketio/src/test.ts -------------------------------------------------------------------------------- /projects/socketio/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/socketio/tsconfig.lib.json -------------------------------------------------------------------------------- /projects/socketio/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/socketio/tsconfig.spec.json -------------------------------------------------------------------------------- /projects/socketio/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/projects/socketio/tslint.json -------------------------------------------------------------------------------- /regain/.cache/.discoveryjs.default.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /regain/crawler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/regain/crawler.js -------------------------------------------------------------------------------- /regain/prepare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/regain/prepare.js -------------------------------------------------------------------------------- /regain/ui/page/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/regain/ui/page/default.js -------------------------------------------------------------------------------- /regain/ui/page/file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/regain/ui/page/file.js -------------------------------------------------------------------------------- /regain/ui/sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/regain/ui/sidebar.js -------------------------------------------------------------------------------- /schematics/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/schematics/.gitignore -------------------------------------------------------------------------------- /schematics/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/schematics/.npmignore -------------------------------------------------------------------------------- /schematics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/schematics/README.md -------------------------------------------------------------------------------- /schematics/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/schematics/package-lock.json -------------------------------------------------------------------------------- /schematics/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/schematics/package.json -------------------------------------------------------------------------------- /schematics/src/collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/schematics/src/collection.json -------------------------------------------------------------------------------- /schematics/src/examples/files/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/schematics/src/examples/files/angular.json -------------------------------------------------------------------------------- /schematics/src/examples/files/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/schematics/src/examples/files/package.json -------------------------------------------------------------------------------- /schematics/src/examples/files/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/schematics/src/examples/files/src/app/app.module.ts -------------------------------------------------------------------------------- /schematics/src/examples/files/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/schematics/src/examples/files/src/index.html -------------------------------------------------------------------------------- /schematics/src/examples/files/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/schematics/src/examples/files/src/main.ts -------------------------------------------------------------------------------- /schematics/src/examples/files/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/schematics/src/examples/files/src/polyfills.ts -------------------------------------------------------------------------------- /schematics/src/examples/files/src/styles.css: -------------------------------------------------------------------------------- 1 | /* Add application styles & imports to this file! */ 2 | -------------------------------------------------------------------------------- /schematics/src/examples/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/schematics/src/examples/index.ts -------------------------------------------------------------------------------- /schematics/src/examples/index_spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/schematics/src/examples/index_spec.ts -------------------------------------------------------------------------------- /schematics/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/schematics/tsconfig.json -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/src/app/app.component.scss -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/counter/counter.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/counter/counter.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/src/app/counter/counter.component.html -------------------------------------------------------------------------------- /src/app/counter/counter.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/src/app/counter/counter.component.spec.ts -------------------------------------------------------------------------------- /src/app/counter/counter.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/src/app/counter/counter.component.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/icons/icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/src/assets/icons/icon-128x128.png -------------------------------------------------------------------------------- /src/assets/icons/icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/src/assets/icons/icon-144x144.png -------------------------------------------------------------------------------- /src/assets/icons/icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/src/assets/icons/icon-152x152.png -------------------------------------------------------------------------------- /src/assets/icons/icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/src/assets/icons/icon-192x192.png -------------------------------------------------------------------------------- /src/assets/icons/icon-384x384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/src/assets/icons/icon-384x384.png -------------------------------------------------------------------------------- /src/assets/icons/icon-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/src/assets/icons/icon-512x512.png -------------------------------------------------------------------------------- /src/assets/icons/icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/src/assets/icons/icon-72x72.png -------------------------------------------------------------------------------- /src/assets/icons/icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/src/assets/icons/icon-96x96.png -------------------------------------------------------------------------------- /src/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/src/browserslist -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/src/index.html -------------------------------------------------------------------------------- /src/jest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/src/jest.ts -------------------------------------------------------------------------------- /src/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/src/karma.conf.js -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/src/manifest.json -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/src/styles.css -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/src/test.ts -------------------------------------------------------------------------------- /src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/src/tsconfig.app.json -------------------------------------------------------------------------------- /src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/src/tsconfig.spec.json -------------------------------------------------------------------------------- /src/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/src/tslint.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxf/platform/HEAD/tslint.json --------------------------------------------------------------------------------