• Overview
@angular/core

KeyValueDiffers

Class

A repository of different Map diffing strategies used by NgClass, NgStyle, and others.

  
    class KeyValueDiffers {}
  
  
@paramfactoriesKeyValueDifferFactory[]
@paramparentKeyValueDiffers | undefined

Takes an array of KeyValueDifferFactory and returns a provider used to extend the inherited KeyValueDiffers instance with the provided factories and return a new KeyValueDiffers instance.

@paramfactoriesKeyValueDifferFactory[]
Usage notes

Example

The following example shows how to extend an existing list of factories, which will only be applied to the injector for this component and its children. This step is all that's required to make a new {@link KeyValueDiffer} available.

          
@Component({  viewProviders: [    KeyValueDiffers.extend([new ImmutableMapDiffer()])  ]})
Jump to details