JSPM

  • Created
  • Published
  • Downloads 554839
  • Score
    100M100P100Q172530F

A curated set of user interface interactions, effects, widgets, and themes built on top of the jQuery JavaScript Library.

Package Exports

  • jquery-ui
  • jquery-ui/accordion
  • jquery-ui/autocomplete
  • jquery-ui/core
  • jquery-ui/datepicker
  • jquery-ui/draggable
  • jquery-ui/draggable.js
  • jquery-ui/droppable
  • jquery-ui/droppable.js
  • jquery-ui/mouse
  • jquery-ui/position
  • jquery-ui/resizable
  • jquery-ui/resizable.js
  • jquery-ui/slider
  • jquery-ui/sortable
  • jquery-ui/sortable.js
  • jquery-ui/spinner
  • jquery-ui/tabs
  • jquery-ui/themes/smoothness/jquery-ui.min.css
  • jquery-ui/tooltip
  • jquery-ui/widget

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (jquery-ui) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

jQuery UI for Browserify

jQuery UI provides interactions like Drag and Drop and widgets like Autocomplete, Tabs and Slider and makes these as easy to use as jQuery itself.

If you want to use jQuery UI, go to jqueryui.com to get started. Or visit the Using jQuery UI Forum for discussions and questions.

This repo has a script to convert jQuery UI's modules into browserify modules. It parses the dependencies in the comments of the modules and generates equivalent require calls for them, along with jquery.

To install:

npm install jquery jquery-ui

To use:

// load jquery
var $ = require('jquery');

// load everything
require('jquery-ui');

// or load just the modules you need
require('jquery-ui/draggable');
require('jquery-ui/droppable');
require('jquery-ui/sortable');