tip-group.js 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /*!
  2. * All material copyright ESRI, All Rights Reserved, unless otherwise specified.
  3. * See https://github.com/Esri/calcite-components/blob/master/LICENSE.md for details.
  4. * v1.0.0-beta.82
  5. */
  6. import { Component, Prop, h } from "@stencil/core";
  7. /**
  8. * @slot - A slot for adding `calcite-tip`s.
  9. */
  10. export class TipGroup {
  11. render() {
  12. return h("slot", null);
  13. }
  14. static get is() { return "calcite-tip-group"; }
  15. static get encapsulation() { return "shadow"; }
  16. static get originalStyleUrls() { return {
  17. "$": ["tip-group.scss"]
  18. }; }
  19. static get styleUrls() { return {
  20. "$": ["tip-group.css"]
  21. }; }
  22. static get properties() { return {
  23. "groupTitle": {
  24. "type": "string",
  25. "mutable": false,
  26. "complexType": {
  27. "original": "string",
  28. "resolved": "string",
  29. "references": {}
  30. },
  31. "required": false,
  32. "optional": true,
  33. "docs": {
  34. "tags": [],
  35. "text": "The title used for all nested tips."
  36. },
  37. "attribute": "group-title",
  38. "reflect": false
  39. }
  40. }; }
  41. }