77349: Add themeable components - pt. 1

This commit is contained in:
Yana De Pauw
2021-03-03 11:05:52 +01:00
committed by Art Lowel
parent 66463cfc04
commit 8b7a33bff2
81 changed files with 833 additions and 51 deletions

View File

@@ -6,6 +6,17 @@ import { InfoRoutingModule } from './info-routing.module';
import { EndUserAgreementContentComponent } from './end-user-agreement/end-user-agreement-content/end-user-agreement-content.component';
import { PrivacyComponent } from './privacy/privacy.component';
import { PrivacyContentComponent } from './privacy/privacy-content/privacy-content.component';
import { ThemedEndUserAgreementComponent } from './end-user-agreement/themed-end-user-agreement.component';
import { ThemedPrivacyComponent } from './privacy/themed-privacy.component';
const DECLARATIONS = [
EndUserAgreementComponent,
ThemedEndUserAgreementComponent,
EndUserAgreementContentComponent,
PrivacyComponent,
PrivacyContentComponent,
ThemedPrivacyComponent
];
@NgModule({
imports: [
@@ -14,10 +25,10 @@ import { PrivacyContentComponent } from './privacy/privacy-content/privacy-conte
InfoRoutingModule
],
declarations: [
EndUserAgreementComponent,
EndUserAgreementContentComponent,
PrivacyComponent,
PrivacyContentComponent
...DECLARATIONS
],
exports: [
...DECLARATIONS
]
})
export class InfoModule {