@hashicorp/design-system-components
Version:
Helios Design System Components
15 lines (12 loc) • 821 B
JavaScript
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