libs/core/src/lib/core.module.ts
This module provides directives that are essential for developing Building Blocks.
List of public directives:
*aclTag: See AclTagDirective for detailsChunkLoadingErrorPageModule
DfBaseModule
DynamicFormBuildingBlockModule
OfferCodeModule
PgrBannerModule
PgrBbWithDynamicFormModule
PgrModalBuildingBlockModule
PgrPlaceholderModule
PgrSimpleModule
PlaceholderModule
PlaygroundContactUsModule
PlaygroundDynamicFormWithConfigEditorModule
PlaygroundStateSummaryBuildingBlockModule
import { AclModule } from '@allianz/taly-acl/angular';
import { InputElementInjectorModule } from '@allianz/taly-acl/input-element-injector-directive';
import { NgModule } from '@angular/core';
import { TalyValidationService } from './form-support/taly-validation.service';
/**
* This module provides directives that are essential for developing Building Blocks.
*
* List of public directives:
* - `*aclTag`: See {@link AclTagDirective} for details
*/
@NgModule({
providers: [TalyValidationService],
exports: [AclModule, InputElementInjectorModule]
})
export class TalyCoreModule {}