Skip to content

Commit

Permalink
Merge pull request #4116 from alfonso-salces/MOBILE-4612
Browse files Browse the repository at this point in the history
MOBILE-4612 compile.ts: Expose signals and computed to plugins
  • Loading branch information
dpalou authored Jul 30, 2024
2 parents 9e75f4c + 610270f commit ccdd924
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/core/features/compile/services/compile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ import {
Type,
Provider,
ViewContainerRef,
signal,
computed,
} from '@angular/core';
import {
ActionSheetController,
Expand Down Expand Up @@ -294,6 +296,8 @@ export class CoreCompileProvider {
instance['CoreConfigConstants'] = CoreConstants.CONFIG;
instance['CoreEventsProvider'] = CoreEvents;
instance['CoreLoggerProvider'] = CoreLogger;
instance['signal'] = signal;
instance['computed'] = computed;
instance['moment'] = moment;
instance['Md5'] = Md5;
/**
Expand Down

0 comments on commit ccdd924

Please sign in to comment.