UI: Add country data to module providers.

This commit is contained in:
Igor Kulikov 2024-09-04 12:01:13 +03:00
parent 132eadc0d6
commit bf6bd064b7

View File

@ -223,6 +223,7 @@ import { HexInputComponent } from '@shared/components/color-picker/hex-input.com
import { CustomTranslatePipe } from '@shared/pipe/custom-translate.pipe'; import { CustomTranslatePipe } from '@shared/pipe/custom-translate.pipe';
import { ScadaSymbolInputComponent } from '@shared/components/image/scada-symbol-input.component'; import { ScadaSymbolInputComponent } from '@shared/components/image/scada-symbol-input.component';
import { CountryAutocompleteComponent } from '@shared/components/country-autocomplete.component'; import { CountryAutocompleteComponent } from '@shared/components/country-autocomplete.component';
import { CountryData } from '@shared/models/country.models';
export function MarkedOptionsFactory(markedOptionsService: MarkedOptionsService) { export function MarkedOptionsFactory(markedOptionsService: MarkedOptionsService) {
return markedOptionsService; return markedOptionsService;
@ -279,7 +280,8 @@ export function MarkedOptionsFactory(markedOptionsService: MarkedOptionsService)
disableTooltipInteractivity: true disableTooltipInteractivity: true
} }
}, },
TbBreakPointsProvider TbBreakPointsProvider,
CountryData
], ],
declarations: [ declarations: [
FooterComponent, FooterComponent,