Skip to content

Commit

Permalink
GH Auto: Upstream dependencies ADF:6.10.0-9598220418 JS-API:7.9.0-959…
Browse files Browse the repository at this point in the history
…8220418 using Tag:6.10.0-9598220418 (#3896)

* [ci:force][auto-commit] Update dependencies ADF:6.10.0-9598220418  JS:7.9.0-9598220418

* fix unit tests

* update code

---------

Co-authored-by: DenysVuika <DenysVuika@users.noreply.github.com>
Co-authored-by: Denys Vuika <denys.vuika@gmail.com>
  • Loading branch information
3 people committed Jun 20, 2024
1 parent 4f41b96 commit 194476b
Show file tree
Hide file tree
Showing 6 changed files with 41 additions and 47 deletions.
60 changes: 30 additions & 30 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@
},
"private": true,
"dependencies": {
"@alfresco/adf-content-services": "6.10.0-9523211325",
"@alfresco/adf-core": "6.10.0-9523211325",
"@alfresco/adf-extensions": "6.10.0-9523211325",
"@alfresco/eslint-plugin-eslint-angular": "6.10.0-9523211325",
"@alfresco/js-api": "7.9.0-9523211325",
"@alfresco/adf-content-services": "6.10.0-9598220418",
"@alfresco/adf-core": "6.10.0-9598220418",
"@alfresco/adf-extensions": "6.10.0-9598220418",
"@alfresco/eslint-plugin-eslint-angular": "6.10.0-9598220418",
"@alfresco/js-api": "7.9.0-9598220418",
"@angular/animations": "14.1.3",
"@angular/cdk": "14.1.3",
"@angular/common": "14.1.3",
Expand Down Expand Up @@ -66,7 +66,7 @@
"zone.js": "0.11.8"
},
"devDependencies": {
"@alfresco/adf-cli": "6.10.0-9523211325",
"@alfresco/adf-cli": "6.10.0-9598220418",
"@angular-devkit/build-angular": "14.2.11",
"@angular-devkit/core": "14.1.2",
"@angular-devkit/schematics": "14.1.2",
Expand Down
4 changes: 2 additions & 2 deletions projects/aca-content/src/lib/aca-content.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@ import { SearchResultsRowComponent } from './components/search/search-results-ro
ReactiveFormsModule,
ContentModule.forRoot(),
RouterModule.forChild(CONTENT_ROUTES),
ExtensionsModule.forChild(),
CoreExtensionsModule.forChild(),
ExtensionsModule,
CoreExtensionsModule,
AppStoreModule,
...APP_COMMON_DIRECTIVES,
...APP_TOOLBAR_DIRECTIVES,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,4 @@ export class CoreExtensionsModule {
]
};
}

static forChild(): ModuleWithProviders<CoreExtensionsModule> {
return {
ngModule: CoreExtensionsModule
};
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ describe('InfoDrawerComponent', () => {
providers: [
{ provide: AppExtensionService, useValue: extensionServiceMock },
{ provide: Store, useValue: storeMock },
{ provide: RedirectAuthService, useValue: { onLogin: EMPTY } }
{ provide: RedirectAuthService, useValue: { onLogin: EMPTY, onTokenReceived: EMPTY } }
],
schemas: [NO_ERRORS_SCHEMA]
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

import { Component, HostListener, Input, OnChanges, OnDestroy, OnInit, ViewEncapsulation } from '@angular/core';
import { NodeEntry, Node, SiteEntry } from '@alfresco/js-api';
import { ContentActionRef, ExtensionsModule, SidebarTabRef } from '@alfresco/adf-extensions';
import { ContentActionRef, DynamicTabComponent, SidebarTabRef } from '@alfresco/adf-extensions';
import { Store } from '@ngrx/store';
import { SetInfoDrawerStateAction, ToggleInfoDrawerAction, infoDrawerPreview } from '@alfresco/aca-shared/store';
import { AppExtensionService } from '../../services/app.extension.service';
Expand All @@ -41,7 +41,7 @@ import { ContentService, NodesApiService } from '@alfresco/adf-content-services'

@Component({
standalone: true,
imports: [CommonModule, TranslateModule, MatProgressBarModule, InfoDrawerModule, ExtensionsModule, A11yModule, ToolbarComponent],
imports: [CommonModule, TranslateModule, MatProgressBarModule, InfoDrawerModule, A11yModule, ToolbarComponent, DynamicTabComponent],
selector: 'aca-info-drawer',
templateUrl: './info-drawer.component.html',
encapsulation: ViewEncapsulation.None
Expand Down

0 comments on commit 194476b

Please sign in to comment.