UNPKG

lazy-widgets

Version:

Typescript retained mode GUI for the HTML canvas API

20 lines 593 B
import { BaseContainer } from './BaseContainer.js'; import { SingleParentXMLInputConfig } from '../xml/SingleParentXMLInputConfig.js'; /** * A {@link BaseContainer} which always propagates events. Use this widget if * you are not sure what that means. * * Can be constrained to a specific type of children. * * @category Widget */ export class Container extends BaseContainer { constructor(child, properties) { super(child, properties); } } Container.autoXML = { name: 'container', inputConfig: SingleParentXMLInputConfig }; //# sourceMappingURL=Container.js.map