私は現在、nebular/them パックを使用する angular アプリに取り組んでおり、いくつかのカスタム変数を NbThemeService に追加したいと考えています。ngx-admin テンプレートでこのカスタマイズを以下のように見ました。
constructor(private ecMapService: CountryOrdersMapService,
private theme: NbThemeService) {
combineLatest([
this.ecMapService.loadCounties(null),
this.theme.getJsTheme(),
])
.pipe(takeWhile(() => this.alive))
.subscribe(([cords, config]: [any, any]) => {
this.currentTheme = config.variables.countryOrders;
this.layers = [this.createGeoJsonLayer(cords)];
});
ここで、このコンポーネント コンストラクターには、this.getJsTheme() の変数オブジェクトに countryOrders カスタム プロパティがあります。このテーマ サービスに独自のカスタム プロパティを追加するにはどうすればよいですか?