@alfresco/aca-content 4.0.0 → 4.1.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/{lib/components/create-menu/create-menu.component.d.ts → about/about.component.d.ts} +15 -16
- package/about/aca-about.module.d.ts +9 -0
- package/about/assets/about.plugin.json +47 -0
- package/about/dev-mode.tokens.d.ts +25 -0
- package/about/index.d.ts +5 -0
- package/about/package-json.token.d.ts +25 -0
- package/about/public-api.d.ts +27 -0
- package/assets/app.extensions.json +158 -131
- package/assets/i18n/ar.json +10 -26
- package/assets/i18n/cs.json +10 -26
- package/assets/i18n/da.json +9 -25
- package/assets/i18n/de.json +8 -24
- package/assets/i18n/en.json +9 -25
- package/assets/i18n/es.json +8 -24
- package/assets/i18n/fi.json +9 -25
- package/assets/i18n/fr.json +9 -25
- package/assets/i18n/it.json +9 -25
- package/assets/i18n/ja.json +9 -25
- package/assets/i18n/nb.json +9 -25
- package/assets/i18n/nl.json +8 -24
- package/assets/i18n/pl.json +10 -26
- package/assets/i18n/pt-BR.json +9 -25
- package/assets/i18n/ru.json +10 -26
- package/assets/i18n/sv.json +9 -25
- package/assets/i18n/zh-CN.json +8 -24
- package/esm2020/about/about.component.mjs +73 -0
- package/esm2020/about/aca-about.module.mjs +46 -0
- package/esm2020/about/alfresco-aca-content-about.mjs +5 -0
- package/esm2020/about/dev-mode.tokens.mjs +26 -0
- package/esm2020/about/package-json.token.mjs +26 -0
- package/esm2020/about/public-api.mjs +28 -0
- package/esm2020/folder-rules/alfresco-aca-content-folder-rules.mjs +5 -0
- package/esm2020/folder-rules/folder-rules.module.mjs +123 -0
- package/esm2020/folder-rules/folder-rules.rules.mjs +28 -0
- package/esm2020/folder-rules/manage-rules/manage-rules.smart-component.mjs +240 -0
- package/esm2020/folder-rules/model/action-parameter-constraint.model.mjs +25 -0
- package/esm2020/folder-rules/model/rule-action.model.mjs +26 -0
- package/esm2020/folder-rules/model/rule-composite-condition.model.mjs +25 -0
- package/esm2020/folder-rules/model/rule-grouping-item.model.mjs +25 -0
- package/esm2020/folder-rules/model/rule-set.model.mjs +25 -0
- package/esm2020/folder-rules/model/rule-simple-condition.model.mjs +25 -0
- package/esm2020/folder-rules/model/rule.model.mjs +25 -0
- package/esm2020/folder-rules/public-api.mjs +26 -0
- package/esm2020/folder-rules/rule-details/actions/rule-action-list.ui-component.mjs +112 -0
- package/esm2020/folder-rules/rule-details/actions/rule-action.ui-component.mjs +277 -0
- package/esm2020/folder-rules/rule-details/conditions/rule-composite-condition.ui-component.mjs +159 -0
- package/esm2020/folder-rules/rule-details/conditions/rule-condition-comparators.mjs +87 -0
- package/esm2020/folder-rules/rule-details/conditions/rule-condition-fields.mjs +62 -0
- package/esm2020/folder-rules/rule-details/conditions/rule-mime-types.mjs +25 -0
- package/esm2020/folder-rules/rule-details/conditions/rule-simple-condition.ui-component.mjs +144 -0
- package/esm2020/folder-rules/rule-details/edit-rule-dialog.ui-component.mjs +70 -0
- package/esm2020/folder-rules/rule-details/options/rule-options.ui-component.mjs +134 -0
- package/esm2020/folder-rules/rule-details/rule-details.ui-component.mjs +166 -0
- package/esm2020/folder-rules/rule-details/triggers/rule-triggers.ui-component.mjs +85 -0
- package/esm2020/folder-rules/rule-details/validators/rule-actions.validator.mjs +37 -0
- package/esm2020/folder-rules/rule-details/validators/rule-composite-condition.validator.mjs +31 -0
- package/esm2020/folder-rules/rule-list/rule-list/rule-list.ui-component.mjs +142 -0
- package/esm2020/folder-rules/rule-list/rule-list-grouping/rule-list-grouping.ui-component.mjs +77 -0
- package/esm2020/folder-rules/rule-list/rule-list-item/rule-list-item.ui-component.mjs +56 -0
- package/esm2020/folder-rules/rule-set-picker/rule-set-picker.smart-component.mjs +104 -0
- package/esm2020/folder-rules/services/actions.service.mjs +114 -0
- package/esm2020/folder-rules/services/folder-rule-sets.service.mjs +221 -0
- package/esm2020/folder-rules/services/folder-rules.service.mjs +193 -0
- package/esm2020/lib/aca-content.module.mjs +55 -90
- package/esm2020/lib/aca-content.routes.mjs +2 -2
- package/esm2020/lib/components/common/common.module.mjs +8 -39
- package/esm2020/lib/components/common/language-picker/language-picker.component.mjs +18 -11
- package/esm2020/lib/components/common/location-link/location-link.component.mjs +17 -16
- package/esm2020/lib/components/common/logout/logout.component.mjs +16 -9
- package/esm2020/lib/components/common/toggle-shared/toggle-shared.component.mjs +29 -18
- package/esm2020/lib/components/common/user-info/user-info.component.mjs +24 -13
- package/esm2020/lib/components/context-menu/context-menu-item.component.mjs +16 -10
- package/esm2020/lib/components/context-menu/context-menu-outside-event.directive.mjs +5 -4
- package/esm2020/lib/components/context-menu/context-menu.component.mjs +29 -15
- package/esm2020/lib/components/context-menu/context-menu.service.mjs +5 -6
- package/esm2020/lib/components/details/details.component.mjs +41 -23
- package/esm2020/lib/components/dl-custom-components/document-list-custom-components.module.mjs +7 -15
- package/esm2020/lib/components/dl-custom-components/name-column/name-column.component.mjs +16 -16
- package/esm2020/lib/components/dl-custom-components/tags-column/tags-column.component.mjs +34 -12
- package/esm2020/lib/components/dl-custom-components/thumbnail-column/thumbnail-column.component.mjs +32 -15
- package/esm2020/lib/components/favorite-libraries/favorite-libraries.component.mjs +17 -28
- package/esm2020/lib/components/favorites/favorites.component.mjs +18 -34
- package/esm2020/lib/components/files/files.component.mjs +28 -43
- package/esm2020/lib/components/home/home.component.mjs +7 -6
- package/esm2020/lib/components/info-drawer/comments-tab/comments-tab.component.mjs +15 -10
- package/esm2020/lib/components/info-drawer/info.drawer.module.mjs +28 -47
- package/esm2020/lib/components/info-drawer/library-metadata-tab/library-metadata-form.component.mjs +39 -17
- package/esm2020/lib/components/info-drawer/library-metadata-tab/library-metadata-tab.component.mjs +10 -7
- package/esm2020/lib/components/info-drawer/metadata-tab/metadata-tab.component.mjs +13 -12
- package/esm2020/lib/components/info-drawer/versions-tab/versions-tab.component.mjs +18 -10
- package/esm2020/lib/components/libraries/libraries.component.mjs +17 -27
- package/esm2020/lib/components/recent-files/recent-files.component.mjs +18 -37
- package/esm2020/lib/components/search/search-action-menu/search-action-menu.component.mjs +3 -3
- package/esm2020/lib/components/search/search-input/search-input.component.mjs +11 -6
- package/esm2020/lib/components/search/search-input-control/search-input-control.component.mjs +5 -5
- package/esm2020/lib/components/search/search-input.module.mjs +4 -4
- package/esm2020/lib/components/search/search-libraries-results/search-libraries-query-builder.service.mjs +5 -6
- package/esm2020/lib/components/search/search-libraries-results/search-libraries-results.component.mjs +21 -30
- package/esm2020/lib/components/search/search-navigation.service.mjs +3 -3
- package/esm2020/lib/components/search/search-results/search-results.component.mjs +33 -41
- package/esm2020/lib/components/search/search-results-row/search-results-row.component.mjs +6 -7
- package/esm2020/lib/components/search/search-results.module.mjs +31 -23
- package/esm2020/lib/components/shared-files/shared-files.component.mjs +18 -34
- package/esm2020/lib/components/shared-link-view/shared-link-view.component.mjs +9 -7
- package/esm2020/lib/components/shared-link-view/shared-link-view.module.mjs +5 -9
- package/esm2020/lib/components/sidenav/components/button-menu.component.mjs +5 -5
- package/esm2020/lib/components/sidenav/components/expand-menu.component.mjs +5 -5
- package/esm2020/lib/components/sidenav/components/sidenav-header.component.mjs +5 -5
- package/esm2020/lib/components/sidenav/directives/action.directive.mjs +3 -3
- package/esm2020/lib/components/sidenav/directives/active-link.directive.mjs +3 -3
- package/esm2020/lib/components/sidenav/directives/expansion-panel.directive.mjs +3 -3
- package/esm2020/lib/components/sidenav/directives/menu-panel.directive.mjs +3 -3
- package/esm2020/lib/components/sidenav/sidenav.component.mjs +3 -3
- package/esm2020/lib/components/sidenav/sidenav.module.mjs +11 -9
- package/esm2020/lib/components/sidenav/user-menu/user-menu.component.mjs +96 -0
- package/esm2020/lib/components/toolbar/toggle-edit-offline/toggle-edit-offline.component.mjs +10 -17
- package/esm2020/lib/components/toolbar/toggle-favorite/toggle-favorite.component.mjs +3 -3
- package/esm2020/lib/components/toolbar/toggle-favorite-library/toggle-favorite-library.component.mjs +3 -3
- package/esm2020/lib/components/toolbar/toggle-info-drawer/toggle-info-drawer.component.mjs +3 -3
- package/esm2020/lib/components/toolbar/toggle-join-library/toggle-join-library-button.component.mjs +3 -3
- package/esm2020/lib/components/toolbar/toggle-join-library/toggle-join-library-menu.component.mjs +3 -3
- package/esm2020/lib/components/toolbar/toolbar.module.mjs +7 -13
- package/esm2020/lib/components/toolbar/view-node/view-node.component.mjs +3 -3
- package/esm2020/lib/components/trashcan/trashcan.component.mjs +37 -29
- package/esm2020/lib/components/upload-files-dialog/upload-files-dialog.component.mjs +3 -3
- package/esm2020/lib/components/view-profile/view-profile.component.mjs +35 -16
- package/esm2020/lib/components/view-profile/view-profile.guard.mjs +5 -5
- package/esm2020/lib/dialogs/node-template/create-from-template.dialog.mjs +16 -15
- package/esm2020/lib/directives/directives.module.mjs +4 -4
- package/esm2020/lib/directives/document-list.directive.mjs +3 -3
- package/esm2020/lib/extensions/core.extensions.module.mjs +4 -4
- package/esm2020/lib/material.module.mjs +4 -4
- package/esm2020/lib/services/content-management.service.mjs +3 -3
- package/esm2020/lib/services/content-service-extension.service.mjs +3 -3
- package/esm2020/lib/services/content-url.service.mjs +3 -3
- package/esm2020/lib/services/node-actions.service.mjs +5 -5
- package/esm2020/lib/services/node-template.service.mjs +3 -3
- package/esm2020/lib/store/app-store.module.mjs +4 -4
- package/esm2020/lib/store/effects/app.effects.mjs +3 -3
- package/esm2020/lib/store/effects/contextmenu.effects.mjs +3 -3
- package/esm2020/lib/store/effects/download.effects.mjs +3 -3
- package/esm2020/lib/store/effects/favorite.effects.mjs +3 -3
- package/esm2020/lib/store/effects/library.effects.mjs +3 -3
- package/esm2020/lib/store/effects/node.effects.mjs +3 -3
- package/esm2020/lib/store/effects/search.effects.mjs +3 -3
- package/esm2020/lib/store/effects/template.effects.mjs +3 -3
- package/esm2020/lib/store/effects/upload.effects.mjs +5 -5
- package/esm2020/lib/store/effects/viewer.effects.mjs +5 -5
- package/esm2020/ms-office/actions/aos.actions.mjs +31 -0
- package/esm2020/ms-office/alfresco-aca-content-ms-office.mjs +5 -0
- package/esm2020/ms-office/aos-extension.module.mjs +54 -0
- package/esm2020/ms-office/aos-extension.service.mjs +134 -0
- package/esm2020/ms-office/effects/aos.effects.mjs +48 -0
- package/esm2020/ms-office/public-api.mjs +28 -0
- package/fesm2015/alfresco-aca-content-about.mjs +194 -0
- package/fesm2015/alfresco-aca-content-about.mjs.map +1 -0
- package/fesm2015/alfresco-aca-content-folder-rules.mjs +2479 -0
- package/fesm2015/alfresco-aca-content-folder-rules.mjs.map +1 -0
- package/fesm2015/alfresco-aca-content-ms-office.mjs +260 -0
- package/fesm2015/alfresco-aca-content-ms-office.mjs.map +1 -0
- package/fesm2015/alfresco-aca-content.mjs +3457 -3847
- package/fesm2015/alfresco-aca-content.mjs.map +1 -1
- package/fesm2020/alfresco-aca-content-about.mjs +194 -0
- package/fesm2020/alfresco-aca-content-about.mjs.map +1 -0
- package/fesm2020/alfresco-aca-content-folder-rules.mjs +2538 -0
- package/fesm2020/alfresco-aca-content-folder-rules.mjs.map +1 -0
- package/fesm2020/alfresco-aca-content-ms-office.mjs +282 -0
- package/fesm2020/alfresco-aca-content-ms-office.mjs.map +1 -0
- package/fesm2020/alfresco-aca-content.mjs +4622 -4995
- package/fesm2020/alfresco-aca-content.mjs.map +1 -1
- package/folder-rules/assets/folder-rules.plugin.json +71 -0
- package/folder-rules/assets/i18n/ar.json +144 -0
- package/folder-rules/assets/i18n/cs.json +144 -0
- package/folder-rules/assets/i18n/da.json +144 -0
- package/folder-rules/assets/i18n/de.json +144 -0
- package/folder-rules/assets/i18n/en.json +144 -0
- package/folder-rules/assets/i18n/es.json +144 -0
- package/folder-rules/assets/i18n/fi.json +144 -0
- package/folder-rules/assets/i18n/fr.json +144 -0
- package/folder-rules/assets/i18n/it.json +144 -0
- package/folder-rules/assets/i18n/ja.json +144 -0
- package/folder-rules/assets/i18n/nb.json +144 -0
- package/folder-rules/assets/i18n/nl.json +144 -0
- package/folder-rules/assets/i18n/pl.json +144 -0
- package/folder-rules/assets/i18n/pt-BR.json +144 -0
- package/folder-rules/assets/i18n/ru.json +144 -0
- package/folder-rules/assets/i18n/sv.json +144 -0
- package/folder-rules/assets/i18n/zh-CN.json +144 -0
- package/folder-rules/folder-rules.module.d.ts +51 -0
- package/folder-rules/folder-rules.rules.d.ts +27 -0
- package/folder-rules/index.d.ts +5 -0
- package/folder-rules/manage-rules/manage-rules.smart-component.d.ts +87 -0
- package/folder-rules/model/action-parameter-constraint.model.d.ts +31 -0
- package/folder-rules/model/rule-action.model.d.ts +48 -0
- package/folder-rules/model/rule-composite-condition.model.d.ts +30 -0
- package/folder-rules/model/rule-grouping-item.model.d.ts +34 -0
- package/folder-rules/model/rule-set.model.d.ts +34 -0
- package/folder-rules/model/rule-simple-condition.model.d.ts +28 -0
- package/folder-rules/model/rule.model.d.ts +58 -0
- package/folder-rules/public-api.d.ts +25 -0
- package/folder-rules/rule-details/actions/rule-action-list.ui-component.d.ts +47 -0
- package/folder-rules/rule-details/actions/rule-action.ui-component.d.ts +75 -0
- package/folder-rules/rule-details/conditions/rule-composite-condition.ui-component.d.ts +60 -0
- package/folder-rules/rule-details/conditions/rule-condition-comparators.d.ts +30 -0
- package/folder-rules/rule-details/conditions/rule-condition-fields.d.ts +31 -0
- package/folder-rules/rule-details/conditions/rule-mime-types.d.ts +27 -0
- package/folder-rules/rule-details/conditions/rule-simple-condition.ui-component.d.ts +62 -0
- package/folder-rules/rule-details/edit-rule-dialog.ui-component.d.ts +53 -0
- package/folder-rules/rule-details/options/rule-options.ui-component.d.ts +55 -0
- package/folder-rules/rule-details/rule-details.ui-component.d.ts +54 -0
- package/folder-rules/rule-details/triggers/rule-triggers.ui-component.d.ts +43 -0
- package/folder-rules/rule-details/validators/rule-actions.validator.d.ts +27 -0
- package/folder-rules/rule-details/validators/rule-composite-condition.validator.d.ts +25 -0
- package/folder-rules/rule-list/rule-list/rule-list.ui-component.d.ts +57 -0
- package/folder-rules/rule-list/rule-list-grouping/rule-list-grouping.ui-component.d.ts +44 -0
- package/{lib/components/node-version/node-version-form.component.d.ts → folder-rules/rule-list/rule-list-item/rule-list-item.ui-component.d.ts} +10 -21
- package/folder-rules/rule-set-picker/rule-set-picker.smart-component.d.ts +61 -0
- package/folder-rules/services/actions.service.d.ts +28 -0
- package/folder-rules/services/folder-rule-sets.service.d.ts +49 -0
- package/folder-rules/services/folder-rules.service.d.ts +41 -0
- package/lib/aca-content.module.d.ts +37 -37
- package/lib/components/common/common.module.d.ts +29 -17
- package/lib/components/common/language-picker/language-picker.component.d.ts +1 -1
- package/lib/components/common/location-link/location-link.component.d.ts +1 -6
- package/lib/components/common/logout/logout.component.d.ts +2 -3
- package/lib/components/common/toggle-shared/toggle-shared.component.d.ts +9 -6
- package/lib/components/common/user-info/user-info.component.d.ts +15 -3
- 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 +1 -1
- package/lib/components/details/details.component.d.ts +3 -6
- package/lib/components/dl-custom-components/document-list-custom-components.module.d.ts +4 -8
- package/lib/components/dl-custom-components/name-column/name-column.component.d.ts +3 -3
- package/lib/components/dl-custom-components/tags-column/tags-column.component.d.ts +5 -28
- package/lib/components/dl-custom-components/thumbnail-column/thumbnail-column.component.d.ts +32 -12
- package/lib/components/favorite-libraries/favorite-libraries.component.d.ts +3 -8
- package/lib/components/favorites/favorites.component.d.ts +2 -12
- package/lib/components/files/files.component.d.ts +6 -15
- package/lib/components/info-drawer/comments-tab/comments-tab.component.d.ts +28 -3
- package/lib/components/info-drawer/info.drawer.module.d.ts +5 -12
- package/lib/components/info-drawer/library-metadata-tab/library-metadata-form.component.d.ts +5 -4
- 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 +2 -2
- package/lib/components/info-drawer/versions-tab/versions-tab.component.d.ts +1 -1
- package/lib/components/libraries/libraries.component.d.ts +2 -31
- package/lib/components/recent-files/recent-files.component.d.ts +2 -13
- package/lib/components/search/search-input/search-input.component.d.ts +2 -1
- package/lib/components/search/search-libraries-results/search-libraries-results.component.d.ts +2 -31
- package/lib/components/search/search-results/search-results.component.d.ts +7 -13
- package/lib/components/search/search-results-row/search-results-row.component.d.ts +1 -1
- package/lib/components/search/search-results.module.d.ts +7 -5
- package/lib/components/shared-files/shared-files.component.d.ts +2 -11
- package/lib/components/shared-link-view/shared-link-view.component.d.ts +3 -2
- package/lib/components/shared-link-view/shared-link-view.module.d.ts +5 -6
- package/lib/components/sidenav/sidenav.module.d.ts +5 -5
- package/lib/components/sidenav/user-menu/user-menu.component.d.ts +58 -0
- package/lib/components/toolbar/toggle-edit-offline/toggle-edit-offline.component.d.ts +2 -1
- package/lib/components/toolbar/toolbar.module.d.ts +13 -15
- package/lib/components/trashcan/trashcan.component.d.ts +4 -35
- package/lib/components/view-profile/view-profile.component.d.ts +11 -4
- package/lib/components/view-profile/view-profile.guard.d.ts +2 -2
- package/lib/dialogs/node-template/create-from-template.dialog.d.ts +2 -2
- package/lib/store/effects/upload.effects.d.ts +3 -3
- package/ms-office/actions/aos.actions.d.ts +31 -0
- package/ms-office/aos-extension.module.d.ts +34 -0
- package/ms-office/aos-extension.service.d.ts +48 -0
- package/ms-office/assets/aos.plugin.json +74 -0
- package/ms-office/assets/i18n/ar.json +10 -0
- package/ms-office/assets/i18n/cs.json +10 -0
- package/ms-office/assets/i18n/da.json +10 -0
- package/ms-office/assets/i18n/de.json +10 -0
- package/ms-office/assets/i18n/en.json +10 -0
- package/ms-office/assets/i18n/es.json +10 -0
- package/ms-office/assets/i18n/fi.json +10 -0
- package/ms-office/assets/i18n/fr.json +10 -0
- package/ms-office/assets/i18n/it.json +10 -0
- package/ms-office/assets/i18n/ja.json +10 -0
- package/ms-office/assets/i18n/nb.json +10 -0
- package/ms-office/assets/i18n/nl.json +10 -0
- package/ms-office/assets/i18n/pl.json +10 -0
- package/ms-office/assets/i18n/pt-BR.json +10 -0
- package/ms-office/assets/i18n/ru.json +10 -0
- package/ms-office/assets/i18n/sv.json +10 -0
- package/ms-office/assets/i18n/zh-CN.json +10 -0
- package/ms-office/effects/aos.effects.d.ts +11 -0
- package/ms-office/index.d.ts +5 -0
- package/ms-office/public-api.d.ts +27 -0
- package/package.json +37 -2
- package/ui/application.scss +8 -0
- package/ui/overrides/adf-about.theme.scss +0 -5
- package/ui/overrides/adf-pagination.theme.scss +0 -1
- package/ui/overrides/ay11.scss +1 -1
- package/ui/variables/variables.scss +6 -13
- package/esm2020/lib/components/context-menu/context-menu.module.mjs +0 -76
- package/esm2020/lib/components/create-menu/create-menu.component.mjs +0 -73
- package/esm2020/lib/components/create-menu/create-menu.module.mjs +0 -44
- package/esm2020/lib/components/node-version/node-version-form.component.mjs +0 -70
- package/esm2020/lib/components/node-version/node-version.module.mjs +0 -78
- package/esm2020/lib/components/toolbar/document-display-mode/document-display-mode.component.mjs +0 -84
- package/esm2020/lib/components/trashcan/trashcan.module.mjs +0 -74
- package/esm2020/lib/components/view-profile/view-profile.module.mjs +0 -42
- package/lib/components/context-menu/context-menu.module.d.ts +0 -18
- package/lib/components/create-menu/create-menu.module.d.ts +0 -10
- package/lib/components/node-version/node-version.module.d.ts +0 -16
- package/lib/components/toolbar/document-display-mode/document-display-mode.component.d.ts +0 -13
- package/lib/components/trashcan/trashcan.module.d.ts +0 -16
- package/lib/components/view-profile/view-profile.module.d.ts +0 -9
package/lib/components/dl-custom-components/thumbnail-column/thumbnail-column.component.d.ts
CHANGED
|
@@ -1,17 +1,37 @@
|
|
|
1
|
-
|
|
1
|
+
/*!
|
|
2
|
+
* Copyright © 2005-2023 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 { OnChanges, SimpleChanges } from '@angular/core';
|
|
2
25
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class ThumbnailColumnComponent {
|
|
26
|
+
export declare class ThumbnailColumnComponent implements OnChanges {
|
|
4
27
|
private translation;
|
|
5
28
|
context: any;
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
getToolTip({ row }: {
|
|
13
|
-
row: any;
|
|
14
|
-
}): string;
|
|
29
|
+
thumbnailUrl?: string;
|
|
30
|
+
tooltip?: string;
|
|
31
|
+
get isSelected(): boolean;
|
|
32
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
33
|
+
private getThumbnail;
|
|
34
|
+
private getToolTip;
|
|
15
35
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThumbnailColumnComponent, never>;
|
|
16
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ThumbnailColumnComponent, "aca-custom-thumbnail-column", never, { "context": "context"; }, {}, never, never,
|
|
36
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ThumbnailColumnComponent, "aca-custom-thumbnail-column", never, { "context": "context"; }, {}, never, never, true>;
|
|
17
37
|
}
|
|
@@ -21,27 +21,22 @@
|
|
|
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 {
|
|
25
|
-
import { OnInit, ChangeDetectorRef } from '@angular/core';
|
|
26
|
-
import { Store } from '@ngrx/store';
|
|
24
|
+
import { ChangeDetectorRef, OnInit } from '@angular/core';
|
|
27
25
|
import { SiteEntry, FavoritePaging, Pagination } from '@alfresco/js-api';
|
|
28
|
-
import {
|
|
29
|
-
import { AppExtensionService, AppHookService, ContentApiService, PageComponent } from '@alfresco/aca-shared';
|
|
26
|
+
import { AppHookService, ContentApiService, PageComponent } from '@alfresco/aca-shared';
|
|
30
27
|
import { UserPreferencesService } from '@alfresco/adf-core';
|
|
31
28
|
import { DocumentListPresetRef } from '@alfresco/adf-extensions';
|
|
32
29
|
import * as i0 from "@angular/core";
|
|
33
30
|
export declare class FavoriteLibrariesComponent extends PageComponent implements OnInit {
|
|
34
31
|
private appHookService;
|
|
35
32
|
private contentApiService;
|
|
36
|
-
private breakpointObserver;
|
|
37
33
|
private preferences;
|
|
38
34
|
private changeDetectorRef;
|
|
39
35
|
pagination: Pagination;
|
|
40
36
|
isLoading: boolean;
|
|
41
37
|
list: FavoritePaging;
|
|
42
|
-
isSmallScreen: boolean;
|
|
43
38
|
columns: DocumentListPresetRef[];
|
|
44
|
-
constructor(
|
|
39
|
+
constructor(appHookService: AppHookService, contentApiService: ContentApiService, preferences: UserPreferencesService, changeDetectorRef: ChangeDetectorRef);
|
|
45
40
|
ngOnInit(): void;
|
|
46
41
|
navigateTo(node: SiteEntry): void;
|
|
47
42
|
handleNodeClick(event: Event): void;
|
|
@@ -21,25 +21,15 @@
|
|
|
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 {
|
|
25
|
-
import { AppStore } from '@alfresco/aca-shared/store';
|
|
26
|
-
import { UploadService } from '@alfresco/adf-content-services';
|
|
24
|
+
import { ContentApiService, PageComponent } from '@alfresco/aca-shared';
|
|
27
25
|
import { MinimalNodeEntity, MinimalNodeEntryEntity } from '@alfresco/js-api';
|
|
28
|
-
import { BreakpointObserver } from '@angular/cdk/layout';
|
|
29
26
|
import { OnInit } from '@angular/core';
|
|
30
|
-
import { Router } from '@angular/router';
|
|
31
|
-
import { Store } from '@ngrx/store';
|
|
32
|
-
import { ContentManagementService } from '../../services/content-management.service';
|
|
33
27
|
import { DocumentListPresetRef } from '@alfresco/adf-extensions';
|
|
34
28
|
import * as i0 from "@angular/core";
|
|
35
29
|
export declare class FavoritesComponent extends PageComponent implements OnInit {
|
|
36
|
-
private router;
|
|
37
30
|
private contentApi;
|
|
38
|
-
private uploadService;
|
|
39
|
-
private breakpointObserver;
|
|
40
|
-
isSmallScreen: boolean;
|
|
41
31
|
columns: DocumentListPresetRef[];
|
|
42
|
-
constructor(
|
|
32
|
+
constructor(contentApi: ContentApiService);
|
|
43
33
|
ngOnInit(): void;
|
|
44
34
|
navigate(favorite: MinimalNodeEntryEntity): void;
|
|
45
35
|
onNodeDoubleClick(node: MinimalNodeEntity): void;
|
|
@@ -1,32 +1,24 @@
|
|
|
1
1
|
import { OnDestroy, OnInit } from '@angular/core';
|
|
2
|
-
import { ActivatedRoute
|
|
3
|
-
import { Store } from '@ngrx/store';
|
|
2
|
+
import { ActivatedRoute } from '@angular/router';
|
|
4
3
|
import { MinimalNodeEntity, MinimalNodeEntryEntity, PathElementEntity } from '@alfresco/js-api';
|
|
5
|
-
import { ContentManagementService } from '../../services/content-management.service';
|
|
6
4
|
import { NodeActionsService } from '../../services/node-actions.service';
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import { BreakpointObserver } from '@angular/cdk/layout';
|
|
10
|
-
import { FilterSearch, UploadService, FileUploadEvent } from '@alfresco/adf-content-services';
|
|
5
|
+
import { ContentApiService, PageComponent } from '@alfresco/aca-shared';
|
|
6
|
+
import { FilterSearch, FileUploadEvent } from '@alfresco/adf-content-services';
|
|
11
7
|
import { DocumentListPresetRef } from '@alfresco/adf-extensions';
|
|
12
|
-
import { Observable } from 'rxjs';
|
|
13
8
|
import * as i0 from "@angular/core";
|
|
14
9
|
export declare class FilesComponent extends PageComponent implements OnInit, OnDestroy {
|
|
15
|
-
private router;
|
|
16
10
|
private route;
|
|
17
11
|
private contentApi;
|
|
18
12
|
private nodeActionsService;
|
|
19
|
-
private uploadService;
|
|
20
|
-
private breakpointObserver;
|
|
21
13
|
isValidPath: boolean;
|
|
22
|
-
isSmallScreen: boolean;
|
|
23
14
|
isAdmin: boolean;
|
|
24
15
|
selectedNode: MinimalNodeEntity;
|
|
25
16
|
queryParams: any;
|
|
26
|
-
showLoader$: Observable<boolean>;
|
|
17
|
+
showLoader$: import("rxjs").Observable<boolean>;
|
|
27
18
|
private nodePath;
|
|
28
19
|
columns: DocumentListPresetRef[];
|
|
29
|
-
|
|
20
|
+
isFilterHeaderActive: boolean;
|
|
21
|
+
constructor(route: ActivatedRoute, contentApi: ContentApiService, nodeActionsService: NodeActionsService);
|
|
30
22
|
ngOnInit(): void;
|
|
31
23
|
ngOnDestroy(): void;
|
|
32
24
|
navigate(nodeId?: string): void;
|
|
@@ -48,7 +40,6 @@ export declare class FilesComponent extends PageComponent implements OnInit, OnD
|
|
|
48
40
|
isRootNode(nodeId: string): boolean;
|
|
49
41
|
onFilterSelected(activeFilters: FilterSearch[]): void;
|
|
50
42
|
navigateToFilter(activeFilters: FilterSearch[]): void;
|
|
51
|
-
isFilterHeaderActive(): boolean;
|
|
52
43
|
onError(): void;
|
|
53
44
|
static ɵfac: i0.ɵɵFactoryDeclaration<FilesComponent, never>;
|
|
54
45
|
static ɵcmp: i0.ɵɵComponentDeclaration<FilesComponent, "ng-component", never, {}, {}, never, never, false>;
|
|
@@ -1,11 +1,36 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* Copyright © 2005-2023 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 { OnInit } from '@angular/core';
|
|
1
25
|
import { MinimalNodeEntryEntity } from '@alfresco/js-api';
|
|
2
26
|
import { NodePermissionService } from '@alfresco/aca-shared';
|
|
3
27
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class CommentsTabComponent {
|
|
28
|
+
export declare class CommentsTabComponent implements OnInit {
|
|
5
29
|
private permission;
|
|
6
30
|
node: MinimalNodeEntryEntity;
|
|
31
|
+
canUpdateNode: boolean;
|
|
7
32
|
constructor(permission: NodePermissionService);
|
|
8
|
-
|
|
33
|
+
ngOnInit(): void;
|
|
9
34
|
static ɵfac: i0.ɵɵFactoryDeclaration<CommentsTabComponent, never>;
|
|
10
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CommentsTabComponent, "app-comments-tab", never, { "node": "node"; }, {}, never, never,
|
|
35
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CommentsTabComponent, "app-comments-tab", never, { "node": "node"; }, {}, never, never, true>;
|
|
11
36
|
}
|
|
@@ -1,19 +1,12 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "
|
|
2
|
+
import * as i1 from "@alfresco/aca-shared";
|
|
3
3
|
import * as i2 from "./comments-tab/comments-tab.component";
|
|
4
|
-
import * as i3 from "./
|
|
4
|
+
import * as i3 from "./library-metadata-tab/library-metadata-form.component";
|
|
5
5
|
import * as i4 from "./library-metadata-tab/library-metadata-tab.component";
|
|
6
|
-
import * as i5 from "./
|
|
7
|
-
import * as i6 from "
|
|
8
|
-
import * as i7 from "../../material.module";
|
|
9
|
-
import * as i8 from "@alfresco/adf-core";
|
|
10
|
-
import * as i9 from "@alfresco/adf-content-services";
|
|
11
|
-
import * as i10 from "@alfresco/adf-extensions";
|
|
12
|
-
import * as i11 from "../../directives/directives.module";
|
|
13
|
-
import * as i12 from "@angular/cdk/a11y";
|
|
14
|
-
import * as i13 from "@alfresco/aca-shared";
|
|
6
|
+
import * as i5 from "./metadata-tab/metadata-tab.component";
|
|
7
|
+
import * as i6 from "./versions-tab/versions-tab.component";
|
|
15
8
|
export declare class AppInfoDrawerModule {
|
|
16
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<AppInfoDrawerModule, never>;
|
|
17
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AppInfoDrawerModule, [typeof i1.
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AppInfoDrawerModule, never, [typeof i1.InfoDrawerComponent, typeof i2.CommentsTabComponent, typeof i3.LibraryMetadataFormComponent, typeof i4.LibraryMetadataTabComponent, typeof i5.MetadataTabComponent, typeof i6.VersionsTabComponent], [typeof i1.InfoDrawerComponent, typeof i2.CommentsTabComponent, typeof i3.LibraryMetadataFormComponent, typeof i4.LibraryMetadataTabComponent, typeof i5.MetadataTabComponent, typeof i6.VersionsTabComponent]>;
|
|
18
11
|
static ɵinj: i0.ɵɵInjectorDeclaration<AppInfoDrawerModule>;
|
|
19
12
|
}
|
package/lib/components/info-drawer/library-metadata-tab/library-metadata-form.component.d.ts
CHANGED
|
@@ -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 { OnChanges, OnDestroy, OnInit } from '@angular/core';
|
|
25
25
|
import { UntypedFormGroup, UntypedFormControl, FormGroupDirective, NgForm } from '@angular/forms';
|
|
26
26
|
import { QueriesApi, SiteEntry } from '@alfresco/js-api';
|
|
27
27
|
import { Store } from '@ngrx/store';
|
|
@@ -36,7 +36,7 @@ export declare class InstantErrorStateMatcher implements ErrorStateMatcher {
|
|
|
36
36
|
export declare class LibraryMetadataFormComponent implements OnInit, OnChanges, OnDestroy {
|
|
37
37
|
private alfrescoApiService;
|
|
38
38
|
protected store: Store<AppStore>;
|
|
39
|
-
_queriesApi
|
|
39
|
+
private _queriesApi;
|
|
40
40
|
get queriesApi(): QueriesApi;
|
|
41
41
|
node: SiteEntry;
|
|
42
42
|
edit: boolean;
|
|
@@ -47,9 +47,10 @@ export declare class LibraryMetadataFormComponent implements OnInit, OnChanges,
|
|
|
47
47
|
}[];
|
|
48
48
|
form: UntypedFormGroup;
|
|
49
49
|
matcher: InstantErrorStateMatcher;
|
|
50
|
+
canUpdateLibrary: boolean;
|
|
51
|
+
visibilityLabel: string;
|
|
50
52
|
onDestroy$: Subject<boolean>;
|
|
51
53
|
constructor(alfrescoApiService: AlfrescoApiService, store: Store<AppStore>);
|
|
52
|
-
get canUpdateLibrary(): boolean;
|
|
53
54
|
getVisibilityLabel(value: string): string;
|
|
54
55
|
toggleEdit(): void;
|
|
55
56
|
cancel(): void;
|
|
@@ -60,5 +61,5 @@ export declare class LibraryMetadataFormComponent implements OnInit, OnChanges,
|
|
|
60
61
|
private updateForm;
|
|
61
62
|
private findLibraryByTitle;
|
|
62
63
|
static ɵfac: i0.ɵɵFactoryDeclaration<LibraryMetadataFormComponent, never>;
|
|
63
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LibraryMetadataFormComponent, "app-library-metadata-form", never, { "node": "node"; }, {}, never, never,
|
|
64
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LibraryMetadataFormComponent, "app-library-metadata-form", never, { "node": "node"; }, {}, never, never, true>;
|
|
64
65
|
}
|
|
@@ -3,5 +3,5 @@ import * as i0 from "@angular/core";
|
|
|
3
3
|
export declare class LibraryMetadataTabComponent {
|
|
4
4
|
node: SiteEntry;
|
|
5
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<LibraryMetadataTabComponent, never>;
|
|
6
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LibraryMetadataTabComponent, "app-library-metadata-tab", never, { "node": "node"; }, {}, never, never,
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LibraryMetadataTabComponent, "app-library-metadata-tab", never, { "node": "node"; }, {}, never, never, true>;
|
|
7
7
|
}
|
|
@@ -40,10 +40,10 @@ export declare class MetadataTabComponent implements OnInit, OnDestroy {
|
|
|
40
40
|
protected onDestroy$: Subject<boolean>;
|
|
41
41
|
node: MinimalNodeEntryEntity;
|
|
42
42
|
displayAspect$: Observable<string>;
|
|
43
|
+
canUpdateNode: boolean;
|
|
43
44
|
constructor(permission: NodePermissionService, extensions: AppExtensionService, appConfig: AppConfigService, store: Store<AppStore>, notificationService: NotificationService, contentMetadataService: ContentMetadataService);
|
|
44
|
-
get canUpdateNode(): boolean;
|
|
45
45
|
ngOnInit(): void;
|
|
46
46
|
ngOnDestroy(): void;
|
|
47
47
|
static ɵfac: i0.ɵɵFactoryDeclaration<MetadataTabComponent, never>;
|
|
48
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MetadataTabComponent, "app-metadata-tab", never, { "node": "node"; }, {}, never, never,
|
|
48
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MetadataTabComponent, "app-metadata-tab", never, { "node": "node"; }, {}, never, never, true>;
|
|
49
49
|
}
|
|
@@ -31,5 +31,5 @@ export declare class VersionsTabComponent implements OnInit, OnChanges {
|
|
|
31
31
|
ngOnChanges(): void;
|
|
32
32
|
private updateState;
|
|
33
33
|
static ɵfac: i0.ɵɵFactoryDeclaration<VersionsTabComponent, never>;
|
|
34
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<VersionsTabComponent, "app-versions-tab", never, { "node": "node"; }, {}, never, never,
|
|
34
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VersionsTabComponent, "app-versions-tab", never, { "node": "node"; }, {}, never, never, true>;
|
|
35
35
|
}
|
|
@@ -1,41 +1,12 @@
|
|
|
1
|
-
/*!
|
|
2
|
-
* Copyright © 2005-2023 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
1
|
import { SiteEntry } from '@alfresco/js-api';
|
|
26
|
-
import { BreakpointObserver } from '@angular/cdk/layout';
|
|
27
2
|
import { OnInit } from '@angular/core';
|
|
28
|
-
import {
|
|
29
|
-
import { ContentManagementService } from '../../services/content-management.service';
|
|
30
|
-
import { AppExtensionService, AppHookService, PageComponent } from '@alfresco/aca-shared';
|
|
3
|
+
import { AppHookService, PageComponent } from '@alfresco/aca-shared';
|
|
31
4
|
import { DocumentListPresetRef } from '@alfresco/adf-extensions';
|
|
32
5
|
import * as i0 from "@angular/core";
|
|
33
6
|
export declare class LibrariesComponent extends PageComponent implements OnInit {
|
|
34
7
|
private appHookService;
|
|
35
|
-
private breakpointObserver;
|
|
36
|
-
isSmallScreen: boolean;
|
|
37
8
|
columns: DocumentListPresetRef[];
|
|
38
|
-
constructor(
|
|
9
|
+
constructor(appHookService: AppHookService);
|
|
39
10
|
ngOnInit(): void;
|
|
40
11
|
navigateTo(node: SiteEntry): void;
|
|
41
12
|
handleNodeClick(event: Event): void;
|
|
@@ -22,27 +22,16 @@
|
|
|
22
22
|
* from Hyland Software. If not, see <http://www.gnu.org/licenses/>.
|
|
23
23
|
*/
|
|
24
24
|
import { OnInit } from '@angular/core';
|
|
25
|
-
import { BreakpointObserver } from '@angular/cdk/layout';
|
|
26
25
|
import { MinimalNodeEntity } from '@alfresco/js-api';
|
|
27
|
-
import {
|
|
28
|
-
import { Store } from '@ngrx/store';
|
|
29
|
-
import { AppStore } from '@alfresco/aca-shared/store';
|
|
30
|
-
import { UploadService } from '@alfresco/adf-content-services';
|
|
31
|
-
import { Router } from '@angular/router';
|
|
32
|
-
import { AcaFileAutoDownloadService, AppExtensionService, PageComponent } from '@alfresco/aca-shared';
|
|
26
|
+
import { PageComponent } from '@alfresco/aca-shared';
|
|
33
27
|
import { DocumentListPresetRef } from '@alfresco/adf-extensions';
|
|
34
28
|
import * as i0 from "@angular/core";
|
|
35
29
|
export declare class RecentFilesComponent extends PageComponent implements OnInit {
|
|
36
|
-
private uploadService;
|
|
37
|
-
private breakpointObserver;
|
|
38
|
-
private router;
|
|
39
|
-
isSmallScreen: boolean;
|
|
40
30
|
columns: DocumentListPresetRef[];
|
|
41
|
-
constructor(
|
|
31
|
+
constructor();
|
|
42
32
|
ngOnInit(): void;
|
|
43
33
|
onNodeDoubleClick(node: MinimalNodeEntity): void;
|
|
44
34
|
handleNodeClick(event: Event): void;
|
|
45
|
-
private onFileUploadedEvent;
|
|
46
35
|
static ɵfac: i0.ɵɵFactoryDeclaration<RecentFilesComponent, never>;
|
|
47
36
|
static ɵcmp: i0.ɵɵComponentDeclaration<RecentFilesComponent, "ng-component", never, {}, {}, never, never, false>;
|
|
48
37
|
}
|
|
@@ -48,6 +48,7 @@ export declare class SearchInputComponent implements OnInit, OnDestroy {
|
|
|
48
48
|
hasNewChange: boolean;
|
|
49
49
|
navigationTimer: any;
|
|
50
50
|
has400LibraryError: boolean;
|
|
51
|
+
hasLibrariesConstraint: boolean;
|
|
51
52
|
searchOnChange: boolean;
|
|
52
53
|
searchedWord: string;
|
|
53
54
|
searchOptions: Array<SearchOptionModel>;
|
|
@@ -74,7 +75,7 @@ export declare class SearchInputComponent implements OnInit, OnDestroy {
|
|
|
74
75
|
isLibrariesChecked(): boolean;
|
|
75
76
|
isOptionChecked(optionId: string): boolean;
|
|
76
77
|
isContentChecked(): boolean;
|
|
77
|
-
|
|
78
|
+
evaluateLibrariesConstraint(): boolean;
|
|
78
79
|
filterContent(option: SearchOptionIds.Folders | SearchOptionIds.Files): void;
|
|
79
80
|
removeContentFilters(): void;
|
|
80
81
|
syncInputValues(): void;
|
package/lib/components/search/search-libraries-results/search-libraries-results.component.d.ts
CHANGED
|
@@ -1,51 +1,22 @@
|
|
|
1
|
-
/*!
|
|
2
|
-
* Copyright © 2005-2023 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
1
|
import { NodePaging, Pagination, SiteEntry } from '@alfresco/js-api';
|
|
26
|
-
import { BreakpointObserver } from '@angular/cdk/layout';
|
|
27
2
|
import { OnInit } from '@angular/core';
|
|
28
3
|
import { ActivatedRoute } from '@angular/router';
|
|
29
|
-
import { Store } from '@ngrx/store';
|
|
30
|
-
import { ContentManagementService } from '../../../services/content-management.service';
|
|
31
4
|
import { SearchLibrariesQueryBuilderService } from './search-libraries-query-builder.service';
|
|
32
|
-
import {
|
|
5
|
+
import { AppHookService, AppService, PageComponent } from '@alfresco/aca-shared';
|
|
33
6
|
import { DocumentListPresetRef } from '@alfresco/adf-extensions';
|
|
34
7
|
import * as i0 from "@angular/core";
|
|
35
8
|
export declare class SearchLibrariesResultsComponent extends PageComponent implements OnInit {
|
|
36
|
-
private breakpointObserver;
|
|
37
9
|
private librariesQueryBuilder;
|
|
38
10
|
private route;
|
|
39
11
|
private appHookService;
|
|
40
12
|
private appService;
|
|
41
|
-
isSmallScreen: boolean;
|
|
42
13
|
searchedWord: string;
|
|
43
14
|
queryParamName: string;
|
|
44
15
|
data: NodePaging;
|
|
45
16
|
totalResults: number;
|
|
46
17
|
isLoading: boolean;
|
|
47
18
|
columns: DocumentListPresetRef[];
|
|
48
|
-
constructor(
|
|
19
|
+
constructor(librariesQueryBuilder: SearchLibrariesQueryBuilderService, route: ActivatedRoute, appHookService: AppHookService, appService: AppService);
|
|
49
20
|
ngOnInit(): void;
|
|
50
21
|
private formatSearchQuery;
|
|
51
22
|
onSearchResultLoaded(nodePaging: NodePaging): void;
|
|
@@ -23,32 +23,25 @@
|
|
|
23
23
|
*/
|
|
24
24
|
import { OnInit } from '@angular/core';
|
|
25
25
|
import { MinimalNodeEntity, Pagination, ResultSetPaging } from '@alfresco/js-api';
|
|
26
|
-
import { ActivatedRoute
|
|
26
|
+
import { ActivatedRoute } from '@angular/router';
|
|
27
27
|
import { SearchQueryBuilderService } from '@alfresco/adf-content-services';
|
|
28
|
-
import { Store } from '@ngrx/store';
|
|
29
|
-
import { AppStore } from '@alfresco/aca-shared/store';
|
|
30
|
-
import { ContentManagementService } from '../../../services/content-management.service';
|
|
31
28
|
import { TranslationService } from '@alfresco/adf-core';
|
|
32
|
-
import {
|
|
33
|
-
import { AcaFileAutoDownloadService, AppExtensionService, PageComponent } from '@alfresco/aca-shared';
|
|
29
|
+
import { PageComponent } from '@alfresco/aca-shared';
|
|
34
30
|
import { SearchSortingDefinition } from '@alfresco/adf-content-services/lib/search/models/search-sorting-definition.interface';
|
|
35
|
-
import { BreakpointObserver } from '@angular/cdk/layout';
|
|
36
31
|
import * as i0 from "@angular/core";
|
|
37
32
|
export declare class SearchResultsComponent extends PageComponent implements OnInit {
|
|
38
33
|
private queryBuilder;
|
|
39
34
|
private route;
|
|
40
35
|
private translationService;
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
showFacetFilter$: Observable<boolean>;
|
|
44
|
-
infoDrawerPreview$: Observable<boolean>;
|
|
36
|
+
showFacetFilter$: import("rxjs").Observable<boolean>;
|
|
37
|
+
infoDrawerPreview$: import("rxjs").Observable<boolean>;
|
|
45
38
|
searchedWord: string;
|
|
46
39
|
queryParamName: string;
|
|
47
40
|
data: ResultSetPaging;
|
|
48
41
|
sorting: string[];
|
|
49
42
|
isLoading: boolean;
|
|
50
|
-
|
|
51
|
-
constructor(queryBuilder: SearchQueryBuilderService, route: ActivatedRoute,
|
|
43
|
+
totalResults: number;
|
|
44
|
+
constructor(queryBuilder: SearchQueryBuilderService, route: ActivatedRoute, translationService: TranslationService);
|
|
52
45
|
ngOnInit(): void;
|
|
53
46
|
onSearchError(error: {
|
|
54
47
|
message: any;
|
|
@@ -57,6 +50,7 @@ export declare class SearchResultsComponent extends PageComponent implements OnI
|
|
|
57
50
|
private formatFields;
|
|
58
51
|
formatSearchQuery(userInput: string, fields?: string[]): string;
|
|
59
52
|
onSearchResultLoaded(nodePaging: ResultSetPaging): void;
|
|
53
|
+
getNumberOfResults(): number;
|
|
60
54
|
onPaginationChanged(pagination: Pagination): void;
|
|
61
55
|
private getSorting;
|
|
62
56
|
onNodeDoubleClick(node: MinimalNodeEntity): void;
|
|
@@ -38,11 +38,11 @@ export declare class SearchResultsRowComponent implements OnInit, OnDestroy {
|
|
|
38
38
|
context: any;
|
|
39
39
|
name$: BehaviorSubject<string>;
|
|
40
40
|
title$: BehaviorSubject<string>;
|
|
41
|
+
isFile: boolean;
|
|
41
42
|
constructor(store: Store<any>, nodesApiService: NodesApiService, router: Router, fileAutoDownloadService: AcaFileAutoDownloadService);
|
|
42
43
|
ngOnInit(): void;
|
|
43
44
|
private updateValues;
|
|
44
45
|
ngOnDestroy(): void;
|
|
45
|
-
get isFile(): boolean;
|
|
46
46
|
showPreview(event: Event): void;
|
|
47
47
|
navigate(event: Event): void;
|
|
48
48
|
static ɵfac: i0.ɵɵFactoryDeclaration<SearchResultsRowComponent, never>;
|
|
@@ -6,16 +6,18 @@ import * as i4 from "./search-action-menu/search-action-menu.component";
|
|
|
6
6
|
import * as i5 from "@angular/common";
|
|
7
7
|
import * as i6 from "@alfresco/adf-core";
|
|
8
8
|
import * as i7 from "@alfresco/adf-content-services";
|
|
9
|
-
import * as i8 from "
|
|
9
|
+
import * as i8 from "@alfresco/adf-extensions";
|
|
10
10
|
import * as i9 from "../info-drawer/info.drawer.module";
|
|
11
11
|
import * as i10 from "../toolbar/toolbar.module";
|
|
12
12
|
import * as i11 from "../../directives/directives.module";
|
|
13
13
|
import * as i12 from "@alfresco/aca-shared";
|
|
14
|
-
import * as i13 from "../context-menu/context-menu.
|
|
15
|
-
import * as i14 from "
|
|
16
|
-
import * as i15 from "
|
|
14
|
+
import * as i13 from "../context-menu/context-menu.component";
|
|
15
|
+
import * as i14 from "./search-input.module";
|
|
16
|
+
import * as i15 from "../common/location-link/location-link.component";
|
|
17
|
+
import * as i16 from "../dl-custom-components/thumbnail-column/thumbnail-column.component";
|
|
18
|
+
import * as i17 from "../dl-custom-components/tags-column/tags-column.component";
|
|
17
19
|
export declare class AppSearchResultsModule {
|
|
18
20
|
static ɵfac: i0.ɵɵFactoryDeclaration<AppSearchResultsModule, never>;
|
|
19
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AppSearchResultsModule, [typeof i1.SearchResultsComponent, typeof i2.SearchLibrariesResultsComponent, typeof i3.SearchResultsRowComponent, typeof i4.SearchActionMenuComponent], [typeof i5.CommonModule, typeof i6.CoreModule, typeof i7.ContentModule, typeof i8.
|
|
21
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AppSearchResultsModule, [typeof i1.SearchResultsComponent, typeof i2.SearchLibrariesResultsComponent, typeof i3.SearchResultsRowComponent, typeof i4.SearchActionMenuComponent], [typeof i5.CommonModule, typeof i6.CoreModule, typeof i7.ContentModule, typeof i8.ExtensionsModule, typeof i9.AppInfoDrawerModule, typeof i10.AppToolbarModule, typeof i11.DirectivesModule, typeof i12.PageLayoutModule, typeof i13.ContextMenuComponent, typeof i12.LockedByComponent, typeof i14.AppSearchInputModule, typeof i15.LocationLinkComponent, typeof i16.ThumbnailColumnComponent, typeof i17.TagsColumnComponent], [typeof i1.SearchResultsComponent, typeof i2.SearchLibrariesResultsComponent, typeof i3.SearchResultsRowComponent, typeof i4.SearchActionMenuComponent]>;
|
|
20
22
|
static ɵinj: i0.ɵɵInjectorDeclaration<AppSearchResultsModule>;
|
|
21
23
|
}
|
|
@@ -22,23 +22,14 @@
|
|
|
22
22
|
* from Hyland Software. If not, see <http://www.gnu.org/licenses/>.
|
|
23
23
|
*/
|
|
24
24
|
import { OnInit } from '@angular/core';
|
|
25
|
-
import { BreakpointObserver } from '@angular/cdk/layout';
|
|
26
|
-
import { ContentManagementService } from '../../services/content-management.service';
|
|
27
|
-
import { Store } from '@ngrx/store';
|
|
28
|
-
import { UploadService } from '@alfresco/adf-content-services';
|
|
29
|
-
import { Router } from '@angular/router';
|
|
30
25
|
import { MinimalNodeEntity } from '@alfresco/js-api';
|
|
31
|
-
import {
|
|
26
|
+
import { AppHookService, PageComponent } from '@alfresco/aca-shared';
|
|
32
27
|
import { DocumentListPresetRef } from '@alfresco/adf-extensions';
|
|
33
28
|
import * as i0 from "@angular/core";
|
|
34
29
|
export declare class SharedFilesComponent extends PageComponent implements OnInit {
|
|
35
30
|
private appHookService;
|
|
36
|
-
private uploadService;
|
|
37
|
-
private breakpointObserver;
|
|
38
|
-
private router;
|
|
39
|
-
isSmallScreen: boolean;
|
|
40
31
|
columns: DocumentListPresetRef[];
|
|
41
|
-
constructor(
|
|
32
|
+
constructor(appHookService: AppHookService);
|
|
42
33
|
ngOnInit(): void;
|
|
43
34
|
preview(node: MinimalNodeEntity): void;
|
|
44
35
|
handleNodeClick(event: Event): void;
|
|
@@ -27,18 +27,19 @@ import { ContentActionRef } from '@alfresco/adf-extensions';
|
|
|
27
27
|
import { OnDestroy, OnInit } from '@angular/core';
|
|
28
28
|
import { ActivatedRoute } from '@angular/router';
|
|
29
29
|
import { Store } from '@ngrx/store';
|
|
30
|
-
import { AppExtensionService } from '@alfresco/aca-shared';
|
|
30
|
+
import { AppExtensionService, AppService } from '@alfresco/aca-shared';
|
|
31
31
|
import * as i0 from "@angular/core";
|
|
32
32
|
export declare class SharedLinkViewComponent implements OnInit, OnDestroy {
|
|
33
33
|
private route;
|
|
34
34
|
private store;
|
|
35
35
|
private extensions;
|
|
36
36
|
private alfrescoApiService;
|
|
37
|
+
private appService;
|
|
37
38
|
private onDestroy$;
|
|
38
39
|
private sharedLinksApi;
|
|
39
40
|
sharedLinkId: string;
|
|
40
41
|
viewerToolbarActions: Array<ContentActionRef>;
|
|
41
|
-
constructor(route: ActivatedRoute, store: Store<AppStore>, extensions: AppExtensionService, alfrescoApiService: AlfrescoApiService);
|
|
42
|
+
constructor(route: ActivatedRoute, store: Store<AppStore>, extensions: AppExtensionService, alfrescoApiService: AlfrescoApiService, appService: AppService);
|
|
42
43
|
ngOnInit(): void;
|
|
43
44
|
ngOnDestroy(): void;
|
|
44
45
|
trackByActionId(_: number, action: ContentActionRef): string;
|
|
@@ -3,13 +3,12 @@ import * as i1 from "./shared-link-view.component";
|
|
|
3
3
|
import * as i2 from "@angular/common";
|
|
4
4
|
import * as i3 from "@alfresco/adf-core";
|
|
5
5
|
import * as i4 from "../../directives/directives.module";
|
|
6
|
-
import * as i5 from "../
|
|
7
|
-
import * as i6 from "
|
|
8
|
-
import * as i7 from "
|
|
9
|
-
import * as i8 from "
|
|
10
|
-
import * as i9 from "@alfresco/adf-content-services";
|
|
6
|
+
import * as i5 from "../toolbar/toolbar.module";
|
|
7
|
+
import * as i6 from "../../extensions/core.extensions.module";
|
|
8
|
+
import * as i7 from "../info-drawer/info.drawer.module";
|
|
9
|
+
import * as i8 from "@alfresco/adf-content-services";
|
|
11
10
|
export declare class AppSharedLinkViewModule {
|
|
12
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<AppSharedLinkViewModule, never>;
|
|
13
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AppSharedLinkViewModule, [typeof i1.SharedLinkViewComponent], [typeof i2.CommonModule, typeof i3.CoreModule, typeof i4.DirectivesModule, typeof i5.
|
|
12
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AppSharedLinkViewModule, [typeof i1.SharedLinkViewComponent], [typeof i2.CommonModule, typeof i3.CoreModule, typeof i4.DirectivesModule, typeof i5.AppToolbarModule, typeof i6.CoreExtensionsModule, typeof i7.AppInfoDrawerModule, typeof i8.ContentModule], [typeof i1.SharedLinkViewComponent]>;
|
|
14
13
|
static ɵinj: i0.ɵɵInjectorDeclaration<AppSharedLinkViewModule>;
|
|
15
14
|
}
|
|
@@ -7,13 +7,13 @@ import * as i5 from "./components/expand-menu.component";
|
|
|
7
7
|
import * as i6 from "./components/button-menu.component";
|
|
8
8
|
import * as i7 from "./sidenav.component";
|
|
9
9
|
import * as i8 from "./components/sidenav-header.component";
|
|
10
|
-
import * as i9 from "
|
|
11
|
-
import * as i10 from "@alfresco/adf-
|
|
12
|
-
import * as i11 from "@
|
|
13
|
-
import * as i12 from "
|
|
10
|
+
import * as i9 from "./user-menu/user-menu.component";
|
|
11
|
+
import * as i10 from "@alfresco/adf-core";
|
|
12
|
+
import * as i11 from "@alfresco/adf-extensions";
|
|
13
|
+
import * as i12 from "@angular/router";
|
|
14
14
|
import * as i13 from "@alfresco/aca-shared";
|
|
15
15
|
export declare class AppSidenavModule {
|
|
16
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<AppSidenavModule, never>;
|
|
17
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AppSidenavModule, [typeof i1.MenuPanelDirective, typeof i2.ExpansionPanelDirective, typeof i3.ActiveLinkDirective, typeof i4.ActionDirective, typeof i5.ExpandMenuComponent, typeof i6.ButtonMenuComponent, typeof i7.SidenavComponent, typeof i8.SidenavHeaderComponent
|
|
17
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AppSidenavModule, [typeof i1.MenuPanelDirective, typeof i2.ExpansionPanelDirective, typeof i3.ActiveLinkDirective, typeof i4.ActionDirective, typeof i5.ExpandMenuComponent, typeof i6.ButtonMenuComponent, typeof i7.SidenavComponent, typeof i8.SidenavHeaderComponent, typeof i9.UserMenuComponent], [typeof i10.CoreModule, typeof i11.ExtensionsModule, typeof i12.RouterModule, typeof i13.SharedToolbarModule], [typeof i1.MenuPanelDirective, typeof i2.ExpansionPanelDirective, typeof i3.ActiveLinkDirective, typeof i4.ActionDirective, typeof i5.ExpandMenuComponent, typeof i6.ButtonMenuComponent, typeof i7.SidenavComponent]>;
|
|
18
18
|
static ɵinj: i0.ɵɵInjectorDeclaration<AppSidenavModule>;
|
|
19
19
|
}
|