{"version":3,"sources":["../src/m2m-releases-link.ts"],"sourcesContent":["import { LitElement, css, html } from \"lit\";\nimport { customElement } from \"lit/decorators.js\";\nimport { t } from \"./releases/t\";\n\nconst RELEASE_URL = \"https://matsuri-releases-api.vercel.app/product\";\n\n@customElement(\"m2m-releases-link\")\nexport class M2mReleaseLink extends LitElement {\n  static readonly styles = css`\n    :host a {\n      display: block;\n      display: flex;\n      align-items: center;\n      justify-content: center;\n      width: 42px;\n      height: 42px;\n      padding: 0px;\n      color: rgba(0, 0, 0, 0.87);\n      cursor: pointer;\n      background-color: transparent;\n      border: none;\n      transition: background-color 0.2s ease 0s;\n      appearance: none;\n      &:hover {\n        background-color: rgba(0, 0, 0, 0.05);\n      }\n    }\n  `;\n\n  declare product: string;\n  static properties = {\n    product: {\n      type: String,\n      attribute: \"product\",\n    },\n  };\n\n  constructor() {\n    super();\n    this.product = \"\";\n  }\n\n  render() {\n    return html`<a\n      href=\"${RELEASE_URL}/${this.product}?t=${t}\"\n      target=\"_blank\"\n      rel=\"noopener noreferrer\"\n      title=\"リリース情報\"\n    >\n      <span></span>\n      <svg\n        xmlns=\"http://www.w3.org/2000/svg\"\n        width=\"32px\"\n        height=\"32px\"\n        viewBox=\"0 0 24 24\"\n      >\n        <path\n          fill=\"currentColor\"\n          d=\"M7 20h4c0 1.1-.9 2-2 2s-2-.9-2-2zm-2-1h8v-2H5v2zm11.5-9.5c0 3.82-2.66 5.86-3.77 6.5H5.27c-1.11-.64-3.77-2.68-3.77-6.5C1.5 5.36 4.86 2 9 2s7.5 3.36 7.5 7.5zm-2 0C14.5 6.47 12.03 4 9 4S3.5 6.47 3.5 9.5c0 2.47 1.49 3.89 2.35 4.5h6.3c.86-.61 2.35-2.03 2.35-4.5zm6.87-2.13L20 8l1.37.63L22 10l.63-1.37L24 8l-1.37-.63L22 6l-.63 1.37zM19 6l.94-2.06L22 3l-2.06-.94L19 0l-.94 2.06L16 3l2.06.94L19 6z\"\n        />\n      </svg>\n    </a>`;\n  }\n}\n"],"mappings":";;;;;;;;AAAA,SAAS,YAAY,KAAK,YAAY;AACtC,SAAS,qBAAqB;AAG9B,IAAM,cAAc;AAGb,IAAM,iBAAN,cAA6B,WAAW;AAAA,EA8B7C,cAAc;AACZ,UAAM;AACN,SAAK,UAAU;AAAA,EACjB;AAAA,EAEA,SAAS;AACP,WAAO;AAAA,cACG,WAAW,IAAI,KAAK,OAAO,MAAM,CAAC;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAkB9C;AACF;AAxDa,eACK,SAAS;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AADd,eAuBJ,aAAa;AAAA,EAClB,SAAS;AAAA,IACP,MAAM;AAAA,IACN,WAAW;AAAA,EACb;AACF;AA5BW,iBAAN;AAAA,EADN,cAAc,mBAAmB;AAAA,GACrB;","names":[]}