[//]: # 'AUTO INSERT HEADER PREPUBLISH' # Forms in a dialog ```js script import { html } from '@lion/core'; import '@lion/dialog/lion-dialog.js'; import '@lion/input-datepicker'; import '@lion/select-rich/lion-select-rich.js'; import '@lion/listbox/lion-option.js'; export default { title: 'Forms/System/Dialog integrations', }; ``` ## Select Rich Opening a Rich Select inside a dialog ```js story export const selectRich = () => html` Open Dialog Red Hotpink Teal e.target.dispatchEvent(new Event('close-overlay', { bubbles: true }))} > ⨯ `; ``` ## Input Datepicker Opening a Input Datepicker inside a dialog ```js story export const inputDatepicker = () => html` Open Dialog e.target.dispatchEvent(new Event('close-overlay', { bubbles: true }))} > ⨯ `; ```