What problem does it solve? Building slide-in detail panels in the LFX One Angular app requires following strict team conventions for visibility bindings, lazy data loading, chart integration, and responsive sizing, and this Skill encodes those conventions so generated drawers match the existing codebase. ## Core Features & Use Cases - Drawer Component Generation: Creates the three-file component set (.component.ts, .component.html, .component.scss) with the LFX license header and the 11-section class structure. - Lazy Data Loading on Open: Wires visibility via model<boolean>(false) with two-way [(visible)] binding and loads data through toObservable(visible).pipe(skip(1), switchMap(...)) with forkJoin for parallel calls. - Responsive Width Standard: Applies the standard width chain xl:w-[45%] lg:w-[55%] md:w-[70%] sm:w-[90%] w-full. - Use Case: A list-row click needs to open a detail panel without a route change; the Skill generates a drawer that lazy-loads its data and charts only when opened. ## Quick Start Ask the assistant to build a drawer component that opens from a list row and lazy-loads detail data when opened.