@alfresco/aca-content 5.1.1 → 5.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/assets/app.extensions.json +9 -0
- package/assets/i18n/ar.json +600 -599
- package/assets/i18n/cs.json +600 -599
- package/assets/i18n/da.json +600 -599
- package/assets/i18n/de.json +600 -599
- package/assets/i18n/en.json +40 -1
- package/assets/i18n/es.json +600 -599
- package/assets/i18n/fi.json +600 -599
- package/assets/i18n/fr.json +600 -599
- package/assets/i18n/it.json +600 -599
- package/assets/i18n/ja.json +600 -599
- package/assets/i18n/nb.json +600 -599
- package/assets/i18n/nl.json +600 -599
- package/assets/i18n/pl.json +600 -599
- package/assets/i18n/pt-BR.json +600 -599
- package/assets/i18n/ru.json +600 -599
- package/assets/i18n/sv.json +600 -599
- package/assets/i18n/zh-CN.json +600 -599
- package/esm2022/about/about.component.mjs +70 -0
- package/esm2022/about/aca-about.module.mjs +47 -0
- package/esm2022/folder-rules/folder-rules.module.mjs +116 -0
- package/esm2022/folder-rules/manage-rules/manage-rules.smart-component.mjs +280 -0
- package/esm2022/folder-rules/rule-details/actions/rule-action-list.ui-component.mjs +117 -0
- package/esm2022/folder-rules/rule-details/actions/rule-action.ui-component.mjs +359 -0
- package/esm2022/folder-rules/rule-details/conditions/rule-composite-condition.ui-component.mjs +171 -0
- package/esm2022/folder-rules/rule-details/conditions/rule-simple-condition.ui-component.mjs +237 -0
- package/esm2022/folder-rules/rule-details/edit-rule-dialog.ui-component.mjs +80 -0
- package/esm2022/folder-rules/rule-details/options/rule-options.ui-component.mjs +129 -0
- package/esm2022/folder-rules/rule-details/rule-details.ui-component.mjs +192 -0
- package/esm2022/folder-rules/rule-details/triggers/rule-triggers.ui-component.mjs +87 -0
- package/esm2022/folder-rules/rule-details/validators/rule-actions.validator.mjs +36 -0
- package/esm2022/folder-rules/rule-list/rule-list/rule-list.ui-component.mjs +166 -0
- package/esm2022/folder-rules/rule-list/rule-list-grouping/rule-list-grouping.ui-component.mjs +80 -0
- package/esm2022/folder-rules/rule-list/rule-list-item/rule-list-item.ui-component.mjs +59 -0
- package/esm2022/folder-rules/rule-set-picker/rule-set-picker.smart-component.mjs +125 -0
- package/esm2022/folder-rules/services/actions.service.mjs +117 -0
- package/esm2022/folder-rules/services/folder-rule-sets.service.mjs +230 -0
- package/esm2022/folder-rules/services/folder-rules.service.mjs +195 -0
- package/esm2022/lib/aca-content.module.mjs +303 -0
- package/esm2022/lib/aca-content.routes.mjs +369 -0
- package/esm2022/lib/components/bulk-actions-dropdown/bulk-actions-dropdown.component.mjs +82 -0
- package/{esm2020 → esm2022}/lib/components/common/language-picker/language-picker.component.mjs +9 -8
- package/esm2022/lib/components/common/location-link/location-link.component.mjs +182 -0
- package/{esm2020 → esm2022}/lib/components/common/logout/logout.component.mjs +8 -6
- package/esm2022/lib/components/common/toggle-shared/toggle-shared.component.mjs +81 -0
- package/esm2022/lib/components/common/user-info/user-info.component.mjs +46 -0
- package/esm2022/lib/components/context-menu/base-context-menu.directive.mjs +77 -0
- package/esm2022/lib/components/context-menu/context-menu-item.component.mjs +65 -0
- package/esm2022/lib/components/context-menu/context-menu-outside-event.directive.mjs +62 -0
- package/esm2022/lib/components/context-menu/context-menu-overlay.mjs +33 -0
- package/esm2022/lib/components/context-menu/context-menu.component.mjs +84 -0
- package/esm2022/lib/components/context-menu/context-menu.service.mjs +127 -0
- package/esm2022/lib/components/context-menu/custom-context-menu-actions.token.mjs +26 -0
- package/esm2022/lib/components/context-menu/custom-context-menu.component.mjs +79 -0
- package/esm2022/lib/components/details/details.component.mjs +154 -0
- package/esm2022/lib/components/dl-custom-components/datatable-cell-badges/datatable-cell-badges.component.mjs +75 -0
- package/esm2022/lib/components/dl-custom-components/name-column/name-column.component.mjs +106 -0
- package/esm2022/lib/components/dl-custom-components/tags-column/tags-column.component.mjs +52 -0
- package/esm2022/lib/components/dl-custom-components/thumbnail-column/thumbnail-column.component.mjs +77 -0
- package/esm2022/lib/components/favorite-libraries/favorite-libraries.component.mjs +126 -0
- package/esm2022/lib/components/favorites/favorites.component.mjs +105 -0
- package/esm2022/lib/components/files/files.component.mjs +336 -0
- package/esm2022/lib/components/home/home.component.mjs +46 -0
- package/esm2022/lib/components/info-drawer/comments-tab/comments-tab.component.mjs +62 -0
- package/esm2022/lib/components/info-drawer/info.drawer.module.mjs +74 -0
- package/esm2022/lib/components/info-drawer/library-metadata-tab/library-metadata-form.component.mjs +213 -0
- package/esm2022/lib/components/info-drawer/library-metadata-tab/library-metadata-tab.component.mjs +47 -0
- package/esm2022/lib/components/info-drawer/metadata-tab/metadata-tab.component.mjs +145 -0
- package/esm2022/lib/components/info-drawer/versions-tab/versions-tab.component.mjs +107 -0
- package/esm2022/lib/components/knowledge-retrieval/search-ai/agents-button/agents-button.component.mjs +135 -0
- package/esm2022/lib/components/knowledge-retrieval/search-ai/search-ai-input/search-ai-input.component.mjs +181 -0
- package/esm2022/lib/components/knowledge-retrieval/search-ai/search-ai-input-container/search-ai-input-container.component.mjs +77 -0
- package/esm2022/lib/components/knowledge-retrieval/search-ai/search-ai-results/search-ai-results.component.mjs +210 -0
- package/esm2022/lib/components/libraries/libraries.component.mjs +81 -0
- package/esm2022/lib/components/recent-files/recent-files.component.mjs +80 -0
- package/esm2022/lib/components/search/search-action-menu/search-action-menu.component.mjs +66 -0
- package/esm2022/lib/components/search/search-input/search-input.component.mjs +297 -0
- package/esm2022/lib/components/search/search-input-control/search-input-control.component.mjs +94 -0
- package/esm2022/lib/components/search/search-libraries-results/search-libraries-query-builder.service.mjs +93 -0
- package/esm2022/lib/components/search/search-libraries-results/search-libraries-results.component.mjs +155 -0
- package/esm2022/lib/components/search/search-navigation.service.mjs +62 -0
- package/esm2022/lib/components/search/search-results/search-results.component.mjs +279 -0
- package/esm2022/lib/components/search/search-results-row/search-results-row.component.mjs +149 -0
- package/esm2022/lib/components/search/search-save/dialog/delete/saved-search-delete-dialog.component.mjs +82 -0
- package/esm2022/lib/components/search/search-save/dialog/edit/saved-search-edit-dialog.component.mjs +116 -0
- package/esm2022/lib/components/search/search-save/dialog/save-search-dialog.component.mjs +125 -0
- package/esm2022/lib/components/search/search-save/dialog/saved-search-form.interface.mjs +25 -0
- package/esm2022/lib/components/search/search-save/dialog/unique-search-name-validator.mjs +45 -0
- package/esm2022/lib/components/search/search-save/directive/save-search.directive.mjs +64 -0
- package/esm2022/lib/components/search/search-save/list/saved-searches-list-ui.service.mjs +51 -0
- package/esm2022/lib/components/search/search-save/list/smart-list/saved-searches-list-schema.mjs +44 -0
- package/esm2022/lib/components/search/search-save/list/smart-list/saved-searches-smart-list.component.mjs +50 -0
- package/esm2022/lib/components/search/search-save/list/ui-list/saved-searches-list.ui-component.mjs +153 -0
- package/esm2022/lib/components/search/search-save/sidenav/save-search-sidenav.component.mjs +94 -0
- package/esm2022/lib/components/shared-files/shared-files.component.mjs +85 -0
- package/esm2022/lib/components/shared-link-view/shared-link-view.component.mjs +89 -0
- package/esm2022/lib/components/sidenav/components/button-menu.component.mjs +66 -0
- package/esm2022/lib/components/sidenav/components/expand-menu.component.mjs +73 -0
- package/esm2022/lib/components/sidenav/components/sidenav-header.component.mjs +65 -0
- package/esm2022/lib/components/sidenav/directives/action.directive.mjs +86 -0
- package/esm2022/lib/components/sidenav/directives/active-link.directive.mjs +100 -0
- package/esm2022/lib/components/sidenav/directives/expansion-panel.directive.mjs +107 -0
- package/esm2022/lib/components/sidenav/directives/menu-panel.directive.mjs +103 -0
- package/esm2022/lib/components/sidenav/sidenav.component.mjs +101 -0
- package/esm2022/lib/components/sidenav/user-menu/user-menu.component.mjs +57 -0
- package/esm2022/lib/components/toolbar/toggle-edit-offline/toggle-edit-offline.component.mjs +143 -0
- package/esm2022/lib/components/toolbar/toggle-favorite/toggle-favorite.component.mjs +91 -0
- package/esm2022/lib/components/toolbar/toggle-favorite-library/toggle-favorite-library.component.mjs +112 -0
- package/esm2022/lib/components/toolbar/toggle-info-drawer/toggle-info-drawer.component.mjs +77 -0
- package/esm2022/lib/components/toolbar/toggle-join-library/toggle-join-library-button.component.mjs +107 -0
- package/{esm2020 → esm2022}/lib/components/toolbar/toggle-join-library/toggle-join-library-menu.component.mjs +7 -6
- package/esm2022/lib/components/toolbar/view-node/view-node.component.mjs +128 -0
- package/esm2022/lib/components/trashcan/trashcan.component.mjs +66 -0
- package/esm2022/lib/components/upload-files-dialog/upload-files-dialog.component.mjs +55 -0
- package/esm2022/lib/components/view-profile/view-profile.component.mjs +200 -0
- package/esm2022/lib/dialogs/node-template/create-from-template.dialog.mjs +127 -0
- package/esm2022/lib/directives/document-list.directive.mjs +207 -0
- package/esm2022/lib/extensions/core.extensions.module.mjs +56 -0
- package/esm2022/lib/services/content-management.service.mjs +892 -0
- package/esm2022/lib/services/content-url.service.mjs +74 -0
- package/esm2022/lib/services/modal-ai.service.mjs +65 -0
- package/esm2022/lib/services/node-actions.service.mjs +609 -0
- package/esm2022/lib/services/node-template.service.mjs +145 -0
- package/esm2022/lib/services/search-ai-navigation.service.mjs +63 -0
- package/esm2022/lib/store/app-store.module.mjs +101 -0
- package/esm2022/lib/store/effects/app.effects.mjs +46 -0
- package/esm2022/lib/store/effects/contextmenu.effects.mjs +65 -0
- package/esm2022/lib/store/effects/download.effects.mjs +153 -0
- package/esm2022/lib/store/effects/favorite.effects.mjs +72 -0
- package/esm2022/lib/store/effects/library.effects.mjs +108 -0
- package/esm2022/lib/store/effects/node.effects.mjs +318 -0
- package/esm2022/lib/store/effects/search-ai.effects.mjs +54 -0
- package/esm2022/lib/store/effects/search.effects.mjs +52 -0
- package/esm2022/lib/store/effects/template.effects.mjs +116 -0
- package/esm2022/lib/store/effects/upload.effects.mjs +166 -0
- package/esm2022/lib/store/effects/viewer.effects.mjs +169 -0
- package/esm2022/lib/utils/aca-search-utils.mjs +129 -0
- package/esm2022/ms-office/actions/aos.actions.mjs +32 -0
- package/esm2022/ms-office/aos-extension.module.mjs +53 -0
- package/esm2022/ms-office/aos-extension.service.mjs +136 -0
- package/esm2022/ms-office/effects/aos.effects.mjs +45 -0
- package/esm2022/public-api.mjs +33 -0
- package/esm2022/viewer/lib/components/preview/preview.component.mjs +246 -0
- package/esm2022/viewer/lib/components/viewer/viewer.component.mjs +261 -0
- package/esm2022/viewer/lib/services/viewer.service.mjs +229 -0
- package/esm2022/viewer/lib/viewer.module.mjs +53 -0
- package/{fesm2015 → fesm2022}/alfresco-aca-content-about.mjs +17 -19
- package/fesm2022/alfresco-aca-content-about.mjs.map +1 -0
- package/{fesm2020 → fesm2022}/alfresco-aca-content-folder-rules.mjs +357 -316
- package/fesm2022/alfresco-aca-content-folder-rules.mjs.map +1 -0
- package/{fesm2020 → fesm2022}/alfresco-aca-content-ms-office.mjs +28 -26
- package/fesm2022/alfresco-aca-content-ms-office.mjs.map +1 -0
- package/{fesm2020 → fesm2022}/alfresco-aca-content-viewer.mjs +95 -64
- package/fesm2022/alfresco-aca-content-viewer.mjs.map +1 -0
- package/fesm2022/alfresco-aca-content.mjs +11091 -0
- package/fesm2022/alfresco-aca-content.mjs.map +1 -0
- package/folder-rules/rule-details/actions/rule-action-list.ui-component.d.ts +1 -1
- package/folder-rules/rule-details/actions/rule-action.ui-component.d.ts +1 -1
- package/folder-rules/rule-details/conditions/rule-composite-condition.ui-component.d.ts +1 -1
- package/folder-rules/rule-details/conditions/rule-simple-condition.ui-component.d.ts +1 -1
- package/folder-rules/rule-details/options/rule-options.ui-component.d.ts +1 -1
- package/folder-rules/rule-details/rule-details.ui-component.d.ts +1 -1
- package/folder-rules/rule-list/rule-list/rule-list.ui-component.d.ts +1 -1
- package/folder-rules/rule-list/rule-list-grouping/rule-list-grouping.ui-component.d.ts +1 -1
- package/folder-rules/rule-list/rule-list-item/rule-list-item.ui-component.d.ts +1 -1
- package/folder-rules/services/folder-rule-sets.service.d.ts +4 -4
- package/folder-rules/services/folder-rules.service.d.ts +1 -1
- package/lib/components/bulk-actions-dropdown/bulk-actions-dropdown.component.d.ts +5 -10
- package/lib/components/common/location-link/location-link.component.d.ts +1 -1
- package/lib/components/common/toggle-shared/toggle-shared.component.d.ts +1 -1
- package/lib/components/context-menu/base-context-menu.directive.d.ts +20 -0
- package/lib/components/context-menu/context-menu-item.component.d.ts +1 -1
- package/lib/components/context-menu/context-menu-outside-event.directive.d.ts +1 -1
- package/lib/components/context-menu/context-menu.component.d.ts +4 -15
- package/lib/components/context-menu/context-menu.service.d.ts +4 -1
- package/lib/components/{knowledge-retrieval/search-ai/search-ai-utils.d.ts → context-menu/custom-context-menu-actions.token.d.ts} +2 -2
- package/lib/components/context-menu/custom-context-menu.component.d.ts +36 -0
- package/lib/components/details/details.component.d.ts +1 -1
- package/lib/components/dl-custom-components/datatable-cell-badges/datatable-cell-badges.component.d.ts +1 -1
- package/lib/components/dl-custom-components/tags-column/tags-column.component.d.ts +1 -1
- package/lib/components/dl-custom-components/thumbnail-column/thumbnail-column.component.d.ts +1 -1
- package/lib/components/info-drawer/comments-tab/comments-tab.component.d.ts +1 -1
- package/lib/components/info-drawer/library-metadata-tab/library-metadata-form.component.d.ts +1 -1
- package/lib/components/info-drawer/library-metadata-tab/library-metadata-tab.component.d.ts +1 -1
- package/lib/components/info-drawer/metadata-tab/metadata-tab.component.d.ts +1 -1
- package/lib/components/info-drawer/versions-tab/versions-tab.component.d.ts +1 -1
- package/lib/components/knowledge-retrieval/search-ai/agents-button/agents-button.component.d.ts +1 -2
- package/lib/components/knowledge-retrieval/search-ai/search-ai-input/search-ai-input.component.d.ts +4 -5
- package/lib/components/knowledge-retrieval/search-ai/search-ai-input-container/search-ai-input-container.component.d.ts +8 -8
- package/lib/components/knowledge-retrieval/search-ai/search-ai-results/search-ai-results.component.d.ts +2 -3
- package/lib/components/search/search-input/search-input.component.d.ts +12 -14
- package/lib/components/search/search-input-control/search-input-control.component.d.ts +1 -1
- package/lib/components/search/search-libraries-results/search-libraries-results.component.d.ts +0 -1
- package/lib/components/search/search-results/search-results.component.d.ts +15 -9
- package/lib/components/search/search-results-row/search-results-row.component.d.ts +1 -1
- package/lib/components/search/search-save/dialog/delete/saved-search-delete-dialog.component.d.ts +16 -0
- package/lib/components/search/search-save/dialog/edit/saved-search-edit-dialog.component.d.ts +22 -0
- package/lib/components/search/search-save/dialog/save-search-dialog.component.d.ts +23 -0
- package/lib/components/search/search-save/dialog/saved-search-form.interface.d.ts +28 -0
- package/lib/components/search/search-save/dialog/unique-search-name-validator.d.ts +34 -0
- package/lib/components/search/search-save/directive/save-search.directive.d.ts +13 -0
- package/lib/components/search/search-save/list/saved-searches-list-ui.service.d.ts +9 -0
- package/lib/components/search/search-save/list/smart-list/saved-searches-list-schema.d.ts +33 -0
- package/lib/components/search/search-save/list/smart-list/saved-searches-smart-list.component.d.ts +13 -0
- package/lib/components/search/search-save/list/ui-list/saved-searches-list.ui-component.d.ts +66 -0
- package/lib/components/search/search-save/sidenav/save-search-sidenav.component.d.ts +44 -0
- package/lib/components/sidenav/components/button-menu.component.d.ts +1 -1
- package/lib/components/sidenav/components/expand-menu.component.d.ts +3 -2
- package/lib/components/sidenav/directives/action.directive.d.ts +28 -1
- package/lib/components/sidenav/directives/active-link.directive.d.ts +2 -2
- package/lib/components/sidenav/directives/expansion-panel.directive.d.ts +1 -1
- package/lib/components/sidenav/directives/menu-panel.directive.d.ts +1 -1
- package/lib/components/sidenav/sidenav.component.d.ts +4 -3
- package/lib/components/sidenav/user-menu/user-menu.component.d.ts +1 -1
- package/lib/components/toolbar/toggle-favorite/toggle-favorite.component.d.ts +1 -1
- package/lib/components/toolbar/view-node/view-node.component.d.ts +1 -1
- package/lib/services/search-ai-navigation.service.d.ts +4 -2
- package/lib/store/effects/app.effects.d.ts +2 -3
- package/lib/store/effects/contextmenu.effects.d.ts +3 -3
- package/lib/store/effects/download.effects.d.ts +0 -30
- package/lib/store/effects/favorite.effects.d.ts +0 -28
- package/lib/store/effects/library.effects.d.ts +2 -7
- package/lib/store/effects/node.effects.d.ts +7 -38
- package/lib/store/effects/search-ai.effects.d.ts +0 -4
- package/lib/store/effects/search.effects.d.ts +3 -30
- package/lib/store/effects/template.effects.d.ts +5 -7
- package/lib/store/effects/upload.effects.d.ts +8 -32
- package/lib/store/effects/viewer.effects.d.ts +0 -29
- package/lib/utils/aca-search-utils.d.ts +67 -0
- package/ms-office/effects/aos.effects.d.ts +0 -3
- package/package.json +21 -35
- package/public-api.d.ts +1 -0
- package/ui/overrides/adf-pagination.theme.scss +0 -4
- package/ui/theme.scss +9 -4
- package/assets/images/agent-avatar-blue.png +0 -0
- package/assets/images/agent-avatar-gold.png +0 -0
- package/assets/images/agent-avatar-pink.png +0 -0
- package/esm2020/about/about.component.mjs +0 -71
- package/esm2020/about/aca-about.module.mjs +0 -46
- package/esm2020/folder-rules/folder-rules.module.mjs +0 -115
- package/esm2020/folder-rules/manage-rules/manage-rules.smart-component.mjs +0 -261
- package/esm2020/folder-rules/rule-details/actions/rule-action-list.ui-component.mjs +0 -117
- package/esm2020/folder-rules/rule-details/actions/rule-action.ui-component.mjs +0 -351
- package/esm2020/folder-rules/rule-details/conditions/rule-composite-condition.ui-component.mjs +0 -172
- package/esm2020/folder-rules/rule-details/conditions/rule-simple-condition.ui-component.mjs +0 -234
- package/esm2020/folder-rules/rule-details/edit-rule-dialog.ui-component.mjs +0 -74
- package/esm2020/folder-rules/rule-details/options/rule-options.ui-component.mjs +0 -129
- package/esm2020/folder-rules/rule-details/rule-details.ui-component.mjs +0 -185
- package/esm2020/folder-rules/rule-details/triggers/rule-triggers.ui-component.mjs +0 -88
- package/esm2020/folder-rules/rule-details/validators/rule-actions.validator.mjs +0 -37
- package/esm2020/folder-rules/rule-list/rule-list/rule-list.ui-component.mjs +0 -164
- package/esm2020/folder-rules/rule-list/rule-list-grouping/rule-list-grouping.ui-component.mjs +0 -81
- package/esm2020/folder-rules/rule-list/rule-list-item/rule-list-item.ui-component.mjs +0 -58
- package/esm2020/folder-rules/rule-set-picker/rule-set-picker.smart-component.mjs +0 -120
- package/esm2020/folder-rules/services/actions.service.mjs +0 -114
- package/esm2020/folder-rules/services/folder-rule-sets.service.mjs +0 -225
- package/esm2020/folder-rules/services/folder-rules.service.mjs +0 -193
- package/esm2020/lib/aca-content.module.mjs +0 -299
- package/esm2020/lib/aca-content.routes.mjs +0 -359
- package/esm2020/lib/components/bulk-actions-dropdown/bulk-actions-dropdown.component.mjs +0 -83
- package/esm2020/lib/components/common/location-link/location-link.component.mjs +0 -180
- package/esm2020/lib/components/common/toggle-shared/toggle-shared.component.mjs +0 -76
- package/esm2020/lib/components/common/user-info/user-info.component.mjs +0 -47
- package/esm2020/lib/components/context-menu/context-menu-item.component.mjs +0 -62
- package/esm2020/lib/components/context-menu/context-menu-outside-event.directive.mjs +0 -63
- package/esm2020/lib/components/context-menu/context-menu-overlay.mjs +0 -32
- package/esm2020/lib/components/context-menu/context-menu.component.mjs +0 -114
- package/esm2020/lib/components/context-menu/context-menu.service.mjs +0 -99
- package/esm2020/lib/components/details/details.component.mjs +0 -147
- package/esm2020/lib/components/dl-custom-components/datatable-cell-badges/datatable-cell-badges.component.mjs +0 -71
- package/esm2020/lib/components/dl-custom-components/name-column/name-column.component.mjs +0 -101
- package/esm2020/lib/components/dl-custom-components/tags-column/tags-column.component.mjs +0 -48
- package/esm2020/lib/components/dl-custom-components/thumbnail-column/thumbnail-column.component.mjs +0 -75
- package/esm2020/lib/components/favorite-libraries/favorite-libraries.component.mjs +0 -120
- package/esm2020/lib/components/favorites/favorites.component.mjs +0 -103
- package/esm2020/lib/components/files/files.component.mjs +0 -330
- package/esm2020/lib/components/home/home.component.mjs +0 -47
- package/esm2020/lib/components/info-drawer/comments-tab/comments-tab.component.mjs +0 -59
- package/esm2020/lib/components/info-drawer/info.drawer.module.mjs +0 -73
- package/esm2020/lib/components/info-drawer/library-metadata-tab/library-metadata-form.component.mjs +0 -206
- package/esm2020/lib/components/info-drawer/library-metadata-tab/library-metadata-tab.component.mjs +0 -45
- package/esm2020/lib/components/info-drawer/metadata-tab/metadata-tab.component.mjs +0 -134
- package/esm2020/lib/components/info-drawer/versions-tab/versions-tab.component.mjs +0 -95
- package/esm2020/lib/components/knowledge-retrieval/search-ai/agents-button/agents-button.component.mjs +0 -129
- package/esm2020/lib/components/knowledge-retrieval/search-ai/search-ai-input/search-ai-input.component.mjs +0 -171
- package/esm2020/lib/components/knowledge-retrieval/search-ai/search-ai-input-container/search-ai-input-container.component.mjs +0 -82
- package/esm2020/lib/components/knowledge-retrieval/search-ai/search-ai-results/search-ai-results.component.mjs +0 -199
- package/esm2020/lib/components/knowledge-retrieval/search-ai/search-ai-utils.mjs +0 -33
- package/esm2020/lib/components/libraries/libraries.component.mjs +0 -79
- package/esm2020/lib/components/recent-files/recent-files.component.mjs +0 -82
- package/esm2020/lib/components/search/search-action-menu/search-action-menu.component.mjs +0 -64
- package/esm2020/lib/components/search/search-input/search-input.component.mjs +0 -301
- package/esm2020/lib/components/search/search-input-control/search-input-control.component.mjs +0 -94
- package/esm2020/lib/components/search/search-libraries-results/search-libraries-query-builder.service.mjs +0 -90
- package/esm2020/lib/components/search/search-libraries-results/search-libraries-results.component.mjs +0 -153
- package/esm2020/lib/components/search/search-navigation.service.mjs +0 -60
- package/esm2020/lib/components/search/search-results/search-results.component.mjs +0 -255
- package/esm2020/lib/components/search/search-results-row/search-results-row.component.mjs +0 -142
- package/esm2020/lib/components/shared-files/shared-files.component.mjs +0 -83
- package/esm2020/lib/components/shared-link-view/shared-link-view.component.mjs +0 -82
- package/esm2020/lib/components/sidenav/components/button-menu.component.mjs +0 -62
- package/esm2020/lib/components/sidenav/components/expand-menu.component.mjs +0 -67
- package/esm2020/lib/components/sidenav/components/sidenav-header.component.mjs +0 -66
- package/esm2020/lib/components/sidenav/directives/action.directive.mjs +0 -75
- package/esm2020/lib/components/sidenav/directives/active-link.directive.mjs +0 -93
- package/esm2020/lib/components/sidenav/directives/expansion-panel.directive.mjs +0 -102
- package/esm2020/lib/components/sidenav/directives/menu-panel.directive.mjs +0 -99
- package/esm2020/lib/components/sidenav/sidenav.component.mjs +0 -89
- package/esm2020/lib/components/sidenav/user-menu/user-menu.component.mjs +0 -56
- package/esm2020/lib/components/toolbar/toggle-edit-offline/toggle-edit-offline.component.mjs +0 -137
- package/esm2020/lib/components/toolbar/toggle-favorite/toggle-favorite.component.mjs +0 -86
- package/esm2020/lib/components/toolbar/toggle-favorite-library/toggle-favorite-library.component.mjs +0 -107
- package/esm2020/lib/components/toolbar/toggle-info-drawer/toggle-info-drawer.component.mjs +0 -74
- package/esm2020/lib/components/toolbar/toggle-join-library/toggle-join-library-button.component.mjs +0 -105
- package/esm2020/lib/components/toolbar/view-node/view-node.component.mjs +0 -122
- package/esm2020/lib/components/trashcan/trashcan.component.mjs +0 -68
- package/esm2020/lib/components/upload-files-dialog/upload-files-dialog.component.mjs +0 -52
- package/esm2020/lib/components/view-profile/view-profile.component.mjs +0 -193
- package/esm2020/lib/dialogs/node-template/create-from-template.dialog.mjs +0 -120
- package/esm2020/lib/directives/document-list.directive.mjs +0 -199
- package/esm2020/lib/extensions/core.extensions.module.mjs +0 -55
- package/esm2020/lib/services/content-management.service.mjs +0 -873
- package/esm2020/lib/services/content-url.service.mjs +0 -71
- package/esm2020/lib/services/modal-ai.service.mjs +0 -66
- package/esm2020/lib/services/node-actions.service.mjs +0 -600
- package/esm2020/lib/services/node-template.service.mjs +0 -144
- package/esm2020/lib/services/search-ai-navigation.service.mjs +0 -52
- package/esm2020/lib/store/app-store.module.mjs +0 -102
- package/esm2020/lib/store/effects/app.effects.mjs +0 -49
- package/esm2020/lib/store/effects/contextmenu.effects.mjs +0 -55
- package/esm2020/lib/store/effects/download.effects.mjs +0 -159
- package/esm2020/lib/store/effects/favorite.effects.mjs +0 -76
- package/esm2020/lib/store/effects/library.effects.mjs +0 -113
- package/esm2020/lib/store/effects/node.effects.mjs +0 -325
- package/esm2020/lib/store/effects/search-ai.effects.mjs +0 -57
- package/esm2020/lib/store/effects/search.effects.mjs +0 -60
- package/esm2020/lib/store/effects/template.effects.mjs +0 -121
- package/esm2020/lib/store/effects/upload.effects.mjs +0 -166
- package/esm2020/lib/store/effects/viewer.effects.mjs +0 -175
- package/esm2020/ms-office/actions/aos.actions.mjs +0 -31
- package/esm2020/ms-office/aos-extension.module.mjs +0 -52
- package/esm2020/ms-office/aos-extension.service.mjs +0 -132
- package/esm2020/ms-office/effects/aos.effects.mjs +0 -48
- package/esm2020/public-api.mjs +0 -32
- package/esm2020/viewer/lib/components/preview/preview.component.mjs +0 -236
- package/esm2020/viewer/lib/components/viewer/viewer.component.mjs +0 -240
- package/esm2020/viewer/lib/services/viewer.service.mjs +0 -226
- package/esm2020/viewer/lib/viewer.module.mjs +0 -52
- package/fesm2015/alfresco-aca-content-about.mjs.map +0 -1
- package/fesm2015/alfresco-aca-content-folder-rules.mjs +0 -2662
- package/fesm2015/alfresco-aca-content-folder-rules.mjs.map +0 -1
- package/fesm2015/alfresco-aca-content-ms-office.mjs +0 -256
- package/fesm2015/alfresco-aca-content-ms-office.mjs.map +0 -1
- package/fesm2015/alfresco-aca-content-viewer.mjs +0 -700
- package/fesm2015/alfresco-aca-content-viewer.mjs.map +0 -1
- package/fesm2015/alfresco-aca-content.mjs +0 -9835
- package/fesm2015/alfresco-aca-content.mjs.map +0 -1
- package/fesm2020/alfresco-aca-content-about.mjs +0 -193
- package/fesm2020/alfresco-aca-content-about.mjs.map +0 -1
- package/fesm2020/alfresco-aca-content-folder-rules.mjs.map +0 -1
- package/fesm2020/alfresco-aca-content-ms-office.mjs.map +0 -1
- package/fesm2020/alfresco-aca-content-viewer.mjs.map +0 -1
- package/fesm2020/alfresco-aca-content.mjs +0 -9934
- package/fesm2020/alfresco-aca-content.mjs.map +0 -1
- /package/{esm2020 → esm2022}/about/alfresco-aca-content-about.mjs +0 -0
- /package/{esm2020 → esm2022}/about/dev-mode.tokens.mjs +0 -0
- /package/{esm2020 → esm2022}/about/package-json.token.mjs +0 -0
- /package/{esm2020 → esm2022}/about/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/alfresco-aca-content.mjs +0 -0
- /package/{esm2020 → esm2022}/folder-rules/alfresco-aca-content-folder-rules.mjs +0 -0
- /package/{esm2020 → esm2022}/folder-rules/folder-rules.rules.mjs +0 -0
- /package/{esm2020 → esm2022}/folder-rules/model/action-parameter-constraint.model.mjs +0 -0
- /package/{esm2020 → esm2022}/folder-rules/model/rule-action.model.mjs +0 -0
- /package/{esm2020 → esm2022}/folder-rules/model/rule-composite-condition.model.mjs +0 -0
- /package/{esm2020 → esm2022}/folder-rules/model/rule-grouping-item.model.mjs +0 -0
- /package/{esm2020 → esm2022}/folder-rules/model/rule-set.model.mjs +0 -0
- /package/{esm2020 → esm2022}/folder-rules/model/rule-simple-condition.model.mjs +0 -0
- /package/{esm2020 → esm2022}/folder-rules/model/rule.model.mjs +0 -0
- /package/{esm2020 → esm2022}/folder-rules/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/folder-rules/rule-details/conditions/rule-condition-comparators.mjs +0 -0
- /package/{esm2020 → esm2022}/folder-rules/rule-details/conditions/rule-condition-fields.mjs +0 -0
- /package/{esm2020 → esm2022}/folder-rules/rule-details/validators/rule-composite-condition.validator.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/common/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/context-menu/direction.token.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/context-menu/interfaces.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/search/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/sidenav/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/toolbar/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/view-profile/view-profile.guard.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/store/effects.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/store/initial-state.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/store/reducers/app.reducer.mjs +0 -0
- /package/{esm2020 → esm2022}/ms-office/alfresco-aca-content-ms-office.mjs +0 -0
- /package/{esm2020 → esm2022}/ms-office/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/viewer/alfresco-aca-content-viewer.mjs +0 -0
- /package/{esm2020 → esm2022}/viewer/public-api.mjs +0 -0
|
@@ -21,19 +21,21 @@
|
|
|
21
21
|
* You should have received a copy of the GNU Lesser General Public License
|
|
22
22
|
* from Hyland Software. If not, see <http://www.gnu.org/licenses/>.
|
|
23
23
|
*/
|
|
24
|
-
import { OnInit } from '@angular/core';
|
|
24
|
+
import { ChangeDetectorRef, OnInit } from '@angular/core';
|
|
25
25
|
import { NodeEntry, Pagination, ResultSetPaging } from '@alfresco/js-api';
|
|
26
26
|
import { ActivatedRoute } from '@angular/router';
|
|
27
|
-
import { SearchQueryBuilderService, TagService } from '@alfresco/adf-content-services';
|
|
27
|
+
import { SavedSearch, SavedSearchesService, SearchConfiguration, SearchQueryBuilderService, TagService } from '@alfresco/adf-content-services';
|
|
28
28
|
import { TranslationService } from '@alfresco/adf-core';
|
|
29
29
|
import { PageComponent } from '@alfresco/aca-shared';
|
|
30
30
|
import { SearchSortingDefinition } from '@alfresco/adf-content-services/lib/search/models/search-sorting-definition.interface';
|
|
31
31
|
import { DocumentListPresetRef } from '@alfresco/adf-extensions';
|
|
32
32
|
import * as i0 from "@angular/core";
|
|
33
33
|
export declare class SearchResultsComponent extends PageComponent implements OnInit {
|
|
34
|
-
private queryBuilder;
|
|
35
|
-
private
|
|
36
|
-
private
|
|
34
|
+
private readonly queryBuilder;
|
|
35
|
+
private readonly changeDetectorRef;
|
|
36
|
+
private readonly route;
|
|
37
|
+
private readonly translationService;
|
|
38
|
+
private readonly savedSearchesService;
|
|
37
39
|
private notificationService;
|
|
38
40
|
infoDrawerPreview$: import("rxjs").Observable<boolean>;
|
|
39
41
|
searchedWord: string;
|
|
@@ -43,15 +45,17 @@ export declare class SearchResultsComponent extends PageComponent implements OnI
|
|
|
43
45
|
isLoading: boolean;
|
|
44
46
|
totalResults: number;
|
|
45
47
|
isTagsEnabled: boolean;
|
|
48
|
+
initialSavedSearch: SavedSearch;
|
|
46
49
|
columns: DocumentListPresetRef[];
|
|
47
|
-
|
|
50
|
+
encodedQuery: string;
|
|
51
|
+
searchConfig: SearchConfiguration;
|
|
52
|
+
private readonly loadedFilters$;
|
|
53
|
+
private readonly destroyRef;
|
|
54
|
+
constructor(tagsService: TagService, queryBuilder: SearchQueryBuilderService, changeDetectorRef: ChangeDetectorRef, route: ActivatedRoute, translationService: TranslationService, savedSearchesService: SavedSearchesService);
|
|
48
55
|
ngOnInit(): void;
|
|
49
56
|
onSearchError(error: {
|
|
50
57
|
message: any;
|
|
51
58
|
}): void;
|
|
52
|
-
private isOperator;
|
|
53
|
-
private formatFields;
|
|
54
|
-
formatSearchQuery(userInput: string, fields?: string[]): string;
|
|
55
59
|
onSearchResultLoaded(nodePaging: ResultSetPaging): void;
|
|
56
60
|
getNumberOfResults(): number;
|
|
57
61
|
onPaginationChanged(pagination: Pagination): void;
|
|
@@ -61,6 +65,8 @@ export declare class SearchResultsComponent extends PageComponent implements OnI
|
|
|
61
65
|
onPreviewClosed(): void;
|
|
62
66
|
onDrawerClosed(): void;
|
|
63
67
|
onSearchSortingUpdate(option: SearchSortingDefinition): void;
|
|
68
|
+
editSavedSearch(searchToSave: SavedSearch): void;
|
|
69
|
+
private updateUserQuery;
|
|
64
70
|
static ɵfac: i0.ɵɵFactoryDeclaration<SearchResultsComponent, never>;
|
|
65
71
|
static ɵcmp: i0.ɵɵComponentDeclaration<SearchResultsComponent, "aca-search-results", never, {}, {}, never, never, true, never>;
|
|
66
72
|
}
|
|
@@ -56,5 +56,5 @@ export declare class SearchResultsRowComponent implements OnInit, OnDestroy {
|
|
|
56
56
|
navigate(event: Event): void;
|
|
57
57
|
private stripHighlighting;
|
|
58
58
|
static ɵfac: i0.ɵɵFactoryDeclaration<SearchResultsRowComponent, never>;
|
|
59
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SearchResultsRowComponent, "aca-search-results-row", never, { "context": "context"; }, {}, never, never, true, never>;
|
|
59
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SearchResultsRowComponent, "aca-search-results-row", never, { "context": { "alias": "context"; "required": false; }; }, {}, never, never, true, never>;
|
|
60
60
|
}
|
package/lib/components/search/search-save/dialog/delete/saved-search-delete-dialog.component.d.ts
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { SavedSearch, SavedSearchesService } from '@alfresco/adf-content-services';
|
|
2
|
+
import { MatDialogRef } from '@angular/material/dialog';
|
|
3
|
+
import { AppStore } from '@alfresco/aca-shared/store';
|
|
4
|
+
import { Store } from '@ngrx/store';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class SavedSearchDeleteDialogComponent {
|
|
7
|
+
private readonly dialog;
|
|
8
|
+
private readonly savedSearchesService;
|
|
9
|
+
private readonly store;
|
|
10
|
+
private readonly data;
|
|
11
|
+
isLoading: boolean;
|
|
12
|
+
constructor(dialog: MatDialogRef<SavedSearchDeleteDialogComponent>, savedSearchesService: SavedSearchesService, store: Store<AppStore>, data: SavedSearch);
|
|
13
|
+
onSubmit(): void;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SavedSearchDeleteDialogComponent, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SavedSearchDeleteDialogComponent, "aca-saved-search-delete-dialog", never, {}, {}, never, never, true, never>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { SavedSearch, SavedSearchesService } from '@alfresco/adf-content-services';
|
|
2
|
+
import { MatDialogRef } from '@angular/material/dialog';
|
|
3
|
+
import { AppStore } from '@alfresco/aca-shared/store';
|
|
4
|
+
import { Store } from '@ngrx/store';
|
|
5
|
+
import { FormGroup } from '@angular/forms';
|
|
6
|
+
import { UniqueSearchNameValidator } from '../unique-search-name-validator';
|
|
7
|
+
import { SavedSearchForm } from '../saved-search-form.interface';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
export declare class SavedSearchEditDialogComponent {
|
|
10
|
+
private readonly dialog;
|
|
11
|
+
private readonly store;
|
|
12
|
+
private readonly savedSearchesService;
|
|
13
|
+
private readonly uniqueSearchNameValidator;
|
|
14
|
+
private readonly data;
|
|
15
|
+
form: FormGroup<SavedSearchForm>;
|
|
16
|
+
isLoading: boolean;
|
|
17
|
+
constructor(dialog: MatDialogRef<SavedSearchEditDialogComponent>, store: Store<AppStore>, savedSearchesService: SavedSearchesService, uniqueSearchNameValidator: UniqueSearchNameValidator, data: SavedSearch);
|
|
18
|
+
submit(): void;
|
|
19
|
+
private onEditSuccess;
|
|
20
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SavedSearchEditDialogComponent, never>;
|
|
21
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SavedSearchEditDialogComponent, "aca-saved-search-edit-dialog", never, {}, {}, never, never, true, never>;
|
|
22
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { FormGroup } from '@angular/forms';
|
|
2
|
+
import { SavedSearchesService } from '@alfresco/adf-content-services';
|
|
3
|
+
import { MatDialogRef } from '@angular/material/dialog';
|
|
4
|
+
import { Store } from '@ngrx/store';
|
|
5
|
+
import { AppStore } from '@alfresco/aca-shared/store';
|
|
6
|
+
import { UniqueSearchNameValidator } from './unique-search-name-validator';
|
|
7
|
+
import { SavedSearchForm } from './saved-search-form.interface';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
export declare class SaveSearchDialogComponent {
|
|
10
|
+
private readonly dialog;
|
|
11
|
+
private readonly store;
|
|
12
|
+
private readonly savedSearchesService;
|
|
13
|
+
private readonly uniqueSearchNameValidator;
|
|
14
|
+
private readonly data;
|
|
15
|
+
form: FormGroup<SavedSearchForm>;
|
|
16
|
+
disableSubmitButton: boolean;
|
|
17
|
+
constructor(dialog: MatDialogRef<SaveSearchDialogComponent>, store: Store<AppStore>, savedSearchesService: SavedSearchesService, uniqueSearchNameValidator: UniqueSearchNameValidator, data: {
|
|
18
|
+
searchUrl: string;
|
|
19
|
+
});
|
|
20
|
+
submit(): void;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SaveSearchDialogComponent, never>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SaveSearchDialogComponent, "aca-save-search-dialog", never, {}, {}, never, never, true, never>;
|
|
23
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* Copyright © 2005-2024 Hyland Software, Inc. and its affiliates. All rights reserved.
|
|
3
|
+
*
|
|
4
|
+
* Alfresco Example Content Application
|
|
5
|
+
*
|
|
6
|
+
* This file is part of the Alfresco Example Content Application.
|
|
7
|
+
* If the software was purchased under a paid Alfresco license, the terms of
|
|
8
|
+
* the paid license agreement will prevail. Otherwise, the software is
|
|
9
|
+
* provided under the following open source license terms:
|
|
10
|
+
*
|
|
11
|
+
* The Alfresco Example Content Application is free software: you can redistribute it and/or modify
|
|
12
|
+
* it under the terms of the GNU Lesser General Public License as published by
|
|
13
|
+
* the Free Software Foundation, either version 3 of the License, or
|
|
14
|
+
* (at your option) any later version.
|
|
15
|
+
*
|
|
16
|
+
* The Alfresco Example Content Application is distributed in the hope that it will be useful,
|
|
17
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
18
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
19
|
+
* GNU Lesser General Public License for more details.
|
|
20
|
+
*
|
|
21
|
+
* You should have received a copy of the GNU Lesser General Public License
|
|
22
|
+
* from Hyland Software. If not, see <http://www.gnu.org/licenses/>.
|
|
23
|
+
*/
|
|
24
|
+
import { FormControl } from '@angular/forms';
|
|
25
|
+
export interface SavedSearchForm {
|
|
26
|
+
name: FormControl<string>;
|
|
27
|
+
description: FormControl<string>;
|
|
28
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* Copyright © 2005-2024 Hyland Software, Inc. and its affiliates. All rights reserved.
|
|
3
|
+
*
|
|
4
|
+
* Alfresco Example Content Application
|
|
5
|
+
*
|
|
6
|
+
* This file is part of the Alfresco Example Content Application.
|
|
7
|
+
* If the software was purchased under a paid Alfresco license, the terms of
|
|
8
|
+
* the paid license agreement will prevail. Otherwise, the software is
|
|
9
|
+
* provided under the following open source license terms:
|
|
10
|
+
*
|
|
11
|
+
* The Alfresco Example Content Application is free software: you can redistribute it and/or modify
|
|
12
|
+
* it under the terms of the GNU Lesser General Public License as published by
|
|
13
|
+
* the Free Software Foundation, either version 3 of the License, or
|
|
14
|
+
* (at your option) any later version.
|
|
15
|
+
*
|
|
16
|
+
* The Alfresco Example Content Application is distributed in the hope that it will be useful,
|
|
17
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
18
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
19
|
+
* GNU Lesser General Public License for more details.
|
|
20
|
+
*
|
|
21
|
+
* You should have received a copy of the GNU Lesser General Public License
|
|
22
|
+
* from Hyland Software. If not, see <http://www.gnu.org/licenses/>.
|
|
23
|
+
*/
|
|
24
|
+
import { SavedSearchesService } from '@alfresco/adf-content-services';
|
|
25
|
+
import { AbstractControl, AsyncValidator, ValidationErrors } from '@angular/forms';
|
|
26
|
+
import { Observable } from 'rxjs';
|
|
27
|
+
import * as i0 from "@angular/core";
|
|
28
|
+
export declare class UniqueSearchNameValidator implements AsyncValidator {
|
|
29
|
+
private readonly savedSearchesService;
|
|
30
|
+
constructor(savedSearchesService: SavedSearchesService);
|
|
31
|
+
validate(control: AbstractControl): Observable<ValidationErrors | null>;
|
|
32
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UniqueSearchNameValidator, never>;
|
|
33
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<UniqueSearchNameValidator>;
|
|
34
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { MatDialog } from '@angular/material/dialog';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class SaveSearchDirective {
|
|
4
|
+
private readonly dialogRef;
|
|
5
|
+
/** Encoded search query */
|
|
6
|
+
acaSaveSearchQuery: string;
|
|
7
|
+
constructor(dialogRef: MatDialog);
|
|
8
|
+
onClick(event: MouseEvent): void;
|
|
9
|
+
private openDialog;
|
|
10
|
+
private getDialogConfig;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SaveSearchDirective, never>;
|
|
12
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<SaveSearchDirective, "[acaSaveSearch]", never, { "acaSaveSearchQuery": { "alias": "acaSaveSearchQuery"; "required": false; }; }, {}, never, never, true, never>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { SavedSearch } from '@alfresco/adf-content-services';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class SavedSearchesListUiService {
|
|
4
|
+
private readonly dialog;
|
|
5
|
+
openEditSavedSearch(savedSearch: SavedSearch): void;
|
|
6
|
+
confirmDeleteSavedSearch(savedSearch: SavedSearch): void;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SavedSearchesListUiService, never>;
|
|
8
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SavedSearchesListUiService>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* Copyright © 2005-2024 Hyland Software, Inc. and its affiliates. All rights reserved.
|
|
3
|
+
*
|
|
4
|
+
* Alfresco Example Content Application
|
|
5
|
+
*
|
|
6
|
+
* This file is part of the Alfresco Example Content Application.
|
|
7
|
+
* If the software was purchased under a paid Alfresco license, the terms of
|
|
8
|
+
* the paid license agreement will prevail. Otherwise, the software is
|
|
9
|
+
* provided under the following open source license terms:
|
|
10
|
+
*
|
|
11
|
+
* The Alfresco Example Content Application is free software: you can redistribute it and/or modify
|
|
12
|
+
* it under the terms of the GNU Lesser General Public License as published by
|
|
13
|
+
* the Free Software Foundation, either version 3 of the License, or
|
|
14
|
+
* (at your option) any later version.
|
|
15
|
+
*
|
|
16
|
+
* The Alfresco Example Content Application is distributed in the hope that it will be useful,
|
|
17
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
18
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
19
|
+
* GNU Lesser General Public License for more details.
|
|
20
|
+
*
|
|
21
|
+
* You should have received a copy of the GNU Lesser General Public License
|
|
22
|
+
* from Hyland Software. If not, see <http://www.gnu.org/licenses/>.
|
|
23
|
+
*/
|
|
24
|
+
export declare const savedSearchesListSchema: {
|
|
25
|
+
default: {
|
|
26
|
+
type: string;
|
|
27
|
+
key: string;
|
|
28
|
+
title: string;
|
|
29
|
+
class: string;
|
|
30
|
+
sortable: boolean;
|
|
31
|
+
draggable: boolean;
|
|
32
|
+
}[];
|
|
33
|
+
};
|
package/lib/components/search/search-save/list/smart-list/saved-searches-smart-list.component.d.ts
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { PageComponent } from '@alfresco/aca-shared';
|
|
2
|
+
import { SavedSearchesService } from '@alfresco/adf-content-services';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class SavedSearchesSmartListComponent extends PageComponent {
|
|
5
|
+
savedSearchesService: SavedSearchesService;
|
|
6
|
+
savedSearches$: import("rxjs").ReplaySubject<import("@alfresco/adf-content-services").SavedSearch[]>;
|
|
7
|
+
onOrderChanged(event: {
|
|
8
|
+
previousIndex: number;
|
|
9
|
+
currentIndex: number;
|
|
10
|
+
}): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SavedSearchesSmartListComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SavedSearchesSmartListComponent, "aca-saved-searches-smart-list", never, {}, {}, never, never, true, never>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* Copyright © 2005-2024 Hyland Software, Inc. and its affiliates. All rights reserved.
|
|
3
|
+
*
|
|
4
|
+
* Alfresco Example Content Application
|
|
5
|
+
*
|
|
6
|
+
* This file is part of the Alfresco Example Content Application.
|
|
7
|
+
* If the software was purchased under a paid Alfresco license, the terms of
|
|
8
|
+
* the paid license agreement will prevail. Otherwise, the software is
|
|
9
|
+
* provided under the following open source license terms:
|
|
10
|
+
*
|
|
11
|
+
* The Alfresco Example Content Application is free software: you can redistribute it and/or modify
|
|
12
|
+
* it under the terms of the GNU Lesser General Public License as published by
|
|
13
|
+
* the Free Software Foundation, either version 3 of the License, or
|
|
14
|
+
* (at your option) any later version.
|
|
15
|
+
*
|
|
16
|
+
* The Alfresco Example Content Application is distributed in the hope that it will be useful,
|
|
17
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
18
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
19
|
+
* GNU Lesser General Public License for more details.
|
|
20
|
+
*
|
|
21
|
+
* You should have received a copy of the GNU Lesser General Public License
|
|
22
|
+
* from Hyland Software. If not, see <http://www.gnu.org/licenses/>.
|
|
23
|
+
*/
|
|
24
|
+
import { AfterContentInit, EventEmitter } from '@angular/core';
|
|
25
|
+
import { AppConfigService, DataCellEvent, DataTableSchema, ShowHeaderMode } from '@alfresco/adf-core';
|
|
26
|
+
import { SavedSearch } from '@alfresco/adf-content-services';
|
|
27
|
+
import { Clipboard } from '@angular/cdk/clipboard';
|
|
28
|
+
import { Store } from '@ngrx/store';
|
|
29
|
+
import { Router } from '@angular/router';
|
|
30
|
+
import * as i0 from "@angular/core";
|
|
31
|
+
export declare class SavedSearchesListUiComponent extends DataTableSchema implements AfterContentInit {
|
|
32
|
+
protected appConfig: AppConfigService;
|
|
33
|
+
private readonly clipboard;
|
|
34
|
+
private readonly store;
|
|
35
|
+
private readonly router;
|
|
36
|
+
savedSearches: SavedSearch[];
|
|
37
|
+
savedSearchOrderChanged: EventEmitter<{
|
|
38
|
+
previousIndex: number;
|
|
39
|
+
currentIndex: number;
|
|
40
|
+
}>;
|
|
41
|
+
readonly ShowHeaderMode: typeof ShowHeaderMode;
|
|
42
|
+
private readonly savedSearchesListUiService;
|
|
43
|
+
private readonly destroyRef;
|
|
44
|
+
private readonly contextMenuAction$;
|
|
45
|
+
private readonly editSavedSearchOptionKey;
|
|
46
|
+
private readonly deleteSavedSearchOptionKey;
|
|
47
|
+
private readonly copyToClipboardUrlOptionKey;
|
|
48
|
+
private readonly executeSearchOptionKey;
|
|
49
|
+
private readonly menuOptions;
|
|
50
|
+
constructor(appConfig: AppConfigService, clipboard: Clipboard, store: Store, router: Router);
|
|
51
|
+
ngAfterContentInit(): void;
|
|
52
|
+
onShowRowActionsMenu(event: DataCellEvent): void;
|
|
53
|
+
onSearchOrderChange(event: {
|
|
54
|
+
previousIndex: number;
|
|
55
|
+
currentIndex: number;
|
|
56
|
+
}): void;
|
|
57
|
+
executeMenuOption(optionKey: string, savedSearchData: SavedSearch): void;
|
|
58
|
+
openEditSavedSearchDialog(savedSearch: SavedSearch): void;
|
|
59
|
+
openDeleteSavedSearchDialog(savedSearch: SavedSearch): void;
|
|
60
|
+
copyToClipboard(savedSearch: SavedSearch): void;
|
|
61
|
+
executeSearch(savedSearch: SavedSearch): void;
|
|
62
|
+
fillContextMenu(event: DataCellEvent): void;
|
|
63
|
+
private getFullUrl;
|
|
64
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SavedSearchesListUiComponent, never>;
|
|
65
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SavedSearchesListUiComponent, "aca-saved-searches-ui-list", never, { "savedSearches": { "alias": "savedSearches"; "required": false; }; }, { "savedSearchOrderChanged": "savedSearchOrderChanged"; }, never, never, true, never>;
|
|
66
|
+
}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* Copyright © 2005-2024 Hyland Software, Inc. and its affiliates. All rights reserved.
|
|
3
|
+
*
|
|
4
|
+
* Alfresco Example Content Application
|
|
5
|
+
*
|
|
6
|
+
* This file is part of the Alfresco Example Content Application.
|
|
7
|
+
* If the software was purchased under a paid Alfresco license, the terms of
|
|
8
|
+
* the paid license agreement will prevail. Otherwise, the software is
|
|
9
|
+
* provided under the following open source license terms:
|
|
10
|
+
*
|
|
11
|
+
* The Alfresco Example Content Application is free software: you can redistribute it and/or modify
|
|
12
|
+
* it under the terms of the GNU Lesser General Public License as published by
|
|
13
|
+
* the Free Software Foundation, either version 3 of the License, or
|
|
14
|
+
* (at your option) any later version.
|
|
15
|
+
*
|
|
16
|
+
* The Alfresco Example Content Application is distributed in the hope that it will be useful,
|
|
17
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
18
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
19
|
+
* GNU Lesser General Public License for more details.
|
|
20
|
+
*
|
|
21
|
+
* You should have received a copy of the GNU Lesser General Public License
|
|
22
|
+
* from Hyland Software. If not, see <http://www.gnu.org/licenses/>.
|
|
23
|
+
*/
|
|
24
|
+
import { OnDestroy, OnInit } from '@angular/core';
|
|
25
|
+
import { SavedSearchesService } from '@alfresco/adf-content-services';
|
|
26
|
+
import { Subject } from 'rxjs';
|
|
27
|
+
import { TranslationService } from '@alfresco/adf-core';
|
|
28
|
+
import { NavBarLinkRef } from '@alfresco/adf-extensions';
|
|
29
|
+
import { AppService } from '@alfresco/aca-shared';
|
|
30
|
+
import * as i0 from "@angular/core";
|
|
31
|
+
export declare class SaveSearchSidenavComponent implements OnInit, OnDestroy {
|
|
32
|
+
savedSearchesService: SavedSearchesService;
|
|
33
|
+
appService: AppService;
|
|
34
|
+
translationService: TranslationService;
|
|
35
|
+
destroy$: Subject<void>;
|
|
36
|
+
item: NavBarLinkRef;
|
|
37
|
+
private readonly manageSearchesId;
|
|
38
|
+
ngOnInit(): void;
|
|
39
|
+
ngOnDestroy(): void;
|
|
40
|
+
onActionClick(el: NavBarLinkRef): void;
|
|
41
|
+
private createNavBarLinkRef;
|
|
42
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SaveSearchSidenavComponent, never>;
|
|
43
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SaveSearchSidenavComponent, "aca-save-search-sidenav", never, {}, {}, never, never, true, never>;
|
|
44
|
+
}
|
|
@@ -33,5 +33,5 @@ export declare class ButtonMenuComponent implements OnInit {
|
|
|
33
33
|
ngOnInit(): void;
|
|
34
34
|
trackById(_index: number, obj: NavBarLinkRef): string;
|
|
35
35
|
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonMenuComponent, never>;
|
|
36
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonMenuComponent, "app-button-menu", never, { "item": "item"; }, {}, never, never, true, never>;
|
|
36
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonMenuComponent, "app-button-menu", never, { "item": { "alias": "item"; "required": false; }; }, {}, never, never, true, never>;
|
|
37
37
|
}
|
|
@@ -21,15 +21,16 @@
|
|
|
21
21
|
* You should have received a copy of the GNU Lesser General Public License
|
|
22
22
|
* from Hyland Software. If not, see <http://www.gnu.org/licenses/>.
|
|
23
23
|
*/
|
|
24
|
-
import {
|
|
24
|
+
import { ChangeDetectorRef, EventEmitter, OnInit } from '@angular/core';
|
|
25
25
|
import { NavBarLinkRef } from '@alfresco/adf-extensions';
|
|
26
26
|
import * as i0 from "@angular/core";
|
|
27
27
|
export declare class ExpandMenuComponent implements OnInit {
|
|
28
28
|
private cd;
|
|
29
29
|
item: NavBarLinkRef;
|
|
30
|
+
actionClicked: EventEmitter<NavBarLinkRef>;
|
|
30
31
|
constructor(cd: ChangeDetectorRef);
|
|
31
32
|
ngOnInit(): void;
|
|
32
33
|
trackById(_index: number, obj: NavBarLinkRef): string;
|
|
33
34
|
static ɵfac: i0.ɵɵFactoryDeclaration<ExpandMenuComponent, never>;
|
|
34
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ExpandMenuComponent, "app-expand-menu", never, { "item": "item"; }, {}, never, never, true, never>;
|
|
35
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ExpandMenuComponent, "app-expand-menu", never, { "item": { "alias": "item"; "required": false; }; }, { "actionClicked": "actionClicked"; }, never, never, true, never>;
|
|
35
36
|
}
|
|
@@ -1,14 +1,41 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* Copyright © 2005-2024 Hyland Software, Inc. and its affiliates. All rights reserved.
|
|
3
|
+
*
|
|
4
|
+
* Alfresco Example Content Application
|
|
5
|
+
*
|
|
6
|
+
* This file is part of the Alfresco Example Content Application.
|
|
7
|
+
* If the software was purchased under a paid Alfresco license, the terms of
|
|
8
|
+
* the paid license agreement will prevail. Otherwise, the software is
|
|
9
|
+
* provided under the following open source license terms:
|
|
10
|
+
*
|
|
11
|
+
* The Alfresco Example Content Application is free software: you can redistribute it and/or modify
|
|
12
|
+
* it under the terms of the GNU Lesser General Public License as published by
|
|
13
|
+
* the Free Software Foundation, either version 3 of the License, or
|
|
14
|
+
* (at your option) any later version.
|
|
15
|
+
*
|
|
16
|
+
* The Alfresco Example Content Application is distributed in the hope that it will be useful,
|
|
17
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
18
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
19
|
+
* GNU Lesser General Public License for more details.
|
|
20
|
+
*
|
|
21
|
+
* You should have received a copy of the GNU Lesser General Public License
|
|
22
|
+
* from Hyland Software. If not, see <http://www.gnu.org/licenses/>.
|
|
23
|
+
*/
|
|
24
|
+
import { EventEmitter } from '@angular/core';
|
|
1
25
|
import { Router } from '@angular/router';
|
|
2
26
|
import { Store } from '@ngrx/store';
|
|
3
27
|
import { AppStore } from '@alfresco/aca-shared/store';
|
|
28
|
+
import { NavBarLinkRef } from '@alfresco/adf-extensions';
|
|
4
29
|
import * as i0 from "@angular/core";
|
|
5
30
|
export declare class ActionDirective {
|
|
6
31
|
private router;
|
|
7
32
|
private store;
|
|
8
33
|
action: any;
|
|
34
|
+
actionClicked: EventEmitter<NavBarLinkRef>;
|
|
9
35
|
onClick(): void;
|
|
10
36
|
constructor(router: Router, store: Store<AppStore>);
|
|
11
37
|
private getNavigationCommands;
|
|
38
|
+
private getNavigationQueryParams;
|
|
12
39
|
static ɵfac: i0.ɵɵFactoryDeclaration<ActionDirective, never>;
|
|
13
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ActionDirective, "[action]", ["action"], { "action": "action"; }, {}, never, never, true, never>;
|
|
40
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ActionDirective, "[action]", ["action"], { "action": { "alias": "action"; "required": false; }; }, { "actionClicked": "actionClicked"; }, never, never, true, never>;
|
|
14
41
|
}
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
* You should have received a copy of the GNU Lesser General Public License
|
|
22
22
|
* from Hyland Software. If not, see <http://www.gnu.org/licenses/>.
|
|
23
23
|
*/
|
|
24
|
-
import {
|
|
24
|
+
import { AfterContentInit, ElementRef, OnInit, QueryList, Renderer2 } from '@angular/core';
|
|
25
25
|
import { Router } from '@angular/router';
|
|
26
26
|
import { ActionDirective } from './action.directive';
|
|
27
27
|
import * as i0 from "@angular/core";
|
|
@@ -41,5 +41,5 @@ export declare class ActiveLinkDirective implements OnInit, AfterContentInit {
|
|
|
41
41
|
ngAfterContentInit(): void;
|
|
42
42
|
private resolveUrl;
|
|
43
43
|
static ɵfac: i0.ɵɵFactoryDeclaration<ActiveLinkDirective, [null, null, null, { optional: true; }]>;
|
|
44
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ActiveLinkDirective, "[acaActiveLink]", ["acaActiveLink"], { "acaActiveLink": "acaActiveLink"; }, {}, ["links"], never, true, never>;
|
|
44
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ActiveLinkDirective, "[acaActiveLink]", ["acaActiveLink"], { "acaActiveLink": { "alias": "acaActiveLink"; "required": false; }; }, {}, ["links"], never, true, never>;
|
|
45
45
|
}
|
|
@@ -40,5 +40,5 @@ export declare class ExpansionPanelDirective implements OnInit, OnDestroy {
|
|
|
40
40
|
ngOnDestroy(): void;
|
|
41
41
|
private getNavigationCommands;
|
|
42
42
|
static ɵfac: i0.ɵɵFactoryDeclaration<ExpansionPanelDirective, never>;
|
|
43
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ExpansionPanelDirective, "[acaExpansionPanel]", ["acaExpansionPanel"], { "acaExpansionPanel": "acaExpansionPanel"; }, {}, never, never, true, never>;
|
|
43
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ExpansionPanelDirective, "[acaExpansionPanel]", ["acaExpansionPanel"], { "acaExpansionPanel": { "alias": "acaExpansionPanel"; "required": false; }; }, {}, never, never, true, never>;
|
|
44
44
|
}
|
|
@@ -38,5 +38,5 @@ export declare class MenuPanelDirective implements OnInit, OnDestroy {
|
|
|
38
38
|
ngOnDestroy(): void;
|
|
39
39
|
private getNavigationCommands;
|
|
40
40
|
static ɵfac: i0.ɵɵFactoryDeclaration<MenuPanelDirective, never>;
|
|
41
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MenuPanelDirective, "[acaMenuPanel]", ["acaMenuPanel"], { "acaMenuPanel": "acaMenuPanel"; }, {}, never, never, true, never>;
|
|
41
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MenuPanelDirective, "[acaMenuPanel]", ["acaMenuPanel"], { "acaMenuPanel": { "alias": "acaMenuPanel"; "required": false; }; }, {}, never, never, true, never>;
|
|
42
42
|
}
|
|
@@ -25,20 +25,21 @@ import { OnInit, OnDestroy } from '@angular/core';
|
|
|
25
25
|
import { NavBarGroupRef, NavBarLinkRef } from '@alfresco/adf-extensions';
|
|
26
26
|
import { Store } from '@ngrx/store';
|
|
27
27
|
import { AppStore } from '@alfresco/aca-shared/store';
|
|
28
|
-
import { AppExtensionService, AppService } from '@alfresco/aca-shared';
|
|
28
|
+
import { AppExtensionService, AppService, NavigationHistoryService } from '@alfresco/aca-shared';
|
|
29
29
|
import { SidenavLayoutComponent } from '@alfresco/adf-core';
|
|
30
30
|
import * as i0 from "@angular/core";
|
|
31
31
|
export declare class SidenavComponent implements OnInit, OnDestroy {
|
|
32
32
|
private store;
|
|
33
33
|
private extensions;
|
|
34
34
|
private appService;
|
|
35
|
+
private navigationHistoryService;
|
|
35
36
|
data: {
|
|
36
37
|
layout?: SidenavLayoutComponent;
|
|
37
38
|
mode?: 'collapsed' | 'expanded';
|
|
38
39
|
};
|
|
39
40
|
groups: Array<NavBarGroupRef>;
|
|
40
41
|
private onDestroy$;
|
|
41
|
-
constructor(store: Store<AppStore>, extensions: AppExtensionService, appService: AppService);
|
|
42
|
+
constructor(store: Store<AppStore>, extensions: AppExtensionService, appService: AppService, navigationHistoryService: NavigationHistoryService);
|
|
42
43
|
ngOnInit(): void;
|
|
43
44
|
trackByGroupId(_: number, obj: NavBarGroupRef): string;
|
|
44
45
|
trackByLinkId(_: number, obj: NavBarLinkRef): string;
|
|
@@ -47,5 +48,5 @@ export declare class SidenavComponent implements OnInit, OnDestroy {
|
|
|
47
48
|
private toggleNavBar;
|
|
48
49
|
ngOnDestroy(): void;
|
|
49
50
|
static ɵfac: i0.ɵɵFactoryDeclaration<SidenavComponent, never>;
|
|
50
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SidenavComponent, "app-sidenav", never, { "data": "data"; }, {}, never, never, true, never>;
|
|
51
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SidenavComponent, "app-sidenav", never, { "data": { "alias": "data"; "required": false; }; }, {}, never, never, true, never>;
|
|
51
52
|
}
|
|
@@ -33,5 +33,5 @@ export declare class UserMenuComponent implements OnInit {
|
|
|
33
33
|
};
|
|
34
34
|
ngOnInit(): void;
|
|
35
35
|
static ɵfac: i0.ɵɵFactoryDeclaration<UserMenuComponent, never>;
|
|
36
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<UserMenuComponent, "aca-user-menu", never, { "actionRef": "actionRef"; "data": "data"; }, {}, never, never, true, never>;
|
|
36
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UserMenuComponent, "aca-user-menu", never, { "actionRef": { "alias": "actionRef"; "required": false; }; "data": { "alias": "data"; "required": false; }; }, {}, never, never, true, never>;
|
|
37
37
|
}
|
|
@@ -39,5 +39,5 @@ export declare class ToggleFavoriteComponent implements OnInit {
|
|
|
39
39
|
ngOnInit(): void;
|
|
40
40
|
onToggleEvent(): void;
|
|
41
41
|
static ɵfac: i0.ɵɵFactoryDeclaration<ToggleFavoriteComponent, never>;
|
|
42
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ToggleFavoriteComponent, "app-toggle-favorite", never, { "data": "data"; }, {}, never, never, true, never>;
|
|
42
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ToggleFavoriteComponent, "app-toggle-favorite", never, { "data": { "alias": "data"; "required": false; }; }, {}, never, never, true, never>;
|
|
43
43
|
}
|
|
@@ -18,5 +18,5 @@ export declare class ViewNodeComponent {
|
|
|
18
18
|
onClick(): void;
|
|
19
19
|
private navigateToViewer;
|
|
20
20
|
static ɵfac: i0.ɵɵFactoryDeclaration<ViewNodeComponent, never>;
|
|
21
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ViewNodeComponent, "app-view-node", never, { "data": "data"; }, {}, never, never, true, never>;
|
|
21
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ViewNodeComponent, "app-view-node", never, { "data": { "alias": "data"; "required": false; }; }, {}, never, never, true, never>;
|
|
22
22
|
}
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
import { Params, Router } from '@angular/router';
|
|
2
|
+
import { SearchAiService } from '@alfresco/adf-content-services';
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class SearchAiNavigationService {
|
|
4
5
|
private router;
|
|
6
|
+
private searchAiService;
|
|
5
7
|
private readonly knowledgeRetrievalRoute;
|
|
6
8
|
private previousRoute;
|
|
7
|
-
constructor(router: Router);
|
|
8
|
-
|
|
9
|
+
constructor(router: Router, searchAiService: SearchAiService);
|
|
10
|
+
navigateToPreviousRouteOrCloseInput(): void;
|
|
9
11
|
navigateToSearchAi(queryParams: Params): void;
|
|
10
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<SearchAiNavigationService, never>;
|
|
11
13
|
static ɵprov: i0.ɵɵInjectableDeclaration<SearchAiNavigationService>;
|
|
@@ -25,9 +25,8 @@ import { Actions } from '@ngrx/effects';
|
|
|
25
25
|
import { DocumentListService } from '@alfresco/adf-content-services';
|
|
26
26
|
import * as i0 from "@angular/core";
|
|
27
27
|
export declare class AppEffects {
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
constructor(actions$: Actions, documentListService: DocumentListService);
|
|
28
|
+
actions$: Actions<any>;
|
|
29
|
+
documentListService: DocumentListService;
|
|
31
30
|
reload: import("rxjs").Observable<void> & import("@ngrx/effects").CreateEffectMetadata;
|
|
32
31
|
resetSelection: import("rxjs").Observable<void> & import("@ngrx/effects").CreateEffectMetadata;
|
|
33
32
|
static ɵfac: i0.ɵɵFactoryDeclaration<AppEffects, never>;
|
|
@@ -2,11 +2,11 @@ import { Actions } from '@ngrx/effects';
|
|
|
2
2
|
import { ContextMenuService } from '../../components/context-menu/context-menu.service';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class ContextMenuEffects {
|
|
5
|
-
private contextMenuService;
|
|
6
|
-
private actions$;
|
|
7
5
|
private overlayRef;
|
|
8
|
-
|
|
6
|
+
contextMenuService: ContextMenuService;
|
|
7
|
+
actions$: Actions<any>;
|
|
9
8
|
contextMenu$: import("rxjs").Observable<void> & import("@ngrx/effects").CreateEffectMetadata;
|
|
9
|
+
customContextMenu$: import("rxjs").Observable<void> & import("@ngrx/effects").CreateEffectMetadata;
|
|
10
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<ContextMenuEffects, never>;
|
|
11
11
|
static ɵprov: i0.ɵɵInjectableDeclaration<ContextMenuEffects>;
|
|
12
12
|
}
|
|
@@ -1,32 +1,3 @@
|
|
|
1
|
-
/*!
|
|
2
|
-
* Copyright © 2005-2024 Hyland Software, Inc. and its affiliates. All rights reserved.
|
|
3
|
-
*
|
|
4
|
-
* Alfresco Example Content Application
|
|
5
|
-
*
|
|
6
|
-
* This file is part of the Alfresco Example Content Application.
|
|
7
|
-
* If the software was purchased under a paid Alfresco license, the terms of
|
|
8
|
-
* the paid license agreement will prevail. Otherwise, the software is
|
|
9
|
-
* provided under the following open source license terms:
|
|
10
|
-
*
|
|
11
|
-
* The Alfresco Example Content Application is free software: you can redistribute it and/or modify
|
|
12
|
-
* it under the terms of the GNU Lesser General Public License as published by
|
|
13
|
-
* the Free Software Foundation, either version 3 of the License, or
|
|
14
|
-
* (at your option) any later version.
|
|
15
|
-
*
|
|
16
|
-
* The Alfresco Example Content Application is distributed in the hope that it will be useful,
|
|
17
|
-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
18
|
-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
19
|
-
* GNU Lesser General Public License for more details.
|
|
20
|
-
*
|
|
21
|
-
* You should have received a copy of the GNU Lesser General Public License
|
|
22
|
-
* from Hyland Software. If not, see <http://www.gnu.org/licenses/>.
|
|
23
|
-
*/
|
|
24
|
-
import { AppStore } from '@alfresco/aca-shared/store';
|
|
25
|
-
import { MatDialog } from '@angular/material/dialog';
|
|
26
|
-
import { Actions } from '@ngrx/effects';
|
|
27
|
-
import { Store } from '@ngrx/store';
|
|
28
|
-
import { ContentApiService } from '@alfresco/aca-shared';
|
|
29
|
-
import { ContentUrlService } from '../../services/content-url.service';
|
|
30
1
|
import * as i0 from "@angular/core";
|
|
31
2
|
export declare class DownloadEffects {
|
|
32
3
|
private store;
|
|
@@ -34,7 +5,6 @@ export declare class DownloadEffects {
|
|
|
34
5
|
private contentApi;
|
|
35
6
|
private dialog;
|
|
36
7
|
private contentUrlService;
|
|
37
|
-
constructor(store: Store<AppStore>, actions$: Actions, contentApi: ContentApiService, dialog: MatDialog, contentUrlService: ContentUrlService);
|
|
38
8
|
downloadNode$: import("rxjs").Observable<void> & import("@ngrx/effects").CreateEffectMetadata;
|
|
39
9
|
private downloadNodes;
|
|
40
10
|
private downloadNode;
|