Ignite UI Dock Manager Web Component
npm install igniteui-dockmanager
npm install igniteui-dockmanager --save
`
Usage
$3
In the new Lit-based version, you simply import the component and call the defineComponents() function:
`ts
import { defineComponents, IgcDockManagerComponent } from 'igniteui-dockmanager';
defineComponents(IgcDockManagerComponent);
`
$3
If you are using the version from the 1.18.x branch, it is necessary to import and call the defineCustomElements() function:
`ts
import { defineCustomElements } from 'igniteui-dockmanager/loader';
defineCustomElements();
`
Once the Dock Manager is imported, you can add it on the page:
`html
`
More information on how to use the Ignite UI Dock Manager Web Component can be found here.
$3
To localize the Dock Manager strings, install the peer dependency igniteui-i18n-resources and register a language bundle with igniteui-i18n-core:
`ts
import { registerI18n } from 'igniteui-i18n-core';
import { DockManagerResourceStringsES } from 'igniteui-i18n-resources';
registerI18n(DockManagerResourceStringsES, 'es');
`
Branching & Maintenance
To ensure stability for our customers, we maintain the following branch structure:
| Branch | Status | Framework | Support |
| --- | --- | --- | --- |
| master | Stable | Lit | Active Development |
| develop | Bleeding Edge | Lit | Integration |
| 1.18.x` | Legacy LTS | Stencil | Security & Critical Bug fixes Only |