├── .angular-cli.json ├── .bluemix └── pipeline.yml ├── .cfignore ├── .editorconfig ├── .eslint.js ├── .gitignore ├── .travis.yml ├── .tslint.json ├── .yamllint.yml ├── CONTRIBUTING.md ├── LICENSE ├── MAINTAINERS.md ├── README.md ├── config ├── config-dev.js └── config-production.js ├── devvars.template.sh ├── doc └── source │ └── images │ ├── architecture.png │ ├── dde-create-save-architecture.png │ └── dde-open-architecture.png ├── e2e ├── app.e2e-spec.ts ├── app.po.ts └── tsconfig.e2e.json ├── karma.conf.js ├── lib └── daasProxy.js ├── manifest.yml ├── package.json ├── protractor.conf.js ├── scripts └── resources.sh ├── server.js ├── src ├── app │ ├── app-navbar │ │ ├── app-navbar.component.css │ │ ├── app-navbar.component.html │ │ ├── app-navbar.component.spec.ts │ │ └── app-navbar.component.ts │ ├── app-routing │ │ └── app-routing.module.ts │ ├── app.component.css │ ├── app.component.html │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── dde-app │ │ ├── dde-app.component.css │ │ ├── dde-app.component.html │ │ ├── dde-app.component.spec.ts │ │ └── dde-app.component.ts │ ├── dde-code-explorer │ │ ├── dde-code-explorer.component.css │ │ ├── dde-code-explorer.component.html │ │ ├── dde-code-explorer.component.spec.ts │ │ └── dde-code-explorer.component.ts │ ├── dde-code-snippet │ │ ├── dde-code-snippet.component.css │ │ ├── dde-code-snippet.component.html │ │ ├── dde-code-snippet.component.spec.ts │ │ └── dde-code-snippet.component.ts │ ├── dde-dashboard-bar │ │ ├── dde-dashboard-bar.component.css │ │ ├── dde-dashboard-bar.component.html │ │ ├── dde-dashboard-bar.component.spec.ts │ │ └── dde-dashboard-bar.component.ts │ ├── dde-dashboard │ │ ├── dde-dashboard.component.css │ │ ├── dde-dashboard.component.html │ │ ├── dde-dashboard.component.spec.ts │ │ └── dde-dashboard.component.ts │ ├── dde-dialog │ │ ├── dde-dialog.component.css │ │ ├── dde-dialog.component.html │ │ ├── dde-dialog.component.spec.ts │ │ └── dde-dialog.component.ts │ ├── dde-menu │ │ ├── dde-menu.component.css │ │ ├── dde-menu.component.html │ │ ├── dde-menu.component.spec.ts │ │ └── dde-menu.component.ts │ ├── dde-references │ │ ├── dde-references.component.css │ │ ├── dde-references.component.html │ │ ├── dde-references.component.spec.ts │ │ └── dde-references.component.ts │ ├── dde-toaster │ │ ├── dde-toaster.component.css │ │ ├── dde-toaster.component.html │ │ ├── dde-toaster.component.spec.ts │ │ └── dde-toaster.component.ts │ └── services │ │ ├── code-snippets-repo.service.spec.ts │ │ ├── code-snippets-repo.service.ts │ │ ├── dde-action.service.spec.ts │ │ ├── dde-action.service.ts │ │ ├── dde-api.service.spec.ts │ │ ├── dde-api.service.ts │ │ ├── encrypt.service.spec.ts │ │ └── encrypt.service.ts ├── assets │ ├── .gitkeep │ ├── css │ │ ├── font-awesome-animation.min.css │ │ └── styles.css │ ├── data │ │ ├── bikeShareRidesDemographicsSampleModule.json │ │ ├── bikeShareWeatherSampleModule.json │ │ ├── dashboardSpec.json │ │ ├── ddeCSVSampleModule.json │ │ └── ddeSampleSpec.json │ ├── fonts │ │ ├── HelvNeueBoldforIBM.otf │ │ ├── HelvNeueBoldforIBM.ttf │ │ ├── HelvNeueRomanforIBM.otf │ │ └── HelvNeueRomanforIBM.ttf │ ├── images │ │ ├── DDE_32.svg │ │ ├── DDE_white_32.svg │ │ ├── chevron-down_16.svg │ │ ├── chevron-up_16.svg │ │ ├── close_16.svg │ │ ├── configure_32.svg │ │ ├── confirm_16.svg │ │ ├── copy_16.svg │ │ ├── dashboard_empty_state.png │ │ ├── dashboard_empty_state.svg │ │ ├── edit_16.svg │ │ ├── error_16.svg │ │ ├── exploreApi.png │ │ ├── forward_16.svg │ │ ├── get-information_16.svg │ │ ├── hide-sidepane.svg │ │ ├── link_16.svg │ │ ├── play_16.svg │ │ ├── refresh_16.svg │ │ ├── reset_16.svg │ │ ├── table_128.svg │ │ └── warn_32.svg │ ├── resources │ │ ├── codeExplorer.json │ │ ├── dialog.json │ │ ├── instrumentation.json │ │ ├── menu.json │ │ └── references.json │ └── video │ │ ├── CDE.mp4 │ │ └── videoCaptions.vtt ├── environments │ ├── environment.prod.ts │ ├── environment.stage.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── instrumentation │ ├── analytics.ts │ ├── pageTracking.js │ └── segment.ts ├── interfaces │ ├── apiAndDashboardTraits.ts │ ├── commonTraits.ts │ ├── dashboardInteractionTraits.ts │ ├── documentationTraits.ts │ ├── messageTraits.ts │ └── videoTraits.ts ├── json-typings.d.ts ├── main.ts ├── model │ ├── code-snippet.ts │ ├── dashboard-mode.ts │ ├── data-source.ts │ ├── session.ts │ └── toaster.ts ├── polyfills.ts ├── prism │ ├── prism.css │ └── prism.js ├── test.ts ├── tsconfig.app.json ├── tsconfig.spec.json └── typings.d.ts ├── tests ├── test-eslint.sh ├── test-shellcheck.sh ├── test-tslint.sh └── test-yamllint.sh ├── tsconfig.json └── vcap-local-example.json /.angular-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/.angular-cli.json -------------------------------------------------------------------------------- /.bluemix/pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/.bluemix/pipeline.yml -------------------------------------------------------------------------------- /.cfignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/.cfignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/.eslint.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/.travis.yml -------------------------------------------------------------------------------- /.tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/.tslint.json -------------------------------------------------------------------------------- /.yamllint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/.yamllint.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/MAINTAINERS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/README.md -------------------------------------------------------------------------------- /config/config-dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/config/config-dev.js -------------------------------------------------------------------------------- /config/config-production.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/config/config-production.js -------------------------------------------------------------------------------- /devvars.template.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/devvars.template.sh -------------------------------------------------------------------------------- /doc/source/images/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/doc/source/images/architecture.png -------------------------------------------------------------------------------- /doc/source/images/dde-create-save-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/doc/source/images/dde-create-save-architecture.png -------------------------------------------------------------------------------- /doc/source/images/dde-open-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/doc/source/images/dde-open-architecture.png -------------------------------------------------------------------------------- /e2e/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/e2e/app.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/e2e/app.po.ts -------------------------------------------------------------------------------- /e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/karma.conf.js -------------------------------------------------------------------------------- /lib/daasProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/lib/daasProxy.js -------------------------------------------------------------------------------- /manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/manifest.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/package.json -------------------------------------------------------------------------------- /protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/protractor.conf.js -------------------------------------------------------------------------------- /scripts/resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/scripts/resources.sh -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/server.js -------------------------------------------------------------------------------- /src/app/app-navbar/app-navbar.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/app/app-navbar/app-navbar.component.css -------------------------------------------------------------------------------- /src/app/app-navbar/app-navbar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/app/app-navbar/app-navbar.component.html -------------------------------------------------------------------------------- /src/app/app-navbar/app-navbar.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/app/app-navbar/app-navbar.component.spec.ts -------------------------------------------------------------------------------- /src/app/app-navbar/app-navbar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/app/app-navbar/app-navbar.component.ts -------------------------------------------------------------------------------- /src/app/app-routing/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/app/app-routing/app-routing.module.ts -------------------------------------------------------------------------------- /src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/dde-app/dde-app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/app/dde-app/dde-app.component.css -------------------------------------------------------------------------------- /src/app/dde-app/dde-app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/app/dde-app/dde-app.component.html -------------------------------------------------------------------------------- /src/app/dde-app/dde-app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/app/dde-app/dde-app.component.spec.ts -------------------------------------------------------------------------------- /src/app/dde-app/dde-app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/app/dde-app/dde-app.component.ts -------------------------------------------------------------------------------- /src/app/dde-code-explorer/dde-code-explorer.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/app/dde-code-explorer/dde-code-explorer.component.css -------------------------------------------------------------------------------- /src/app/dde-code-explorer/dde-code-explorer.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/app/dde-code-explorer/dde-code-explorer.component.html -------------------------------------------------------------------------------- /src/app/dde-code-explorer/dde-code-explorer.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/app/dde-code-explorer/dde-code-explorer.component.spec.ts -------------------------------------------------------------------------------- /src/app/dde-code-explorer/dde-code-explorer.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/app/dde-code-explorer/dde-code-explorer.component.ts -------------------------------------------------------------------------------- /src/app/dde-code-snippet/dde-code-snippet.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/app/dde-code-snippet/dde-code-snippet.component.css -------------------------------------------------------------------------------- /src/app/dde-code-snippet/dde-code-snippet.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/app/dde-code-snippet/dde-code-snippet.component.html -------------------------------------------------------------------------------- /src/app/dde-code-snippet/dde-code-snippet.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/app/dde-code-snippet/dde-code-snippet.component.spec.ts -------------------------------------------------------------------------------- /src/app/dde-code-snippet/dde-code-snippet.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/app/dde-code-snippet/dde-code-snippet.component.ts -------------------------------------------------------------------------------- /src/app/dde-dashboard-bar/dde-dashboard-bar.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/app/dde-dashboard-bar/dde-dashboard-bar.component.css -------------------------------------------------------------------------------- /src/app/dde-dashboard-bar/dde-dashboard-bar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/app/dde-dashboard-bar/dde-dashboard-bar.component.html -------------------------------------------------------------------------------- /src/app/dde-dashboard-bar/dde-dashboard-bar.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/app/dde-dashboard-bar/dde-dashboard-bar.component.spec.ts -------------------------------------------------------------------------------- /src/app/dde-dashboard-bar/dde-dashboard-bar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/app/dde-dashboard-bar/dde-dashboard-bar.component.ts -------------------------------------------------------------------------------- /src/app/dde-dashboard/dde-dashboard.component.css: -------------------------------------------------------------------------------- 1 | .col-md-12 { 2 | padding: 0; 3 | } 4 | -------------------------------------------------------------------------------- /src/app/dde-dashboard/dde-dashboard.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/app/dde-dashboard/dde-dashboard.component.html -------------------------------------------------------------------------------- /src/app/dde-dashboard/dde-dashboard.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/app/dde-dashboard/dde-dashboard.component.spec.ts -------------------------------------------------------------------------------- /src/app/dde-dashboard/dde-dashboard.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/app/dde-dashboard/dde-dashboard.component.ts -------------------------------------------------------------------------------- /src/app/dde-dialog/dde-dialog.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/app/dde-dialog/dde-dialog.component.css -------------------------------------------------------------------------------- /src/app/dde-dialog/dde-dialog.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/app/dde-dialog/dde-dialog.component.html -------------------------------------------------------------------------------- /src/app/dde-dialog/dde-dialog.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/app/dde-dialog/dde-dialog.component.spec.ts -------------------------------------------------------------------------------- /src/app/dde-dialog/dde-dialog.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/app/dde-dialog/dde-dialog.component.ts -------------------------------------------------------------------------------- /src/app/dde-menu/dde-menu.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/app/dde-menu/dde-menu.component.css -------------------------------------------------------------------------------- /src/app/dde-menu/dde-menu.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/app/dde-menu/dde-menu.component.html -------------------------------------------------------------------------------- /src/app/dde-menu/dde-menu.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/app/dde-menu/dde-menu.component.spec.ts -------------------------------------------------------------------------------- /src/app/dde-menu/dde-menu.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/app/dde-menu/dde-menu.component.ts -------------------------------------------------------------------------------- /src/app/dde-references/dde-references.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/app/dde-references/dde-references.component.css -------------------------------------------------------------------------------- /src/app/dde-references/dde-references.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/app/dde-references/dde-references.component.html -------------------------------------------------------------------------------- /src/app/dde-references/dde-references.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/app/dde-references/dde-references.component.spec.ts -------------------------------------------------------------------------------- /src/app/dde-references/dde-references.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/app/dde-references/dde-references.component.ts -------------------------------------------------------------------------------- /src/app/dde-toaster/dde-toaster.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/app/dde-toaster/dde-toaster.component.css -------------------------------------------------------------------------------- /src/app/dde-toaster/dde-toaster.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/app/dde-toaster/dde-toaster.component.html -------------------------------------------------------------------------------- /src/app/dde-toaster/dde-toaster.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/app/dde-toaster/dde-toaster.component.spec.ts -------------------------------------------------------------------------------- /src/app/dde-toaster/dde-toaster.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/app/dde-toaster/dde-toaster.component.ts -------------------------------------------------------------------------------- /src/app/services/code-snippets-repo.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/app/services/code-snippets-repo.service.spec.ts -------------------------------------------------------------------------------- /src/app/services/code-snippets-repo.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/app/services/code-snippets-repo.service.ts -------------------------------------------------------------------------------- /src/app/services/dde-action.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/app/services/dde-action.service.spec.ts -------------------------------------------------------------------------------- /src/app/services/dde-action.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/app/services/dde-action.service.ts -------------------------------------------------------------------------------- /src/app/services/dde-api.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/app/services/dde-api.service.spec.ts -------------------------------------------------------------------------------- /src/app/services/dde-api.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/app/services/dde-api.service.ts -------------------------------------------------------------------------------- /src/app/services/encrypt.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/app/services/encrypt.service.spec.ts -------------------------------------------------------------------------------- /src/app/services/encrypt.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/app/services/encrypt.service.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/css/font-awesome-animation.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/assets/css/font-awesome-animation.min.css -------------------------------------------------------------------------------- /src/assets/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/assets/css/styles.css -------------------------------------------------------------------------------- /src/assets/data/bikeShareRidesDemographicsSampleModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/assets/data/bikeShareRidesDemographicsSampleModule.json -------------------------------------------------------------------------------- /src/assets/data/bikeShareWeatherSampleModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/assets/data/bikeShareWeatherSampleModule.json -------------------------------------------------------------------------------- /src/assets/data/dashboardSpec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/assets/data/dashboardSpec.json -------------------------------------------------------------------------------- /src/assets/data/ddeCSVSampleModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/assets/data/ddeCSVSampleModule.json -------------------------------------------------------------------------------- /src/assets/data/ddeSampleSpec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/assets/data/ddeSampleSpec.json -------------------------------------------------------------------------------- /src/assets/fonts/HelvNeueBoldforIBM.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/assets/fonts/HelvNeueBoldforIBM.otf -------------------------------------------------------------------------------- /src/assets/fonts/HelvNeueBoldforIBM.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/assets/fonts/HelvNeueBoldforIBM.ttf -------------------------------------------------------------------------------- /src/assets/fonts/HelvNeueRomanforIBM.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/assets/fonts/HelvNeueRomanforIBM.otf -------------------------------------------------------------------------------- /src/assets/fonts/HelvNeueRomanforIBM.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/assets/fonts/HelvNeueRomanforIBM.ttf -------------------------------------------------------------------------------- /src/assets/images/DDE_32.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/assets/images/DDE_32.svg -------------------------------------------------------------------------------- /src/assets/images/DDE_white_32.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/assets/images/DDE_white_32.svg -------------------------------------------------------------------------------- /src/assets/images/chevron-down_16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/assets/images/chevron-down_16.svg -------------------------------------------------------------------------------- /src/assets/images/chevron-up_16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/assets/images/chevron-up_16.svg -------------------------------------------------------------------------------- /src/assets/images/close_16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/assets/images/close_16.svg -------------------------------------------------------------------------------- /src/assets/images/configure_32.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/assets/images/configure_32.svg -------------------------------------------------------------------------------- /src/assets/images/confirm_16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/assets/images/confirm_16.svg -------------------------------------------------------------------------------- /src/assets/images/copy_16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/assets/images/copy_16.svg -------------------------------------------------------------------------------- /src/assets/images/dashboard_empty_state.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/assets/images/dashboard_empty_state.png -------------------------------------------------------------------------------- /src/assets/images/dashboard_empty_state.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/assets/images/dashboard_empty_state.svg -------------------------------------------------------------------------------- /src/assets/images/edit_16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/assets/images/edit_16.svg -------------------------------------------------------------------------------- /src/assets/images/error_16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/assets/images/error_16.svg -------------------------------------------------------------------------------- /src/assets/images/exploreApi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/assets/images/exploreApi.png -------------------------------------------------------------------------------- /src/assets/images/forward_16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/assets/images/forward_16.svg -------------------------------------------------------------------------------- /src/assets/images/get-information_16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/assets/images/get-information_16.svg -------------------------------------------------------------------------------- /src/assets/images/hide-sidepane.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/assets/images/hide-sidepane.svg -------------------------------------------------------------------------------- /src/assets/images/link_16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/assets/images/link_16.svg -------------------------------------------------------------------------------- /src/assets/images/play_16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/assets/images/play_16.svg -------------------------------------------------------------------------------- /src/assets/images/refresh_16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/assets/images/refresh_16.svg -------------------------------------------------------------------------------- /src/assets/images/reset_16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/assets/images/reset_16.svg -------------------------------------------------------------------------------- /src/assets/images/table_128.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/assets/images/table_128.svg -------------------------------------------------------------------------------- /src/assets/images/warn_32.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/assets/images/warn_32.svg -------------------------------------------------------------------------------- /src/assets/resources/codeExplorer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/assets/resources/codeExplorer.json -------------------------------------------------------------------------------- /src/assets/resources/dialog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/assets/resources/dialog.json -------------------------------------------------------------------------------- /src/assets/resources/instrumentation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/assets/resources/instrumentation.json -------------------------------------------------------------------------------- /src/assets/resources/menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/assets/resources/menu.json -------------------------------------------------------------------------------- /src/assets/resources/references.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/assets/resources/references.json -------------------------------------------------------------------------------- /src/assets/video/CDE.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/assets/video/CDE.mp4 -------------------------------------------------------------------------------- /src/assets/video/videoCaptions.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/assets/video/videoCaptions.vtt -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/environments/environment.prod.ts -------------------------------------------------------------------------------- /src/environments/environment.stage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/environments/environment.stage.ts -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/index.html -------------------------------------------------------------------------------- /src/instrumentation/analytics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/instrumentation/analytics.ts -------------------------------------------------------------------------------- /src/instrumentation/pageTracking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/instrumentation/pageTracking.js -------------------------------------------------------------------------------- /src/instrumentation/segment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/instrumentation/segment.ts -------------------------------------------------------------------------------- /src/interfaces/apiAndDashboardTraits.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/interfaces/apiAndDashboardTraits.ts -------------------------------------------------------------------------------- /src/interfaces/commonTraits.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/interfaces/commonTraits.ts -------------------------------------------------------------------------------- /src/interfaces/dashboardInteractionTraits.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/interfaces/dashboardInteractionTraits.ts -------------------------------------------------------------------------------- /src/interfaces/documentationTraits.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/interfaces/documentationTraits.ts -------------------------------------------------------------------------------- /src/interfaces/messageTraits.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/interfaces/messageTraits.ts -------------------------------------------------------------------------------- /src/interfaces/videoTraits.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/interfaces/videoTraits.ts -------------------------------------------------------------------------------- /src/json-typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/json-typings.d.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/model/code-snippet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/model/code-snippet.ts -------------------------------------------------------------------------------- /src/model/dashboard-mode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/model/dashboard-mode.ts -------------------------------------------------------------------------------- /src/model/data-source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/model/data-source.ts -------------------------------------------------------------------------------- /src/model/session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/model/session.ts -------------------------------------------------------------------------------- /src/model/toaster.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/model/toaster.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/prism/prism.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/prism/prism.css -------------------------------------------------------------------------------- /src/prism/prism.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/prism/prism.js -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/test.ts -------------------------------------------------------------------------------- /src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/tsconfig.app.json -------------------------------------------------------------------------------- /src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/tsconfig.spec.json -------------------------------------------------------------------------------- /src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/src/typings.d.ts -------------------------------------------------------------------------------- /tests/test-eslint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/tests/test-eslint.sh -------------------------------------------------------------------------------- /tests/test-shellcheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/tests/test-shellcheck.sh -------------------------------------------------------------------------------- /tests/test-tslint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/tests/test-tslint.sh -------------------------------------------------------------------------------- /tests/test-yamllint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/tests/test-yamllint.sh -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vcap-local-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cognos-dashboard-demo/HEAD/vcap-local-example.json --------------------------------------------------------------------------------