tip-group.js 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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.97
  5. */
  6. import { 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() {
  17. return {
  18. "$": ["tip-group.scss"]
  19. };
  20. }
  21. static get styleUrls() {
  22. return {
  23. "$": ["tip-group.css"]
  24. };
  25. }
  26. static get properties() {
  27. return {
  28. "groupTitle": {
  29. "type": "string",
  30. "mutable": false,
  31. "complexType": {
  32. "original": "string",
  33. "resolved": "string",
  34. "references": {}
  35. },
  36. "required": false,
  37. "optional": true,
  38. "docs": {
  39. "tags": [],
  40. "text": "The component header text for all nested `calcite-tip`s."
  41. },
  42. "attribute": "group-title",
  43. "reflect": false
  44. }
  45. };
  46. }
  47. }