├── .editorconfig ├── .gitignore ├── .prettierignore ├── .prettierrc ├── README.md ├── angular.json ├── apps ├── flight-app-e2e │ ├── cypress.json │ ├── src │ │ ├── fixtures │ │ │ └── example.json │ │ ├── integration │ │ │ └── app.spec.ts │ │ ├── plugins │ │ │ └── index.js │ │ └── support │ │ │ ├── app.po.ts │ │ │ ├── commands.ts │ │ │ └── index.ts │ ├── tsconfig.e2e.json │ ├── tsconfig.json │ └── tslint.json └── flight-app │ ├── browserslist │ ├── jest.config.js │ ├── src │ ├── app │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── app.routes.ts │ │ ├── basket │ │ │ ├── basket.component.css │ │ │ ├── basket.component.html │ │ │ └── basket.component.ts │ │ ├── home │ │ │ ├── home.component.css │ │ │ ├── home.component.html │ │ │ └── home.component.ts │ │ ├── navbar │ │ │ ├── navbar.component.html │ │ │ └── navbar.component.ts │ │ └── sidebar │ │ │ ├── sidebar.component.html │ │ │ └── sidebar.component.ts │ ├── assets │ │ ├── .gitkeep │ │ ├── css │ │ │ ├── bootstrap.min.css │ │ │ ├── demo.css │ │ │ ├── paper-dashboard.css │ │ │ ├── paper-dashboard.css.map │ │ │ └── themify-icons.css │ │ ├── custom-elements │ │ │ ├── custom-elements.min.js │ │ │ ├── externs │ │ │ │ └── custom-elements.js │ │ │ ├── gulpfile.js │ │ │ ├── src │ │ │ │ ├── AlreadyConstructedMarker.js │ │ │ │ ├── CustomElementInternals.js │ │ │ │ ├── CustomElementRegistry.js │ │ │ │ ├── CustomElementState.js │ │ │ │ ├── Deferred.js │ │ │ │ ├── DocumentConstructionObserver.js │ │ │ │ ├── Patch │ │ │ │ │ ├── Document.js │ │ │ │ │ ├── DocumentFragment.js │ │ │ │ │ ├── Element.js │ │ │ │ │ ├── HTMLElement.js │ │ │ │ │ ├── Interface │ │ │ │ │ │ ├── ChildNode.js │ │ │ │ │ │ └── ParentNode.js │ │ │ │ │ ├── Native.js │ │ │ │ │ └── Node.js │ │ │ │ ├── Utilities.js │ │ │ │ ├── custom-elements.js │ │ │ │ └── native-shim.js │ │ │ └── tests │ │ │ │ ├── chromium │ │ │ │ ├── custom-elements │ │ │ │ │ └── spec │ │ │ │ │ │ └── resources │ │ │ │ │ │ └── custom-elements-helpers.js │ │ │ │ └── resources │ │ │ │ │ ├── WebIDLParser.js │ │ │ │ │ ├── accessibility-helper.js │ │ │ │ │ ├── ahem.js │ │ │ │ │ ├── bluetooth │ │ │ │ │ └── bluetooth-helpers.js │ │ │ │ │ ├── check-layout-th.js │ │ │ │ │ ├── check-layout.js │ │ │ │ │ ├── dump-as-markup.js │ │ │ │ │ ├── gc.js │ │ │ │ │ ├── idlharness.js │ │ │ │ │ ├── intersection-observer-helper-functions.js │ │ │ │ │ ├── js-test.js │ │ │ │ │ ├── magnitude-perf.js │ │ │ │ │ ├── mojo-helpers.js │ │ │ │ │ ├── plugin.js │ │ │ │ │ ├── run-after-layout-and-paint.js │ │ │ │ │ ├── testharness.js │ │ │ │ │ ├── testharnessreport.js │ │ │ │ │ └── vendor-prefix.js │ │ │ │ └── js │ │ │ │ ├── babel.js │ │ │ │ ├── closure.js │ │ │ │ ├── instanceof.js │ │ │ │ ├── reactions.js │ │ │ │ ├── registry.js │ │ │ │ ├── shadow-dom.js │ │ │ │ ├── typescript.js │ │ │ │ └── upgrade.js │ │ ├── data │ │ │ └── data.json │ │ ├── external-dashboard-tile.bundle.js │ │ ├── fonts │ │ │ ├── themify.eot │ │ │ ├── themify.svg │ │ │ ├── themify.ttf │ │ │ └── themify.woff │ │ ├── img │ │ │ ├── angular.png │ │ │ ├── angular2-logo-white.png │ │ │ ├── angular2-logo.png │ │ │ ├── apple-icon.png │ │ │ ├── background.jpg │ │ │ ├── faces │ │ │ │ ├── face-0.jpg │ │ │ │ ├── face-1.jpg │ │ │ │ ├── face-2.jpg │ │ │ │ └── face-3.jpg │ │ │ ├── favicon.png │ │ │ ├── new_logo.png │ │ │ └── tim_80x80.png │ │ ├── micro-apps │ │ │ └── client-a.bundle.js │ │ ├── sass │ │ │ ├── paper-dashboard.scss │ │ │ └── paper │ │ │ │ ├── _alerts.scss │ │ │ │ ├── _animate.scss │ │ │ │ ├── _buttons.scss │ │ │ │ ├── _cards.scss │ │ │ │ ├── _chartist.scss │ │ │ │ ├── _checkbox-radio.scss │ │ │ │ ├── _dropdown.scss │ │ │ │ ├── _footers.scss │ │ │ │ ├── _inputs.scss │ │ │ │ ├── _misc.scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _navbars.scss │ │ │ │ ├── _responsive.scss │ │ │ │ ├── _sidebar-and-main-panel.scss │ │ │ │ ├── _tables.scss │ │ │ │ ├── _typography.scss │ │ │ │ ├── _variables.scss │ │ │ │ ├── mixins │ │ │ │ ├── _buttons.scss │ │ │ │ ├── _cards.scss │ │ │ │ ├── _chartist.scss │ │ │ │ ├── _icons.scss │ │ │ │ ├── _inputs.scss │ │ │ │ ├── _labels.scss │ │ │ │ ├── _navbars.scss │ │ │ │ ├── _sidebar.scss │ │ │ │ ├── _tabs.scss │ │ │ │ ├── _transparency.scss │ │ │ │ └── _vendor-prefixes.scss │ │ │ │ └── plugins │ │ │ │ └── _fixed-plugin.scss │ │ ├── sea-1993791_1920.jpg │ │ ├── stats-1.json │ │ ├── stats-2.json │ │ ├── stats-3.json │ │ └── webcomponentsjs │ │ │ ├── bundles │ │ │ ├── webcomponents-ce.js │ │ │ ├── webcomponents-sd-ce-pf.js │ │ │ ├── webcomponents-sd-ce.js │ │ │ └── webcomponents-sd.js │ │ │ ├── custom-elements-es5-adapter.js │ │ │ ├── entrypoints │ │ │ ├── custom-elements-es5-adapter-index.js │ │ │ ├── webcomponents-bundle-index.js │ │ │ ├── webcomponents-ce-index.js │ │ │ ├── webcomponents-sd-ce-index.js │ │ │ ├── webcomponents-sd-ce-pf-index.js │ │ │ └── webcomponents-sd-index.js │ │ │ ├── webcomponents-bundle.js │ │ │ └── webcomponents-loader.js │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── styles.css │ ├── test-setup.ts │ ├── test.ts │ └── typings.d.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.spec.json │ └── tslint.json ├── jest.config.js ├── libs ├── boarding │ ├── domain │ │ ├── README.md │ │ ├── jest.config.js │ │ ├── src │ │ │ ├── index.ts │ │ │ ├── lib │ │ │ │ ├── boarding-domain.module.ts │ │ │ │ └── domain │ │ │ │ │ ├── boarding-list.ts │ │ │ │ │ └── update-boarding-status.ts │ │ │ └── test-setup.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ ├── tsconfig.spec.json │ │ └── tslint.json │ └── feature │ │ ├── README.md │ │ ├── jest.config.js │ │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ └── boarding-feature.module.ts │ │ └── test-setup.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ ├── tsconfig.spec.json │ │ └── tslint.json ├── booking │ ├── api │ │ ├── README.md │ │ ├── jest.config.js │ │ ├── src │ │ │ ├── index.ts │ │ │ ├── lib │ │ │ │ ├── booking-api.module.spec.ts │ │ │ │ └── booking-api.module.ts │ │ │ └── test-setup.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ ├── tsconfig.spec.json │ │ └── tslint.json │ ├── domain │ │ ├── README.md │ │ ├── jest.config.js │ │ ├── src │ │ │ ├── index.ts │ │ │ ├── lib │ │ │ │ ├── application-services │ │ │ │ │ └── flight.facade.ts │ │ │ │ ├── booking-domain.module.ts │ │ │ │ ├── domain │ │ │ │ │ ├── flight.ts │ │ │ │ │ ├── get-official-airport-name.ts │ │ │ │ │ └── passenger.ts │ │ │ │ └── infrastructure │ │ │ │ │ └── flight.service.ts │ │ │ └── test-setup.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ ├── tsconfig.spec.json │ │ └── tslint.json │ └── feature │ │ ├── README.md │ │ ├── jest.config.js │ │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── booking-feature.module.ts │ │ │ ├── flight-booking.component.html │ │ │ ├── flight-booking.component.ts │ │ │ ├── flight-booking.routes.ts │ │ │ ├── flight-card │ │ │ │ ├── flight-card.component.css │ │ │ │ ├── flight-card.component.html │ │ │ │ └── flight-card.component.ts │ │ │ ├── flight-edit │ │ │ │ ├── flight-edit.component.css │ │ │ │ ├── flight-edit.component.html │ │ │ │ └── flight-edit.component.ts │ │ │ ├── flight-search │ │ │ │ ├── flight-search.component.css │ │ │ │ ├── flight-search.component.html │ │ │ │ └── flight-search.component.ts │ │ │ └── passenger-search │ │ │ │ ├── passenger-search.component.css │ │ │ │ ├── passenger-search.component.html │ │ │ │ ├── passenger-search.component.spec.ts │ │ │ │ └── passenger-search.component.ts │ │ └── test-setup.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ ├── tsconfig.spec.json │ │ └── tslint.json └── shared │ ├── ui-common │ ├── README.md │ ├── jest.config.js │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── city.pipe.ts │ │ │ ├── shared-ui-common.module.spec.ts │ │ │ └── shared-ui-common.module.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.spec.json │ └── tslint.json │ └── util-auth │ ├── README.md │ ├── jest.config.js │ ├── src │ ├── index.ts │ ├── lib │ │ ├── shared-util-auth.module.spec.ts │ │ └── shared-util-auth.module.ts │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.spec.json │ └── tslint.json ├── nx.json ├── package.json ├── tools ├── schematics │ └── .gitkeep └── tsconfig.tools.json ├── tsconfig.json └── tslint.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true 3 | } 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/angular.json -------------------------------------------------------------------------------- /apps/flight-app-e2e/cypress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app-e2e/cypress.json -------------------------------------------------------------------------------- /apps/flight-app-e2e/src/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app-e2e/src/fixtures/example.json -------------------------------------------------------------------------------- /apps/flight-app-e2e/src/integration/app.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app-e2e/src/integration/app.spec.ts -------------------------------------------------------------------------------- /apps/flight-app-e2e/src/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app-e2e/src/plugins/index.js -------------------------------------------------------------------------------- /apps/flight-app-e2e/src/support/app.po.ts: -------------------------------------------------------------------------------- 1 | export const getGreeting = () => cy.get('h1'); 2 | -------------------------------------------------------------------------------- /apps/flight-app-e2e/src/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app-e2e/src/support/commands.ts -------------------------------------------------------------------------------- /apps/flight-app-e2e/src/support/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app-e2e/src/support/index.ts -------------------------------------------------------------------------------- /apps/flight-app-e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app-e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /apps/flight-app-e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app-e2e/tsconfig.json -------------------------------------------------------------------------------- /apps/flight-app-e2e/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app-e2e/tslint.json -------------------------------------------------------------------------------- /apps/flight-app/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/browserslist -------------------------------------------------------------------------------- /apps/flight-app/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/jest.config.js -------------------------------------------------------------------------------- /apps/flight-app/src/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/app/app.component.css -------------------------------------------------------------------------------- /apps/flight-app/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/app/app.component.html -------------------------------------------------------------------------------- /apps/flight-app/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /apps/flight-app/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/app/app.component.ts -------------------------------------------------------------------------------- /apps/flight-app/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/app/app.module.ts -------------------------------------------------------------------------------- /apps/flight-app/src/app/app.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/app/app.routes.ts -------------------------------------------------------------------------------- /apps/flight-app/src/app/basket/basket.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/app/basket/basket.component.css -------------------------------------------------------------------------------- /apps/flight-app/src/app/basket/basket.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/app/basket/basket.component.html -------------------------------------------------------------------------------- /apps/flight-app/src/app/basket/basket.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/app/basket/basket.component.ts -------------------------------------------------------------------------------- /apps/flight-app/src/app/home/home.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/flight-app/src/app/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/app/home/home.component.html -------------------------------------------------------------------------------- /apps/flight-app/src/app/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/app/home/home.component.ts -------------------------------------------------------------------------------- /apps/flight-app/src/app/navbar/navbar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/app/navbar/navbar.component.html -------------------------------------------------------------------------------- /apps/flight-app/src/app/navbar/navbar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/app/navbar/navbar.component.ts -------------------------------------------------------------------------------- /apps/flight-app/src/app/sidebar/sidebar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/app/sidebar/sidebar.component.html -------------------------------------------------------------------------------- /apps/flight-app/src/app/sidebar/sidebar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/app/sidebar/sidebar.component.ts -------------------------------------------------------------------------------- /apps/flight-app/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/flight-app/src/assets/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/css/bootstrap.min.css -------------------------------------------------------------------------------- /apps/flight-app/src/assets/css/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/css/demo.css -------------------------------------------------------------------------------- /apps/flight-app/src/assets/css/paper-dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/css/paper-dashboard.css -------------------------------------------------------------------------------- /apps/flight-app/src/assets/css/paper-dashboard.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/css/paper-dashboard.css.map -------------------------------------------------------------------------------- /apps/flight-app/src/assets/css/themify-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/css/themify-icons.css -------------------------------------------------------------------------------- /apps/flight-app/src/assets/custom-elements/custom-elements.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/custom-elements/custom-elements.min.js -------------------------------------------------------------------------------- /apps/flight-app/src/assets/custom-elements/externs/custom-elements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/custom-elements/externs/custom-elements.js -------------------------------------------------------------------------------- /apps/flight-app/src/assets/custom-elements/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/custom-elements/gulpfile.js -------------------------------------------------------------------------------- /apps/flight-app/src/assets/custom-elements/src/AlreadyConstructedMarker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/custom-elements/src/AlreadyConstructedMarker.js -------------------------------------------------------------------------------- /apps/flight-app/src/assets/custom-elements/src/CustomElementInternals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/custom-elements/src/CustomElementInternals.js -------------------------------------------------------------------------------- /apps/flight-app/src/assets/custom-elements/src/CustomElementRegistry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/custom-elements/src/CustomElementRegistry.js -------------------------------------------------------------------------------- /apps/flight-app/src/assets/custom-elements/src/CustomElementState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/custom-elements/src/CustomElementState.js -------------------------------------------------------------------------------- /apps/flight-app/src/assets/custom-elements/src/Deferred.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/custom-elements/src/Deferred.js -------------------------------------------------------------------------------- /apps/flight-app/src/assets/custom-elements/src/DocumentConstructionObserver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/custom-elements/src/DocumentConstructionObserver.js -------------------------------------------------------------------------------- /apps/flight-app/src/assets/custom-elements/src/Patch/Document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/custom-elements/src/Patch/Document.js -------------------------------------------------------------------------------- /apps/flight-app/src/assets/custom-elements/src/Patch/DocumentFragment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/custom-elements/src/Patch/DocumentFragment.js -------------------------------------------------------------------------------- /apps/flight-app/src/assets/custom-elements/src/Patch/Element.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/custom-elements/src/Patch/Element.js -------------------------------------------------------------------------------- /apps/flight-app/src/assets/custom-elements/src/Patch/HTMLElement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/custom-elements/src/Patch/HTMLElement.js -------------------------------------------------------------------------------- /apps/flight-app/src/assets/custom-elements/src/Patch/Interface/ChildNode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/custom-elements/src/Patch/Interface/ChildNode.js -------------------------------------------------------------------------------- /apps/flight-app/src/assets/custom-elements/src/Patch/Interface/ParentNode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/custom-elements/src/Patch/Interface/ParentNode.js -------------------------------------------------------------------------------- /apps/flight-app/src/assets/custom-elements/src/Patch/Native.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/custom-elements/src/Patch/Native.js -------------------------------------------------------------------------------- /apps/flight-app/src/assets/custom-elements/src/Patch/Node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/custom-elements/src/Patch/Node.js -------------------------------------------------------------------------------- /apps/flight-app/src/assets/custom-elements/src/Utilities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/custom-elements/src/Utilities.js -------------------------------------------------------------------------------- /apps/flight-app/src/assets/custom-elements/src/custom-elements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/custom-elements/src/custom-elements.js -------------------------------------------------------------------------------- /apps/flight-app/src/assets/custom-elements/src/native-shim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/custom-elements/src/native-shim.js -------------------------------------------------------------------------------- /apps/flight-app/src/assets/custom-elements/tests/chromium/custom-elements/spec/resources/custom-elements-helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/custom-elements/tests/chromium/custom-elements/spec/resources/custom-elements-helpers.js -------------------------------------------------------------------------------- /apps/flight-app/src/assets/custom-elements/tests/chromium/resources/WebIDLParser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/custom-elements/tests/chromium/resources/WebIDLParser.js -------------------------------------------------------------------------------- /apps/flight-app/src/assets/custom-elements/tests/chromium/resources/accessibility-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/custom-elements/tests/chromium/resources/accessibility-helper.js -------------------------------------------------------------------------------- /apps/flight-app/src/assets/custom-elements/tests/chromium/resources/ahem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/custom-elements/tests/chromium/resources/ahem.js -------------------------------------------------------------------------------- /apps/flight-app/src/assets/custom-elements/tests/chromium/resources/bluetooth/bluetooth-helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/custom-elements/tests/chromium/resources/bluetooth/bluetooth-helpers.js -------------------------------------------------------------------------------- /apps/flight-app/src/assets/custom-elements/tests/chromium/resources/check-layout-th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/custom-elements/tests/chromium/resources/check-layout-th.js -------------------------------------------------------------------------------- /apps/flight-app/src/assets/custom-elements/tests/chromium/resources/check-layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/custom-elements/tests/chromium/resources/check-layout.js -------------------------------------------------------------------------------- /apps/flight-app/src/assets/custom-elements/tests/chromium/resources/dump-as-markup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/custom-elements/tests/chromium/resources/dump-as-markup.js -------------------------------------------------------------------------------- /apps/flight-app/src/assets/custom-elements/tests/chromium/resources/gc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/custom-elements/tests/chromium/resources/gc.js -------------------------------------------------------------------------------- /apps/flight-app/src/assets/custom-elements/tests/chromium/resources/idlharness.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/custom-elements/tests/chromium/resources/idlharness.js -------------------------------------------------------------------------------- /apps/flight-app/src/assets/custom-elements/tests/chromium/resources/intersection-observer-helper-functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/custom-elements/tests/chromium/resources/intersection-observer-helper-functions.js -------------------------------------------------------------------------------- /apps/flight-app/src/assets/custom-elements/tests/chromium/resources/js-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/custom-elements/tests/chromium/resources/js-test.js -------------------------------------------------------------------------------- /apps/flight-app/src/assets/custom-elements/tests/chromium/resources/magnitude-perf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/custom-elements/tests/chromium/resources/magnitude-perf.js -------------------------------------------------------------------------------- /apps/flight-app/src/assets/custom-elements/tests/chromium/resources/mojo-helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/custom-elements/tests/chromium/resources/mojo-helpers.js -------------------------------------------------------------------------------- /apps/flight-app/src/assets/custom-elements/tests/chromium/resources/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/custom-elements/tests/chromium/resources/plugin.js -------------------------------------------------------------------------------- /apps/flight-app/src/assets/custom-elements/tests/chromium/resources/run-after-layout-and-paint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/custom-elements/tests/chromium/resources/run-after-layout-and-paint.js -------------------------------------------------------------------------------- /apps/flight-app/src/assets/custom-elements/tests/chromium/resources/testharness.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/custom-elements/tests/chromium/resources/testharness.js -------------------------------------------------------------------------------- /apps/flight-app/src/assets/custom-elements/tests/chromium/resources/testharnessreport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/custom-elements/tests/chromium/resources/testharnessreport.js -------------------------------------------------------------------------------- /apps/flight-app/src/assets/custom-elements/tests/chromium/resources/vendor-prefix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/custom-elements/tests/chromium/resources/vendor-prefix.js -------------------------------------------------------------------------------- /apps/flight-app/src/assets/custom-elements/tests/js/babel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/custom-elements/tests/js/babel.js -------------------------------------------------------------------------------- /apps/flight-app/src/assets/custom-elements/tests/js/closure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/custom-elements/tests/js/closure.js -------------------------------------------------------------------------------- /apps/flight-app/src/assets/custom-elements/tests/js/instanceof.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/custom-elements/tests/js/instanceof.js -------------------------------------------------------------------------------- /apps/flight-app/src/assets/custom-elements/tests/js/reactions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/custom-elements/tests/js/reactions.js -------------------------------------------------------------------------------- /apps/flight-app/src/assets/custom-elements/tests/js/registry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/custom-elements/tests/js/registry.js -------------------------------------------------------------------------------- /apps/flight-app/src/assets/custom-elements/tests/js/shadow-dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/custom-elements/tests/js/shadow-dom.js -------------------------------------------------------------------------------- /apps/flight-app/src/assets/custom-elements/tests/js/typescript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/custom-elements/tests/js/typescript.js -------------------------------------------------------------------------------- /apps/flight-app/src/assets/custom-elements/tests/js/upgrade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/custom-elements/tests/js/upgrade.js -------------------------------------------------------------------------------- /apps/flight-app/src/assets/data/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/data/data.json -------------------------------------------------------------------------------- /apps/flight-app/src/assets/external-dashboard-tile.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/external-dashboard-tile.bundle.js -------------------------------------------------------------------------------- /apps/flight-app/src/assets/fonts/themify.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/fonts/themify.eot -------------------------------------------------------------------------------- /apps/flight-app/src/assets/fonts/themify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/fonts/themify.svg -------------------------------------------------------------------------------- /apps/flight-app/src/assets/fonts/themify.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/fonts/themify.ttf -------------------------------------------------------------------------------- /apps/flight-app/src/assets/fonts/themify.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/fonts/themify.woff -------------------------------------------------------------------------------- /apps/flight-app/src/assets/img/angular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/img/angular.png -------------------------------------------------------------------------------- /apps/flight-app/src/assets/img/angular2-logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/img/angular2-logo-white.png -------------------------------------------------------------------------------- /apps/flight-app/src/assets/img/angular2-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/img/angular2-logo.png -------------------------------------------------------------------------------- /apps/flight-app/src/assets/img/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/img/apple-icon.png -------------------------------------------------------------------------------- /apps/flight-app/src/assets/img/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/img/background.jpg -------------------------------------------------------------------------------- /apps/flight-app/src/assets/img/faces/face-0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/img/faces/face-0.jpg -------------------------------------------------------------------------------- /apps/flight-app/src/assets/img/faces/face-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/img/faces/face-1.jpg -------------------------------------------------------------------------------- /apps/flight-app/src/assets/img/faces/face-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/img/faces/face-2.jpg -------------------------------------------------------------------------------- /apps/flight-app/src/assets/img/faces/face-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/img/faces/face-3.jpg -------------------------------------------------------------------------------- /apps/flight-app/src/assets/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/img/favicon.png -------------------------------------------------------------------------------- /apps/flight-app/src/assets/img/new_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/img/new_logo.png -------------------------------------------------------------------------------- /apps/flight-app/src/assets/img/tim_80x80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/img/tim_80x80.png -------------------------------------------------------------------------------- /apps/flight-app/src/assets/micro-apps/client-a.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/micro-apps/client-a.bundle.js -------------------------------------------------------------------------------- /apps/flight-app/src/assets/sass/paper-dashboard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/sass/paper-dashboard.scss -------------------------------------------------------------------------------- /apps/flight-app/src/assets/sass/paper/_alerts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/sass/paper/_alerts.scss -------------------------------------------------------------------------------- /apps/flight-app/src/assets/sass/paper/_animate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/sass/paper/_animate.scss -------------------------------------------------------------------------------- /apps/flight-app/src/assets/sass/paper/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/sass/paper/_buttons.scss -------------------------------------------------------------------------------- /apps/flight-app/src/assets/sass/paper/_cards.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/sass/paper/_cards.scss -------------------------------------------------------------------------------- /apps/flight-app/src/assets/sass/paper/_chartist.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/sass/paper/_chartist.scss -------------------------------------------------------------------------------- /apps/flight-app/src/assets/sass/paper/_checkbox-radio.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/sass/paper/_checkbox-radio.scss -------------------------------------------------------------------------------- /apps/flight-app/src/assets/sass/paper/_dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/sass/paper/_dropdown.scss -------------------------------------------------------------------------------- /apps/flight-app/src/assets/sass/paper/_footers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/sass/paper/_footers.scss -------------------------------------------------------------------------------- /apps/flight-app/src/assets/sass/paper/_inputs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/sass/paper/_inputs.scss -------------------------------------------------------------------------------- /apps/flight-app/src/assets/sass/paper/_misc.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/sass/paper/_misc.scss -------------------------------------------------------------------------------- /apps/flight-app/src/assets/sass/paper/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/sass/paper/_mixins.scss -------------------------------------------------------------------------------- /apps/flight-app/src/assets/sass/paper/_navbars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/sass/paper/_navbars.scss -------------------------------------------------------------------------------- /apps/flight-app/src/assets/sass/paper/_responsive.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/sass/paper/_responsive.scss -------------------------------------------------------------------------------- /apps/flight-app/src/assets/sass/paper/_sidebar-and-main-panel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/sass/paper/_sidebar-and-main-panel.scss -------------------------------------------------------------------------------- /apps/flight-app/src/assets/sass/paper/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/sass/paper/_tables.scss -------------------------------------------------------------------------------- /apps/flight-app/src/assets/sass/paper/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/sass/paper/_typography.scss -------------------------------------------------------------------------------- /apps/flight-app/src/assets/sass/paper/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/sass/paper/_variables.scss -------------------------------------------------------------------------------- /apps/flight-app/src/assets/sass/paper/mixins/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/sass/paper/mixins/_buttons.scss -------------------------------------------------------------------------------- /apps/flight-app/src/assets/sass/paper/mixins/_cards.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/sass/paper/mixins/_cards.scss -------------------------------------------------------------------------------- /apps/flight-app/src/assets/sass/paper/mixins/_chartist.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/sass/paper/mixins/_chartist.scss -------------------------------------------------------------------------------- /apps/flight-app/src/assets/sass/paper/mixins/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/sass/paper/mixins/_icons.scss -------------------------------------------------------------------------------- /apps/flight-app/src/assets/sass/paper/mixins/_inputs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/sass/paper/mixins/_inputs.scss -------------------------------------------------------------------------------- /apps/flight-app/src/assets/sass/paper/mixins/_labels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/sass/paper/mixins/_labels.scss -------------------------------------------------------------------------------- /apps/flight-app/src/assets/sass/paper/mixins/_navbars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/sass/paper/mixins/_navbars.scss -------------------------------------------------------------------------------- /apps/flight-app/src/assets/sass/paper/mixins/_sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/sass/paper/mixins/_sidebar.scss -------------------------------------------------------------------------------- /apps/flight-app/src/assets/sass/paper/mixins/_tabs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/sass/paper/mixins/_tabs.scss -------------------------------------------------------------------------------- /apps/flight-app/src/assets/sass/paper/mixins/_transparency.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/sass/paper/mixins/_transparency.scss -------------------------------------------------------------------------------- /apps/flight-app/src/assets/sass/paper/mixins/_vendor-prefixes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/sass/paper/mixins/_vendor-prefixes.scss -------------------------------------------------------------------------------- /apps/flight-app/src/assets/sass/paper/plugins/_fixed-plugin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/sass/paper/plugins/_fixed-plugin.scss -------------------------------------------------------------------------------- /apps/flight-app/src/assets/sea-1993791_1920.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/sea-1993791_1920.jpg -------------------------------------------------------------------------------- /apps/flight-app/src/assets/stats-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/stats-1.json -------------------------------------------------------------------------------- /apps/flight-app/src/assets/stats-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/stats-2.json -------------------------------------------------------------------------------- /apps/flight-app/src/assets/stats-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/stats-3.json -------------------------------------------------------------------------------- /apps/flight-app/src/assets/webcomponentsjs/bundles/webcomponents-ce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/webcomponentsjs/bundles/webcomponents-ce.js -------------------------------------------------------------------------------- /apps/flight-app/src/assets/webcomponentsjs/bundles/webcomponents-sd-ce-pf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/webcomponentsjs/bundles/webcomponents-sd-ce-pf.js -------------------------------------------------------------------------------- /apps/flight-app/src/assets/webcomponentsjs/bundles/webcomponents-sd-ce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/webcomponentsjs/bundles/webcomponents-sd-ce.js -------------------------------------------------------------------------------- /apps/flight-app/src/assets/webcomponentsjs/bundles/webcomponents-sd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/webcomponentsjs/bundles/webcomponents-sd.js -------------------------------------------------------------------------------- /apps/flight-app/src/assets/webcomponentsjs/custom-elements-es5-adapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/webcomponentsjs/custom-elements-es5-adapter.js -------------------------------------------------------------------------------- /apps/flight-app/src/assets/webcomponentsjs/entrypoints/custom-elements-es5-adapter-index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/webcomponentsjs/entrypoints/custom-elements-es5-adapter-index.js -------------------------------------------------------------------------------- /apps/flight-app/src/assets/webcomponentsjs/entrypoints/webcomponents-bundle-index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/webcomponentsjs/entrypoints/webcomponents-bundle-index.js -------------------------------------------------------------------------------- /apps/flight-app/src/assets/webcomponentsjs/entrypoints/webcomponents-ce-index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/webcomponentsjs/entrypoints/webcomponents-ce-index.js -------------------------------------------------------------------------------- /apps/flight-app/src/assets/webcomponentsjs/entrypoints/webcomponents-sd-ce-index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/webcomponentsjs/entrypoints/webcomponents-sd-ce-index.js -------------------------------------------------------------------------------- /apps/flight-app/src/assets/webcomponentsjs/entrypoints/webcomponents-sd-ce-pf-index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/webcomponentsjs/entrypoints/webcomponents-sd-ce-pf-index.js -------------------------------------------------------------------------------- /apps/flight-app/src/assets/webcomponentsjs/entrypoints/webcomponents-sd-index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/webcomponentsjs/entrypoints/webcomponents-sd-index.js -------------------------------------------------------------------------------- /apps/flight-app/src/assets/webcomponentsjs/webcomponents-bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/webcomponentsjs/webcomponents-bundle.js -------------------------------------------------------------------------------- /apps/flight-app/src/assets/webcomponentsjs/webcomponents-loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/assets/webcomponentsjs/webcomponents-loader.js -------------------------------------------------------------------------------- /apps/flight-app/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /apps/flight-app/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/environments/environment.ts -------------------------------------------------------------------------------- /apps/flight-app/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/favicon.ico -------------------------------------------------------------------------------- /apps/flight-app/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/index.html -------------------------------------------------------------------------------- /apps/flight-app/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/main.ts -------------------------------------------------------------------------------- /apps/flight-app/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/polyfills.ts -------------------------------------------------------------------------------- /apps/flight-app/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/styles.css -------------------------------------------------------------------------------- /apps/flight-app/src/test-setup.ts: -------------------------------------------------------------------------------- 1 | import 'jest-preset-angular'; 2 | -------------------------------------------------------------------------------- /apps/flight-app/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/test.ts -------------------------------------------------------------------------------- /apps/flight-app/src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/src/typings.d.ts -------------------------------------------------------------------------------- /apps/flight-app/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/tsconfig.app.json -------------------------------------------------------------------------------- /apps/flight-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/tsconfig.json -------------------------------------------------------------------------------- /apps/flight-app/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/tsconfig.spec.json -------------------------------------------------------------------------------- /apps/flight-app/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/apps/flight-app/tslint.json -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/jest.config.js -------------------------------------------------------------------------------- /libs/boarding/domain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/libs/boarding/domain/README.md -------------------------------------------------------------------------------- /libs/boarding/domain/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/libs/boarding/domain/jest.config.js -------------------------------------------------------------------------------- /libs/boarding/domain/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/boarding-domain.module'; 2 | -------------------------------------------------------------------------------- /libs/boarding/domain/src/lib/boarding-domain.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/libs/boarding/domain/src/lib/boarding-domain.module.ts -------------------------------------------------------------------------------- /libs/boarding/domain/src/lib/domain/boarding-list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/libs/boarding/domain/src/lib/domain/boarding-list.ts -------------------------------------------------------------------------------- /libs/boarding/domain/src/lib/domain/update-boarding-status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/libs/boarding/domain/src/lib/domain/update-boarding-status.ts -------------------------------------------------------------------------------- /libs/boarding/domain/src/test-setup.ts: -------------------------------------------------------------------------------- 1 | import 'jest-preset-angular'; 2 | -------------------------------------------------------------------------------- /libs/boarding/domain/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/libs/boarding/domain/tsconfig.json -------------------------------------------------------------------------------- /libs/boarding/domain/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/libs/boarding/domain/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/boarding/domain/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/libs/boarding/domain/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/boarding/domain/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/libs/boarding/domain/tslint.json -------------------------------------------------------------------------------- /libs/boarding/feature/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/libs/boarding/feature/README.md -------------------------------------------------------------------------------- /libs/boarding/feature/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/libs/boarding/feature/jest.config.js -------------------------------------------------------------------------------- /libs/boarding/feature/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/boarding-feature.module'; 2 | -------------------------------------------------------------------------------- /libs/boarding/feature/src/lib/boarding-feature.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/libs/boarding/feature/src/lib/boarding-feature.module.ts -------------------------------------------------------------------------------- /libs/boarding/feature/src/test-setup.ts: -------------------------------------------------------------------------------- 1 | import 'jest-preset-angular'; 2 | -------------------------------------------------------------------------------- /libs/boarding/feature/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/libs/boarding/feature/tsconfig.json -------------------------------------------------------------------------------- /libs/boarding/feature/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/libs/boarding/feature/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/boarding/feature/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/libs/boarding/feature/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/boarding/feature/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/libs/boarding/feature/tslint.json -------------------------------------------------------------------------------- /libs/booking/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/libs/booking/api/README.md -------------------------------------------------------------------------------- /libs/booking/api/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/libs/booking/api/jest.config.js -------------------------------------------------------------------------------- /libs/booking/api/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/libs/booking/api/src/index.ts -------------------------------------------------------------------------------- /libs/booking/api/src/lib/booking-api.module.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/libs/booking/api/src/lib/booking-api.module.spec.ts -------------------------------------------------------------------------------- /libs/booking/api/src/lib/booking-api.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/libs/booking/api/src/lib/booking-api.module.ts -------------------------------------------------------------------------------- /libs/booking/api/src/test-setup.ts: -------------------------------------------------------------------------------- 1 | import 'jest-preset-angular'; 2 | -------------------------------------------------------------------------------- /libs/booking/api/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/libs/booking/api/tsconfig.json -------------------------------------------------------------------------------- /libs/booking/api/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/libs/booking/api/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/booking/api/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/libs/booking/api/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/booking/api/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/libs/booking/api/tslint.json -------------------------------------------------------------------------------- /libs/booking/domain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/libs/booking/domain/README.md -------------------------------------------------------------------------------- /libs/booking/domain/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/libs/booking/domain/jest.config.js -------------------------------------------------------------------------------- /libs/booking/domain/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/libs/booking/domain/src/index.ts -------------------------------------------------------------------------------- /libs/booking/domain/src/lib/application-services/flight.facade.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/libs/booking/domain/src/lib/application-services/flight.facade.ts -------------------------------------------------------------------------------- /libs/booking/domain/src/lib/booking-domain.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/libs/booking/domain/src/lib/booking-domain.module.ts -------------------------------------------------------------------------------- /libs/booking/domain/src/lib/domain/flight.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/libs/booking/domain/src/lib/domain/flight.ts -------------------------------------------------------------------------------- /libs/booking/domain/src/lib/domain/get-official-airport-name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/libs/booking/domain/src/lib/domain/get-official-airport-name.ts -------------------------------------------------------------------------------- /libs/booking/domain/src/lib/domain/passenger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/libs/booking/domain/src/lib/domain/passenger.ts -------------------------------------------------------------------------------- /libs/booking/domain/src/lib/infrastructure/flight.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/libs/booking/domain/src/lib/infrastructure/flight.service.ts -------------------------------------------------------------------------------- /libs/booking/domain/src/test-setup.ts: -------------------------------------------------------------------------------- 1 | import 'jest-preset-angular'; 2 | -------------------------------------------------------------------------------- /libs/booking/domain/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/libs/booking/domain/tsconfig.json -------------------------------------------------------------------------------- /libs/booking/domain/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/libs/booking/domain/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/booking/domain/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/libs/booking/domain/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/booking/domain/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/libs/booking/domain/tslint.json -------------------------------------------------------------------------------- /libs/booking/feature/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/libs/booking/feature/README.md -------------------------------------------------------------------------------- /libs/booking/feature/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/libs/booking/feature/jest.config.js -------------------------------------------------------------------------------- /libs/booking/feature/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/booking-feature.module'; 2 | -------------------------------------------------------------------------------- /libs/booking/feature/src/lib/booking-feature.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/libs/booking/feature/src/lib/booking-feature.module.ts -------------------------------------------------------------------------------- /libs/booking/feature/src/lib/flight-booking.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/libs/booking/feature/src/lib/flight-booking.component.html -------------------------------------------------------------------------------- /libs/booking/feature/src/lib/flight-booking.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/libs/booking/feature/src/lib/flight-booking.component.ts -------------------------------------------------------------------------------- /libs/booking/feature/src/lib/flight-booking.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/libs/booking/feature/src/lib/flight-booking.routes.ts -------------------------------------------------------------------------------- /libs/booking/feature/src/lib/flight-card/flight-card.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/booking/feature/src/lib/flight-card/flight-card.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/libs/booking/feature/src/lib/flight-card/flight-card.component.html -------------------------------------------------------------------------------- /libs/booking/feature/src/lib/flight-card/flight-card.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/libs/booking/feature/src/lib/flight-card/flight-card.component.ts -------------------------------------------------------------------------------- /libs/booking/feature/src/lib/flight-edit/flight-edit.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/booking/feature/src/lib/flight-edit/flight-edit.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/libs/booking/feature/src/lib/flight-edit/flight-edit.component.html -------------------------------------------------------------------------------- /libs/booking/feature/src/lib/flight-edit/flight-edit.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/libs/booking/feature/src/lib/flight-edit/flight-edit.component.ts -------------------------------------------------------------------------------- /libs/booking/feature/src/lib/flight-search/flight-search.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/booking/feature/src/lib/flight-search/flight-search.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/libs/booking/feature/src/lib/flight-search/flight-search.component.html -------------------------------------------------------------------------------- /libs/booking/feature/src/lib/flight-search/flight-search.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/libs/booking/feature/src/lib/flight-search/flight-search.component.ts -------------------------------------------------------------------------------- /libs/booking/feature/src/lib/passenger-search/passenger-search.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/booking/feature/src/lib/passenger-search/passenger-search.component.html: -------------------------------------------------------------------------------- 1 |

2 | passenger-search works! 3 |

4 | -------------------------------------------------------------------------------- /libs/booking/feature/src/lib/passenger-search/passenger-search.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/libs/booking/feature/src/lib/passenger-search/passenger-search.component.spec.ts -------------------------------------------------------------------------------- /libs/booking/feature/src/lib/passenger-search/passenger-search.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/libs/booking/feature/src/lib/passenger-search/passenger-search.component.ts -------------------------------------------------------------------------------- /libs/booking/feature/src/test-setup.ts: -------------------------------------------------------------------------------- 1 | import 'jest-preset-angular'; 2 | -------------------------------------------------------------------------------- /libs/booking/feature/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/libs/booking/feature/tsconfig.json -------------------------------------------------------------------------------- /libs/booking/feature/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/libs/booking/feature/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/booking/feature/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/libs/booking/feature/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/booking/feature/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/libs/booking/feature/tslint.json -------------------------------------------------------------------------------- /libs/shared/ui-common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/libs/shared/ui-common/README.md -------------------------------------------------------------------------------- /libs/shared/ui-common/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/libs/shared/ui-common/jest.config.js -------------------------------------------------------------------------------- /libs/shared/ui-common/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/shared-ui-common.module'; 2 | -------------------------------------------------------------------------------- /libs/shared/ui-common/src/lib/city.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/libs/shared/ui-common/src/lib/city.pipe.ts -------------------------------------------------------------------------------- /libs/shared/ui-common/src/lib/shared-ui-common.module.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/libs/shared/ui-common/src/lib/shared-ui-common.module.spec.ts -------------------------------------------------------------------------------- /libs/shared/ui-common/src/lib/shared-ui-common.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/libs/shared/ui-common/src/lib/shared-ui-common.module.ts -------------------------------------------------------------------------------- /libs/shared/ui-common/src/test-setup.ts: -------------------------------------------------------------------------------- 1 | import 'jest-preset-angular'; 2 | -------------------------------------------------------------------------------- /libs/shared/ui-common/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/libs/shared/ui-common/tsconfig.json -------------------------------------------------------------------------------- /libs/shared/ui-common/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/libs/shared/ui-common/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/shared/ui-common/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/libs/shared/ui-common/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/shared/ui-common/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/libs/shared/ui-common/tslint.json -------------------------------------------------------------------------------- /libs/shared/util-auth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/libs/shared/util-auth/README.md -------------------------------------------------------------------------------- /libs/shared/util-auth/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/libs/shared/util-auth/jest.config.js -------------------------------------------------------------------------------- /libs/shared/util-auth/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/shared-util-auth.module'; 2 | -------------------------------------------------------------------------------- /libs/shared/util-auth/src/lib/shared-util-auth.module.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/libs/shared/util-auth/src/lib/shared-util-auth.module.spec.ts -------------------------------------------------------------------------------- /libs/shared/util-auth/src/lib/shared-util-auth.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/libs/shared/util-auth/src/lib/shared-util-auth.module.ts -------------------------------------------------------------------------------- /libs/shared/util-auth/src/test-setup.ts: -------------------------------------------------------------------------------- 1 | import 'jest-preset-angular'; 2 | -------------------------------------------------------------------------------- /libs/shared/util-auth/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/libs/shared/util-auth/tsconfig.json -------------------------------------------------------------------------------- /libs/shared/util-auth/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/libs/shared/util-auth/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/shared/util-auth/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/libs/shared/util-auth/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/shared/util-auth/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/libs/shared/util-auth/tslint.json -------------------------------------------------------------------------------- /nx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/nx.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/package.json -------------------------------------------------------------------------------- /tools/schematics/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/tsconfig.tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/tools/tsconfig.tools.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfredsteyer/DDD_Nx/HEAD/tslint.json --------------------------------------------------------------------------------