KeyValueDiffers
A repository of different Map diffing strategies used by NgClass, NgStyle, and others.
class KeyValueDiffers {
static ngInjectableDef: defineInjectable({...})
static create<S>(factories: KeyValueDifferFactory[], parent?: KeyValueDiffers): KeyValueDiffers
static extend<S>(factories: KeyValueDifferFactory[]): StaticProvider
constructor(factories: KeyValueDifferFactory[])
factories: KeyValueDifferFactory[]
find(kv: any): KeyValueDifferFactory
}
Static properties
| Property | Description |
|---|---|
static ngInjectableDef: defineInjectable({
providedIn: 'root',
factory: () => new KeyValueDiffers([new DefaultKeyValueDifferFactory()])
})
|
Static methods
Parameters
Returns |
|
Takes an array of |
|||
Parameters
Returns |
|||
Usage NotesExampleThe 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
|
Constructor
Properties
| Property | Description |
|---|---|
factories: KeyValueDifferFactory[]
|