Effective select config for the current injector, merged with library defaults
injectSelectConfig
Functionforms/select
projects/forms/select/shared/inject-helpers.ts
Description#
Effective select config for the current injector, merged with library
defaults. Always fully populated - never null. Injection context required.
import { injectSelectConfig } from '@cngx/forms/select';
export class MyComposite {
private readonly config = injectSelectConfig();
protected readonly panelWidth = this.config.panelWidth;
}