@carbon/ibm-products-web-components
Version:
Carbon for IBM Products Web Components
41 lines (39 loc) • 1.4 kB
JavaScript
/**
* Copyright IBM Corp. 2020, 2026
*
* This source code is licensed under the Apache-2.0 license found in the
* LICENSE file in the root directory of this source tree.
*/
import "../../globals/settings.js";
import { __decorate } from "../../_virtual/_@oxc-project_runtime@0.127.0/helpers/decorate.js";
import coachmark_body_default$1 from "./coachmark-body.scss.js";
import { LitElement, html } from "lit";
import HostListenerMixin from "@carbon/web-components/es/globals/mixins/host-listener.js";
import { carbonElement } from "@carbon/web-components/es/globals/decorators/carbon-element.js";
import { SignalWatcher } from "@lit-labs/signals";
//#region src/components/coachmark/coachmark-body.ts
/**
* @license
*
* Copyright IBM Corp. 2025
*
* This source code is licensed under the Apache-2.0 license found in the
* LICENSE file in the root directory of this source tree.
*/
/**
* coachmark-body for content body
* @element c4p-coachmark-body
*/
let CDSCoachmarkBody = class CDSCoachmarkBody extends SignalWatcher(HostListenerMixin(LitElement)) {
render() {
return html` <slot></slot> `;
}
static {
this.styles = coachmark_body_default$1;
}
};
CDSCoachmarkBody = __decorate([carbonElement(`c4p-coachmark-body`)], CDSCoachmarkBody);
var coachmark_body_default = CDSCoachmarkBody;
//#endregion
export { coachmark_body_default as default };
//# sourceMappingURL=coachmark-body.js.map