##// END OF EJS Templates
* tsx/{Xxx}Context renamed to tsx/{Xxx}Rendition, for old types made...
* tsx/{Xxx}Context renamed to tsx/{Xxx}Rendition, for old types made compatibility stubs with @deprected comments * Improved handling of functional component output, added support for boolean, null, undefined and widgets. * RenditionBase: fixed startup for the DocumentFragment nodes * startupWidgets: fixed startup of the widget when passed domNode of the widget. * DjxFragment converted to the functional component

File last commit:

r2:8ec37bf1b4d1 default
r63:1a0018655d1c v1.1.0 default
Show More
manager.d.ts
22 lines | 744 B | video/mp2t | TypeScriptLexer
import dijit = require("../main");
import _WidgetBase = require("../_WidgetBase");
declare module "dojo/_base/kernel" {
interface Dijit {
byId(id: string | _WidgetBase): _WidgetBase;
getUniqueId(widgetType: string): string;
findWidgets(root: Node, skipNode?: Node): _WidgetBase[];
byNode(node: Node): _WidgetBase;
getEnclosingWidgets(node: Node): _WidgetBase;
/**
* defaultDuration: Integer
* The default fx.animation speed (in ms) to use for all Dijit
* transitional fx.animations, unless otherwise specified
* on a per-instance basis. Defaults to 200, overrided by
* `djConfig.defaultDuration`
*/
defaultDuration: number;
}
}
export = dijit;