collective-webcomponents
Version:
Stencil Component Starter
29 lines (28 loc) • 730 B
JavaScript
// CollectiveWebcomponents: Custom Elements Define Library, ES Module/ES5 Target
import { defineCustomElement } from './collectivewebcomponents.core.js';
import {
Button,
CollectiveProductCell,
CollectiveProducts,
CollectiveProductsChooser,
CollectiveProductsChooserButton,
CollectiveWidgetProductCell,
Icon,
RippleEffect,
Searchbar,
Spinner
} from './collectivewebcomponents.components.js';
export function defineCustomElements(window, opts) {
defineCustomElement(window, [
Button,
CollectiveProductCell,
CollectiveProducts,
CollectiveProductsChooser,
CollectiveProductsChooserButton,
CollectiveWidgetProductCell,
Icon,
RippleEffect,
Searchbar,
Spinner
], opts);
}