mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-09 11:13:57 +08:00
Merge pull request #3342 from vansimke/master
Update dojo type definitions
This commit is contained in:
+170
-243
@@ -17,6 +17,7 @@ A normal dojo module might look something like this:
|
||||
define(['dojo/request', 'dojo/request/xhr'],
|
||||
function (request, xhr) {
|
||||
...
|
||||
|
||||
}
|
||||
);
|
||||
```
|
||||
@@ -24,275 +25,201 @@ A normal dojo module might look something like this:
|
||||
When using the TypeScript, you can write the following:
|
||||
|
||||
```ts
|
||||
define(['dojo/request', 'dojo/request/xhr'],
|
||||
function (request: dojo.request,
|
||||
xhr: dojo.request.xhr) {
|
||||
...
|
||||
}
|
||||
);
|
||||
import request = require("dojo/request");
|
||||
import xhr = require("dojo/request/xhr");
|
||||
|
||||
...
|
||||
|
||||
```
|
||||
|
||||
Inside of the define variable, both `request` and `xhr` will work as the functions that come from Dojo, only they are strongly typed.
|
||||
|
||||
## Advanced Usage
|
||||
Dojo and TypeScript both use different and conflicting class semantics. This causes some issues when trying to create custom class modules that are strongly typed in other modules. The following technique is presented as **A** solution to the problem, but not necessarily the best one. Other ideas a welcomed!
|
||||
|
||||
Using pure JavaScript, a class that has a base class and mixins can be defined in Dojo as follows:
|
||||
|
||||
```js
|
||||
define(['dojo/_base/declare', 'dijit/_WidgetBase', 'dijit/_TemplatedMixin', 'dojo/request'],
|
||||
function(dojoDeclare, _WidgetBase, _TemplatedMixin, request) {
|
||||
var Foo = dojoDeclare([_WidgetBase, _TemplatedMixin], {
|
||||
templateString: '<div>Hello TypeScript</div',
|
||||
Dojo and TypeScript both use different and conflicting class semantics. In order to satisfy both systems, some unconventional work is needed.
|
||||
|
||||
message: '',
|
||||
|
||||
sayMessage: function() {
|
||||
alert(this.message);
|
||||
},
|
||||
|
||||
getServerInfo: function() {
|
||||
request.get('http://dojoAndTypeScriptTogetherAtLast.html', function(data) {
|
||||
console.log(data);
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
return Foo;
|
||||
}
|
||||
);
|
||||
```
|
||||
|
||||
The goal is to be able to describe the `Foo` class in a way that TypeScript can recognize, but also works with Dojo. This requires some hacks that will be introduced and explained as the problems are discovered.
|
||||
|
||||
The first challenge that we run into is how to define the class. We will define that using standard TypeScript semantics as follows:
|
||||
|
||||
```ts
|
||||
module App {
|
||||
export class Foo extends dijit._WidgetBase implements dijit._TemplatedMixin {
|
||||
constructor(public templateString= "<div>Hello TypeScript</div>",
|
||||
public message= "") {
|
||||
super();
|
||||
}
|
||||
|
||||
sayMessage() {
|
||||
alert(this.message);
|
||||
}
|
||||
|
||||
getServerInfo() {
|
||||
request.get("http://dojoAndTypeScriptTogetherAtLast.html", (data: string) => {
|
||||
console.log(data);
|
||||
});
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
This class is identical to the standard Dojo method, except that it is declared inside of a TypeScript module and it is declared using TypeScript instead of Dojo's `declare` method. Two problems arise however:
|
||||
1. `Foo` has an error because it doesn't honor the interface declared by dijit._TemplatedMixin
|
||||
2. `request` is undefined
|
||||
|
||||
The first problem can be solved by adding the missing properties and methods, but this will only serve to clutter the code base over time. Instead, we are creating another base class that hides this requirement like so:
|
||||
|
||||
```ts
|
||||
module App {
|
||||
export class Foo extends WidgetBaseWithTemplatedMixin {
|
||||
constructor(public templateString= "<div>Hello TypeScript</div>",
|
||||
public message= "") {
|
||||
super();
|
||||
}
|
||||
|
||||
sayMessage() {
|
||||
alert(this.message);
|
||||
}
|
||||
|
||||
getServerInfo() {
|
||||
request.get("http://dojoAndTypeScriptTogetherAtLast.html", (data: string) => {
|
||||
console.log(data);
|
||||
});
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
export class WidgetBaseWithTemplatedMixin extends dijit._WidgetBase implements dijit._TemplatedMixin {
|
||||
"attachScope": Object;
|
||||
"searchContainerNode": boolean;
|
||||
"templatePath": string;
|
||||
"templateString": string;
|
||||
buildRendering(): {}
|
||||
destroyRendering(): {}
|
||||
getCachedTemplate(templateString: String, alwaysUseString: boolean, doc: HTMLDocument): {}
|
||||
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
Now the base class meets TypeScript's requirements so it is happy. This class could easily be moved out to a general add-in file so that it can be created and forgotten since it is only here to make TypeScript happy.
|
||||
|
||||
The second problem that we had as that `request` is undefined. This is going to take a bit more trickery as shown below:
|
||||
|
||||
```ts
|
||||
module App {
|
||||
export class Foo extends WidgetBaseWithTemplatedMixin {
|
||||
constructor(public templateString= "<div>Hello TypeScript</div>",
|
||||
public message= "") {
|
||||
super();
|
||||
}
|
||||
|
||||
public request: dojo.request;
|
||||
|
||||
sayMessage() {
|
||||
alert(this.message);
|
||||
}
|
||||
|
||||
getServerInfo() {
|
||||
this.request.get("http://dojoAndTypeScriptTogetherAtLast.html").then((data: string) => {
|
||||
console.log(data);
|
||||
});
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
export class WidgetBaseWithTemplatedMixin extends dijit._WidgetBase implements dijit._TemplatedMixin {
|
||||
public static getPrototype(deps: Object) {
|
||||
if (deps) {
|
||||
for (var i in deps) {
|
||||
this.prototype[i] = deps[i];
|
||||
}
|
||||
|
||||
return this.prototype;
|
||||
}
|
||||
}
|
||||
|
||||
"attachScope": Object;
|
||||
"searchContainerNode": boolean;
|
||||
"templatePath": string;
|
||||
"templateString": string;
|
||||
buildRendering(): {}
|
||||
destroyRendering(): {}
|
||||
getCachedTemplate(templateString: String, alwaysUseString: boolean, doc: HTMLDocument): {}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
define(['dojo/_base/declare', 'dijit/_WidgetBase', 'dijit/_TemplatedMixin', 'dojo/request'],
|
||||
function (dojoDeclare, _WidgetBase, _TemplatedMixin, request) {
|
||||
var deps = {
|
||||
request: request
|
||||
};
|
||||
|
||||
var Foo = dojoDeclare([_WidgetBase, _TemplatedMixin], App.Foo.getPrototype(deps));
|
||||
|
||||
return Foo;
|
||||
}
|
||||
);
|
||||
```
|
||||
|
||||
Yes, I know - pretty crazy right. But, we're getting close...
|
||||
|
||||
In the Dojo module, we are building an object that contains references to each of the dependencies. We are then passing that object into the static method `getPrototype` that we have added to the base class. This method takes an object literal and mixes it into the class's prototype. In this way, the module dependencies are made available to the TypeScript class via its prototype. The last thing we need to do is change the `getServerInfo()`'s call to `request` to be a `this.request` call since it is calling through its prototype instead of the ambient object that is used in Dojo.
|
||||
|
||||
Okay, great. TypeScript is happy. Everything should be working right? Wrong.
|
||||
|
||||
We have two more problems that are not apparent until the code is actually executed. They are both related to our usage of the `extends` keyword that we used to show that our `Foo` class extends from `dijit._WidgetBase`.
|
||||
|
||||
The first problem is that, as stated previously, TypeScript has its own implementation of a class system in JavaScript. When one class extends another, TypeScript injects the following snippet into the module:
|
||||
For the example, let's take this example custom Dojo widget:
|
||||
|
||||
```js
|
||||
var __extends = this.__extends || function (d, b) {
|
||||
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
|
||||
function __() { this.constructor = d; }
|
||||
__.prototype = b.prototype;
|
||||
d.prototype = new __();
|
||||
};
|
||||
```
|
||||
define(["dojo/_base/declare", "dijit/_WidgetBase", "dijit/_TemplatedMixin", "dijit/_WidgetsInTemplateMixin",
|
||||
"dojo/text!./templates/Foo.html", "dojo/i18n!app/common/nls/resources",
|
||||
"dijit/form/TextBox"],
|
||||
function(declare, _WidgetBase, _TemplatedMixin, _WidgetsInTemplateMixin,
|
||||
template, res) {
|
||||
|
||||
This method is called in a closure that wraps the class definition and mixes the parent's prototype and owned properties into the child class. However, this won't work in our case, because our base class is `dijit._WidgetBase` which doesn't actually exist in the global namespace (where TypeScript expects it). This is because we are still using Dojo's class system (via `declare`). This is an important, and confusing, point. Our class is actually being constructed by Dojo using declare. However, we are working with the class as if it was created in the way the TypeScript expects. In short, this means that we don't actually need the `__extends` function to work, but something needs to be there so that the constructor function doesn't die. The solve is actually relatively easy: In the main HTML page, add this function before the tag that includes `dojo.js`:
|
||||
templateString: template,
|
||||
res: res,
|
||||
myArray: null,
|
||||
|
||||
```js
|
||||
var __extends = function (d, b) {
|
||||
if (d && b) {
|
||||
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
|
||||
function __() {
|
||||
this.constructor = d;
|
||||
constructor: function() {
|
||||
this.myArray = [];
|
||||
},
|
||||
|
||||
sayHello: function() {
|
||||
alert(res.message.helloTypeScript);
|
||||
}
|
||||
|
||||
__.prototype = b.prototype;
|
||||
d.prototype = new __();
|
||||
}
|
||||
};
|
||||
});
|
||||
```
|
||||
|
||||
All this does is check to see if `d` and `b` are defined before running. Since TypeScript won't override __extends, it will allow us to override the default implementation.
|
||||
|
||||
Okay, only one more thing to deal with: the call to super. This issue is also related to TypeScript's method for handling inheritance. After calling `__extends`, the generated constructor function will call the parent's constructor function. Once again, we are hit by the fact that our base class (`dijit._WidgetBase`) doesn't actually exist where TypeScript is expecting it. The only way around this is to give TypeScript something to call. This simplest thing to do is to add a no-op function for TypeScript to call. In short add this:
|
||||
|
||||
```js
|
||||
var dijit = dijit || {};
|
||||
dijit._WidgetBase = function() {}
|
||||
```
|
||||
|
||||
Into the page after Dojo bootstraps, but before our module loads. The simplest way to do this is to create a little module that does this and added it to the array of modules loaded in the `define()` call of the module.
|
||||
|
||||
Okay, so things look pretty messy right now. There are several hacks and tricks that we have to play in order to allow TypeScript and Dojo to work together. The nice thing about most of this is that it can all be shoved into a single helper module and never thought of again. Here is an example of what that module would look like:
|
||||
the equivalent TypeScript version is next, explanation of each section below:
|
||||
|
||||
```ts
|
||||
"use strict";
|
||||
/// <amd-dependency path="dojo/text!./_templates/Foo.html" />
|
||||
/// <amd-dependency path="dojo/i18n!app/common/nls/resources" />
|
||||
|
||||
define([], function () { });
|
||||
/// <amd-dependency path="dijit/form/TextBox" />
|
||||
|
||||
var __extends = function (d, b) {
|
||||
if (d && b) {
|
||||
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
|
||||
function __() {
|
||||
this.constructor = d;
|
||||
}
|
||||
/// <reference path="../typings/dojo.d.ts" />
|
||||
/// <reference path="../typings/dijit.d.ts" />
|
||||
|
||||
__.prototype = b.prototype;
|
||||
d.prototype = new __();
|
||||
declare var require: (moduleId: string) => any;
|
||||
|
||||
import dojoDeclare = require("dojo/_base/declare");
|
||||
import _WidgetBase = require("dijit/_WidgetBase");
|
||||
import _TemplatedMixin = require("dijit/_TemplatedMixin");
|
||||
import _WidgetsInTemplateMixin = require("dijit/_WidgetsInTemplateMixin");
|
||||
|
||||
|
||||
// make sure to set the 'dynamic' fields of the dojo/text and dojo/i18n modules to 'false' in
|
||||
// order to ensure that Dojo loads the tempalte and resources from its cache instead of trying to
|
||||
// pull from the server
|
||||
var template:string = require("dojo/text!./templates/Foo.html");
|
||||
var res = require("dojo/i18n!app/common/nls/resources");
|
||||
|
||||
class Foo extends dijit._WidgetBase {
|
||||
constructor(args?: Object, elem?: HTMLElement) {
|
||||
return new Foo_(args, elem);
|
||||
super();
|
||||
}
|
||||
};
|
||||
|
||||
window['dojo'] = {};
|
||||
window['dijit'] = {
|
||||
_WidgetBase: function () {
|
||||
res: any;
|
||||
|
||||
myArray: string[];
|
||||
|
||||
sayHello(): void {
|
||||
alert(res.message.helloTypeScript);
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
module Base {
|
||||
function getPrototype(type: Function, deps: Object): Object {
|
||||
if (deps) {
|
||||
for (var i in deps) {
|
||||
type.prototype[i] = deps[i];
|
||||
}
|
||||
|
||||
return this.prototype;
|
||||
var Foo_ = dojoDeclare("", [_WidgetBase, _TemplatedMixin, _WidgetsInTemplateMixin], (function (Source: any) {
|
||||
var result: any = {};
|
||||
result.templateString = template;
|
||||
result.res = res;
|
||||
result.constructor = function () {
|
||||
this.myArray = [];
|
||||
}
|
||||
for (var i in Source.prototype) {
|
||||
if (i !== "constructor" && Source.prototype.hasOwnProperty(i)) {
|
||||
result[i] = Source.prototype[i];
|
||||
}
|
||||
}
|
||||
export class WidgetBaseWithTemplatedMixin extends dijit._WidgetBase implements dijit._TemplatedMixin {
|
||||
public static getPrototype(deps: Object): Object {
|
||||
return getPrototype(this, deps);
|
||||
}
|
||||
return result;
|
||||
} (Foo)));
|
||||
|
||||
"attachScope": Object;
|
||||
"searchContainerNode": boolean;
|
||||
"templatePath": string;
|
||||
"templateString": string;
|
||||
buildRendering() { }
|
||||
destroyRendering() { }
|
||||
getCachedTemplate(templateString: String, alwaysUseString: boolean, doc: HTMLDocument) { }
|
||||
|
||||
}
|
||||
}
|
||||
export =Foo;
|
||||
```
|
||||
|
||||
This module can then be added to whenever we have another base class / mix-in combination (e.g. dijit/_WidgetBase, dijit/_TemplatedMixin, and dijit/_WidgetsInTemplateMixin). When done this way, the only regularly visible changes that we have to do is to compose the hash of dependencies and call the `getPrototype` as the last argument to `declare`.
|
||||
|
||||
## Appendix
|
||||
Well, no one ever said that it would be easy... but it isn't too bad. Let's go through this one step at a time.
|
||||
|
||||
Examples:
|
||||
* https://github.com/craigstjean/typescript-dojo-sample
|
||||
|
||||
The first two lines are required due to TypeScript's inability to work with plugin-type modules. Since we need to use plugins, we use this technique. Basically, the 'amd-dependency' comments are directives to the TypeScript compiler that asks it to add the value in the "path" attribute as a dependency in the module's "define" statement. This directive, however, does not allow a variable to be assigned into the module. To obtain that, we need to add these two lines:
|
||||
|
||||
```ts
|
||||
var template:string = require("dojo/text!./templates/Foo.html");
|
||||
var res = require("dojo/i18n!app/common/nls/resources");
|
||||
```
|
||||
|
||||
These statements will trigger context-sensitive require calls to be made to pull the requested values from the Dojo loader's cache. Unfortunately, this usage of "require" is not recognized. In order to make this work a new function prototype must be declared, thus this line:
|
||||
|
||||
```ts
|
||||
declare var require: (moduleId: string) => any;
|
||||
```
|
||||
|
||||
There is one more thing that we have to do in order to get the plugins to work properly. The AMD spec (that Dojo's loader adheres to) states that plugins should be loaded dynamically from the server (i.e. the loader shouldn't cache the response). This, I presume, is to allow content to be dynamically generated by the server. This, however, means that the context-sensitive require fails (since it isn't allowed to use the cache). In order correct this, the dojo/text and dojo/i18n modules must be loaded in advance and their 'dynamic' fields set to false. If your app has a single entry point, then you can create something like this (JavaScript shown):
|
||||
|
||||
```js
|
||||
define(["require", "dojo/dom", "dojo/text", "dojo/i18n"],
|
||||
function (require, dom, text, i18n) {
|
||||
|
||||
//set dojo/text and dojo/i18n to static resources to allow to be loaded via
|
||||
//require() call inside of module and load cached version
|
||||
text.dynamic = false;
|
||||
i18n.dynamic = false;
|
||||
require(["./views/ShellView"], function (ShellView) {
|
||||
var shell = new ShellView(null, dom.byId("root"));
|
||||
});
|
||||
});
|
||||
```
|
||||
|
||||
The main module above loads the basic modules, including dojo/text and dojo/i18n. Their dynamic fields are set to false, and then call is made to require to load pull in the application loader. By doing this in a two-step process, we can be sure that the dojo/text and dojo/i18n modules are properly configured before the application tries to make use of it.
|
||||
|
||||
The rest isn't so complicated, I promise...
|
||||
|
||||
The third line:
|
||||
```ts
|
||||
/// <amd-dependency path="dijit/form/TextBox" />
|
||||
```
|
||||
|
||||
is another amd-dependency call that will load a dijit/form/CheckBox. Presumeably, this control is used in the templated widget and, therefore, needs to be preloaded. Since we don't need access to it in the module, we load it this way. If we tried to use an "import" statement, the TypeScript compiler would recognize that we don't use the dependency in the module and would optimize it away.
|
||||
|
||||
The next four lines:
|
||||
```ts
|
||||
import dojoDeclare = require("dojo/_base/declare");
|
||||
import _WidgetBase = require("dijit/_WidgetBase");
|
||||
import _TemplatedMixin = require("dijit/_TemplatedMixin");
|
||||
import _WidgetsInTemplateMixin = require("dijit/_WidgetsInTemplateMixin");
|
||||
```
|
||||
are simple requests for the AMD loader to pull in the Dojo modules that we need for the widget. All of Dojo's conventions (including relative module paths) can be used here. Notice that the dojo/_base/declare module is called "dojoDeclare"; this was done to prevent a conflict with TypeScript's "declare" keyword.
|
||||
|
||||
The following is the class definition:
|
||||
```ts
|
||||
class Foo extends dijit._WidgetBase {
|
||||
constructor(args?: Object, elem?: HTMLElement) {
|
||||
return new Foo_(args, elem);
|
||||
super();
|
||||
}
|
||||
|
||||
res: any;
|
||||
|
||||
myArray: string[];
|
||||
|
||||
sayHello(): void {
|
||||
alert(res.message.helloTypeScript);
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
There are only three odd things going on here.
|
||||
|
||||
The first is the constructor function which has a "return" statement. This means that the returned value will be used instead of a new "Foo" object. This allows us to defer to the Dojo class declaration and return that object. Also notice that we pass the arguments through to the Dojo class so that it has all of the information that it needs to properly construct the widget.
|
||||
|
||||
The second odd thing is the call to super() after the return statement in the constuctor. This is just there to make the TypeScript compiler happy since it requires this whenever a class inherits from a base class (dijit._WidgetBase in this case). Since it occurs after the return statement, it is never called, but I won't tell if you don't :).
|
||||
|
||||
The third odd thing is more subtle: the myArray field is declared, but never initialized. Normally, the constructor should initialize this. However, we are defering to the Dojo classes constructor. It will take the responsibility of inititializing the array.
|
||||
|
||||
The final part of the module is this:
|
||||
|
||||
```ts
|
||||
var Foo_ = dojoDeclare("", [_WidgetBase, _TemplatedMixin, _WidgetsInTemplateMixin], (function (Source: any) {
|
||||
var result: any = {};
|
||||
result.templateString = template;
|
||||
result.res = res;
|
||||
result.constructor = function () {
|
||||
this.myArray = [];
|
||||
}
|
||||
for (var i in Source.prototype) {
|
||||
if (i !== "constructor" && Source.prototype.hasOwnProperty(i)) {
|
||||
result[i] = Source.prototype[i];
|
||||
}
|
||||
}
|
||||
return result;
|
||||
} (Foo)));
|
||||
```
|
||||
|
||||
You'll notice that the third argument to dojoDeclare is not an object literal, like you might expect. Rather, a self-executing function is used to dynamically generate the object literal. The templateString and res fields are manually set to equal the resources that were required above. Additionally, a constructor function is added to initialize the myArray array. Finally, the Foo class's prototype is inspected and all of its "ownProperties" are added. This allows the Foo class to evolved and its methods will automatically be mapped to the Dojo class.
|
||||
|
||||
Mind blown? Let's try to look at it this way:
|
||||
|
||||
Dojo expects things to work in a certain way and that way, in general, is fine. What we want TypeScript for is the strong typing. In order to get both, we are using a Dojo class, but implementing it in the context of a TypeScript one.
|
||||
|
||||
The fact that the TypeScript class defers to the Dojo one means that we get a Dojo class instead of a TypeScript one. This means that everything that we do in the TypeScript class itself is really meaningless since it will be the Dojo class that we are working with. Here is the trick: we define the methods in the TypeScript class which provides the strong typing that we are looking for. We then point the Dojo class's methods to those implementations. In short, we are still using Dojo classes all the way down, but we implement the methods in a TypeScript class so that we get compiler and IDE support.
|
||||
|
||||
Please submit any improvements to this technique. It isn't the prettiest thing ever, but it does accomplish the goal of integrating TypeScript and Dojo together.
|
||||
Vendored
+2306
-111
File diff suppressed because it is too large
Load Diff
Vendored
+76
@@ -1902,3 +1902,79 @@ declare module doh {
|
||||
|
||||
}
|
||||
|
||||
declare module "doh/_nodeRunner" {
|
||||
var exp: doh._nodeRunner
|
||||
export=exp;
|
||||
}
|
||||
declare module "doh/_parseURLargs" {
|
||||
var exp: doh._parseURLargs
|
||||
export=exp;
|
||||
}
|
||||
declare module "doh/_rhinoRunner" {
|
||||
var exp: doh._rhinoRunner
|
||||
export=exp;
|
||||
}
|
||||
declare module "doh/_browserRunner" {
|
||||
var exp: doh._browserRunner
|
||||
export=exp;
|
||||
}
|
||||
declare module "doh/_browserRunner._testTypes" {
|
||||
var exp: doh._browserRunner._testTypes
|
||||
export=exp;
|
||||
}
|
||||
declare module "doh/_browserRunner._groups" {
|
||||
var exp: doh._browserRunner._groups
|
||||
export=exp;
|
||||
}
|
||||
declare module "doh/_browserRunner.robot" {
|
||||
var exp: doh._browserRunner.robot
|
||||
export=exp;
|
||||
}
|
||||
declare module "doh/robot" {
|
||||
var exp: doh.robot
|
||||
export=exp;
|
||||
}
|
||||
declare module "doh/robot._runsemaphore" {
|
||||
var exp: doh.robot._runsemaphore
|
||||
export=exp;
|
||||
}
|
||||
declare module "doh/main" {
|
||||
var exp: doh.main
|
||||
export=exp;
|
||||
}
|
||||
declare module "doh/main._groups" {
|
||||
var exp: doh.main._groups
|
||||
export=exp;
|
||||
}
|
||||
declare module "doh/main._testTypes" {
|
||||
var exp: doh.main._testTypes
|
||||
export=exp;
|
||||
}
|
||||
declare module "doh/main.robot" {
|
||||
var exp: doh.main.robot
|
||||
export=exp;
|
||||
}
|
||||
declare module "doh/runner" {
|
||||
var exp: doh.runner
|
||||
export=exp;
|
||||
}
|
||||
declare module "doh/runner._groups" {
|
||||
var exp: doh.runner._groups
|
||||
export=exp;
|
||||
}
|
||||
declare module "doh/runner._testTypes" {
|
||||
var exp: doh.runner._testTypes
|
||||
export=exp;
|
||||
}
|
||||
declare module "doh/runner.robot" {
|
||||
var exp: doh.runner.robot
|
||||
export=exp;
|
||||
}
|
||||
declare module "doh/plugins/android-webdriver-robot" {
|
||||
var exp: doh.plugins.android_webdriver_robot
|
||||
export=exp;
|
||||
}
|
||||
declare module "doh/plugins/remoteRobot" {
|
||||
var exp: doh.plugins.remoteRobot
|
||||
export=exp;
|
||||
}
|
||||
|
||||
Vendored
+5706
-4530
File diff suppressed because it is too large
Load Diff
Vendored
+10
-1
@@ -1150,4 +1150,13 @@ declare module dojox {
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
declare module "dojox/NodeList/delegate" {
|
||||
var exp: dojox.NodeList.delegate
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/NodeList/delegate._nodeDataCache" {
|
||||
var exp: dojox.NodeList.delegate._nodeDataCache
|
||||
export=exp;
|
||||
}
|
||||
|
||||
Vendored
+13
-1
@@ -75,4 +75,16 @@ declare module dojox {
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
declare module "dojox/analytics" {
|
||||
var exp: dojox.analytics
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/analytics/Urchin" {
|
||||
var exp: dojox.analytics.Urchin
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/analytics/plugins/consoleMessages" {
|
||||
var exp: dojox.analytics.plugins.consoleMessages
|
||||
export=exp;
|
||||
}
|
||||
|
||||
Vendored
+95
-2
@@ -2298,7 +2298,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -2381,4 +2381,97 @@ declare module dojox {
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
declare module "dojox/app/main" {
|
||||
var exp: dojox.app.main
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/app/Controller" {
|
||||
var exp: dojox.app.Controller
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/app/ViewBase" {
|
||||
var exp: dojox.app.ViewBase
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/app/View" {
|
||||
var exp: dojox.app.View
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/app/controllers/BorderLayout" {
|
||||
var exp: dojox.app.controllers.BorderLayout
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/app/controllers/History" {
|
||||
var exp: dojox.app.controllers.History
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/app/controllers/HistoryHash" {
|
||||
var exp: dojox.app.controllers.HistoryHash
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/app/controllers/Layout" {
|
||||
var exp: dojox.app.controllers.Layout
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/app/controllers/LayoutBase" {
|
||||
var exp: dojox.app.controllers.LayoutBase
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/app/controllers/Load" {
|
||||
var exp: dojox.app.controllers.Load
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/app/controllers/Transition" {
|
||||
var exp: dojox.app.controllers.Transition
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/app/module/env" {
|
||||
var exp: dojox.app.module.env
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/app/module/lifecycle" {
|
||||
var exp: dojox.app.module.lifecycle
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/app/utils/mvcModel" {
|
||||
var exp: dojox.app.utils.mvcModel
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/app/utils/nls" {
|
||||
var exp: dojox.app.utils.nls
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/app/utils/model" {
|
||||
var exp: dojox.app.utils.model
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/app/utils/simpleModel" {
|
||||
var exp: dojox.app.utils.simpleModel
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/app/utils/config" {
|
||||
var exp: dojox.app.utils.config
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/app/utils/constraints" {
|
||||
var exp: dojox.app.utils.constraints
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/app/utils/layout" {
|
||||
var exp: dojox.app.utils.layout
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/app/utils/hash" {
|
||||
var exp: dojox.app.utils.hash
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/app/widgets/_ScrollableMixin" {
|
||||
var exp: dojox.app.widgets._ScrollableMixin
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/app/widgets/Container" {
|
||||
var exp: dojox.app.widgets.Container
|
||||
export=exp;
|
||||
}
|
||||
|
||||
Vendored
+108
-7
@@ -2444,7 +2444,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -3400,7 +3400,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -4333,7 +4333,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -5173,7 +5173,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -6226,7 +6226,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -7074,7 +7074,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -7224,4 +7224,105 @@ declare module dojox {
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
declare module "dojox/atom/io/model" {
|
||||
var exp: dojox.atom.io.model
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/atom/io/model.Category" {
|
||||
var exp: dojox.atom.io.model.Category
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/atom/io/model.Content" {
|
||||
var exp: dojox.atom.io.model.Content
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/atom/io/model.AtomItem" {
|
||||
var exp: dojox.atom.io.model.AtomItem
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/atom/io/model.Generator" {
|
||||
var exp: dojox.atom.io.model.Generator
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/atom/io/model.Entry" {
|
||||
var exp: dojox.atom.io.model.Entry
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/atom/io/model.Collection" {
|
||||
var exp: dojox.atom.io.model.Collection
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/atom/io/model.Feed" {
|
||||
var exp: dojox.atom.io.model.Feed
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/atom/io/model.Link" {
|
||||
var exp: dojox.atom.io.model.Link
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/atom/io/model.Node" {
|
||||
var exp: dojox.atom.io.model.Node
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/atom/io/model.Person" {
|
||||
var exp: dojox.atom.io.model.Person
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/atom/io/model.Service" {
|
||||
var exp: dojox.atom.io.model.Service
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/atom/io/model.Workspace" {
|
||||
var exp: dojox.atom.io.model.Workspace
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/atom/io/model._Constants" {
|
||||
var exp: dojox.atom.io.model._Constants
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/atom/io/model._actions" {
|
||||
var exp: dojox.atom.io.model._actions
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/atom/io/model.util" {
|
||||
var exp: dojox.atom.io.model.util
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/atom/io/Connection" {
|
||||
var exp: dojox.atom.io.Connection
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/atom/widget/FeedViewer" {
|
||||
var exp: dojox.atom.widget.FeedViewer
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/atom/widget/FeedViewer.CategoryIncludeFilter" {
|
||||
var exp: dojox.atom.widget.FeedViewer.CategoryIncludeFilter
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/atom/widget/FeedViewer.AtomEntryCategoryFilter" {
|
||||
var exp: dojox.atom.widget.FeedViewer.AtomEntryCategoryFilter
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/atom/widget/FeedViewer.FeedViewerEntry" {
|
||||
var exp: dojox.atom.widget.FeedViewer.FeedViewerEntry
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/atom/widget/FeedViewer.FeedViewerGrouping" {
|
||||
var exp: dojox.atom.widget.FeedViewer.FeedViewerGrouping
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/atom/widget/FeedEntryViewer" {
|
||||
var exp: dojox.atom.widget.FeedEntryViewer
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/atom/widget/FeedEntryViewer.EntryHeader" {
|
||||
var exp: dojox.atom.widget.FeedEntryViewer.EntryHeader
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/atom/widget/FeedEntryEditor" {
|
||||
var exp: dojox.atom.widget.FeedEntryEditor
|
||||
export=exp;
|
||||
}
|
||||
|
||||
Vendored
+40
-7
@@ -1135,7 +1135,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -2069,7 +2069,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -2926,7 +2926,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -3761,7 +3761,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -4591,7 +4591,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -5469,7 +5469,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -5655,4 +5655,37 @@ declare module dojox {
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
declare module "dojox/av/_Media" {
|
||||
var exp: dojox.av._Media
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/av/FLAudio" {
|
||||
var exp: dojox.av.FLAudio
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/av/FLVideo" {
|
||||
var exp: dojox.av.FLVideo
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/av/widget/Player" {
|
||||
var exp: dojox.av.widget.Player
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/av/widget/ProgressSlider" {
|
||||
var exp: dojox.av.widget.ProgressSlider
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/av/widget/PlayButton" {
|
||||
var exp: dojox.av.widget.PlayButton
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/av/widget/Status" {
|
||||
var exp: dojox.av.widget.Status
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/av/widget/VolumeButton" {
|
||||
var exp: dojox.av.widget.VolumeButton
|
||||
export=exp;
|
||||
}
|
||||
|
||||
Vendored
+88
-15
@@ -810,7 +810,7 @@
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -1627,7 +1627,7 @@
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -2386,7 +2386,7 @@
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -3143,7 +3143,7 @@
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -4006,7 +4006,7 @@
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -4780,7 +4780,7 @@
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -5537,7 +5537,7 @@
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -6400,7 +6400,7 @@
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -7174,7 +7174,7 @@
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -7931,7 +7931,7 @@
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -8794,7 +8794,7 @@
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -9568,7 +9568,7 @@
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -10325,7 +10325,7 @@
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -11188,7 +11188,7 @@
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -11252,4 +11252,77 @@
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
declare module "dojox/calc/_Executor" {
|
||||
var exp: dojox.calc._Executor
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/calc/_Executor._Executor" {
|
||||
var exp: dojox.calc._Executor._Executor
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/calc/_Executor.FuncGen" {
|
||||
var exp: dojox.calc._Executor.FuncGen
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/calc/_Executor.Grapher" {
|
||||
var exp: dojox.calc._Executor.Grapher
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/calc/FuncGen" {
|
||||
var exp: dojox.calc.FuncGen
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/calc/FuncGen._Executor" {
|
||||
var exp: dojox.calc.FuncGen._Executor
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/calc/FuncGen.FuncGen" {
|
||||
var exp: dojox.calc.FuncGen.FuncGen
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/calc/FuncGen.Grapher" {
|
||||
var exp: dojox.calc.FuncGen.Grapher
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/calc/Grapher" {
|
||||
var exp: dojox.calc.Grapher
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/calc/Grapher._Executor" {
|
||||
var exp: dojox.calc.Grapher._Executor
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/calc/Grapher.FuncGen" {
|
||||
var exp: dojox.calc.Grapher.FuncGen
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/calc/Grapher.Grapher" {
|
||||
var exp: dojox.calc.Grapher.Grapher
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/calc/toFrac" {
|
||||
var exp: dojox.calc.toFrac
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/calc/toFrac._Executor" {
|
||||
var exp: dojox.calc.toFrac._Executor
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/calc/toFrac.FuncGen" {
|
||||
var exp: dojox.calc.toFrac.FuncGen
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/calc/toFrac.Grapher" {
|
||||
var exp: dojox.calc.toFrac.Grapher
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/calc/GraphPro" {
|
||||
var exp: dojox.calc.GraphPro
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/calc/Standard" {
|
||||
var exp: dojox.calc.Standard
|
||||
export=exp;
|
||||
}
|
||||
|
||||
Vendored
+106
-17
@@ -785,7 +785,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -2141,7 +2141,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -3663,7 +3663,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -4581,7 +4581,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -5347,7 +5347,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -6195,7 +6195,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -7552,7 +7552,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -8504,7 +8504,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -9276,7 +9276,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -10293,7 +10293,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -11701,7 +11701,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -13488,7 +13488,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -15348,7 +15348,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -17155,7 +17155,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -18870,7 +18870,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -20691,7 +20691,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -20921,4 +20921,93 @@ declare module dojox {
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
declare module "dojox/calendar/time" {
|
||||
var exp: dojox.calendar.time
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/calendar/_RendererMixin" {
|
||||
var exp: dojox.calendar._RendererMixin
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/calendar/_ScrollBarBase" {
|
||||
var exp: dojox.calendar._ScrollBarBase
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/calendar/ExpandRenderer" {
|
||||
var exp: dojox.calendar.ExpandRenderer
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/calendar/HorizontalRenderer" {
|
||||
var exp: dojox.calendar.HorizontalRenderer
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/calendar/Calendar" {
|
||||
var exp: dojox.calendar.Calendar
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/calendar/Keyboard" {
|
||||
var exp: dojox.calendar.Keyboard
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/calendar/CalendarBase" {
|
||||
var exp: dojox.calendar.CalendarBase
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/calendar/LabelRenderer" {
|
||||
var exp: dojox.calendar.LabelRenderer
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/calendar/MobileHorizontalRenderer" {
|
||||
var exp: dojox.calendar.MobileHorizontalRenderer
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/calendar/MobileVerticalRenderer" {
|
||||
var exp: dojox.calendar.MobileVerticalRenderer
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/calendar/Mouse" {
|
||||
var exp: dojox.calendar.Mouse
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/calendar/MobileCalendar" {
|
||||
var exp: dojox.calendar.MobileCalendar
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/calendar/StoreMixin" {
|
||||
var exp: dojox.calendar.StoreMixin
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/calendar/Touch" {
|
||||
var exp: dojox.calendar.Touch
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/calendar/MatrixView" {
|
||||
var exp: dojox.calendar.MatrixView
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/calendar/VerticalRenderer" {
|
||||
var exp: dojox.calendar.VerticalRenderer
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/calendar/MonthColumnView" {
|
||||
var exp: dojox.calendar.MonthColumnView
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/calendar/SimpleColumnView" {
|
||||
var exp: dojox.calendar.SimpleColumnView
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/calendar/ViewBase" {
|
||||
var exp: dojox.calendar.ViewBase
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/calendar/ColumnView" {
|
||||
var exp: dojox.calendar.ColumnView
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/calendar/ColumnViewSecondarySheet" {
|
||||
var exp: dojox.calendar.ColumnViewSecondarySheet
|
||||
export=exp;
|
||||
}
|
||||
|
||||
Vendored
+330
-5
@@ -11037,7 +11037,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -11717,7 +11717,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -12394,7 +12394,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -13080,7 +13080,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -13129,4 +13129,329 @@ declare module dojox {
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
declare module "dojox/charting/Chart3D" {
|
||||
var exp: dojox.charting.Chart3D
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/Chart2D" {
|
||||
var exp: dojox.charting.Chart2D
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/DataSeries" {
|
||||
var exp: dojox.charting.DataSeries
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/Chart" {
|
||||
var exp: dojox.charting.Chart
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/DataChart" {
|
||||
var exp: dojox.charting.DataChart
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/Element" {
|
||||
var exp: dojox.charting.Element
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/Series" {
|
||||
var exp: dojox.charting.Series
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/StoreSeries" {
|
||||
var exp: dojox.charting.StoreSeries
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/SimpleTheme" {
|
||||
var exp: dojox.charting.SimpleTheme
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/SimpleTheme.defaultMarkers" {
|
||||
var exp: dojox.charting.SimpleTheme.defaultMarkers
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/SimpleTheme.defaultTheme" {
|
||||
var exp: dojox.charting.SimpleTheme.defaultTheme
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/Theme" {
|
||||
var exp: dojox.charting.Theme
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/Theme.defaultMarkers" {
|
||||
var exp: dojox.charting.Theme.defaultMarkers
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/Theme.defaultTheme" {
|
||||
var exp: dojox.charting.Theme.defaultTheme
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/action2d/Base" {
|
||||
var exp: dojox.charting.action2d.Base
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/action2d/ChartAction" {
|
||||
var exp: dojox.charting.action2d.ChartAction
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/action2d/_IndicatorElement" {
|
||||
var exp: dojox.charting.action2d._IndicatorElement
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/action2d/Highlight" {
|
||||
var exp: dojox.charting.action2d.Highlight
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/action2d/Magnify" {
|
||||
var exp: dojox.charting.action2d.Magnify
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/action2d/MouseZoomAndPan" {
|
||||
var exp: dojox.charting.action2d.MouseZoomAndPan
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/action2d/MouseIndicator" {
|
||||
var exp: dojox.charting.action2d.MouseIndicator
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/action2d/MoveSlice" {
|
||||
var exp: dojox.charting.action2d.MoveSlice
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/action2d/PlotAction" {
|
||||
var exp: dojox.charting.action2d.PlotAction
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/action2d/Tooltip" {
|
||||
var exp: dojox.charting.action2d.Tooltip
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/action2d/Shake" {
|
||||
var exp: dojox.charting.action2d.Shake
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/action2d/TouchZoomAndPan" {
|
||||
var exp: dojox.charting.action2d.TouchZoomAndPan
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/action2d/TouchIndicator" {
|
||||
var exp: dojox.charting.action2d.TouchIndicator
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/axis2d/common" {
|
||||
var exp: dojox.charting.axis2d.common
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/axis2d/common.createText" {
|
||||
var exp: dojox.charting.axis2d.common.createText
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/axis2d/Base" {
|
||||
var exp: dojox.charting.axis2d.Base
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/axis2d/Invisible" {
|
||||
var exp: dojox.charting.axis2d.Invisible
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/axis2d/Default" {
|
||||
var exp: dojox.charting.axis2d.Default
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/bidi/_bidiutils" {
|
||||
var exp: dojox.charting.bidi._bidiutils
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/bidi/Chart" {
|
||||
var exp: dojox.charting.bidi.Chart
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/bidi/Chart3D" {
|
||||
var exp: dojox.charting.bidi.Chart3D
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/bidi/action2d/Tooltip" {
|
||||
var exp: dojox.charting.bidi.action2d.Tooltip
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/bidi/action2d/ZoomAndPan" {
|
||||
var exp: dojox.charting.bidi.action2d.ZoomAndPan
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/bidi/axis2d/Default" {
|
||||
var exp: dojox.charting.bidi.axis2d.Default
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/bidi/widget/Chart" {
|
||||
var exp: dojox.charting.bidi.widget.Chart
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/bidi/widget/Legend" {
|
||||
var exp: dojox.charting.bidi.widget.Legend
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/plot2d/common" {
|
||||
var exp: dojox.charting.plot2d.common
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/plot2d/common.defaultStats" {
|
||||
var exp: dojox.charting.plot2d.common.defaultStats
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/plot2d/commonStacked" {
|
||||
var exp: dojox.charting.plot2d.commonStacked
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/plot2d/_PlotEvents" {
|
||||
var exp: dojox.charting.plot2d._PlotEvents
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/plot2d/Areas" {
|
||||
var exp: dojox.charting.plot2d.Areas
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/plot2d/Bars" {
|
||||
var exp: dojox.charting.plot2d.Bars
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/plot2d/Base" {
|
||||
var exp: dojox.charting.plot2d.Base
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/plot2d/Bubble" {
|
||||
var exp: dojox.charting.plot2d.Bubble
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/plot2d/CartesianBase" {
|
||||
var exp: dojox.charting.plot2d.CartesianBase
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/plot2d/Candlesticks" {
|
||||
var exp: dojox.charting.plot2d.Candlesticks
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/plot2d/ClusteredBars" {
|
||||
var exp: dojox.charting.plot2d.ClusteredBars
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/plot2d/ClusteredColumns" {
|
||||
var exp: dojox.charting.plot2d.ClusteredColumns
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/plot2d/Columns" {
|
||||
var exp: dojox.charting.plot2d.Columns
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/plot2d/Grid" {
|
||||
var exp: dojox.charting.plot2d.Grid
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/plot2d/Default" {
|
||||
var exp: dojox.charting.plot2d.Default
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/plot2d/Indicator" {
|
||||
var exp: dojox.charting.plot2d.Indicator
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/plot2d/Lines" {
|
||||
var exp: dojox.charting.plot2d.Lines
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/plot2d/Markers" {
|
||||
var exp: dojox.charting.plot2d.Markers
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/plot2d/Pie" {
|
||||
var exp: dojox.charting.plot2d.Pie
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/plot2d/MarkersOnly" {
|
||||
var exp: dojox.charting.plot2d.MarkersOnly
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/plot2d/OHLC" {
|
||||
var exp: dojox.charting.plot2d.OHLC
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/plot2d/Scatter" {
|
||||
var exp: dojox.charting.plot2d.Scatter
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/plot2d/Stacked" {
|
||||
var exp: dojox.charting.plot2d.Stacked
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/plot2d/Spider" {
|
||||
var exp: dojox.charting.plot2d.Spider
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/plot2d/StackedAreas" {
|
||||
var exp: dojox.charting.plot2d.StackedAreas
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/plot2d/StackedBars" {
|
||||
var exp: dojox.charting.plot2d.StackedBars
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/plot2d/StackedColumns" {
|
||||
var exp: dojox.charting.plot2d.StackedColumns
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/plot2d/StackedLines" {
|
||||
var exp: dojox.charting.plot2d.StackedLines
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/plot3d/Bars" {
|
||||
var exp: dojox.charting.plot3d.Bars
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/plot3d/Base" {
|
||||
var exp: dojox.charting.plot3d.Base
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/plot3d/Cylinders" {
|
||||
var exp: dojox.charting.plot3d.Cylinders
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/scaler/common" {
|
||||
var exp: dojox.charting.scaler.common
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/scaler/primitive" {
|
||||
var exp: dojox.charting.scaler.primitive
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/scaler/linear" {
|
||||
var exp: dojox.charting.scaler.linear
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/themes/common" {
|
||||
var exp: dojox.charting.themes.common
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/themes/gradientGenerator" {
|
||||
var exp: dojox.charting.themes.gradientGenerator
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/themes/PlotKit/base" {
|
||||
var exp: dojox.charting.themes.PlotKit.base
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/widget/Chart2D" {
|
||||
var exp: dojox.charting.widget.Chart2D
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/widget/Chart" {
|
||||
var exp: dojox.charting.widget.Chart
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/widget/Legend" {
|
||||
var exp: dojox.charting.widget.Legend
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/charting/widget/SelectableLegend" {
|
||||
var exp: dojox.charting.widget.SelectableLegend
|
||||
export=exp;
|
||||
}
|
||||
|
||||
Vendored
+38
-1
@@ -158,4 +158,41 @@ declare module dojox {
|
||||
interface Stack{(arr?: any[]): void}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
declare module "dojox/collections" {
|
||||
var exp: dojox.collections
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/collections/ArrayList" {
|
||||
var exp: dojox.collections.ArrayList
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/collections/BinaryTree" {
|
||||
var exp: dojox.collections.BinaryTree
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/collections/BinaryTree.TraversalMethods" {
|
||||
var exp: dojox.collections.BinaryTree.TraversalMethods
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/collections/Dictionary" {
|
||||
var exp: dojox.collections.Dictionary
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/collections/Queue" {
|
||||
var exp: dojox.collections.Queue
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/collections/Stack" {
|
||||
var exp: dojox.collections.Stack
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/collections/SortedList" {
|
||||
var exp: dojox.collections.SortedList
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/collections/_base" {
|
||||
var exp: dojox.collections._base
|
||||
export=exp;
|
||||
}
|
||||
|
||||
Vendored
+30
-1
@@ -349,4 +349,33 @@ declare module dojox {
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
declare module "dojox/color" {
|
||||
var exp: dojox.color
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/color/MeanColorModel" {
|
||||
var exp: dojox.color.MeanColorModel
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/color/NeutralColorModel" {
|
||||
var exp: dojox.color.NeutralColorModel
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/color/SimpleColorModel" {
|
||||
var exp: dojox.color.SimpleColorModel
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/color/Palette" {
|
||||
var exp: dojox.color.Palette
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/color/Palette.generators" {
|
||||
var exp: dojox.color.Palette.generators
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/color/api/ColorModel" {
|
||||
var exp: dojox.color.api.ColorModel
|
||||
export=exp;
|
||||
}
|
||||
|
||||
Vendored
+26
-1
@@ -218,4 +218,29 @@ declare module dojox {
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
declare module "dojox/css3/transit" {
|
||||
var exp: dojox.css3.transit
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/css3/transition" {
|
||||
var exp: dojox.css3.transition
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/css3/transition.endState" {
|
||||
var exp: dojox.css3.transition.endState
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/css3/transition.playing" {
|
||||
var exp: dojox.css3.transition.playing
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/css3/transition.startState" {
|
||||
var exp: dojox.css3.transition.startState
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/css3/fx" {
|
||||
var exp: dojox.css3.fx
|
||||
export=exp;
|
||||
}
|
||||
|
||||
Vendored
+182
-1
@@ -6597,4 +6597,185 @@ declare module dojox {
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
declare module "dojox/data/restListener" {
|
||||
var exp: dojox.data.restListener
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/data/css" {
|
||||
var exp: dojox.data.css
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/data/css.rules" {
|
||||
var exp: dojox.data.css.rules
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/data/dom" {
|
||||
var exp: dojox.data.dom
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/data/GoogleSearchStore" {
|
||||
var exp: dojox.data.GoogleSearchStore
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/data/GoogleSearchStore.ImageSearch" {
|
||||
var exp: dojox.data.GoogleSearchStore.ImageSearch
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/data/GoogleSearchStore.BookSearch" {
|
||||
var exp: dojox.data.GoogleSearchStore.BookSearch
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/data/GoogleSearchStore.LocalSearch" {
|
||||
var exp: dojox.data.GoogleSearchStore.LocalSearch
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/data/GoogleSearchStore.BlogSearch" {
|
||||
var exp: dojox.data.GoogleSearchStore.BlogSearch
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/data/GoogleSearchStore.VideoSearch" {
|
||||
var exp: dojox.data.GoogleSearchStore.VideoSearch
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/data/GoogleSearchStore.Search" {
|
||||
var exp: dojox.data.GoogleSearchStore.Search
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/data/GoogleSearchStore.WebSearch" {
|
||||
var exp: dojox.data.GoogleSearchStore.WebSearch
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/data/GoogleSearchStore.NewsSearch" {
|
||||
var exp: dojox.data.GoogleSearchStore.NewsSearch
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/data/AndOrReadStore" {
|
||||
var exp: dojox.data.AndOrReadStore
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/data/AppStore" {
|
||||
var exp: dojox.data.AppStore
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/data/AndOrWriteStore" {
|
||||
var exp: dojox.data.AndOrWriteStore
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/data/AtomReadStore" {
|
||||
var exp: dojox.data.AtomReadStore
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/data/ClientFilter" {
|
||||
var exp: dojox.data.ClientFilter
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/data/CouchDBRestStore" {
|
||||
var exp: dojox.data.CouchDBRestStore
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/data/CdfStore" {
|
||||
var exp: dojox.data.CdfStore
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/data/CssRuleStore" {
|
||||
var exp: dojox.data.CssRuleStore
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/data/CssClassStore" {
|
||||
var exp: dojox.data.CssClassStore
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/data/CsvStore" {
|
||||
var exp: dojox.data.CsvStore
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/data/FileStore" {
|
||||
var exp: dojox.data.FileStore
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/data/FlickrRestStore" {
|
||||
var exp: dojox.data.FlickrRestStore
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/data/GoogleFeedStore" {
|
||||
var exp: dojox.data.GoogleFeedStore
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/data/FlickrStore" {
|
||||
var exp: dojox.data.FlickrStore
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/data/HtmlStore" {
|
||||
var exp: dojox.data.HtmlStore
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/data/HtmlTableStore" {
|
||||
var exp: dojox.data.HtmlTableStore
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/data/KeyValueStore" {
|
||||
var exp: dojox.data.KeyValueStore
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/data/JsonRestStore" {
|
||||
var exp: dojox.data.JsonRestStore
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/data/JsonQueryRestStore" {
|
||||
var exp: dojox.data.JsonQueryRestStore
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/data/PersevereStore" {
|
||||
var exp: dojox.data.PersevereStore
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/data/OpenSearchStore" {
|
||||
var exp: dojox.data.OpenSearchStore
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/data/PicasaStore" {
|
||||
var exp: dojox.data.PicasaStore
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/data/OpmlStore" {
|
||||
var exp: dojox.data.OpmlStore
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/data/RailsStore" {
|
||||
var exp: dojox.data.RailsStore
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/data/QueryReadStore" {
|
||||
var exp: dojox.data.QueryReadStore
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/data/S3Store" {
|
||||
var exp: dojox.data.S3Store
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/data/SnapLogicStore" {
|
||||
var exp: dojox.data.SnapLogicStore
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/data/XmlItem" {
|
||||
var exp: dojox.data.XmlItem
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/data/ServiceStore" {
|
||||
var exp: dojox.data.ServiceStore
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/data/WikipediaStore" {
|
||||
var exp: dojox.data.WikipediaStore
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/data/XmlStore" {
|
||||
var exp: dojox.data.XmlStore
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/data/util/JsonQuery" {
|
||||
var exp: dojox.data.util.JsonQuery
|
||||
export=exp;
|
||||
}
|
||||
|
||||
Vendored
+83
-6
@@ -161,7 +161,7 @@ declare module dojox {
|
||||
* This returns a string representation of the date in "dd, MM, YYYY HH:MM:SS" format
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
*
|
||||
*/
|
||||
@@ -430,7 +430,7 @@ declare module dojox {
|
||||
* dependencies on dojox.date.locale and dojo.cldr.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
*
|
||||
*/
|
||||
@@ -697,7 +697,7 @@ declare module dojox {
|
||||
* This returns a string representation of the date in "DDDD MMMM DD YYYY HH:MM:SS" format
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* This function returns The stored time value in milliseconds
|
||||
* since midnight, January 1, 1970 UTC
|
||||
@@ -972,7 +972,7 @@ declare module dojox {
|
||||
* This returns a string representation of the date in "DDDD MMMM DD YYYY HH:MM:SS" format
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* This function returns The stored time value in milliseconds
|
||||
* since midnight, January 1, 1970 UTC
|
||||
@@ -1195,7 +1195,7 @@ declare module dojox {
|
||||
* This returns a string representation of the date in "DDDD MMMM DD YYYY HH:MM:SS" format
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* This function returns the stored time value in milliseconds
|
||||
* since midnight, January 1, 1970 UTC
|
||||
@@ -1361,4 +1361,81 @@ declare module dojox {
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
declare module "dojox/date/buddhist" {
|
||||
var exp: dojox.date.buddhist
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/date/buddhist/Date" {
|
||||
var exp: dojox.date.buddhist.Date
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/date/buddhist/locale" {
|
||||
var exp: dojox.date.buddhist.locale
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/date/hebrew" {
|
||||
var exp: dojox.date.hebrew
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/date/hebrew/Date" {
|
||||
var exp: dojox.date.hebrew.Date
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/date/hebrew/locale" {
|
||||
var exp: dojox.date.hebrew.locale
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/date/hebrew/numerals" {
|
||||
var exp: dojox.date.hebrew.numerals
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/date/islamic" {
|
||||
var exp: dojox.date.islamic
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/date/islamic/Date" {
|
||||
var exp: dojox.date.islamic.Date
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/date/islamic/locale" {
|
||||
var exp: dojox.date.islamic.locale
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/date/persian" {
|
||||
var exp: dojox.date.persian
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/date/persian/Date" {
|
||||
var exp: dojox.date.persian.Date
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/date/persian/locale" {
|
||||
var exp: dojox.date.persian.locale
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/date/umalqura" {
|
||||
var exp: dojox.date.umalqura
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/date/umalqura/Date" {
|
||||
var exp: dojox.date.umalqura.Date
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/date/umalqura/locale" {
|
||||
var exp: dojox.date.umalqura.locale
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/date/php" {
|
||||
var exp: dojox.date.php
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/date/posix" {
|
||||
var exp: dojox.date.posix
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/date/relative" {
|
||||
var exp: dojox.date.relative
|
||||
export=exp;
|
||||
}
|
||||
|
||||
Vendored
+185
-24
@@ -1118,7 +1118,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -2462,7 +2462,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -4309,7 +4309,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -5382,7 +5382,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -6252,7 +6252,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -7117,7 +7117,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -7987,7 +7987,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -8860,7 +8860,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -9725,7 +9725,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -10590,7 +10590,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -11460,7 +11460,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -12328,7 +12328,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -13198,7 +13198,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -14063,7 +14063,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -14933,7 +14933,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -15801,7 +15801,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -16671,7 +16671,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -17536,7 +17536,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -18406,7 +18406,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -19276,7 +19276,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -20143,7 +20143,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -21013,7 +21013,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -21883,7 +21883,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -21988,4 +21988,165 @@ declare module dojox {
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
declare module "dojox/dgauges/_circularUtils" {
|
||||
var exp: dojox.dgauges._circularUtils
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dgauges/CircularScale" {
|
||||
var exp: dojox.dgauges.CircularScale
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dgauges/CircularValueIndicator" {
|
||||
var exp: dojox.dgauges.CircularValueIndicator
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dgauges/CircularGauge" {
|
||||
var exp: dojox.dgauges.CircularGauge
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dgauges/CircularRangeIndicator" {
|
||||
var exp: dojox.dgauges.CircularRangeIndicator
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dgauges/IndicatorBase" {
|
||||
var exp: dojox.dgauges.IndicatorBase
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dgauges/LinearScaler" {
|
||||
var exp: dojox.dgauges.LinearScaler
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dgauges/LogScaler" {
|
||||
var exp: dojox.dgauges.LogScaler
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dgauges/MultiLinearScaler" {
|
||||
var exp: dojox.dgauges.MultiLinearScaler
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dgauges/GaugeBase" {
|
||||
var exp: dojox.dgauges.GaugeBase
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dgauges/RectangularScale" {
|
||||
var exp: dojox.dgauges.RectangularScale
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dgauges/RectangularSegmentedRangeIndicator" {
|
||||
var exp: dojox.dgauges.RectangularSegmentedRangeIndicator
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dgauges/RectangularRangeIndicator" {
|
||||
var exp: dojox.dgauges.RectangularRangeIndicator
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dgauges/RectangularValueIndicator" {
|
||||
var exp: dojox.dgauges.RectangularValueIndicator
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dgauges/ScaleBase" {
|
||||
var exp: dojox.dgauges.ScaleBase
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dgauges/TextIndicator" {
|
||||
var exp: dojox.dgauges.TextIndicator
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dgauges/ScaleIndicatorBase" {
|
||||
var exp: dojox.dgauges.ScaleIndicatorBase
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dgauges/RectangularGauge" {
|
||||
var exp: dojox.dgauges.RectangularGauge
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dgauges/components/utils" {
|
||||
var exp: dojox.dgauges.components.utils
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dgauges/components/DefaultPropertiesMixin" {
|
||||
var exp: dojox.dgauges.components.DefaultPropertiesMixin
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dgauges/components/black/CircularLinearGauge" {
|
||||
var exp: dojox.dgauges.components.black.CircularLinearGauge
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dgauges/components/black/SemiCircularLinearGauge" {
|
||||
var exp: dojox.dgauges.components.black.SemiCircularLinearGauge
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dgauges/components/black/HorizontalLinearGauge" {
|
||||
var exp: dojox.dgauges.components.black.HorizontalLinearGauge
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dgauges/components/black/VerticalLinearGauge" {
|
||||
var exp: dojox.dgauges.components.black.VerticalLinearGauge
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dgauges/components/classic/CircularLinearGauge" {
|
||||
var exp: dojox.dgauges.components.classic.CircularLinearGauge
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dgauges/components/classic/HorizontalLinearGauge" {
|
||||
var exp: dojox.dgauges.components.classic.HorizontalLinearGauge
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dgauges/components/classic/VerticalLinearGauge" {
|
||||
var exp: dojox.dgauges.components.classic.VerticalLinearGauge
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dgauges/components/classic/SemiCircularLinearGauge" {
|
||||
var exp: dojox.dgauges.components.classic.SemiCircularLinearGauge
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dgauges/components/default/CircularLinearGauge" {
|
||||
var exp: dojox.dgauges.components.default_.CircularLinearGauge
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dgauges/components/default/HorizontalLinearGauge" {
|
||||
var exp: dojox.dgauges.components.default_.HorizontalLinearGauge
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dgauges/components/default/SemiCircularLinearGauge" {
|
||||
var exp: dojox.dgauges.components.default_.SemiCircularLinearGauge
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dgauges/components/default/VerticalLinearGauge" {
|
||||
var exp: dojox.dgauges.components.default_.VerticalLinearGauge
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dgauges/components/green/HorizontalLinearGauge" {
|
||||
var exp: dojox.dgauges.components.green.HorizontalLinearGauge
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dgauges/components/green/CircularLinearGauge" {
|
||||
var exp: dojox.dgauges.components.green.CircularLinearGauge
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dgauges/components/green/SemiCircularLinearGauge" {
|
||||
var exp: dojox.dgauges.components.green.SemiCircularLinearGauge
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dgauges/components/green/VerticalLinearGauge" {
|
||||
var exp: dojox.dgauges.components.green.VerticalLinearGauge
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dgauges/components/grey/CircularLinearGauge" {
|
||||
var exp: dojox.dgauges.components.grey.CircularLinearGauge
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dgauges/components/grey/SemiCircularLinearGauge" {
|
||||
var exp: dojox.dgauges.components.grey.SemiCircularLinearGauge
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dgauges/components/grey/HorizontalLinearGauge" {
|
||||
var exp: dojox.dgauges.components.grey.HorizontalLinearGauge
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dgauges/components/grey/VerticalLinearGauge" {
|
||||
var exp: dojox.dgauges.components.grey.VerticalLinearGauge
|
||||
export=exp;
|
||||
}
|
||||
|
||||
Vendored
+9
-1
@@ -318,4 +318,12 @@ declare module dojox {
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
declare module "dojox/dnd/BoundingBoxController" {
|
||||
var exp: dojox.dnd.BoundingBoxController
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dnd/Selector" {
|
||||
var exp: dojox.dnd.Selector
|
||||
export=exp;
|
||||
}
|
||||
|
||||
Vendored
+399
-2
@@ -4620,7 +4620,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -14195,4 +14195,401 @@ declare module dojox {
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
declare module "dojox/drawing" {
|
||||
var exp: dojox.drawing
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/_base" {
|
||||
var exp: dojox.drawing._base
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/Drawing" {
|
||||
var exp: dojox.drawing.Drawing
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/defaults" {
|
||||
var exp: dojox.drawing.defaults
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/defaults.arrows" {
|
||||
var exp: dojox.drawing.defaults.arrows
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/defaults.disabled" {
|
||||
var exp: dojox.drawing.defaults.disabled
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/defaults.anchors" {
|
||||
var exp: dojox.drawing.defaults.anchors
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/defaults.highlighted" {
|
||||
var exp: dojox.drawing.defaults.highlighted
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/defaults.button" {
|
||||
var exp: dojox.drawing.defaults.button
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/defaults.hitSelected" {
|
||||
var exp: dojox.drawing.defaults.hitSelected
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/defaults.hitNorm" {
|
||||
var exp: dojox.drawing.defaults.hitNorm
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/defaults.hitHighlighted" {
|
||||
var exp: dojox.drawing.defaults.hitHighlighted
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/defaults.selected" {
|
||||
var exp: dojox.drawing.defaults.selected
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/defaults.norm" {
|
||||
var exp: dojox.drawing.defaults.norm
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/defaults.textMode" {
|
||||
var exp: dojox.drawing.defaults.textMode
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/defaults.textDisabled" {
|
||||
var exp: dojox.drawing.defaults.textDisabled
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/defaults.text" {
|
||||
var exp: dojox.drawing.defaults.text
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/annotations/Label" {
|
||||
var exp: dojox.drawing.annotations.Label
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/annotations/Label.Label" {
|
||||
var exp: dojox.drawing.annotations.Label.Label
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/annotations/Angle" {
|
||||
var exp: dojox.drawing.annotations.Angle
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/annotations/BoxShadow" {
|
||||
var exp: dojox.drawing.annotations.BoxShadow
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/annotations/Arrow" {
|
||||
var exp: dojox.drawing.annotations.Arrow
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/library/icons" {
|
||||
var exp: dojox.drawing.library.icons
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/library/icons.ellipse" {
|
||||
var exp: dojox.drawing.library.icons.ellipse
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/library/icons.arrow" {
|
||||
var exp: dojox.drawing.library.icons.arrow
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/library/icons.axes" {
|
||||
var exp: dojox.drawing.library.icons.axes
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/library/icons.pan" {
|
||||
var exp: dojox.drawing.library.icons.pan
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/library/icons.line" {
|
||||
var exp: dojox.drawing.library.icons.line
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/library/icons.path" {
|
||||
var exp: dojox.drawing.library.icons.path
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/library/icons.equation" {
|
||||
var exp: dojox.drawing.library.icons.equation
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/library/icons.iconize" {
|
||||
var exp: dojox.drawing.library.icons.iconize
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/library/icons.pencil" {
|
||||
var exp: dojox.drawing.library.icons.pencil
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/library/icons.plus" {
|
||||
var exp: dojox.drawing.library.icons.plus
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/library/icons.triangle" {
|
||||
var exp: dojox.drawing.library.icons.triangle
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/library/icons.vector" {
|
||||
var exp: dojox.drawing.library.icons.vector
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/library/icons.rect" {
|
||||
var exp: dojox.drawing.library.icons.rect
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/library/icons.zoom100" {
|
||||
var exp: dojox.drawing.library.icons.zoom100
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/library/icons.textBlock" {
|
||||
var exp: dojox.drawing.library.icons.textBlock
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/library/icons.zoomIn" {
|
||||
var exp: dojox.drawing.library.icons.zoomIn
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/library/icons.zoomOut" {
|
||||
var exp: dojox.drawing.library.icons.zoomOut
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/library/greek" {
|
||||
var exp: dojox.drawing.library.greek
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/manager/_registry" {
|
||||
var exp: dojox.drawing.manager._registry
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/manager/keys" {
|
||||
var exp: dojox.drawing.manager.keys
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/manager/Anchors" {
|
||||
var exp: dojox.drawing.manager.Anchors
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/manager/Canvas" {
|
||||
var exp: dojox.drawing.manager.Canvas
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/manager/StencilUI" {
|
||||
var exp: dojox.drawing.manager.StencilUI
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/manager/Undo" {
|
||||
var exp: dojox.drawing.manager.Undo
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/manager/Mouse" {
|
||||
var exp: dojox.drawing.manager.Mouse
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/manager/Stencil" {
|
||||
var exp: dojox.drawing.manager.Stencil
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/plugins/_Plugin" {
|
||||
var exp: dojox.drawing.plugins._Plugin
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/plugins/drawing/Grid" {
|
||||
var exp: dojox.drawing.plugins.drawing.Grid
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/plugins/drawing/GreekPalette" {
|
||||
var exp: dojox.drawing.plugins.drawing.GreekPalette
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/plugins/tools/Zoom" {
|
||||
var exp: dojox.drawing.plugins.tools.Zoom
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/plugins/tools/Zoom.Zoom100" {
|
||||
var exp: dojox.drawing.plugins.tools.Zoom.Zoom100
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/plugins/tools/Zoom.ZoomOut" {
|
||||
var exp: dojox.drawing.plugins.tools.Zoom.ZoomOut
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/plugins/tools/Zoom.ZoomIn" {
|
||||
var exp: dojox.drawing.plugins.tools.Zoom.ZoomIn
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/plugins/tools/Iconize" {
|
||||
var exp: dojox.drawing.plugins.tools.Iconize
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/plugins/tools/Iconize.setup" {
|
||||
var exp: dojox.drawing.plugins.tools.Iconize.setup
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/plugins/tools/Pan" {
|
||||
var exp: dojox.drawing.plugins.tools.Pan
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/plugins/tools/Pan.setup" {
|
||||
var exp: dojox.drawing.plugins.tools.Pan.setup
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/stencil/_Base" {
|
||||
var exp: dojox.drawing.stencil._Base
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/stencil/Line" {
|
||||
var exp: dojox.drawing.stencil.Line
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/stencil/Ellipse" {
|
||||
var exp: dojox.drawing.stencil.Ellipse
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/stencil/Path" {
|
||||
var exp: dojox.drawing.stencil.Path
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/stencil/Rect" {
|
||||
var exp: dojox.drawing.stencil.Rect
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/stencil/Image" {
|
||||
var exp: dojox.drawing.stencil.Image
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/stencil/Text" {
|
||||
var exp: dojox.drawing.stencil.Text
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/tools/Arrow" {
|
||||
var exp: dojox.drawing.tools.Arrow
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/tools/Arrow.setup" {
|
||||
var exp: dojox.drawing.tools.Arrow.setup
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/tools/Ellipse" {
|
||||
var exp: dojox.drawing.tools.Ellipse
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/tools/Ellipse.setup" {
|
||||
var exp: dojox.drawing.tools.Ellipse.setup
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/tools/Pencil" {
|
||||
var exp: dojox.drawing.tools.Pencil
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/tools/Pencil.setup" {
|
||||
var exp: dojox.drawing.tools.Pencil.setup
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/tools/Rect" {
|
||||
var exp: dojox.drawing.tools.Rect
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/tools/Rect.setup" {
|
||||
var exp: dojox.drawing.tools.Rect.setup
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/tools/Path" {
|
||||
var exp: dojox.drawing.tools.Path
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/tools/Path.setup" {
|
||||
var exp: dojox.drawing.tools.Path.setup
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/tools/Line" {
|
||||
var exp: dojox.drawing.tools.Line
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/tools/Line.setup" {
|
||||
var exp: dojox.drawing.tools.Line.setup
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/tools/TextBlock" {
|
||||
var exp: dojox.drawing.tools.TextBlock
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/tools/TextBlock.setup" {
|
||||
var exp: dojox.drawing.tools.TextBlock.setup
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/tools/custom/Axes" {
|
||||
var exp: dojox.drawing.tools.custom.Axes
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/tools/custom/Axes.setup" {
|
||||
var exp: dojox.drawing.tools.custom.Axes.setup
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/tools/custom/Vector" {
|
||||
var exp: dojox.drawing.tools.custom.Vector
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/tools/custom/Vector.setup" {
|
||||
var exp: dojox.drawing.tools.custom.Vector.setup
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/tools/custom/Equation" {
|
||||
var exp: dojox.drawing.tools.custom.Equation
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/tools/custom/Equation.setup" {
|
||||
var exp: dojox.drawing.tools.custom.Equation.setup
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/ui/Button" {
|
||||
var exp: dojox.drawing.ui.Button
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/ui/Toolbar" {
|
||||
var exp: dojox.drawing.ui.Toolbar
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/ui/Tooltip" {
|
||||
var exp: dojox.drawing.ui.Tooltip
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/ui/dom/Toolbar" {
|
||||
var exp: dojox.drawing.ui.dom.Toolbar
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/ui/dom/Pan" {
|
||||
var exp: dojox.drawing.ui.dom.Pan
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/ui/dom/Pan.setup" {
|
||||
var exp: dojox.drawing.ui.dom.Pan.setup
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/ui/dom/Zoom" {
|
||||
var exp: dojox.drawing.ui.dom.Zoom
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/util/positioning" {
|
||||
var exp: dojox.drawing.util.positioning
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/util/oo" {
|
||||
var exp: dojox.drawing.util.oo
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/util/typeset" {
|
||||
var exp: dojox.drawing.util.typeset
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/util/common" {
|
||||
var exp: dojox.drawing.util.common
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/drawing/util/common.objects" {
|
||||
var exp: dojox.drawing.util.common.objects
|
||||
export=exp;
|
||||
}
|
||||
|
||||
Vendored
+212
-3
@@ -1219,7 +1219,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String
|
||||
toString(): string
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -1823,7 +1823,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String
|
||||
toString(): string
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -4047,4 +4047,213 @@ declare module dojox {
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
declare module "dojox/dtl" {
|
||||
var exp: dojox.dtl
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dtl/_Templated" {
|
||||
var exp: dojox.dtl._Templated
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dtl/Context" {
|
||||
var exp: dojox.dtl.Context
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dtl/_DomTemplated" {
|
||||
var exp: dojox.dtl._DomTemplated
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dtl/DomInline" {
|
||||
var exp: dojox.dtl.DomInline
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dtl/Inline" {
|
||||
var exp: dojox.dtl.Inline
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dtl/_base" {
|
||||
var exp: dojox.dtl._base
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dtl/_base._base" {
|
||||
var exp: dojox.dtl._base._base
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dtl/_base.BOOLS" {
|
||||
var exp: dojox.dtl._base.BOOLS
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dtl/_base.data" {
|
||||
var exp: dojox.dtl._base.data
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dtl/_base.date" {
|
||||
var exp: dojox.dtl._base.date
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dtl/_base.dates" {
|
||||
var exp: dojox.dtl._base.dates
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dtl/_base.dijit" {
|
||||
var exp: dojox.dtl._base.dijit
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dtl/_base.html" {
|
||||
var exp: dojox.dtl._base.html
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dtl/_base.htmlstrings" {
|
||||
var exp: dojox.dtl._base.htmlstrings
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dtl/_base.dom" {
|
||||
var exp: dojox.dtl._base.dom
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dtl/_base.integers" {
|
||||
var exp: dojox.dtl._base.integers
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dtl/_base.logic" {
|
||||
var exp: dojox.dtl._base.logic
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dtl/_base.loader" {
|
||||
var exp: dojox.dtl._base.loader
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dtl/_base.loop" {
|
||||
var exp: dojox.dtl._base.loop
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dtl/_base.misc" {
|
||||
var exp: dojox.dtl._base.misc
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dtl/_base.objects" {
|
||||
var exp: dojox.dtl._base.objects
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dtl/_base.strings" {
|
||||
var exp: dojox.dtl._base.strings
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dtl/_base.register" {
|
||||
var exp: dojox.dtl._base.register
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dtl/_base.text" {
|
||||
var exp: dojox.dtl._base.text
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dtl/dom" {
|
||||
var exp: dojox.dtl.dom
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dtl/dom._uppers" {
|
||||
var exp: dojox.dtl.dom._uppers
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dtl/dom._attributes" {
|
||||
var exp: dojox.dtl.dom._attributes
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dtl/contrib/data" {
|
||||
var exp: dojox.dtl.contrib.data
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dtl/contrib/objects" {
|
||||
var exp: dojox.dtl.contrib.objects
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dtl/contrib/dom" {
|
||||
var exp: dojox.dtl.contrib.dom
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dtl/contrib/dijit" {
|
||||
var exp: dojox.dtl.contrib.dijit
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dtl/ext-dojo/NodeList" {
|
||||
var exp: dojox.dtl.ext_dojo.NodeList
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dtl/ext-dojo/NodeList._nodeDataCache" {
|
||||
var exp: dojox.dtl.ext_dojo.NodeList._nodeDataCache
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dtl/filter/dates" {
|
||||
var exp: dojox.dtl.filter.dates
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dtl/filter/htmlstrings" {
|
||||
var exp: dojox.dtl.filter.htmlstrings
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dtl/filter/integers" {
|
||||
var exp: dojox.dtl.filter.integers
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dtl/filter/logic" {
|
||||
var exp: dojox.dtl.filter.logic
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dtl/filter/misc" {
|
||||
var exp: dojox.dtl.filter.misc
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dtl/filter/misc._phone2numeric" {
|
||||
var exp: dojox.dtl.filter.misc._phone2numeric
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dtl/filter/lists" {
|
||||
var exp: dojox.dtl.filter.lists
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dtl/filter/strings" {
|
||||
var exp: dojox.dtl.filter.strings
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dtl/filter/strings._strings" {
|
||||
var exp: dojox.dtl.filter.strings._strings
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dtl/filter/strings._truncate_singlets" {
|
||||
var exp: dojox.dtl.filter.strings._truncate_singlets
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dtl/render/html" {
|
||||
var exp: dojox.dtl.render.html
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dtl/render/dom" {
|
||||
var exp: dojox.dtl.render.dom
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dtl/tag/date" {
|
||||
var exp: dojox.dtl.tag.date
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dtl/tag/loader" {
|
||||
var exp: dojox.dtl.tag.loader
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dtl/tag/logic" {
|
||||
var exp: dojox.dtl.tag.logic
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dtl/tag/loop" {
|
||||
var exp: dojox.dtl.tag.loop
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dtl/tag/misc" {
|
||||
var exp: dojox.dtl.tag.misc
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/dtl/utils/date" {
|
||||
var exp: dojox.dtl.utils.date
|
||||
export=exp;
|
||||
}
|
||||
|
||||
Vendored
+183
-14
@@ -1235,7 +1235,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -2225,7 +2225,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -3196,7 +3196,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -4090,7 +4090,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -5121,7 +5121,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -5942,7 +5942,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -6790,7 +6790,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -7716,7 +7716,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -9832,7 +9832,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -12047,7 +12047,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -13008,7 +13008,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -13967,7 +13967,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -15154,7 +15154,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -15302,4 +15302,173 @@ declare module dojox {
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
declare module "dojox/editor/plugins/_SpellCheckParser" {
|
||||
var exp: dojox.editor.plugins._SpellCheckParser
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/editor/plugins/AutoSave" {
|
||||
var exp: dojox.editor.plugins.AutoSave
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/editor/plugins/AutoSave._AutoSaveSettingDialog" {
|
||||
var exp: dojox.editor.plugins.AutoSave._AutoSaveSettingDialog
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/editor/plugins/Blockquote" {
|
||||
var exp: dojox.editor.plugins.Blockquote
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/editor/plugins/AutoUrlLink" {
|
||||
var exp: dojox.editor.plugins.AutoUrlLink
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/editor/plugins/Breadcrumb" {
|
||||
var exp: dojox.editor.plugins.Breadcrumb
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/editor/plugins/Breadcrumb._BreadcrumbMenuTitle" {
|
||||
var exp: dojox.editor.plugins.Breadcrumb._BreadcrumbMenuTitle
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/editor/plugins/CollapsibleToolbar" {
|
||||
var exp: dojox.editor.plugins.CollapsibleToolbar
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/editor/plugins/CollapsibleToolbar._CollapsibleToolbarButton" {
|
||||
var exp: dojox.editor.plugins.CollapsibleToolbar._CollapsibleToolbarButton
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/editor/plugins/_SmileyPalette" {
|
||||
var exp: dojox.editor.plugins._SmileyPalette
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/editor/plugins/_SmileyPalette.Emoticon" {
|
||||
var exp: dojox.editor.plugins._SmileyPalette.Emoticon
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/editor/plugins/InsertAnchor" {
|
||||
var exp: dojox.editor.plugins.InsertAnchor
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/editor/plugins/NormalizeIndentOutdent" {
|
||||
var exp: dojox.editor.plugins.NormalizeIndentOutdent
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/editor/plugins/FindReplace" {
|
||||
var exp: dojox.editor.plugins.FindReplace
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/editor/plugins/FindReplace._FindReplaceCloseBox" {
|
||||
var exp: dojox.editor.plugins.FindReplace._FindReplaceCloseBox
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/editor/plugins/FindReplace._FindReplaceCheckBox" {
|
||||
var exp: dojox.editor.plugins.FindReplace._FindReplaceCheckBox
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/editor/plugins/FindReplace._FindReplaceTextBox" {
|
||||
var exp: dojox.editor.plugins.FindReplace._FindReplaceTextBox
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/editor/plugins/FindReplace._FindReplaceToolbar" {
|
||||
var exp: dojox.editor.plugins.FindReplace._FindReplaceToolbar
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/editor/plugins/InsertEntity" {
|
||||
var exp: dojox.editor.plugins.InsertEntity
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/editor/plugins/PasteFromWord" {
|
||||
var exp: dojox.editor.plugins.PasteFromWord
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/editor/plugins/PageBreak" {
|
||||
var exp: dojox.editor.plugins.PageBreak
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/editor/plugins/Preview" {
|
||||
var exp: dojox.editor.plugins.Preview
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/editor/plugins/PrettyPrint" {
|
||||
var exp: dojox.editor.plugins.PrettyPrint
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/editor/plugins/ResizeTableColumn" {
|
||||
var exp: dojox.editor.plugins.ResizeTableColumn
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/editor/plugins/NormalizeStyle" {
|
||||
var exp: dojox.editor.plugins.NormalizeStyle
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/editor/plugins/EntityPalette" {
|
||||
var exp: dojox.editor.plugins.EntityPalette
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/editor/plugins/EntityPalette.LatinEntity" {
|
||||
var exp: dojox.editor.plugins.EntityPalette.LatinEntity
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/editor/plugins/Save" {
|
||||
var exp: dojox.editor.plugins.Save
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/editor/plugins/SafePaste" {
|
||||
var exp: dojox.editor.plugins.SafePaste
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/editor/plugins/ShowBlockNodes" {
|
||||
var exp: dojox.editor.plugins.ShowBlockNodes
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/editor/plugins/LocalImage" {
|
||||
var exp: dojox.editor.plugins.LocalImage
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/editor/plugins/Smiley" {
|
||||
var exp: dojox.editor.plugins.Smiley
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/editor/plugins/TextColor" {
|
||||
var exp: dojox.editor.plugins.TextColor
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/editor/plugins/TextColor._TextColorDropDown" {
|
||||
var exp: dojox.editor.plugins.TextColor._TextColorDropDown
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/editor/plugins/StatusBar" {
|
||||
var exp: dojox.editor.plugins.StatusBar
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/editor/plugins/StatusBar._StatusBar" {
|
||||
var exp: dojox.editor.plugins.StatusBar._StatusBar
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/editor/plugins/SpellCheck" {
|
||||
var exp: dojox.editor.plugins.SpellCheck
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/editor/plugins/SpellCheck._SpellCheckScriptMultiPart" {
|
||||
var exp: dojox.editor.plugins.SpellCheck._SpellCheckScriptMultiPart
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/editor/plugins/SpellCheck._SpellCheckControl" {
|
||||
var exp: dojox.editor.plugins.SpellCheck._SpellCheckControl
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/editor/plugins/TablePlugins" {
|
||||
var exp: dojox.editor.plugins.TablePlugins
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/editor/plugins/UploadImage" {
|
||||
var exp: dojox.editor.plugins.UploadImage
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/editor/plugins/ToolbarLineBreak" {
|
||||
var exp: dojox.editor.plugins.ToolbarLineBreak
|
||||
export=exp;
|
||||
}
|
||||
|
||||
Vendored
+18
-2
@@ -840,7 +840,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -1009,4 +1009,20 @@ declare module dojox {
|
||||
serialize(n: String, o: Object): any;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
declare module "dojox/embed/Flash" {
|
||||
var exp: dojox.embed.Flash
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/embed/Quicktime" {
|
||||
var exp: dojox.embed.Quicktime
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/embed/flashVars" {
|
||||
var exp: dojox.embed.flashVars
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/embed/Object" {
|
||||
var exp: dojox.embed.Object_
|
||||
export=exp;
|
||||
}
|
||||
|
||||
Vendored
+90
-1
@@ -584,4 +584,93 @@ declare module dojox {
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
declare module "dojox/encoding/_base" {
|
||||
var exp: dojox.encoding._base
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/encoding/ascii85" {
|
||||
var exp: dojox.encoding.ascii85
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/encoding/base64" {
|
||||
var exp: dojox.encoding.base64
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/encoding/bits" {
|
||||
var exp: dojox.encoding.bits
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/encoding/easy64" {
|
||||
var exp: dojox.encoding.easy64
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/encoding/compression/splay" {
|
||||
var exp: dojox.encoding.compression.splay
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/encoding/compression/lzw" {
|
||||
var exp: dojox.encoding.compression.lzw
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/encoding/crypto/_base" {
|
||||
var exp: dojox.encoding.crypto._base
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/encoding/crypto/_base.RSAKey" {
|
||||
var exp: dojox.encoding.crypto._base.RSAKey
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/encoding/crypto/_base.cipherModes" {
|
||||
var exp: dojox.encoding.crypto._base.cipherModes
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/encoding/crypto/_base.outputTypes" {
|
||||
var exp: dojox.encoding.crypto._base.outputTypes
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/encoding/crypto/RSAKey" {
|
||||
var exp: dojox.encoding.crypto.RSAKey
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/encoding/crypto/RSAKey-ext" {
|
||||
var exp: dojox.encoding.crypto.RSAKey_ext
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/encoding/digests/MD5" {
|
||||
var exp: dojox.encoding.digests.MD5
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/encoding/digests/SHA1" {
|
||||
var exp: dojox.encoding.digests.SHA1
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/encoding/digests/SHA224" {
|
||||
var exp: dojox.encoding.digests.SHA224
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/encoding/digests/SHA512" {
|
||||
var exp: dojox.encoding.digests.SHA512
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/encoding/digests/SHA256" {
|
||||
var exp: dojox.encoding.digests.SHA256
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/encoding/digests/SHA384" {
|
||||
var exp: dojox.encoding.digests.SHA384
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/encoding/digests/_base" {
|
||||
var exp: dojox.encoding.digests._base
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/encoding/digests/_base.outputTypes" {
|
||||
var exp: dojox.encoding.digests._base.outputTypes
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/encoding/digests/_sha-64" {
|
||||
var exp: dojox.encoding.digests._sha_64
|
||||
export=exp;
|
||||
}
|
||||
|
||||
Vendored
+6
-1
@@ -21,4 +21,9 @@ declare module dojox {
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
declare module "dojox/flash" {
|
||||
var exp: dojox.flash
|
||||
export=exp;
|
||||
}
|
||||
|
||||
Vendored
+198
-25
@@ -976,7 +976,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Restore the value to the last value passed to onChange
|
||||
*
|
||||
@@ -2148,7 +2148,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -3325,7 +3325,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Restore the value to the last value passed to onChange
|
||||
*
|
||||
@@ -4686,7 +4686,7 @@ declare module dojox {
|
||||
* Returns widget as a printable string using the widget's value
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Restore the value to the last value passed to onChange
|
||||
*
|
||||
@@ -6019,7 +6019,7 @@ declare module dojox {
|
||||
* Returns widget as a printable string using the widget's value
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Restore the value to the last value passed to onChange
|
||||
*
|
||||
@@ -7332,7 +7332,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Restore the value to the last value passed to onChange
|
||||
*
|
||||
@@ -8396,7 +8396,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -9387,7 +9387,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -10409,7 +10409,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -11446,7 +11446,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -12695,7 +12695,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -13888,7 +13888,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Restore the value to the last value passed to onChange
|
||||
*
|
||||
@@ -15200,7 +15200,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Restore the value to the last value passed to onChange
|
||||
*
|
||||
@@ -16348,7 +16348,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -17389,7 +17389,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -18415,7 +18415,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -19733,7 +19733,7 @@ declare module dojox {
|
||||
* Returns widget as a printable string using the widget's value
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Restore the value to the last value passed to onChange
|
||||
*
|
||||
@@ -20767,7 +20767,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Restore the value to the last value passed to onChange
|
||||
*
|
||||
@@ -22014,7 +22014,7 @@ declare module dojox {
|
||||
* Returns widget as a printable string using the widget's value
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Restore the value to the last value passed to onChange
|
||||
*
|
||||
@@ -23490,7 +23490,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Restore the value to the last value passed to onChange
|
||||
*
|
||||
@@ -24780,7 +24780,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -26168,7 +26168,7 @@ declare module dojox {
|
||||
* Returns widget as a printable string using the widget's value
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Restore the value to the last value passed to onChange
|
||||
*
|
||||
@@ -27716,7 +27716,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -28665,7 +28665,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -29056,4 +29056,177 @@ declare module dojox {
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
declare module "dojox/form/_HasDropDown" {
|
||||
var exp: dojox.form._HasDropDown
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/form/DropDownStack" {
|
||||
var exp: dojox.form.DropDownStack
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/form/RadioStack" {
|
||||
var exp: dojox.form.RadioStack
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/form/_SelectStackMixin" {
|
||||
var exp: dojox.form._SelectStackMixin
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/form/BusyButton" {
|
||||
var exp: dojox.form.BusyButton
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/form/_FormSelectWidget" {
|
||||
var exp: dojox.form._FormSelectWidget
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/form/_FormSelectWidget.__SelectOption" {
|
||||
var exp: dojox.form._FormSelectWidget.__SelectOption
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/form/CheckedMultiSelect" {
|
||||
var exp: dojox.form.CheckedMultiSelect
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/form/DayTextBox" {
|
||||
var exp: dojox.form.DayTextBox
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/form/DropDownSelect" {
|
||||
var exp: dojox.form.DropDownSelect
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/form/DropDownSelect._Menu" {
|
||||
var exp: dojox.form.DropDownSelect._Menu
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/form/FileInput" {
|
||||
var exp: dojox.form.FileInput
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/form/DateTextBox" {
|
||||
var exp: dojox.form.DateTextBox
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/form/FileInputBlind" {
|
||||
var exp: dojox.form.FileInputBlind
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/form/FileInputAuto" {
|
||||
var exp: dojox.form.FileInputAuto
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/form/FileUploader" {
|
||||
var exp: dojox.form.FileUploader
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/form/Manager" {
|
||||
var exp: dojox.form.Manager
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/form/FilePickerTextBox" {
|
||||
var exp: dojox.form.FilePickerTextBox
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/form/RangeSlider" {
|
||||
var exp: dojox.form.RangeSlider
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/form/ListInput" {
|
||||
var exp: dojox.form.ListInput
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/form/PasswordValidator" {
|
||||
var exp: dojox.form.PasswordValidator
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/form/Rating" {
|
||||
var exp: dojox.form.Rating
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/form/MonthTextBox" {
|
||||
var exp: dojox.form.MonthTextBox
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/form/MultiComboBox" {
|
||||
var exp: dojox.form.MultiComboBox
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/form/TimeSpinner" {
|
||||
var exp: dojox.form.TimeSpinner
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/form/TriStateCheckBox" {
|
||||
var exp: dojox.form.TriStateCheckBox
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/form/Uploader" {
|
||||
var exp: dojox.form.Uploader
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/form/YearTextBox" {
|
||||
var exp: dojox.form.YearTextBox
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/form/manager/_ClassMixin" {
|
||||
var exp: dojox.form.manager._ClassMixin
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/form/manager/_DisplayMixin" {
|
||||
var exp: dojox.form.manager._DisplayMixin
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/form/manager/_EnableMixin" {
|
||||
var exp: dojox.form.manager._EnableMixin
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/form/manager/_FormMixin" {
|
||||
var exp: dojox.form.manager._FormMixin
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/form/manager/_Mixin" {
|
||||
var exp: dojox.form.manager._Mixin
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/form/manager/_NodeMixin" {
|
||||
var exp: dojox.form.manager._NodeMixin
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/form/manager/_ValueMixin" {
|
||||
var exp: dojox.form.manager._ValueMixin
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/form/uploader/_HTML5" {
|
||||
var exp: dojox.form.uploader._HTML5
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/form/uploader/_Flash" {
|
||||
var exp: dojox.form.uploader._Flash
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/form/uploader/_IFrame" {
|
||||
var exp: dojox.form.uploader._IFrame
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/form/uploader/_Base" {
|
||||
var exp: dojox.form.uploader._Base
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/form/uploader/FileList" {
|
||||
var exp: dojox.form.uploader.FileList
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/form/uploader/plugins/Flash" {
|
||||
var exp: dojox.form.uploader.plugins.Flash
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/form/uploader/plugins/HTML5" {
|
||||
var exp: dojox.form.uploader.plugins.HTML5
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/form/uploader/plugins/IFrame" {
|
||||
var exp: dojox.form.uploader.plugins.IFrame
|
||||
export=exp;
|
||||
}
|
||||
|
||||
Vendored
+67
-2
@@ -709,7 +709,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -2015,4 +2015,69 @@ declare module dojox {
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
declare module "dojox/fx" {
|
||||
var exp: dojox.fx
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/fx/Shadow" {
|
||||
var exp: dojox.fx.Shadow
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/fx/_core" {
|
||||
var exp: dojox.fx._core
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/fx/scroll" {
|
||||
var exp: dojox.fx.scroll
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/fx/_arg" {
|
||||
var exp: dojox.fx._arg
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/fx/easing" {
|
||||
var exp: dojox.fx.easing
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/fx/_base" {
|
||||
var exp: dojox.fx._base
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/fx/flip" {
|
||||
var exp: dojox.fx.flip
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/fx/style" {
|
||||
var exp: dojox.fx.style
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/fx/text" {
|
||||
var exp: dojox.fx.text
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/fx/split" {
|
||||
var exp: dojox.fx.split
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/fx/Timeline" {
|
||||
var exp: dojox.fx.Timeline
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/fx/ext-dojo/reverse" {
|
||||
var exp: dojox.fx.ext_dojo.reverse
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/fx/ext-dojo/complex" {
|
||||
var exp: dojox.fx.ext_dojo.complex
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/fx/ext-dojo/NodeList" {
|
||||
var exp: dojox.fx.ext_dojo.NodeList
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/fx/ext-dojo/NodeList-style" {
|
||||
var exp: dojox.fx.ext_dojo.NodeList_style
|
||||
export=exp;
|
||||
}
|
||||
|
||||
Vendored
+34
-1
@@ -1080,4 +1080,37 @@ declare module dojox {
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
declare module "dojox/gantt/contextMenuTab" {
|
||||
var exp: dojox.gantt.contextMenuTab
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gantt/GanttProjectControl" {
|
||||
var exp: dojox.gantt.GanttProjectControl
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gantt/GanttProjectItem" {
|
||||
var exp: dojox.gantt.GanttProjectItem
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gantt/GanttResourceItem" {
|
||||
var exp: dojox.gantt.GanttResourceItem
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gantt/GanttChart" {
|
||||
var exp: dojox.gantt.GanttChart
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gantt/GanttTaskControl" {
|
||||
var exp: dojox.gantt.GanttTaskControl
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gantt/TabMenu" {
|
||||
var exp: dojox.gantt.TabMenu
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gantt/GanttTaskItem" {
|
||||
var exp: dojox.gantt.GanttTaskItem
|
||||
export=exp;
|
||||
}
|
||||
|
||||
Vendored
+107
-22
@@ -937,7 +937,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -1870,7 +1870,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -2816,7 +2816,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -3761,7 +3761,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -4705,7 +4705,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -5651,7 +5651,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -6597,7 +6597,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -7743,7 +7743,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -8677,7 +8677,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -9621,7 +9621,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -10564,7 +10564,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -11507,7 +11507,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -12637,7 +12637,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -13566,7 +13566,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -14864,7 +14864,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -15801,7 +15801,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -17101,7 +17101,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -18314,7 +18314,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -19135,7 +19135,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -20101,7 +20101,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -21399,7 +21399,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -21551,4 +21551,89 @@ declare module dojox {
|
||||
onValueChanged(): void;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
declare module "dojox/gauges/_Indicator" {
|
||||
var exp: dojox.gauges._Indicator
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gauges/_Gauge" {
|
||||
var exp: dojox.gauges._Gauge
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gauges/AnalogArrowIndicator" {
|
||||
var exp: dojox.gauges.AnalogArrowIndicator
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gauges/AnalogCircleIndicator" {
|
||||
var exp: dojox.gauges.AnalogCircleIndicator
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gauges/AnalogArcIndicator" {
|
||||
var exp: dojox.gauges.AnalogArcIndicator
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gauges/AnalogGauge" {
|
||||
var exp: dojox.gauges.AnalogGauge
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gauges/AnalogIndicatorBase" {
|
||||
var exp: dojox.gauges.AnalogIndicatorBase
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gauges/AnalogLineIndicator" {
|
||||
var exp: dojox.gauges.AnalogLineIndicator
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gauges/BarCircleIndicator" {
|
||||
var exp: dojox.gauges.BarCircleIndicator
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gauges/AnalogNeedleIndicator" {
|
||||
var exp: dojox.gauges.AnalogNeedleIndicator
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gauges/BarGauge" {
|
||||
var exp: dojox.gauges.BarGauge
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gauges/BarLineIndicator" {
|
||||
var exp: dojox.gauges.BarLineIndicator
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gauges/BarIndicator" {
|
||||
var exp: dojox.gauges.BarIndicator
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gauges/GlossyCircularGaugeNeedle" {
|
||||
var exp: dojox.gauges.GlossyCircularGaugeNeedle
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gauges/GlossyHorizontalGaugeMarker" {
|
||||
var exp: dojox.gauges.GlossyHorizontalGaugeMarker
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gauges/GlossyCircularGauge" {
|
||||
var exp: dojox.gauges.GlossyCircularGauge
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gauges/Range" {
|
||||
var exp: dojox.gauges.Range
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gauges/GlossyCircularGaugeBase" {
|
||||
var exp: dojox.gauges.GlossyCircularGaugeBase
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gauges/GlossyHorizontalGauge" {
|
||||
var exp: dojox.gauges.GlossyHorizontalGauge
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gauges/GlossySemiCircularGauge" {
|
||||
var exp: dojox.gauges.GlossySemiCircularGauge
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gauges/TextIndicator" {
|
||||
var exp: dojox.gauges.TextIndicator
|
||||
export=exp;
|
||||
}
|
||||
|
||||
Vendored
+177
-4
@@ -1045,7 +1045,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -1990,7 +1990,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -3538,7 +3538,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -4721,4 +4721,177 @@ declare module dojox {
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
declare module "dojox/geo/charting/_base" {
|
||||
var exp: dojox.geo.charting._base
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/geo/charting/_Marker" {
|
||||
var exp: dojox.geo.charting._Marker
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/geo/charting/Feature" {
|
||||
var exp: dojox.geo.charting.Feature
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/geo/charting/KeyboardInteractionSupport" {
|
||||
var exp: dojox.geo.charting.KeyboardInteractionSupport
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/geo/charting/MouseInteractionSupport" {
|
||||
var exp: dojox.geo.charting.MouseInteractionSupport
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/geo/charting/TouchInteractionSupport" {
|
||||
var exp: dojox.geo.charting.TouchInteractionSupport
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/geo/charting/Map" {
|
||||
var exp: dojox.geo.charting.Map
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/geo/charting/widget/Legend" {
|
||||
var exp: dojox.geo.charting.widget.Legend
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/geo/charting/widget/Map" {
|
||||
var exp: dojox.geo.charting.widget.Map
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/geo/openlayers/_base" {
|
||||
var exp: dojox.geo.openlayers._base
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/geo/openlayers/_base.Geometry" {
|
||||
var exp: dojox.geo.openlayers._base.Geometry
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/geo/openlayers/_base.Collection" {
|
||||
var exp: dojox.geo.openlayers._base.Collection
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/geo/openlayers/_base.Feature" {
|
||||
var exp: dojox.geo.openlayers._base.Feature
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/geo/openlayers/_base.JsonImport" {
|
||||
var exp: dojox.geo.openlayers._base.JsonImport
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/geo/openlayers/_base.GfxLayer" {
|
||||
var exp: dojox.geo.openlayers._base.GfxLayer
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/geo/openlayers/_base.LineString" {
|
||||
var exp: dojox.geo.openlayers._base.LineString
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/geo/openlayers/_base.Layer" {
|
||||
var exp: dojox.geo.openlayers._base.Layer
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/geo/openlayers/_base.GeometryFeature" {
|
||||
var exp: dojox.geo.openlayers._base.GeometryFeature
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/geo/openlayers/_base.Point" {
|
||||
var exp: dojox.geo.openlayers._base.Point
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/geo/openlayers/_base.Map" {
|
||||
var exp: dojox.geo.openlayers._base.Map
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/geo/openlayers/_base.TouchInteractionSupport" {
|
||||
var exp: dojox.geo.openlayers._base.TouchInteractionSupport
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/geo/openlayers/_base.WidgetFeature" {
|
||||
var exp: dojox.geo.openlayers._base.WidgetFeature
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/geo/openlayers/_base.__JsonImportArgs" {
|
||||
var exp: dojox.geo.openlayers._base.__JsonImportArgs
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/geo/openlayers/_base.__WidgetFeatureArgs" {
|
||||
var exp: dojox.geo.openlayers._base.__WidgetFeatureArgs
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/geo/openlayers/_base.__MapArgs" {
|
||||
var exp: dojox.geo.openlayers._base.__MapArgs
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/geo/openlayers/_base.BaseLayerType" {
|
||||
var exp: dojox.geo.openlayers._base.BaseLayerType
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/geo/openlayers/_base.GreatCircle" {
|
||||
var exp: dojox.geo.openlayers._base.GreatCircle
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/geo/openlayers/_base.widget" {
|
||||
var exp: dojox.geo.openlayers._base.widget
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/geo/openlayers/GreatCircle" {
|
||||
var exp: dojox.geo.openlayers.GreatCircle
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/geo/openlayers/Patch" {
|
||||
var exp: dojox.geo.openlayers.Patch
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/geo/openlayers/Collection" {
|
||||
var exp: dojox.geo.openlayers.Collection
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/geo/openlayers/Feature" {
|
||||
var exp: dojox.geo.openlayers.Feature
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/geo/openlayers/Geometry" {
|
||||
var exp: dojox.geo.openlayers.Geometry
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/geo/openlayers/GfxLayer" {
|
||||
var exp: dojox.geo.openlayers.GfxLayer
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/geo/openlayers/JsonImport" {
|
||||
var exp: dojox.geo.openlayers.JsonImport
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/geo/openlayers/Layer" {
|
||||
var exp: dojox.geo.openlayers.Layer
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/geo/openlayers/LineString" {
|
||||
var exp: dojox.geo.openlayers.LineString
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/geo/openlayers/GeometryFeature" {
|
||||
var exp: dojox.geo.openlayers.GeometryFeature
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/geo/openlayers/Point" {
|
||||
var exp: dojox.geo.openlayers.Point
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/geo/openlayers/WidgetFeature" {
|
||||
var exp: dojox.geo.openlayers.WidgetFeature
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/geo/openlayers/TouchInteractionSupport" {
|
||||
var exp: dojox.geo.openlayers.TouchInteractionSupport
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/geo/openlayers/Map" {
|
||||
var exp: dojox.geo.openlayers.Map
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/geo/openlayers/widget/Map" {
|
||||
var exp: dojox.geo.openlayers.widget.Map
|
||||
export=exp;
|
||||
}
|
||||
|
||||
Vendored
+7
-1
@@ -98,4 +98,10 @@ declare module dojox {
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
declare module "dojox/gesture/Base" {
|
||||
var exp: dojox.gesture.Base
|
||||
export=exp;
|
||||
}
|
||||
|
||||
Vendored
+389
-1
@@ -11803,4 +11803,392 @@ declare module dojox {
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
declare module "dojox/gfx" {
|
||||
var exp: dojox.gfx
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx.__MoveableCtorArgs" {
|
||||
var exp: dojox.gfx.__MoveableCtorArgs
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx.Circle" {
|
||||
var exp: dojox.gfx.Circle
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx.Ellipse" {
|
||||
var exp: dojox.gfx.Ellipse
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx/path" {
|
||||
var exp: dojox.gfx.path
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx/Mover" {
|
||||
var exp: dojox.gfx.Mover
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx/Moveable" {
|
||||
var exp: dojox.gfx.Moveable
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx.Line" {
|
||||
var exp: dojox.gfx.Line
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx.Point" {
|
||||
var exp: dojox.gfx.Point
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx.Group" {
|
||||
var exp: dojox.gfx.Group
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx.Polyline" {
|
||||
var exp: dojox.gfx.Polyline
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx.Rect" {
|
||||
var exp: dojox.gfx.Rect
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx.Rectangle" {
|
||||
var exp: dojox.gfx.Rectangle
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx.Surface" {
|
||||
var exp: dojox.gfx.Surface
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx.TextPath" {
|
||||
var exp: dojox.gfx.TextPath
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx.Text" {
|
||||
var exp: dojox.gfx.Text
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx.VectorFont" {
|
||||
var exp: dojox.gfx.VectorFont
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx/VectorText" {
|
||||
var exp: dojox.gfx.VectorText
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx/decompose" {
|
||||
var exp: dojox.gfx.decompose
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx._vectorFontCache" {
|
||||
var exp: dojox.gfx._vectorFontCache
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx._svgFontCache" {
|
||||
var exp: dojox.gfx._svgFontCache
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx/arc" {
|
||||
var exp: dojox.gfx.arc
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx/bezierutils" {
|
||||
var exp: dojox.gfx.bezierutils
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx/_base" {
|
||||
var exp: dojox.gfx._base
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx/_gfxBidiSupport" {
|
||||
var exp: dojox.gfx._gfxBidiSupport
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx/canvas" {
|
||||
var exp: dojox.gfx.canvas
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx/canvasWithEvents" {
|
||||
var exp: dojox.gfx.canvasWithEvents
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx.defaultCircle" {
|
||||
var exp: dojox.gfx.defaultCircle
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx/canvasext" {
|
||||
var exp: dojox.gfx.canvasext
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx.defaultImage" {
|
||||
var exp: dojox.gfx.defaultImage
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx.defaultLine" {
|
||||
var exp: dojox.gfx.defaultLine
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx/canvas_attach" {
|
||||
var exp: dojox.gfx.canvas_attach
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx.defaultLinearGradient" {
|
||||
var exp: dojox.gfx.defaultLinearGradient
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx.defaultEllipse" {
|
||||
var exp: dojox.gfx.defaultEllipse
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx.defaultFont" {
|
||||
var exp: dojox.gfx.defaultFont
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx.defaultPath" {
|
||||
var exp: dojox.gfx.defaultPath
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx.defaultPattern" {
|
||||
var exp: dojox.gfx.defaultPattern
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx.defaultRadialGradient" {
|
||||
var exp: dojox.gfx.defaultRadialGradient
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx.defaultRect" {
|
||||
var exp: dojox.gfx.defaultRect
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx.defaultPolyline" {
|
||||
var exp: dojox.gfx.defaultPolyline
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx.defaultStroke" {
|
||||
var exp: dojox.gfx.defaultStroke
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx.defaultText" {
|
||||
var exp: dojox.gfx.defaultText
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx.Fill" {
|
||||
var exp: dojox.gfx.Fill
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx.defaultVectorFont" {
|
||||
var exp: dojox.gfx.defaultVectorFont
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx.defaultVectorText" {
|
||||
var exp: dojox.gfx.defaultVectorText
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx.defaultTextPath" {
|
||||
var exp: dojox.gfx.defaultTextPath
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx/fx" {
|
||||
var exp: dojox.gfx.fx
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx/gradient" {
|
||||
var exp: dojox.gfx.gradient
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx.Font" {
|
||||
var exp: dojox.gfx.Font
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx/gradutils" {
|
||||
var exp: dojox.gfx.gradutils
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx.LinearGradient" {
|
||||
var exp: dojox.gfx.LinearGradient
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx/move" {
|
||||
var exp: dojox.gfx.move
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx/matrix" {
|
||||
var exp: dojox.gfx.matrix
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx.Pattern" {
|
||||
var exp: dojox.gfx.Pattern
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx.RadialGradient" {
|
||||
var exp: dojox.gfx.RadialGradient
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx/shape" {
|
||||
var exp: dojox.gfx.shape
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx/silverlight" {
|
||||
var exp: dojox.gfx.silverlight
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx.Stroke" {
|
||||
var exp: dojox.gfx.Stroke
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx/silverlight_attach" {
|
||||
var exp: dojox.gfx.silverlight_attach
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx/svgext" {
|
||||
var exp: dojox.gfx.svgext
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx/svg" {
|
||||
var exp: dojox.gfx.svg
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx.vectorFontFitting" {
|
||||
var exp: dojox.gfx.vectorFontFitting
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx/utils" {
|
||||
var exp: dojox.gfx.utils
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx/vml" {
|
||||
var exp: dojox.gfx.vml
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx/filters" {
|
||||
var exp: dojox.gfx.filters
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx/registry" {
|
||||
var exp: dojox.gfx.registry
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx/renderer" {
|
||||
var exp: dojox.gfx.renderer
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx/svg_attach" {
|
||||
var exp: dojox.gfx.svg_attach
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx/svg_attach.Ellipse" {
|
||||
var exp: dojox.gfx.svg_attach.Ellipse
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx/svg_attach.Group" {
|
||||
var exp: dojox.gfx.svg_attach.Group
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx/svg_attach.Circle" {
|
||||
var exp: dojox.gfx.svg_attach.Circle
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx/svg_attach.Line" {
|
||||
var exp: dojox.gfx.svg_attach.Line
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx/svg_attach.Image" {
|
||||
var exp: dojox.gfx.svg_attach.Image
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx/svg_attach.Path" {
|
||||
var exp: dojox.gfx.svg_attach.Path
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx/svg_attach.Polyline" {
|
||||
var exp: dojox.gfx.svg_attach.Polyline
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx/svg_attach.Surface" {
|
||||
var exp: dojox.gfx.svg_attach.Surface
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx/svg_attach.Shape" {
|
||||
var exp: dojox.gfx.svg_attach.Shape
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx/svg_attach.Rect" {
|
||||
var exp: dojox.gfx.svg_attach.Rect
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx/svg_attach.Text" {
|
||||
var exp: dojox.gfx.svg_attach.Text
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx/svg_attach.TextPath" {
|
||||
var exp: dojox.gfx.svg_attach.TextPath
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx/svg_attach.dasharray" {
|
||||
var exp: dojox.gfx.svg_attach.dasharray
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx/svg_attach.xmlns" {
|
||||
var exp: dojox.gfx.svg_attach.xmlns
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx/vml_attach" {
|
||||
var exp: dojox.gfx.vml_attach
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx/vml_attach.Circle" {
|
||||
var exp: dojox.gfx.vml_attach.Circle
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx/vml_attach.Group" {
|
||||
var exp: dojox.gfx.vml_attach.Group
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx/vml_attach.Ellipse" {
|
||||
var exp: dojox.gfx.vml_attach.Ellipse
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx/vml_attach.Image" {
|
||||
var exp: dojox.gfx.vml_attach.Image
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx/vml_attach.Line" {
|
||||
var exp: dojox.gfx.vml_attach.Line
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx/vml_attach.Polyline" {
|
||||
var exp: dojox.gfx.vml_attach.Polyline
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx/vml_attach.Surface" {
|
||||
var exp: dojox.gfx.vml_attach.Surface
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx/vml_attach.Rect" {
|
||||
var exp: dojox.gfx.vml_attach.Rect
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx/vml_attach.Path" {
|
||||
var exp: dojox.gfx.vml_attach.Path
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx/vml_attach.Shape" {
|
||||
var exp: dojox.gfx.vml_attach.Shape
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx/vml_attach.Text" {
|
||||
var exp: dojox.gfx.vml_attach.Text
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx/vml_attach.TextPath" {
|
||||
var exp: dojox.gfx.vml_attach.TextPath
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx/vml_attach._bool" {
|
||||
var exp: dojox.gfx.vml_attach._bool
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx/vml_attach.text_alignment" {
|
||||
var exp: dojox.gfx.vml_attach.text_alignment
|
||||
export=exp;
|
||||
}
|
||||
|
||||
Vendored
+154
-1
@@ -3234,4 +3234,157 @@ declare module dojox {
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
declare module "dojox/gfx3d" {
|
||||
var exp: dojox.gfx3d
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx3d/object" {
|
||||
var exp: dojox.gfx3d.object
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx3d/gradient" {
|
||||
var exp: dojox.gfx3d.gradient
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx3d/_base" {
|
||||
var exp: dojox.gfx3d._base
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx3d/_base.Cube" {
|
||||
var exp: dojox.gfx3d._base.Cube
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx3d/_base.Cylinder" {
|
||||
var exp: dojox.gfx3d._base.Cylinder
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx3d/_base.Edges" {
|
||||
var exp: dojox.gfx3d._base.Edges
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx3d/_base.Polygon" {
|
||||
var exp: dojox.gfx3d._base.Polygon
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx3d/_base.Orbit" {
|
||||
var exp: dojox.gfx3d._base.Orbit
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx3d/_base.Object" {
|
||||
var exp: dojox.gfx3d._base.Object
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx3d/_base.Path3d" {
|
||||
var exp: dojox.gfx3d._base.Path3d
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx3d/_base.Quads" {
|
||||
var exp: dojox.gfx3d._base.Quads
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx3d/_base.Triangles" {
|
||||
var exp: dojox.gfx3d._base.Triangles
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx3d/_base.Scene" {
|
||||
var exp: dojox.gfx3d._base.Scene
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx3d/_base.Viewport" {
|
||||
var exp: dojox.gfx3d._base.Viewport
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx3d/_base._creators" {
|
||||
var exp: dojox.gfx3d._base._creators
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx3d/_base.defaultCube" {
|
||||
var exp: dojox.gfx3d._base.defaultCube
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx3d/_base.defaultEdges" {
|
||||
var exp: dojox.gfx3d._base.defaultEdges
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx3d/_base.defaultOrbit" {
|
||||
var exp: dojox.gfx3d._base.defaultOrbit
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx3d/_base.defaultCylinder" {
|
||||
var exp: dojox.gfx3d._base.defaultCylinder
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx3d/_base.defaultPath3d" {
|
||||
var exp: dojox.gfx3d._base.defaultPath3d
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx3d/_base.defaultPolygon" {
|
||||
var exp: dojox.gfx3d._base.defaultPolygon
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx3d/_base.defaultQuads" {
|
||||
var exp: dojox.gfx3d._base.defaultQuads
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx3d/_base.defaultTriangles" {
|
||||
var exp: dojox.gfx3d._base.defaultTriangles
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx3d/_base.drawer" {
|
||||
var exp: dojox.gfx3d._base.drawer
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx3d/_base.lighting" {
|
||||
var exp: dojox.gfx3d._base.lighting
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx3d/_base.scheduler" {
|
||||
var exp: dojox.gfx3d._base.scheduler
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx3d/_base.matrix" {
|
||||
var exp: dojox.gfx3d._base.matrix
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx3d/_base.vector" {
|
||||
var exp: dojox.gfx3d._base.vector
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx3d/scheduler" {
|
||||
var exp: dojox.gfx3d.scheduler
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx3d/scheduler.BinarySearchTree" {
|
||||
var exp: dojox.gfx3d.scheduler.BinarySearchTree
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx3d/scheduler.drawer" {
|
||||
var exp: dojox.gfx3d.scheduler.drawer
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx3d/scheduler.scheduler" {
|
||||
var exp: dojox.gfx3d.scheduler.scheduler
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx3d/lighting" {
|
||||
var exp: dojox.gfx3d.lighting
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx3d/lighting.Model" {
|
||||
var exp: dojox.gfx3d.lighting.Model
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx3d/lighting.finish" {
|
||||
var exp: dojox.gfx3d.lighting.finish
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx3d/vector" {
|
||||
var exp: dojox.gfx3d.vector
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/gfx3d/matrix" {
|
||||
var exp: dojox.gfx3d.matrix
|
||||
export=exp;
|
||||
}
|
||||
|
||||
|
||||
Vendored
+489
-13
@@ -2322,7 +2322,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -3747,7 +3747,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -4820,7 +4820,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -5900,7 +5900,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -7114,7 +7114,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -9247,7 +9247,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -11093,7 +11093,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -12997,7 +12997,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -14957,7 +14957,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -20171,7 +20171,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -23032,7 +23032,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
*
|
||||
*/
|
||||
@@ -23885,7 +23885,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
*
|
||||
*/
|
||||
@@ -26083,4 +26083,480 @@ declare module dojox {
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
declare module "dojox/grid/_Builder" {
|
||||
var exp: dojox.grid._Builder
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/util" {
|
||||
var exp: dojox.grid.util
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/_EditManager" {
|
||||
var exp: dojox.grid._EditManager
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/_RowManager" {
|
||||
var exp: dojox.grid._RowManager
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/_Layout" {
|
||||
var exp: dojox.grid._Layout
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/_Events" {
|
||||
var exp: dojox.grid._Events
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/_FocusManager" {
|
||||
var exp: dojox.grid._FocusManager
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/_SelectionPreserver" {
|
||||
var exp: dojox.grid._SelectionPreserver
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/_Scroller" {
|
||||
var exp: dojox.grid._Scroller
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/_ViewManager" {
|
||||
var exp: dojox.grid._ViewManager
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/_TreeView" {
|
||||
var exp: dojox.grid._TreeView
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/_View" {
|
||||
var exp: dojox.grid._View
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/_Selector" {
|
||||
var exp: dojox.grid._Selector
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/_RowSelector" {
|
||||
var exp: dojox.grid._RowSelector
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/DataSelection" {
|
||||
var exp: dojox.grid.DataSelection
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/_Grid" {
|
||||
var exp: dojox.grid._Grid
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/DataGrid" {
|
||||
var exp: dojox.grid.DataGrid
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/LazyTreeGridStoreModel" {
|
||||
var exp: dojox.grid.LazyTreeGridStoreModel
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/TreeSelection" {
|
||||
var exp: dojox.grid.TreeSelection
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/Selection" {
|
||||
var exp: dojox.grid.Selection
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/LazyTreeGrid" {
|
||||
var exp: dojox.grid.LazyTreeGrid
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/EnhancedGrid" {
|
||||
var exp: dojox.grid.EnhancedGrid
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/TreeGrid" {
|
||||
var exp: dojox.grid.TreeGrid
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/bidi/_BidiMixin" {
|
||||
var exp: dojox.grid.bidi._BidiMixin
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/cells/dijit" {
|
||||
var exp: dojox.grid.cells.dijit
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/cells/dijit._Widget" {
|
||||
var exp: dojox.grid.cells.dijit._Widget
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/cells/dijit.CheckBox" {
|
||||
var exp: dojox.grid.cells.dijit.CheckBox
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/cells/dijit.DateTextBox" {
|
||||
var exp: dojox.grid.cells.dijit.DateTextBox
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/cells/dijit.Editor" {
|
||||
var exp: dojox.grid.cells.dijit.Editor
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/cells/dijit.ComboBox" {
|
||||
var exp: dojox.grid.cells.dijit.ComboBox
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/cells/tree" {
|
||||
var exp: dojox.grid.cells.tree
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/cells/_base" {
|
||||
var exp: dojox.grid.cells._base
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/cells/_base.AlwaysEdit" {
|
||||
var exp: dojox.grid.cells._base.AlwaysEdit
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/cells/_base.Bool" {
|
||||
var exp: dojox.grid.cells._base.Bool
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/cells/_base.Cell" {
|
||||
var exp: dojox.grid.cells._base.Cell
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/cells/_base.Select" {
|
||||
var exp: dojox.grid.cells._base.Select
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/cells/_base.RowIndex" {
|
||||
var exp: dojox.grid.cells._base.RowIndex
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/_Events" {
|
||||
var exp: dojox.grid.enhanced._Events
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/_Plugin" {
|
||||
var exp: dojox.grid.enhanced._Plugin
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/_PluginManager" {
|
||||
var exp: dojox.grid.enhanced._PluginManager
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/_FocusManager" {
|
||||
var exp: dojox.grid.enhanced._FocusManager
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/_StoreLayer" {
|
||||
var exp: dojox.grid.enhanced.plugins._StoreLayer
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/_StoreLayer._ServerSideLayer" {
|
||||
var exp: dojox.grid.enhanced.plugins._StoreLayer._ServerSideLayer
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/_StoreLayer._StoreLayer" {
|
||||
var exp: dojox.grid.enhanced.plugins._StoreLayer._StoreLayer
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/_RowMapLayer" {
|
||||
var exp: dojox.grid.enhanced.plugins._RowMapLayer
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/_SelectionPreserver" {
|
||||
var exp: dojox.grid.enhanced.plugins._SelectionPreserver
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/AutoScroll" {
|
||||
var exp: dojox.grid.enhanced.plugins.AutoScroll
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/DnD" {
|
||||
var exp: dojox.grid.enhanced.plugins.DnD
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/CellMerge" {
|
||||
var exp: dojox.grid.enhanced.plugins.CellMerge
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/Exporter" {
|
||||
var exp: dojox.grid.enhanced.plugins.Exporter
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/Cookie" {
|
||||
var exp: dojox.grid.enhanced.plugins.Cookie
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/Filter" {
|
||||
var exp: dojox.grid.enhanced.plugins.Filter
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/Dialog" {
|
||||
var exp: dojox.grid.enhanced.plugins.Dialog
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/IndirectSelection" {
|
||||
var exp: dojox.grid.enhanced.plugins.IndirectSelection
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/Menu" {
|
||||
var exp: dojox.grid.enhanced.plugins.Menu
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/Printer" {
|
||||
var exp: dojox.grid.enhanced.plugins.Printer
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/NestedSorting" {
|
||||
var exp: dojox.grid.enhanced.plugins.NestedSorting
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/Rearrange" {
|
||||
var exp: dojox.grid.enhanced.plugins.Rearrange
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/Search" {
|
||||
var exp: dojox.grid.enhanced.plugins.Search
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/Pagination" {
|
||||
var exp: dojox.grid.enhanced.plugins.Pagination
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/GridSource" {
|
||||
var exp: dojox.grid.enhanced.plugins.GridSource
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/Selector" {
|
||||
var exp: dojox.grid.enhanced.plugins.Selector
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/exporter/_ExportWriter" {
|
||||
var exp: dojox.grid.enhanced.plugins.exporter._ExportWriter
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/exporter/CSVWriter" {
|
||||
var exp: dojox.grid.enhanced.plugins.exporter.CSVWriter
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/exporter/TableWriter" {
|
||||
var exp: dojox.grid.enhanced.plugins.exporter.TableWriter
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/filter/_ConditionExpr" {
|
||||
var exp: dojox.grid.enhanced.plugins.filter._ConditionExpr
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/filter/_ConditionExpr._BiOpExpr" {
|
||||
var exp: dojox.grid.enhanced.plugins.filter._ConditionExpr._BiOpExpr
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/filter/_ConditionExpr._OperatorExpr" {
|
||||
var exp: dojox.grid.enhanced.plugins.filter._ConditionExpr._OperatorExpr
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/filter/_ConditionExpr._UniOpExpr" {
|
||||
var exp: dojox.grid.enhanced.plugins.filter._ConditionExpr._UniOpExpr
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/filter/_ConditionExpr._ConditionExpr" {
|
||||
var exp: dojox.grid.enhanced.plugins.filter._ConditionExpr._ConditionExpr
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/filter/_ConditionExpr._DataExpr" {
|
||||
var exp: dojox.grid.enhanced.plugins.filter._ConditionExpr._DataExpr
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/filter/_DataExprs" {
|
||||
var exp: dojox.grid.enhanced.plugins.filter._DataExprs
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/filter/_DataExprs._BiOpExpr" {
|
||||
var exp: dojox.grid.enhanced.plugins.filter._DataExprs._BiOpExpr
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/filter/_DataExprs._ConditionExpr" {
|
||||
var exp: dojox.grid.enhanced.plugins.filter._DataExprs._ConditionExpr
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/filter/_DataExprs._OperatorExpr" {
|
||||
var exp: dojox.grid.enhanced.plugins.filter._DataExprs._OperatorExpr
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/filter/_DataExprs._UniOpExpr" {
|
||||
var exp: dojox.grid.enhanced.plugins.filter._DataExprs._UniOpExpr
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/filter/_DataExprs.NumberExpr" {
|
||||
var exp: dojox.grid.enhanced.plugins.filter._DataExprs.NumberExpr
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/filter/_DataExprs.DateExpr" {
|
||||
var exp: dojox.grid.enhanced.plugins.filter._DataExprs.DateExpr
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/filter/_DataExprs._DataExpr" {
|
||||
var exp: dojox.grid.enhanced.plugins.filter._DataExprs._DataExpr
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/filter/_DataExprs.StringExpr" {
|
||||
var exp: dojox.grid.enhanced.plugins.filter._DataExprs.StringExpr
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/filter/_DataExprs.BooleanExpr" {
|
||||
var exp: dojox.grid.enhanced.plugins.filter._DataExprs.BooleanExpr
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/filter/_DataExprs.TimeExpr" {
|
||||
var exp: dojox.grid.enhanced.plugins.filter._DataExprs.TimeExpr
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/filter/_FilterExpr" {
|
||||
var exp: dojox.grid.enhanced.plugins.filter._FilterExpr
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/filter/_FilterExpr._ConditionExpr" {
|
||||
var exp: dojox.grid.enhanced.plugins.filter._FilterExpr._ConditionExpr
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/filter/_FilterExpr._OperatorExpr" {
|
||||
var exp: dojox.grid.enhanced.plugins.filter._FilterExpr._OperatorExpr
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/filter/_FilterExpr._BiOpExpr" {
|
||||
var exp: dojox.grid.enhanced.plugins.filter._FilterExpr._BiOpExpr
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/filter/_FilterExpr.BooleanExpr" {
|
||||
var exp: dojox.grid.enhanced.plugins.filter._FilterExpr.BooleanExpr
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/filter/_FilterExpr._DataExpr" {
|
||||
var exp: dojox.grid.enhanced.plugins.filter._FilterExpr._DataExpr
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/filter/_FilterExpr._UniOpExpr" {
|
||||
var exp: dojox.grid.enhanced.plugins.filter._FilterExpr._UniOpExpr
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/filter/_FilterExpr.EndsWith" {
|
||||
var exp: dojox.grid.enhanced.plugins.filter._FilterExpr.EndsWith
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/filter/_FilterExpr.Contains" {
|
||||
var exp: dojox.grid.enhanced.plugins.filter._FilterExpr.Contains
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/filter/_FilterExpr.DateExpr" {
|
||||
var exp: dojox.grid.enhanced.plugins.filter._FilterExpr.DateExpr
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/filter/_FilterExpr.EqualTo" {
|
||||
var exp: dojox.grid.enhanced.plugins.filter._FilterExpr.EqualTo
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/filter/_FilterExpr.LargerThan" {
|
||||
var exp: dojox.grid.enhanced.plugins.filter._FilterExpr.LargerThan
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/filter/_FilterExpr.IsEmpty" {
|
||||
var exp: dojox.grid.enhanced.plugins.filter._FilterExpr.IsEmpty
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/filter/_FilterExpr.LessThanOrEqualTo" {
|
||||
var exp: dojox.grid.enhanced.plugins.filter._FilterExpr.LessThanOrEqualTo
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/filter/_FilterExpr.LessThan" {
|
||||
var exp: dojox.grid.enhanced.plugins.filter._FilterExpr.LessThan
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/filter/_FilterExpr.LargerThanOrEqualTo" {
|
||||
var exp: dojox.grid.enhanced.plugins.filter._FilterExpr.LargerThanOrEqualTo
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/filter/_FilterExpr.LogicALL" {
|
||||
var exp: dojox.grid.enhanced.plugins.filter._FilterExpr.LogicALL
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/filter/_FilterExpr.LogicAND" {
|
||||
var exp: dojox.grid.enhanced.plugins.filter._FilterExpr.LogicAND
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/filter/_FilterExpr.LogicANY" {
|
||||
var exp: dojox.grid.enhanced.plugins.filter._FilterExpr.LogicANY
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/filter/_FilterExpr.Matches" {
|
||||
var exp: dojox.grid.enhanced.plugins.filter._FilterExpr.Matches
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/filter/_FilterExpr.LogicOR" {
|
||||
var exp: dojox.grid.enhanced.plugins.filter._FilterExpr.LogicOR
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/filter/_FilterExpr.LogicNOT" {
|
||||
var exp: dojox.grid.enhanced.plugins.filter._FilterExpr.LogicNOT
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/filter/_FilterExpr.LogicXOR" {
|
||||
var exp: dojox.grid.enhanced.plugins.filter._FilterExpr.LogicXOR
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/filter/_FilterExpr.StringExpr" {
|
||||
var exp: dojox.grid.enhanced.plugins.filter._FilterExpr.StringExpr
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/filter/_FilterExpr.NumberExpr" {
|
||||
var exp: dojox.grid.enhanced.plugins.filter._FilterExpr.NumberExpr
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/filter/_FilterExpr.TimeExpr" {
|
||||
var exp: dojox.grid.enhanced.plugins.filter._FilterExpr.TimeExpr
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/filter/_FilterExpr.StartsWith" {
|
||||
var exp: dojox.grid.enhanced.plugins.filter._FilterExpr.StartsWith
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/filter/FilterLayer" {
|
||||
var exp: dojox.grid.enhanced.plugins.filter.FilterLayer
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/filter/FilterLayer._ServerSideLayer" {
|
||||
var exp: dojox.grid.enhanced.plugins.filter.FilterLayer._ServerSideLayer
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/filter/FilterLayer._StoreLayer" {
|
||||
var exp: dojox.grid.enhanced.plugins.filter.FilterLayer._StoreLayer
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/filter/FilterLayer.ServerSideFilterLayer" {
|
||||
var exp: dojox.grid.enhanced.plugins.filter.FilterLayer.ServerSideFilterLayer
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/filter/FilterLayer.ClientSideFilterLayer" {
|
||||
var exp: dojox.grid.enhanced.plugins.filter.FilterLayer.ClientSideFilterLayer
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/filter/FilterBuilder" {
|
||||
var exp: dojox.grid.enhanced.plugins.filter.FilterBuilder
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/filter/FilterStatusTip" {
|
||||
var exp: dojox.grid.enhanced.plugins.filter.FilterStatusTip
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/filter/FilterDefDialog" {
|
||||
var exp: dojox.grid.enhanced.plugins.filter.FilterDefDialog
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/filter/ClearFilterConfirm" {
|
||||
var exp: dojox.grid.enhanced.plugins.filter.ClearFilterConfirm
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/grid/enhanced/plugins/filter/FilterBar" {
|
||||
var exp: dojox.grid.enhanced.plugins.filter.FilterBar
|
||||
export=exp;
|
||||
}
|
||||
|
||||
Vendored
+10
-1
@@ -22,4 +22,13 @@ declare module dojox {
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
declare module "dojox/help/_base" {
|
||||
var exp: dojox.help._base
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/help/console" {
|
||||
var exp: dojox.help.console
|
||||
export=exp;
|
||||
}
|
||||
|
||||
Vendored
+183
-2
@@ -2222,7 +2222,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -2370,4 +2370,185 @@ declare module dojox {
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
declare module "dojox/highlight" {
|
||||
var exp: dojox.highlight
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/highlight/_base" {
|
||||
var exp: dojox.highlight._base
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/highlight/_base.constants" {
|
||||
var exp: dojox.highlight._base.constants
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/highlight/languages/css" {
|
||||
var exp: dojox.highlight.languages.css
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/highlight/languages/css.defaultMode" {
|
||||
var exp: dojox.highlight.languages.css.defaultMode
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/highlight/languages/delphi" {
|
||||
var exp: dojox.highlight.languages.delphi
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/highlight/languages/delphi.defaultMode" {
|
||||
var exp: dojox.highlight.languages.delphi.defaultMode
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/highlight/languages/cpp" {
|
||||
var exp: dojox.highlight.languages.cpp
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/highlight/languages/cpp.defaultMode" {
|
||||
var exp: dojox.highlight.languages.cpp.defaultMode
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/highlight/languages/django" {
|
||||
var exp: dojox.highlight.languages.django
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/highlight/languages/django.defaultMode" {
|
||||
var exp: dojox.highlight.languages.django.defaultMode
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/highlight/languages/html" {
|
||||
var exp: dojox.highlight.languages.html
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/highlight/languages/html.HTML_ATTR" {
|
||||
var exp: dojox.highlight.languages.html.HTML_ATTR
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/highlight/languages/html.defaultMode" {
|
||||
var exp: dojox.highlight.languages.html.defaultMode
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/highlight/languages/html.HTML_VALUE" {
|
||||
var exp: dojox.highlight.languages.html.HTML_VALUE
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/highlight/languages/html.HTML_DOCTYPE" {
|
||||
var exp: dojox.highlight.languages.html.HTML_DOCTYPE
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/highlight/languages/html.HTML_TAGS" {
|
||||
var exp: dojox.highlight.languages.html.HTML_TAGS
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/highlight/languages/groovy" {
|
||||
var exp: dojox.highlight.languages.groovy
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/highlight/languages/groovy.defaultMode" {
|
||||
var exp: dojox.highlight.languages.groovy.defaultMode
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/highlight/languages/groovy.GROOVY_KEYWORDS" {
|
||||
var exp: dojox.highlight.languages.groovy.GROOVY_KEYWORDS
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/highlight/languages/javascript" {
|
||||
var exp: dojox.highlight.languages.javascript
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/highlight/languages/javascript.defaultMode" {
|
||||
var exp: dojox.highlight.languages.javascript.defaultMode
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/highlight/languages/java" {
|
||||
var exp: dojox.highlight.languages.java
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/highlight/languages/java.defaultMode" {
|
||||
var exp: dojox.highlight.languages.java.defaultMode
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/highlight/languages/python" {
|
||||
var exp: dojox.highlight.languages.python
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/highlight/languages/python.defaultMode" {
|
||||
var exp: dojox.highlight.languages.python.defaultMode
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/highlight/languages/sql" {
|
||||
var exp: dojox.highlight.languages.sql
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/highlight/languages/sql.defaultMode" {
|
||||
var exp: dojox.highlight.languages.sql.defaultMode
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/highlight/languages/xquery" {
|
||||
var exp: dojox.highlight.languages.xquery
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/highlight/languages/xquery.defaultMode" {
|
||||
var exp: dojox.highlight.languages.xquery.defaultMode
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/highlight/languages/xquery.XQUERY_COMMENT" {
|
||||
var exp: dojox.highlight.languages.xquery.XQUERY_COMMENT
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/highlight/languages/xml" {
|
||||
var exp: dojox.highlight.languages.xml
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/highlight/languages/xml.defaultMode" {
|
||||
var exp: dojox.highlight.languages.xml.defaultMode
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/highlight/languages/xml.XML_ATTR" {
|
||||
var exp: dojox.highlight.languages.xml.XML_ATTR
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/highlight/languages/xml.XML_COMMENT" {
|
||||
var exp: dojox.highlight.languages.xml.XML_COMMENT
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/highlight/languages/xml.XML_VALUE" {
|
||||
var exp: dojox.highlight.languages.xml.XML_VALUE
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/highlight/languages/pygments/css" {
|
||||
var exp: dojox.highlight.languages.pygments.css
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/highlight/languages/pygments/css.defaultMode" {
|
||||
var exp: dojox.highlight.languages.pygments.css.defaultMode
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/highlight/languages/pygments/xml" {
|
||||
var exp: dojox.highlight.languages.pygments.xml
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/highlight/languages/pygments/xml.defaultMode" {
|
||||
var exp: dojox.highlight.languages.pygments.xml.defaultMode
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/highlight/languages/pygments/html" {
|
||||
var exp: dojox.highlight.languages.pygments.html
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/highlight/languages/pygments/html.defaultMode" {
|
||||
var exp: dojox.highlight.languages.pygments.html.defaultMode
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/highlight/languages/pygments/javascript" {
|
||||
var exp: dojox.highlight.languages.pygments.javascript
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/highlight/languages/pygments/javascript.defaultMode" {
|
||||
var exp: dojox.highlight.languages.pygments.javascript.defaultMode
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/highlight/widget/Code" {
|
||||
var exp: dojox.highlight.widget.Code
|
||||
export=exp;
|
||||
}
|
||||
|
||||
Vendored
+42
-1
@@ -567,4 +567,45 @@ declare module dojox {
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
declare module "dojox/html" {
|
||||
var exp: dojox.html
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/html/ellipsis" {
|
||||
var exp: dojox.html.ellipsis
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/html/entities" {
|
||||
var exp: dojox.html.entities
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/html/metrics" {
|
||||
var exp: dojox.html.metrics
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/html/styles" {
|
||||
var exp: dojox.html.styles
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/html/styles._ContentSetter" {
|
||||
var exp: dojox.html.styles._ContentSetter
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/html/styles.ext-dojo" {
|
||||
var exp: dojox.html.styles.ext_dojo
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/html/styles.metrics" {
|
||||
var exp: dojox.html.styles.metrics
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/html/styles.entities" {
|
||||
var exp: dojox.html.styles.entities
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/html/_base._ContentSetter" {
|
||||
var exp: dojox.html._base._ContentSetter
|
||||
export=exp;
|
||||
}
|
||||
|
||||
Vendored
+37
-4
@@ -789,7 +789,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -1828,7 +1828,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -2615,7 +2615,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -2759,4 +2759,37 @@ declare module dojox {
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
declare module "dojox/image" {
|
||||
var exp: dojox.image
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/image/FlickrBadge" {
|
||||
var exp: dojox.image.FlickrBadge
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/image/Lightbox" {
|
||||
var exp: dojox.image.Lightbox
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/image/Lightbox.LightboxDialog" {
|
||||
var exp: dojox.image.Lightbox.LightboxDialog
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/image/LightboxNano" {
|
||||
var exp: dojox.image.LightboxNano
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/image/Badge" {
|
||||
var exp: dojox.image.Badge
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/image/Magnifier" {
|
||||
var exp: dojox.image.Magnifier
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/image/MagnifierLite" {
|
||||
var exp: dojox.image.MagnifierLite
|
||||
export=exp;
|
||||
}
|
||||
|
||||
Vendored
+42
-1
@@ -241,4 +241,45 @@ declare module dojox {
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
declare module "dojox/io/httpParse" {
|
||||
var exp: dojox.io.httpParse
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/io/xhrMultiPart" {
|
||||
var exp: dojox.io.xhrMultiPart
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/io/xhrWindowNamePlugin" {
|
||||
var exp: dojox.io.xhrWindowNamePlugin
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/io/xhrScriptPlugin" {
|
||||
var exp: dojox.io.xhrScriptPlugin
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/io/windowName" {
|
||||
var exp: dojox.io.windowName
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/io/scriptFrame" {
|
||||
var exp: dojox.io.scriptFrame
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/io/scriptFrame._loadedIds" {
|
||||
var exp: dojox.io.scriptFrame._loadedIds
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/io/scriptFrame._waiters" {
|
||||
var exp: dojox.io.scriptFrame._waiters
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/io/proxy/xip" {
|
||||
var exp: dojox.io.proxy.xip
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/io/proxy/xip._state" {
|
||||
var exp: dojox.io.proxy.xip._state
|
||||
export=exp;
|
||||
}
|
||||
|
||||
Vendored
+6
-1
@@ -12,4 +12,9 @@ declare module dojox {
|
||||
*/
|
||||
interface jq {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
declare module "dojox/jq" {
|
||||
var exp: dojox.jq
|
||||
export=exp;
|
||||
}
|
||||
|
||||
Vendored
+10
-1
@@ -129,4 +129,13 @@ declare module dojox {
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
declare module "dojox/json/query" {
|
||||
var exp: dojox.json.query
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/json/ref" {
|
||||
var exp: dojox.json.ref
|
||||
export=exp;
|
||||
}
|
||||
|
||||
Vendored
+10
-1
@@ -28,4 +28,13 @@ declare module dojox {
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
declare module "dojox/jsonPath" {
|
||||
var exp: dojox.jsonPath
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/jsonPath/query" {
|
||||
var exp: dojox.jsonPath.query
|
||||
export=exp;
|
||||
}
|
||||
|
||||
Vendored
+114
-1
@@ -12019,4 +12019,117 @@ declare module dojox {
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
declare module "dojox/lang/observable" {
|
||||
var exp: dojox.lang.observable
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/lang/aspect" {
|
||||
var exp: dojox.lang.aspect
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/lang/aspect/memoizerGuard" {
|
||||
var exp: dojox.lang.aspect.memoizerGuard
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/lang/aspect/memoizer" {
|
||||
var exp: dojox.lang.aspect.memoizer
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/lang/aspect/counter" {
|
||||
var exp: dojox.lang.aspect.counter
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/lang/aspect/cflow" {
|
||||
var exp: dojox.lang.aspect.cflow
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/lang/aspect/timer" {
|
||||
var exp: dojox.lang.aspect.timer
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/lang/aspect/profiler" {
|
||||
var exp: dojox.lang.aspect.profiler
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/lang/aspect/tracer" {
|
||||
var exp: dojox.lang.aspect.tracer
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/lang/async" {
|
||||
var exp: dojox.lang.async
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/lang/async/event" {
|
||||
var exp: dojox.lang.async.event
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/lang/async/timeout" {
|
||||
var exp: dojox.lang.async.timeout
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/lang/async/topic" {
|
||||
var exp: dojox.lang.async.topic
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/lang/functional" {
|
||||
var exp: dojox.lang.functional
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/lang/functional/listcomp" {
|
||||
var exp: dojox.lang.functional.listcomp
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/lang/functional/object" {
|
||||
var exp: dojox.lang.functional.object
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/lang/functional/zip" {
|
||||
var exp: dojox.lang.functional.zip
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/lang/functional/array" {
|
||||
var exp: dojox.lang.functional.array
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/lang/functional/lambda" {
|
||||
var exp: dojox.lang.functional.lambda
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/lang/functional/reversed" {
|
||||
var exp: dojox.lang.functional.reversed
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/lang/functional/sequence" {
|
||||
var exp: dojox.lang.functional.sequence
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/lang/utils" {
|
||||
var exp: dojox.lang.utils
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/lang/oo/mixin" {
|
||||
var exp: dojox.lang.oo.mixin
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/lang/oo/Filter" {
|
||||
var exp: dojox.lang.oo.Filter
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/lang/oo/Decorator" {
|
||||
var exp: dojox.lang.oo.Decorator
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/lang/oo/rearrange" {
|
||||
var exp: dojox.lang.oo.rearrange
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/lang/oo/aop" {
|
||||
var exp: dojox.lang.oo.aop
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/lang/oo/general" {
|
||||
var exp: dojox.lang.oo.general
|
||||
export=exp;
|
||||
}
|
||||
|
||||
Vendored
+87
-13
@@ -915,7 +915,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -1758,7 +1758,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -2448,7 +2448,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -3522,7 +3522,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -3913,6 +3913,7 @@ declare module dojox {
|
||||
set(property:"extractContent", value: boolean): void;
|
||||
get(property:"extractContent"): boolean;
|
||||
watch(property:"extractContent", callback:{(property?:string, oldValue?:boolean, newValue?: boolean):void}) :{unwatch():void}
|
||||
focusNode: HTMLElement;
|
||||
/**
|
||||
* This widget or a widget it contains has focus, or is "active" because
|
||||
* it was recently clicked.
|
||||
@@ -4180,7 +4181,7 @@ declare module dojox {
|
||||
* @param widget
|
||||
* @param insertIndex Optional
|
||||
*/
|
||||
addChild(widget: dijit._WidgetBase, insertIndex: number): void;
|
||||
addChild(widget: dijit._WidgetBase, insertIndex? : number): void;
|
||||
/**
|
||||
* This method is deprecated, use get() or set() directly.
|
||||
*
|
||||
@@ -4688,7 +4689,7 @@ declare module dojox {
|
||||
*
|
||||
* @param callback Optional
|
||||
*/
|
||||
show(callback: Function): void;
|
||||
show(callback?: Function): void;
|
||||
/**
|
||||
*
|
||||
*/
|
||||
@@ -4713,7 +4714,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -6755,7 +6756,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -7788,7 +7789,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -8739,7 +8740,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -9817,7 +9818,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -10766,7 +10767,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -11432,4 +11433,77 @@ declare module dojox {
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
declare module "dojox/layout/BorderContainer" {
|
||||
var exp: dojox.layout.BorderContainer
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/layout/RadioGroup" {
|
||||
var exp: dojox.layout.RadioGroup
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/layout/Dock" {
|
||||
var exp: typeof dojox.layout.Dock
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/layout/DragPane" {
|
||||
var exp: typeof dojox.layout.DragPane
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/layout/ExpandoPane" {
|
||||
var exp: typeof dojox.layout.ExpandoPane
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/layout/ContentPane" {
|
||||
var exp: typeof dojox.layout.ContentPane
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/layout/GridContainer" {
|
||||
var exp: typeof dojox.layout.GridContainer
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/layout/FloatingPane" {
|
||||
var exp: typeof dojox.layout.FloatingPane
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/layout/GridContainerLite" {
|
||||
var exp: typeof dojox.layout.GridContainerLite
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/layout/GridContainerLite.ChildWidgetProperties" {
|
||||
var exp: dojox.layout.GridContainerLite.ChildWidgetProperties
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/layout/ResizeHandle" {
|
||||
var exp: typeof dojox.layout.ResizeHandle
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/layout/ToggleSplitter" {
|
||||
var exp: typeof dojox.layout.ToggleSplitter
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/layout/RotatorContainer" {
|
||||
var exp: typeof dojox.layout.RotatorContainer
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/layout/TableContainer" {
|
||||
var exp: typeof dojox.layout.TableContainer
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/layout/TableContainer.ChildWidgetProperties" {
|
||||
var exp: dojox.layout.TableContainer.ChildWidgetProperties
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/layout/ScrollPane" {
|
||||
var exp: typeof dojox.layout.ScrollPane
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/layout/dnd/Avatar" {
|
||||
var exp: typeof dojox.layout.dnd.Avatar
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/layout/dnd/PlottedDnd" {
|
||||
var exp: typeof dojox.layout.dnd.PlottedDnd
|
||||
export=exp;
|
||||
}
|
||||
|
||||
Vendored
+54
-1
@@ -2327,4 +2327,57 @@ declare module dojox {
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
declare module "dojox/main" {
|
||||
var exp: dojox.main
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/main.languages" {
|
||||
var exp: dojox.main.languages
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/main.islamic" {
|
||||
var exp: dojox.main.islamic
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/main.buddhist" {
|
||||
var exp: dojox.main.buddhist
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/main.charting" {
|
||||
var exp: dojox.main.charting
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/main.hebrew" {
|
||||
var exp: dojox.main.hebrew
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/main.functional" {
|
||||
var exp: dojox.main.functional
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/main.relative" {
|
||||
var exp: dojox.main.relative
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/main.util" {
|
||||
var exp: dojox.main.util
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/main.regexp" {
|
||||
var exp: dojox.main.regexp
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/main.umalqura" {
|
||||
var exp: dojox.main.umalqura
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/main.persian" {
|
||||
var exp: dojox.main.persian
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/main.utils" {
|
||||
var exp: dojox.main.utils
|
||||
export=exp;
|
||||
}
|
||||
|
||||
Vendored
+30
-1
@@ -147,4 +147,33 @@ declare module dojox {
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
declare module "dojox/math" {
|
||||
var exp: dojox.math
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/math/BigInteger" {
|
||||
var exp: dojox.math.BigInteger
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/math/BigInteger-ext" {
|
||||
var exp: dojox.math.BigInteger_ext
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/math/round" {
|
||||
var exp: dojox.math.round
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/math/random/prng4" {
|
||||
var exp: dojox.math.random.prng4
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/math/random/Simple" {
|
||||
var exp: dojox.math.random.Simple
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/math/random/Secure" {
|
||||
var exp: dojox.math.random.Secure
|
||||
export=exp;
|
||||
}
|
||||
|
||||
Vendored
+46
-1
@@ -996,4 +996,49 @@ declare module dojox {
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
declare module "dojox/mdnd/AutoScroll" {
|
||||
var exp: dojox.mdnd.AutoScroll
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mdnd/DropIndicator" {
|
||||
var exp: dojox.mdnd.DropIndicator
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mdnd/AreaManager" {
|
||||
var exp: dojox.mdnd.AreaManager
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mdnd/LazyManager" {
|
||||
var exp: dojox.mdnd.LazyManager
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mdnd/Moveable" {
|
||||
var exp: dojox.mdnd.Moveable
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mdnd/PureSource" {
|
||||
var exp: dojox.mdnd.PureSource
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mdnd/adapter/DndFromDojo" {
|
||||
var exp: dojox.mdnd.adapter.DndFromDojo
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mdnd/adapter/DndToDojo" {
|
||||
var exp: dojox.mdnd.adapter.DndToDojo
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mdnd/dropMode/DefaultDropMode" {
|
||||
var exp: dojox.mdnd.dropMode.DefaultDropMode
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mdnd/dropMode/OverDropMode" {
|
||||
var exp: dojox.mdnd.dropMode.OverDropMode
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mdnd/dropMode/VerticalDropMode" {
|
||||
var exp: dojox.mdnd.dropMode.VerticalDropMode
|
||||
export=exp;
|
||||
}
|
||||
|
||||
Vendored
+662
-69
File diff suppressed because it is too large
Load Diff
Vendored
+322
-25
@@ -676,7 +676,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -2076,7 +2076,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -2737,7 +2737,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -3389,7 +3389,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -4274,7 +4274,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -4984,7 +4984,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -6196,7 +6196,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -6963,7 +6963,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -8572,7 +8572,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -9344,7 +9344,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -9996,7 +9996,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -10657,7 +10657,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -11714,7 +11714,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -12577,7 +12577,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -13339,7 +13339,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -14040,7 +14040,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -14907,7 +14907,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -16209,7 +16209,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -17091,7 +17091,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -17741,7 +17741,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -18847,7 +18847,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -19661,7 +19661,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -20423,7 +20423,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -21124,7 +21124,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -21502,4 +21502,301 @@ declare module dojox {
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
declare module "dojox/mvc" {
|
||||
var exp: dojox.mvc
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mvc/_atBindingMixin" {
|
||||
var exp: dojox.mvc._atBindingMixin
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mvc/_atBindingMixin.mixin" {
|
||||
var exp: dojox.mvc._atBindingMixin.mixin
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mvc/_InlineTemplateMixin" {
|
||||
var exp: dojox.mvc._InlineTemplateMixin
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mvc/_DataBindingMixin" {
|
||||
var exp: dojox.mvc._DataBindingMixin
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mvc/_Controller" {
|
||||
var exp: dojox.mvc._Controller
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mvc/_Container" {
|
||||
var exp: dojox.mvc._Container
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mvc/EditModelRefController" {
|
||||
var exp: dojox.mvc.EditModelRefController
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mvc/EditStoreRefListController" {
|
||||
var exp: dojox.mvc.EditStoreRefListController
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mvc/EditStoreRefController" {
|
||||
var exp: dojox.mvc.EditStoreRefController
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mvc/ListController" {
|
||||
var exp: dojox.mvc.ListController
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mvc/Element" {
|
||||
var exp: dojox.mvc.Element
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mvc/ModelRefController" {
|
||||
var exp: dojox.mvc.ModelRefController
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mvc/Group" {
|
||||
var exp: dojox.mvc.Group
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mvc/Generate" {
|
||||
var exp: dojox.mvc.Generate
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mvc/Output" {
|
||||
var exp: dojox.mvc.Output
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mvc/StatefulModel" {
|
||||
var exp: dojox.mvc.StatefulModel
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mvc/StatefulModel.getPlainValueOptions" {
|
||||
var exp: dojox.mvc.StatefulModel.getPlainValueOptions
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mvc/StatefulModel.getStatefulOptions" {
|
||||
var exp: dojox.mvc.StatefulModel.getStatefulOptions
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mvc/Repeat" {
|
||||
var exp: dojox.mvc.Repeat
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mvc/StoreRefController" {
|
||||
var exp: dojox.mvc.StoreRefController
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mvc/StatefulSeries" {
|
||||
var exp: dojox.mvc.StatefulSeries
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mvc/Templated" {
|
||||
var exp: dojox.mvc.Templated
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mvc/WidgetList" {
|
||||
var exp: dojox.mvc.WidgetList
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mvc/atBindingExtension" {
|
||||
var exp: dojox.mvc.atBindingExtension
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mvc/at" {
|
||||
var exp: dojox.mvc.at
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mvc/at.handle" {
|
||||
var exp: dojox.mvc.at.handle
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mvc/equals" {
|
||||
var exp: dojox.mvc.equals
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mvc/getPlainValue" {
|
||||
var exp: dojox.mvc.getPlainValue
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mvc/getStateful" {
|
||||
var exp: dojox.mvc.getStateful
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mvc/resolve" {
|
||||
var exp: dojox.mvc.resolve
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mvc/StatefulArray" {
|
||||
var exp: dojox.mvc.StatefulArray
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mvc/StatefulArray._meta" {
|
||||
var exp: dojox.mvc.StatefulArray._meta
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mvc/sync" {
|
||||
var exp: dojox.mvc.sync
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mvc/_base" {
|
||||
var exp: dojox.mvc._base
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mvc/_base._InlineTemplateMixin" {
|
||||
var exp: dojox.mvc._base._InlineTemplateMixin
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mvc/_base._Controller" {
|
||||
var exp: dojox.mvc._base._Controller
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mvc/_base._DataBindingMixin" {
|
||||
var exp: dojox.mvc._base._DataBindingMixin
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mvc/_base.EditStoreRefController" {
|
||||
var exp: dojox.mvc._base.EditStoreRefController
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mvc/_base._Container" {
|
||||
var exp: dojox.mvc._base._Container
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mvc/_base.EditModelRefController" {
|
||||
var exp: dojox.mvc._base.EditModelRefController
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mvc/_base.EditStoreRefListController" {
|
||||
var exp: dojox.mvc._base.EditStoreRefListController
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mvc/_base.Element" {
|
||||
var exp: dojox.mvc._base.Element
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mvc/_base.Generate" {
|
||||
var exp: dojox.mvc._base.Generate
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mvc/_base.ListController" {
|
||||
var exp: dojox.mvc._base.ListController
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mvc/_base.ModelRefController" {
|
||||
var exp: dojox.mvc._base.ModelRefController
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mvc/_base.Group" {
|
||||
var exp: dojox.mvc._base.Group
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mvc/_base.StatefulSeries" {
|
||||
var exp: dojox.mvc._base.StatefulSeries
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mvc/_base.Output" {
|
||||
var exp: dojox.mvc._base.Output
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mvc/_base.StoreRefController" {
|
||||
var exp: dojox.mvc._base.StoreRefController
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mvc/_base.Repeat" {
|
||||
var exp: dojox.mvc._base.Repeat
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mvc/_base.StatefulModel" {
|
||||
var exp: dojox.mvc._base.StatefulModel
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mvc/_base.Templated" {
|
||||
var exp: dojox.mvc._base.Templated
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mvc/_base.WidgetList" {
|
||||
var exp: dojox.mvc._base.WidgetList
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mvc/Bind" {
|
||||
var exp: dojox.mvc.Bind
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mvc/Bind._DataBindingMixin" {
|
||||
var exp: dojox.mvc.Bind._DataBindingMixin
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mvc/Bind._Controller" {
|
||||
var exp: dojox.mvc.Bind._Controller
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mvc/Bind._InlineTemplateMixin" {
|
||||
var exp: dojox.mvc.Bind._InlineTemplateMixin
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mvc/Bind.EditModelRefController" {
|
||||
var exp: dojox.mvc.Bind.EditModelRefController
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mvc/Bind.EditStoreRefController" {
|
||||
var exp: dojox.mvc.Bind.EditStoreRefController
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mvc/Bind._Container" {
|
||||
var exp: dojox.mvc.Bind._Container
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mvc/Bind.EditStoreRefListController" {
|
||||
var exp: dojox.mvc.Bind.EditStoreRefListController
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mvc/Bind.Element" {
|
||||
var exp: dojox.mvc.Bind.Element
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mvc/Bind.ListController" {
|
||||
var exp: dojox.mvc.Bind.ListController
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mvc/Bind.ModelRefController" {
|
||||
var exp: dojox.mvc.Bind.ModelRefController
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mvc/Bind.Generate" {
|
||||
var exp: dojox.mvc.Bind.Generate
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mvc/Bind.StatefulSeries" {
|
||||
var exp: dojox.mvc.Bind.StatefulSeries
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mvc/Bind.Group" {
|
||||
var exp: dojox.mvc.Bind.Group
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mvc/Bind.StatefulModel" {
|
||||
var exp: dojox.mvc.Bind.StatefulModel
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mvc/Bind.Output" {
|
||||
var exp: dojox.mvc.Bind.Output
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mvc/Bind.Repeat" {
|
||||
var exp: dojox.mvc.Bind.Repeat
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mvc/Bind.StoreRefController" {
|
||||
var exp: dojox.mvc.Bind.StoreRefController
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mvc/Bind.WidgetList" {
|
||||
var exp: dojox.mvc.Bind.WidgetList
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/mvc/Bind.Templated" {
|
||||
var exp: dojox.mvc.Bind.Templated
|
||||
export=exp;
|
||||
}
|
||||
|
||||
Vendored
+6
-1
@@ -19,4 +19,9 @@ declare module dojox {
|
||||
*/
|
||||
live(selector: any, evtName: any, fn: any): void;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
declare module "dojox/rails" {
|
||||
var exp: dojox.rails
|
||||
export=exp;
|
||||
}
|
||||
|
||||
Vendored
+6
-1
@@ -15,4 +15,9 @@ declare module dojox {
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
declare module "dojox/robot/recorder" {
|
||||
var exp: dojox.robot.recorder
|
||||
export=exp;
|
||||
}
|
||||
|
||||
Vendored
+29
-1
@@ -266,4 +266,32 @@ declare module dojox {
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
declare module "dojox/rpc/Rest" {
|
||||
var exp: dojox.rpc.Rest
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/rpc/Rest._index" {
|
||||
var exp: dojox.rpc.Rest._index
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/rpc/Rest._timeStamps" {
|
||||
var exp: dojox.rpc.Rest._timeStamps
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/rpc/OfflineRest" {
|
||||
var exp: dojox.rpc.OfflineRest
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/rpc/JsonRest" {
|
||||
var exp: dojox.rpc.JsonRest
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/rpc/JsonRest.services" {
|
||||
var exp: dojox.rpc.JsonRest.services
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/rpc/JsonRest.schemas" {
|
||||
var exp: dojox.rpc.JsonRest.schemas
|
||||
export=exp;
|
||||
}
|
||||
|
||||
Vendored
+14
-1
@@ -56,4 +56,17 @@ declare module dojox {
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
declare module "dojox/secure/DOM" {
|
||||
var exp: dojox.secure.DOM
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/secure/sandbox" {
|
||||
var exp: dojox.secure.sandbox
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/secure/capability" {
|
||||
var exp: dojox.secure.capability
|
||||
export=exp;
|
||||
}
|
||||
|
||||
Vendored
+79
-2
@@ -1032,7 +1032,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -1820,4 +1820,81 @@ declare module dojox {
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
declare module "dojox/sketch" {
|
||||
var exp: dojox.sketch
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/sketch/_Plugin" {
|
||||
var exp: dojox.sketch._Plugin
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/sketch/Slider" {
|
||||
var exp: dojox.sketch.Slider
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/sketch/UndoStack" {
|
||||
var exp: dojox.sketch.UndoStack
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/sketch/Toolbar" {
|
||||
var exp: dojox.sketch.Toolbar
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/sketch/Anchor" {
|
||||
var exp: dojox.sketch.Anchor
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/sketch/Annotation" {
|
||||
var exp: dojox.sketch.Annotation
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/sketch/Annotation.Modes" {
|
||||
var exp: dojox.sketch.Annotation.Modes
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/sketch/DoubleArrowAnnotation" {
|
||||
var exp: dojox.sketch.DoubleArrowAnnotation
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/sketch/DoubleArrowAnnotation.control" {
|
||||
var exp: dojox.sketch.DoubleArrowAnnotation.control
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/sketch/DoubleArrowAnnotation.start" {
|
||||
var exp: dojox.sketch.DoubleArrowAnnotation.start
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/sketch/DoubleArrowAnnotation.textPosition" {
|
||||
var exp: dojox.sketch.DoubleArrowAnnotation.textPosition
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/sketch/DoubleArrowAnnotation.transform" {
|
||||
var exp: dojox.sketch.DoubleArrowAnnotation.transform
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/sketch/DoubleArrowAnnotation.end" {
|
||||
var exp: dojox.sketch.DoubleArrowAnnotation.end
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/sketch/Figure" {
|
||||
var exp: dojox.sketch.Figure
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/sketch/PreexistingAnnotation" {
|
||||
var exp: dojox.sketch.PreexistingAnnotation
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/sketch/LeadAnnotation" {
|
||||
var exp: dojox.sketch.LeadAnnotation
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/sketch/SingleArrowAnnotation" {
|
||||
var exp: dojox.sketch.SingleArrowAnnotation
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/sketch/UnderlineAnnotation" {
|
||||
var exp: dojox.sketch.UnderlineAnnotation
|
||||
export=exp;
|
||||
}
|
||||
|
||||
Vendored
+10
-1
@@ -49,4 +49,13 @@ declare module dojox {
|
||||
*/
|
||||
interface Reconnect{(socket: any, options: any): void}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
declare module "dojox/socket" {
|
||||
var exp: dojox.socket
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/socket/Reconnect" {
|
||||
var exp: dojox.socket.Reconnect
|
||||
export=exp;
|
||||
}
|
||||
|
||||
Vendored
+10
-1
@@ -27,4 +27,13 @@ declare module dojox {
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
declare module "dojox/sql" {
|
||||
var exp: dojox.sql
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/sql/_crypto" {
|
||||
var exp: dojox.sql._crypto
|
||||
export=exp;
|
||||
}
|
||||
|
||||
Vendored
+6
-1
@@ -11,4 +11,9 @@ declare module dojox {
|
||||
*/
|
||||
interface storage {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
declare module "dojox/storage" {
|
||||
var exp: dojox.storage
|
||||
export=exp;
|
||||
}
|
||||
|
||||
Vendored
+22
-1
@@ -268,4 +268,25 @@ declare module dojox {
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
declare module "dojox/string/tokenize" {
|
||||
var exp: dojox.string_.tokenize
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/string/sprintf" {
|
||||
var exp: dojox.string_.sprintf
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/string/Builder" {
|
||||
var exp: dojox.string_.Builder
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/string/BidiComplex" {
|
||||
var exp: dojox.string_.BidiComplex
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/string/BidiEngine" {
|
||||
var exp: dojox.string_.BidiEngine
|
||||
export=exp;
|
||||
}
|
||||
|
||||
Vendored
+5
-1
@@ -79,4 +79,8 @@ declare module dojox {
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
declare module "dojox/testing/DocTest" {
|
||||
var exp: dojox.testing.DocTest
|
||||
export=exp;
|
||||
}
|
||||
|
||||
Vendored
+18
-1
@@ -103,4 +103,21 @@ declare module dojox {
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
declare module "dojox/timing" {
|
||||
var exp: dojox.timing
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/timing/Sequence" {
|
||||
var exp: dojox.timing.Sequence
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/timing/doLater" {
|
||||
var exp: dojox.timing.doLater
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/timing/Streamer" {
|
||||
var exp: dojox.timing.Streamer
|
||||
export=exp;
|
||||
}
|
||||
|
||||
Vendored
+27
-2
@@ -995,7 +995,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -1104,4 +1104,29 @@ declare module dojox {
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
declare module "dojox/treemap/_utils" {
|
||||
var exp: dojox.treemap._utils
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/treemap/GroupLabel" {
|
||||
var exp: dojox.treemap.GroupLabel
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/treemap/DrillDownUp" {
|
||||
var exp: dojox.treemap.DrillDownUp
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/treemap/Keyboard" {
|
||||
var exp: dojox.treemap.Keyboard
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/treemap/ScaledLabel" {
|
||||
var exp: dojox.treemap.ScaledLabel
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/treemap/TreeMap" {
|
||||
var exp: dojox.treemap.TreeMap
|
||||
export=exp;
|
||||
}
|
||||
|
||||
Vendored
+26
-1
@@ -221,4 +221,29 @@ declare module dojox {
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
declare module "dojox/uuid" {
|
||||
var exp: dojox.uuid
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/uuid/generateRandomUuid" {
|
||||
var exp: dojox.uuid.generateRandomUuid
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/uuid/generateTimeBasedUuid" {
|
||||
var exp: dojox.uuid.generateTimeBasedUuid
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/uuid/Uuid" {
|
||||
var exp: dojox.uuid.Uuid
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/uuid/_base.variant" {
|
||||
var exp: dojox.uuid._base.variant
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/uuid/_base.version" {
|
||||
var exp: dojox.uuid._base.version
|
||||
export=exp;
|
||||
}
|
||||
|
||||
Vendored
+82
-1
@@ -1303,4 +1303,85 @@ declare module dojox {
|
||||
interface isbn { (value: String): void }
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
declare module "dojox/validate" {
|
||||
var exp: dojox.validate
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/validate/check" {
|
||||
var exp: dojox.validate.check
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/validate/isbn" {
|
||||
var exp: dojox.validate.isbn
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/validate/ca" {
|
||||
var exp: dojox.validate.ca
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/validate/creditCard" {
|
||||
var exp: dojox.validate.creditCard
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/validate/_base" {
|
||||
var exp: dojox.validate._base
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/validate/_base._cardInfo" {
|
||||
var exp: dojox.validate._base._cardInfo
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/validate/_base._isInRangeCache" {
|
||||
var exp: dojox.validate._base._isInRangeCache
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/validate/regexp" {
|
||||
var exp: dojox.validate.regexp
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/validate/regexp.us" {
|
||||
var exp: dojox.validate.regexp.us
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/validate/regexp.ca" {
|
||||
var exp: dojox.validate.regexp.ca
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/validate/br" {
|
||||
var exp: dojox.validate.br
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/validate/br._isInRangeCache" {
|
||||
var exp: dojox.validate.br._isInRangeCache
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/validate/br._cardInfo" {
|
||||
var exp: dojox.validate.br._cardInfo
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/validate/us" {
|
||||
var exp: dojox.validate.us
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/validate/us._isInRangeCache" {
|
||||
var exp: dojox.validate.us._isInRangeCache
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/validate/us._cardInfo" {
|
||||
var exp: dojox.validate.us._cardInfo
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/validate/web" {
|
||||
var exp: dojox.validate.web
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/validate/web._cardInfo" {
|
||||
var exp: dojox.validate.web._cardInfo
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/validate/web._isInRangeCache" {
|
||||
var exp: dojox.validate.web._isInRangeCache
|
||||
export=exp;
|
||||
}
|
||||
|
||||
Vendored
+265
-39
@@ -774,7 +774,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -1544,7 +1544,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -2314,7 +2314,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -3077,7 +3077,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -3821,7 +3821,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -4578,7 +4578,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -5619,7 +5619,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -6441,7 +6441,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -7262,7 +7262,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -8084,7 +8084,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -8905,7 +8905,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -9726,7 +9726,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -10687,7 +10687,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -12011,7 +12011,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -12913,7 +12913,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -13758,7 +13758,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -14489,7 +14489,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -15294,7 +15294,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -16108,7 +16108,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -16917,7 +16917,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -17790,7 +17790,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -18672,7 +18672,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -19477,7 +19477,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -20305,7 +20305,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -21443,7 +21443,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -22535,7 +22535,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -23018,11 +23018,12 @@ declare module dojox {
|
||||
*/
|
||||
class PortletSettings extends dijit._Container implements dijit.layout.ContentPane {
|
||||
constructor(params?: Object, srcNodeRef?: HTMLElement);
|
||||
inherited: { (arguments: IArguments): any };
|
||||
/**
|
||||
* Custom press, release, and click synthetic events
|
||||
* which trigger on a left mouse click, touch, or space/enter keyup.
|
||||
*
|
||||
*/
|
||||
* Custom press, release, and click synthetic events
|
||||
* which trigger on a left mouse click, touch, or space/enter keyup.
|
||||
*
|
||||
*/
|
||||
"a11yclick": Object;
|
||||
/**
|
||||
* Deprecated. Instead of attributeMap, widget should have a _setXXXAttr attribute
|
||||
@@ -23929,7 +23930,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -24916,7 +24917,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -25840,7 +25841,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Over-ride to hide the widget, which clears intervals, before cleanup.
|
||||
*
|
||||
@@ -26715,7 +26716,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -27467,7 +27468,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -28333,7 +28334,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -29236,7 +29237,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -30187,7 +30188,7 @@ declare module dojox {
|
||||
* serialization.
|
||||
*
|
||||
*/
|
||||
toString(): String;
|
||||
toString(): string;
|
||||
/**
|
||||
* Deprecated. Override destroy() instead to implement custom widget tear-down
|
||||
* behavior.
|
||||
@@ -30670,4 +30671,229 @@ declare module dojox {
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
declare module "dojox/widget/CalendarViews" {
|
||||
var exp: dojox.widget.CalendarViews
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/widget/FilePicker" {
|
||||
var exp: dojox.widget.FilePicker
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/widget/_CalendarDay" {
|
||||
var exp: dojox.widget._CalendarDay
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/widget/_CalendarMonthYear" {
|
||||
var exp: dojox.widget._CalendarMonthYear
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/widget/_CalendarMonth" {
|
||||
var exp: dojox.widget._CalendarMonth
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/widget/_CalendarBase" {
|
||||
var exp: dojox.widget._CalendarBase
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/widget/_CalendarDayView" {
|
||||
var exp: dojox.widget._CalendarDayView
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/widget/_CalendarMonthView" {
|
||||
var exp: dojox.widget._CalendarMonthView
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/widget/_CalendarYear" {
|
||||
var exp: dojox.widget._CalendarYear
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/widget/_FisheyeFX" {
|
||||
var exp: dojox.widget._FisheyeFX
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/widget/_CalendarView" {
|
||||
var exp: dojox.widget._CalendarView
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/widget/AutoRotator" {
|
||||
var exp: dojox.widget.AutoRotator
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/widget/_Invalidating" {
|
||||
var exp: dojox.widget._Invalidating
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/widget/_CalendarYearView" {
|
||||
var exp: dojox.widget._CalendarYearView
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/widget/_CalendarMonthYearView" {
|
||||
var exp: dojox.widget._CalendarMonthYearView
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/widget/Calendar2Pane" {
|
||||
var exp: dojox.widget.Calendar2Pane
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/widget/CalendarFisheye" {
|
||||
var exp: dojox.widget.CalendarFisheye
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/widget/Calendar" {
|
||||
var exp: dojox.widget.Calendar
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/widget/Dialog" {
|
||||
var exp: dojox.widget.Dialog
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/widget/Calendar3Pane" {
|
||||
var exp: dojox.widget.Calendar3Pane
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/widget/CalendarFx" {
|
||||
var exp: dojox.widget.CalendarFx
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/widget/DailyCalendar" {
|
||||
var exp: dojox.widget.DailyCalendar
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/widget/FisheyeLite" {
|
||||
var exp: dojox.widget.FisheyeLite
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/widget/FisheyeListItem" {
|
||||
var exp: dojox.widget.FisheyeListItem
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/widget/ColorPicker" {
|
||||
var exp: dojox.widget.ColorPicker
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/widget/FisheyeList" {
|
||||
var exp: dojox.widget.FisheyeList
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/widget/DialogSimple" {
|
||||
var exp: dojox.widget.DialogSimple
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/widget/MonthAndYearlyCalendar" {
|
||||
var exp: dojox.widget.MonthAndYearlyCalendar
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/widget/MonthlyCalendar" {
|
||||
var exp: dojox.widget.MonthlyCalendar
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/widget/PagerItem" {
|
||||
var exp: dojox.widget.PagerItem
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/widget/Pager" {
|
||||
var exp: dojox.widget.Pager
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/widget/MultiSelectCalendar" {
|
||||
var exp: dojox.widget.MultiSelectCalendar
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/widget/MultiSelectCalendar._MonthDropDown" {
|
||||
var exp: dojox.widget.MultiSelectCalendar._MonthDropDown
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/widget/Roller" {
|
||||
var exp: dojox.widget.Roller
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/widget/Roller._Hover" {
|
||||
var exp: dojox.widget.Roller._Hover
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/widget/Roller.RollerSlide" {
|
||||
var exp: dojox.widget.Roller.RollerSlide
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/widget/PlaceholderMenuItem" {
|
||||
var exp: dojox.widget.PlaceholderMenuItem
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/widget/Rotator" {
|
||||
var exp: dojox.widget.Rotator
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/widget/PortletDialogSettings" {
|
||||
var exp: dojox.widget.PortletDialogSettings
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/widget/Portlet" {
|
||||
var exp: dojox.widget.Portlet
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/widget/PortletSettings" {
|
||||
var exp: dojox.widget.PortletSettings
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/widget/Selection" {
|
||||
var exp: dojox.widget.Selection
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/widget/TitleGroup" {
|
||||
var exp: dojox.widget.TitleGroup
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/widget/UpgradeBar" {
|
||||
var exp: dojox.widget.UpgradeBar
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/widget/Toaster" {
|
||||
var exp: dojox.widget.Toaster
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/widget/Wizard" {
|
||||
var exp: dojox.widget.Wizard
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/widget/Standby" {
|
||||
var exp: dojox.widget.Standby
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/widget/YearlyCalendar" {
|
||||
var exp: dojox.widget.YearlyCalendar
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/widget/WizardPane" {
|
||||
var exp: dojox.widget.WizardPane
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/widget/rotator/Fade" {
|
||||
var exp: dojox.widget.rotator.Fade
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/widget/rotator/PanFade" {
|
||||
var exp: dojox.widget.rotator.PanFade
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/widget/rotator/Pan" {
|
||||
var exp: dojox.widget.rotator.Pan
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/widget/rotator/Slide" {
|
||||
var exp: dojox.widget.rotator.Slide
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/widget/rotator/Wipe" {
|
||||
var exp: dojox.widget.rotator.Wipe
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/widget/rotator/Controller" {
|
||||
var exp: dojox.widget.rotator.Controller
|
||||
export=exp;
|
||||
}
|
||||
declare module "dojox/widget/rotator/ThumbnailController" {
|
||||
var exp: dojox.widget.rotator.ThumbnailController
|
||||
export=exp;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user