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

dev-ui.qwc-tools.js Maven / Gradle / Ivy

import { LitElement, html, css} from 'lit';
import '@vaadin/grid';
import '@vaadin/grid/vaadin-grid-sort-column.js';

import {tools} from 'build-time-data';


export class QwcTools extends LitElement {

    static styles = css`
        :host {
            height: 100%;
            display: flex;
        }
        vaadin-grid {
            margin-left: 15px;
            margin-right: 15px;
            height: 100%;
        }
    `;

    static properties = {
        "_tools": {state: true},
    }

    constructor() {
        super();
        this._tools = tools;
    }

    render() {
        if (this._tools) {
            return this._renderToolTable();
        } else {
            return html`No tools found`;
        }
    }

    _renderToolTable() {
        return html`
                
                    
                    
                    
                    
                    
                    
                `;
    }

}
customElements.define('qwc-tools', QwcTools);




© 2015 - 2025 Weber Informatics LLC | Privacy Policy