UNPKG

@hashicorp/design-system-components

Version:
15 lines (12 loc) 821 B
import { precompileTemplate } from '@ember/template-compilation'; import { setComponentTemplate } from '@ember/component'; import templateOnly from '@ember/component/template-only'; /** * Copyright IBM Corp. 2021, 2025 * SPDX-License-Identifier: MPL-2.0 */ const HdsDialogPrimitiveWrapper = setComponentTemplate(precompileTemplate("<dialog class=\"hds-dialog-primitive__wrapper\" ...attributes>\n <div class=\"hds-dialog-primitive__wrapper-header\">\n {{yield to=\"header\"}}\n </div>\n <div class=\"hds-dialog-primitive__wrapper-body\">\n {{yield to=\"body\"}}\n </div>\n <div class=\"hds-dialog-primitive__wrapper-footer\">\n {{yield to=\"footer\"}}\n </div>\n</dialog>", { strictMode: true }), templateOnly()); export { HdsDialogPrimitiveWrapper as default }; //# sourceMappingURL=wrapper.js.map