@esri/calcite-components
Version:
Web Components for Esri's Calcite Design System.
51 lines (50 loc) • 1.18 kB
JavaScript
/*!
* All material copyright ESRI, All Rights Reserved, unless otherwise specified.
* See https://github.com/Esri/calcite-components/blob/master/LICENSE.md for details.
* v1.5.0-next.4
*/
import { h } from "@stencil/core";
/**
* @slot - A slot for adding `calcite-tip`s.
*/
export class TipGroup {
constructor() {
this.groupTitle = undefined;
}
render() {
return h("slot", null);
}
static get is() { return "calcite-tip-group"; }
static get encapsulation() { return "shadow"; }
static get originalStyleUrls() {
return {
"$": ["tip-group.scss"]
};
}
static get styleUrls() {
return {
"$": ["tip-group.css"]
};
}
static get properties() {
return {
"groupTitle": {
"type": "string",
"mutable": false,
"complexType": {
"original": "string",
"resolved": "string",
"references": {}
},
"required": false,
"optional": false,
"docs": {
"tags": [],
"text": "The component header text for all nested `calcite-tip`s."
},
"attribute": "group-title",
"reflect": false
}
};
}
}