+++ /dev/null
-{
- "core": {
- "description": "The core of jQuery UI, required for all interactions and widgets.",
- "homepage": "http://jqueryui.com/",
- "demo": "http://jqueryui.com/",
- "docs": "http://api.jqueryui.com/category/ui-core/"
- },
- "datepicker": {
- "description": "Displays a calendar from an input or inline for selecting dates.",
- "dependencies": [ "core" ],
- "keywords": [
- "form",
- "calendar",
- "date",
- "i18n"
- ],
- "category": "widget"
- },
- "effect": {
- "title": "jQuery UI Effects Core",
- "description": "Extends the internal jQuery effects. Includes morphing and easing. Required by all other effects.",
- "keywords": [
- "animation",
- "show",
- "hide",
- "color",
- "class",
- "transition",
- "easing"
- ],
- "category": "effect",
- "homepage": "http://jqueryui.com/",
- "demo": "http://jqueryui.com/effect/",
- "docs": "http://api.jqueryui.com/category/effects-core/"
- },
- "position": {
- "description": "Positions elements relative to other elements.",
- "keywords": [
- "offset",
- "relative",
- "absolute",
- "fixed",
- "collision"
- ]
- },
- "transfer": {
- "name": "ui.effect-transfer",
- "title": "jQuery UI Transfer Effect",
- "description": "Displays a transfer effect from one element to another.",
- "keywords": [
- "effect"
- ],
- "homepage": "http://jqueryui.com/transfer-effect/",
- "demo": "http://jqueryui.com/transfer-effect/",
- "docs": "http://api.jqueryui.com/transfer-effect/",
- "dependencies": [ "effect" ],
- "category": "effect"
- },
- "widget": {
- "description": "Provides a factory for creating stateful widgets with a common API.",
- "keywords": [
- "abstraction",
- "state",
- "factory"
- ],
- "docs": "http://api.jqueryui.com/jQuery.widget/"
- }
-}
+++ /dev/null
-{
- "blind": {
- "description": "Blinds the element."
- },
- "bounce": {
- "description": "Bounces an element horizontally or vertically n times."
- },
- "clip": {
- "description": "Clips the element on and off like an old TV."
- },
- "drop": {
- "description": "Moves an element in one direction and hides it at the same time."
- },
- "explode": {
- "description": "Explodes an element in all directions into n pieces. Implodes an element to its original wholeness."
- },
- "fade": {
- "description": "Fades an element."
- },
- "fold": {
- "description": "Folds an element first horizontally and then vertically."
- },
- "highlight": {
- "description": "Highlights the background of an element in a defined color for a custom duration."
- },
- "puff": {
- "dependencies": [ "effect-scale" ],
- "description": "Creates a puff effect by scaling the element up and hiding it at the same time."
- },
- "pulsate": {
- "description": "Pulsates an element n times by changing the opacity to zero and back."
- },
- "scale": {
- "dependencies": [ "effect-size" ],
- "description": "Grows or shrinks an element and its content. Restores an element to its original size."
- },
- "shake": {
- "description": "Shakes an element horizontally or vertically n times."
- },
- "size": {
- "description": "Resize an element to a specified width and height."
- },
- "slide": {
- "description": "Slides an element in and out of the viewport."
- }
-}
+++ /dev/null
-{
- "draggable": {
- "description": "Enables dragging functionality for any element.",
- "keywords": [
- "drag",
- "drop"
- ]
- },
- "droppable": {
- "dependencies": [ "draggable" ],
- "description": "Enables drop targets for draggable elements.",
- "keywords": [
- "drag",
- "drop"
- ]
- },
- "resizable": {
- "description": "Enables resize functionality for any element.",
- "keywords": [
- "resize"
- ]
- },
- "selectable": {
- "description": "Allows groups of elements to be selected with the mouse.",
- "keywords": [
- "selection"
- ]
- },
- "sortable": {
- "description": "Enables items in a list to be sorted using the mouse.",
- "keywords": [
- "sort",
- "list"
- ]
- }
-}
\ No newline at end of file
"}</script>\n\nReleased on " + monthNames[ now.getMonth() ] + " " + now.getDate() + ", " + now.getFullYear() + "\n\n";
},
generateArtifacts: function( fn ) {
- var files;
- function copyCdnFiles() {
+ var files = replaceAtVersion();
+
+ buildCDNPackage(function copyCdnFiles() {
var zipFile = shell.ls( "../jquery*-cdn.zip" )[ 0 ],
tmpFolder = "../tmp-zip-output",
unzipCommand = "unzip -o " + zipFile + " -d " + tmpFolder;
shell.cp( tmpFolder + "/jquery-ui*.js", "dist/cdn" );
shell.cp( "-r", tmpFolder + "/themes", "dist/cdn" );
fn( files );
- }
-
- Release.exec( "grunt manifest" );
- files = shell.ls( "*.jquery.json" ).concat( replaceAtVersion() );
- buildCDNPackage( copyCdnFiles );
+ });
}
});
"use strict";
-grunt.registerTask( "manifest", "Generate jquery.json manifest files", function() {
- var uiFiles,
- totalManifests = 0,
- pkg = grunt.config( "pkg" ),
- base = {
- core: {
- name: "ui.{plugin}",
- title: "jQuery UI {Plugin}"
- },
- widget: {
- name: "ui.{plugin}",
- title: "jQuery UI {Plugin}",
- dependencies: [ "core", "widget" ]
- },
- interaction: {
- name: "ui.{plugin}",
- title: "jQuery UI {Plugin}",
- dependencies: [ "core", "widget", "mouse" ]
- },
- effect: {
- name: "ui.effect-{plugin}",
- title: "jQuery UI {Plugin} Effect",
- keywords: [ "effect", "show", "hide" ],
- homepage: "http://jqueryui.com/effect/",
- demo: "http://jqueryui.com/effect/",
- docs: "http://api.jqueryui.com/{plugin}-effect/",
- dependencies: [ "effect" ]
- }
- };
-
- Object.keys( base ).forEach(function( type ) {
- var baseManifest = base[ type ],
- plugins = grunt.file.readJSON( "build/" + type + ".json" ),
- bower = grunt.file.readJSON( "bower.json" );
-
- Object.keys( plugins ).forEach(function( plugin ) {
- var manifest, bowerKey,
- data = plugins[ plugin ],
- name = plugin.charAt( 0 ).toUpperCase() + plugin.substr( 1 );
-
- function replace( str ) {
- return str.replace( "{plugin}", plugin ).replace( "{Plugin}", name );
- }
-
- manifest = {
- name: data.name || replace( baseManifest.name ),
- title: data.title || replace( baseManifest.title ),
- description: data.description,
- keywords: [ "ui", plugin ]
- .concat( baseManifest.keywords || [] )
- .concat( data.keywords || [] ),
- version: pkg.version,
- author: pkg.author,
- maintainers: pkg.maintainers,
- licenses: pkg.licenses,
- bugs: pkg.bugs,
- homepage: data.homepage || replace( baseManifest.homepage ||
- "http://jqueryui.com/{plugin}/" ),
- demo: data.demo || replace( baseManifest.demo ||
- "http://jqueryui.com/{plugin}/" ),
- docs: data.docs || replace( baseManifest.docs ||
- "http://api.jqueryui.com/{plugin}/" ),
- download: "http://jqueryui.com/download/",
- dependencies: {},
- // custom
- category: data.category || type
- };
-
- for ( bowerKey in bower.dependencies ) {
- manifest.dependencies[ bowerKey ] = bower.dependencies[ bowerKey ];
- }
-
- (baseManifest.dependencies || [])
- .concat(data.dependencies || [])
- .forEach(function( dependency ) {
- manifest.dependencies[ "ui." + dependency ] = pkg.version;
- });
-
- grunt.file.write( manifest.name + ".jquery.json",
- JSON.stringify( manifest, null, "\t" ) + "\n" );
- totalManifests += 1;
- });
- });
-
- uiFiles = grunt.file.expand( "ui/*.js" ).length;
- if ( totalManifests !== uiFiles ) {
- grunt.log.error( "Generated " + totalManifests + " manifest files, but there are " +
- uiFiles + " ui/*.js files. Do all of them have entries?" );
- return false;
- }
-});
-
grunt.registerTask( "clean", function() {
require( "rimraf" ).sync( "dist" );
});
+++ /dev/null
-{
- "accordion": {
- "dependencies": [],
- "description": "Displays collapsible content panels for presenting information in a limited amount of space.",
- "keywords": [
- "navigation",
- "panel",
- "collapse",
- "expand"
- ]
- },
- "autocomplete": {
- "dependencies": [ "menu", "position" ],
- "description": "Lists suggested words as the user is typing.",
- "keywords": [
- "form",
- "word",
- "predict",
- "suggest"
- ]
- },
- "button": {
- "dependencies": [],
- "description": "Enhances a form with themeable buttons.",
- "keywords": [
- "form",
- "radio",
- "checkbox"
- ]
- },
- "dialog": {
- "dependencies": [ "button", "draggable", "position", "resizable" ],
- "description": "Displays customizable dialog windows.",
- "keywords": [
- "modal",
- "alert",
- "popup"
- ]
- },
- "menu": {
- "dependencies": [ "position" ],
- "description": "Creates nestable menus.",
- "keywords": [
- "dropdown",
- "flyout"
- ]
- },
- "mouse": {
- "dependencies": [],
- "description": "Abstracts mouse-based interactions to assist in creating certain widgets.",
- "keywords": [
- "abstraction"
- ],
- "category": "core"
- },
- "progressbar": {
- "dependencies": [],
- "description": "Displays a status indicator for loading state, standard percentage, and other progress indicators.",
- "keywords": [
- "determinate",
- "status"
- ]
- },
- "selectmenu": {
- "dependencies": [ "position", "menu" ],
- "description": "Duplicates and extends the functionality of a native HTML select element, allowing it to be customizable in behavior and appearance far beyond the limitations of a native select.",
- "keywords": [
- "form",
- "select"
- ]
- },
- "slider": {
- "dependencies": [ "mouse" ],
- "description": "Displays a flexible slider with ranges and accessibility via keyboard.",
- "keywords": [
- "form",
- "number",
- "range"
- ]
- },
- "spinner": {
- "dependencies": [ "button" ],
- "description": "Displays buttons to easily input numbers via the keyboard or mouse.",
- "keywords": [
- "form",
- "number",
- "spinbutton",
- "stepper"
- ]
- },
- "tabs": {
- "dependencies": [],
- "description": "Transforms a set of container elements into a tab structure.",
- "keywords": [
- "navigation",
- "panel",
- "collapse",
- "expand"
- ]
- },
- "tooltip": {
- "dependencies": [ "position" ],
- "description": "Shows additional information for any element on hover or focus.",
- "keywords": []
- }
-}
* Copyright 2014 jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
- *
- * http://api.jqueryui.com/accordion/
*/
+
+//>>label: Accordion
+//>>group: Widgets
+//>>description: Displays collapsible content panels for presenting information in a limited amount of space.
+//>>docs: http://api.jqueryui.com/accordion/
+//>>demos: http://jqueryui.com/accordion/
+
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
* Copyright 2014 jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
- *
- * http://api.jqueryui.com/autocomplete/
*/
+
+//>>label: Autocomplete
+//>>group: Widgets
+//>>description: Lists suggested words as the user is typing.
+//>>docs: http://api.jqueryui.com/autocomplete/
+//>>demos: http://jqueryui.com/autocomplete/
+
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
* Copyright 2014 jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
- *
- * http://api.jqueryui.com/button/
*/
+
+//>>label: Button
+//>>group: Widgets
+//>>description: Enhances a form with themeable buttons.
+//>>docs: http://api.jqueryui.com/button/
+//>>demos: http://jqueryui.com/button/
+
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
* Released under the MIT license.
* http://jquery.org/license
*
- * http://api.jqueryui.com/category/ui-core/
*/
+
+//>>label: Core
+//>>group: UI Core
+//>>description: The core of jQuery UI, required for all interactions and widgets.
+//>>docs: http://api.jqueryui.com/category/ui-core/
+//>>demos: http://jqueryui.com/
+
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
* Copyright 2014 jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
- *
- * http://api.jqueryui.com/datepicker/
*/
+
+//>>label: Datepicker
+//>>group: Widgets
+//>>description: Displays a calendar from an input or inline for selecting dates.
+//>>docs: http://api.jqueryui.com/datepicker/
+//>>demos: http://jqueryui.com/datepicker/
+
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
* Copyright 2014 jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
- *
- * http://api.jqueryui.com/dialog/
*/
+
+//>>label: Dialog
+//>>group: Widgets
+//>>description: Displays customizable dialog windows.
+//>>docs: http://api.jqueryui.com/dialog/
+//>>demos: http://jqueryui.com/dialog/
+
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
* Copyright 2014 jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
- *
- * http://api.jqueryui.com/draggable/
*/
+
+//>>label: Draggable
+//>>group: Interactions
+//>>description: Enables dragging functionality for any element.
+//>>docs: http://api.jqueryui.com/draggable/
+//>>demos: http://jqueryui.com/draggable/
+
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
* Copyright 2014 jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
- *
- * http://api.jqueryui.com/droppable/
*/
+
+//>>label: Droppable
+//>>group: Interactions
+//>>description: Enables drop targets for draggable elements.
+//>>docs: http://api.jqueryui.com/droppable/
+//>>demos: http://jqueryui.com/droppable/
+
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
* Copyright 2014 jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
- *
- * http://api.jqueryui.com/blind-effect/
*/
+
+//>>label: Blind Effect
+//>>group: Effects
+//>>description: Blinds the element.
+//>>docs: http://api.jqueryui.com/blind-effect/
+//>>demos: http://jqueryui.com/effect/
+
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
* Copyright 2014 jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
- *
- * http://api.jqueryui.com/bounce-effect/
*/
+
+//>>label: Bounce Effect
+//>>group: Effects
+//>>description: Bounces an element horizontally or vertically n times.
+//>>docs: http://api.jqueryui.com/bounce-effect/
+//>>demos: http://jqueryui.com/effect/
+
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
* Copyright 2014 jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
- *
- * http://api.jqueryui.com/clip-effect/
*/
+
+//>>label: Clip Effect
+//>>group: Effects
+//>>description: Clips the element on and off like an old TV.
+//>>docs: http://api.jqueryui.com/clip-effect/
+//>>demos: http://jqueryui.com/effect/
+
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
* Copyright 2014 jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
- *
- * http://api.jqueryui.com/drop-effect/
*/
+
+//>>label: Drop Effect
+//>>group: Effects
+//>>description: Moves an element in one direction and hides it at the same time.
+//>>docs: http://api.jqueryui.com/drop-effect/
+//>>demos: http://jqueryui.com/effect/
+
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
* Copyright 2014 jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
- *
- * http://api.jqueryui.com/explode-effect/
*/
+
+//>>label: Explode Effect
+//>>group: Effects
+//>>description: Explodes an element in all directions into n pieces. Implodes an element to its original wholeness.
+//>>docs: http://api.jqueryui.com/explode-effect/
+//>>demos: http://jqueryui.com/effect/
+
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
* Copyright 2014 jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
- *
- * http://api.jqueryui.com/fade-effect/
*/
+
+//>>label: Fade Effect
+//>>group: Effects
+//>>description: Fades the element.
+//>>docs: http://api.jqueryui.com/fade-effect/
+//>>demos: http://jqueryui.com/effect/
+
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
* Copyright 2014 jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
- *
- * http://api.jqueryui.com/fold-effect/
*/
+
+//>>label: Fold Effect
+//>>group: Effects
+//>>description: Folds an element first horizontally and then vertically.
+//>>docs: http://api.jqueryui.com/fold-effect/
+//>>demos: http://jqueryui.com/effect/
+
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
* Copyright 2014 jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
- *
- * http://api.jqueryui.com/highlight-effect/
*/
+
+//>>label: Highlight Effect
+//>>group: Effects
+//>>description: Highlights the background of an element in a defined color for a custom duration.
+//>>docs: http://api.jqueryui.com/highlight-effect/
+//>>demos: http://jqueryui.com/effect/
+
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
* Copyright 2014 jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
- *
- * http://api.jqueryui.com/puff-effect/
*/
+
+//>>label: Puff Effect
+//>>group: Effects
+//>>description: Creates a puff effect by scaling the element up and hiding it at the same time.
+//>>docs: http://api.jqueryui.com/puff-effect/
+//>>demos: http://jqueryui.com/effect/
+
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
* Copyright 2014 jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
- *
- * http://api.jqueryui.com/pulsate-effect/
*/
+
+//>>label: Pulsate Effect
+//>>group: Effects
+//>>description: Pulsates an element n times by changing the opacity to zero and back.
+//>>docs: http://api.jqueryui.com/pulsate-effect/
+//>>demos: http://jqueryui.com/effect/
+
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
* Copyright 2014 jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
- *
- * http://api.jqueryui.com/scale-effect/
*/
+
+//>>label: Scale Effect
+//>>group: Effects
+//>>description: Grows or shrinks an element and its content. Restores an element to its original size.
+//>>docs: http://api.jqueryui.com/scale-effect/
+//>>demos: http://jqueryui.com/effect/
+
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
* Copyright 2014 jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
- *
- * http://api.jqueryui.com/shake-effect/
*/
+
+//>>label: Shake Effect
+//>>group: Effects
+//>>description: Shakes an element horizontally or vertically n times.
+//>>docs: http://api.jqueryui.com/shake-effect/
+//>>demos: http://jqueryui.com/effect/
+
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
* Copyright 2014 jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
- *
- * http://api.jqueryui.com/size-effect/
*/
+
+//>>label: Size Effect
+//>>group: Effects
+//>>description: Resize an element to a specified width and height.
+//>>docs: http://api.jqueryui.com/size-effect/
+//>>demos: http://jqueryui.com/effect/
+
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
* Copyright 2014 jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
- *
- * http://api.jqueryui.com/slide-effect/
*/
+
+//>>label: Slide Effect
+//>>group: Effects
+//>>description: Slides an element in and out of the viewport.
+//>>docs: http://api.jqueryui.com/slide-effect/
+//>>demos: http://jqueryui.com/effect/
+
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
* Copyright 2014 jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
- *
- * http://api.jqueryui.com/transfer-effect/
*/
+
+//>>label: Transfer Effect
+//>>group: Effects
+//>>description: Displays a transfer effect from one element to another.
+//>>docs: http://api.jqueryui.com/transfer-effect/
+//>>demos: http://jqueryui.com/effect/
+
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
* Copyright 2014 jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
- *
- * http://api.jqueryui.com/category/effects-core/
*/
+
+//>>label: Effects Core
+//>>group: Effects
+//>>description: Extends the internal jQuery effects. Includes morphing and easing. Required by all other effects.
+//>>docs: http://api.jqueryui.com/category/effects-core/
+//>>demos: http://jqueryui.com/effect/
+
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
* Copyright 2014 jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
- *
- * http://api.jqueryui.com/menu/
*/
+
+//>>label: Menu
+//>>group: Widgets
+//>>description: Creates nestable menus.
+//>>docs: http://api.jqueryui.com/menu/
+//>>demos: http://jqueryui.com/menu/
+
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
* Copyright 2014 jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
- *
- * http://api.jqueryui.com/mouse/
*/
+
+//>>label: Mouse
+//>>group: UI Core
+//>>description: Abstracts mouse-based interactions to assist in creating certain widgets.
+//>>docs: http://api.jqueryui.com/mouse/
+
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
*
* http://api.jqueryui.com/position/
*/
+
+//>>label: Position
+//>>group: UI Core
+//>>description: Positions elements relative to other elements.
+//>>docs: http://api.jqueryui.com/position/
+//>>demos: http://jqueryui.com/position/
+
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
* Copyright 2014 jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
- *
- * http://api.jqueryui.com/progressbar/
*/
+
+//>>label: Progressbar
+//>>group: Widgets
+//>>description: Displays a status indicator for loading state, standard percentage, and other progress indicators.
+//>>docs: http://api.jqueryui.com/progressbar/
+//>>demos: http://jqueryui.com/progressbar/
+
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
* Copyright 2014 jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
- *
- * http://api.jqueryui.com/resizable/
*/
+
+//>>label: Resizble
+//>>group: Interactions
+//>>description: Enables resize functionality for any element.
+//>>docs: http://api.jqueryui.com/resizable/
+//>>demos: http://jqueryui.com/resizable/
+
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
* Copyright 2014 jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
- *
- * http://api.jqueryui.com/selectable/
*/
+
+//>>label: Selectable
+//>>group: Interactions
+//>>description: Allows groups of elements to be selected with the mouse.
+//>>docs: http://api.jqueryui.com/selectable/
+//>>demos: http://jqueryui.com/selectable/
+
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
* Copyright 2014 jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
- *
- * http://api.jqueryui.com/selectmenu
*/
+
+//>>label: Selectmenu
+//>>group: Widgets
+//>>description: Duplicates and extends the functionality of a native HTML select element, allowing it to be customizable in behavior and appearance far beyond the limitations of a native select.
+//>>docs: http://api.jqueryui.com/selectmenu/
+//>>demos: http://jqueryui.com/selectmenu/
+
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
* Copyright 2014 jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
- *
- * http://api.jqueryui.com/slider/
*/
+
+//>>label: Slider
+//>>group: Widgets
+//>>description: Displays a flexible slider with ranges and accessibility via keyboard.
+//>>docs: http://api.jqueryui.com/slider/
+//>>demos: http://jqueryui.com/slider/
+
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
* Copyright 2014 jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
- *
- * http://api.jqueryui.com/sortable/
*/
+
+//>>label: Sortable
+//>>group: Interactions
+//>>description: Enables items in a list to be sorted using the mouse.
+//>>docs: http://api.jqueryui.com/sortable/
+//>>demos: http://jqueryui.com/sortable/
+
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
* Copyright 2014 jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
- *
- * http://api.jqueryui.com/spinner/
*/
+
+//>>label: Spinner
+//>>group: Widgets
+//>>description: Displays buttons to easily input numbers via the keyboard or mouse.
+//>>docs: http://api.jqueryui.com/spinner/
+//>>demos: http://jqueryui.com/spinner/
+
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
* Copyright 2014 jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
- *
- * http://api.jqueryui.com/tabs/
*/
+
+//>>label: Tabs
+//>>group: Widgets
+//>>description: Transforms a set of container elements into a tab structure.
+//>>docs: http://api.jqueryui.com/tabs/
+//>>demos: http://jqueryui.com/tabs/
+
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
* Copyright 2014 jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
- *
- * http://api.jqueryui.com/tooltip/
*/
+
+//>>label: Tooltip
+//>>group: Widgets
+//>>description: Shows additional information for any element on hover or focus.
+//>>docs: http://api.jqueryui.com/tooltip/
+//>>demos: http://jqueryui.com/tooltip/
+
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
* Copyright 2014 jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
- *
- * http://api.jqueryui.com/jQuery.widget/
*/
+
+//>>label: Widget
+//>>group: UI Core
+//>>description: Provides a factory for creating stateful widgets with a common API.
+//>>docs: http://api.jqueryui.com/jQuery.widget/
+//>>demos: http://jqueryui.com/widget/
+
(function( factory ) {
if ( typeof define === "function" && define.amd ) {