UNPKG

@telekom/scale-components

Version:

Scale is the digital design system for Telekom products and experiences.

111 lines (110 loc) 2.95 kB
/** * @license * Scale https://github.com/telekom/scale * * Copyright (c) 2021 Egor Kirpichev and contributors, Deutsche Telekom AG * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ import { Component, Element, h, Prop, Host } from '@stencil/core'; import statusNote from '../../utils/status-note'; let i = 0; export class TabPanel { constructor() { this.generatedId = i++; /** True for smaller height and font size */ /** @deprecated - no more size difference */ this.small = false; /** (optional) size */ /** @deprecated - no more size difference */ this.size = 'small'; } componentDidRender() { if (this.small !== false) { statusNote({ tag: 'deprecated', message: 'Property "small" is deprecated.', type: 'warn', source: this.el, }); } } render() { return (h(Host, { id: `scale-tab-panel-${this.generatedId}`, role: "tabpanel", tabindex: "0" }, this.styles && h("style", null, this.styles), h("div", { part: "tab-panel", class: "tab-panel" }, h("slot", null)))); } static get is() { return "scale-tab-panel"; } static get encapsulation() { return "shadow"; } static get originalStyleUrls() { return { "$": ["./tab-panel.css"] }; } static get styleUrls() { return { "$": ["tab-panel.css"] }; } static get properties() { return { "small": { "type": "boolean", "mutable": false, "complexType": { "original": "boolean", "resolved": "boolean", "references": {} }, "required": false, "optional": true, "docs": { "tags": [{ "name": "deprecated", "text": "- no more size difference" }], "text": "" }, "attribute": "small", "reflect": false, "defaultValue": "false" }, "size": { "type": "string", "mutable": false, "complexType": { "original": "'small' | 'large'", "resolved": "\"large\" | \"small\"", "references": {} }, "required": false, "optional": false, "docs": { "tags": [{ "name": "deprecated", "text": "- no more size difference" }], "text": "" }, "attribute": "size", "reflect": false, "defaultValue": "'small'" }, "styles": { "type": "string", "mutable": false, "complexType": { "original": "string", "resolved": "string", "references": {} }, "required": false, "optional": true, "docs": { "tags": [], "text": "(optional) Injected CSS styles" }, "attribute": "styles", "reflect": false } }; } static get elementRef() { return "el"; } }