├── .gitignore ├── Appendix A Pointers for Demonstrating functionality.md ├── LICENSE.md ├── README.md ├── images ├── image001.png ├── image003.png ├── image005.png ├── image006.png ├── image008.png ├── image010.png ├── image012.png ├── image014.png ├── image016.png └── image017.png └── snomed-search-demo ├── .editorconfig ├── .gitignore ├── README.md ├── angular.json ├── browserslist ├── e2e ├── protractor.conf.js ├── src │ ├── app.e2e-spec.ts │ └── app.po.ts └── tsconfig.json ├── karma.conf.js ├── package-lock.json ├── package.json ├── src ├── app │ ├── app.component.css │ ├── app.component.html │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── demo-model.service.spec.ts │ ├── demo-model.service.ts │ ├── frames │ │ ├── encounter-frame │ │ │ ├── encounter-frame.component.css │ │ │ ├── encounter-frame.component.html │ │ │ ├── encounter-frame.component.spec.ts │ │ │ └── encounter-frame.component.ts │ │ ├── patient-details-frame │ │ │ ├── patient-details-frame.component.css │ │ │ ├── patient-details-frame.component.html │ │ │ ├── patient-details-frame.component.spec.ts │ │ │ └── patient-details-frame.component.ts │ │ ├── patient-summary-frame │ │ │ ├── patient-summary-frame.component.css │ │ │ ├── patient-summary-frame.component.html │ │ │ ├── patient-summary-frame.component.spec.ts │ │ │ └── patient-summary-frame.component.ts │ │ └── reaction-frame │ │ │ ├── reaction-frame.component.css │ │ │ ├── reaction-frame.component.html │ │ │ ├── reaction-frame.component.spec.ts │ │ │ └── reaction-frame.component.ts │ └── material.module.ts ├── assets │ ├── .gitkeep │ └── images │ │ └── snomedIntl-brand-RGB-120px.jpg ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── main.ts ├── polyfills.ts ├── styles.css └── test.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.spec.json └── tslint.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/snomed-ui-examples/HEAD/.gitignore -------------------------------------------------------------------------------- /Appendix A Pointers for Demonstrating functionality.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/snomed-ui-examples/HEAD/Appendix A Pointers for Demonstrating functionality.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/snomed-ui-examples/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/snomed-ui-examples/HEAD/README.md -------------------------------------------------------------------------------- /images/image001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/snomed-ui-examples/HEAD/images/image001.png -------------------------------------------------------------------------------- /images/image003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/snomed-ui-examples/HEAD/images/image003.png -------------------------------------------------------------------------------- /images/image005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/snomed-ui-examples/HEAD/images/image005.png -------------------------------------------------------------------------------- /images/image006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/snomed-ui-examples/HEAD/images/image006.png -------------------------------------------------------------------------------- /images/image008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/snomed-ui-examples/HEAD/images/image008.png -------------------------------------------------------------------------------- /images/image010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/snomed-ui-examples/HEAD/images/image010.png -------------------------------------------------------------------------------- /images/image012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/snomed-ui-examples/HEAD/images/image012.png -------------------------------------------------------------------------------- /images/image014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/snomed-ui-examples/HEAD/images/image014.png -------------------------------------------------------------------------------- /images/image016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/snomed-ui-examples/HEAD/images/image016.png -------------------------------------------------------------------------------- /images/image017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/snomed-ui-examples/HEAD/images/image017.png -------------------------------------------------------------------------------- /snomed-search-demo/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/snomed-ui-examples/HEAD/snomed-search-demo/.editorconfig -------------------------------------------------------------------------------- /snomed-search-demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/snomed-ui-examples/HEAD/snomed-search-demo/.gitignore -------------------------------------------------------------------------------- /snomed-search-demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/snomed-ui-examples/HEAD/snomed-search-demo/README.md -------------------------------------------------------------------------------- /snomed-search-demo/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/snomed-ui-examples/HEAD/snomed-search-demo/angular.json -------------------------------------------------------------------------------- /snomed-search-demo/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/snomed-ui-examples/HEAD/snomed-search-demo/browserslist -------------------------------------------------------------------------------- /snomed-search-demo/e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/snomed-ui-examples/HEAD/snomed-search-demo/e2e/protractor.conf.js -------------------------------------------------------------------------------- /snomed-search-demo/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/snomed-ui-examples/HEAD/snomed-search-demo/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /snomed-search-demo/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/snomed-ui-examples/HEAD/snomed-search-demo/e2e/src/app.po.ts -------------------------------------------------------------------------------- /snomed-search-demo/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/snomed-ui-examples/HEAD/snomed-search-demo/e2e/tsconfig.json -------------------------------------------------------------------------------- /snomed-search-demo/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/snomed-ui-examples/HEAD/snomed-search-demo/karma.conf.js -------------------------------------------------------------------------------- /snomed-search-demo/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/snomed-ui-examples/HEAD/snomed-search-demo/package-lock.json -------------------------------------------------------------------------------- /snomed-search-demo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/snomed-ui-examples/HEAD/snomed-search-demo/package.json -------------------------------------------------------------------------------- /snomed-search-demo/src/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/snomed-ui-examples/HEAD/snomed-search-demo/src/app/app.component.css -------------------------------------------------------------------------------- /snomed-search-demo/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/snomed-ui-examples/HEAD/snomed-search-demo/src/app/app.component.html -------------------------------------------------------------------------------- /snomed-search-demo/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/snomed-ui-examples/HEAD/snomed-search-demo/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /snomed-search-demo/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/snomed-ui-examples/HEAD/snomed-search-demo/src/app/app.component.ts -------------------------------------------------------------------------------- /snomed-search-demo/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/snomed-ui-examples/HEAD/snomed-search-demo/src/app/app.module.ts -------------------------------------------------------------------------------- /snomed-search-demo/src/app/demo-model.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/snomed-ui-examples/HEAD/snomed-search-demo/src/app/demo-model.service.spec.ts -------------------------------------------------------------------------------- /snomed-search-demo/src/app/demo-model.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/snomed-ui-examples/HEAD/snomed-search-demo/src/app/demo-model.service.ts -------------------------------------------------------------------------------- /snomed-search-demo/src/app/frames/encounter-frame/encounter-frame.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/snomed-ui-examples/HEAD/snomed-search-demo/src/app/frames/encounter-frame/encounter-frame.component.css -------------------------------------------------------------------------------- /snomed-search-demo/src/app/frames/encounter-frame/encounter-frame.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/snomed-ui-examples/HEAD/snomed-search-demo/src/app/frames/encounter-frame/encounter-frame.component.html -------------------------------------------------------------------------------- /snomed-search-demo/src/app/frames/encounter-frame/encounter-frame.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/snomed-ui-examples/HEAD/snomed-search-demo/src/app/frames/encounter-frame/encounter-frame.component.spec.ts -------------------------------------------------------------------------------- /snomed-search-demo/src/app/frames/encounter-frame/encounter-frame.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/snomed-ui-examples/HEAD/snomed-search-demo/src/app/frames/encounter-frame/encounter-frame.component.ts -------------------------------------------------------------------------------- /snomed-search-demo/src/app/frames/patient-details-frame/patient-details-frame.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/snomed-ui-examples/HEAD/snomed-search-demo/src/app/frames/patient-details-frame/patient-details-frame.component.css -------------------------------------------------------------------------------- /snomed-search-demo/src/app/frames/patient-details-frame/patient-details-frame.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/snomed-ui-examples/HEAD/snomed-search-demo/src/app/frames/patient-details-frame/patient-details-frame.component.html -------------------------------------------------------------------------------- /snomed-search-demo/src/app/frames/patient-details-frame/patient-details-frame.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/snomed-ui-examples/HEAD/snomed-search-demo/src/app/frames/patient-details-frame/patient-details-frame.component.spec.ts -------------------------------------------------------------------------------- /snomed-search-demo/src/app/frames/patient-details-frame/patient-details-frame.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/snomed-ui-examples/HEAD/snomed-search-demo/src/app/frames/patient-details-frame/patient-details-frame.component.ts -------------------------------------------------------------------------------- /snomed-search-demo/src/app/frames/patient-summary-frame/patient-summary-frame.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/snomed-ui-examples/HEAD/snomed-search-demo/src/app/frames/patient-summary-frame/patient-summary-frame.component.css -------------------------------------------------------------------------------- /snomed-search-demo/src/app/frames/patient-summary-frame/patient-summary-frame.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/snomed-ui-examples/HEAD/snomed-search-demo/src/app/frames/patient-summary-frame/patient-summary-frame.component.html -------------------------------------------------------------------------------- /snomed-search-demo/src/app/frames/patient-summary-frame/patient-summary-frame.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/snomed-ui-examples/HEAD/snomed-search-demo/src/app/frames/patient-summary-frame/patient-summary-frame.component.spec.ts -------------------------------------------------------------------------------- /snomed-search-demo/src/app/frames/patient-summary-frame/patient-summary-frame.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/snomed-ui-examples/HEAD/snomed-search-demo/src/app/frames/patient-summary-frame/patient-summary-frame.component.ts -------------------------------------------------------------------------------- /snomed-search-demo/src/app/frames/reaction-frame/reaction-frame.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/snomed-ui-examples/HEAD/snomed-search-demo/src/app/frames/reaction-frame/reaction-frame.component.css -------------------------------------------------------------------------------- /snomed-search-demo/src/app/frames/reaction-frame/reaction-frame.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/snomed-ui-examples/HEAD/snomed-search-demo/src/app/frames/reaction-frame/reaction-frame.component.html -------------------------------------------------------------------------------- /snomed-search-demo/src/app/frames/reaction-frame/reaction-frame.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/snomed-ui-examples/HEAD/snomed-search-demo/src/app/frames/reaction-frame/reaction-frame.component.spec.ts -------------------------------------------------------------------------------- /snomed-search-demo/src/app/frames/reaction-frame/reaction-frame.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/snomed-ui-examples/HEAD/snomed-search-demo/src/app/frames/reaction-frame/reaction-frame.component.ts -------------------------------------------------------------------------------- /snomed-search-demo/src/app/material.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/snomed-ui-examples/HEAD/snomed-search-demo/src/app/material.module.ts -------------------------------------------------------------------------------- /snomed-search-demo/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /snomed-search-demo/src/assets/images/snomedIntl-brand-RGB-120px.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/snomed-ui-examples/HEAD/snomed-search-demo/src/assets/images/snomedIntl-brand-RGB-120px.jpg -------------------------------------------------------------------------------- /snomed-search-demo/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /snomed-search-demo/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/snomed-ui-examples/HEAD/snomed-search-demo/src/environments/environment.ts -------------------------------------------------------------------------------- /snomed-search-demo/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/snomed-ui-examples/HEAD/snomed-search-demo/src/favicon.ico -------------------------------------------------------------------------------- /snomed-search-demo/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/snomed-ui-examples/HEAD/snomed-search-demo/src/index.html -------------------------------------------------------------------------------- /snomed-search-demo/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/snomed-ui-examples/HEAD/snomed-search-demo/src/main.ts -------------------------------------------------------------------------------- /snomed-search-demo/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/snomed-ui-examples/HEAD/snomed-search-demo/src/polyfills.ts -------------------------------------------------------------------------------- /snomed-search-demo/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/snomed-ui-examples/HEAD/snomed-search-demo/src/styles.css -------------------------------------------------------------------------------- /snomed-search-demo/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/snomed-ui-examples/HEAD/snomed-search-demo/src/test.ts -------------------------------------------------------------------------------- /snomed-search-demo/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/snomed-ui-examples/HEAD/snomed-search-demo/tsconfig.app.json -------------------------------------------------------------------------------- /snomed-search-demo/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/snomed-ui-examples/HEAD/snomed-search-demo/tsconfig.json -------------------------------------------------------------------------------- /snomed-search-demo/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/snomed-ui-examples/HEAD/snomed-search-demo/tsconfig.spec.json -------------------------------------------------------------------------------- /snomed-search-demo/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/snomed-ui-examples/HEAD/snomed-search-demo/tslint.json --------------------------------------------------------------------------------