UNPKG

lazy-widgets

Version:

Typescript retained mode GUI for the HTML canvas API

17 lines 516 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 { } Container.autoXML = { name: 'container', inputConfig: SingleParentXMLInputConfig }; //# sourceMappingURL=Container.js.map