Merge commit '7f7c9b378f' as 'jquery-ui'

This commit is contained in:
Mark Schouten 2016-08-05 12:57:52 +02:00
commit 0115f4500d
629 changed files with 341074 additions and 0 deletions

68
jquery-ui/build/core.json Normal file
View file

@ -0,0 +1,68 @@
{
"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/"
}
}

View file

@ -0,0 +1,46 @@
{
"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."
}
}

View file

@ -0,0 +1,36 @@
{
"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"
]
}
}

98
jquery-ui/build/release.js vendored Normal file
View file

@ -0,0 +1,98 @@
module.exports = function( Release ) {
var shell = require( "shelljs" ),
path = require( "path" ),
fs = require( "fs" );
function replaceAtVersion() {
console.log( "Replacing @VERSION..." );
var matches = [];
function recurse( folder ) {
fs.readdirSync( folder ).forEach(function( fileName ) {
var content,
fullPath = folder + "/" + fileName;
if ( fs.statSync( fullPath ).isDirectory() ) {
recurse( fullPath );
return;
}
content = fs.readFileSync( fullPath, {
encoding: "utf-8"
});
if ( !/@VERSION/.test( content ) ) {
return;
}
matches.push( fullPath );
fs.writeFileSync( fullPath, content.replace( /@VERSION/g, Release.newVersion ) );
});
}
[ "ui", "themes" ].forEach( recurse );
console.log( "Replaced @VERSION in " + matches.length + " files." );
return matches;
}
function buildCDNPackage( callback ) {
console.log( "Building CDN package" );
var downloadBuilder = require( "download.jqueryui.com" ),
jqueryUi = new downloadBuilder.JqueryUi( path.resolve( "." ) ),
builder = new downloadBuilder.Builder( jqueryUi, ":all:" ),
packer = new downloadBuilder.ThemesPacker( builder, {
includeJs: true
}),
target = "../" + jqueryUi.pkg.name + "-" + jqueryUi.pkg.version + "-cdn.zip";
// Zip dir structure must be flat, override default base folder
packer.basedir = "";
packer.zipTo( target, function( error ) {
if ( error ) {
Release.abort( "Failed to zip CDN package", error );
}
callback();
});
}
Release.define({
issueTracker: "trac",
contributorReportId: 22,
changelogShell: function() {
var monthNames = [ "January", "February", "March", "April", "May", "June", "July",
"August", "September", "October", "November", "December" ],
now = new Date();
return "<script>{\n\t\"title\": \"jQuery UI " + Release.newVersion + " Changelog\"\n" +
"}</script>\n\nReleased on " + monthNames[ now.getMonth() ] + " " + now.getDate() + ", " + now.getFullYear() + "\n\n";
},
generateArtifacts: function( fn ) {
var files;
function copyCdnFiles() {
var zipFile = shell.ls( "../jquery*-cdn.zip" )[ 0 ],
tmpFolder = "../tmp-zip-output",
unzipCommand = "unzip -o " + zipFile + " -d " + tmpFolder;
console.log( "Unzipping for dist/cdn copies" );
shell.mkdir( "-p", tmpFolder );
Release.exec({
command: unzipCommand,
silent: true
}, "Failed to unzip cdn files" );
shell.mkdir( "-p", "dist/cdn" );
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 );
}
});
};
module.exports.dependencies = [
"download.jqueryui.com@2.0.15",
"shelljs@0.2.6"
];

134
jquery-ui/build/tasks/build.js vendored Normal file
View file

@ -0,0 +1,134 @@
module.exports = function( grunt ) {
"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" );
});
grunt.registerTask( "asciilint", function() {
var valid = true,
files = grunt.file.expand({ filter: "isFile" }, "ui/*.js" );
files.forEach(function( filename ) {
var i, c,
text = grunt.file.read( filename );
// Ensure files use only \n for line endings, not \r\n
if ( /\x0d\x0a/.test( text ) ) {
grunt.log.error( filename + ": Incorrect line endings (\\r\\n)" );
valid = false;
}
// Ensure only ASCII chars so script tags don't need a charset attribute
if ( text.length !== Buffer.byteLength( text, "utf8" ) ) {
grunt.log.error( filename + ": Non-ASCII characters detected:" );
for ( i = 0; i < text.length; i++ ) {
c = text.charCodeAt( i );
if ( c > 127 ) {
grunt.log.error( "- position " + i + ": " + c );
grunt.log.error( "-- " + text.substring( i - 20, i + 20 ) );
break;
}
}
valid = false;
}
});
if ( valid ) {
grunt.log.ok( files.length + " files lint free." );
}
return valid;
});
};

93
jquery-ui/build/tasks/testswarm.js vendored Normal file
View file

@ -0,0 +1,93 @@
module.exports = function( grunt ) {
"use strict";
var versions = {
"git": "git",
"1.10": "1.10.0 1.10.2",
"1.9": "1.9.0 1.9.1",
"1.8": "1.8.0 1.8.1 1.8.2 1.8.3",
"1.7": "1.7.0 1.7.1 1.7.2",
"1.6": "1.6.0 1.6.1 1.6.2 1.6.3 1.6.4"
},
tests = {
"Accordion": "accordion/accordion.html",
"Autocomplete": "autocomplete/autocomplete.html",
"Button": "button/button.html",
"Core": "core/core.html",
"Core_deprecated": "core/core_deprecated.html",
"Datepicker": "datepicker/datepicker.html",
"Dialog": "dialog/dialog.html",
"Draggable": "draggable/draggable.html",
"Droppable": "droppable/droppable.html",
"Effects": "effects/effects.html",
"Menu": "menu/menu.html",
"Position": "position/position.html",
"Progressbar": "progressbar/progressbar.html",
"Resizable": "resizable/resizable.html",
"Selectable": "selectable/selectable.html",
"Selectmenu": "selectmenu/selectmenu.html",
"Slider": "slider/slider.html",
"Sortable": "sortable/sortable.html",
"Spinner": "spinner/spinner.html",
"Tabs": "tabs/tabs.html",
"Tooltip": "tooltip/tooltip.html",
"Widget": "widget/widget.html"
};
function submit( commit, runs, configFile, extra, done ) {
var testName,
testswarm = require( "testswarm" ),
config = grunt.file.readJSON( configFile ).jqueryui,
commitUrl = "https://github.com/jquery/jquery-ui/commit/" + commit;
if ( extra ) {
extra = " (" + extra + ")";
}
for ( testName in runs ) {
runs[ testName ] = config.testUrl + commit + "/tests/unit/" + runs[ testName ];
}
testswarm.createClient({
url: config.swarmUrl
})
.addReporter( testswarm.reporters.cli )
.auth({
id: config.authUsername,
token: config.authToken
})
.addjob({
name: "Commit <a href='" + commitUrl + "'>" + commit.substr( 0, 10 ) + "</a>" + extra,
runs: runs,
runMax: config.runMax,
browserSets: config.browserSets,
timeout: 1000 * 60 * 30
}, function( error, passed ) {
if ( error ) {
grunt.log.error( error );
}
done( passed );
});
}
grunt.registerTask( "testswarm", function( commit, configFile ) {
var test,
latestTests = {};
for ( test in tests ) {
latestTests[ test ] = tests[ test ] + "?nojshint=true";
}
submit( commit, latestTests, configFile, "", this.async() );
});
grunt.registerTask( "testswarm-multi-jquery", function( commit, configFile, minor ) {
var allTests = {};
versions[ minor ].split(" ").forEach(function( version ) {
for ( var test in tests ) {
allTests[ test + "-" + version ] = tests[ test ] + "?nojshint=true&jquery=" + version;
}
});
submit( commit, allTests, configFile, "core " + minor, this.async() );
});
};

1
jquery-ui/build/themes Normal file

File diff suppressed because one or more lines are too long

106
jquery-ui/build/widget.json Normal file
View file

@ -0,0 +1,106 @@
{
"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": []
}
}