1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- /*!
- * All material copyright ESRI, All Rights Reserved, unless otherwise specified.
- * See https://github.com/Esri/calcite-components/blob/master/LICENSE.md for details.
- * v1.0.0-beta.97
- */
- import { h } from "@stencil/core";
- /**
- * @slot - A slot for adding `calcite-tip`s.
- */
- export class TipGroup {
- 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": true,
- "docs": {
- "tags": [],
- "text": "The component header text for all nested `calcite-tip`s."
- },
- "attribute": "group-title",
- "reflect": false
- }
- };
- }
- }
|