Skip to content

Commit

Permalink
feat: providePortalDialogService utility function
Browse files Browse the repository at this point in the history
  • Loading branch information
markuczy committed May 7, 2024
1 parent 7ee894b commit dfe1362
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions libs/portal-integration-angular/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ export * from './lib/core/utils/image-logo-url.utils'
export * from './lib/core/utils/add-initialize-module-guard.utils'
export * from './lib/core/utils/translate-service-initializer.utils'
export * from './lib/core/utils/portal-api-configuration.utils'
export * from './lib/core/utils/provide-portal-dialog-service.utils'

export * from '@onecx/angular-accelerator'
export * from '@onecx/angular-integration-interface'
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import { DialogService } from 'primeng/dynamicdialog'
import { PortalDialogService } from '../../services/portal-dialog.service'

export function providePortalDialogService() {
return [DialogService, PortalDialogService]
}

0 comments on commit dfe1362

Please sign in to comment.