All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.dist.vscode-option.vscode-option.js Maven / Gradle / Ivy

The newest version!
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
    var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
    if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
    else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
    return c > 3 && r && Object.defineProperty(target, key, r), r;
};
import { html } from 'lit';
import { customElement, property } from 'lit/decorators.js';
import { VscElement } from '../includes/VscElement.js';
import styles from './vscode-option.styles.js';
let VscodeOption = class VscodeOption extends VscElement {
    constructor() {
        super(...arguments);
        this.value = '';
        this.description = '';
        this.selected = false;
        this.disabled = false;
    }
    render() {
        return html ``;
    }
};
VscodeOption.styles = styles;
__decorate([
    property({ type: String })
], VscodeOption.prototype, "value", void 0);
__decorate([
    property({ type: String })
], VscodeOption.prototype, "description", void 0);
__decorate([
    property({ type: Boolean, reflect: true })
], VscodeOption.prototype, "selected", void 0);
__decorate([
    property({ type: Boolean, reflect: true })
], VscodeOption.prototype, "disabled", void 0);
VscodeOption = __decorate([
    customElement('vscode-option')
], VscodeOption);
export { VscodeOption };
//# sourceMappingURL=vscode-option.js.map




© 2015 - 2024 Weber Informatics LLC | Privacy Policy