packages/base/src/lib/eui-models/eui-config/eui-env-config.ts
The EnvDynamicConfig is the dynamic configuration object for the EUI library that uses the dynamic configuration to update the configuration at runtime. The dynamic configuration can be fetched from a local path or a web service, can be merged or deep merged with the default configuration at runtime and can be awaited for a specific duration to resolve the request.
Properties |
|
| configTimeout |
configTimeout:
|
Type : number
|
| Optional |
|
Dynamic config will be awaiting 2000ms(default) to resolve the request, to change this duration you can use this parameter |
| deepMerge |
deepMerge:
|
Type : boolean
|
| Optional |
|
If merge array is provided, the way of merging will be one-level merge as default. To have deep merge functionality, you have to define deepMerge:true |
| uri |
uri:
|
Type : string
|
|
uri which can be local path or webservice, should store/return json-config which implements EuiAppJsonConfig |