source: Dev/branches/rest-dojo-ui/client/dijit/dijit-all.js @ 274

Last change on this file since 274 was 256, checked in by hendrikvanantwerpen, 13 years ago

Reworked project structure based on REST interaction and Dojo library. As
soon as this is stable, the old jQueryUI branch can be removed (it's
kept for reference).

File size: 1.6 KB
Line 
1define([
2        ".",
3        "./dijit",
4        "./ColorPalette",
5        "./Declaration",
6        "./Dialog",
7        "./DialogUnderlay",
8        "./TooltipDialog",
9        "./Editor",
10        "./_editor/plugins/FontChoice",
11        "./_editor/plugins/LinkDialog",
12        "./Menu",
13        "./MenuItem",
14        "./PopupMenuItem",
15        "./CheckedMenuItem",
16        "./MenuBar",
17        "./MenuBarItem",
18        "./PopupMenuBarItem",
19        "./MenuSeparator",
20        "./ProgressBar",
21        "./TitlePane",
22        "./Toolbar",
23        "./Tooltip",
24        "./Tree",
25        "./InlineEditBox",
26        "./form/Form",
27        "./form/Button",
28        "./form/DropDownButton",
29        "./form/ComboButton",
30        "./form/ToggleButton",
31        "./form/CheckBox",
32        "./form/RadioButton",
33        "./form/TextBox",
34        "./form/ValidationTextBox",
35        "./form/CurrencyTextBox",
36        "./form/DateTextBox",
37        "./form/TimeTextBox",
38        "./form/NumberSpinner",
39        "./form/NumberTextBox",
40        "./form/ComboBox",
41        "./form/FilteringSelect",
42        "./form/MultiSelect",
43        "./form/Select",
44        "./form/HorizontalSlider",
45        "./form/VerticalSlider",
46        "./form/HorizontalRule",
47        "./form/VerticalRule",
48        "./form/HorizontalRuleLabels",
49        "./form/VerticalRuleLabels",
50        "./form/SimpleTextarea",
51        "./form/Textarea",
52        "./layout/AccordionContainer",
53        "./layout/ContentPane",
54        "./layout/BorderContainer",
55        "./layout/LayoutContainer",
56        "./layout/LinkPane",
57        "./layout/SplitContainer",
58        "./layout/StackContainer",
59        "./layout/TabContainer"
60], function(dijit){
61
62        // module:
63        //              dijit/dijit-all
64        // summary:
65        //              A rollup that includes every dijit. You probably don't need this.
66
67        console.warn("dijit-all may include much more code than your application actually requires. We strongly recommend that you investigate a custom build or the web build tool");
68
69        return dijit;
70});
Note: See TracBrowser for help on using the repository browser.