Merge pull request #4116 from alfonso-salces/MOBILE-4612

MOBILE-4612 compile.ts: Expose signals and computed to plugins
main
Dani Palou 2024-07-30 08:21:11 +02:00 committed by GitHub
commit ccdd924b0a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 0 deletions

View File

@ -21,6 +21,8 @@ import {
Type, Type,
Provider, Provider,
ViewContainerRef, ViewContainerRef,
signal,
computed,
} from '@angular/core'; } from '@angular/core';
import { import {
ActionSheetController, ActionSheetController,
@ -294,6 +296,8 @@ export class CoreCompileProvider {
instance['CoreConfigConstants'] = CoreConstants.CONFIG; instance['CoreConfigConstants'] = CoreConstants.CONFIG;
instance['CoreEventsProvider'] = CoreEvents; instance['CoreEventsProvider'] = CoreEvents;
instance['CoreLoggerProvider'] = CoreLogger; instance['CoreLoggerProvider'] = CoreLogger;
instance['signal'] = signal;
instance['computed'] = computed;
instance['moment'] = moment; instance['moment'] = moment;
instance['Md5'] = Md5; instance['Md5'] = Md5;
/** /**