├── .eslintignore ├── .eslintrc.js ├── .fireq.json ├── .github ├── dependabot.yml └── workflows │ └── tests.yml ├── .gitignore ├── AUTHORS.md ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Gruntfile.js ├── LICENSE ├── README.md ├── TAGS.md ├── docs ├── item-states.dot └── templates │ └── api │ └── module.template.html ├── e2e ├── README-PROTRACTOR.md ├── README.md ├── client │ ├── .npmrc │ ├── Gruntfile.js │ ├── index.js │ ├── package.json │ ├── playwright.config.ts │ ├── playwright │ │ ├── .auth │ │ │ └── user.json │ │ ├── article-send-and-duplicate-authoring-angular.spec.ts │ │ ├── article-send-and-duplicate-authoring-react.spec.ts │ │ ├── article-send-to.spec.ts │ │ ├── article-versions.spec.ts │ │ ├── authoring.correct.spec.ts │ │ ├── authoring.custom-fields.spec.ts │ │ ├── authoring.picture.spec.ts │ │ ├── authoring.publish.embargo.spec.ts │ │ ├── authoring.spec.ts │ │ ├── content-profile.spec.ts │ │ ├── correct-item-corrections-workflow.spec.ts │ │ ├── correct-item.spec.ts │ │ ├── dashboard.monitoring-widget.spec.ts │ │ ├── dashboard.spec.ts │ │ ├── desks.spec.ts │ │ ├── editor3.spec.ts │ │ ├── editor3.spellchecker.running-mode.spec.ts │ │ ├── extensions │ │ │ └── availability-manager │ │ │ │ ├── daily-view.spec.ts │ │ │ │ ├── daily-view.spec.ts-snapshots │ │ │ │ ├── filtering-in-daily-view-1-chromium-linux.png │ │ │ │ ├── filtering-in-daily-view-2-chromium-linux.png │ │ │ │ ├── filtering-in-daily-view-3-chromium-linux.png │ │ │ │ ├── filtering-in-daily-view-4-chromium-linux.png │ │ │ │ ├── filtering-in-daily-view-5-chromium-linux.png │ │ │ │ ├── not-set-records-being-shown-when-there-are-no-other-records-in-a-day-1-chromium-linux.png │ │ │ │ └── not-set-records-being-shown-when-there-are-no-other-records-in-a-day-2-chromium-linux.png │ │ │ │ ├── settings.spec.ts │ │ │ │ ├── settings.spec.ts-snapshots │ │ │ │ ├── availability-manager-settings-day-preview-1-chromium-linux.png │ │ │ │ ├── availability-manager-settings-main-view-1-chromium-linux.png │ │ │ │ ├── availability-manager-settings-setting-availability-to-available-for-a-single-day-1-chromium-linux.png │ │ │ │ ├── availability-manager-settings-setting-availability-to-partially-available-for-a-single-day-1-chromium-linux.png │ │ │ │ ├── availability-manager-settings-setting-availability-to-partially-available-for-a-single-day-2-chromium-linux.png │ │ │ │ ├── first-use-enabling-settings-page-for-the-first-time-and-setting-availability-1-chromium-linux.png │ │ │ │ ├── first-use-enabling-settings-page-for-the-first-time-and-setting-availability-2-chromium-linux.png │ │ │ │ ├── first-use-enabling-settings-page-for-the-first-time-and-setting-availability-3-chromium-linux.png │ │ │ │ ├── first-use-enabling-settings-page-for-the-first-time-and-setting-availability-4-chromium-linux.png │ │ │ │ └── first-use-enabling-settings-page-for-the-first-time-and-setting-availability-5-chromium-linux.png │ │ │ │ ├── user-andy.json │ │ │ │ ├── user-michael.json │ │ │ │ ├── weekly-view.spec.ts │ │ │ │ └── weekly-view.spec.ts-snapshots │ │ │ │ ├── filtering-in-weekly-view-1-chromium-linux.png │ │ │ │ ├── filtering-in-weekly-view-2-chromium-linux.png │ │ │ │ ├── filtering-in-weekly-view-3-chromium-linux.png │ │ │ │ ├── filtering-in-weekly-view-4-chromium-linux.png │ │ │ │ ├── filtering-in-weekly-view-5-chromium-linux.png │ │ │ │ ├── not-set-records-being-shown-when-there-are-no-other-records-in-a-week-1-chromium-linux.png │ │ │ │ └── not-set-records-being-shown-when-there-are-no-other-records-in-a-week-2-chromium-linux.png │ │ ├── fetching.spec.ts │ │ ├── hightlights.spec.ts │ │ ├── internal-destinations.spec.ts │ │ ├── login.spec.ts │ │ ├── monitoring.custom-workspace.spec.ts │ │ ├── monitoring.duplication.spec.ts │ │ ├── monitoring.personal-space.spec.ts │ │ ├── monitoring.publishing.spec.ts │ │ ├── monitoring.spiking.spec.ts │ │ ├── multiedit.spec.ts │ │ ├── page-object-models │ │ │ ├── authoring.ts │ │ │ ├── media-editor.ts │ │ │ ├── monitoring.ts │ │ │ ├── multiedit.ts │ │ │ ├── settings │ │ │ │ └── content-profile.ts │ │ │ └── upload.ts │ │ ├── publish-queue.spec.ts │ │ ├── templates.spec.ts │ │ ├── typings │ │ │ └── refs.d.ts │ │ ├── user-management.spec.ts │ │ ├── user-profile.spec.ts │ │ └── utils │ │ │ ├── editor3.tsx │ │ │ ├── index.ts │ │ │ ├── inputs.tsx │ │ │ ├── storage-state.ts │ │ │ └── tree-select-driver.ts │ ├── protractor.conf.js │ ├── specs │ │ ├── _unstable-tests.txt │ │ ├── archived_spec.ts │ │ ├── authoring_spec.ts │ │ ├── content_filters_spec.ts │ │ ├── content_profile_spec.ts │ │ ├── content_spec.ts │ │ ├── dashboard_spec.ts │ │ ├── desks_spec.ts │ │ ├── dictionaries_spec.ts │ │ ├── editor3_spec.ts │ │ ├── fetch_spec.ts │ │ ├── fit_tests.sh │ │ ├── globals.d.ts │ │ ├── helpers │ │ │ ├── actions.ts │ │ │ ├── authoring.ts │ │ │ ├── backend.ts │ │ │ ├── constants.ts │ │ │ ├── content.ts │ │ │ ├── content_filters.ts │ │ │ ├── content_profiles.ts │ │ │ ├── dashboard.ts │ │ │ ├── desks.ts │ │ │ ├── dictionaries.ts │ │ │ ├── dropdown-terms.ts │ │ │ ├── filter_conditions.ts │ │ │ ├── fixtures.ts │ │ │ ├── highlights.ts │ │ │ ├── legal_archive.ts │ │ │ ├── master_desks.ts │ │ │ ├── metadata.ts │ │ │ ├── monitoring.ts │ │ │ ├── pages.ts │ │ │ ├── publish_queue.ts │ │ │ ├── search.ts │ │ │ ├── setup.ts │ │ │ ├── subscribers.ts │ │ │ ├── templates.ts │ │ │ ├── tree-select-driver.ts │ │ │ ├── user_prefs.ts │ │ │ ├── utils.ts │ │ │ ├── waitReady.ts │ │ │ └── workspace.ts │ │ ├── highlights_spec.ts │ │ ├── ingest_provider_spec.ts │ │ ├── ingest_settings_spec.ts │ │ ├── internal_destinations_spec.ts │ │ ├── legal_archive_spec.ts │ │ ├── marked_desks_spec.ts │ │ ├── monitoring_spec.ts │ │ ├── notifications_spec.ts │ │ ├── package_spec.ts │ │ ├── publishing_spec.ts │ │ ├── saved_search_spec.ts │ │ ├── search_spec.ts │ │ ├── send_spec.ts │ │ ├── smoke_test.list │ │ ├── spike_spec.ts │ │ ├── subscribers_spec.ts │ │ ├── suggest_spec.ts │ │ ├── templates_spec.ts │ │ ├── tsconfig.json │ │ ├── unfit_tests.sh │ │ ├── users_spec.ts │ │ ├── utils.ts │ │ ├── vocabularies_spec.ts │ │ └── workspace_spec.ts │ ├── superdesk.config.js │ ├── test-files │ │ ├── image-big.jpg │ │ ├── image-blue.jpg │ │ ├── image-green.jpg │ │ ├── image-red.jpg │ │ └── iptc-photo.jpg │ └── tsconfig.json └── server │ ├── .dockerignore │ ├── Dockerfile │ ├── Procfile │ ├── __pycache__ │ ├── app.cpython-36.pyc │ ├── gunicorn_config.cpython-36.pyc │ ├── settings.cpython-36.pyc │ └── wsgi.cpython-36.pyc │ ├── app.py │ ├── docker-compose.yml │ ├── dump │ ├── full │ │ ├── availability-management │ │ │ ├── contentapi_e2e │ │ │ │ ├── _sd_dump_metadata.json.bz2 │ │ │ │ ├── api_audit.json.bz2 │ │ │ │ ├── items.json.bz2 │ │ │ │ └── items_versions.json.bz2 │ │ │ ├── superdesk_e2e │ │ │ │ ├── _sd_dump_metadata.json.bz2 │ │ │ │ ├── activity.json.bz2 │ │ │ │ ├── archive.json.bz2 │ │ │ │ ├── archive_history.json.bz2 │ │ │ │ ├── archive_versions.json.bz2 │ │ │ │ ├── archive_versions_versions.json.bz2 │ │ │ │ ├── audit.json.bz2 │ │ │ │ ├── auth.json.bz2 │ │ │ │ ├── concept_items.json.bz2 │ │ │ │ ├── config.json.bz2 │ │ │ │ ├── content_filters.json.bz2 │ │ │ │ ├── content_templates.json.bz2 │ │ │ │ ├── content_types.json.bz2 │ │ │ │ ├── data_updates.json.bz2 │ │ │ │ ├── default_user_availability.json.bz2 │ │ │ │ ├── desks.json.bz2 │ │ │ │ ├── email_timestamps.json.bz2 │ │ │ │ ├── filter_conditions.json.bz2 │ │ │ │ ├── highlights.json.bz2 │ │ │ │ ├── ingest.json.bz2 │ │ │ │ ├── ingest_providers.json.bz2 │ │ │ │ ├── media_references.json.bz2 │ │ │ │ ├── mongolock.lock.json.bz2 │ │ │ │ ├── products.json.bz2 │ │ │ │ ├── publish_queue.json.bz2 │ │ │ │ ├── published.json.bz2 │ │ │ │ ├── roles.json.bz2 │ │ │ │ ├── routing_schemes.json.bz2 │ │ │ │ ├── rule_sets.json.bz2 │ │ │ │ ├── sequences.json.bz2 │ │ │ │ ├── stages.json.bz2 │ │ │ │ ├── subscribers.json.bz2 │ │ │ │ ├── usage_metrics.json.bz2 │ │ │ │ ├── user_availability.json.bz2 │ │ │ │ ├── user_metrics.json.bz2 │ │ │ │ ├── users.json.bz2 │ │ │ │ ├── validators.json.bz2 │ │ │ │ ├── vocabularies.json.bz2 │ │ │ │ └── workspaces.json.bz2 │ │ │ ├── superdesk_e2e_archived │ │ │ │ ├── _sd_dump_metadata.json.bz2 │ │ │ │ └── archived.json.bz2 │ │ │ └── superdesk_e2e_legal_archive │ │ │ │ ├── _sd_dump_metadata.json.bz2 │ │ │ │ ├── legal_archive.json.bz2 │ │ │ │ ├── legal_archive_history.json.bz2 │ │ │ │ └── legal_archive_versions.json.bz2 │ │ ├── legacy │ │ │ ├── contentapi_e2e │ │ │ │ ├── _sd_dump_metadata.json.bz2 │ │ │ │ ├── api_audit.json.bz2 │ │ │ │ ├── items.json.bz2 │ │ │ │ └── items_versions.json.bz2 │ │ │ ├── superdesk_e2e │ │ │ │ ├── _sd_dump_metadata.json.bz2 │ │ │ │ ├── activity.json.bz2 │ │ │ │ ├── archive.json.bz2 │ │ │ │ ├── archive_history.json.bz2 │ │ │ │ ├── archive_versions.json.bz2 │ │ │ │ ├── archive_versions_versions.json.bz2 │ │ │ │ ├── auth.json.bz2 │ │ │ │ ├── concept_items.json.bz2 │ │ │ │ ├── config.json.bz2 │ │ │ │ ├── content_filters.json.bz2 │ │ │ │ ├── content_templates.json.bz2 │ │ │ │ ├── content_types.json.bz2 │ │ │ │ ├── desks.json.bz2 │ │ │ │ ├── dictionaries.json.bz2 │ │ │ │ ├── email_timestamps.json.bz2 │ │ │ │ ├── filter_conditions.json.bz2 │ │ │ │ ├── highlights.json.bz2 │ │ │ │ ├── ingest.json.bz2 │ │ │ │ ├── ingest_providers.json.bz2 │ │ │ │ ├── internal_destinations.json.bz2 │ │ │ │ ├── media_references.json.bz2 │ │ │ │ ├── mongolock.lock.json.bz2 │ │ │ │ ├── products.json.bz2 │ │ │ │ ├── published.json.bz2 │ │ │ │ ├── roles.json.bz2 │ │ │ │ ├── routing_schemes.json.bz2 │ │ │ │ ├── rule_sets.json.bz2 │ │ │ │ ├── saved_searches.json.bz2 │ │ │ │ ├── sequences.json.bz2 │ │ │ │ ├── stages.json.bz2 │ │ │ │ ├── subscribers.json.bz2 │ │ │ │ ├── usage_metrics.json.bz2 │ │ │ │ ├── users.json.bz2 │ │ │ │ ├── validators.json.bz2 │ │ │ │ └── vocabularies.json.bz2 │ │ │ ├── superdesk_e2e_archived │ │ │ │ ├── _sd_dump_metadata.json.bz2 │ │ │ │ └── archived.json.bz2 │ │ │ └── superdesk_e2e_legal_archive │ │ │ │ ├── _sd_dump_metadata.json.bz2 │ │ │ │ ├── legal_archive.json.bz2 │ │ │ │ ├── legal_archive_history.json.bz2 │ │ │ │ └── legal_archive_versions.json.bz2 │ │ └── main │ │ │ ├── contentapi_e2e │ │ │ ├── _sd_dump_metadata.json.bz2 │ │ │ ├── api_audit.json.bz2 │ │ │ ├── items.json.bz2 │ │ │ └── items_versions.json.bz2 │ │ │ ├── superdesk_e2e │ │ │ ├── _lock.json.bz2 │ │ │ ├── _sd_dump_metadata.json.bz2 │ │ │ ├── activity.json.bz2 │ │ │ ├── archive.json.bz2 │ │ │ ├── archive_history.json.bz2 │ │ │ ├── archive_versions.json.bz2 │ │ │ ├── archive_versions_versions.json.bz2 │ │ │ ├── audit.json.bz2 │ │ │ ├── auth.json.bz2 │ │ │ ├── concept_items.json.bz2 │ │ │ ├── config.json.bz2 │ │ │ ├── content_filters.json.bz2 │ │ │ ├── content_templates.json.bz2 │ │ │ ├── content_types.json.bz2 │ │ │ ├── data_updates.json.bz2 │ │ │ ├── desks.json.bz2 │ │ │ ├── email_timestamps.json.bz2 │ │ │ ├── filter_conditions.json.bz2 │ │ │ ├── highlights.json.bz2 │ │ │ ├── ingest.json.bz2 │ │ │ ├── ingest_providers.json.bz2 │ │ │ ├── media_references.json.bz2 │ │ │ ├── products.json.bz2 │ │ │ ├── publish_queue.json.bz2 │ │ │ ├── published.json.bz2 │ │ │ ├── roles.json.bz2 │ │ │ ├── routing_schemes.json.bz2 │ │ │ ├── rule_sets.json.bz2 │ │ │ ├── saved_searches.json.bz2 │ │ │ ├── sequences.json.bz2 │ │ │ ├── stages.json.bz2 │ │ │ ├── subscribers.json.bz2 │ │ │ ├── usage_metrics.json.bz2 │ │ │ ├── user_availability.json.bz2 │ │ │ ├── user_metrics.json.bz2 │ │ │ ├── users.json.bz2 │ │ │ ├── validators.json.bz2 │ │ │ ├── vocabularies.json.bz2 │ │ │ └── workspaces.json.bz2 │ │ │ ├── superdesk_e2e_archived │ │ │ ├── _sd_dump_metadata.json.bz2 │ │ │ └── archived.json.bz2 │ │ │ └── superdesk_e2e_legal_archive │ │ │ ├── _sd_dump_metadata.json.bz2 │ │ │ ├── legal_archive.json.bz2 │ │ │ ├── legal_archive_history.json.bz2 │ │ │ └── legal_archive_versions.json.bz2 │ └── records │ │ ├── README.md │ │ ├── availability-management.json.bz2 │ │ ├── custom-blocks.json.bz2 │ │ ├── editor3-tables.json.bz2 │ │ ├── legacy.json.bz2 │ │ ├── main.json.bz2 │ │ └── spellchecker.json.bz2 │ ├── hypercorn_config.py │ ├── manage.py │ ├── mongo-rs-initialize.js │ ├── requirements.in │ ├── requirements.txt │ ├── settings.py │ ├── test_e2e.sh │ ├── worker.py │ ├── ws.py │ └── wsgi.py ├── end-to-end-testing-helpers ├── articlesList.ts ├── expected-conditions-extended.ts ├── index.ts ├── package-lock.json ├── package.json ├── tsconfig.json └── workspace.ts ├── fixtures ├── empty_metadata.jpg ├── empty_metadata.mov ├── metadata.jpg └── metadata.mov ├── fonts ├── .DS_Store ├── sd_icons.eot ├── sd_icons.svg ├── sd_icons.ttf └── sd_icons.woff ├── grep-lint.py ├── images ├── .DS_Store ├── SF_logo.svg ├── avatar-icons.png ├── avatar_200.png ├── avatar_64.png ├── avatar_group_64.png ├── avatar_group_64_green_bg.png ├── checkmark-big-full.png ├── checkmark-big.png ├── comment-ballon.png ├── docs │ └── modals │ │ ├── modal-basic-extended-content.png │ │ ├── modal-basic.png │ │ ├── modal-big.png │ │ ├── modal-large.png │ │ ├── modal-responsive.png │ │ ├── modal-static.png │ │ └── modal-streched.png ├── dragfiles.png ├── draggable-bg.png ├── dropdown-arrow-bottom.png ├── dropdown-arrow-side.png ├── dropdown-arrow-top.png ├── favicon.ico ├── icon_upload_error_big.png ├── icons_switch_view.png ├── loading-large.gif ├── loading-small.gif ├── navigation-arrows.png ├── round-close.png ├── sample │ ├── activity1.jpg │ ├── activity2.jpg │ ├── profileimg.jpg │ └── widgets │ │ ├── currencies.png │ │ ├── default.png │ │ ├── twitter-trending.png │ │ └── weather.png ├── search-icon.png ├── sf-checkbox.png ├── superdesk-logo.svg ├── superdesk-logo_white.svg ├── switch-view-tabs.png ├── three-dots-white.svg ├── three-dots.svg ├── unplug.png ├── urgency-slider.png ├── widget-resize-icons.png └── widget-slider.png ├── index.html.js ├── jsconfig.json ├── karma.conf.js ├── package.json ├── package.md ├── patches ├── @types+draft-js++immutable+3.7.6.patch ├── README.md ├── csstype+2.6.17.patch └── immutable+3.8.2.patch ├── po ├── ach.po ├── ady.po ├── af_ZA.po ├── ar.mo ├── ar.po ├── ar_EG.po ├── ca.po ├── cs_CZ.po ├── da.po ├── de_DE.po ├── el.po ├── en_AU.po ├── en_GB.po ├── en_US.po ├── es.po ├── es_AR.po ├── fa.po ├── fi_FI.po ├── fr.po ├── fr_CA.po ├── he.po ├── hu_HU.po ├── it.po ├── nb.po ├── nl.po ├── pl.po ├── planning │ └── nb.po ├── pt.po ├── pt_BR.po ├── ro.po ├── ru_RU.po ├── superdesk.pot ├── sv_SE.po ├── tr_TR.po └── uk_UA.po ├── scripts ├── api │ ├── article-duplicate.tsx │ ├── article-fetch.tsx │ ├── article-patch.ts │ ├── article-send.tsx │ ├── article.ts │ ├── config.tsx │ ├── content-profiles.ts │ ├── desks.ts │ ├── highlights.ts │ ├── index.ts │ ├── ingest.ts │ ├── local-storage.ts │ ├── navigation.ts │ ├── preferences.ts │ ├── templates.ts │ ├── time.ts │ ├── user.ts │ └── vocabularies.ts ├── appConfig.ts ├── apps │ ├── archive │ │ ├── actions.ts │ │ ├── constants.ts │ │ ├── controllers │ │ │ ├── ArchiveListController.ts │ │ │ ├── BaseListController.ts │ │ │ ├── DuplicateController.ts │ │ │ ├── UploadController.ts │ │ │ ├── file-upload-error-modal.tsx │ │ │ └── index.ts │ │ ├── directives │ │ │ ├── ArchivedItemKill.ts │ │ │ ├── AssignmentIcon.ts │ │ │ ├── AssociatedItemMetadata.ts │ │ │ ├── ContentResults.ts │ │ │ ├── DraggableItem.ts │ │ │ ├── Export.ts │ │ │ ├── FetchedDesks.ts │ │ │ ├── HtmlPreview.ts │ │ │ ├── InlineMeta.ts │ │ │ ├── ItemCrops.ts │ │ │ ├── ItemLock.ts │ │ │ ├── ItemPriority.ts │ │ │ ├── ItemRendition.ts │ │ │ ├── ItemState.ts │ │ │ ├── ItemUrgency.ts │ │ │ ├── MarkedItemTitle.ts │ │ │ ├── MediaMetadata.ts │ │ │ ├── MediaPreview.ts │ │ │ ├── MediaUsed.ts │ │ │ ├── MetaIngest.ts │ │ │ ├── PackageItemLabelsDropdown.ts │ │ │ ├── RatioCalc.ts │ │ │ ├── RelatedItemsPreview.ts │ │ │ ├── ResendItem.ts │ │ │ └── index.ts │ │ ├── index.tsx │ │ ├── parse-metadata.ts │ │ ├── related-item-widget │ │ │ ├── related-item-widget.spec.ts │ │ │ ├── relatedItem-configuration.html │ │ │ ├── relatedItem-list.html │ │ │ ├── relatedItem.ts │ │ │ ├── thumbnail.png │ │ │ └── widget-relatedItem.html │ │ ├── services │ │ │ ├── ArchiveService.ts │ │ │ ├── FamilyService.ts │ │ │ ├── MultiService.ts │ │ │ ├── index.ts │ │ │ └── viewPreferences.ts │ │ ├── show-spike-dialog.tsx │ │ ├── styles │ │ │ ├── assignment.scss │ │ │ ├── html-preview.scss │ │ │ └── related-item.scss │ │ ├── tests │ │ │ ├── archive.spec.ts │ │ │ ├── family.spec.ts │ │ │ └── metadata.spec.ts │ │ ├── utils.ts │ │ └── views │ │ │ ├── archived-kill.html │ │ │ ├── assignment-icon.html │ │ │ ├── export-dropdown.html │ │ │ ├── export.html │ │ │ ├── fetched-desks.html │ │ │ ├── html-preview.html │ │ │ ├── inline-meta.html │ │ │ ├── item-crops.html │ │ │ ├── item-lock.html │ │ │ ├── item-preview.html │ │ │ ├── item-rendition.html │ │ │ ├── item-state.html │ │ │ ├── list.html │ │ │ ├── marked_item_title.html │ │ │ ├── media-used-view.html │ │ │ ├── metadata-associateditem-view.html │ │ │ ├── metadata-view.html │ │ │ ├── package_item_labels_dropdown.html │ │ │ ├── package_item_labels_dropdown_directive.html │ │ │ ├── preview.html │ │ │ ├── provider-menu.html │ │ │ ├── related-items-preview.html │ │ │ ├── related-view.tsx │ │ │ ├── resend-configuration.html │ │ │ └── upload.html │ ├── authoring-bridge │ │ ├── authoring-api-common.ts │ │ └── receive-patches.ts │ ├── authoring-react │ │ ├── README.md │ │ ├── article-adapter.ts │ │ ├── article-widgets │ │ │ ├── README.MD │ │ │ ├── comments │ │ │ │ └── index.tsx │ │ │ ├── demo-widget.tsx │ │ │ ├── find-and-replace.tsx │ │ │ ├── inline-comments.tsx │ │ │ ├── metadata │ │ │ │ ├── AnnotationsPreview.tsx │ │ │ │ ├── annotations-preview.scss │ │ │ │ ├── metadata-item.tsx │ │ │ │ └── metadata.tsx │ │ │ ├── suggestions.tsx │ │ │ ├── translations │ │ │ │ ├── TranslationsBody.tsx │ │ │ │ └── translations.tsx │ │ │ └── versions-and-item-history │ │ │ │ ├── history-tab.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── transmission-details.tsx │ │ │ │ └── versions-tab.tsx │ │ ├── authoring-angular-integration.tsx │ │ ├── authoring-angular-template-integration.tsx │ │ ├── authoring-integration-wrapper-sidebar.tsx │ │ ├── authoring-integration-wrapper.tsx │ │ ├── authoring-react-editor-events.ts │ │ ├── authoring-react.scss │ │ ├── authoring-react.tsx │ │ ├── authoring-section │ │ │ ├── authoring-section-field.tsx │ │ │ ├── authoring-section.tsx │ │ │ └── get-field-container.tsx │ │ ├── authoring-swtich.tsx │ │ ├── auto-save-http.ts │ │ ├── compare-articles │ │ │ ├── compare-articles.tsx │ │ │ └── view-difference.tsx │ │ ├── copy-embedded-articles-into-associations.ts │ │ ├── data-layer.ts │ │ ├── editor3-tansa-integration.tsx │ │ ├── field-adapters │ │ │ ├── _media_self.ts │ │ │ ├── abstract.ts │ │ │ ├── anpa_category.ts │ │ │ ├── anpa_take_key.ts │ │ │ ├── attachments.ts │ │ │ ├── authors.tsx │ │ │ ├── body_footer.ts │ │ │ ├── body_html.ts │ │ │ ├── byline.ts │ │ │ ├── dateline.ts │ │ │ ├── description_text.ts │ │ │ ├── ednote.ts │ │ │ ├── feature_media.ts │ │ │ ├── genre.ts │ │ │ ├── headline.ts │ │ │ ├── index.spec.ts │ │ │ ├── index.tsx │ │ │ ├── keywords.ts │ │ │ ├── language.ts │ │ │ ├── package_items.ts │ │ │ ├── place.ts │ │ │ ├── priority.ts │ │ │ ├── sign_off.tsx │ │ │ ├── slugline.ts │ │ │ ├── sms_message.ts │ │ │ ├── subject.tsx │ │ │ ├── urgency.ts │ │ │ ├── usageterms.ts │ │ │ └── utilities │ │ │ │ ├── compute-editor3-output.ts │ │ │ │ └── index.ts │ │ ├── fields │ │ │ ├── attachments │ │ │ │ ├── authoring-widget.tsx │ │ │ │ ├── difference-default-implementation.tsx │ │ │ │ ├── difference-row.tsx │ │ │ │ ├── difference.tsx │ │ │ │ ├── editor.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── preview.tsx │ │ │ ├── boolean │ │ │ │ ├── editor.tsx │ │ │ │ ├── index.ts │ │ │ │ └── preview.tsx │ │ │ ├── common-field-configuration.tsx │ │ │ ├── date │ │ │ │ ├── config.tsx │ │ │ │ ├── difference.tsx │ │ │ │ ├── editor.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── preview.tsx │ │ │ ├── dateline │ │ │ │ ├── difference.tsx │ │ │ │ ├── editor.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── preview.tsx │ │ │ ├── datetime │ │ │ │ ├── difference.tsx │ │ │ │ ├── editor.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── preview.tsx │ │ │ ├── difference-generic.tsx │ │ │ ├── difference-statistics.ts │ │ │ ├── dropdown │ │ │ │ ├── README.md │ │ │ │ ├── config-main.tsx │ │ │ │ ├── difference.tsx │ │ │ │ ├── dropdown-item-template.tsx │ │ │ │ ├── dropdown-manual-entry │ │ │ │ │ ├── config.tsx │ │ │ │ │ ├── difference.tsx │ │ │ │ │ ├── editor.tsx │ │ │ │ │ └── preview.tsx │ │ │ │ ├── dropdown-remote-source │ │ │ │ │ ├── difference.tsx │ │ │ │ │ ├── editor.tsx │ │ │ │ │ ├── get-value-template.tsx │ │ │ │ │ └── preview.tsx │ │ │ │ ├── dropdown-tree │ │ │ │ │ ├── difference.tsx │ │ │ │ │ ├── editor.tsx │ │ │ │ │ ├── get-value-template.tsx │ │ │ │ │ └── preview.tsx │ │ │ │ ├── dropdown-vocabulary │ │ │ │ │ ├── config.tsx │ │ │ │ │ ├── difference.tsx │ │ │ │ │ ├── editor.tsx │ │ │ │ │ ├── get-options.ts │ │ │ │ │ └── preview.tsx │ │ │ │ ├── editor-using-manual-source-or-vocabulary.tsx │ │ │ │ ├── editor.tsx │ │ │ │ ├── index.ts │ │ │ │ └── preview.tsx │ │ │ ├── duration │ │ │ │ ├── difference.tsx │ │ │ │ ├── editor.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── preview.tsx │ │ │ ├── editor3 │ │ │ │ ├── config.tsx │ │ │ │ ├── difference.tsx │ │ │ │ ├── editor.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── preview.tsx │ │ │ ├── embed │ │ │ │ ├── difference.tsx │ │ │ │ ├── editor.tsx │ │ │ │ ├── embed-preview.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── preview.tsx │ │ │ ├── linked-items │ │ │ │ ├── difference.tsx │ │ │ │ ├── editor.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── preview.tsx │ │ │ ├── media │ │ │ │ ├── config.tsx │ │ │ │ ├── constants.ts │ │ │ │ ├── difference.tsx │ │ │ │ ├── edit-metadata.ts │ │ │ │ ├── editor.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── media-carousel │ │ │ │ │ ├── audio.tsx │ │ │ │ │ ├── image-crops.tsx │ │ │ │ │ ├── image.tsx │ │ │ │ │ ├── media-carousel.tsx │ │ │ │ │ └── video.tsx │ │ │ │ ├── media-field.scss │ │ │ │ ├── media-metadata.tsx │ │ │ │ ├── media-thumbnails.tsx │ │ │ │ └── preview.tsx │ │ │ ├── package-items │ │ │ │ ├── difference.tsx │ │ │ │ ├── editor.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── preview.tsx │ │ │ ├── register-fields.ts │ │ │ ├── tag-input │ │ │ │ ├── difference.tsx │ │ │ │ ├── editor.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── preview.tsx │ │ │ ├── time │ │ │ │ ├── difference.tsx │ │ │ │ ├── editor.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── preview.tsx │ │ │ └── urls │ │ │ │ ├── difference.tsx │ │ │ │ ├── editor.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── preview.tsx │ │ ├── generate-html-diff.tsx │ │ ├── generic-widgets │ │ │ ├── comments │ │ │ │ ├── Comment.tsx │ │ │ │ ├── CommentsWidget.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── interfaces.ts │ │ │ │ └── mention.style.ts │ │ │ └── inline-comments.tsx │ │ ├── interfaces.ts │ │ ├── macros │ │ │ ├── README.md │ │ │ ├── interactive-macros-display.tsx │ │ │ └── macros.tsx │ │ ├── manage-widget-registration.ts │ │ ├── multi-edit-modal.tsx │ │ ├── packages.tsx │ │ ├── preview-article-modal.tsx │ │ ├── preview-authoring-item.tsx │ │ ├── subcomponents │ │ │ ├── authoring-actions-menu.tsx │ │ │ ├── authoring-toolbar.tsx │ │ │ ├── content-profile-dropdown.tsx │ │ │ ├── created-modified-info.tsx │ │ │ ├── desk-and-stage.tsx │ │ │ ├── lock-info-generic.tsx │ │ │ └── lock-info.tsx │ │ ├── toolbar │ │ │ ├── compare-article-versions.tsx │ │ │ ├── export-modal.tsx │ │ │ ├── highlights-management.tsx │ │ │ ├── highlights-modal.tsx │ │ │ ├── mark-for-desks │ │ │ │ ├── helper.ts │ │ │ │ ├── mark-for-desks-modal.tsx │ │ │ │ └── mark-for-desks-popover.tsx │ │ │ ├── multi-edit-toolbar-action.tsx │ │ │ ├── proofreading-theme-modal.tsx │ │ │ ├── proofreading-theme-panel.tsx │ │ │ ├── proofreading.scss │ │ │ ├── template-helpers.ts │ │ │ ├── template-modal.tsx │ │ │ ├── theme-selector.scss │ │ │ ├── theme-selector.tsx │ │ │ ├── translate-modal.tsx │ │ │ └── version-header.tsx │ │ ├── ui-framework-authoring-test.tsx │ │ ├── widget-header-component.tsx │ │ ├── widget-layout-component.tsx │ │ ├── widget-persistance-hoc.tsx │ │ └── with-keybindings.tsx │ ├── authoring │ │ ├── attachments │ │ │ ├── AttachmentsEditorDirective.ts │ │ │ ├── AttachmentsEditorModal.tsx │ │ │ ├── AttachmentsList.tsx │ │ │ ├── AttachmentsListItem.tsx │ │ │ ├── AttachmentsWidget.tsx │ │ │ ├── AttachmentsWidgetComponent.tsx │ │ │ ├── AttachmentsWrapper.tsx │ │ │ ├── UploadAttachmentsModal.tsx │ │ │ ├── attachments.html │ │ │ ├── attachments.scss │ │ │ ├── attachments.ts │ │ │ └── attachmentsService.ts │ │ ├── authoring │ │ │ ├── ValidateCharacters.tsx │ │ │ ├── ValidateCharactersConnected.tsx │ │ │ ├── article-url-fields.tsx │ │ │ ├── authoring-custom-field.spec.tsx │ │ │ ├── authoring-custom-field.tsx │ │ │ ├── authoring-media-actions.tsx │ │ │ ├── authoring-topbar-react.tsx │ │ │ ├── authoring-topbar2-react.tsx │ │ │ ├── authoring.spec.ts │ │ │ ├── components │ │ │ │ ├── CharacterCount.tsx │ │ │ │ ├── CharacterCountConfigButton.tsx │ │ │ │ ├── line-count.tsx │ │ │ │ ├── publish-warning-confirm-modal.tsx │ │ │ │ ├── text-statistics-connected.tsx │ │ │ │ ├── text-statistics.tsx │ │ │ │ ├── toggleFullWithEditor.tsx │ │ │ │ ├── unpublish-confirm-modal.tsx │ │ │ │ └── video-thumbnail-editor.tsx │ │ │ ├── constants.ts │ │ │ ├── controllers │ │ │ │ ├── AssociationController.ts │ │ │ │ ├── AuthoringController.ts │ │ │ │ ├── ChangeImageController.ts │ │ │ │ ├── PopulateAuthorsController.ts │ │ │ │ └── index.ts │ │ │ ├── created-info.tsx │ │ │ ├── directives │ │ │ │ ├── ArticleEditDirective.ts │ │ │ │ ├── AuthoringContainerDirective.ts │ │ │ │ ├── AuthoringDirective.ts │ │ │ │ ├── AuthoringEmbeddedDirective.ts │ │ │ │ ├── AuthoringHeaderDirective.ts │ │ │ │ ├── AuthoringTopbarDirective.ts │ │ │ │ ├── CharacterCount.ts │ │ │ │ ├── DashboardCard.ts │ │ │ │ ├── Html5vfix.ts │ │ │ │ ├── ItemAssociationDirective.spec.ts │ │ │ │ ├── ItemAssociationDirective.ts │ │ │ │ ├── ItemCarouselDirective.ts │ │ │ │ ├── PreviewFormattedDirective.ts │ │ │ │ ├── ReadingTime.spec.ts │ │ │ │ ├── ReadingTime.ts │ │ │ │ ├── RemoveTagsDirective.ts │ │ │ │ ├── TansaScopeSyncDirective.ts │ │ │ │ ├── ThemeSelectDirective.ts │ │ │ │ ├── WordCount.html │ │ │ │ ├── WordCount.ts │ │ │ │ ├── index.ts │ │ │ │ └── sd-static-autocomplete.ts │ │ │ ├── filters │ │ │ │ └── index.ts │ │ │ ├── get-send-and-duplicate-target.ts │ │ │ ├── header-component-field.tsx │ │ │ ├── helpers.spec.ts │ │ │ ├── helpers.ts │ │ │ ├── index.ts │ │ │ ├── modified-info.tsx │ │ │ ├── preview-custom-field.tsx │ │ │ ├── services │ │ │ │ ├── AuthoringService.ts │ │ │ │ ├── AuthoringThemesService.ts │ │ │ │ ├── AuthoringWorkspaceService.ts │ │ │ │ ├── AutosaveService.ts │ │ │ │ ├── ConfirmDirtyService.ts │ │ │ │ ├── InitializeMediaService.ts │ │ │ │ ├── LockService.ts │ │ │ │ ├── MediaIdGeneratorService.ts │ │ │ │ ├── RenditionsService.ts │ │ │ │ ├── authoring-helpers.ts │ │ │ │ ├── index.ts │ │ │ │ ├── quick-publish-modal.scss │ │ │ │ └── quick-publish-modal.tsx │ │ │ ├── tests │ │ │ │ ├── RenditionsService.spec.ts │ │ │ │ └── WordCount.spec.ts │ │ │ └── views │ │ │ │ ├── sd-autocomplete.html │ │ │ │ └── sd-static-autocomplete.html │ │ ├── comments │ │ │ ├── comments.scss │ │ │ ├── comments.spec.ts │ │ │ ├── comments.ts │ │ │ └── views │ │ │ │ └── comments-widget.html │ │ ├── compare-versions │ │ │ ├── CompareVersionsController.ts │ │ │ ├── CompareVersionsService.ts │ │ │ ├── compare-versions.scss │ │ │ ├── compare-versions.spec.ts │ │ │ ├── directives │ │ │ │ ├── CompareVersionsArticleDirective.ts │ │ │ │ ├── CompareVersionsDropdownDirective.ts │ │ │ │ ├── CompareVersionsDropdownInnerDirective.ts │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ └── views │ │ │ │ ├── compare-versions.html │ │ │ │ ├── sd-compare-versions-article.html │ │ │ │ ├── sd-compare-versions-dropdown.html │ │ │ │ └── sd-compare-versions-inner-dropdown.html │ │ ├── editor │ │ │ ├── find-replace.ts │ │ │ └── views │ │ │ │ └── find-replace.html │ │ ├── index.ts │ │ ├── macros │ │ │ ├── macros.spec.ts │ │ │ ├── macros.ts │ │ │ └── views │ │ │ │ ├── macros-replace.html │ │ │ │ └── macros-widget.html │ │ ├── media │ │ │ ├── MediaCopyMetadataDirective.ts │ │ │ ├── MediaMetadataEditorDirective.ts │ │ │ ├── MediaMetadataView.tsx │ │ │ ├── index.ts │ │ │ ├── media-fields-controller.ts │ │ │ ├── tests │ │ │ │ └── MediaMetadataEditor.spec.ts │ │ │ └── views │ │ │ │ ├── media-copy-metadata-directive.html │ │ │ │ └── media-metadata-editor-directive.html │ │ ├── metadata │ │ │ ├── MetaPlaceDirective.ts │ │ │ ├── PlacesService.ts │ │ │ ├── PreferedCvItemsConfigDirective.ts │ │ │ ├── PreferedCvItemsDirective.ts │ │ │ ├── metadata.scss │ │ │ ├── metadata.ts │ │ │ ├── tests │ │ │ │ ├── MetadataTagsDirective.spec.ts │ │ │ │ ├── MetadataWidgetCtrl.spec.ts │ │ │ │ ├── PlacesService.spec.ts │ │ │ │ └── metadata.spec.ts │ │ │ └── views │ │ │ │ ├── MetaDataDropdownSingleSelectReact.tsx │ │ │ │ ├── meta-place-directive.html │ │ │ │ ├── metadata-dropdown.html │ │ │ │ ├── metadata-list-item.html │ │ │ │ ├── metadata-locators.html │ │ │ │ ├── metadata-tags.html │ │ │ │ ├── metadata-target-publishing.html │ │ │ │ ├── metadata-terms.html │ │ │ │ ├── metadata-widget.html │ │ │ │ ├── metadata-words-list.html │ │ │ │ └── prefered-cv-items-config.html │ │ ├── multiedit │ │ │ ├── multiedit.ts │ │ │ ├── tests │ │ │ │ └── multiedit.spec.ts │ │ │ └── views │ │ │ │ ├── multiedit.html │ │ │ │ ├── sd-multiedit-article.html │ │ │ │ ├── sd-multiedit-dropdown.html │ │ │ │ └── sd-multiedit-inner-dropdown.html │ │ ├── packages │ │ │ ├── packages.scss │ │ │ ├── packages.ts │ │ │ └── views │ │ │ │ └── packages-widget.html │ │ ├── preview │ │ │ ├── authoringFieldHasValue.ts │ │ │ ├── field-types │ │ │ │ ├── attachments.tsx │ │ │ │ ├── embed.tsx │ │ │ │ ├── html.tsx │ │ │ │ ├── media.tsx │ │ │ │ ├── plainText.tsx │ │ │ │ ├── subjects.tsx │ │ │ │ ├── urls.tsx │ │ │ │ └── vocabularyValues.tsx │ │ │ ├── full-preview.scss │ │ │ ├── fullPreview.tsx │ │ │ ├── fullPreviewMultiple.tsx │ │ │ ├── getAuthoringField.ts │ │ │ ├── isMediaField.ts │ │ │ ├── previewFieldByType.tsx │ │ │ └── utils.ts │ │ ├── styles │ │ │ ├── authoring.scss │ │ │ ├── multiedit.scss │ │ │ └── themes.scss │ │ ├── suggest │ │ │ ├── SuggestController.ts │ │ │ ├── SuggestDirective.ts │ │ │ ├── SuggestService.ts │ │ │ ├── SuggestView.html │ │ │ ├── index.ts │ │ │ ├── styles.scss │ │ │ └── suggest.spec.ts │ │ ├── tests │ │ │ ├── authoring.spec.ts │ │ │ └── changeImage.spec.ts │ │ ├── track-changes │ │ │ ├── inline-comments.ts │ │ │ ├── styles.scss │ │ │ ├── suggestions.ts │ │ │ └── views │ │ │ │ ├── inline-comments-widget.html │ │ │ │ └── suggestions-widget.html │ │ ├── translations │ │ │ ├── index.ts │ │ │ ├── translationsWidget.tsx │ │ │ └── views │ │ │ │ └── translations-widget.html │ │ ├── versioning │ │ │ ├── history │ │ │ │ ├── HistoryController.ts │ │ │ │ ├── TransmissionDetailsDirective.ts │ │ │ │ ├── VersioningHistoryDirective.ts │ │ │ │ ├── history.scss │ │ │ │ ├── history.ts │ │ │ │ ├── tests │ │ │ │ │ └── HistoryController.spec.ts │ │ │ │ └── views │ │ │ │ │ ├── history.html │ │ │ │ │ └── publish_queue.html │ │ │ ├── versioning.ts │ │ │ ├── versions │ │ │ │ ├── versions.scss │ │ │ │ ├── versions.ts │ │ │ │ └── views │ │ │ │ │ └── versions.html │ │ │ └── views │ │ │ │ └── versioning.html │ │ ├── views │ │ │ ├── article-edit.html │ │ │ ├── authoring-container.html │ │ │ ├── authoring-header.html │ │ │ ├── authoring-topbar.html │ │ │ ├── authoring.html │ │ │ ├── change-image.html │ │ │ ├── confirm-media-associated.html │ │ │ ├── dashboard-articles.html │ │ │ ├── image-point.html │ │ │ ├── item-actions-by-intent.html │ │ │ ├── item-association.html │ │ │ ├── item-carousel.html │ │ │ ├── opened-articles.html │ │ │ ├── preview-formatted.html │ │ │ ├── sd-highlight-create.html │ │ │ └── theme-select.html │ │ ├── widgets │ │ │ ├── WidgetHeaderComponent.tsx │ │ │ ├── WidgetLayoutComponent.tsx │ │ │ ├── views │ │ │ │ └── authoring-widgets.html │ │ │ ├── widgets-article.scss │ │ │ ├── widgets.spec.ts │ │ │ └── widgets.ts │ │ └── workqueue │ │ │ ├── tests │ │ │ └── workqueue.spec.ts │ │ │ ├── work-queue-create-new-button.tsx │ │ │ └── workqueue.ts │ ├── contacts │ │ ├── Contacts.ts │ │ ├── components │ │ │ ├── ContactFooter.tsx │ │ │ ├── ContactInfo.tsx │ │ │ ├── Form │ │ │ │ ├── ContactFormContainer.tsx │ │ │ │ ├── ContactNumberInput.tsx │ │ │ │ ├── Input.tsx │ │ │ │ ├── InputArray.tsx │ │ │ │ ├── Label.tsx │ │ │ │ ├── LineInput.tsx │ │ │ │ ├── MultiTextInput.tsx │ │ │ │ ├── ProfileDetail.tsx │ │ │ │ ├── Row.tsx │ │ │ │ ├── Select.tsx │ │ │ │ ├── SelectFieldSearchInput │ │ │ │ │ ├── SelectFieldPopup.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── style.scss │ │ │ │ ├── SelectInput.tsx │ │ │ │ ├── Toggle.tsx │ │ │ │ ├── ToggleBox.tsx │ │ │ │ └── index.ts │ │ │ ├── Item.tsx │ │ │ ├── ItemContainer.tsx │ │ │ ├── ItemList.tsx │ │ │ ├── ListItemInfo.tsx │ │ │ ├── ListTypeIcon.tsx │ │ │ ├── Popup │ │ │ │ ├── Content.tsx │ │ │ │ ├── Footer.tsx │ │ │ │ ├── Header.tsx │ │ │ │ ├── Label.tsx │ │ │ │ ├── Menu.tsx │ │ │ │ ├── Popup.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── style.scss │ │ │ ├── fields │ │ │ │ ├── ContactLocation.tsx │ │ │ │ ├── ContactName.tsx │ │ │ │ ├── Email.tsx │ │ │ │ ├── JobTitle.tsx │ │ │ │ ├── Mobile.tsx │ │ │ │ ├── Notes.tsx │ │ │ │ ├── OrgName.tsx │ │ │ │ ├── Phone.tsx │ │ │ │ ├── SocialInfo.tsx │ │ │ │ ├── State.tsx │ │ │ │ ├── VersionCreated.tsx │ │ │ │ └── index.ts │ │ │ └── index.ts │ │ ├── constants.ts │ │ ├── controllers │ │ │ ├── ContactsController.ts │ │ │ └── index.ts │ │ ├── directives │ │ │ ├── ContactEditorDirective.ts │ │ │ ├── ContactList.ts │ │ │ ├── ContactsSearchPanelDirective.tsx │ │ │ ├── ContactsSearchResultsDirective.ts │ │ │ ├── ContactsSortBarDirective.ts │ │ │ └── index.ts │ │ ├── helpers.ts │ │ ├── index.ts │ │ ├── services │ │ │ ├── ContactsService.ts │ │ │ └── index.ts │ │ ├── styles │ │ │ └── contacts.scss │ │ └── views │ │ │ ├── list.html │ │ │ ├── search-panel.html │ │ │ └── search-results.html │ ├── content-api │ │ ├── controllers │ │ │ ├── ContentAPIController.ts │ │ │ └── index.ts │ │ ├── directives │ │ │ ├── ContentAPISearchPanelDirective.ts │ │ │ ├── ContentAPISearchResultsDirective.ts │ │ │ ├── ContentAPISortBarDirective.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── services │ │ │ ├── ContentAPISearchService.ts │ │ │ └── index.ts │ │ ├── tests │ │ │ └── ContentAPISearch.spec.ts │ │ └── views │ │ │ ├── list.html │ │ │ ├── search-panel.html │ │ │ └── search-results.html │ ├── content-filters │ │ ├── controllers │ │ │ ├── ContentFiltersController.ts │ │ │ ├── FilterConditionsController.ts │ │ │ ├── FilterSearchController.ts │ │ │ ├── ManageContentFiltersController.ts │ │ │ ├── ProductionTestController.ts │ │ │ └── index.ts │ │ ├── directives │ │ │ ├── ManageFiltersTab.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── services │ │ │ ├── ContentFiltersService.ts │ │ │ └── index.ts │ │ ├── styles │ │ │ └── content-filters.scss │ │ ├── tests │ │ │ ├── ContentFiltersConfigCtrl.spec.ts │ │ │ └── filters.spec.ts │ │ └── views │ │ │ ├── filter-search-result.html │ │ │ ├── filter-search.html │ │ │ ├── manage-filter-conditions.html │ │ │ ├── manage-filters.html │ │ │ ├── production-test-view.html │ │ │ ├── production-test.html │ │ │ └── settings.html │ ├── dashboard │ │ ├── closed-desk │ │ │ ├── DeskRoutingInfoDirective.ts │ │ │ ├── index.ts │ │ │ ├── styles.scss │ │ │ ├── thumbnail.svg │ │ │ └── views │ │ │ │ ├── close-desk-widget.html │ │ │ │ └── top-menu-info.html │ │ ├── controllers │ │ │ ├── ConfigController.ts │ │ │ ├── DashboardController.ts │ │ │ └── index.ts │ │ ├── directives │ │ │ ├── Widget.ts │ │ │ └── index.ts │ │ ├── grid │ │ │ ├── grid.ts │ │ │ └── views │ │ │ │ ├── grid-item.html │ │ │ │ └── grid.html │ │ ├── index.ts │ │ ├── services │ │ │ ├── BaseWidgetFactory.ts │ │ │ ├── DashboardWidgets.ts │ │ │ └── index.ts │ │ ├── styles │ │ │ ├── dashboard.scss │ │ │ └── widgets.scss │ │ ├── tests │ │ │ └── widgets-provider.spec.ts │ │ ├── user-activity │ │ │ ├── components │ │ │ │ ├── Group.tsx │ │ │ │ ├── UserActivityWidget.tsx │ │ │ │ └── UserActivityWidgetWithUser.tsx │ │ │ ├── thumbnail.svg │ │ │ ├── user-activity.html │ │ │ └── user-activity.ts │ │ ├── views │ │ │ ├── configuration.html │ │ │ ├── widget.html │ │ │ ├── workspace-topnav.html │ │ │ └── workspace.html │ │ ├── widget-heading.scss │ │ ├── widget-heading.tsx │ │ ├── widget-layout.tsx │ │ ├── widget-react.tsx │ │ ├── workspace-tasks │ │ │ ├── styles │ │ │ │ └── tasks.scss │ │ │ ├── tasks.ts │ │ │ ├── tests │ │ │ │ └── tasks.spec.ts │ │ │ └── views │ │ │ │ ├── assignee-view.html │ │ │ │ ├── desk-stages.html │ │ │ │ ├── kanban-board.html │ │ │ │ ├── task-preview.html │ │ │ │ └── workspace-tasks.html │ │ └── world-clock │ │ │ ├── configuration.html │ │ │ ├── tests │ │ │ ├── WorldClockConfigController.spec.ts │ │ │ ├── WorldClockController.spec.ts │ │ │ └── tzdata.spec.ts │ │ │ ├── thumbnail.png │ │ │ ├── thumbnail.svg │ │ │ ├── timezones-all-labels.ts │ │ │ ├── timezones-all.json │ │ │ ├── widget-worldclock.html │ │ │ ├── world-clock.scss │ │ │ └── world-clock.ts │ ├── desks │ │ ├── components │ │ │ ├── MarkBtn.tsx │ │ │ ├── MarkDesksDropdown.tsx │ │ │ └── index.ts │ │ ├── constants.ts │ │ ├── controllers │ │ │ ├── DeskConfigController.ts │ │ │ ├── DeskSettingsController.ts │ │ │ └── index.ts │ │ ├── directives │ │ │ ├── ActionPicker.ts │ │ │ ├── ContentExpiry.ts │ │ │ ├── DeskConfigModal.ts │ │ │ ├── DeskeditBasic.ts │ │ │ ├── DeskeditMacros.ts │ │ │ ├── DeskeditPeople.ts │ │ │ ├── DeskeditStages.ts │ │ │ ├── DesksReactDropdown.tsx │ │ │ ├── FocusElement.ts │ │ │ ├── MarkDesksDropdown.ts │ │ │ ├── StageHeaderDirective.ts │ │ │ ├── UserSelectList.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── services │ │ │ ├── DesksFactory.ts │ │ │ └── index.ts │ │ ├── styles │ │ │ └── desks.scss │ │ ├── tests │ │ │ ├── contentExpiry.spec.ts │ │ │ ├── desks.spec.ts │ │ │ ├── markDesksDropdown.spec.tsx │ │ │ ├── sdDeskEditPeople.spec.ts │ │ │ ├── sdDeskeditMacros.spec.ts │ │ │ └── sdDeskeditStages.spec.ts │ │ └── views │ │ │ ├── actionpicker.html │ │ │ ├── content-expiry.html │ │ │ ├── desk-config-modal.html │ │ │ ├── mark_desks_dropdown.html │ │ │ ├── mark_desks_dropdown_directive.html │ │ │ ├── settings.html │ │ │ ├── stage-header.html │ │ │ ├── task-status-items.html │ │ │ └── user-select.html │ ├── dictionaries │ │ ├── controllers │ │ │ ├── DictionaryConfigController.ts │ │ │ ├── DictionaryEditController.ts │ │ │ └── index.ts │ │ ├── directives │ │ │ ├── DictionaryConfigModal.ts │ │ │ ├── FileUpload.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── services │ │ │ ├── DictionaryService.ts │ │ │ └── index.ts │ │ ├── styles │ │ │ └── dictionaries.scss │ │ ├── tests │ │ │ └── dictionaries.spec.ts │ │ └── views │ │ │ ├── dictionary-config-modal.html │ │ │ └── settings.html │ ├── extension-points │ │ ├── directives │ │ │ ├── ExtensionPointDirective.tsx │ │ │ └── index.ts │ │ ├── index.ts │ │ └── services │ │ │ ├── ExtensionPoints.ts │ │ │ └── index.ts │ ├── fields │ │ └── index.ts │ ├── highlights │ │ ├── components │ │ │ ├── HighlightBtn.tsx │ │ │ └── SetHighlightsForMultipleArticlesModal.tsx │ │ ├── controllers │ │ │ ├── HighlightsConfig.ts │ │ │ ├── HighlightsSettings.ts │ │ │ ├── MonitoringHighlightsController.ts │ │ │ └── index.ts │ │ ├── directives │ │ │ ├── HighlightsConfigModal.ts │ │ │ ├── HighlightsInfo.ts │ │ │ ├── HighlightsReactDropdown.tsx │ │ │ ├── HighlightsTitle.ts │ │ │ ├── MarkHighlightsDropdown.ts │ │ │ ├── PackageHighlightsDropdown.ts │ │ │ ├── SearchHighlights.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── services │ │ │ ├── HighlightsService.ts │ │ │ └── index.ts │ │ ├── styles │ │ │ └── highlights.scss │ │ ├── tests │ │ │ └── highlights.spec.ts │ │ └── views │ │ │ ├── highlights_config_modal.html │ │ │ ├── highlights_info_directive.html │ │ │ ├── mark_highlights_dropdown.html │ │ │ ├── mark_highlights_dropdown_directive.html │ │ │ ├── menu.html │ │ │ ├── package_highlights_dropdown_directive.html │ │ │ ├── search_highlights_dropdown_directive.html │ │ │ └── settings.html │ ├── index.ts │ ├── ingest │ │ ├── components │ │ │ └── settings │ │ │ │ ├── CustomIngestRoutingAction.tsx │ │ │ │ └── CustomIngestRoutingActionPreview.tsx │ │ ├── controllers │ │ │ ├── ExternalSourceController.ts │ │ │ ├── IngestDashboardController.ts │ │ │ ├── IngestListController.ts │ │ │ ├── IngestSettingsController.ts │ │ │ └── index.ts │ │ ├── directives │ │ │ ├── IngestConfigErrors.ts │ │ │ ├── IngestProviderConfig.ts │ │ │ ├── IngestRoutingAction.ts │ │ │ ├── IngestRoutingContent.ts │ │ │ ├── IngestRoutingFilter.ts │ │ │ ├── IngestRoutingGeneral.ts │ │ │ ├── IngestRoutingSchedule.ts │ │ │ ├── IngestRulesContent.ts │ │ │ ├── IngestSourcesContent.ts │ │ │ ├── IngestUserDashboard.ts │ │ │ ├── IngestUserDashboardDropdown.ts │ │ │ ├── IngestUserDashboardList.ts │ │ │ ├── PieChartDashboard.ts │ │ │ ├── SortRules.ts │ │ │ ├── authenticate-ingest-provider.tsx │ │ │ └── index.ts │ │ ├── filters │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── ingest-stats-widget │ │ │ ├── configuration.html │ │ │ ├── stats.ts │ │ │ ├── thumbnail.png │ │ │ ├── thumbnail.svg │ │ │ └── widget-ingeststats.html │ │ ├── services │ │ │ ├── IngestProviderService.ts │ │ │ ├── RemoveIngestedService.ts │ │ │ ├── SubjectService.ts │ │ │ └── index.ts │ │ ├── static-resources │ │ │ └── color-schemes.json │ │ ├── styles │ │ │ ├── dashboard.scss │ │ │ └── settings.scss │ │ ├── tests │ │ │ ├── externalSourceController.spec.ts │ │ │ ├── ingest.spec.ts │ │ │ ├── sdIngestRoutingContent.spec.ts │ │ │ ├── sdIngestRoutingFilter.spec.ts │ │ │ ├── sdIngestSourcesContent.spec.ts │ │ │ └── subscribers.spec.ts │ │ └── views │ │ │ ├── dashboard │ │ │ ├── dashboard.html │ │ │ ├── ingest-dashboard-widget-list.html │ │ │ ├── ingest-dashboard-widget.html │ │ │ └── ingest-sources-list.html │ │ │ └── settings │ │ │ ├── ingest-config-errors.html │ │ │ ├── ingest-routing-action.html │ │ │ ├── ingest-routing-content.html │ │ │ ├── ingest-routing-filter.html │ │ │ ├── ingest-routing-general.html │ │ │ ├── ingest-routing-schedule.html │ │ │ ├── ingest-rules-content.html │ │ │ ├── ingest-sources-content.html │ │ │ ├── searchConfig.html │ │ │ ├── service-config.html │ │ │ └── settings.html │ ├── internal-destinations │ │ ├── InternalDestinations.tsx │ │ ├── index.ts │ │ └── views │ │ │ └── settings.html │ ├── legal-archive │ │ ├── controllers │ │ │ ├── LegalArchiveController.ts │ │ │ └── index.ts │ │ ├── directives │ │ │ ├── LegalItemSortbar.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── services │ │ │ ├── LegalArchiveService.ts │ │ │ └── index.ts │ │ ├── tests │ │ │ └── legal.spec.ts │ │ └── views │ │ │ └── legal_archive.html │ ├── master-desk │ │ ├── MasterDesk.tsx │ │ ├── MasterDeskApp.tsx │ │ ├── components │ │ │ ├── AssignmentsComponent.tsx │ │ │ ├── CardComponent.tsx │ │ │ ├── CardListComponent.tsx │ │ │ ├── FilterBarComponent.tsx │ │ │ ├── FilterPanelComponent.tsx │ │ │ ├── HeaderComponent.tsx │ │ │ ├── ListItemsComponent.tsx │ │ │ ├── OverviewComponent.tsx │ │ │ ├── PreviewComponent.tsx │ │ │ ├── UserListComponent.tsx │ │ │ └── UsersComponent.tsx │ │ ├── index.ts │ │ └── views │ │ │ └── master-desk.html │ ├── monitoring │ │ ├── MultiActionBarReact.tsx │ │ ├── aggregate-widget │ │ │ ├── aggregate-widget.html │ │ │ ├── aggregate.ts │ │ │ ├── configuration.html │ │ │ ├── thumbnail.png │ │ │ └── thumbnail.svg │ │ ├── config.ts │ │ ├── controllers │ │ │ ├── AggregateCtrl.ts │ │ │ ├── MonitoringController.ts │ │ │ ├── index.ts │ │ │ └── types.d.ts │ │ ├── directives │ │ │ ├── ActiveFilterTags.tsx │ │ │ ├── AggregateSettings.ts │ │ │ ├── ArticlesListReact.tsx │ │ │ ├── DeskNotifications.ts │ │ │ ├── ItemActionsMenu.ts │ │ │ ├── MonitoringFilteringButtons.tsx │ │ │ ├── MonitoringGroup.ts │ │ │ ├── MonitoringGroupHeader.ts │ │ │ ├── MonitoringListFiltersDropdown.tsx │ │ │ ├── MonitoringView.ts │ │ │ ├── SortGroups.ts │ │ │ ├── WidgetGroup.ts │ │ │ ├── index.ts │ │ │ └── utils.ts │ │ ├── filters │ │ │ └── index.ts │ │ ├── helpers │ │ │ └── CustomSortOfGroups.ts │ │ ├── index.ts │ │ ├── services │ │ │ ├── CardsService.ts │ │ │ └── index.ts │ │ ├── styles │ │ │ ├── aggregate.scss │ │ │ └── monitoring.scss │ │ ├── tests │ │ │ ├── aggregate.spec.ts │ │ │ └── monitoring.spec.ts │ │ └── views │ │ │ ├── aggregate-settings-configuration.html │ │ │ ├── aggregate-settings.html │ │ │ ├── desk-notifications.html │ │ │ ├── highlights-view.html │ │ │ ├── item-actions-menu.html │ │ │ ├── monitoring-group-header.html │ │ │ ├── monitoring-group.html │ │ │ ├── monitoring-view.html │ │ │ ├── monitoring.html │ │ │ ├── personal.html │ │ │ └── spike-monitoring.html │ ├── packaging │ │ ├── components │ │ │ ├── PackageGroup.tsx │ │ │ └── PackageGroupList.tsx │ │ ├── controllers │ │ │ ├── CombinePackageCtrl.ts │ │ │ ├── CreatePackageCtrl.ts │ │ │ ├── PackageItemCtrl.ts │ │ │ ├── PackagingController.ts │ │ │ ├── SearchWidgetCtrl.ts │ │ │ └── index.ts │ │ ├── directives │ │ │ ├── AddPackageDropdown.ts │ │ │ ├── AddToPackageDropdown.ts │ │ │ ├── Package.ts │ │ │ ├── PackageEdit.ts │ │ │ ├── PackageItem.ts │ │ │ ├── PackageItemPreview.ts │ │ │ ├── PackageItemProxy.ts │ │ │ ├── PackageItemsEdit.ts │ │ │ ├── PackageRef.ts │ │ │ ├── PreventPreview.ts │ │ │ ├── SortPackageItems.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── services │ │ │ ├── PackagesService.ts │ │ │ └── index.ts │ │ ├── styles │ │ │ └── packaging.scss │ │ ├── tests │ │ │ ├── PackagesService.spec.ts │ │ │ └── packaging.spec.ts │ │ └── views │ │ │ ├── add-to-package.html │ │ │ ├── sd-add-package-dropdown.html │ │ │ ├── sd-package-edit.html │ │ │ ├── sd-package-item-preview.html │ │ │ ├── sd-package-item.html │ │ │ ├── sd-package-items-edit.html │ │ │ ├── sd-package-ref.html │ │ │ ├── sd-package.html │ │ │ ├── search-widget-preview.html │ │ │ └── search.html │ ├── products │ │ ├── controllers │ │ │ ├── ProductsConfigController.ts │ │ │ └── index.ts │ │ ├── filters │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── services │ │ │ ├── ProductsFactory.ts │ │ │ └── index.ts │ │ ├── styles │ │ │ └── products.scss │ │ ├── tests │ │ │ └── products.spec.ts │ │ └── views │ │ │ ├── product-test.html │ │ │ ├── products-config-modal.html │ │ │ ├── products.html │ │ │ └── settings.html │ ├── profiling │ │ ├── controllers │ │ │ ├── ProfilingController.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── styles │ │ │ └── profiling.scss │ │ └── views │ │ │ └── profiling.html │ ├── publish-preview │ │ ├── README.md │ │ ├── preview-test-server │ │ │ └── server.js │ │ └── previewModal.tsx │ ├── publish │ │ ├── constants.ts │ │ ├── controllers │ │ │ ├── AdminPublishSettingsController.ts │ │ │ ├── DataConsistencyController.ts │ │ │ ├── PublishQueueController.ts │ │ │ ├── SubscriberTokenController.ts │ │ │ └── index.ts │ │ ├── directives │ │ │ ├── DestinationDirective.ts │ │ │ ├── SubscribersDirective.ts │ │ │ └── index.ts │ │ ├── filters │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── services │ │ │ ├── AdminPublishSettingsService.ts │ │ │ ├── SubscribersService.ts │ │ │ └── index.ts │ │ ├── styles │ │ │ └── publish.scss │ │ ├── tests │ │ │ └── publish.spec.ts │ │ └── views │ │ │ ├── amazon-sqs-fifo-config.html │ │ │ ├── data-consistency.html │ │ │ ├── destination.html │ │ │ ├── email-config.html │ │ │ ├── file-config.html │ │ │ ├── ftp-config.html │ │ │ ├── http-push-config.html │ │ │ ├── odbc-config.html │ │ │ ├── publish-queue.html │ │ │ ├── settings.html │ │ │ └── subscribers.html │ ├── relations │ │ ├── components │ │ │ └── RelatedItemInList.tsx │ │ ├── directives │ │ │ ├── RelatedItemsDirective.ts │ │ │ └── related-items-create-new-button.tsx │ │ ├── index.ts │ │ ├── services │ │ │ └── RelationsService.ts │ │ └── views │ │ │ └── related-items.html │ ├── search-providers │ │ ├── constants.ts │ │ ├── directive.ts │ │ ├── index.ts │ │ ├── service.ts │ │ └── views │ │ │ ├── search-provider-config.html │ │ │ └── settings.html │ ├── search │ │ ├── MultiImageEdit.ts │ │ ├── SavedSearch.ts │ │ ├── components │ │ │ ├── Associations.tsx │ │ │ ├── DesksDropdown.ts │ │ │ ├── ErrorBox.tsx │ │ │ ├── FetchedDesksInfo.tsx │ │ │ ├── GridTypeIcon.tsx │ │ │ ├── HighlightsInfo.tsx │ │ │ ├── HighlightsList.tsx │ │ │ ├── Item.tsx │ │ │ ├── ItemContainer.tsx │ │ │ ├── ItemList.tsx │ │ │ ├── ItemListAngularWrapper.tsx │ │ │ ├── ItemListTemplate.tsx │ │ │ ├── ItemPhotoGrid.tsx │ │ │ ├── ItemPriority.tsx │ │ │ ├── ItemSwimlane.tsx │ │ │ ├── ItemUrgency.tsx │ │ │ ├── ListItemInfo.tsx │ │ │ ├── ListPriority.tsx │ │ │ ├── ListTypeIcon.tsx │ │ │ ├── MarkedDesksInfo.tsx │ │ │ ├── MarkedDesksList.tsx │ │ │ ├── MediaInfo.tsx │ │ │ ├── MediaPreview.tsx │ │ │ ├── MultiSelectCheckbox.tsx │ │ │ ├── PhotoDeskFields.tsx │ │ │ ├── PhotoDeskFooter.tsx │ │ │ ├── PhotoDeskInfo.tsx │ │ │ ├── PhotoDeskPreview.tsx │ │ │ ├── QueueError.tsx │ │ │ ├── SelectBox.tsx │ │ │ ├── SmoothLoader.tsx │ │ │ ├── SmoothLoaderForKey.tsx │ │ │ ├── SmoothLoaderOuter.tsx │ │ │ ├── SwimlaneField.tsx │ │ │ ├── TimeElem.tsx │ │ │ ├── TypeIcon.tsx │ │ │ ├── WidgetItem.tsx │ │ │ ├── WidgetItemList.tsx │ │ │ ├── actions-menu │ │ │ │ ├── ActionsMenu.tsx │ │ │ │ ├── Divider.tsx │ │ │ │ ├── Item.tsx │ │ │ │ ├── Label.tsx │ │ │ │ ├── MenuItems.tsx │ │ │ │ ├── Submenu.tsx │ │ │ │ └── SubmenuDropdown.tsx │ │ │ ├── constants.ts │ │ │ ├── fields │ │ │ │ ├── AssociatedItemsList.tsx │ │ │ │ ├── assignment.tsx │ │ │ │ ├── associatedItems.tsx │ │ │ │ ├── associations.tsx │ │ │ │ ├── authors.tsx │ │ │ │ ├── broadcast.tsx │ │ │ │ ├── category.tsx │ │ │ │ ├── copyright.tsx │ │ │ │ ├── desk.tsx │ │ │ │ ├── embargo.tsx │ │ │ │ ├── expiry.tsx │ │ │ │ ├── fetchedDesk.tsx │ │ │ │ ├── flags.tsx │ │ │ │ ├── headline.tsx │ │ │ │ ├── highlights.ts │ │ │ │ ├── index.ts │ │ │ │ ├── language.tsx │ │ │ │ ├── linesCount.tsx │ │ │ │ ├── markedDesks.ts │ │ │ │ ├── nested-link.tsx │ │ │ │ ├── priority.tsx │ │ │ │ ├── profile.tsx │ │ │ │ ├── provider.tsx │ │ │ │ ├── queueError.tsx │ │ │ │ ├── scheduledDateTime.tsx │ │ │ │ ├── signal.tsx │ │ │ │ ├── slugline.tsx │ │ │ │ ├── state.tsx │ │ │ │ ├── takekey.tsx │ │ │ │ ├── translations-list.tsx │ │ │ │ ├── translations.tsx │ │ │ │ ├── type.tsx │ │ │ │ ├── update.tsx │ │ │ │ ├── updated.tsx │ │ │ │ ├── urgency.tsx │ │ │ │ ├── usageterms.tsx │ │ │ │ ├── used.tsx │ │ │ │ ├── versioncreated.tsx │ │ │ │ ├── versioncreator.tsx │ │ │ │ └── wordcount.ts │ │ │ ├── index.ts │ │ │ ├── mount-tracker.tsx │ │ │ ├── preview-subject.tsx │ │ │ ├── search-panel-widgets.tsx │ │ │ └── translations-list-wrapper.tsx │ │ ├── constants.ts │ │ ├── controllers │ │ │ ├── SearchController.ts │ │ │ ├── SearchMenuController.ts │ │ │ ├── get-bulk-actions.tsx │ │ │ ├── get-multi-actions.tsx │ │ │ └── index.ts │ │ ├── directives │ │ │ ├── BaseSortBar.ts │ │ │ ├── DateFilters.ts │ │ │ ├── EditTimeInterval.ts │ │ │ ├── ItemContainer.ts │ │ │ ├── ItemGlobalSearch.ts │ │ │ ├── ItemList.tsx │ │ │ ├── ItemPreview.ts │ │ │ ├── ItemRepo.ts │ │ │ ├── ItemSearchbar.ts │ │ │ ├── ItemSortbar.ts │ │ │ ├── MultiActionBar.ts │ │ │ ├── RawSearch.ts │ │ │ ├── RepoDropdown.ts │ │ │ ├── SaveSearch.ts │ │ │ ├── SavedSearchEditOwnSubscription.ts │ │ │ ├── SavedSearchManageSubscribers.ts │ │ │ ├── SavedSearchSelect.ts │ │ │ ├── SavedSearches.ts │ │ │ ├── SearchContainer.ts │ │ │ ├── SearchFilters.ts │ │ │ ├── SearchPanel.ts │ │ │ ├── SearchParameters.ts │ │ │ ├── SearchResults.ts │ │ │ ├── SearchTags.ts │ │ │ └── index.ts │ │ ├── helpers.tsx │ │ ├── index.ts │ │ ├── interfaces.ts │ │ ├── services │ │ │ ├── MonitoringState.ts │ │ │ ├── MultiImageEditService.ts │ │ │ ├── SavedSearchService.spec.ts │ │ │ ├── SavedSearchService.ts │ │ │ ├── SearchService.ts │ │ │ ├── SortService.ts │ │ │ ├── TagService.ts │ │ │ └── index.ts │ │ ├── styles │ │ │ └── search.scss │ │ ├── tests │ │ │ ├── MultiImageEditController.spec.ts │ │ │ ├── sdItemPreview.spec.ts │ │ │ ├── search.spec.ts │ │ │ └── tags.spec.ts │ │ └── views │ │ │ ├── edit-time-interval.html │ │ │ ├── item-globalsearch.html │ │ │ ├── item-preview.html │ │ │ ├── item-repo.html │ │ │ ├── item-searchbar.html │ │ │ ├── item-sortbar.html │ │ │ ├── menu-providers.html │ │ │ ├── menu.html │ │ │ ├── multi-action-bar.html │ │ │ ├── multi-image-edit-modal.html │ │ │ ├── multi-image-edit.html │ │ │ ├── raw-search.html │ │ │ ├── repo-dropdown.html │ │ │ ├── save-search-dialog.html │ │ │ ├── save-search.html │ │ │ ├── saved-search-manage-subscribers.html │ │ │ ├── saved-search-subscribe.html │ │ │ ├── saved-searches.html │ │ │ ├── search-filters.html │ │ │ ├── search-panel.html │ │ │ ├── search-parameters.html │ │ │ ├── search-results.html │ │ │ ├── search-tags.html │ │ │ └── search.html │ ├── settings │ │ ├── directives │ │ │ ├── DateParam.ts │ │ │ ├── RoleUnique.ts │ │ │ ├── ValidError.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── settings-page-content.tsx │ │ ├── settings-page-header.tsx │ │ ├── settings-page.tsx │ │ ├── settings.tsx │ │ ├── styles │ │ │ └── settings.scss │ │ └── views │ │ │ └── main.html │ ├── stream │ │ ├── controllers │ │ │ ├── StreamController.ts │ │ │ └── index.ts │ │ ├── directives │ │ │ ├── ActivityMessage.ts │ │ │ ├── ActivityStream.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── services │ │ │ └── index.ts │ │ └── views │ │ │ ├── activity-stream.html │ │ │ └── workspace-stream.html │ ├── system-messages │ │ ├── components │ │ │ ├── system-messages-settings.tsx │ │ │ └── system-messages.tsx │ │ └── index.ts │ ├── tansa │ │ └── index.ts │ ├── templates │ │ ├── constants.ts │ │ ├── controllers │ │ │ ├── CreateTemplateController.ts │ │ │ ├── TemplateMenuController.ts │ │ │ └── index.ts │ │ ├── directives │ │ │ ├── TemplateEditorModal.ts │ │ │ ├── TemplatesDirective.ts │ │ │ └── index.ts │ │ ├── filters │ │ │ └── index.ts │ │ ├── helpers.ts │ │ ├── index.ts │ │ ├── services │ │ │ ├── TemplatesService.ts │ │ │ └── index.ts │ │ ├── styles │ │ │ └── templates.scss │ │ ├── tests │ │ │ └── templates.spec.ts │ │ └── views │ │ │ ├── create-template.html │ │ │ ├── settings.html │ │ │ ├── template-editor-modal.html │ │ │ └── templates.html │ ├── translations │ │ ├── directives │ │ │ ├── TranslationDropdown.ts │ │ │ ├── TranslationReactDropdown.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── services │ │ │ ├── TranslationService.ts │ │ │ └── index.ts │ │ └── views │ │ │ ├── TranslationDropdown.html │ │ │ └── TranslationDropdownTemplate.html │ ├── users │ │ ├── activity-widget │ │ │ ├── activity.ts │ │ │ ├── configuration.html │ │ │ ├── thumbnail.png │ │ │ ├── thumbnail.svg │ │ │ ├── widget-activity.html │ │ │ └── widget-activity.scss │ │ ├── components │ │ │ ├── EmailNotificationPreferences.tsx │ │ │ ├── OrganisationAvatar.tsx │ │ │ ├── TextWithMentions.tsx │ │ │ ├── UserAvatar.tsx │ │ │ ├── UserAvatarFromUserId.tsx │ │ │ └── index.ts │ │ ├── config.ts │ │ ├── controllers │ │ │ ├── ChangeAvatarController.ts │ │ │ ├── SessionsDeleteCommand.ts │ │ │ ├── UserDeleteCommand.ts │ │ │ ├── UserEditController.ts │ │ │ ├── UserEnableCommand.ts │ │ │ ├── UserListController.ts │ │ │ ├── UserResolver.ts │ │ │ └── index.ts │ │ ├── directives │ │ │ ├── ActivityDirective.ts │ │ │ ├── ChangePasswordDirective.ts │ │ │ ├── InfoItemDirective.ts │ │ │ ├── PasswordConfirmDirective.ts │ │ │ ├── ResetPasswordDirective.ts │ │ │ ├── RolesPrivilegesDirective.ts │ │ │ ├── UserActivityDirective.ts │ │ │ ├── UserDetailsPaneDirective.ts │ │ │ ├── UserEditDirective.ts │ │ │ ├── UserInfoDirective.ts │ │ │ ├── UserListDirective.ts │ │ │ ├── UserMentionDirective.ts │ │ │ ├── UserPreferencesDirective.ts │ │ │ ├── UserPrivilegesDirective.ts │ │ │ ├── UserRolesDirective.ts │ │ │ ├── UserUniqueDirective.ts │ │ │ ├── ValidErrorDirective.ts │ │ │ ├── ValidInfoDirective.ts │ │ │ └── index.ts │ │ ├── helpers.ts │ │ ├── import │ │ │ ├── import.ts │ │ │ ├── tests │ │ │ │ └── import.spec.ts │ │ │ └── views │ │ │ │ └── import-user.html │ │ ├── index.ts │ │ ├── roles │ │ │ └── RolesService.ts │ │ ├── services │ │ │ ├── ProfileService.ts │ │ │ ├── UserListService.ts │ │ │ ├── UserPopupService.ts │ │ │ ├── UsersService.ts │ │ │ └── index.ts │ │ ├── styles │ │ │ ├── change-avatar.scss │ │ │ ├── settings.scss │ │ │ └── users.scss │ │ ├── tests │ │ │ ├── directives.spec.ts │ │ │ ├── profile.spec.ts │ │ │ ├── sdUserPreferences.spec.ts │ │ │ ├── sdUserPrivileges.spec.ts │ │ │ └── users.spec.ts │ │ └── views │ │ │ ├── activity-feed.html │ │ │ ├── activity-list.html │ │ │ ├── change-avatar.html │ │ │ ├── edit-form.html │ │ │ ├── edit-user-react.tsx │ │ │ ├── edit.html │ │ │ ├── list.html │ │ │ ├── mentions-menu.html │ │ │ ├── mentions.html │ │ │ ├── settings-privileges.html │ │ │ ├── settings-roles.html │ │ │ ├── settings.html │ │ │ ├── user-details-pane.html │ │ │ ├── user-list-item.html │ │ │ ├── user-preferences.html │ │ │ └── user-privileges.html │ ├── vocabularies │ │ ├── ManageVocabularyItemTranslations.tsx │ │ ├── components │ │ │ ├── ObjectEditor.tsx │ │ │ ├── UploadComplete.tsx │ │ │ ├── UploadConfigModal.tsx │ │ │ ├── UploadConfigModalInformation.tsx │ │ │ ├── VocabularyItemsViewEdit.tsx │ │ │ └── drop-zone.tsx │ │ ├── constants.ts │ │ ├── controllers │ │ │ ├── VocabularyConfigController.ts │ │ │ ├── VocabularyEditController.tsx │ │ │ └── index.ts │ │ ├── custom-field-configs.tsx │ │ ├── directives │ │ │ ├── VocabularyConfigDirective.ts │ │ │ ├── VocabularyConfigModal.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── services │ │ │ ├── SchemaFactory.ts │ │ │ ├── VocabularyService.ts │ │ │ └── index.ts │ │ ├── styles │ │ │ └── vocabularies.scss │ │ ├── tests │ │ │ └── vocabularies.spec.tsx │ │ └── views │ │ │ ├── settings.html │ │ │ ├── vocabulary-config-modal.html │ │ │ └── vocabulary-config.html │ └── workspace │ │ ├── content │ │ ├── components │ │ │ ├── ContentProfileFieldsConfig.tsx │ │ │ ├── WidgetsConfig.tsx │ │ │ ├── get-content-profiles-form-config.tsx │ │ │ ├── get-editor-config.tsx │ │ │ └── new-field-select.tsx │ │ ├── constants.ts │ │ ├── controllers │ │ │ └── ContentProfilesController.ts │ │ ├── directives │ │ │ ├── ItemProfileDirective.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── services │ │ │ ├── ContentService.ts │ │ │ └── index.ts │ │ ├── styles │ │ │ └── profiles.scss │ │ ├── tests │ │ │ └── content.spec.ts │ │ └── views │ │ │ ├── FormattingOptionsMultiSelect.tsx │ │ │ └── profile-settings.html │ │ ├── directives │ │ ├── EditWorkspaceDirective.ts │ │ ├── WorkspaceDropdownDirective.ts │ │ ├── WorkspaceSidenavDirective.ts │ │ └── index.ts │ │ ├── helpers │ │ ├── getLabelForFieldId.ts │ │ ├── getTypeForFieldId.ts │ │ └── isSuperdeskContent.ts │ │ ├── index.ts │ │ ├── services │ │ ├── WorkspaceMenuProvider.ts │ │ ├── WorkspaceService.ts │ │ └── index.ts │ │ ├── tests │ │ └── workspace.spec.ts │ │ └── views │ │ ├── edit-workspace-modal.html │ │ ├── workspace-dropdown.html │ │ ├── workspace-sidenav-items-default.html │ │ ├── workspace-sidenav-items-hr.html │ │ ├── workspace-sidenav-items-html.html │ │ ├── workspace-sidenav-items.html │ │ └── workspace-sidenav.html ├── config.js ├── core │ ├── ArticlesListByQuery.tsx │ ├── ArticlesListByQueryWithFilters.tsx │ ├── ArticlesListV2.tsx │ ├── ArticlesListV2MultiSelect.tsx │ ├── MultiSelectHoc.tsx │ ├── SuperdeskReactComponent.tsx │ ├── activity │ │ ├── activity-chooser-directive.ts │ │ ├── activity-list-directive.ts │ │ ├── activity-modal-directive.ts │ │ ├── activity.ts │ │ ├── index.ts │ │ ├── superdesk-service.spec.ts │ │ └── views │ │ │ ├── activity-chooser.html │ │ │ ├── activity-dropdown-item.html │ │ │ ├── activity-item.html │ │ │ ├── activity-list.html │ │ │ └── activity-modal.html │ ├── analytics │ │ ├── README.md │ │ ├── analytics.spec.ts │ │ ├── analytics.ts │ │ └── index.ts │ ├── api │ │ ├── allowed.ts │ │ ├── allowed_spec.ts │ │ ├── api-service.spec.ts │ │ ├── api-service.ts │ │ ├── api.ts │ │ ├── http-endpoint-factory.ts │ │ ├── index.ts │ │ ├── request-service.spec.ts │ │ ├── request-service.ts │ │ ├── timeout-interceptor.ts │ │ ├── url-resolver-helpers.ts │ │ ├── url-resolver-service.ts │ │ └── url-resolver.spec.ts │ ├── auth │ │ ├── auth-interceptor.spec.ts │ │ ├── auth-service.spec.ts │ │ ├── auth-service.ts │ │ ├── auth.ts │ │ ├── basic-auth-adapter.spec.ts │ │ ├── basic-auth-adapter.ts │ │ ├── index.ts │ │ ├── keycloak-service.ts │ │ ├── login-modal-directive.ts │ │ ├── login-modal.html │ │ ├── reset-password.html │ │ ├── secure-login.html │ │ ├── session-service.spec.ts │ │ ├── session-service.ts │ │ ├── styles │ │ │ └── auth.scss │ │ └── tests │ │ │ └── auth.spec.ts │ ├── beta │ │ ├── beta.spec.ts │ │ ├── beta.ts │ │ └── index.ts │ ├── components │ │ ├── ListItem.tsx │ │ ├── PageLayout.tsx │ │ ├── SidePanel.tsx │ │ └── resize-observer-component.tsx │ ├── config.ts │ ├── constants.ts │ ├── count-words.spec.ts │ ├── count-words.ts │ ├── data │ │ └── index.ts │ ├── datetime │ │ ├── absdate-directive.ts │ │ ├── datetime.spec.ts │ │ ├── datetime.ts │ │ ├── group-dates-directive.ts │ │ ├── index.ts │ │ ├── relativeDate.tsx │ │ ├── reldate-directive-complex.ts │ │ └── reldate-directive.ts │ ├── decode-html-entities.spec.ts │ ├── decode-html-entities.ts │ ├── directives │ │ ├── AutofocusDirective.ts │ │ ├── CheckAllDirective.ts │ │ ├── DraggableDirective.ts │ │ ├── DroppableDirective.ts │ │ ├── FiletypeIconDirective.ts │ │ ├── PasswordStrengthDirective.ts │ │ ├── PhoneHomeModalDirective.ts │ │ ├── SearchListDirective.ts │ │ ├── SelectDirective.ts │ │ ├── SelectPopupDirective.ts │ │ ├── SliderDirective.ts │ │ ├── SortDirective.ts │ │ ├── SortableDirective.ts │ │ ├── SwitchInvertedDirective.ts │ │ ├── TypeaheadDirective.ts │ │ ├── WithParamsDirective.ts │ │ ├── index.ts │ │ ├── tests │ │ │ └── sdPasswordStrength.ts │ │ └── views │ │ │ └── phone-home-modal-directive.html │ ├── editor3 │ │ ├── Editor3Html.tsx │ │ ├── README.md │ │ ├── actions │ │ │ ├── custom-block.tsx │ │ │ ├── editor3.tsx │ │ │ ├── find-replace.tsx │ │ │ ├── highlights.tsx │ │ │ ├── index.tsx │ │ │ ├── multi-line-quote.tsx │ │ │ ├── popups.tsx │ │ │ ├── spellchecker.tsx │ │ │ ├── suggestions.tsx │ │ │ ├── table.tsx │ │ │ ├── tests │ │ │ │ └── toolbar.spec.tsx │ │ │ └── toolbar.tsx │ │ ├── components │ │ │ ├── BaseUnstyledComponent.tsx │ │ │ ├── Editor3.tsx │ │ │ ├── Editor3Autocomplete.tsx │ │ │ ├── Editor3Component.tsx │ │ │ ├── Editor3InitializeSpellchecker.tsx │ │ │ ├── HighlightsPopup.tsx │ │ │ ├── HighlightsPopupPositioner.tsx │ │ │ ├── MultipleHighlights.tsx │ │ │ ├── StateToProps.tsx │ │ │ ├── UnstyledBlock.tsx │ │ │ ├── UnstyledWrapper.tsx │ │ │ ├── annotations │ │ │ │ ├── AnnotationInput.tsx │ │ │ │ ├── AnnotationPopup.tsx │ │ │ │ └── index.ts │ │ │ ├── article-embed │ │ │ │ ├── article-embed.tsx │ │ │ │ └── can-add-article-embed.ts │ │ │ ├── blockRenderer.tsx │ │ │ ├── comments │ │ │ │ ├── Comment.tsx │ │ │ │ ├── CommentInput.tsx │ │ │ │ ├── CommentPopup.tsx │ │ │ │ ├── CommentTextArea.tsx │ │ │ │ ├── index.ts │ │ │ │ └── mentionsStyle.ts │ │ │ ├── custom-block.scss │ │ │ ├── custom-block.tsx │ │ │ ├── customStyleMap.tsx │ │ │ ├── embeds │ │ │ │ ├── EmbedBlock.tsx │ │ │ │ ├── EmbedInput.tsx │ │ │ │ ├── QumuWidget.tsx │ │ │ │ ├── index.ts │ │ │ │ └── loadIframely.tsx │ │ │ ├── handlePastedText.ts │ │ │ ├── index.ts │ │ │ ├── links │ │ │ │ ├── AttachmentList.tsx │ │ │ │ ├── LinkDecorator.tsx │ │ │ │ ├── LinkInput.tsx │ │ │ │ ├── LinkToolbar.tsx │ │ │ │ ├── entityUtils.ts │ │ │ │ └── index.ts │ │ │ ├── media │ │ │ │ ├── MediaBlock.tsx │ │ │ │ ├── dragable-editor3-block-with-labels.tsx │ │ │ │ └── dragable-editor3-block.tsx │ │ │ ├── multi-line-quote │ │ │ │ ├── MultiLineQuote.tsx │ │ │ │ └── index.tsx │ │ │ ├── spellchecker │ │ │ │ ├── SpellcheckerContextMenu.tsx │ │ │ │ ├── SpellcheckerDecorator.tsx │ │ │ │ ├── default-spellcheckers.tsx │ │ │ │ └── interfaces.ts │ │ │ ├── suggestions │ │ │ │ └── SuggestionPopup.tsx │ │ │ ├── tables │ │ │ │ ├── TableBlock.tsx │ │ │ │ └── TableCell.tsx │ │ │ ├── tests │ │ │ │ ├── editor3.spec.tsx │ │ │ │ ├── embeds.spec.tsx │ │ │ │ ├── handlePastedText.spec.tsx │ │ │ │ ├── links.spec.tsx │ │ │ │ ├── media.spec.tsx │ │ │ │ ├── multipleHighlights.spec.tsx │ │ │ │ ├── pastedHtmlWithTable.html │ │ │ │ ├── styles.spec.tsx │ │ │ │ ├── tables.spec.tsx │ │ │ │ └── utils.tsx │ │ │ ├── text-length-overflow-decorator.tsx │ │ │ ├── thin-spaces │ │ │ │ └── ThinSpaceDecorator.tsx │ │ │ └── toolbar │ │ │ │ ├── BlockStyleButtons.tsx │ │ │ │ ├── IconButton.tsx │ │ │ │ ├── InlineStyleButtons.tsx │ │ │ │ ├── SelectionButton.tsx │ │ │ │ ├── StyleButton.tsx │ │ │ │ ├── TableControls.tsx │ │ │ │ ├── ToolbarPopup.tsx │ │ │ │ └── index.tsx │ │ ├── constants.ts │ │ ├── directive.tsx │ │ ├── draftjs-types.ts │ │ ├── editorPopup │ │ │ └── EditorHighlightsHeader.tsx │ │ ├── fluid-flex-rows │ │ │ ├── fluid-row.tsx │ │ │ └── fluid-rows.tsx │ │ ├── get-formatting-options-for-table.tsx │ │ ├── helpers │ │ │ ├── author.ts │ │ │ ├── blocks.ts │ │ │ ├── characters-limit.ts │ │ │ ├── clearInlineStyles.ts │ │ │ ├── draftInsertEntity.spec.ts │ │ │ ├── draftInsertEntity.ts │ │ │ ├── draftMoveBlockWithoutDispatching.ts │ │ │ ├── editor3CustomData.snapshot.input.json │ │ │ ├── editor3CustomData.snapshot.output.json │ │ │ ├── editor3CustomData.spec.ts │ │ │ ├── editor3CustomData.ts │ │ │ ├── fieldsMeta.ts │ │ │ ├── find-replace.tsx │ │ │ ├── get-entity-map.tsx │ │ │ ├── getDraftCharacterListForSelection.ts │ │ │ ├── getDraftSelectionForEntireContent.ts │ │ │ ├── getUniqueStyleNamesInDraftSelection.ts │ │ │ ├── handleBeforeInputHighlights.spec.gif │ │ │ ├── handleBeforeInputHighlights.ts │ │ │ ├── highlights.ts │ │ │ ├── htmlComesFromDraftjsEditor.snapshot.input.html │ │ │ ├── htmlComesFromDraftjsEditor.spec.ts │ │ │ ├── htmlComesFromDraftjsEditor.ts │ │ │ ├── htmlIsPlainTextDragged.spec.ts │ │ │ ├── htmlIsPlainTextDragged.ts │ │ │ ├── inlineStyles.ts │ │ │ ├── insertAtomicBlockWithoutEmptyLines.ts │ │ │ ├── links.ts │ │ │ ├── patch-editor-3-html.ts │ │ │ ├── removeFormat.ts │ │ │ ├── resizeDraftSelection.ts │ │ │ ├── selection │ │ │ │ ├── blockInsideSelection.ts │ │ │ │ ├── blockKeys.ts │ │ │ │ ├── collapseSelection.ts │ │ │ │ ├── createBlockSelection.ts │ │ │ │ ├── index.ts │ │ │ │ ├── selectedBlocks.ts │ │ │ │ └── selectionIterator.ts │ │ │ ├── selectionPositionInBlock.ts │ │ │ ├── suggestions.ts │ │ │ ├── table.ts │ │ │ └── tests │ │ │ │ ├── suggestion.spec.tsx │ │ │ │ └── tansa.spec.tsx │ │ ├── highlightsConfig.ts │ │ ├── html │ │ │ ├── from-html │ │ │ │ └── index.ts │ │ │ ├── tests │ │ │ │ ├── from-html-snapshot.spec.tsx │ │ │ │ ├── from-html-spec.snapshot.html │ │ │ │ ├── from-html-spec.snapshot.json │ │ │ │ ├── from-html.spec.ts │ │ │ │ └── to-html.spec.ts │ │ │ └── to-html │ │ │ │ ├── AtomicBlockParser.ts │ │ │ │ ├── editor3StateToHtml.ts │ │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── react.tsx │ │ ├── reducers │ │ │ ├── custom-block.tsx │ │ │ ├── editor3.tsx │ │ │ ├── find-replace.tsx │ │ │ ├── index.tsx │ │ │ ├── multi-line-quote.tsx │ │ │ ├── spellchecker.tsx │ │ │ ├── suggestions.tsx │ │ │ ├── table.tsx │ │ │ ├── tests │ │ │ │ ├── reducers.spec.tsx │ │ │ │ ├── suggestion_accept_reject.spec.tsx │ │ │ │ ├── suggestion_setup.tsx │ │ │ │ ├── suggestions.spec.tsx │ │ │ │ ├── suggestions_block_style.spec.tsx │ │ │ │ ├── suggestions_delete.spec.tsx │ │ │ │ ├── suggestions_delete_blocks.spec.tsx │ │ │ │ ├── suggestions_insert.spec.tsx │ │ │ │ ├── suggestions_link.spec.tsx │ │ │ │ ├── suggestions_paste.spec.tsx │ │ │ │ ├── suggestions_split_paragraph.spec.tsx │ │ │ │ └── suggestions_style.spec.tsx │ │ │ └── toolbar.tsx │ │ ├── service.ts │ │ ├── store │ │ │ ├── composite-decorator-custom.tsx │ │ │ ├── index.ts │ │ │ └── tests │ │ │ │ └── store.spec.tsx │ │ ├── styles.scss │ │ └── tests │ │ │ └── editor3core.spec.tsx │ ├── elastic │ │ ├── elastic.ts │ │ ├── es.spec.ts │ │ ├── es.ts │ │ └── index.ts │ ├── error │ │ ├── error.ts │ │ └── index.ts │ ├── extension-page.tsx │ ├── features │ │ ├── features.ts │ │ ├── index.ts │ │ └── tests │ │ │ └── features.spec.ts │ ├── filters │ │ └── index.ts │ ├── find-parent-scope.ts │ ├── form │ │ ├── CheckboxDirective.ts │ │ ├── InputDirective.ts │ │ ├── SelectDirective.ts │ │ ├── SwitchInvertedDirective.ts │ │ ├── index.ts │ │ └── views │ │ │ ├── checkbox-directive.html │ │ │ ├── input-directive.html │ │ │ ├── select-directive.html │ │ │ └── switch-inverted-directive.html │ ├── get-css-name-for-extension.js │ ├── get-superdesk-api-implementation.tsx │ ├── getRelatedEntities.ts │ ├── global-fixes │ │ ├── index.ts │ │ └── open-external-links-in-new-tab.ts │ ├── helpers │ │ ├── CrudManager.tsx │ │ ├── ErrorBoundary.tsx │ │ ├── ReactRenderAsync.tsx │ │ ├── UserHtmlSingleLine.tsx │ │ ├── array-to-dictionary.tsx │ │ ├── class-names.tsx │ │ ├── crud-manager-http.tsx │ │ ├── data-provider.ts │ │ ├── debounce-async.ts │ │ ├── debug-settings.tsx │ │ ├── dom │ │ │ ├── findParent.ts │ │ │ ├── isElementInViewport.ts │ │ │ ├── onEveryAnimationFrame.ts │ │ │ ├── querySelectorParent.ts │ │ │ └── stickElements.ts │ │ ├── editor.ts │ │ ├── elasticsearch.ts │ │ ├── fetch-all.tsx │ │ ├── for-extensions.ts │ │ ├── generic-array-list-page-component.tsx │ │ ├── item.ts │ │ ├── locale.ts │ │ ├── locking-helpers.ts │ │ ├── network.tsx │ │ ├── pagination.ts │ │ ├── register-internal-extension.tsx │ │ ├── request-queue.ts │ │ ├── sortByDisplayPriority.tsx │ │ ├── testUtils.ts │ │ ├── tree.spec.ts │ │ ├── tree.ts │ │ ├── typescript-helpers.ts │ │ ├── ui-framework.ts │ │ ├── universal-query.ts │ │ ├── url.ts │ │ ├── utils.tsx │ │ ├── uuid.ts │ │ ├── waitForMediaToBeReady.ts │ │ └── waitUtil.ts │ ├── index.ts │ ├── interactive-article-actions-panel │ │ ├── actions │ │ │ ├── duplicate-to-tab.tsx │ │ │ ├── fetch-to-tab.tsx │ │ │ ├── publish-tab.tsx │ │ │ ├── send-correction-tab.tsx │ │ │ ├── send-to-tab.tsx │ │ │ └── unspike-tab.tsx │ │ ├── index-combined.tsx │ │ ├── index-hoc.tsx │ │ ├── index-ui.tsx │ │ ├── interfaces.ts │ │ ├── panel │ │ │ ├── panel-content.tsx │ │ │ ├── panel-footer.tsx │ │ │ ├── panel-header.tsx │ │ │ └── panel-main.tsx │ │ ├── subcomponents │ │ │ ├── controlled-vocabulary-select.tsx │ │ │ ├── destination-select.tsx │ │ │ ├── publishing-date-options.tsx │ │ │ └── publishing-target-select.tsx │ │ └── utils │ │ │ ├── can-send-to-personal.tsx │ │ │ └── get-initial-destination.ts │ ├── internal-events.ts │ ├── itemList │ │ ├── LazyLoader.tsx │ │ ├── index.ts │ │ ├── itemList.ts │ │ ├── items-list-limited.tsx │ │ ├── throttleAndCombine.ts │ │ └── views │ │ │ └── relatedItem-list-widget.html │ ├── keyboard │ │ ├── index.ts │ │ ├── keyboard.ts │ │ ├── tests │ │ │ └── keyboard.spec.ts │ │ └── views │ │ │ └── keyboard-modal.html │ ├── lang │ │ ├── index.ts │ │ ├── language-mapping-list.ts │ │ └── missing-translations-strings.ts │ ├── list │ │ ├── index.ts │ │ ├── list-directives.spec.ts │ │ ├── list.spec.ts │ │ ├── list.ts │ │ └── views │ │ │ ├── list-view.html │ │ │ ├── sdPagination.html │ │ │ ├── sdPaginationAlt.html │ │ │ └── searchbar.html │ ├── loading.ts │ ├── menu │ │ ├── GlobalMenuHorizontal.tsx │ │ ├── authoring-switch.ts │ │ ├── index.ts │ │ ├── menu.spec.ts │ │ ├── menu.ts │ │ ├── notifications │ │ │ ├── notifications.spec.ts │ │ │ ├── notifications.ts │ │ │ └── views │ │ │ │ ├── notification-from-extension.html │ │ │ │ └── notifications.html │ │ ├── styles │ │ │ └── menu.scss │ │ └── views │ │ │ ├── about.html │ │ │ ├── menu.html │ │ │ └── superdesk-view.html │ ├── middleware.ts │ ├── notification │ │ ├── index.ts │ │ ├── notification.ts │ │ └── tests │ │ │ └── notification.spec.ts │ ├── notify │ │ ├── index.ts │ │ ├── notify.tsx │ │ └── styles │ │ │ └── notify.scss │ ├── patch.ts │ ├── popper-utils.tsx │ ├── privileges │ │ ├── index.ts │ │ ├── privileges.ts │ │ └── tests │ │ │ └── privileges.spec.ts │ ├── prompt-modal.tsx │ ├── query-formatting.ts │ ├── redux-utils.ts │ ├── register-extensions.tsx │ ├── services │ │ ├── asset.ts │ │ ├── data.spec.ts │ │ ├── data.ts │ │ ├── dragDropService.ts │ │ ├── entity.ts │ │ ├── image-factory.ts │ │ ├── index.ts │ │ ├── logger.ts │ │ ├── modalService.tsx │ │ ├── ng.ts │ │ ├── pageTitle.ts │ │ ├── preferences.spec.ts │ │ ├── preferencesService.ts │ │ ├── server.ts │ │ ├── serverConfig.ts │ │ ├── storage.spec.ts │ │ ├── storage.ts │ │ ├── tests │ │ │ └── asset.spec.ts │ │ ├── translate.ts │ │ ├── workflow.spec.ts │ │ └── workflowService.ts │ ├── spellcheck │ │ ├── README.md │ │ ├── index.ts │ │ ├── spellcheck.spec.ts │ │ ├── spellcheck.ts │ │ └── views │ │ │ └── spellcheck-widget.html │ ├── superdesk-api-helpers.tsx │ ├── superdesk-api.d.ts │ ├── tests │ │ ├── config.spec.ts │ │ ├── filters.spec.ts │ │ ├── middleware.spec.ts │ │ ├── mockDataApi.ts │ │ └── mocks.ts │ ├── ui-utils.tsx │ ├── ui │ │ ├── autoheight-directive.ts │ │ ├── components │ │ │ ├── AutoCompleteSuggestions.tsx │ │ │ ├── Autocomplete.tsx │ │ │ ├── Badge.tsx │ │ │ ├── Button.tsx │ │ │ ├── ButtonList.tsx │ │ │ ├── Card.tsx │ │ │ ├── Center.tsx │ │ │ ├── CollapseBox.tsx │ │ │ ├── ColumnBox │ │ │ │ ├── Box.tsx │ │ │ │ ├── MainColumn.tsx │ │ │ │ ├── SlideInColumn.tsx │ │ │ │ └── index.tsx │ │ │ ├── DatePickerWrapper.tsx │ │ │ ├── DateTime.tsx │ │ │ ├── Dropdown │ │ │ │ ├── Divider.tsx │ │ │ │ ├── Dropdown.tsx │ │ │ │ ├── Label.tsx │ │ │ │ ├── Menu.tsx │ │ │ │ └── index.tsx │ │ │ ├── Form │ │ │ │ ├── Checkbox.tsx │ │ │ │ ├── ColouredValueInput │ │ │ │ │ ├── ColouredValuePopup.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── style.scss │ │ │ │ ├── DateInput │ │ │ │ │ ├── DateInputPopup.tsx │ │ │ │ │ ├── DayPicker.tsx │ │ │ │ │ ├── MonthPicker.tsx │ │ │ │ │ ├── YearPicker.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── style.scss │ │ │ │ ├── DateTimeInput │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── style.scss │ │ │ │ ├── Field.tsx │ │ │ │ ├── FileInput.tsx │ │ │ │ ├── Input.tsx │ │ │ │ ├── InputArray │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── style.scss │ │ │ │ ├── Label.tsx │ │ │ │ ├── LineInput.tsx │ │ │ │ ├── LinkInput.tsx │ │ │ │ ├── RadioButtonInput.tsx │ │ │ │ ├── Row.tsx │ │ │ │ ├── RowItem.tsx │ │ │ │ ├── Select.tsx │ │ │ │ ├── SelectInput.tsx │ │ │ │ ├── SelectMetaTermsInput │ │ │ │ │ ├── SelectFieldPopup.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── style.scss │ │ │ │ ├── SelectTagInput │ │ │ │ │ ├── SelectTagPopup.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── style.scss │ │ │ │ ├── TextArea.tsx │ │ │ │ ├── TextAreaInput.tsx │ │ │ │ ├── TextInput.tsx │ │ │ │ ├── TimeInput │ │ │ │ │ ├── TimeInputPopup.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── style.scss │ │ │ │ ├── ToggleInput │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── style.scss │ │ │ │ ├── index.tsx │ │ │ │ └── style.scss │ │ │ ├── GroupLabel.tsx │ │ │ ├── Icon.tsx │ │ │ ├── Icon2.tsx │ │ │ ├── IconBig.tsx │ │ │ ├── IconButton.tsx │ │ │ ├── IconMix.tsx │ │ │ ├── IgnoreCancelSaveDialog.tsx │ │ │ ├── List │ │ │ │ ├── ActionMenu.tsx │ │ │ │ ├── Border.tsx │ │ │ │ ├── Column.tsx │ │ │ │ ├── Group.tsx │ │ │ │ ├── Header.tsx │ │ │ │ ├── Item.tsx │ │ │ │ ├── ItemType.tsx │ │ │ │ ├── NestedItem.tsx │ │ │ │ ├── PubStatus.tsx │ │ │ │ ├── Row.tsx │ │ │ │ └── index.tsx │ │ │ ├── ListPage │ │ │ │ ├── generic-list-page-item-view-edit.tsx │ │ │ │ ├── generic-list-page.tsx │ │ │ │ └── show-unsaved-changes-modal.tsx │ │ │ ├── Loader.tsx │ │ │ ├── Modal │ │ │ │ └── ModalPrompt.tsx │ │ │ ├── MoreActionsButton.tsx │ │ │ ├── MultiSelect.tsx │ │ │ ├── MultiSelectTreeWithTemplate.tsx │ │ │ ├── Nav │ │ │ │ ├── Button.tsx │ │ │ │ ├── Tabs.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── style.scss │ │ │ ├── Page │ │ │ │ └── index.tsx │ │ │ ├── PanelInfo.tsx │ │ │ ├── PlainTextEditor │ │ │ │ ├── PlainTextEditor.tsx │ │ │ │ └── styles.scss │ │ │ ├── Popup │ │ │ │ ├── Content.tsx │ │ │ │ ├── Footer.tsx │ │ │ │ ├── Header.tsx │ │ │ │ ├── Label.tsx │ │ │ │ ├── Menu.tsx │ │ │ │ ├── Popup.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── style.scss │ │ │ ├── PortalWithoutEvents.tsx │ │ │ ├── Preview │ │ │ │ ├── Panel.tsx │ │ │ │ ├── Row.tsx │ │ │ │ └── index.tsx │ │ │ ├── SearchBar │ │ │ │ ├── index.tsx │ │ │ │ ├── manual.tsx │ │ │ │ └── style.scss │ │ │ ├── SearchBox.tsx │ │ │ ├── SearchField │ │ │ │ └── index.tsx │ │ │ ├── SelectUser.tsx │ │ │ ├── SidePanel │ │ │ │ ├── Content.tsx │ │ │ │ ├── ContentBlock.tsx │ │ │ │ ├── ContentBlockInner.tsx │ │ │ │ ├── Footer.tsx │ │ │ │ ├── Header.tsx │ │ │ │ ├── SidePanel.tsx │ │ │ │ ├── SubHeader.tsx │ │ │ │ ├── Tools.tsx │ │ │ │ └── index.tsx │ │ │ ├── SlideInPanel │ │ │ │ ├── Content.tsx │ │ │ │ ├── Header.tsx │ │ │ │ ├── Panel.tsx │ │ │ │ ├── Toolbar.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── style.scss │ │ │ ├── SmallTags.tsx │ │ │ ├── SortBar │ │ │ │ └── index.tsx │ │ │ ├── Spacer.tsx │ │ │ ├── SubNav │ │ │ │ ├── Button.tsx │ │ │ │ ├── ButtonStack.tsx │ │ │ │ ├── Dropdown.tsx │ │ │ │ ├── SlidingToolBar.tsx │ │ │ │ ├── Spacer.tsx │ │ │ │ ├── StretchBar.tsx │ │ │ │ ├── SubNav.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── style.scss │ │ │ ├── TagLabel.tsx │ │ │ ├── TermsList.tsx │ │ │ ├── Toggle │ │ │ │ ├── index.tsx │ │ │ │ └── style.scss │ │ │ ├── ToggleBox │ │ │ │ ├── index.tsx │ │ │ │ └── style.scss │ │ │ ├── TopMenuDropdownButton.tsx │ │ │ ├── UnorderedList.tsx │ │ │ ├── UserPopup │ │ │ │ ├── UserPopup.tsx │ │ │ │ └── index.tsx │ │ │ ├── alert.scss │ │ │ ├── alert.tsx │ │ │ ├── article-item-concise.tsx │ │ │ ├── constants.ts │ │ │ ├── content-create-dropdown │ │ │ │ ├── content-create-dropdown.scss │ │ │ │ ├── content-create-dropdown.tsx │ │ │ │ ├── dropdown-option.tsx │ │ │ │ ├── initial-view.tsx │ │ │ │ └── more-templates.tsx │ │ │ ├── drag-handle.tsx │ │ │ ├── drop-zone-3.tsx │ │ │ ├── drop-zone.tsx │ │ │ ├── dropdown-menu-divider.tsx │ │ │ ├── dropdown-tree.tsx │ │ │ ├── dropdown-tree_spec.tsx │ │ │ ├── dropdown.tsx │ │ │ ├── figure.tsx │ │ │ ├── generic-form │ │ │ │ ├── form-direction-wrapper.tsx │ │ │ │ ├── form-field.tsx │ │ │ │ ├── form-group-display-wrapper.tsx │ │ │ │ ├── form-group-wrapper.tsx │ │ │ │ ├── from-group.tsx │ │ │ │ ├── generate-filter-for-server.tsx │ │ │ │ ├── get-form-fields-flat.tsx │ │ │ │ ├── get-form-group-for-filtering.tsx │ │ │ │ ├── get-initial-values.tsx │ │ │ │ ├── has-value.tsx │ │ │ │ ├── input-types │ │ │ │ │ ├── checkbox.tsx │ │ │ │ │ ├── content-filter-single-value.tsx │ │ │ │ │ ├── desk_single_value.tsx │ │ │ │ │ ├── duration.tsx │ │ │ │ │ ├── macro_single_value.tsx │ │ │ │ │ ├── number.tsx │ │ │ │ │ ├── plain-text.tsx │ │ │ │ │ ├── select.tsx │ │ │ │ │ ├── select_multiple_values.tsx │ │ │ │ │ ├── select_single_value.tsx │ │ │ │ │ ├── select_single_value_autocomplete.tsx │ │ │ │ │ ├── select_single_value_static.tsx │ │ │ │ │ ├── stage_single_value.tsx │ │ │ │ │ ├── text-editor3.tsx │ │ │ │ │ ├── vocabulary_single_value.tsx │ │ │ │ │ └── yes-no.tsx │ │ │ │ ├── interfaces │ │ │ │ │ ├── form.ts │ │ │ │ │ └── input-types.tsx │ │ │ │ └── tests │ │ │ │ │ └── generic-form.spec.tsx │ │ │ ├── grid.tsx │ │ │ ├── index.ts │ │ │ ├── input-label.tsx │ │ │ ├── modal-simple.tsx │ │ │ ├── nav-tabs.tsx │ │ │ ├── only-with-children.tsx │ │ │ ├── options-modal.tsx │ │ │ ├── position-once.tsx │ │ │ ├── prompt-for-unsaved-changes.tsx │ │ │ ├── select-filterable.tsx │ │ │ ├── select2.tsx │ │ │ ├── style.scss │ │ │ ├── tabs.tsx │ │ │ ├── time-zone-picker.tsx │ │ │ ├── utils.ts │ │ │ ├── video-hls.tsx │ │ │ ├── video.tsx │ │ │ ├── virtual-lists │ │ │ │ ├── select.tsx │ │ │ │ ├── virtual-list-from-query.tsx │ │ │ │ └── virtual-list.tsx │ │ │ └── vocabulary-select.tsx │ │ ├── configurable-algorithms.tsx │ │ ├── configurable-ui-components.tsx │ │ ├── constants.ts │ │ ├── index.ts │ │ ├── show-confirmation-prompt.tsx │ │ ├── slide-up-down.ts │ │ ├── tests │ │ │ └── ui.spec.ts │ │ ├── ui.ts │ │ └── views │ │ │ ├── datepicker-wrapper.html │ │ │ ├── sd-datepicker.html │ │ │ ├── sd-multi-select.html │ │ │ ├── sd-timepicker-popup.html │ │ │ ├── sd-timepicker.html │ │ │ ├── sd-timezone.html │ │ │ ├── weekday-picker.html │ │ │ ├── wizard.html │ │ │ └── wizardStep.html │ ├── upload │ │ ├── crop-directive.ts │ │ ├── image-crop-directive.ts │ │ ├── image-preview-directive.ts │ │ ├── index.ts │ │ ├── sdImageCrop.spec.ts │ │ ├── sdImageModify.ts │ │ ├── styles │ │ │ └── upload.scss │ │ ├── upload-service.spec.ts │ │ ├── upload-service.ts │ │ ├── upload.spec.ts │ │ ├── upload.ts │ │ └── video-capture-directive.ts │ ├── utils.tsx │ ├── views │ │ ├── sdSearchList.html │ │ ├── sdSlider.html │ │ ├── sdSort.html │ │ ├── sdTypeahead.html │ │ └── sdselect.html │ ├── with-articles.tsx │ ├── with-live-query.tsx │ └── with-resources.tsx ├── data-store.ts ├── extensions │ ├── README.MD │ ├── ai-widget │ │ ├── .gitignore │ │ ├── package-lock.json │ │ ├── package.json │ │ └── src │ │ │ ├── ai-assistant.tsx │ │ │ ├── configuration.ts │ │ │ ├── extension.ts │ │ │ ├── headlines │ │ │ ├── headlines-widget.tsx │ │ │ └── headlines.tsx │ │ │ ├── main-panel.tsx │ │ │ ├── summary │ │ │ ├── summary-widget.tsx │ │ │ └── summary.tsx │ │ │ ├── superdesk.ts │ │ │ ├── translations │ │ │ ├── translations-body.tsx │ │ │ ├── translations-footer.tsx │ │ │ └── translations-widget.tsx │ │ │ ├── tsconfig.json │ │ │ └── typings │ │ │ └── refs.d.ts │ ├── annotationsLibrary │ │ ├── .gitignore │ │ ├── package-lock.json │ │ ├── package.json │ │ └── src │ │ │ ├── AnnotationInputWithKnowledgeBase.tsx │ │ │ ├── AnnotationSelectList.tsx │ │ │ ├── AnnotationSelectSingleItem.tsx │ │ │ ├── AnnotationsSelect.tsx │ │ │ ├── GetFields.ts │ │ │ ├── annotations-library-page.tsx │ │ │ ├── extension.tsx │ │ │ ├── interfaces.ts │ │ │ ├── tsconfig.json │ │ │ └── typings │ │ │ └── refs.d.ts │ ├── auto-tagging-widget │ │ ├── .gitignore │ │ ├── package-lock.json │ │ ├── package.json │ │ └── src │ │ │ ├── ImageTaggingComponent │ │ │ └── ImageTaggingComponent.tsx │ │ │ ├── adapter.ts │ │ │ ├── auto-tagging.tsx │ │ │ ├── common.ts │ │ │ ├── constants.ts │ │ │ ├── data-transformations.ts │ │ │ ├── extension.tsx │ │ │ ├── groups.ts │ │ │ ├── header-auto-tagging.tsx │ │ │ ├── index.css │ │ │ ├── new-item.tsx │ │ │ ├── superdesk.ts │ │ │ ├── tag-list.tsx │ │ │ ├── tag-popover.tsx │ │ │ ├── tsconfig.json │ │ │ ├── types.ts │ │ │ └── typings │ │ │ └── refs.d.ts │ ├── availability-manager │ │ ├── .gitignore │ │ ├── .mocharc.json │ │ ├── package-lock.json │ │ ├── package.json │ │ └── src │ │ │ ├── README.md │ │ │ ├── components │ │ │ ├── maybe-button.tsx │ │ │ ├── status-select.tsx │ │ │ └── tags-preview.tsx │ │ │ ├── configuration.tsx │ │ │ ├── constants.ts │ │ │ ├── correspondent-availability │ │ │ ├── day-view.tsx │ │ │ ├── filters.tsx │ │ │ ├── get-query-with-filters.ts │ │ │ ├── index.tsx │ │ │ ├── participants.ts │ │ │ ├── show-edit-availability-modal.tsx │ │ │ ├── sort-availability-records.ts │ │ │ ├── week-view-header-day.tsx │ │ │ ├── week-view.tsx │ │ │ └── with-availability-records.tsx │ │ │ ├── extension.ts │ │ │ ├── index.css │ │ │ ├── interfaces.ts │ │ │ ├── sample-test.spec.ts │ │ │ ├── settings │ │ │ ├── availability-settings-page.tsx │ │ │ ├── availability-settings.tsx │ │ │ ├── edit-workday-modal.tsx │ │ │ ├── edit-working-hours.tsx │ │ │ ├── manage-schedule.tsx │ │ │ ├── working-day-view.tsx │ │ │ └── working-hours-grid-labels.tsx │ │ │ ├── superdesk.ts │ │ │ ├── test-utils.ts │ │ │ ├── tsconfig.json │ │ │ ├── typings │ │ │ └── refs.d.ts │ │ │ ├── utils.ts │ │ │ ├── utils │ │ │ ├── find-earliest-time.spec.ts │ │ │ └── find-earliest-time.ts │ │ │ └── validation-errors.tsx │ ├── broadcasting │ │ ├── .gitignore │ │ ├── .mocharc.json │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── authoring-fields │ │ │ │ └── subitems │ │ │ │ │ ├── constants.ts │ │ │ │ │ ├── difference.tsx │ │ │ │ │ ├── editor.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── preview.tsx │ │ │ │ │ ├── subitem-label.tsx │ │ │ │ │ └── subitems-view-edit.tsx │ │ │ ├── constants.ts │ │ │ ├── customization.tsx │ │ │ ├── events.ts │ │ │ ├── extension.ts │ │ │ ├── form-validation.ts │ │ │ ├── interfaces.ts │ │ │ ├── notifications.ts │ │ │ ├── page.tsx │ │ │ ├── rundown-items │ │ │ │ ├── content-profile.tsx │ │ │ │ └── widgets │ │ │ │ │ └── comments.tsx │ │ │ ├── rundown-templates │ │ │ │ ├── manage-rundown-templates.tsx │ │ │ │ ├── rundown-template-item-storage-adapter.tsx │ │ │ │ └── template-edit.tsx │ │ │ ├── rundowns │ │ │ │ ├── components │ │ │ │ │ ├── FrequencySimple.tsx │ │ │ │ │ ├── airing-info-block.tsx │ │ │ │ │ ├── applied-filters.tsx │ │ │ │ │ ├── duration-label.tsx │ │ │ │ │ ├── filtering-inputs.tsx │ │ │ │ │ ├── planned-duration-label.tsx │ │ │ │ │ ├── rundown-items.tsx │ │ │ │ │ └── select-show.tsx │ │ │ │ ├── create-rundown-from-template.tsx │ │ │ │ ├── manage-rundown-items.tsx │ │ │ │ ├── prepare-create-edit-rundown-item.ts │ │ │ │ ├── prepare-create-edit.ts │ │ │ │ ├── rundown-view-edit.tsx │ │ │ │ └── rundowns-list.tsx │ │ │ ├── shows │ │ │ │ ├── create-show-after-modal.tsx │ │ │ │ ├── create-show-modal.tsx │ │ │ │ ├── create-show.tsx │ │ │ │ └── manage-shows.tsx │ │ │ ├── superdesk.ts │ │ │ ├── typings │ │ │ │ └── refs.d.ts │ │ │ └── utils │ │ │ │ ├── get-partial-date-format.ts │ │ │ │ └── handle-unsaved-rundown-changes.ts │ │ └── tsconfig.json │ ├── datetimeField │ │ ├── .gitignore │ │ ├── package-lock.json │ │ ├── package.json │ │ └── src │ │ │ ├── config.tsx │ │ │ ├── editor.tsx │ │ │ ├── extension.tsx │ │ │ ├── interfaces.ts │ │ │ ├── preview.tsx │ │ │ ├── superdesk.ts │ │ │ ├── template-editor.tsx │ │ │ ├── tsconfig.json │ │ │ └── typings │ │ │ └── refs.d.ts │ ├── helloWorld │ │ ├── .gitignore │ │ ├── .mocharc.json │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── extension.ts │ │ │ ├── sample-test.spec.ts │ │ │ ├── superdesk.ts │ │ │ ├── tsconfig.json │ │ │ └── typings │ │ │ │ └── refs.d.ts │ │ └── yarn.lock │ ├── markForUser │ │ ├── .gitignore │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── spec │ │ │ ├── mark_for_user_spec.ts │ │ │ └── tsconfig.json │ │ └── src │ │ │ ├── common.ts │ │ │ ├── extension.tsx │ │ │ ├── get-article-actions-bulk.tsx │ │ │ ├── get-article-actions.tsx │ │ │ ├── get-article-queries.tsx │ │ │ ├── get-mark-for-user-modal.tsx │ │ │ ├── get-marked-for-me-component.tsx │ │ │ ├── index.css │ │ │ ├── managed-marked-user.tsx │ │ │ ├── show-marked-user.tsx │ │ │ ├── tsconfig.json │ │ │ └── typings │ │ │ └── refs.d.ts │ ├── predefinedTextField │ │ ├── .gitignore │ │ ├── package-lock.json │ │ ├── package.json │ │ └── src │ │ │ ├── README.md │ │ │ ├── config.tsx │ │ │ ├── editor.tsx │ │ │ ├── extension.tsx │ │ │ ├── interfaces.ts │ │ │ ├── preview.tsx │ │ │ ├── superdesk.ts │ │ │ ├── tsconfig.json │ │ │ └── typings │ │ │ └── refs.d.ts │ ├── sams │ │ ├── .gitignore │ │ ├── package-lock.json │ │ ├── package.json │ │ └── src │ │ │ ├── api │ │ │ ├── assets.ts │ │ │ ├── common.ts │ │ │ ├── images.ts │ │ │ ├── sets.ts │ │ │ ├── storageDestinations.ts │ │ │ └── workspace.ts │ │ │ ├── apis.ts │ │ │ ├── apps │ │ │ ├── samsApp.tsx │ │ │ ├── samsAttachmentsWidget.tsx │ │ │ └── samsWorkspace.tsx │ │ │ ├── components │ │ │ ├── assets │ │ │ │ ├── AssetImageRendition.tsx │ │ │ │ ├── assetEditor.tsx │ │ │ │ ├── assetEditorPanel.tsx │ │ │ │ ├── assetFilterPanel.tsx │ │ │ │ ├── assetGridItem.tsx │ │ │ │ ├── assetImagePreviewFullScreen.tsx │ │ │ │ ├── assetListItem.tsx │ │ │ │ ├── assetListPanel.tsx │ │ │ │ ├── assetPreviewPanel.tsx │ │ │ │ ├── assetTypeFilterButtons.tsx │ │ │ │ ├── list │ │ │ │ │ ├── AssetImageThumbnail.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── preview │ │ │ │ │ ├── AssetAudioPreview.tsx │ │ │ │ │ ├── AssetImagePreview.tsx │ │ │ │ │ ├── AssetVideoPreview.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── selectAssetModal.tsx │ │ │ │ └── uploadAssetModal.tsx │ │ │ ├── attachments │ │ │ │ ├── editAttachmentModal.tsx │ │ │ │ └── samsAttachmentsList.tsx │ │ │ ├── common │ │ │ │ ├── DesksSelectInput.tsx │ │ │ │ └── versionUserDateLines.tsx │ │ │ ├── sets │ │ │ │ ├── manageSetsModal.tsx │ │ │ │ ├── setEditorPanel.tsx │ │ │ │ ├── setListGroup.tsx │ │ │ │ ├── setListItem.tsx │ │ │ │ ├── setListPanel.tsx │ │ │ │ └── setPreviewPanel.tsx │ │ │ └── workspaceSubnav.tsx │ │ │ ├── containers │ │ │ ├── FileUploadModal.tsx │ │ │ └── PageLayout.tsx │ │ │ ├── extension.ts │ │ │ ├── globals.d.ts │ │ │ ├── interfaces.ts │ │ │ ├── notifications │ │ │ ├── assets.ts │ │ │ ├── desks.ts │ │ │ ├── index.ts │ │ │ └── sets.ts │ │ │ ├── store │ │ │ ├── assets │ │ │ │ ├── actions.ts │ │ │ │ ├── reducers.ts │ │ │ │ ├── selectors.ts │ │ │ │ └── types.ts │ │ │ ├── index.ts │ │ │ ├── sets │ │ │ │ ├── actions.ts │ │ │ │ ├── reducers.ts │ │ │ │ ├── selectors.ts │ │ │ │ └── types.ts │ │ │ ├── storageDestinations │ │ │ │ ├── actions.ts │ │ │ │ ├── reducers.ts │ │ │ │ ├── selectors.ts │ │ │ │ └── types.ts │ │ │ ├── types.ts │ │ │ └── workspace │ │ │ │ ├── actions.ts │ │ │ │ ├── reducers.ts │ │ │ │ ├── selectors.ts │ │ │ │ └── types.ts │ │ │ ├── tsconfig.json │ │ │ ├── typings │ │ │ └── refs.d.ts │ │ │ ├── ui │ │ │ ├── ContentBar.tsx │ │ │ ├── FormGroup.tsx │ │ │ ├── FormItem.tsx │ │ │ ├── FormRow.tsx │ │ │ ├── HeaderPanel.tsx │ │ │ ├── LayoutContainer.tsx │ │ │ ├── LeftPanel.tsx │ │ │ ├── MainPanel.tsx │ │ │ ├── Panel.tsx │ │ │ ├── PanelContent.tsx │ │ │ ├── PanelContentBlock.tsx │ │ │ ├── PanelContentBlockInner.tsx │ │ │ ├── PanelFooter.tsx │ │ │ ├── PanelHeader.tsx │ │ │ ├── PanelHeaderSlidingToolbar.tsx │ │ │ ├── PanelInfo.tsx │ │ │ ├── PanelTools.tsx │ │ │ ├── Portal.tsx │ │ │ ├── RightPanel.tsx │ │ │ ├── SearchBar.tsx │ │ │ ├── SubNavSpacer.tsx │ │ │ ├── Text.tsx │ │ │ ├── grid │ │ │ │ ├── GridItem.tsx │ │ │ │ ├── GridItemContent.tsx │ │ │ │ ├── GridItemFooter.tsx │ │ │ │ ├── GridItemFooterBlock.tsx │ │ │ │ ├── GridItemProgressCircle.tsx │ │ │ │ ├── GridList.tsx │ │ │ │ └── GritItemThumb.tsx │ │ │ ├── index.ts │ │ │ ├── list │ │ │ │ ├── ListHeader.tsx │ │ │ │ ├── ListItem.tsx │ │ │ │ ├── ListItemActionMenu.tsx │ │ │ │ ├── ListItemBorder.tsx │ │ │ │ ├── ListItemColumn.tsx │ │ │ │ ├── ListItemGroup.tsx │ │ │ │ ├── ListItemNested.tsx │ │ │ │ ├── ListItemRow.tsx │ │ │ │ └── index.ts │ │ │ └── modal │ │ │ │ ├── Modal.tsx │ │ │ │ ├── ModalBody.tsx │ │ │ │ ├── ModalFooter.tsx │ │ │ │ ├── ModalHeader.tsx │ │ │ │ ├── ModalHeading.tsx │ │ │ │ └── index.ts │ │ │ └── utils │ │ │ ├── api.ts │ │ │ ├── assets.ts │ │ │ ├── typescript.ts │ │ │ └── ui.tsx │ ├── usageMetrics │ │ ├── .gitignore │ │ ├── package-lock.json │ │ ├── package.json │ │ └── src │ │ │ ├── extension.ts │ │ │ ├── tsconfig.json │ │ │ └── typings │ │ │ └── refs.d.ts │ └── videoEditor │ │ ├── .gitignore │ │ ├── package-lock.json │ │ ├── package.json │ │ └── src │ │ ├── Dropdown │ │ ├── CropLabel.tsx │ │ ├── Dropdown.tsx │ │ └── QualityLabel.tsx │ │ ├── VideoEditor.tsx │ │ ├── VideoEditorHeader.tsx │ │ ├── VideoEditorThumbnail.tsx │ │ ├── VideoEditorTools.tsx │ │ ├── VideoTimeline │ │ ├── BarIcon.tsx │ │ ├── ListThumbnails.tsx │ │ └── VideoTimeline.tsx │ │ ├── extension.tsx │ │ ├── get-video-editor-modal.tsx │ │ ├── index.css │ │ ├── interfaces.ts │ │ ├── tsconfig.json │ │ └── typings │ │ └── refs.d.ts ├── globals.d.ts ├── index.ngdoc ├── index.ts ├── init.ts ├── libs │ └── angular-history │ │ ├── LICENSE │ │ ├── README.md │ │ ├── history.js │ │ └── package.json ├── register-legacy-extension-compatibility-layer.tsx ├── reload-language.ts ├── superdesk-interfaces │ ├── Activity.ts │ ├── ArticleSchema.ts │ ├── ContentFilter.ts │ ├── Destination.ts │ ├── InternalDestination.ts │ ├── Language.ts │ ├── Macro.ts │ ├── PublishQueueItem.ts │ ├── Session.ts │ ├── Subscriber.ts │ ├── UserRole.ts │ └── Widget.ts ├── test-data │ ├── test-article.ts │ ├── test-content-profile-v2.ts │ ├── test-desk.ts │ └── test-vocabulary.ts ├── tests.ts ├── tsconfig.json ├── type-merges.ts ├── types │ ├── Angular │ │ └── DirectiveScope.d.ts │ ├── DataStructures │ │ └── TimeInterval.ts │ └── Services │ │ ├── Desks.d.ts │ │ ├── Highlight.ts │ │ ├── Packages.d.ts │ │ └── Privileges.d.ts ├── utils │ ├── dragging.ts │ ├── focus-first-child-input.ts │ └── object.ts ├── validate-instance-configuration.tsx └── vendor.ts ├── styles └── sass │ ├── alerts.scss │ ├── animation.scss │ ├── app.scss │ ├── archive-filtering.scss │ ├── archive-preview.scss │ ├── bootstrap-pagination.scss │ ├── button-groups.scss │ ├── buttons │ └── _toggle-buttons.scss │ ├── daterangepicker.scss │ ├── dropdowns.scss │ ├── dropdowns │ └── _navigation-dropdown.scss │ ├── forms.scss │ ├── hamburger.scss │ ├── jcrop-custom.scss │ ├── labels.scss │ ├── layouts.scss │ ├── media-archive.scss │ ├── mixins.scss │ ├── modals.scss │ ├── navs.scss │ ├── popovers.scss │ ├── reset.scss │ ├── responsive.scss │ ├── saved-searches.scss │ ├── sd-password-strength.scss │ ├── sd-typeahead.scss │ ├── search-list.scss │ ├── sf-additional.scss │ ├── sf-icons.scss │ ├── tables.scss │ ├── tooltip.scss │ ├── type.scss │ ├── utility-classes.scss │ ├── variables.scss │ └── variables │ ├── _colors.scss │ ├── _dimensions.scss │ ├── _misc.scss │ └── _typography.scss ├── superdesk.config.js ├── tasks ├── generate-placeholder-file-for-extension-styles.js ├── options │ ├── clean.js │ ├── compress.js │ ├── copy.js │ ├── coveralls.js │ ├── dgeni-alive.js │ ├── filerev.js │ ├── files.js │ ├── get-config.js │ ├── karma.js │ ├── nggettext_compile.js │ ├── nggettext_extract.js │ ├── ngtemplates.js │ ├── usemin.js │ ├── webpack-dev-server.js │ └── webpack.js ├── patch-package.js └── verify-client-api-changes.js └── webpack.config.js /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.fireq.json: -------------------------------------------------------------------------------- 1 | { 2 | "superdesk_branch": "develop" 3 | } 4 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/README.md -------------------------------------------------------------------------------- /TAGS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/TAGS.md -------------------------------------------------------------------------------- /docs/item-states.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/docs/item-states.dot -------------------------------------------------------------------------------- /docs/templates/api/module.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/docs/templates/api/module.template.html -------------------------------------------------------------------------------- /e2e/README-PROTRACTOR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/README-PROTRACTOR.md -------------------------------------------------------------------------------- /e2e/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/README.md -------------------------------------------------------------------------------- /e2e/client/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false -------------------------------------------------------------------------------- /e2e/client/Gruntfile.js: -------------------------------------------------------------------------------- 1 | module.exports = require('superdesk-core/Gruntfile'); 2 | -------------------------------------------------------------------------------- /e2e/client/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/index.js -------------------------------------------------------------------------------- /e2e/client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/package.json -------------------------------------------------------------------------------- /e2e/client/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/playwright.config.ts -------------------------------------------------------------------------------- /e2e/client/playwright/.auth/user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/playwright/.auth/user.json -------------------------------------------------------------------------------- /e2e/client/playwright/authoring.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/playwright/authoring.spec.ts -------------------------------------------------------------------------------- /e2e/client/playwright/correct-item.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/playwright/correct-item.spec.ts -------------------------------------------------------------------------------- /e2e/client/playwright/dashboard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/playwright/dashboard.spec.ts -------------------------------------------------------------------------------- /e2e/client/playwright/desks.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/playwright/desks.spec.ts -------------------------------------------------------------------------------- /e2e/client/playwright/editor3.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/playwright/editor3.spec.ts -------------------------------------------------------------------------------- /e2e/client/playwright/fetching.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/playwright/fetching.spec.ts -------------------------------------------------------------------------------- /e2e/client/playwright/hightlights.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/playwright/hightlights.spec.ts -------------------------------------------------------------------------------- /e2e/client/playwright/login.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/playwright/login.spec.ts -------------------------------------------------------------------------------- /e2e/client/playwright/multiedit.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/playwright/multiedit.spec.ts -------------------------------------------------------------------------------- /e2e/client/playwright/publish-queue.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/playwright/publish-queue.spec.ts -------------------------------------------------------------------------------- /e2e/client/playwright/templates.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/playwright/templates.spec.ts -------------------------------------------------------------------------------- /e2e/client/playwright/typings/refs.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/playwright/typings/refs.d.ts -------------------------------------------------------------------------------- /e2e/client/playwright/user-profile.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/playwright/user-profile.spec.ts -------------------------------------------------------------------------------- /e2e/client/playwright/utils/editor3.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/playwright/utils/editor3.tsx -------------------------------------------------------------------------------- /e2e/client/playwright/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/playwright/utils/index.ts -------------------------------------------------------------------------------- /e2e/client/playwright/utils/inputs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/playwright/utils/inputs.tsx -------------------------------------------------------------------------------- /e2e/client/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/protractor.conf.js -------------------------------------------------------------------------------- /e2e/client/specs/_unstable-tests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/specs/_unstable-tests.txt -------------------------------------------------------------------------------- /e2e/client/specs/archived_spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/specs/archived_spec.ts -------------------------------------------------------------------------------- /e2e/client/specs/authoring_spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/specs/authoring_spec.ts -------------------------------------------------------------------------------- /e2e/client/specs/content_filters_spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/specs/content_filters_spec.ts -------------------------------------------------------------------------------- /e2e/client/specs/content_profile_spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/specs/content_profile_spec.ts -------------------------------------------------------------------------------- /e2e/client/specs/content_spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/specs/content_spec.ts -------------------------------------------------------------------------------- /e2e/client/specs/dashboard_spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/specs/dashboard_spec.ts -------------------------------------------------------------------------------- /e2e/client/specs/desks_spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/specs/desks_spec.ts -------------------------------------------------------------------------------- /e2e/client/specs/dictionaries_spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/specs/dictionaries_spec.ts -------------------------------------------------------------------------------- /e2e/client/specs/editor3_spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/specs/editor3_spec.ts -------------------------------------------------------------------------------- /e2e/client/specs/fetch_spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/specs/fetch_spec.ts -------------------------------------------------------------------------------- /e2e/client/specs/fit_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/specs/fit_tests.sh -------------------------------------------------------------------------------- /e2e/client/specs/globals.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/specs/globals.d.ts -------------------------------------------------------------------------------- /e2e/client/specs/helpers/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/specs/helpers/actions.ts -------------------------------------------------------------------------------- /e2e/client/specs/helpers/authoring.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/specs/helpers/authoring.ts -------------------------------------------------------------------------------- /e2e/client/specs/helpers/backend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/specs/helpers/backend.ts -------------------------------------------------------------------------------- /e2e/client/specs/helpers/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/specs/helpers/constants.ts -------------------------------------------------------------------------------- /e2e/client/specs/helpers/content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/specs/helpers/content.ts -------------------------------------------------------------------------------- /e2e/client/specs/helpers/content_filters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/specs/helpers/content_filters.ts -------------------------------------------------------------------------------- /e2e/client/specs/helpers/dashboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/specs/helpers/dashboard.ts -------------------------------------------------------------------------------- /e2e/client/specs/helpers/desks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/specs/helpers/desks.ts -------------------------------------------------------------------------------- /e2e/client/specs/helpers/dictionaries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/specs/helpers/dictionaries.ts -------------------------------------------------------------------------------- /e2e/client/specs/helpers/dropdown-terms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/specs/helpers/dropdown-terms.ts -------------------------------------------------------------------------------- /e2e/client/specs/helpers/fixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/specs/helpers/fixtures.ts -------------------------------------------------------------------------------- /e2e/client/specs/helpers/highlights.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/specs/helpers/highlights.ts -------------------------------------------------------------------------------- /e2e/client/specs/helpers/legal_archive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/specs/helpers/legal_archive.ts -------------------------------------------------------------------------------- /e2e/client/specs/helpers/master_desks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/specs/helpers/master_desks.ts -------------------------------------------------------------------------------- /e2e/client/specs/helpers/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/specs/helpers/metadata.ts -------------------------------------------------------------------------------- /e2e/client/specs/helpers/monitoring.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/specs/helpers/monitoring.ts -------------------------------------------------------------------------------- /e2e/client/specs/helpers/pages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/specs/helpers/pages.ts -------------------------------------------------------------------------------- /e2e/client/specs/helpers/publish_queue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/specs/helpers/publish_queue.ts -------------------------------------------------------------------------------- /e2e/client/specs/helpers/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/specs/helpers/search.ts -------------------------------------------------------------------------------- /e2e/client/specs/helpers/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/specs/helpers/setup.ts -------------------------------------------------------------------------------- /e2e/client/specs/helpers/subscribers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/specs/helpers/subscribers.ts -------------------------------------------------------------------------------- /e2e/client/specs/helpers/templates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/specs/helpers/templates.ts -------------------------------------------------------------------------------- /e2e/client/specs/helpers/user_prefs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/specs/helpers/user_prefs.ts -------------------------------------------------------------------------------- /e2e/client/specs/helpers/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/specs/helpers/utils.ts -------------------------------------------------------------------------------- /e2e/client/specs/helpers/waitReady.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/specs/helpers/waitReady.ts -------------------------------------------------------------------------------- /e2e/client/specs/helpers/workspace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/specs/helpers/workspace.ts -------------------------------------------------------------------------------- /e2e/client/specs/highlights_spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/specs/highlights_spec.ts -------------------------------------------------------------------------------- /e2e/client/specs/ingest_provider_spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/specs/ingest_provider_spec.ts -------------------------------------------------------------------------------- /e2e/client/specs/ingest_settings_spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/specs/ingest_settings_spec.ts -------------------------------------------------------------------------------- /e2e/client/specs/legal_archive_spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/specs/legal_archive_spec.ts -------------------------------------------------------------------------------- /e2e/client/specs/marked_desks_spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/specs/marked_desks_spec.ts -------------------------------------------------------------------------------- /e2e/client/specs/monitoring_spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/specs/monitoring_spec.ts -------------------------------------------------------------------------------- /e2e/client/specs/notifications_spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/specs/notifications_spec.ts -------------------------------------------------------------------------------- /e2e/client/specs/package_spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/specs/package_spec.ts -------------------------------------------------------------------------------- /e2e/client/specs/publishing_spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/specs/publishing_spec.ts -------------------------------------------------------------------------------- /e2e/client/specs/saved_search_spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/specs/saved_search_spec.ts -------------------------------------------------------------------------------- /e2e/client/specs/search_spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/specs/search_spec.ts -------------------------------------------------------------------------------- /e2e/client/specs/send_spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/specs/send_spec.ts -------------------------------------------------------------------------------- /e2e/client/specs/smoke_test.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/specs/smoke_test.list -------------------------------------------------------------------------------- /e2e/client/specs/spike_spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/specs/spike_spec.ts -------------------------------------------------------------------------------- /e2e/client/specs/subscribers_spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/specs/subscribers_spec.ts -------------------------------------------------------------------------------- /e2e/client/specs/suggest_spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/specs/suggest_spec.ts -------------------------------------------------------------------------------- /e2e/client/specs/templates_spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/specs/templates_spec.ts -------------------------------------------------------------------------------- /e2e/client/specs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/specs/tsconfig.json -------------------------------------------------------------------------------- /e2e/client/specs/unfit_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/specs/unfit_tests.sh -------------------------------------------------------------------------------- /e2e/client/specs/users_spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/specs/users_spec.ts -------------------------------------------------------------------------------- /e2e/client/specs/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/specs/utils.ts -------------------------------------------------------------------------------- /e2e/client/specs/vocabularies_spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/specs/vocabularies_spec.ts -------------------------------------------------------------------------------- /e2e/client/specs/workspace_spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/specs/workspace_spec.ts -------------------------------------------------------------------------------- /e2e/client/superdesk.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/superdesk.config.js -------------------------------------------------------------------------------- /e2e/client/test-files/image-big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/test-files/image-big.jpg -------------------------------------------------------------------------------- /e2e/client/test-files/image-blue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/test-files/image-blue.jpg -------------------------------------------------------------------------------- /e2e/client/test-files/image-green.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/test-files/image-green.jpg -------------------------------------------------------------------------------- /e2e/client/test-files/image-red.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/test-files/image-red.jpg -------------------------------------------------------------------------------- /e2e/client/test-files/iptc-photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/test-files/iptc-photo.jpg -------------------------------------------------------------------------------- /e2e/client/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/client/tsconfig.json -------------------------------------------------------------------------------- /e2e/server/.dockerignore: -------------------------------------------------------------------------------- 1 | env 2 | .env 3 | dump 4 | __pycache__ 5 | -------------------------------------------------------------------------------- /e2e/server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/server/Dockerfile -------------------------------------------------------------------------------- /e2e/server/Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/server/Procfile -------------------------------------------------------------------------------- /e2e/server/__pycache__/app.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/server/__pycache__/app.cpython-36.pyc -------------------------------------------------------------------------------- /e2e/server/__pycache__/wsgi.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/server/__pycache__/wsgi.cpython-36.pyc -------------------------------------------------------------------------------- /e2e/server/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/server/app.py -------------------------------------------------------------------------------- /e2e/server/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/server/docker-compose.yml -------------------------------------------------------------------------------- /e2e/server/dump/records/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/server/dump/records/README.md -------------------------------------------------------------------------------- /e2e/server/dump/records/legacy.json.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/server/dump/records/legacy.json.bz2 -------------------------------------------------------------------------------- /e2e/server/dump/records/main.json.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/server/dump/records/main.json.bz2 -------------------------------------------------------------------------------- /e2e/server/hypercorn_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/server/hypercorn_config.py -------------------------------------------------------------------------------- /e2e/server/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/server/manage.py -------------------------------------------------------------------------------- /e2e/server/mongo-rs-initialize.js: -------------------------------------------------------------------------------- 1 | rs.initiate(); -------------------------------------------------------------------------------- /e2e/server/requirements.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/server/requirements.in -------------------------------------------------------------------------------- /e2e/server/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/server/requirements.txt -------------------------------------------------------------------------------- /e2e/server/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/server/settings.py -------------------------------------------------------------------------------- /e2e/server/test_e2e.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/server/test_e2e.sh -------------------------------------------------------------------------------- /e2e/server/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/server/worker.py -------------------------------------------------------------------------------- /e2e/server/ws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/server/ws.py -------------------------------------------------------------------------------- /e2e/server/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/e2e/server/wsgi.py -------------------------------------------------------------------------------- /end-to-end-testing-helpers/articlesList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/end-to-end-testing-helpers/articlesList.ts -------------------------------------------------------------------------------- /end-to-end-testing-helpers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/end-to-end-testing-helpers/index.ts -------------------------------------------------------------------------------- /end-to-end-testing-helpers/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/end-to-end-testing-helpers/package.json -------------------------------------------------------------------------------- /end-to-end-testing-helpers/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/end-to-end-testing-helpers/tsconfig.json -------------------------------------------------------------------------------- /end-to-end-testing-helpers/workspace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/end-to-end-testing-helpers/workspace.ts -------------------------------------------------------------------------------- /fixtures/empty_metadata.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/fixtures/empty_metadata.jpg -------------------------------------------------------------------------------- /fixtures/empty_metadata.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/fixtures/empty_metadata.mov -------------------------------------------------------------------------------- /fixtures/metadata.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/fixtures/metadata.jpg -------------------------------------------------------------------------------- /fixtures/metadata.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/fixtures/metadata.mov -------------------------------------------------------------------------------- /fonts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/fonts/.DS_Store -------------------------------------------------------------------------------- /fonts/sd_icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/fonts/sd_icons.eot -------------------------------------------------------------------------------- /fonts/sd_icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/fonts/sd_icons.svg -------------------------------------------------------------------------------- /fonts/sd_icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/fonts/sd_icons.ttf -------------------------------------------------------------------------------- /fonts/sd_icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/fonts/sd_icons.woff -------------------------------------------------------------------------------- /grep-lint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/grep-lint.py -------------------------------------------------------------------------------- /images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/images/.DS_Store -------------------------------------------------------------------------------- /images/SF_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/images/SF_logo.svg -------------------------------------------------------------------------------- /images/avatar-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/images/avatar-icons.png -------------------------------------------------------------------------------- /images/avatar_200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/images/avatar_200.png -------------------------------------------------------------------------------- /images/avatar_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/images/avatar_64.png -------------------------------------------------------------------------------- /images/avatar_group_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/images/avatar_group_64.png -------------------------------------------------------------------------------- /images/avatar_group_64_green_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/images/avatar_group_64_green_bg.png -------------------------------------------------------------------------------- /images/checkmark-big-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/images/checkmark-big-full.png -------------------------------------------------------------------------------- /images/checkmark-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/images/checkmark-big.png -------------------------------------------------------------------------------- /images/comment-ballon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/images/comment-ballon.png -------------------------------------------------------------------------------- /images/docs/modals/modal-basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/images/docs/modals/modal-basic.png -------------------------------------------------------------------------------- /images/docs/modals/modal-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/images/docs/modals/modal-big.png -------------------------------------------------------------------------------- /images/docs/modals/modal-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/images/docs/modals/modal-large.png -------------------------------------------------------------------------------- /images/docs/modals/modal-responsive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/images/docs/modals/modal-responsive.png -------------------------------------------------------------------------------- /images/docs/modals/modal-static.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/images/docs/modals/modal-static.png -------------------------------------------------------------------------------- /images/docs/modals/modal-streched.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/images/docs/modals/modal-streched.png -------------------------------------------------------------------------------- /images/dragfiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/images/dragfiles.png -------------------------------------------------------------------------------- /images/draggable-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/images/draggable-bg.png -------------------------------------------------------------------------------- /images/dropdown-arrow-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/images/dropdown-arrow-bottom.png -------------------------------------------------------------------------------- /images/dropdown-arrow-side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/images/dropdown-arrow-side.png -------------------------------------------------------------------------------- /images/dropdown-arrow-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/images/dropdown-arrow-top.png -------------------------------------------------------------------------------- /images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/images/favicon.ico -------------------------------------------------------------------------------- /images/icon_upload_error_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/images/icon_upload_error_big.png -------------------------------------------------------------------------------- /images/icons_switch_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/images/icons_switch_view.png -------------------------------------------------------------------------------- /images/loading-large.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/images/loading-large.gif -------------------------------------------------------------------------------- /images/loading-small.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/images/loading-small.gif -------------------------------------------------------------------------------- /images/navigation-arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/images/navigation-arrows.png -------------------------------------------------------------------------------- /images/round-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/images/round-close.png -------------------------------------------------------------------------------- /images/sample/activity1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/images/sample/activity1.jpg -------------------------------------------------------------------------------- /images/sample/activity2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/images/sample/activity2.jpg -------------------------------------------------------------------------------- /images/sample/profileimg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/images/sample/profileimg.jpg -------------------------------------------------------------------------------- /images/sample/widgets/currencies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/images/sample/widgets/currencies.png -------------------------------------------------------------------------------- /images/sample/widgets/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/images/sample/widgets/default.png -------------------------------------------------------------------------------- /images/sample/widgets/twitter-trending.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/images/sample/widgets/twitter-trending.png -------------------------------------------------------------------------------- /images/sample/widgets/weather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/images/sample/widgets/weather.png -------------------------------------------------------------------------------- /images/search-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/images/search-icon.png -------------------------------------------------------------------------------- /images/sf-checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/images/sf-checkbox.png -------------------------------------------------------------------------------- /images/superdesk-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/images/superdesk-logo.svg -------------------------------------------------------------------------------- /images/superdesk-logo_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/images/superdesk-logo_white.svg -------------------------------------------------------------------------------- /images/switch-view-tabs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/images/switch-view-tabs.png -------------------------------------------------------------------------------- /images/three-dots-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/images/three-dots-white.svg -------------------------------------------------------------------------------- /images/three-dots.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/images/three-dots.svg -------------------------------------------------------------------------------- /images/unplug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/images/unplug.png -------------------------------------------------------------------------------- /images/urgency-slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/images/urgency-slider.png -------------------------------------------------------------------------------- /images/widget-resize-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/images/widget-resize-icons.png -------------------------------------------------------------------------------- /images/widget-slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/images/widget-slider.png -------------------------------------------------------------------------------- /index.html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/index.html.js -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/jsconfig.json -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/package.json -------------------------------------------------------------------------------- /package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/package.md -------------------------------------------------------------------------------- /patches/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/patches/README.md -------------------------------------------------------------------------------- /patches/csstype+2.6.17.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/patches/csstype+2.6.17.patch -------------------------------------------------------------------------------- /patches/immutable+3.8.2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/patches/immutable+3.8.2.patch -------------------------------------------------------------------------------- /po/ach.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/po/ach.po -------------------------------------------------------------------------------- /po/ady.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/po/ady.po -------------------------------------------------------------------------------- /po/af_ZA.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/po/af_ZA.po -------------------------------------------------------------------------------- /po/ar.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/po/ar.mo -------------------------------------------------------------------------------- /po/ar.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/po/ar.po -------------------------------------------------------------------------------- /po/ar_EG.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/po/ar_EG.po -------------------------------------------------------------------------------- /po/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/po/ca.po -------------------------------------------------------------------------------- /po/cs_CZ.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/po/cs_CZ.po -------------------------------------------------------------------------------- /po/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/po/da.po -------------------------------------------------------------------------------- /po/de_DE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/po/de_DE.po -------------------------------------------------------------------------------- /po/el.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/po/el.po -------------------------------------------------------------------------------- /po/en_AU.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/po/en_AU.po -------------------------------------------------------------------------------- /po/en_GB.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/po/en_GB.po -------------------------------------------------------------------------------- /po/en_US.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/po/en_US.po -------------------------------------------------------------------------------- /po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/po/es.po -------------------------------------------------------------------------------- /po/es_AR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/po/es_AR.po -------------------------------------------------------------------------------- /po/fa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/po/fa.po -------------------------------------------------------------------------------- /po/fi_FI.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/po/fi_FI.po -------------------------------------------------------------------------------- /po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/po/fr.po -------------------------------------------------------------------------------- /po/fr_CA.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/po/fr_CA.po -------------------------------------------------------------------------------- /po/he.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/po/he.po -------------------------------------------------------------------------------- /po/hu_HU.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/po/hu_HU.po -------------------------------------------------------------------------------- /po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/po/it.po -------------------------------------------------------------------------------- /po/nb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/po/nb.po -------------------------------------------------------------------------------- /po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/po/nl.po -------------------------------------------------------------------------------- /po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/po/pl.po -------------------------------------------------------------------------------- /po/planning/nb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/po/planning/nb.po -------------------------------------------------------------------------------- /po/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/po/pt.po -------------------------------------------------------------------------------- /po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/po/pt_BR.po -------------------------------------------------------------------------------- /po/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/po/ro.po -------------------------------------------------------------------------------- /po/ru_RU.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/po/ru_RU.po -------------------------------------------------------------------------------- /po/superdesk.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/po/superdesk.pot -------------------------------------------------------------------------------- /po/sv_SE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/po/sv_SE.po -------------------------------------------------------------------------------- /po/tr_TR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/po/tr_TR.po -------------------------------------------------------------------------------- /po/uk_UA.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/po/uk_UA.po -------------------------------------------------------------------------------- /scripts/api/article-duplicate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/api/article-duplicate.tsx -------------------------------------------------------------------------------- /scripts/api/article-fetch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/api/article-fetch.tsx -------------------------------------------------------------------------------- /scripts/api/article-patch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/api/article-patch.ts -------------------------------------------------------------------------------- /scripts/api/article-send.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/api/article-send.tsx -------------------------------------------------------------------------------- /scripts/api/article.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/api/article.ts -------------------------------------------------------------------------------- /scripts/api/config.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/api/config.tsx -------------------------------------------------------------------------------- /scripts/api/content-profiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/api/content-profiles.ts -------------------------------------------------------------------------------- /scripts/api/desks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/api/desks.ts -------------------------------------------------------------------------------- /scripts/api/highlights.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/api/highlights.ts -------------------------------------------------------------------------------- /scripts/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/api/index.ts -------------------------------------------------------------------------------- /scripts/api/ingest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/api/ingest.ts -------------------------------------------------------------------------------- /scripts/api/local-storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/api/local-storage.ts -------------------------------------------------------------------------------- /scripts/api/navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/api/navigation.ts -------------------------------------------------------------------------------- /scripts/api/preferences.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/api/preferences.ts -------------------------------------------------------------------------------- /scripts/api/templates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/api/templates.ts -------------------------------------------------------------------------------- /scripts/api/time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/api/time.ts -------------------------------------------------------------------------------- /scripts/api/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/api/user.ts -------------------------------------------------------------------------------- /scripts/api/vocabularies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/api/vocabularies.ts -------------------------------------------------------------------------------- /scripts/appConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/appConfig.ts -------------------------------------------------------------------------------- /scripts/apps/archive/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/archive/actions.ts -------------------------------------------------------------------------------- /scripts/apps/archive/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/archive/constants.ts -------------------------------------------------------------------------------- /scripts/apps/archive/controllers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/archive/controllers/index.ts -------------------------------------------------------------------------------- /scripts/apps/archive/directives/Export.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/archive/directives/Export.ts -------------------------------------------------------------------------------- /scripts/apps/archive/directives/ItemLock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/archive/directives/ItemLock.ts -------------------------------------------------------------------------------- /scripts/apps/archive/directives/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/archive/directives/index.ts -------------------------------------------------------------------------------- /scripts/apps/archive/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/archive/index.tsx -------------------------------------------------------------------------------- /scripts/apps/archive/parse-metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/archive/parse-metadata.ts -------------------------------------------------------------------------------- /scripts/apps/archive/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/archive/services/index.ts -------------------------------------------------------------------------------- /scripts/apps/archive/show-spike-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/archive/show-spike-dialog.tsx -------------------------------------------------------------------------------- /scripts/apps/archive/styles/assignment.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/archive/styles/assignment.scss -------------------------------------------------------------------------------- /scripts/apps/archive/tests/archive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/archive/tests/archive.spec.ts -------------------------------------------------------------------------------- /scripts/apps/archive/tests/family.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/archive/tests/family.spec.ts -------------------------------------------------------------------------------- /scripts/apps/archive/tests/metadata.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/archive/tests/metadata.spec.ts -------------------------------------------------------------------------------- /scripts/apps/archive/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/archive/utils.ts -------------------------------------------------------------------------------- /scripts/apps/archive/views/export-dropdown.html: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /scripts/apps/archive/views/export.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/archive/views/export.html -------------------------------------------------------------------------------- /scripts/apps/archive/views/inline-meta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/archive/views/inline-meta.html -------------------------------------------------------------------------------- /scripts/apps/archive/views/item-crops.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/archive/views/item-crops.html -------------------------------------------------------------------------------- /scripts/apps/archive/views/item-lock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/archive/views/item-lock.html -------------------------------------------------------------------------------- /scripts/apps/archive/views/item-state.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/archive/views/item-state.html -------------------------------------------------------------------------------- /scripts/apps/archive/views/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/archive/views/list.html -------------------------------------------------------------------------------- /scripts/apps/archive/views/package_item_labels_dropdown.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /scripts/apps/archive/views/preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/archive/views/preview.html -------------------------------------------------------------------------------- /scripts/apps/archive/views/related-view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/archive/views/related-view.tsx -------------------------------------------------------------------------------- /scripts/apps/archive/views/upload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/archive/views/upload.html -------------------------------------------------------------------------------- /scripts/apps/authoring-react/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/authoring-react/README.md -------------------------------------------------------------------------------- /scripts/apps/authoring-react/data-layer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/authoring-react/data-layer.ts -------------------------------------------------------------------------------- /scripts/apps/authoring-react/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/authoring-react/interfaces.ts -------------------------------------------------------------------------------- /scripts/apps/authoring-react/packages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/authoring-react/packages.tsx -------------------------------------------------------------------------------- /scripts/apps/authoring/authoring/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/authoring/authoring/helpers.ts -------------------------------------------------------------------------------- /scripts/apps/authoring/authoring/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/authoring/authoring/index.ts -------------------------------------------------------------------------------- /scripts/apps/authoring/authoring/views/sd-autocomplete.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/apps/authoring/comments/comments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/authoring/comments/comments.ts -------------------------------------------------------------------------------- /scripts/apps/authoring/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/authoring/index.ts -------------------------------------------------------------------------------- /scripts/apps/authoring/macros/macros.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/authoring/macros/macros.ts -------------------------------------------------------------------------------- /scripts/apps/authoring/media/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/authoring/media/index.ts -------------------------------------------------------------------------------- /scripts/apps/authoring/metadata/PreferedCvItemsDirective.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/apps/authoring/metadata/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/authoring/metadata/metadata.ts -------------------------------------------------------------------------------- /scripts/apps/authoring/packages/packages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/authoring/packages/packages.ts -------------------------------------------------------------------------------- /scripts/apps/authoring/preview/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/authoring/preview/utils.ts -------------------------------------------------------------------------------- /scripts/apps/authoring/styles/themes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/authoring/styles/themes.scss -------------------------------------------------------------------------------- /scripts/apps/authoring/suggest/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/authoring/suggest/index.ts -------------------------------------------------------------------------------- /scripts/apps/authoring/suggest/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/authoring/suggest/styles.scss -------------------------------------------------------------------------------- /scripts/apps/authoring/views/authoring.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/authoring/views/authoring.html -------------------------------------------------------------------------------- /scripts/apps/authoring/widgets/widgets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/authoring/widgets/widgets.ts -------------------------------------------------------------------------------- /scripts/apps/contacts/Contacts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/contacts/Contacts.ts -------------------------------------------------------------------------------- /scripts/apps/contacts/components/Item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/contacts/components/Item.tsx -------------------------------------------------------------------------------- /scripts/apps/contacts/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/contacts/components/index.ts -------------------------------------------------------------------------------- /scripts/apps/contacts/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/contacts/constants.ts -------------------------------------------------------------------------------- /scripts/apps/contacts/controllers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/contacts/controllers/index.ts -------------------------------------------------------------------------------- /scripts/apps/contacts/directives/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/contacts/directives/index.ts -------------------------------------------------------------------------------- /scripts/apps/contacts/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/contacts/helpers.ts -------------------------------------------------------------------------------- /scripts/apps/contacts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/contacts/index.ts -------------------------------------------------------------------------------- /scripts/apps/contacts/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/contacts/services/index.ts -------------------------------------------------------------------------------- /scripts/apps/contacts/styles/contacts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/contacts/styles/contacts.scss -------------------------------------------------------------------------------- /scripts/apps/contacts/views/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/contacts/views/list.html -------------------------------------------------------------------------------- /scripts/apps/content-api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/content-api/index.ts -------------------------------------------------------------------------------- /scripts/apps/content-api/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/content-api/services/index.ts -------------------------------------------------------------------------------- /scripts/apps/content-api/views/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/content-api/views/list.html -------------------------------------------------------------------------------- /scripts/apps/content-filters/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/content-filters/index.ts -------------------------------------------------------------------------------- /scripts/apps/dashboard/closed-desk/DeskRoutingInfoDirective.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/apps/dashboard/closed-desk/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/dashboard/closed-desk/index.ts -------------------------------------------------------------------------------- /scripts/apps/dashboard/controllers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/dashboard/controllers/index.ts -------------------------------------------------------------------------------- /scripts/apps/dashboard/directives/Widget.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/dashboard/directives/Widget.ts -------------------------------------------------------------------------------- /scripts/apps/dashboard/directives/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/dashboard/directives/index.ts -------------------------------------------------------------------------------- /scripts/apps/dashboard/grid/grid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/dashboard/grid/grid.ts -------------------------------------------------------------------------------- /scripts/apps/dashboard/grid/views/grid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/dashboard/grid/views/grid.html -------------------------------------------------------------------------------- /scripts/apps/dashboard/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/dashboard/index.ts -------------------------------------------------------------------------------- /scripts/apps/dashboard/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/dashboard/services/index.ts -------------------------------------------------------------------------------- /scripts/apps/dashboard/styles/widgets.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/dashboard/styles/widgets.scss -------------------------------------------------------------------------------- /scripts/apps/dashboard/user-activity/user-activity.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /scripts/apps/dashboard/views/widget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/dashboard/views/widget.html -------------------------------------------------------------------------------- /scripts/apps/dashboard/views/workspace-topnav.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /scripts/apps/dashboard/views/workspace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/dashboard/views/workspace.html -------------------------------------------------------------------------------- /scripts/apps/dashboard/widget-heading.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/dashboard/widget-heading.scss -------------------------------------------------------------------------------- /scripts/apps/dashboard/widget-heading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/dashboard/widget-heading.tsx -------------------------------------------------------------------------------- /scripts/apps/dashboard/widget-layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/dashboard/widget-layout.tsx -------------------------------------------------------------------------------- /scripts/apps/dashboard/widget-react.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/dashboard/widget-react.tsx -------------------------------------------------------------------------------- /scripts/apps/desks/components/MarkBtn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/desks/components/MarkBtn.tsx -------------------------------------------------------------------------------- /scripts/apps/desks/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/desks/components/index.ts -------------------------------------------------------------------------------- /scripts/apps/desks/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/desks/constants.ts -------------------------------------------------------------------------------- /scripts/apps/desks/controllers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/desks/controllers/index.ts -------------------------------------------------------------------------------- /scripts/apps/desks/directives/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/desks/directives/index.ts -------------------------------------------------------------------------------- /scripts/apps/desks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/desks/index.ts -------------------------------------------------------------------------------- /scripts/apps/desks/services/DesksFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/desks/services/DesksFactory.ts -------------------------------------------------------------------------------- /scripts/apps/desks/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/desks/services/index.ts -------------------------------------------------------------------------------- /scripts/apps/desks/styles/desks.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/desks/styles/desks.scss -------------------------------------------------------------------------------- /scripts/apps/desks/tests/desks.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/desks/tests/desks.spec.ts -------------------------------------------------------------------------------- /scripts/apps/desks/views/actionpicker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/desks/views/actionpicker.html -------------------------------------------------------------------------------- /scripts/apps/desks/views/mark_desks_dropdown.html: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /scripts/apps/desks/views/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/desks/views/settings.html -------------------------------------------------------------------------------- /scripts/apps/desks/views/stage-header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/desks/views/stage-header.html -------------------------------------------------------------------------------- /scripts/apps/desks/views/user-select.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/desks/views/user-select.html -------------------------------------------------------------------------------- /scripts/apps/dictionaries/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/dictionaries/index.ts -------------------------------------------------------------------------------- /scripts/apps/dictionaries/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/dictionaries/services/index.ts -------------------------------------------------------------------------------- /scripts/apps/extension-points/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/extension-points/index.ts -------------------------------------------------------------------------------- /scripts/apps/fields/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/fields/index.ts -------------------------------------------------------------------------------- /scripts/apps/highlights/directives/HighlightsTitle.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/apps/highlights/directives/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/highlights/directives/index.ts -------------------------------------------------------------------------------- /scripts/apps/highlights/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/highlights/index.ts -------------------------------------------------------------------------------- /scripts/apps/highlights/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/highlights/services/index.ts -------------------------------------------------------------------------------- /scripts/apps/highlights/views/menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/highlights/views/menu.html -------------------------------------------------------------------------------- /scripts/apps/highlights/views/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/highlights/views/settings.html -------------------------------------------------------------------------------- /scripts/apps/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/index.ts -------------------------------------------------------------------------------- /scripts/apps/ingest/controllers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/ingest/controllers/index.ts -------------------------------------------------------------------------------- /scripts/apps/ingest/directives/SortRules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/ingest/directives/SortRules.ts -------------------------------------------------------------------------------- /scripts/apps/ingest/directives/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/ingest/directives/index.ts -------------------------------------------------------------------------------- /scripts/apps/ingest/filters/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/ingest/filters/index.ts -------------------------------------------------------------------------------- /scripts/apps/ingest/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/ingest/index.ts -------------------------------------------------------------------------------- /scripts/apps/ingest/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/ingest/services/index.ts -------------------------------------------------------------------------------- /scripts/apps/ingest/styles/dashboard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/ingest/styles/dashboard.scss -------------------------------------------------------------------------------- /scripts/apps/ingest/styles/settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/ingest/styles/settings.scss -------------------------------------------------------------------------------- /scripts/apps/ingest/tests/ingest.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/ingest/tests/ingest.spec.ts -------------------------------------------------------------------------------- /scripts/apps/internal-destinations/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/internal-destinations/index.ts -------------------------------------------------------------------------------- /scripts/apps/legal-archive/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/legal-archive/index.ts -------------------------------------------------------------------------------- /scripts/apps/master-desk/MasterDesk.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/master-desk/MasterDesk.tsx -------------------------------------------------------------------------------- /scripts/apps/master-desk/MasterDeskApp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/master-desk/MasterDeskApp.tsx -------------------------------------------------------------------------------- /scripts/apps/master-desk/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/master-desk/index.ts -------------------------------------------------------------------------------- /scripts/apps/monitoring/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/monitoring/config.ts -------------------------------------------------------------------------------- /scripts/apps/monitoring/directives/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/monitoring/directives/index.ts -------------------------------------------------------------------------------- /scripts/apps/monitoring/directives/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/monitoring/directives/utils.ts -------------------------------------------------------------------------------- /scripts/apps/monitoring/filters/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/monitoring/filters/index.ts -------------------------------------------------------------------------------- /scripts/apps/monitoring/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/monitoring/index.ts -------------------------------------------------------------------------------- /scripts/apps/monitoring/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/monitoring/services/index.ts -------------------------------------------------------------------------------- /scripts/apps/monitoring/views/personal.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /scripts/apps/packaging/controllers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/packaging/controllers/index.ts -------------------------------------------------------------------------------- /scripts/apps/packaging/directives/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/packaging/directives/index.ts -------------------------------------------------------------------------------- /scripts/apps/packaging/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/packaging/index.ts -------------------------------------------------------------------------------- /scripts/apps/packaging/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/packaging/services/index.ts -------------------------------------------------------------------------------- /scripts/apps/packaging/views/add-to-package.html: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /scripts/apps/packaging/views/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/packaging/views/search.html -------------------------------------------------------------------------------- /scripts/apps/products/controllers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/products/controllers/index.ts -------------------------------------------------------------------------------- /scripts/apps/products/filters/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/products/filters/index.ts -------------------------------------------------------------------------------- /scripts/apps/products/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/products/index.ts -------------------------------------------------------------------------------- /scripts/apps/products/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/products/services/index.ts -------------------------------------------------------------------------------- /scripts/apps/products/styles/products.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/products/styles/products.scss -------------------------------------------------------------------------------- /scripts/apps/products/views/products.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/products/views/products.html -------------------------------------------------------------------------------- /scripts/apps/products/views/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/products/views/settings.html -------------------------------------------------------------------------------- /scripts/apps/profiling/controllers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/profiling/controllers/index.ts -------------------------------------------------------------------------------- /scripts/apps/profiling/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/profiling/index.ts -------------------------------------------------------------------------------- /scripts/apps/profiling/views/profiling.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/profiling/views/profiling.html -------------------------------------------------------------------------------- /scripts/apps/publish-preview/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/publish-preview/README.md -------------------------------------------------------------------------------- /scripts/apps/publish/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/publish/constants.ts -------------------------------------------------------------------------------- /scripts/apps/publish/controllers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/publish/controllers/index.ts -------------------------------------------------------------------------------- /scripts/apps/publish/directives/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/publish/directives/index.ts -------------------------------------------------------------------------------- /scripts/apps/publish/filters/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/publish/filters/index.ts -------------------------------------------------------------------------------- /scripts/apps/publish/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/publish/index.ts -------------------------------------------------------------------------------- /scripts/apps/publish/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/publish/services/index.ts -------------------------------------------------------------------------------- /scripts/apps/publish/styles/publish.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/publish/styles/publish.scss -------------------------------------------------------------------------------- /scripts/apps/publish/tests/publish.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/publish/tests/publish.spec.ts -------------------------------------------------------------------------------- /scripts/apps/publish/views/destination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/publish/views/destination.html -------------------------------------------------------------------------------- /scripts/apps/publish/views/file-config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/publish/views/file-config.html -------------------------------------------------------------------------------- /scripts/apps/publish/views/ftp-config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/publish/views/ftp-config.html -------------------------------------------------------------------------------- /scripts/apps/publish/views/odbc-config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/publish/views/odbc-config.html -------------------------------------------------------------------------------- /scripts/apps/publish/views/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/publish/views/settings.html -------------------------------------------------------------------------------- /scripts/apps/publish/views/subscribers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/publish/views/subscribers.html -------------------------------------------------------------------------------- /scripts/apps/relations/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/relations/index.ts -------------------------------------------------------------------------------- /scripts/apps/search-providers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/search-providers/index.ts -------------------------------------------------------------------------------- /scripts/apps/search-providers/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/search-providers/service.ts -------------------------------------------------------------------------------- /scripts/apps/search/MultiImageEdit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/search/MultiImageEdit.ts -------------------------------------------------------------------------------- /scripts/apps/search/SavedSearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/search/SavedSearch.ts -------------------------------------------------------------------------------- /scripts/apps/search/components/Item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/search/components/Item.tsx -------------------------------------------------------------------------------- /scripts/apps/search/components/constants.ts: -------------------------------------------------------------------------------- 1 | 2 | export const CHECKBOX_PARENT_CLASS = 'sd-monitoring-item-multi-select-checkbox'; 3 | -------------------------------------------------------------------------------- /scripts/apps/search/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/search/components/index.ts -------------------------------------------------------------------------------- /scripts/apps/search/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/search/constants.ts -------------------------------------------------------------------------------- /scripts/apps/search/controllers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/search/controllers/index.ts -------------------------------------------------------------------------------- /scripts/apps/search/directives/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/search/directives/index.ts -------------------------------------------------------------------------------- /scripts/apps/search/helpers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/search/helpers.tsx -------------------------------------------------------------------------------- /scripts/apps/search/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/search/index.ts -------------------------------------------------------------------------------- /scripts/apps/search/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/search/interfaces.ts -------------------------------------------------------------------------------- /scripts/apps/search/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/search/services/index.ts -------------------------------------------------------------------------------- /scripts/apps/search/styles/search.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/search/styles/search.scss -------------------------------------------------------------------------------- /scripts/apps/search/tests/search.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/search/tests/search.spec.ts -------------------------------------------------------------------------------- /scripts/apps/search/tests/tags.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/search/tests/tags.spec.ts -------------------------------------------------------------------------------- /scripts/apps/search/views/item-repo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/search/views/item-repo.html -------------------------------------------------------------------------------- /scripts/apps/search/views/menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/search/views/menu.html -------------------------------------------------------------------------------- /scripts/apps/search/views/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/search/views/search.html -------------------------------------------------------------------------------- /scripts/apps/settings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/settings/index.ts -------------------------------------------------------------------------------- /scripts/apps/settings/settings-page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/settings/settings-page.tsx -------------------------------------------------------------------------------- /scripts/apps/settings/settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/settings/settings.tsx -------------------------------------------------------------------------------- /scripts/apps/settings/views/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/settings/views/main.html -------------------------------------------------------------------------------- /scripts/apps/stream/controllers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/stream/controllers/index.ts -------------------------------------------------------------------------------- /scripts/apps/stream/directives/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/stream/directives/index.ts -------------------------------------------------------------------------------- /scripts/apps/stream/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/stream/index.ts -------------------------------------------------------------------------------- /scripts/apps/stream/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/stream/services/index.ts -------------------------------------------------------------------------------- /scripts/apps/system-messages/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/system-messages/index.ts -------------------------------------------------------------------------------- /scripts/apps/tansa/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/tansa/index.ts -------------------------------------------------------------------------------- /scripts/apps/templates/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/templates/constants.ts -------------------------------------------------------------------------------- /scripts/apps/templates/filters/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/templates/filters/index.ts -------------------------------------------------------------------------------- /scripts/apps/templates/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/templates/helpers.ts -------------------------------------------------------------------------------- /scripts/apps/templates/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/templates/index.ts -------------------------------------------------------------------------------- /scripts/apps/templates/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/templates/services/index.ts -------------------------------------------------------------------------------- /scripts/apps/translations/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/translations/index.ts -------------------------------------------------------------------------------- /scripts/apps/translations/views/TranslationDropdownTemplate.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /scripts/apps/users/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/users/components/index.ts -------------------------------------------------------------------------------- /scripts/apps/users/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/users/config.ts -------------------------------------------------------------------------------- /scripts/apps/users/controllers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/users/controllers/index.ts -------------------------------------------------------------------------------- /scripts/apps/users/directives/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/users/directives/index.ts -------------------------------------------------------------------------------- /scripts/apps/users/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/users/helpers.ts -------------------------------------------------------------------------------- /scripts/apps/users/import/import.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/users/import/import.ts -------------------------------------------------------------------------------- /scripts/apps/users/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/users/index.ts -------------------------------------------------------------------------------- /scripts/apps/users/roles/RolesService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/users/roles/RolesService.ts -------------------------------------------------------------------------------- /scripts/apps/users/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/users/services/index.ts -------------------------------------------------------------------------------- /scripts/apps/users/styles/settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/users/styles/settings.scss -------------------------------------------------------------------------------- /scripts/apps/users/styles/users.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/users/styles/users.scss -------------------------------------------------------------------------------- /scripts/apps/users/tests/profile.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/users/tests/profile.spec.ts -------------------------------------------------------------------------------- /scripts/apps/users/tests/users.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/users/tests/users.spec.ts -------------------------------------------------------------------------------- /scripts/apps/users/views/edit-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/users/views/edit-form.html -------------------------------------------------------------------------------- /scripts/apps/users/views/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/users/views/edit.html -------------------------------------------------------------------------------- /scripts/apps/users/views/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/users/views/list.html -------------------------------------------------------------------------------- /scripts/apps/users/views/mentions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/users/views/mentions.html -------------------------------------------------------------------------------- /scripts/apps/users/views/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/users/views/settings.html -------------------------------------------------------------------------------- /scripts/apps/vocabularies/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/vocabularies/constants.ts -------------------------------------------------------------------------------- /scripts/apps/vocabularies/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/vocabularies/index.ts -------------------------------------------------------------------------------- /scripts/apps/workspace/content/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/workspace/content/index.ts -------------------------------------------------------------------------------- /scripts/apps/workspace/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/workspace/index.ts -------------------------------------------------------------------------------- /scripts/apps/workspace/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/apps/workspace/services/index.ts -------------------------------------------------------------------------------- /scripts/apps/workspace/views/workspace-sidenav-items-hr.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /scripts/config.js: -------------------------------------------------------------------------------- 1 | window.superdeskConfig = {}; 2 | -------------------------------------------------------------------------------- /scripts/core/ArticlesListByQuery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/ArticlesListByQuery.tsx -------------------------------------------------------------------------------- /scripts/core/ArticlesListV2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/ArticlesListV2.tsx -------------------------------------------------------------------------------- /scripts/core/MultiSelectHoc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/MultiSelectHoc.tsx -------------------------------------------------------------------------------- /scripts/core/SuperdeskReactComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/SuperdeskReactComponent.tsx -------------------------------------------------------------------------------- /scripts/core/activity/activity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/activity/activity.ts -------------------------------------------------------------------------------- /scripts/core/activity/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/activity/index.ts -------------------------------------------------------------------------------- /scripts/core/analytics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/analytics/README.md -------------------------------------------------------------------------------- /scripts/core/analytics/analytics.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/analytics/analytics.spec.ts -------------------------------------------------------------------------------- /scripts/core/analytics/analytics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/analytics/analytics.ts -------------------------------------------------------------------------------- /scripts/core/analytics/index.ts: -------------------------------------------------------------------------------- 1 | import './analytics'; 2 | -------------------------------------------------------------------------------- /scripts/core/api/allowed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/api/allowed.ts -------------------------------------------------------------------------------- /scripts/core/api/allowed_spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/api/allowed_spec.ts -------------------------------------------------------------------------------- /scripts/core/api/api-service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/api/api-service.spec.ts -------------------------------------------------------------------------------- /scripts/core/api/api-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/api/api-service.ts -------------------------------------------------------------------------------- /scripts/core/api/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/api/api.ts -------------------------------------------------------------------------------- /scripts/core/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/api/index.ts -------------------------------------------------------------------------------- /scripts/core/api/request-service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/api/request-service.spec.ts -------------------------------------------------------------------------------- /scripts/core/api/request-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/api/request-service.ts -------------------------------------------------------------------------------- /scripts/core/api/timeout-interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/api/timeout-interceptor.ts -------------------------------------------------------------------------------- /scripts/core/api/url-resolver-helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/api/url-resolver-helpers.ts -------------------------------------------------------------------------------- /scripts/core/api/url-resolver-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/api/url-resolver-service.ts -------------------------------------------------------------------------------- /scripts/core/api/url-resolver.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/api/url-resolver.spec.ts -------------------------------------------------------------------------------- /scripts/core/auth/auth-service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/auth/auth-service.spec.ts -------------------------------------------------------------------------------- /scripts/core/auth/auth-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/auth/auth-service.ts -------------------------------------------------------------------------------- /scripts/core/auth/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/auth/auth.ts -------------------------------------------------------------------------------- /scripts/core/auth/basic-auth-adapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/auth/basic-auth-adapter.ts -------------------------------------------------------------------------------- /scripts/core/auth/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/auth/index.ts -------------------------------------------------------------------------------- /scripts/core/auth/keycloak-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/auth/keycloak-service.ts -------------------------------------------------------------------------------- /scripts/core/auth/login-modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/auth/login-modal.html -------------------------------------------------------------------------------- /scripts/core/auth/reset-password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/auth/reset-password.html -------------------------------------------------------------------------------- /scripts/core/auth/secure-login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/auth/secure-login.html -------------------------------------------------------------------------------- /scripts/core/auth/session-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/auth/session-service.ts -------------------------------------------------------------------------------- /scripts/core/auth/styles/auth.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/auth/styles/auth.scss -------------------------------------------------------------------------------- /scripts/core/auth/tests/auth.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/auth/tests/auth.spec.ts -------------------------------------------------------------------------------- /scripts/core/beta/beta.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/beta/beta.spec.ts -------------------------------------------------------------------------------- /scripts/core/beta/beta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/beta/beta.ts -------------------------------------------------------------------------------- /scripts/core/beta/index.ts: -------------------------------------------------------------------------------- 1 | import './beta'; 2 | -------------------------------------------------------------------------------- /scripts/core/components/ListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/components/ListItem.tsx -------------------------------------------------------------------------------- /scripts/core/components/PageLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/components/PageLayout.tsx -------------------------------------------------------------------------------- /scripts/core/components/SidePanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/components/SidePanel.tsx -------------------------------------------------------------------------------- /scripts/core/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/config.ts -------------------------------------------------------------------------------- /scripts/core/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/constants.ts -------------------------------------------------------------------------------- /scripts/core/count-words.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/count-words.spec.ts -------------------------------------------------------------------------------- /scripts/core/count-words.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/count-words.ts -------------------------------------------------------------------------------- /scripts/core/data/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/data/index.ts -------------------------------------------------------------------------------- /scripts/core/datetime/datetime.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/datetime/datetime.spec.ts -------------------------------------------------------------------------------- /scripts/core/datetime/datetime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/datetime/datetime.ts -------------------------------------------------------------------------------- /scripts/core/datetime/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/datetime/index.ts -------------------------------------------------------------------------------- /scripts/core/datetime/relativeDate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/datetime/relativeDate.tsx -------------------------------------------------------------------------------- /scripts/core/decode-html-entities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/decode-html-entities.ts -------------------------------------------------------------------------------- /scripts/core/directives/SortDirective.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/directives/SortDirective.ts -------------------------------------------------------------------------------- /scripts/core/directives/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/directives/index.ts -------------------------------------------------------------------------------- /scripts/core/editor3/Editor3Html.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/editor3/Editor3Html.tsx -------------------------------------------------------------------------------- /scripts/core/editor3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/editor3/README.md -------------------------------------------------------------------------------- /scripts/core/editor3/actions/editor3.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/editor3/actions/editor3.tsx -------------------------------------------------------------------------------- /scripts/core/editor3/actions/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/editor3/actions/index.tsx -------------------------------------------------------------------------------- /scripts/core/editor3/actions/multi-line-quote.tsx: -------------------------------------------------------------------------------- 1 | export const addMultiLineQuote = () => ({type: 'TOOLBAR_ADD_MULTI-LINE_QUOTE'}); 2 | -------------------------------------------------------------------------------- /scripts/core/editor3/actions/popups.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/editor3/actions/popups.tsx -------------------------------------------------------------------------------- /scripts/core/editor3/actions/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/editor3/actions/table.tsx -------------------------------------------------------------------------------- /scripts/core/editor3/actions/toolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/editor3/actions/toolbar.tsx -------------------------------------------------------------------------------- /scripts/core/editor3/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/editor3/components/index.ts -------------------------------------------------------------------------------- /scripts/core/editor3/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/editor3/constants.ts -------------------------------------------------------------------------------- /scripts/core/editor3/directive.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/editor3/directive.tsx -------------------------------------------------------------------------------- /scripts/core/editor3/draftjs-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/editor3/draftjs-types.ts -------------------------------------------------------------------------------- /scripts/core/editor3/helpers/author.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/editor3/helpers/author.ts -------------------------------------------------------------------------------- /scripts/core/editor3/helpers/blocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/editor3/helpers/blocks.ts -------------------------------------------------------------------------------- /scripts/core/editor3/helpers/links.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/editor3/helpers/links.ts -------------------------------------------------------------------------------- /scripts/core/editor3/helpers/table.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/editor3/helpers/table.ts -------------------------------------------------------------------------------- /scripts/core/editor3/highlightsConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/editor3/highlightsConfig.ts -------------------------------------------------------------------------------- /scripts/core/editor3/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/editor3/index.ts -------------------------------------------------------------------------------- /scripts/core/editor3/react.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/editor3/react.tsx -------------------------------------------------------------------------------- /scripts/core/editor3/reducers/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/editor3/reducers/index.tsx -------------------------------------------------------------------------------- /scripts/core/editor3/reducers/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/editor3/reducers/table.tsx -------------------------------------------------------------------------------- /scripts/core/editor3/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/editor3/service.ts -------------------------------------------------------------------------------- /scripts/core/editor3/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/editor3/store/index.ts -------------------------------------------------------------------------------- /scripts/core/editor3/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/editor3/styles.scss -------------------------------------------------------------------------------- /scripts/core/elastic/elastic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/elastic/elastic.ts -------------------------------------------------------------------------------- /scripts/core/elastic/es.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/elastic/es.spec.ts -------------------------------------------------------------------------------- /scripts/core/elastic/es.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/elastic/es.ts -------------------------------------------------------------------------------- /scripts/core/elastic/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/elastic/index.ts -------------------------------------------------------------------------------- /scripts/core/error/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/error/error.ts -------------------------------------------------------------------------------- /scripts/core/error/index.ts: -------------------------------------------------------------------------------- 1 | import './error'; 2 | -------------------------------------------------------------------------------- /scripts/core/extension-page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/extension-page.tsx -------------------------------------------------------------------------------- /scripts/core/features/features.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/features/features.ts -------------------------------------------------------------------------------- /scripts/core/features/index.ts: -------------------------------------------------------------------------------- 1 | import './features'; 2 | -------------------------------------------------------------------------------- /scripts/core/filters/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/filters/index.ts -------------------------------------------------------------------------------- /scripts/core/find-parent-scope.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/find-parent-scope.ts -------------------------------------------------------------------------------- /scripts/core/form/CheckboxDirective.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/form/CheckboxDirective.ts -------------------------------------------------------------------------------- /scripts/core/form/InputDirective.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/form/InputDirective.ts -------------------------------------------------------------------------------- /scripts/core/form/SelectDirective.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/form/SelectDirective.ts -------------------------------------------------------------------------------- /scripts/core/form/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/form/index.ts -------------------------------------------------------------------------------- /scripts/core/getRelatedEntities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/getRelatedEntities.ts -------------------------------------------------------------------------------- /scripts/core/global-fixes/index.ts: -------------------------------------------------------------------------------- 1 | import './open-external-links-in-new-tab'; 2 | -------------------------------------------------------------------------------- /scripts/core/helpers/CrudManager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/helpers/CrudManager.tsx -------------------------------------------------------------------------------- /scripts/core/helpers/ErrorBoundary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/helpers/ErrorBoundary.tsx -------------------------------------------------------------------------------- /scripts/core/helpers/class-names.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/core/helpers/data-provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/helpers/data-provider.ts -------------------------------------------------------------------------------- /scripts/core/helpers/debounce-async.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/helpers/debounce-async.ts -------------------------------------------------------------------------------- /scripts/core/helpers/debug-settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/helpers/debug-settings.tsx -------------------------------------------------------------------------------- /scripts/core/helpers/dom/findParent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/helpers/dom/findParent.ts -------------------------------------------------------------------------------- /scripts/core/helpers/editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/helpers/editor.ts -------------------------------------------------------------------------------- /scripts/core/helpers/elasticsearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/helpers/elasticsearch.ts -------------------------------------------------------------------------------- /scripts/core/helpers/fetch-all.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/helpers/fetch-all.tsx -------------------------------------------------------------------------------- /scripts/core/helpers/for-extensions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/helpers/for-extensions.ts -------------------------------------------------------------------------------- /scripts/core/helpers/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/helpers/item.ts -------------------------------------------------------------------------------- /scripts/core/helpers/locale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/helpers/locale.ts -------------------------------------------------------------------------------- /scripts/core/helpers/locking-helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/helpers/locking-helpers.ts -------------------------------------------------------------------------------- /scripts/core/helpers/network.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/helpers/network.tsx -------------------------------------------------------------------------------- /scripts/core/helpers/pagination.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/helpers/pagination.ts -------------------------------------------------------------------------------- /scripts/core/helpers/request-queue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/helpers/request-queue.ts -------------------------------------------------------------------------------- /scripts/core/helpers/testUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/helpers/testUtils.ts -------------------------------------------------------------------------------- /scripts/core/helpers/tree.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/helpers/tree.spec.ts -------------------------------------------------------------------------------- /scripts/core/helpers/tree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/helpers/tree.ts -------------------------------------------------------------------------------- /scripts/core/helpers/ui-framework.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/helpers/ui-framework.ts -------------------------------------------------------------------------------- /scripts/core/helpers/universal-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/helpers/universal-query.ts -------------------------------------------------------------------------------- /scripts/core/helpers/url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/helpers/url.ts -------------------------------------------------------------------------------- /scripts/core/helpers/utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/helpers/utils.tsx -------------------------------------------------------------------------------- /scripts/core/helpers/uuid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/helpers/uuid.ts -------------------------------------------------------------------------------- /scripts/core/helpers/waitUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/helpers/waitUtil.ts -------------------------------------------------------------------------------- /scripts/core/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/index.ts -------------------------------------------------------------------------------- /scripts/core/internal-events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/internal-events.ts -------------------------------------------------------------------------------- /scripts/core/itemList/LazyLoader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/itemList/LazyLoader.tsx -------------------------------------------------------------------------------- /scripts/core/itemList/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/itemList/index.ts -------------------------------------------------------------------------------- /scripts/core/itemList/itemList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/itemList/itemList.ts -------------------------------------------------------------------------------- /scripts/core/keyboard/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/keyboard/index.ts -------------------------------------------------------------------------------- /scripts/core/keyboard/keyboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/keyboard/keyboard.ts -------------------------------------------------------------------------------- /scripts/core/lang/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/lang/index.ts -------------------------------------------------------------------------------- /scripts/core/list/index.ts: -------------------------------------------------------------------------------- 1 | import './list'; 2 | -------------------------------------------------------------------------------- /scripts/core/list/list.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/list/list.spec.ts -------------------------------------------------------------------------------- /scripts/core/list/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/list/list.ts -------------------------------------------------------------------------------- /scripts/core/list/views/list-view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/list/views/list-view.html -------------------------------------------------------------------------------- /scripts/core/list/views/searchbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/list/views/searchbar.html -------------------------------------------------------------------------------- /scripts/core/loading.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/loading.ts -------------------------------------------------------------------------------- /scripts/core/menu/authoring-switch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/menu/authoring-switch.ts -------------------------------------------------------------------------------- /scripts/core/menu/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/menu/index.ts -------------------------------------------------------------------------------- /scripts/core/menu/menu.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/menu/menu.spec.ts -------------------------------------------------------------------------------- /scripts/core/menu/menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/menu/menu.ts -------------------------------------------------------------------------------- /scripts/core/menu/styles/menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/menu/styles/menu.scss -------------------------------------------------------------------------------- /scripts/core/menu/views/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/menu/views/about.html -------------------------------------------------------------------------------- /scripts/core/menu/views/menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/menu/views/menu.html -------------------------------------------------------------------------------- /scripts/core/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/middleware.ts -------------------------------------------------------------------------------- /scripts/core/notification/index.ts: -------------------------------------------------------------------------------- 1 | import './notification'; 2 | -------------------------------------------------------------------------------- /scripts/core/notify/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/notify/index.ts -------------------------------------------------------------------------------- /scripts/core/notify/notify.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/notify/notify.tsx -------------------------------------------------------------------------------- /scripts/core/notify/styles/notify.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/notify/styles/notify.scss -------------------------------------------------------------------------------- /scripts/core/patch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/patch.ts -------------------------------------------------------------------------------- /scripts/core/popper-utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/popper-utils.tsx -------------------------------------------------------------------------------- /scripts/core/privileges/index.ts: -------------------------------------------------------------------------------- 1 | import './privileges'; 2 | -------------------------------------------------------------------------------- /scripts/core/privileges/privileges.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/privileges/privileges.ts -------------------------------------------------------------------------------- /scripts/core/prompt-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/prompt-modal.tsx -------------------------------------------------------------------------------- /scripts/core/query-formatting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/query-formatting.ts -------------------------------------------------------------------------------- /scripts/core/redux-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/redux-utils.ts -------------------------------------------------------------------------------- /scripts/core/register-extensions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/register-extensions.tsx -------------------------------------------------------------------------------- /scripts/core/services/asset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/services/asset.ts -------------------------------------------------------------------------------- /scripts/core/services/data.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/services/data.spec.ts -------------------------------------------------------------------------------- /scripts/core/services/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/services/data.ts -------------------------------------------------------------------------------- /scripts/core/services/dragDropService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/services/dragDropService.ts -------------------------------------------------------------------------------- /scripts/core/services/entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/services/entity.ts -------------------------------------------------------------------------------- /scripts/core/services/image-factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/services/image-factory.ts -------------------------------------------------------------------------------- /scripts/core/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/services/index.ts -------------------------------------------------------------------------------- /scripts/core/services/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/services/logger.ts -------------------------------------------------------------------------------- /scripts/core/services/modalService.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/services/modalService.tsx -------------------------------------------------------------------------------- /scripts/core/services/ng.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/services/ng.ts -------------------------------------------------------------------------------- /scripts/core/services/pageTitle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/services/pageTitle.ts -------------------------------------------------------------------------------- /scripts/core/services/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/services/server.ts -------------------------------------------------------------------------------- /scripts/core/services/serverConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/services/serverConfig.ts -------------------------------------------------------------------------------- /scripts/core/services/storage.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/services/storage.spec.ts -------------------------------------------------------------------------------- /scripts/core/services/storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/services/storage.ts -------------------------------------------------------------------------------- /scripts/core/services/translate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/services/translate.ts -------------------------------------------------------------------------------- /scripts/core/services/workflow.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/services/workflow.spec.ts -------------------------------------------------------------------------------- /scripts/core/services/workflowService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/services/workflowService.ts -------------------------------------------------------------------------------- /scripts/core/spellcheck/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/spellcheck/README.md -------------------------------------------------------------------------------- /scripts/core/spellcheck/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/spellcheck/index.ts -------------------------------------------------------------------------------- /scripts/core/spellcheck/spellcheck.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/spellcheck/spellcheck.ts -------------------------------------------------------------------------------- /scripts/core/superdesk-api-helpers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/superdesk-api-helpers.tsx -------------------------------------------------------------------------------- /scripts/core/superdesk-api.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/superdesk-api.d.ts -------------------------------------------------------------------------------- /scripts/core/tests/config.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/tests/config.spec.ts -------------------------------------------------------------------------------- /scripts/core/tests/filters.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/tests/filters.spec.ts -------------------------------------------------------------------------------- /scripts/core/tests/middleware.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/tests/middleware.spec.ts -------------------------------------------------------------------------------- /scripts/core/tests/mockDataApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/tests/mockDataApi.ts -------------------------------------------------------------------------------- /scripts/core/tests/mocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/tests/mocks.ts -------------------------------------------------------------------------------- /scripts/core/ui-utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/ui-utils.tsx -------------------------------------------------------------------------------- /scripts/core/ui/autoheight-directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/ui/autoheight-directive.ts -------------------------------------------------------------------------------- /scripts/core/ui/components/Badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/ui/components/Badge.tsx -------------------------------------------------------------------------------- /scripts/core/ui/components/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/ui/components/Button.tsx -------------------------------------------------------------------------------- /scripts/core/ui/components/Card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/ui/components/Card.tsx -------------------------------------------------------------------------------- /scripts/core/ui/components/Center.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/ui/components/Center.tsx -------------------------------------------------------------------------------- /scripts/core/ui/components/DateTime.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/ui/components/DateTime.tsx -------------------------------------------------------------------------------- /scripts/core/ui/components/Form/Row.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/ui/components/Form/Row.tsx -------------------------------------------------------------------------------- /scripts/core/ui/components/Icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/ui/components/Icon.tsx -------------------------------------------------------------------------------- /scripts/core/ui/components/Icon2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/ui/components/Icon2.tsx -------------------------------------------------------------------------------- /scripts/core/ui/components/IconBig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/ui/components/IconBig.tsx -------------------------------------------------------------------------------- /scripts/core/ui/components/IconMix.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/ui/components/IconMix.tsx -------------------------------------------------------------------------------- /scripts/core/ui/components/List/Item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/ui/components/List/Item.tsx -------------------------------------------------------------------------------- /scripts/core/ui/components/List/Row.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/ui/components/List/Row.tsx -------------------------------------------------------------------------------- /scripts/core/ui/components/Loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/ui/components/Loader.tsx -------------------------------------------------------------------------------- /scripts/core/ui/components/Nav/Tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/ui/components/Nav/Tabs.tsx -------------------------------------------------------------------------------- /scripts/core/ui/components/Nav/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/ui/components/Nav/index.tsx -------------------------------------------------------------------------------- /scripts/core/ui/components/PanelInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/ui/components/PanelInfo.tsx -------------------------------------------------------------------------------- /scripts/core/ui/components/SearchBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/ui/components/SearchBox.tsx -------------------------------------------------------------------------------- /scripts/core/ui/components/SmallTags.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/ui/components/SmallTags.tsx -------------------------------------------------------------------------------- /scripts/core/ui/components/Spacer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/ui/components/Spacer.tsx -------------------------------------------------------------------------------- /scripts/core/ui/components/TagLabel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/ui/components/TagLabel.tsx -------------------------------------------------------------------------------- /scripts/core/ui/components/TermsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/ui/components/TermsList.tsx -------------------------------------------------------------------------------- /scripts/core/ui/components/alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/ui/components/alert.scss -------------------------------------------------------------------------------- /scripts/core/ui/components/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/ui/components/alert.tsx -------------------------------------------------------------------------------- /scripts/core/ui/components/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/ui/components/constants.ts -------------------------------------------------------------------------------- /scripts/core/ui/components/drop-zone.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/ui/components/drop-zone.tsx -------------------------------------------------------------------------------- /scripts/core/ui/components/dropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/ui/components/dropdown.tsx -------------------------------------------------------------------------------- /scripts/core/ui/components/figure.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/ui/components/figure.tsx -------------------------------------------------------------------------------- /scripts/core/ui/components/grid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/ui/components/grid.tsx -------------------------------------------------------------------------------- /scripts/core/ui/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/ui/components/index.ts -------------------------------------------------------------------------------- /scripts/core/ui/components/nav-tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/ui/components/nav-tabs.tsx -------------------------------------------------------------------------------- /scripts/core/ui/components/select2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/ui/components/select2.tsx -------------------------------------------------------------------------------- /scripts/core/ui/components/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/ui/components/style.scss -------------------------------------------------------------------------------- /scripts/core/ui/components/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/ui/components/tabs.tsx -------------------------------------------------------------------------------- /scripts/core/ui/components/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/ui/components/utils.ts -------------------------------------------------------------------------------- /scripts/core/ui/components/video-hls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/ui/components/video-hls.tsx -------------------------------------------------------------------------------- /scripts/core/ui/components/video.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/ui/components/video.tsx -------------------------------------------------------------------------------- /scripts/core/ui/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/ui/constants.ts -------------------------------------------------------------------------------- /scripts/core/ui/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/ui/index.ts -------------------------------------------------------------------------------- /scripts/core/ui/slide-up-down.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/ui/slide-up-down.ts -------------------------------------------------------------------------------- /scripts/core/ui/tests/ui.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/ui/tests/ui.spec.ts -------------------------------------------------------------------------------- /scripts/core/ui/ui.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/ui/ui.ts -------------------------------------------------------------------------------- /scripts/core/ui/views/sd-datepicker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/ui/views/sd-datepicker.html -------------------------------------------------------------------------------- /scripts/core/ui/views/sd-timepicker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/ui/views/sd-timepicker.html -------------------------------------------------------------------------------- /scripts/core/ui/views/sd-timezone.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/ui/views/sd-timezone.html -------------------------------------------------------------------------------- /scripts/core/ui/views/wizard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/ui/views/wizard.html -------------------------------------------------------------------------------- /scripts/core/ui/views/wizardStep.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/ui/views/wizardStep.html -------------------------------------------------------------------------------- /scripts/core/upload/crop-directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/upload/crop-directive.ts -------------------------------------------------------------------------------- /scripts/core/upload/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/upload/index.ts -------------------------------------------------------------------------------- /scripts/core/upload/sdImageCrop.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/upload/sdImageCrop.spec.ts -------------------------------------------------------------------------------- /scripts/core/upload/sdImageModify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/upload/sdImageModify.ts -------------------------------------------------------------------------------- /scripts/core/upload/styles/upload.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/upload/styles/upload.scss -------------------------------------------------------------------------------- /scripts/core/upload/upload-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/upload/upload-service.ts -------------------------------------------------------------------------------- /scripts/core/upload/upload.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/upload/upload.spec.ts -------------------------------------------------------------------------------- /scripts/core/upload/upload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/upload/upload.ts -------------------------------------------------------------------------------- /scripts/core/utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/utils.tsx -------------------------------------------------------------------------------- /scripts/core/views/sdSearchList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/views/sdSearchList.html -------------------------------------------------------------------------------- /scripts/core/views/sdSlider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/views/sdSlider.html -------------------------------------------------------------------------------- /scripts/core/views/sdSort.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/views/sdSort.html -------------------------------------------------------------------------------- /scripts/core/views/sdTypeahead.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/views/sdTypeahead.html -------------------------------------------------------------------------------- /scripts/core/views/sdselect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/views/sdselect.html -------------------------------------------------------------------------------- /scripts/core/with-articles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/with-articles.tsx -------------------------------------------------------------------------------- /scripts/core/with-live-query.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/with-live-query.tsx -------------------------------------------------------------------------------- /scripts/core/with-resources.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/core/with-resources.tsx -------------------------------------------------------------------------------- /scripts/data-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/data-store.ts -------------------------------------------------------------------------------- /scripts/extensions/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/extensions/README.MD -------------------------------------------------------------------------------- /scripts/extensions/ai-widget/.gitignore: -------------------------------------------------------------------------------- 1 | dist -------------------------------------------------------------------------------- /scripts/extensions/annotationsLibrary/.gitignore: -------------------------------------------------------------------------------- 1 | dist -------------------------------------------------------------------------------- /scripts/extensions/auto-tagging-widget/.gitignore: -------------------------------------------------------------------------------- 1 | dist -------------------------------------------------------------------------------- /scripts/extensions/auto-tagging-widget/src/constants.ts: -------------------------------------------------------------------------------- 1 | export const SOURCE_IMATRICS = 'imatrics'; 2 | -------------------------------------------------------------------------------- /scripts/extensions/availability-manager/.gitignore: -------------------------------------------------------------------------------- 1 | dist -------------------------------------------------------------------------------- /scripts/extensions/broadcasting/.gitignore: -------------------------------------------------------------------------------- 1 | dist -------------------------------------------------------------------------------- /scripts/extensions/broadcasting/src/authoring-fields/subitems/constants.ts: -------------------------------------------------------------------------------- 1 | export const SUBITEMS_FIELD_TYPE = 'rundown_subitems'; 2 | -------------------------------------------------------------------------------- /scripts/extensions/datetimeField/.gitignore: -------------------------------------------------------------------------------- 1 | dist -------------------------------------------------------------------------------- /scripts/extensions/helloWorld/.gitignore: -------------------------------------------------------------------------------- 1 | dist -------------------------------------------------------------------------------- /scripts/extensions/helloWorld/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/extensions/helloWorld/yarn.lock -------------------------------------------------------------------------------- /scripts/extensions/markForUser/.gitignore: -------------------------------------------------------------------------------- 1 | dist -------------------------------------------------------------------------------- /scripts/extensions/predefinedTextField/.gitignore: -------------------------------------------------------------------------------- 1 | dist -------------------------------------------------------------------------------- /scripts/extensions/sams/.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | node_modules 3 | -------------------------------------------------------------------------------- /scripts/extensions/sams/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/extensions/sams/package.json -------------------------------------------------------------------------------- /scripts/extensions/sams/src/api/sets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/extensions/sams/src/api/sets.ts -------------------------------------------------------------------------------- /scripts/extensions/sams/src/apis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/extensions/sams/src/apis.ts -------------------------------------------------------------------------------- /scripts/extensions/sams/src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/extensions/sams/src/extension.ts -------------------------------------------------------------------------------- /scripts/extensions/sams/src/globals.d.ts: -------------------------------------------------------------------------------- 1 | 2 | type Dictionary = {[key: string]: V}; 3 | -------------------------------------------------------------------------------- /scripts/extensions/sams/src/ui/Panel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/extensions/sams/src/ui/Panel.tsx -------------------------------------------------------------------------------- /scripts/extensions/sams/src/ui/Text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/extensions/sams/src/ui/Text.tsx -------------------------------------------------------------------------------- /scripts/extensions/sams/src/ui/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/extensions/sams/src/ui/index.ts -------------------------------------------------------------------------------- /scripts/extensions/sams/src/utils/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/extensions/sams/src/utils/api.ts -------------------------------------------------------------------------------- /scripts/extensions/sams/src/utils/ui.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/extensions/sams/src/utils/ui.tsx -------------------------------------------------------------------------------- /scripts/extensions/usageMetrics/.gitignore: -------------------------------------------------------------------------------- 1 | dist -------------------------------------------------------------------------------- /scripts/extensions/videoEditor/.gitignore: -------------------------------------------------------------------------------- 1 | dist -------------------------------------------------------------------------------- /scripts/globals.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/globals.d.ts -------------------------------------------------------------------------------- /scripts/index.ngdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/index.ngdoc -------------------------------------------------------------------------------- /scripts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/index.ts -------------------------------------------------------------------------------- /scripts/init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/init.ts -------------------------------------------------------------------------------- /scripts/libs/angular-history/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/libs/angular-history/LICENSE -------------------------------------------------------------------------------- /scripts/libs/angular-history/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/libs/angular-history/README.md -------------------------------------------------------------------------------- /scripts/libs/angular-history/history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/libs/angular-history/history.js -------------------------------------------------------------------------------- /scripts/reload-language.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/reload-language.ts -------------------------------------------------------------------------------- /scripts/superdesk-interfaces/Activity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/superdesk-interfaces/Activity.ts -------------------------------------------------------------------------------- /scripts/superdesk-interfaces/Language.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/superdesk-interfaces/Language.ts -------------------------------------------------------------------------------- /scripts/superdesk-interfaces/Macro.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/superdesk-interfaces/Macro.ts -------------------------------------------------------------------------------- /scripts/superdesk-interfaces/Session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/superdesk-interfaces/Session.ts -------------------------------------------------------------------------------- /scripts/superdesk-interfaces/UserRole.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/superdesk-interfaces/UserRole.ts -------------------------------------------------------------------------------- /scripts/superdesk-interfaces/Widget.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/superdesk-interfaces/Widget.ts -------------------------------------------------------------------------------- /scripts/test-data/test-article.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/test-data/test-article.ts -------------------------------------------------------------------------------- /scripts/test-data/test-desk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/test-data/test-desk.ts -------------------------------------------------------------------------------- /scripts/test-data/test-vocabulary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/test-data/test-vocabulary.ts -------------------------------------------------------------------------------- /scripts/tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/tests.ts -------------------------------------------------------------------------------- /scripts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/tsconfig.json -------------------------------------------------------------------------------- /scripts/type-merges.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/type-merges.ts -------------------------------------------------------------------------------- /scripts/types/Services/Desks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/types/Services/Desks.d.ts -------------------------------------------------------------------------------- /scripts/types/Services/Highlight.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/types/Services/Highlight.ts -------------------------------------------------------------------------------- /scripts/types/Services/Packages.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/types/Services/Packages.d.ts -------------------------------------------------------------------------------- /scripts/types/Services/Privileges.d.ts: -------------------------------------------------------------------------------- 1 | export type IPrivilegesService = any; 2 | -------------------------------------------------------------------------------- /scripts/utils/dragging.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/utils/dragging.ts -------------------------------------------------------------------------------- /scripts/utils/focus-first-child-input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/utils/focus-first-child-input.ts -------------------------------------------------------------------------------- /scripts/utils/object.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/utils/object.ts -------------------------------------------------------------------------------- /scripts/vendor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/scripts/vendor.ts -------------------------------------------------------------------------------- /styles/sass/alerts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/styles/sass/alerts.scss -------------------------------------------------------------------------------- /styles/sass/animation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/styles/sass/animation.scss -------------------------------------------------------------------------------- /styles/sass/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/styles/sass/app.scss -------------------------------------------------------------------------------- /styles/sass/archive-filtering.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/styles/sass/archive-filtering.scss -------------------------------------------------------------------------------- /styles/sass/archive-preview.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/styles/sass/archive-preview.scss -------------------------------------------------------------------------------- /styles/sass/bootstrap-pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/styles/sass/bootstrap-pagination.scss -------------------------------------------------------------------------------- /styles/sass/button-groups.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/styles/sass/button-groups.scss -------------------------------------------------------------------------------- /styles/sass/buttons/_toggle-buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/styles/sass/buttons/_toggle-buttons.scss -------------------------------------------------------------------------------- /styles/sass/daterangepicker.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/styles/sass/daterangepicker.scss -------------------------------------------------------------------------------- /styles/sass/dropdowns.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/styles/sass/dropdowns.scss -------------------------------------------------------------------------------- /styles/sass/forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/styles/sass/forms.scss -------------------------------------------------------------------------------- /styles/sass/hamburger.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/styles/sass/hamburger.scss -------------------------------------------------------------------------------- /styles/sass/jcrop-custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/styles/sass/jcrop-custom.scss -------------------------------------------------------------------------------- /styles/sass/labels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/styles/sass/labels.scss -------------------------------------------------------------------------------- /styles/sass/layouts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/styles/sass/layouts.scss -------------------------------------------------------------------------------- /styles/sass/media-archive.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/styles/sass/media-archive.scss -------------------------------------------------------------------------------- /styles/sass/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/styles/sass/mixins.scss -------------------------------------------------------------------------------- /styles/sass/modals.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/styles/sass/modals.scss -------------------------------------------------------------------------------- /styles/sass/navs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/styles/sass/navs.scss -------------------------------------------------------------------------------- /styles/sass/popovers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/styles/sass/popovers.scss -------------------------------------------------------------------------------- /styles/sass/reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/styles/sass/reset.scss -------------------------------------------------------------------------------- /styles/sass/responsive.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/styles/sass/responsive.scss -------------------------------------------------------------------------------- /styles/sass/saved-searches.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/styles/sass/saved-searches.scss -------------------------------------------------------------------------------- /styles/sass/sd-password-strength.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/styles/sass/sd-password-strength.scss -------------------------------------------------------------------------------- /styles/sass/sd-typeahead.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/styles/sass/sd-typeahead.scss -------------------------------------------------------------------------------- /styles/sass/search-list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/styles/sass/search-list.scss -------------------------------------------------------------------------------- /styles/sass/sf-additional.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/styles/sass/sf-additional.scss -------------------------------------------------------------------------------- /styles/sass/sf-icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/styles/sass/sf-icons.scss -------------------------------------------------------------------------------- /styles/sass/tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/styles/sass/tables.scss -------------------------------------------------------------------------------- /styles/sass/tooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/styles/sass/tooltip.scss -------------------------------------------------------------------------------- /styles/sass/type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/styles/sass/type.scss -------------------------------------------------------------------------------- /styles/sass/utility-classes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/styles/sass/utility-classes.scss -------------------------------------------------------------------------------- /styles/sass/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/styles/sass/variables.scss -------------------------------------------------------------------------------- /styles/sass/variables/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/styles/sass/variables/_colors.scss -------------------------------------------------------------------------------- /styles/sass/variables/_dimensions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/styles/sass/variables/_dimensions.scss -------------------------------------------------------------------------------- /styles/sass/variables/_misc.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/styles/sass/variables/_misc.scss -------------------------------------------------------------------------------- /styles/sass/variables/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/styles/sass/variables/_typography.scss -------------------------------------------------------------------------------- /superdesk.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/superdesk.config.js -------------------------------------------------------------------------------- /tasks/options/clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/tasks/options/clean.js -------------------------------------------------------------------------------- /tasks/options/compress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/tasks/options/compress.js -------------------------------------------------------------------------------- /tasks/options/copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/tasks/options/copy.js -------------------------------------------------------------------------------- /tasks/options/coveralls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/tasks/options/coveralls.js -------------------------------------------------------------------------------- /tasks/options/dgeni-alive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/tasks/options/dgeni-alive.js -------------------------------------------------------------------------------- /tasks/options/filerev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/tasks/options/filerev.js -------------------------------------------------------------------------------- /tasks/options/files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/tasks/options/files.js -------------------------------------------------------------------------------- /tasks/options/get-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/tasks/options/get-config.js -------------------------------------------------------------------------------- /tasks/options/karma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/tasks/options/karma.js -------------------------------------------------------------------------------- /tasks/options/nggettext_compile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/tasks/options/nggettext_compile.js -------------------------------------------------------------------------------- /tasks/options/nggettext_extract.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/tasks/options/nggettext_extract.js -------------------------------------------------------------------------------- /tasks/options/ngtemplates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/tasks/options/ngtemplates.js -------------------------------------------------------------------------------- /tasks/options/usemin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/tasks/options/usemin.js -------------------------------------------------------------------------------- /tasks/options/webpack-dev-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/tasks/options/webpack-dev-server.js -------------------------------------------------------------------------------- /tasks/options/webpack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/tasks/options/webpack.js -------------------------------------------------------------------------------- /tasks/patch-package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/tasks/patch-package.js -------------------------------------------------------------------------------- /tasks/verify-client-api-changes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/tasks/verify-client-api-changes.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superdesk/superdesk-client-core/HEAD/webpack.config.js --------------------------------------------------------------------------------