UNPKG

@paraboly/pwc-sliding-panel

Version:

A panel that slides open from the sides of the page when you click a handle.

19 lines (14 loc) 664 B
'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); const core = require('./core-ae965e22.js'); const PwcSlidingPanelContent = class { constructor(hostRef) { core.registerInstance(this, hostRef); } render() { return core.h("slot", null); } get root() { return core.getElement(this); } static get style() { return "pwc-sliding-panel-content {\n display: block;\n width: var(--pwc-sliding-panel___content-width);\n background: white;\n border: 1px black solid;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n}"; } }; exports.pwc_sliding_panel_content = PwcSlidingPanelContent;