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

META-INF.frontend.uibuilder.data.data-source.js Maven / Gradle / Ivy

There is a newer version: 3.0.2
Show newest version
import { PolymerElement } from '@polymer/polymer/polymer-element.js';

export class DataSource extends PolymerElement {
    static get is() {
        return "data-source";
    }

    static get properties() {
        return {
            name: String,
            defaultQuery: String,
            hierarchical: {
                type: String,
            },
            datasourceId: String,
        };
    }
}

customElements.define(DataSource.is, DataSource);




© 2015 - 2024 Weber Informatics LLC | Privacy Policy