bottom-sheet
Version:
Bottom Sheet implemented as a Vanilla Web Component
10 lines (6 loc) • 301 B
JavaScript
// BottomSheet: Custom Elements Define Library, ES Module/es2017 Target
import { defineCustomElement } from './bottom-sheet.core.js';
import { COMPONENTS } from './bottom-sheet.components.js';
export function defineCustomElements(win, opts) {
return defineCustomElement(win, COMPONENTS, opts);
}