├── .editorconfig ├── .github ├── sync-zpm-version.js └── workflows │ ├── angular-build.yml │ └── test-ui.yml ├── .gitignore ├── Addons.md ├── Dockerfile ├── Installer.cls ├── LICENSE ├── README.md ├── angular.json ├── dist ├── 3rdpartylicenses.txt ├── addons │ ├── heatmapChart.js │ ├── htmlViewer.js │ ├── simpleAddon.js │ └── worldMap.js ├── assets │ ├── countries.json │ ├── fonts │ │ ├── Oxygen-Bold.ttf │ │ ├── Oxygen-Light.ttf │ │ ├── Oxygen-Regular.ttf │ │ ├── RobotoCondensed-Bold.woff2 │ │ ├── RobotoCondensed-BoldItalic.woff2 │ │ ├── RobotoCondensed-Italic.woff2 │ │ ├── RobotoCondensed-Light.woff2 │ │ ├── RobotoCondensed-LightItalic.woff2 │ │ └── RobotoCondensed-Regular.woff2 │ └── img │ │ ├── DeepSee.svg │ │ ├── bg.jpg │ │ ├── eye.svg │ │ ├── icons │ │ ├── burger-menu-gray.svg │ │ ├── check-black-18dp.svg │ │ ├── check.svg │ │ ├── checkbox.svg │ │ ├── chevron_left-black-18dp.svg │ │ ├── close-black-18dp.svg │ │ ├── close.svg │ │ ├── done-black-18dp.svg │ │ ├── exposure-zero.svg │ │ ├── filter_alt-black-18dp.svg │ │ ├── format-list-numbered.svg │ │ ├── full-screen.svg │ │ ├── icon-check.svg │ │ ├── icon-close.svg │ │ ├── icon-copy.svg │ │ ├── icon-edit.svg │ │ ├── icon-filter.svg │ │ ├── icon-info.svg │ │ ├── icon-logout.svg │ │ ├── icon-namespace.svg │ │ ├── icon-navigate.svg │ │ ├── icon-next-blue.svg │ │ ├── icon-next.svg │ │ ├── icon-reload.svg │ │ ├── icon-search.svg │ │ ├── icon-settings.svg │ │ ├── icon-share.svg │ │ ├── language-24px.svg │ │ ├── legend-toggle.svg │ │ ├── menu.svg │ │ ├── next.svg │ │ ├── palette-icon.svg │ │ ├── pen.svg │ │ ├── percent.svg │ │ ├── reset.svg │ │ ├── search-black-18dp.svg │ │ ├── settings-black-24dp.svg │ │ ├── table.svg │ │ ├── text.svg │ │ ├── top-records.svg │ │ ├── undo-black-18dp.svg │ │ ├── view-2columns.svg │ │ ├── view-2colums.svg │ │ ├── view-3columns.svg │ │ ├── view-3colums.svg │ │ ├── view-4columns.svg │ │ ├── view-5columns.svg │ │ ├── view-6columns.svg │ │ └── view-list.svg │ │ ├── logo.png │ │ ├── logo.svg │ │ ├── map-marker-red.png │ │ ├── map-pin-icon.svg │ │ ├── smiley │ │ ├── smile-green.svg │ │ ├── smile-red.svg │ │ └── smile-yellow.svg │ │ ├── spinner.svg │ │ ├── traffic-light │ │ ├── green.svg │ │ ├── red.svg │ │ └── yellow.svg │ │ └── widget-icons │ │ ├── back-1.svg │ │ ├── dashboard-1.svg │ │ ├── folder-1.svg │ │ ├── widget-1.svg │ │ ├── widget-2.svg │ │ ├── widget-3.svg │ │ └── widget-4.svg ├── changelog.md ├── chunk-23TAPEHU.js ├── chunk-25ZBBMER.js ├── chunk-47WHPMM7.js ├── chunk-4MRDEY6D.js ├── chunk-4WDKLCO3.js ├── chunk-73FUIFMV.js ├── chunk-7HQIQATO.js ├── chunk-ADDCASHV.js ├── chunk-CBDZIDUZ.js ├── chunk-E7CY33YS.js ├── chunk-EDMICXNE.js ├── chunk-G7BOERRR.js ├── chunk-GCVBFG4W.js ├── chunk-GMIJI2L6.js ├── chunk-GOV7BL6D.js ├── chunk-HCCYM72S.js ├── chunk-HFC6Q7LK.js ├── chunk-HFMG5C3Y.js ├── chunk-HYHPV2CL.js ├── chunk-IRMKTQIF.js ├── chunk-K3QMQ326.js ├── chunk-MDOQS4TE.js ├── chunk-MG3ERZGY.js ├── chunk-MMI2QNEL.js ├── chunk-N4474LOE.js ├── chunk-N4BXP7J5.js ├── chunk-NF3Y2YSA.js ├── chunk-NHWJ6QQD.js ├── chunk-PZJJYAMS.js ├── chunk-Q5PXD6DJ.js ├── chunk-QDTU75BJ.js ├── chunk-QF4HUPZ6.js ├── chunk-QT4NCOPW.js ├── chunk-R6CE63SY.js ├── chunk-RAMUQZX4.js ├── chunk-RATLCH35.js ├── chunk-RU73HBGW.js ├── chunk-SLOIDLO2.js ├── chunk-TIOT34TO.js ├── chunk-XC5FPF3U.js ├── chunk-XEMLRN7T.js ├── chunk-XVF25FWQ.js ├── chunk-XXEHERYI.js ├── chunk-YE4HGH46.js ├── chunk-YZADXMU6.js ├── chunk-ZEAAPN4P.js ├── chunk-ZMZIHCGB.js ├── config.json ├── contrast.css ├── index.html ├── main-LJWXA3OR.js ├── manifest.webmanifest ├── media │ ├── fontawesome-webfont-3KIJVIEY.svg │ ├── fontawesome-webfont-5GKVPAEF.woff2 │ ├── fontawesome-webfont-FMJ3VJ65.eot │ ├── fontawesome-webfont-RJ6LE7IU.ttf │ └── fontawesome-webfont-Z4ARLA73.woff ├── polyfills-FFHMD2TL.js ├── scripts-OCQF5KZ6.js └── styles-IFVKUXJJ.css ├── docker-compose.yml ├── e2e └── main.test.js ├── iris.script ├── jest.config.js ├── karma.conf.js ├── module.xml ├── ngsw-config.json ├── oauth.json ├── package.json ├── proxy.conf.js ├── proxy.conf.local.js ├── proxy.conf.samples-bi.js ├── public └── config.json ├── screenshot.png ├── src ├── addons │ ├── heatmapChart.ts │ ├── htmlViewer.ts │ ├── simpleAddon.ts │ ├── tsconfig.json │ └── worldMap.ts ├── app │ ├── app.component.html │ ├── app.component.scss │ ├── app.component.ts │ ├── app.config.ts │ ├── app.routes.ts │ ├── components │ │ ├── editor │ │ │ ├── datasource-selector-dialog │ │ │ │ ├── datasource-selector-dialog.html │ │ │ │ ├── datasource-selector-dialog.scss │ │ │ │ └── datasource-selector-dialog.ts │ │ │ ├── editor-styles.scss │ │ │ ├── type-and-datasource │ │ │ │ ├── type-and-datasource.component.html │ │ │ │ ├── type-and-datasource.component.scss │ │ │ │ └── type-and-datasource.component.ts │ │ │ └── widget-editor │ │ │ │ ├── widget-editor.component.html │ │ │ │ ├── widget-editor.component.scss │ │ │ │ └── widget-editor.component.ts │ │ ├── screens │ │ │ ├── dashboard-screen │ │ │ │ ├── dashboard-editing.class.ts │ │ │ │ ├── dashboard-screen.component.html │ │ │ │ ├── dashboard-screen.component.scss │ │ │ │ └── dashboard-screen.component.ts │ │ │ ├── folder-screen │ │ │ │ ├── folder-screen.component.html │ │ │ │ ├── folder-screen.component.scss │ │ │ │ └── folder-screen.component.ts │ │ │ ├── login-screen │ │ │ │ ├── login-screen.component.html │ │ │ │ ├── login-screen.component.scss │ │ │ │ └── login-screen.component.ts │ │ │ └── main-screen │ │ │ │ ├── main-screen.component.html │ │ │ │ ├── main-screen.component.scss │ │ │ │ └── main-screen.component.ts │ │ ├── ui │ │ │ ├── about │ │ │ │ ├── about.component.html │ │ │ │ ├── about.component.scss │ │ │ │ └── about.component.ts │ │ │ ├── app-settings │ │ │ │ ├── app-settings.component.html │ │ │ │ ├── app-settings.component.scss │ │ │ │ └── app-settings.component.ts │ │ │ ├── chart-colors-config │ │ │ │ ├── chart-colors-config.component.html │ │ │ │ ├── chart-colors-config.component.scss │ │ │ │ └── chart-colors-config.component.ts │ │ │ ├── color-picker │ │ │ │ ├── color-picker.component.html │ │ │ │ ├── color-picker.component.scss │ │ │ │ └── color-picker.component.ts │ │ │ ├── date-filter │ │ │ │ ├── date-filter.component.html │ │ │ │ ├── date-filter.component.scss │ │ │ │ └── date-filter.component.ts │ │ │ ├── date-picker │ │ │ │ ├── date-picker.component.html │ │ │ │ ├── date-picker.component.scss │ │ │ │ └── date-picker.component.ts │ │ │ ├── error │ │ │ │ ├── error.component.html │ │ │ │ ├── error.component.scss │ │ │ │ └── error.component.ts │ │ │ ├── filter-popup │ │ │ │ ├── filter-popup.component.html │ │ │ │ ├── filter-popup.component.scss │ │ │ │ └── filter-popup.component.ts │ │ │ ├── header │ │ │ │ ├── header.component.html │ │ │ │ ├── header.component.scss │ │ │ │ └── header.component.ts │ │ │ ├── home-editor │ │ │ │ ├── home-editor.component.html │ │ │ │ ├── home-editor.component.scss │ │ │ │ └── home-editor.component.ts │ │ │ ├── input │ │ │ │ └── input │ │ │ │ │ ├── input.component.html │ │ │ │ │ ├── input.component.scss │ │ │ │ │ └── input.component.ts │ │ │ ├── language-selector │ │ │ │ ├── language-selector.component.html │ │ │ │ └── language-selector.component.ts │ │ │ ├── menu │ │ │ │ ├── menu-settings │ │ │ │ │ ├── menu-settings.component.html │ │ │ │ │ └── menu-settings.component.ts │ │ │ │ ├── menu.component.html │ │ │ │ ├── menu.component.scss │ │ │ │ └── menu.component.ts │ │ │ ├── modal │ │ │ │ ├── modal.component.html │ │ │ │ ├── modal.component.scss │ │ │ │ └── modal.component.ts │ │ │ ├── namespace-selector │ │ │ │ ├── namespace-selector.component.html │ │ │ │ └── namespace-selector.component.ts │ │ │ ├── search │ │ │ │ └── search-input │ │ │ │ │ ├── search-input.component.html │ │ │ │ │ ├── search-input.component.scss │ │ │ │ │ └── search-input.component.ts │ │ │ ├── share-dashboard │ │ │ │ └── share-dashboard │ │ │ │ │ ├── share-dashboard.component.html │ │ │ │ │ ├── share-dashboard.component.scss │ │ │ │ │ └── share-dashboard.component.ts │ │ │ ├── sidebar-actions │ │ │ │ ├── sidebar-actions.component.html │ │ │ │ ├── sidebar-actions.component.scss │ │ │ │ └── sidebar-actions.component.ts │ │ │ ├── sidebar │ │ │ │ ├── sidebar.component.html │ │ │ │ ├── sidebar.component.scss │ │ │ │ └── sidebar.component.ts │ │ │ ├── tabs │ │ │ │ ├── tabs.component.html │ │ │ │ ├── tabs.component.scss │ │ │ │ └── tabs.component.ts │ │ │ ├── text-area │ │ │ │ ├── text-area.component.html │ │ │ │ ├── text-area.component.scss │ │ │ │ └── text-area.component.ts │ │ │ └── theme-settings │ │ │ │ ├── theme-settings.component.html │ │ │ │ ├── theme-settings.component.scss │ │ │ │ └── theme-settings.component.ts │ │ └── widgets │ │ │ ├── base-widget.class.ts │ │ │ ├── base │ │ │ ├── meter-widget.class.ts │ │ │ ├── widget-filter │ │ │ │ ├── widget-filter.component.html │ │ │ │ ├── widget-filter.component.scss │ │ │ │ └── widget-filter.component.ts │ │ │ ├── widget-header │ │ │ │ ├── widget-header.component.html │ │ │ │ ├── widget-header.component.scss │ │ │ │ └── widget-header.component.ts │ │ │ └── widget │ │ │ │ ├── widget.component.html │ │ │ │ ├── widget.component.scss │ │ │ │ └── widget.component.ts │ │ │ ├── charts │ │ │ ├── area-chart.component.ts │ │ │ ├── bar-chart.component.ts │ │ │ ├── base-chart.class.ts │ │ │ ├── bubble-chart.component.ts │ │ │ ├── bullseye-chart.component.ts │ │ │ ├── column-chart.component.ts │ │ │ ├── fuel-gauge-chart.component.ts │ │ │ ├── hi-low-chart.component.ts │ │ │ ├── line-chart.component.ts │ │ │ ├── pie-chart.component.ts │ │ │ ├── speedometer-chart.component.ts │ │ │ ├── time-chart.component.ts │ │ │ ├── tree-map.component.ts │ │ │ └── xy-chart.component.ts │ │ │ ├── empty-widget.component.ts │ │ │ ├── light-bar │ │ │ ├── light-bar.component.html │ │ │ ├── light-bar.component.scss │ │ │ └── light-bar.component.ts │ │ │ ├── map-widget-old │ │ │ ├── map-widget.component.html │ │ │ ├── map-widget.component.scss │ │ │ └── map-widget.component.ts │ │ │ ├── map-widget │ │ │ ├── map-widget.component.html │ │ │ ├── map-widget.component.scss │ │ │ └── map-widget.component.ts │ │ │ ├── scorecard │ │ │ ├── scorecard-widget.component.html │ │ │ ├── scorecard-widget.component.scss │ │ │ └── scorecard-widget.ts │ │ │ ├── smiley │ │ │ ├── smiley.component.html │ │ │ ├── smiley.component.scss │ │ │ └── smiley.component.ts │ │ │ ├── text │ │ │ ├── wtext.component.html │ │ │ ├── wtext.component.scss │ │ │ └── wtext.component.ts │ │ │ ├── traffic-light │ │ │ ├── traffic-light.component.html │ │ │ ├── traffic-light.component.scss │ │ │ └── traffic-light.component.ts │ │ │ └── wpivot │ │ │ ├── pivot.component.html │ │ │ ├── pivot.component.scss │ │ │ └── pivot.component.ts │ ├── directives │ │ ├── auto-focus.directive.ts │ │ ├── focus-next.directive.ts │ │ └── tooltip.directive.ts │ ├── lib │ │ └── lightPivotTable.js │ └── services │ │ ├── broadcast.service.ts │ │ ├── config-resolver.ts │ │ ├── dashboard.service.ts │ │ ├── data.service.ts │ │ ├── dsw.types.ts │ │ ├── editor.service.ts │ │ ├── error.service.ts │ │ ├── filter.service.ts │ │ ├── header.service.ts │ │ ├── i18n.service.ts │ │ ├── lpt.types.ts │ │ ├── menu.service.ts │ │ ├── modal.service.ts │ │ ├── namespace.service.ts │ │ ├── sidebar.service.ts │ │ ├── startup.service.ts │ │ ├── storage.service.ts │ │ ├── util.service.ts │ │ ├── variables.service.ts │ │ ├── widget-type.service.ts │ │ └── widget.service.ts ├── assets │ ├── .gitkeep │ ├── countries.json │ ├── fonts │ │ ├── Oxygen-Bold.ttf │ │ ├── Oxygen-Light.ttf │ │ ├── Oxygen-Regular.ttf │ │ ├── RobotoCondensed-Bold.woff2 │ │ ├── RobotoCondensed-BoldItalic.woff2 │ │ ├── RobotoCondensed-Italic.woff2 │ │ ├── RobotoCondensed-Light.woff2 │ │ ├── RobotoCondensed-LightItalic.woff2 │ │ └── RobotoCondensed-Regular.woff2 │ └── img │ │ ├── DeepSee.svg │ │ ├── bg.jpg │ │ ├── eye.svg │ │ ├── icons │ │ ├── burger-menu-gray.svg │ │ ├── check-black-18dp.svg │ │ ├── check.svg │ │ ├── checkbox.svg │ │ ├── chevron_left-black-18dp.svg │ │ ├── close-black-18dp.svg │ │ ├── close.svg │ │ ├── done-black-18dp.svg │ │ ├── exposure-zero.svg │ │ ├── filter_alt-black-18dp.svg │ │ ├── format-list-numbered.svg │ │ ├── full-screen.svg │ │ ├── icon-check.svg │ │ ├── icon-close.svg │ │ ├── icon-copy.svg │ │ ├── icon-edit.svg │ │ ├── icon-filter.svg │ │ ├── icon-info.svg │ │ ├── icon-logout.svg │ │ ├── icon-namespace.svg │ │ ├── icon-navigate.svg │ │ ├── icon-next-blue.svg │ │ ├── icon-next.svg │ │ ├── icon-reload.svg │ │ ├── icon-search.svg │ │ ├── icon-settings.svg │ │ ├── icon-share.svg │ │ ├── language-24px.svg │ │ ├── legend-toggle.svg │ │ ├── menu.svg │ │ ├── next.svg │ │ ├── palette-icon.svg │ │ ├── pen.svg │ │ ├── percent.svg │ │ ├── reset.svg │ │ ├── search-black-18dp.svg │ │ ├── settings-black-24dp.svg │ │ ├── table.svg │ │ ├── text.svg │ │ ├── top-records.svg │ │ ├── undo-black-18dp.svg │ │ ├── view-2columns.svg │ │ ├── view-2colums.svg │ │ ├── view-3columns.svg │ │ ├── view-3colums.svg │ │ ├── view-4columns.svg │ │ ├── view-5columns.svg │ │ ├── view-6columns.svg │ │ └── view-list.svg │ │ ├── logo.png │ │ ├── logo.svg │ │ ├── map-marker-red.png │ │ ├── map-pin-icon.svg │ │ ├── smiley │ │ ├── smile-green.svg │ │ ├── smile-red.svg │ │ └── smile-yellow.svg │ │ ├── spinner.svg │ │ ├── traffic-light │ │ ├── green.svg │ │ ├── red.svg │ │ └── yellow.svg │ │ └── widget-icons │ │ ├── back-1.svg │ │ ├── dashboard-1.svg │ │ ├── folder-1.svg │ │ ├── widget-1.svg │ │ ├── widget-2.svg │ │ ├── widget-3.svg │ │ └── widget-4.svg ├── changelog.md ├── environments │ ├── dsw.ts │ ├── environment.prod.ts │ └── environment.ts ├── index.html ├── main.ts ├── manifest.webmanifest ├── polyfills.ts ├── scss │ ├── app.scss │ ├── breakpoints.scss │ ├── date-picker.scss │ ├── fonts.scss │ ├── gridster.scss │ ├── icons.scss │ ├── lightPivotTable.min.css │ ├── main.scss │ ├── mobile.scss │ ├── ng-select.scss │ ├── pivot-table.scss │ ├── themes │ │ ├── contrast.scss │ │ └── deepblue.scss │ └── variables.scss └── test.ts ├── tsconfig.app.json ├── tsconfig.json └── tslint.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/sync-zpm-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/.github/sync-zpm-version.js -------------------------------------------------------------------------------- /.github/workflows/angular-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/.github/workflows/angular-build.yml -------------------------------------------------------------------------------- /.github/workflows/test-ui.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/.github/workflows/test-ui.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/.gitignore -------------------------------------------------------------------------------- /Addons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/Addons.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/Dockerfile -------------------------------------------------------------------------------- /Installer.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/Installer.cls -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/angular.json -------------------------------------------------------------------------------- /dist/3rdpartylicenses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/3rdpartylicenses.txt -------------------------------------------------------------------------------- /dist/addons/heatmapChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/addons/heatmapChart.js -------------------------------------------------------------------------------- /dist/addons/htmlViewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/addons/htmlViewer.js -------------------------------------------------------------------------------- /dist/addons/simpleAddon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/addons/simpleAddon.js -------------------------------------------------------------------------------- /dist/addons/worldMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/addons/worldMap.js -------------------------------------------------------------------------------- /dist/assets/countries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/countries.json -------------------------------------------------------------------------------- /dist/assets/fonts/Oxygen-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/fonts/Oxygen-Bold.ttf -------------------------------------------------------------------------------- /dist/assets/fonts/Oxygen-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/fonts/Oxygen-Light.ttf -------------------------------------------------------------------------------- /dist/assets/fonts/Oxygen-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/fonts/Oxygen-Regular.ttf -------------------------------------------------------------------------------- /dist/assets/fonts/RobotoCondensed-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/fonts/RobotoCondensed-Bold.woff2 -------------------------------------------------------------------------------- /dist/assets/fonts/RobotoCondensed-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/fonts/RobotoCondensed-BoldItalic.woff2 -------------------------------------------------------------------------------- /dist/assets/fonts/RobotoCondensed-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/fonts/RobotoCondensed-Italic.woff2 -------------------------------------------------------------------------------- /dist/assets/fonts/RobotoCondensed-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/fonts/RobotoCondensed-Light.woff2 -------------------------------------------------------------------------------- /dist/assets/fonts/RobotoCondensed-LightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/fonts/RobotoCondensed-LightItalic.woff2 -------------------------------------------------------------------------------- /dist/assets/fonts/RobotoCondensed-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/fonts/RobotoCondensed-Regular.woff2 -------------------------------------------------------------------------------- /dist/assets/img/DeepSee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/img/DeepSee.svg -------------------------------------------------------------------------------- /dist/assets/img/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/img/bg.jpg -------------------------------------------------------------------------------- /dist/assets/img/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/img/eye.svg -------------------------------------------------------------------------------- /dist/assets/img/icons/burger-menu-gray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/img/icons/burger-menu-gray.svg -------------------------------------------------------------------------------- /dist/assets/img/icons/check-black-18dp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/img/icons/check-black-18dp.svg -------------------------------------------------------------------------------- /dist/assets/img/icons/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/img/icons/check.svg -------------------------------------------------------------------------------- /dist/assets/img/icons/checkbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/img/icons/checkbox.svg -------------------------------------------------------------------------------- /dist/assets/img/icons/chevron_left-black-18dp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/img/icons/chevron_left-black-18dp.svg -------------------------------------------------------------------------------- /dist/assets/img/icons/close-black-18dp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/img/icons/close-black-18dp.svg -------------------------------------------------------------------------------- /dist/assets/img/icons/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/img/icons/close.svg -------------------------------------------------------------------------------- /dist/assets/img/icons/done-black-18dp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/img/icons/done-black-18dp.svg -------------------------------------------------------------------------------- /dist/assets/img/icons/exposure-zero.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/img/icons/exposure-zero.svg -------------------------------------------------------------------------------- /dist/assets/img/icons/filter_alt-black-18dp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/img/icons/filter_alt-black-18dp.svg -------------------------------------------------------------------------------- /dist/assets/img/icons/format-list-numbered.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/img/icons/format-list-numbered.svg -------------------------------------------------------------------------------- /dist/assets/img/icons/full-screen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/img/icons/full-screen.svg -------------------------------------------------------------------------------- /dist/assets/img/icons/icon-check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/img/icons/icon-check.svg -------------------------------------------------------------------------------- /dist/assets/img/icons/icon-close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/img/icons/icon-close.svg -------------------------------------------------------------------------------- /dist/assets/img/icons/icon-copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/img/icons/icon-copy.svg -------------------------------------------------------------------------------- /dist/assets/img/icons/icon-edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/img/icons/icon-edit.svg -------------------------------------------------------------------------------- /dist/assets/img/icons/icon-filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/img/icons/icon-filter.svg -------------------------------------------------------------------------------- /dist/assets/img/icons/icon-info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/img/icons/icon-info.svg -------------------------------------------------------------------------------- /dist/assets/img/icons/icon-logout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/img/icons/icon-logout.svg -------------------------------------------------------------------------------- /dist/assets/img/icons/icon-namespace.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/img/icons/icon-namespace.svg -------------------------------------------------------------------------------- /dist/assets/img/icons/icon-navigate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/img/icons/icon-navigate.svg -------------------------------------------------------------------------------- /dist/assets/img/icons/icon-next-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/img/icons/icon-next-blue.svg -------------------------------------------------------------------------------- /dist/assets/img/icons/icon-next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/img/icons/icon-next.svg -------------------------------------------------------------------------------- /dist/assets/img/icons/icon-reload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/img/icons/icon-reload.svg -------------------------------------------------------------------------------- /dist/assets/img/icons/icon-search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/img/icons/icon-search.svg -------------------------------------------------------------------------------- /dist/assets/img/icons/icon-settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/img/icons/icon-settings.svg -------------------------------------------------------------------------------- /dist/assets/img/icons/icon-share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/img/icons/icon-share.svg -------------------------------------------------------------------------------- /dist/assets/img/icons/language-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/img/icons/language-24px.svg -------------------------------------------------------------------------------- /dist/assets/img/icons/legend-toggle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/img/icons/legend-toggle.svg -------------------------------------------------------------------------------- /dist/assets/img/icons/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/img/icons/menu.svg -------------------------------------------------------------------------------- /dist/assets/img/icons/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/img/icons/next.svg -------------------------------------------------------------------------------- /dist/assets/img/icons/palette-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/img/icons/palette-icon.svg -------------------------------------------------------------------------------- /dist/assets/img/icons/pen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/img/icons/pen.svg -------------------------------------------------------------------------------- /dist/assets/img/icons/percent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/img/icons/percent.svg -------------------------------------------------------------------------------- /dist/assets/img/icons/reset.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/img/icons/reset.svg -------------------------------------------------------------------------------- /dist/assets/img/icons/search-black-18dp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/img/icons/search-black-18dp.svg -------------------------------------------------------------------------------- /dist/assets/img/icons/settings-black-24dp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/img/icons/settings-black-24dp.svg -------------------------------------------------------------------------------- /dist/assets/img/icons/table.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/img/icons/table.svg -------------------------------------------------------------------------------- /dist/assets/img/icons/text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/img/icons/text.svg -------------------------------------------------------------------------------- /dist/assets/img/icons/top-records.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/img/icons/top-records.svg -------------------------------------------------------------------------------- /dist/assets/img/icons/undo-black-18dp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/img/icons/undo-black-18dp.svg -------------------------------------------------------------------------------- /dist/assets/img/icons/view-2columns.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/img/icons/view-2columns.svg -------------------------------------------------------------------------------- /dist/assets/img/icons/view-2colums.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/img/icons/view-2colums.svg -------------------------------------------------------------------------------- /dist/assets/img/icons/view-3columns.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/img/icons/view-3columns.svg -------------------------------------------------------------------------------- /dist/assets/img/icons/view-3colums.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/img/icons/view-3colums.svg -------------------------------------------------------------------------------- /dist/assets/img/icons/view-4columns.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/img/icons/view-4columns.svg -------------------------------------------------------------------------------- /dist/assets/img/icons/view-5columns.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/img/icons/view-5columns.svg -------------------------------------------------------------------------------- /dist/assets/img/icons/view-6columns.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/img/icons/view-6columns.svg -------------------------------------------------------------------------------- /dist/assets/img/icons/view-list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/img/icons/view-list.svg -------------------------------------------------------------------------------- /dist/assets/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/img/logo.png -------------------------------------------------------------------------------- /dist/assets/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/img/logo.svg -------------------------------------------------------------------------------- /dist/assets/img/map-marker-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/img/map-marker-red.png -------------------------------------------------------------------------------- /dist/assets/img/map-pin-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/img/map-pin-icon.svg -------------------------------------------------------------------------------- /dist/assets/img/smiley/smile-green.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/img/smiley/smile-green.svg -------------------------------------------------------------------------------- /dist/assets/img/smiley/smile-red.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/img/smiley/smile-red.svg -------------------------------------------------------------------------------- /dist/assets/img/smiley/smile-yellow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/img/smiley/smile-yellow.svg -------------------------------------------------------------------------------- /dist/assets/img/spinner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/img/spinner.svg -------------------------------------------------------------------------------- /dist/assets/img/traffic-light/green.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/img/traffic-light/green.svg -------------------------------------------------------------------------------- /dist/assets/img/traffic-light/red.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/img/traffic-light/red.svg -------------------------------------------------------------------------------- /dist/assets/img/traffic-light/yellow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/img/traffic-light/yellow.svg -------------------------------------------------------------------------------- /dist/assets/img/widget-icons/back-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/img/widget-icons/back-1.svg -------------------------------------------------------------------------------- /dist/assets/img/widget-icons/dashboard-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/img/widget-icons/dashboard-1.svg -------------------------------------------------------------------------------- /dist/assets/img/widget-icons/folder-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/img/widget-icons/folder-1.svg -------------------------------------------------------------------------------- /dist/assets/img/widget-icons/widget-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/img/widget-icons/widget-1.svg -------------------------------------------------------------------------------- /dist/assets/img/widget-icons/widget-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/img/widget-icons/widget-2.svg -------------------------------------------------------------------------------- /dist/assets/img/widget-icons/widget-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/img/widget-icons/widget-3.svg -------------------------------------------------------------------------------- /dist/assets/img/widget-icons/widget-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/assets/img/widget-icons/widget-4.svg -------------------------------------------------------------------------------- /dist/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/changelog.md -------------------------------------------------------------------------------- /dist/chunk-23TAPEHU.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/chunk-23TAPEHU.js -------------------------------------------------------------------------------- /dist/chunk-25ZBBMER.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/chunk-25ZBBMER.js -------------------------------------------------------------------------------- /dist/chunk-47WHPMM7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/chunk-47WHPMM7.js -------------------------------------------------------------------------------- /dist/chunk-4MRDEY6D.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/chunk-4MRDEY6D.js -------------------------------------------------------------------------------- /dist/chunk-4WDKLCO3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/chunk-4WDKLCO3.js -------------------------------------------------------------------------------- /dist/chunk-73FUIFMV.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/chunk-73FUIFMV.js -------------------------------------------------------------------------------- /dist/chunk-7HQIQATO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/chunk-7HQIQATO.js -------------------------------------------------------------------------------- /dist/chunk-ADDCASHV.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/chunk-ADDCASHV.js -------------------------------------------------------------------------------- /dist/chunk-CBDZIDUZ.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/chunk-CBDZIDUZ.js -------------------------------------------------------------------------------- /dist/chunk-E7CY33YS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/chunk-E7CY33YS.js -------------------------------------------------------------------------------- /dist/chunk-EDMICXNE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/chunk-EDMICXNE.js -------------------------------------------------------------------------------- /dist/chunk-G7BOERRR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/chunk-G7BOERRR.js -------------------------------------------------------------------------------- /dist/chunk-GCVBFG4W.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/chunk-GCVBFG4W.js -------------------------------------------------------------------------------- /dist/chunk-GMIJI2L6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/chunk-GMIJI2L6.js -------------------------------------------------------------------------------- /dist/chunk-GOV7BL6D.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/chunk-GOV7BL6D.js -------------------------------------------------------------------------------- /dist/chunk-HCCYM72S.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/chunk-HCCYM72S.js -------------------------------------------------------------------------------- /dist/chunk-HFC6Q7LK.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/chunk-HFC6Q7LK.js -------------------------------------------------------------------------------- /dist/chunk-HFMG5C3Y.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/chunk-HFMG5C3Y.js -------------------------------------------------------------------------------- /dist/chunk-HYHPV2CL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/chunk-HYHPV2CL.js -------------------------------------------------------------------------------- /dist/chunk-IRMKTQIF.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/chunk-IRMKTQIF.js -------------------------------------------------------------------------------- /dist/chunk-K3QMQ326.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/chunk-K3QMQ326.js -------------------------------------------------------------------------------- /dist/chunk-MDOQS4TE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/chunk-MDOQS4TE.js -------------------------------------------------------------------------------- /dist/chunk-MG3ERZGY.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/chunk-MG3ERZGY.js -------------------------------------------------------------------------------- /dist/chunk-MMI2QNEL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/chunk-MMI2QNEL.js -------------------------------------------------------------------------------- /dist/chunk-N4474LOE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/chunk-N4474LOE.js -------------------------------------------------------------------------------- /dist/chunk-N4BXP7J5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/chunk-N4BXP7J5.js -------------------------------------------------------------------------------- /dist/chunk-NF3Y2YSA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/chunk-NF3Y2YSA.js -------------------------------------------------------------------------------- /dist/chunk-NHWJ6QQD.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/chunk-NHWJ6QQD.js -------------------------------------------------------------------------------- /dist/chunk-PZJJYAMS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/chunk-PZJJYAMS.js -------------------------------------------------------------------------------- /dist/chunk-Q5PXD6DJ.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/chunk-Q5PXD6DJ.js -------------------------------------------------------------------------------- /dist/chunk-QDTU75BJ.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/chunk-QDTU75BJ.js -------------------------------------------------------------------------------- /dist/chunk-QF4HUPZ6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/chunk-QF4HUPZ6.js -------------------------------------------------------------------------------- /dist/chunk-QT4NCOPW.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/chunk-QT4NCOPW.js -------------------------------------------------------------------------------- /dist/chunk-R6CE63SY.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/chunk-R6CE63SY.js -------------------------------------------------------------------------------- /dist/chunk-RAMUQZX4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/chunk-RAMUQZX4.js -------------------------------------------------------------------------------- /dist/chunk-RATLCH35.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/chunk-RATLCH35.js -------------------------------------------------------------------------------- /dist/chunk-RU73HBGW.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/chunk-RU73HBGW.js -------------------------------------------------------------------------------- /dist/chunk-SLOIDLO2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/chunk-SLOIDLO2.js -------------------------------------------------------------------------------- /dist/chunk-TIOT34TO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/chunk-TIOT34TO.js -------------------------------------------------------------------------------- /dist/chunk-XC5FPF3U.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/chunk-XC5FPF3U.js -------------------------------------------------------------------------------- /dist/chunk-XEMLRN7T.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/chunk-XEMLRN7T.js -------------------------------------------------------------------------------- /dist/chunk-XVF25FWQ.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/chunk-XVF25FWQ.js -------------------------------------------------------------------------------- /dist/chunk-XXEHERYI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/chunk-XXEHERYI.js -------------------------------------------------------------------------------- /dist/chunk-YE4HGH46.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/chunk-YE4HGH46.js -------------------------------------------------------------------------------- /dist/chunk-YZADXMU6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/chunk-YZADXMU6.js -------------------------------------------------------------------------------- /dist/chunk-ZEAAPN4P.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/chunk-ZEAAPN4P.js -------------------------------------------------------------------------------- /dist/chunk-ZMZIHCGB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/chunk-ZMZIHCGB.js -------------------------------------------------------------------------------- /dist/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/config.json -------------------------------------------------------------------------------- /dist/contrast.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/contrast.css -------------------------------------------------------------------------------- /dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/index.html -------------------------------------------------------------------------------- /dist/main-LJWXA3OR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/main-LJWXA3OR.js -------------------------------------------------------------------------------- /dist/manifest.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/manifest.webmanifest -------------------------------------------------------------------------------- /dist/media/fontawesome-webfont-3KIJVIEY.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/media/fontawesome-webfont-3KIJVIEY.svg -------------------------------------------------------------------------------- /dist/media/fontawesome-webfont-5GKVPAEF.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/media/fontawesome-webfont-5GKVPAEF.woff2 -------------------------------------------------------------------------------- /dist/media/fontawesome-webfont-FMJ3VJ65.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/media/fontawesome-webfont-FMJ3VJ65.eot -------------------------------------------------------------------------------- /dist/media/fontawesome-webfont-RJ6LE7IU.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/media/fontawesome-webfont-RJ6LE7IU.ttf -------------------------------------------------------------------------------- /dist/media/fontawesome-webfont-Z4ARLA73.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/media/fontawesome-webfont-Z4ARLA73.woff -------------------------------------------------------------------------------- /dist/polyfills-FFHMD2TL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/polyfills-FFHMD2TL.js -------------------------------------------------------------------------------- /dist/scripts-OCQF5KZ6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/scripts-OCQF5KZ6.js -------------------------------------------------------------------------------- /dist/styles-IFVKUXJJ.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/dist/styles-IFVKUXJJ.css -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /e2e/main.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/e2e/main.test.js -------------------------------------------------------------------------------- /iris.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/iris.script -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/jest.config.js -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/karma.conf.js -------------------------------------------------------------------------------- /module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/module.xml -------------------------------------------------------------------------------- /ngsw-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/ngsw-config.json -------------------------------------------------------------------------------- /oauth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/oauth.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/package.json -------------------------------------------------------------------------------- /proxy.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/proxy.conf.js -------------------------------------------------------------------------------- /proxy.conf.local.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/proxy.conf.local.js -------------------------------------------------------------------------------- /proxy.conf.samples-bi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/proxy.conf.samples-bi.js -------------------------------------------------------------------------------- /public/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/public/config.json -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/screenshot.png -------------------------------------------------------------------------------- /src/addons/heatmapChart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/addons/heatmapChart.ts -------------------------------------------------------------------------------- /src/addons/htmlViewer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/addons/htmlViewer.ts -------------------------------------------------------------------------------- /src/addons/simpleAddon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/addons/simpleAddon.ts -------------------------------------------------------------------------------- /src/addons/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/addons/tsconfig.json -------------------------------------------------------------------------------- /src/addons/worldMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/addons/worldMap.ts -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/app.component.scss -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/app.config.ts -------------------------------------------------------------------------------- /src/app/app.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/app.routes.ts -------------------------------------------------------------------------------- /src/app/components/editor/datasource-selector-dialog/datasource-selector-dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/editor/datasource-selector-dialog/datasource-selector-dialog.html -------------------------------------------------------------------------------- /src/app/components/editor/datasource-selector-dialog/datasource-selector-dialog.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/editor/datasource-selector-dialog/datasource-selector-dialog.scss -------------------------------------------------------------------------------- /src/app/components/editor/datasource-selector-dialog/datasource-selector-dialog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/editor/datasource-selector-dialog/datasource-selector-dialog.ts -------------------------------------------------------------------------------- /src/app/components/editor/editor-styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/editor/editor-styles.scss -------------------------------------------------------------------------------- /src/app/components/editor/type-and-datasource/type-and-datasource.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/editor/type-and-datasource/type-and-datasource.component.html -------------------------------------------------------------------------------- /src/app/components/editor/type-and-datasource/type-and-datasource.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/editor/type-and-datasource/type-and-datasource.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/editor/type-and-datasource/type-and-datasource.component.ts -------------------------------------------------------------------------------- /src/app/components/editor/widget-editor/widget-editor.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/editor/widget-editor/widget-editor.component.html -------------------------------------------------------------------------------- /src/app/components/editor/widget-editor/widget-editor.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/editor/widget-editor/widget-editor.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/editor/widget-editor/widget-editor.component.ts -------------------------------------------------------------------------------- /src/app/components/screens/dashboard-screen/dashboard-editing.class.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/screens/dashboard-screen/dashboard-editing.class.ts -------------------------------------------------------------------------------- /src/app/components/screens/dashboard-screen/dashboard-screen.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/screens/dashboard-screen/dashboard-screen.component.html -------------------------------------------------------------------------------- /src/app/components/screens/dashboard-screen/dashboard-screen.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/screens/dashboard-screen/dashboard-screen.component.scss -------------------------------------------------------------------------------- /src/app/components/screens/dashboard-screen/dashboard-screen.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/screens/dashboard-screen/dashboard-screen.component.ts -------------------------------------------------------------------------------- /src/app/components/screens/folder-screen/folder-screen.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/screens/folder-screen/folder-screen.component.html -------------------------------------------------------------------------------- /src/app/components/screens/folder-screen/folder-screen.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/screens/folder-screen/folder-screen.component.scss -------------------------------------------------------------------------------- /src/app/components/screens/folder-screen/folder-screen.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/screens/folder-screen/folder-screen.component.ts -------------------------------------------------------------------------------- /src/app/components/screens/login-screen/login-screen.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/screens/login-screen/login-screen.component.html -------------------------------------------------------------------------------- /src/app/components/screens/login-screen/login-screen.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/screens/login-screen/login-screen.component.scss -------------------------------------------------------------------------------- /src/app/components/screens/login-screen/login-screen.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/screens/login-screen/login-screen.component.ts -------------------------------------------------------------------------------- /src/app/components/screens/main-screen/main-screen.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/screens/main-screen/main-screen.component.html -------------------------------------------------------------------------------- /src/app/components/screens/main-screen/main-screen.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/screens/main-screen/main-screen.component.scss -------------------------------------------------------------------------------- /src/app/components/screens/main-screen/main-screen.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/screens/main-screen/main-screen.component.ts -------------------------------------------------------------------------------- /src/app/components/ui/about/about.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/ui/about/about.component.html -------------------------------------------------------------------------------- /src/app/components/ui/about/about.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/ui/about/about.component.scss -------------------------------------------------------------------------------- /src/app/components/ui/about/about.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/ui/about/about.component.ts -------------------------------------------------------------------------------- /src/app/components/ui/app-settings/app-settings.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/ui/app-settings/app-settings.component.html -------------------------------------------------------------------------------- /src/app/components/ui/app-settings/app-settings.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/ui/app-settings/app-settings.component.scss -------------------------------------------------------------------------------- /src/app/components/ui/app-settings/app-settings.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/ui/app-settings/app-settings.component.ts -------------------------------------------------------------------------------- /src/app/components/ui/chart-colors-config/chart-colors-config.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/ui/chart-colors-config/chart-colors-config.component.html -------------------------------------------------------------------------------- /src/app/components/ui/chart-colors-config/chart-colors-config.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/ui/chart-colors-config/chart-colors-config.component.scss -------------------------------------------------------------------------------- /src/app/components/ui/chart-colors-config/chart-colors-config.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/ui/chart-colors-config/chart-colors-config.component.ts -------------------------------------------------------------------------------- /src/app/components/ui/color-picker/color-picker.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/ui/color-picker/color-picker.component.html -------------------------------------------------------------------------------- /src/app/components/ui/color-picker/color-picker.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/ui/color-picker/color-picker.component.scss -------------------------------------------------------------------------------- /src/app/components/ui/color-picker/color-picker.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/ui/color-picker/color-picker.component.ts -------------------------------------------------------------------------------- /src/app/components/ui/date-filter/date-filter.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/ui/date-filter/date-filter.component.html -------------------------------------------------------------------------------- /src/app/components/ui/date-filter/date-filter.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/ui/date-filter/date-filter.component.scss -------------------------------------------------------------------------------- /src/app/components/ui/date-filter/date-filter.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/ui/date-filter/date-filter.component.ts -------------------------------------------------------------------------------- /src/app/components/ui/date-picker/date-picker.component.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/ui/date-picker/date-picker.component.scss: -------------------------------------------------------------------------------- 1 | @import "variables"; 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/app/components/ui/date-picker/date-picker.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/ui/date-picker/date-picker.component.ts -------------------------------------------------------------------------------- /src/app/components/ui/error/error.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/ui/error/error.component.html -------------------------------------------------------------------------------- /src/app/components/ui/error/error.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/ui/error/error.component.scss -------------------------------------------------------------------------------- /src/app/components/ui/error/error.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/ui/error/error.component.ts -------------------------------------------------------------------------------- /src/app/components/ui/filter-popup/filter-popup.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/ui/filter-popup/filter-popup.component.html -------------------------------------------------------------------------------- /src/app/components/ui/filter-popup/filter-popup.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/ui/filter-popup/filter-popup.component.scss -------------------------------------------------------------------------------- /src/app/components/ui/filter-popup/filter-popup.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/ui/filter-popup/filter-popup.component.ts -------------------------------------------------------------------------------- /src/app/components/ui/header/header.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/ui/header/header.component.html -------------------------------------------------------------------------------- /src/app/components/ui/header/header.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/ui/header/header.component.scss -------------------------------------------------------------------------------- /src/app/components/ui/header/header.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/ui/header/header.component.ts -------------------------------------------------------------------------------- /src/app/components/ui/home-editor/home-editor.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/ui/home-editor/home-editor.component.html -------------------------------------------------------------------------------- /src/app/components/ui/home-editor/home-editor.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/ui/home-editor/home-editor.component.scss -------------------------------------------------------------------------------- /src/app/components/ui/home-editor/home-editor.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/ui/home-editor/home-editor.component.ts -------------------------------------------------------------------------------- /src/app/components/ui/input/input/input.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/ui/input/input/input.component.html -------------------------------------------------------------------------------- /src/app/components/ui/input/input/input.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/ui/input/input/input.component.scss -------------------------------------------------------------------------------- /src/app/components/ui/input/input/input.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/ui/input/input/input.component.ts -------------------------------------------------------------------------------- /src/app/components/ui/language-selector/language-selector.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/ui/language-selector/language-selector.component.html -------------------------------------------------------------------------------- /src/app/components/ui/language-selector/language-selector.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/ui/language-selector/language-selector.component.ts -------------------------------------------------------------------------------- /src/app/components/ui/menu/menu-settings/menu-settings.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/ui/menu/menu-settings/menu-settings.component.html -------------------------------------------------------------------------------- /src/app/components/ui/menu/menu-settings/menu-settings.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/ui/menu/menu-settings/menu-settings.component.ts -------------------------------------------------------------------------------- /src/app/components/ui/menu/menu.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/ui/menu/menu.component.html -------------------------------------------------------------------------------- /src/app/components/ui/menu/menu.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/ui/menu/menu.component.scss -------------------------------------------------------------------------------- /src/app/components/ui/menu/menu.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/ui/menu/menu.component.ts -------------------------------------------------------------------------------- /src/app/components/ui/modal/modal.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/ui/modal/modal.component.html -------------------------------------------------------------------------------- /src/app/components/ui/modal/modal.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/ui/modal/modal.component.scss -------------------------------------------------------------------------------- /src/app/components/ui/modal/modal.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/ui/modal/modal.component.ts -------------------------------------------------------------------------------- /src/app/components/ui/namespace-selector/namespace-selector.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/ui/namespace-selector/namespace-selector.component.html -------------------------------------------------------------------------------- /src/app/components/ui/namespace-selector/namespace-selector.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/ui/namespace-selector/namespace-selector.component.ts -------------------------------------------------------------------------------- /src/app/components/ui/search/search-input/search-input.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/ui/search/search-input/search-input.component.html -------------------------------------------------------------------------------- /src/app/components/ui/search/search-input/search-input.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/ui/search/search-input/search-input.component.scss -------------------------------------------------------------------------------- /src/app/components/ui/search/search-input/search-input.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/ui/search/search-input/search-input.component.ts -------------------------------------------------------------------------------- /src/app/components/ui/share-dashboard/share-dashboard/share-dashboard.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/ui/share-dashboard/share-dashboard/share-dashboard.component.html -------------------------------------------------------------------------------- /src/app/components/ui/share-dashboard/share-dashboard/share-dashboard.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/ui/share-dashboard/share-dashboard/share-dashboard.component.scss -------------------------------------------------------------------------------- /src/app/components/ui/share-dashboard/share-dashboard/share-dashboard.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/ui/share-dashboard/share-dashboard/share-dashboard.component.ts -------------------------------------------------------------------------------- /src/app/components/ui/sidebar-actions/sidebar-actions.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/ui/sidebar-actions/sidebar-actions.component.html -------------------------------------------------------------------------------- /src/app/components/ui/sidebar-actions/sidebar-actions.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/ui/sidebar-actions/sidebar-actions.component.scss -------------------------------------------------------------------------------- /src/app/components/ui/sidebar-actions/sidebar-actions.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/ui/sidebar-actions/sidebar-actions.component.ts -------------------------------------------------------------------------------- /src/app/components/ui/sidebar/sidebar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/ui/sidebar/sidebar.component.html -------------------------------------------------------------------------------- /src/app/components/ui/sidebar/sidebar.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/ui/sidebar/sidebar.component.scss -------------------------------------------------------------------------------- /src/app/components/ui/sidebar/sidebar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/ui/sidebar/sidebar.component.ts -------------------------------------------------------------------------------- /src/app/components/ui/tabs/tabs.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/ui/tabs/tabs.component.html -------------------------------------------------------------------------------- /src/app/components/ui/tabs/tabs.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/ui/tabs/tabs.component.scss -------------------------------------------------------------------------------- /src/app/components/ui/tabs/tabs.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/ui/tabs/tabs.component.ts -------------------------------------------------------------------------------- /src/app/components/ui/text-area/text-area.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/ui/text-area/text-area.component.html -------------------------------------------------------------------------------- /src/app/components/ui/text-area/text-area.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/ui/text-area/text-area.component.scss -------------------------------------------------------------------------------- /src/app/components/ui/text-area/text-area.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/ui/text-area/text-area.component.ts -------------------------------------------------------------------------------- /src/app/components/ui/theme-settings/theme-settings.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/ui/theme-settings/theme-settings.component.html -------------------------------------------------------------------------------- /src/app/components/ui/theme-settings/theme-settings.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/ui/theme-settings/theme-settings.component.scss -------------------------------------------------------------------------------- /src/app/components/ui/theme-settings/theme-settings.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/ui/theme-settings/theme-settings.component.ts -------------------------------------------------------------------------------- /src/app/components/widgets/base-widget.class.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/widgets/base-widget.class.ts -------------------------------------------------------------------------------- /src/app/components/widgets/base/meter-widget.class.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/widgets/base/meter-widget.class.ts -------------------------------------------------------------------------------- /src/app/components/widgets/base/widget-filter/widget-filter.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/widgets/base/widget-filter/widget-filter.component.html -------------------------------------------------------------------------------- /src/app/components/widgets/base/widget-filter/widget-filter.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/widgets/base/widget-filter/widget-filter.component.scss -------------------------------------------------------------------------------- /src/app/components/widgets/base/widget-filter/widget-filter.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/widgets/base/widget-filter/widget-filter.component.ts -------------------------------------------------------------------------------- /src/app/components/widgets/base/widget-header/widget-header.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/widgets/base/widget-header/widget-header.component.html -------------------------------------------------------------------------------- /src/app/components/widgets/base/widget-header/widget-header.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/widgets/base/widget-header/widget-header.component.scss -------------------------------------------------------------------------------- /src/app/components/widgets/base/widget-header/widget-header.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/widgets/base/widget-header/widget-header.component.ts -------------------------------------------------------------------------------- /src/app/components/widgets/base/widget/widget.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/widgets/base/widget/widget.component.html -------------------------------------------------------------------------------- /src/app/components/widgets/base/widget/widget.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/widgets/base/widget/widget.component.scss -------------------------------------------------------------------------------- /src/app/components/widgets/base/widget/widget.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/widgets/base/widget/widget.component.ts -------------------------------------------------------------------------------- /src/app/components/widgets/charts/area-chart.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/widgets/charts/area-chart.component.ts -------------------------------------------------------------------------------- /src/app/components/widgets/charts/bar-chart.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/widgets/charts/bar-chart.component.ts -------------------------------------------------------------------------------- /src/app/components/widgets/charts/base-chart.class.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/widgets/charts/base-chart.class.ts -------------------------------------------------------------------------------- /src/app/components/widgets/charts/bubble-chart.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/widgets/charts/bubble-chart.component.ts -------------------------------------------------------------------------------- /src/app/components/widgets/charts/bullseye-chart.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/widgets/charts/bullseye-chart.component.ts -------------------------------------------------------------------------------- /src/app/components/widgets/charts/column-chart.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/widgets/charts/column-chart.component.ts -------------------------------------------------------------------------------- /src/app/components/widgets/charts/fuel-gauge-chart.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/widgets/charts/fuel-gauge-chart.component.ts -------------------------------------------------------------------------------- /src/app/components/widgets/charts/hi-low-chart.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/widgets/charts/hi-low-chart.component.ts -------------------------------------------------------------------------------- /src/app/components/widgets/charts/line-chart.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/widgets/charts/line-chart.component.ts -------------------------------------------------------------------------------- /src/app/components/widgets/charts/pie-chart.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/widgets/charts/pie-chart.component.ts -------------------------------------------------------------------------------- /src/app/components/widgets/charts/speedometer-chart.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/widgets/charts/speedometer-chart.component.ts -------------------------------------------------------------------------------- /src/app/components/widgets/charts/time-chart.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/widgets/charts/time-chart.component.ts -------------------------------------------------------------------------------- /src/app/components/widgets/charts/tree-map.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/widgets/charts/tree-map.component.ts -------------------------------------------------------------------------------- /src/app/components/widgets/charts/xy-chart.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/widgets/charts/xy-chart.component.ts -------------------------------------------------------------------------------- /src/app/components/widgets/empty-widget.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/widgets/empty-widget.component.ts -------------------------------------------------------------------------------- /src/app/components/widgets/light-bar/light-bar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/widgets/light-bar/light-bar.component.html -------------------------------------------------------------------------------- /src/app/components/widgets/light-bar/light-bar.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/widgets/light-bar/light-bar.component.scss -------------------------------------------------------------------------------- /src/app/components/widgets/light-bar/light-bar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/widgets/light-bar/light-bar.component.ts -------------------------------------------------------------------------------- /src/app/components/widgets/map-widget-old/map-widget.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/widgets/map-widget-old/map-widget.component.html -------------------------------------------------------------------------------- /src/app/components/widgets/map-widget-old/map-widget.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/widgets/map-widget-old/map-widget.component.scss -------------------------------------------------------------------------------- /src/app/components/widgets/map-widget-old/map-widget.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/widgets/map-widget-old/map-widget.component.ts -------------------------------------------------------------------------------- /src/app/components/widgets/map-widget/map-widget.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/widgets/map-widget/map-widget.component.html -------------------------------------------------------------------------------- /src/app/components/widgets/map-widget/map-widget.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/widgets/map-widget/map-widget.component.scss -------------------------------------------------------------------------------- /src/app/components/widgets/map-widget/map-widget.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/widgets/map-widget/map-widget.component.ts -------------------------------------------------------------------------------- /src/app/components/widgets/scorecard/scorecard-widget.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/widgets/scorecard/scorecard-widget.component.html -------------------------------------------------------------------------------- /src/app/components/widgets/scorecard/scorecard-widget.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/widgets/scorecard/scorecard-widget.component.scss -------------------------------------------------------------------------------- /src/app/components/widgets/scorecard/scorecard-widget.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/widgets/scorecard/scorecard-widget.ts -------------------------------------------------------------------------------- /src/app/components/widgets/smiley/smiley.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/widgets/smiley/smiley.component.html -------------------------------------------------------------------------------- /src/app/components/widgets/smiley/smiley.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/widgets/smiley/smiley.component.scss -------------------------------------------------------------------------------- /src/app/components/widgets/smiley/smiley.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/widgets/smiley/smiley.component.ts -------------------------------------------------------------------------------- /src/app/components/widgets/text/wtext.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/widgets/text/wtext.component.html -------------------------------------------------------------------------------- /src/app/components/widgets/text/wtext.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/widgets/text/wtext.component.scss -------------------------------------------------------------------------------- /src/app/components/widgets/text/wtext.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/widgets/text/wtext.component.ts -------------------------------------------------------------------------------- /src/app/components/widgets/traffic-light/traffic-light.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/widgets/traffic-light/traffic-light.component.html -------------------------------------------------------------------------------- /src/app/components/widgets/traffic-light/traffic-light.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/widgets/traffic-light/traffic-light.component.scss -------------------------------------------------------------------------------- /src/app/components/widgets/traffic-light/traffic-light.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/widgets/traffic-light/traffic-light.component.ts -------------------------------------------------------------------------------- /src/app/components/widgets/wpivot/pivot.component.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/widgets/wpivot/pivot.component.scss: -------------------------------------------------------------------------------- 1 | :host { 2 | height: 100%; 3 | } 4 | -------------------------------------------------------------------------------- /src/app/components/widgets/wpivot/pivot.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/components/widgets/wpivot/pivot.component.ts -------------------------------------------------------------------------------- /src/app/directives/auto-focus.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/directives/auto-focus.directive.ts -------------------------------------------------------------------------------- /src/app/directives/focus-next.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/directives/focus-next.directive.ts -------------------------------------------------------------------------------- /src/app/directives/tooltip.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/directives/tooltip.directive.ts -------------------------------------------------------------------------------- /src/app/lib/lightPivotTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/lib/lightPivotTable.js -------------------------------------------------------------------------------- /src/app/services/broadcast.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/services/broadcast.service.ts -------------------------------------------------------------------------------- /src/app/services/config-resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/services/config-resolver.ts -------------------------------------------------------------------------------- /src/app/services/dashboard.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/services/dashboard.service.ts -------------------------------------------------------------------------------- /src/app/services/data.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/services/data.service.ts -------------------------------------------------------------------------------- /src/app/services/dsw.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/services/dsw.types.ts -------------------------------------------------------------------------------- /src/app/services/editor.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/services/editor.service.ts -------------------------------------------------------------------------------- /src/app/services/error.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/services/error.service.ts -------------------------------------------------------------------------------- /src/app/services/filter.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/services/filter.service.ts -------------------------------------------------------------------------------- /src/app/services/header.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/services/header.service.ts -------------------------------------------------------------------------------- /src/app/services/i18n.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/services/i18n.service.ts -------------------------------------------------------------------------------- /src/app/services/lpt.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/services/lpt.types.ts -------------------------------------------------------------------------------- /src/app/services/menu.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/services/menu.service.ts -------------------------------------------------------------------------------- /src/app/services/modal.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/services/modal.service.ts -------------------------------------------------------------------------------- /src/app/services/namespace.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/services/namespace.service.ts -------------------------------------------------------------------------------- /src/app/services/sidebar.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/services/sidebar.service.ts -------------------------------------------------------------------------------- /src/app/services/startup.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/services/startup.service.ts -------------------------------------------------------------------------------- /src/app/services/storage.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/services/storage.service.ts -------------------------------------------------------------------------------- /src/app/services/util.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/services/util.service.ts -------------------------------------------------------------------------------- /src/app/services/variables.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/services/variables.service.ts -------------------------------------------------------------------------------- /src/app/services/widget-type.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/services/widget-type.service.ts -------------------------------------------------------------------------------- /src/app/services/widget.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/app/services/widget.service.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/countries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/countries.json -------------------------------------------------------------------------------- /src/assets/fonts/Oxygen-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/fonts/Oxygen-Bold.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Oxygen-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/fonts/Oxygen-Light.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Oxygen-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/fonts/Oxygen-Regular.ttf -------------------------------------------------------------------------------- /src/assets/fonts/RobotoCondensed-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/fonts/RobotoCondensed-Bold.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/RobotoCondensed-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/fonts/RobotoCondensed-BoldItalic.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/RobotoCondensed-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/fonts/RobotoCondensed-Italic.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/RobotoCondensed-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/fonts/RobotoCondensed-Light.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/RobotoCondensed-LightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/fonts/RobotoCondensed-LightItalic.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/RobotoCondensed-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/fonts/RobotoCondensed-Regular.woff2 -------------------------------------------------------------------------------- /src/assets/img/DeepSee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/img/DeepSee.svg -------------------------------------------------------------------------------- /src/assets/img/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/img/bg.jpg -------------------------------------------------------------------------------- /src/assets/img/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/img/eye.svg -------------------------------------------------------------------------------- /src/assets/img/icons/burger-menu-gray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/img/icons/burger-menu-gray.svg -------------------------------------------------------------------------------- /src/assets/img/icons/check-black-18dp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/img/icons/check-black-18dp.svg -------------------------------------------------------------------------------- /src/assets/img/icons/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/img/icons/check.svg -------------------------------------------------------------------------------- /src/assets/img/icons/checkbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/img/icons/checkbox.svg -------------------------------------------------------------------------------- /src/assets/img/icons/chevron_left-black-18dp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/img/icons/chevron_left-black-18dp.svg -------------------------------------------------------------------------------- /src/assets/img/icons/close-black-18dp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/img/icons/close-black-18dp.svg -------------------------------------------------------------------------------- /src/assets/img/icons/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/img/icons/close.svg -------------------------------------------------------------------------------- /src/assets/img/icons/done-black-18dp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/img/icons/done-black-18dp.svg -------------------------------------------------------------------------------- /src/assets/img/icons/exposure-zero.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/img/icons/exposure-zero.svg -------------------------------------------------------------------------------- /src/assets/img/icons/filter_alt-black-18dp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/img/icons/filter_alt-black-18dp.svg -------------------------------------------------------------------------------- /src/assets/img/icons/format-list-numbered.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/img/icons/format-list-numbered.svg -------------------------------------------------------------------------------- /src/assets/img/icons/full-screen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/img/icons/full-screen.svg -------------------------------------------------------------------------------- /src/assets/img/icons/icon-check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/img/icons/icon-check.svg -------------------------------------------------------------------------------- /src/assets/img/icons/icon-close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/img/icons/icon-close.svg -------------------------------------------------------------------------------- /src/assets/img/icons/icon-copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/img/icons/icon-copy.svg -------------------------------------------------------------------------------- /src/assets/img/icons/icon-edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/img/icons/icon-edit.svg -------------------------------------------------------------------------------- /src/assets/img/icons/icon-filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/img/icons/icon-filter.svg -------------------------------------------------------------------------------- /src/assets/img/icons/icon-info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/img/icons/icon-info.svg -------------------------------------------------------------------------------- /src/assets/img/icons/icon-logout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/img/icons/icon-logout.svg -------------------------------------------------------------------------------- /src/assets/img/icons/icon-namespace.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/img/icons/icon-namespace.svg -------------------------------------------------------------------------------- /src/assets/img/icons/icon-navigate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/img/icons/icon-navigate.svg -------------------------------------------------------------------------------- /src/assets/img/icons/icon-next-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/img/icons/icon-next-blue.svg -------------------------------------------------------------------------------- /src/assets/img/icons/icon-next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/img/icons/icon-next.svg -------------------------------------------------------------------------------- /src/assets/img/icons/icon-reload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/img/icons/icon-reload.svg -------------------------------------------------------------------------------- /src/assets/img/icons/icon-search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/img/icons/icon-search.svg -------------------------------------------------------------------------------- /src/assets/img/icons/icon-settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/img/icons/icon-settings.svg -------------------------------------------------------------------------------- /src/assets/img/icons/icon-share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/img/icons/icon-share.svg -------------------------------------------------------------------------------- /src/assets/img/icons/language-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/img/icons/language-24px.svg -------------------------------------------------------------------------------- /src/assets/img/icons/legend-toggle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/img/icons/legend-toggle.svg -------------------------------------------------------------------------------- /src/assets/img/icons/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/img/icons/menu.svg -------------------------------------------------------------------------------- /src/assets/img/icons/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/img/icons/next.svg -------------------------------------------------------------------------------- /src/assets/img/icons/palette-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/img/icons/palette-icon.svg -------------------------------------------------------------------------------- /src/assets/img/icons/pen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/img/icons/pen.svg -------------------------------------------------------------------------------- /src/assets/img/icons/percent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/img/icons/percent.svg -------------------------------------------------------------------------------- /src/assets/img/icons/reset.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/img/icons/reset.svg -------------------------------------------------------------------------------- /src/assets/img/icons/search-black-18dp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/img/icons/search-black-18dp.svg -------------------------------------------------------------------------------- /src/assets/img/icons/settings-black-24dp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/img/icons/settings-black-24dp.svg -------------------------------------------------------------------------------- /src/assets/img/icons/table.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/img/icons/table.svg -------------------------------------------------------------------------------- /src/assets/img/icons/text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/img/icons/text.svg -------------------------------------------------------------------------------- /src/assets/img/icons/top-records.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/img/icons/top-records.svg -------------------------------------------------------------------------------- /src/assets/img/icons/undo-black-18dp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/img/icons/undo-black-18dp.svg -------------------------------------------------------------------------------- /src/assets/img/icons/view-2columns.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/img/icons/view-2columns.svg -------------------------------------------------------------------------------- /src/assets/img/icons/view-2colums.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/img/icons/view-2colums.svg -------------------------------------------------------------------------------- /src/assets/img/icons/view-3columns.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/img/icons/view-3columns.svg -------------------------------------------------------------------------------- /src/assets/img/icons/view-3colums.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/img/icons/view-3colums.svg -------------------------------------------------------------------------------- /src/assets/img/icons/view-4columns.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/img/icons/view-4columns.svg -------------------------------------------------------------------------------- /src/assets/img/icons/view-5columns.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/img/icons/view-5columns.svg -------------------------------------------------------------------------------- /src/assets/img/icons/view-6columns.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/img/icons/view-6columns.svg -------------------------------------------------------------------------------- /src/assets/img/icons/view-list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/img/icons/view-list.svg -------------------------------------------------------------------------------- /src/assets/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/img/logo.png -------------------------------------------------------------------------------- /src/assets/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/img/logo.svg -------------------------------------------------------------------------------- /src/assets/img/map-marker-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/img/map-marker-red.png -------------------------------------------------------------------------------- /src/assets/img/map-pin-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/img/map-pin-icon.svg -------------------------------------------------------------------------------- /src/assets/img/smiley/smile-green.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/img/smiley/smile-green.svg -------------------------------------------------------------------------------- /src/assets/img/smiley/smile-red.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/img/smiley/smile-red.svg -------------------------------------------------------------------------------- /src/assets/img/smiley/smile-yellow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/img/smiley/smile-yellow.svg -------------------------------------------------------------------------------- /src/assets/img/spinner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/img/spinner.svg -------------------------------------------------------------------------------- /src/assets/img/traffic-light/green.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/img/traffic-light/green.svg -------------------------------------------------------------------------------- /src/assets/img/traffic-light/red.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/img/traffic-light/red.svg -------------------------------------------------------------------------------- /src/assets/img/traffic-light/yellow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/img/traffic-light/yellow.svg -------------------------------------------------------------------------------- /src/assets/img/widget-icons/back-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/img/widget-icons/back-1.svg -------------------------------------------------------------------------------- /src/assets/img/widget-icons/dashboard-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/img/widget-icons/dashboard-1.svg -------------------------------------------------------------------------------- /src/assets/img/widget-icons/folder-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/img/widget-icons/folder-1.svg -------------------------------------------------------------------------------- /src/assets/img/widget-icons/widget-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/img/widget-icons/widget-1.svg -------------------------------------------------------------------------------- /src/assets/img/widget-icons/widget-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/img/widget-icons/widget-2.svg -------------------------------------------------------------------------------- /src/assets/img/widget-icons/widget-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/img/widget-icons/widget-3.svg -------------------------------------------------------------------------------- /src/assets/img/widget-icons/widget-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/assets/img/widget-icons/widget-4.svg -------------------------------------------------------------------------------- /src/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/changelog.md -------------------------------------------------------------------------------- /src/environments/dsw.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/environments/dsw.ts -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/manifest.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/manifest.webmanifest -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/scss/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/scss/app.scss -------------------------------------------------------------------------------- /src/scss/breakpoints.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/scss/breakpoints.scss -------------------------------------------------------------------------------- /src/scss/date-picker.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/scss/date-picker.scss -------------------------------------------------------------------------------- /src/scss/fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/scss/fonts.scss -------------------------------------------------------------------------------- /src/scss/gridster.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/scss/gridster.scss -------------------------------------------------------------------------------- /src/scss/icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/scss/icons.scss -------------------------------------------------------------------------------- /src/scss/lightPivotTable.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/scss/lightPivotTable.min.css -------------------------------------------------------------------------------- /src/scss/main.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scss/mobile.scss: -------------------------------------------------------------------------------- 1 | [desktop-hidden] { 2 | display: initial !important; 3 | } 4 | -------------------------------------------------------------------------------- /src/scss/ng-select.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/scss/ng-select.scss -------------------------------------------------------------------------------- /src/scss/pivot-table.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/scss/pivot-table.scss -------------------------------------------------------------------------------- /src/scss/themes/contrast.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/scss/themes/contrast.scss -------------------------------------------------------------------------------- /src/scss/themes/deepblue.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/scss/themes/deepblue.scss -------------------------------------------------------------------------------- /src/scss/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/scss/variables.scss -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/src/test.ts -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/DeepSeeWeb/HEAD/tslint.json --------------------------------------------------------------------------------