jquery-ui-rails 4.2.1 → 8.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.travis.yml +1 -1
- data/History.md +45 -2
- data/README.md +100 -83
- data/Rakefile +82 -49
- data/VERSIONS.md +10 -0
- data/app/assets/images/jquery-ui/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/app/assets/images/jquery-ui/ui-icons_444444_256x240.png +0 -0
- data/app/assets/images/jquery-ui/ui-icons_555555_256x240.png +0 -0
- data/app/assets/images/jquery-ui/ui-icons_777620_256x240.png +0 -0
- data/app/assets/images/jquery-ui/ui-icons_777777_256x240.png +0 -0
- data/app/assets/images/jquery-ui/ui-icons_cc0000_256x240.png +0 -0
- data/app/assets/images/jquery-ui/ui-icons_ffffff_256x240.png +0 -0
- data/app/assets/javascripts/jquery-ui/data.js +39 -0
- data/app/assets/javascripts/jquery-ui/disable-selection.js +51 -0
- data/app/assets/javascripts/jquery-ui/effect.all.js +15 -0
- data/app/assets/javascripts/jquery-ui/effect.js +954 -0
- data/app/assets/javascripts/jquery-ui/effects/effect-blind.js +76 -0
- data/app/assets/javascripts/jquery-ui/effects/effect-bounce.js +116 -0
- data/app/assets/javascripts/jquery-ui/effects/effect-clip.js +71 -0
- data/app/assets/javascripts/jquery-ui/effects/effect-drop.js +75 -0
- data/app/assets/javascripts/jquery-ui/effects/effect-explode.js +117 -0
- data/app/assets/javascripts/jquery-ui/effects/effect-fade.js +53 -0
- data/app/assets/javascripts/jquery-ui/effects/effect-fold.js +95 -0
- data/app/assets/javascripts/jquery-ui/effects/effect-highlight.js +63 -0
- data/app/assets/javascripts/jquery-ui/effects/effect-puff.js +49 -0
- data/app/assets/javascripts/jquery-ui/effects/effect-pulsate.js +70 -0
- data/app/assets/javascripts/jquery-ui/effects/effect-scale.js +63 -0
- data/app/assets/javascripts/jquery-ui/effects/effect-shake.js +80 -0
- data/app/assets/javascripts/jquery-ui/effects/effect-size.js +199 -0
- data/app/assets/javascripts/jquery-ui/effects/effect-slide.js +82 -0
- data/app/assets/javascripts/jquery-ui/effects/effect-transfer.js +46 -0
- data/app/assets/javascripts/jquery-ui/focusable.js +79 -0
- data/app/assets/javascripts/jquery-ui/form-reset-mixin.js +81 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-af.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-ar-DZ.js +42 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-ar.js +42 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-az.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-be.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-bg.js +41 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-bs.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-ca.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-cs.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-cy-GB.js +48 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-da.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-de-AT.js +41 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-de.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-el.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-en-AU.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-en-GB.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-en-NZ.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-eo.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-es.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-et.js +48 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-eu.js +39 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-fa.js +76 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-fi.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-fo.js +48 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-fr-CA.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-fr-CH.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-fr.js +42 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-gl.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-he.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-hi.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-hr.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-hu.js +39 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-hy.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-id.js +41 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-is.js +48 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-it-CH.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-it.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-ja.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-ka.js +51 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-kk.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-km.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-ko.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-ky.js +41 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-lb.js +48 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-lt.js +48 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-lv.js +48 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-mk.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-ml.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-ms.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-nb.js +52 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-nl-BE.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-nl.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-nn.js +52 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-no.js +53 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-pl.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-pt-BR.js +48 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-pt.js +47 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-rm.js +64 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-ro.js +43 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-ru.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-sk.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-sl.js +41 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-sq.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-sr-SR.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-sr.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-sv.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-ta.js +56 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-th.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-tj.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-tr.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-uk.js +41 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-vi.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-zh-CN.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-zh-HK.js +40 -0
- data/app/assets/javascripts/jquery-ui/i18n/datepicker-zh-TW.js +40 -0
- data/app/assets/javascripts/jquery-ui/jquery-patch.js +58 -0
- data/app/assets/javascripts/jquery-ui/jquery-var-for-color.js +24 -0
- data/app/assets/javascripts/jquery-ui/keycode.js +51 -0
- data/app/assets/javascripts/jquery-ui/labels.js +70 -0
- data/app/assets/javascripts/jquery-ui/plugin.js +49 -0
- data/app/assets/javascripts/{jquery.ui.position.js → jquery-ui/position.js} +123 -111
- data/app/assets/javascripts/jquery-ui/scroll-parent.js +50 -0
- data/app/assets/javascripts/jquery-ui/tabbable.js +41 -0
- data/app/assets/javascripts/jquery-ui/unique-id.js +54 -0
- data/app/assets/javascripts/jquery-ui/vendor/jquery-color/jquery.color.js +691 -0
- data/app/assets/javascripts/jquery-ui/version.js +20 -0
- data/app/assets/javascripts/jquery-ui/widget.js +761 -0
- data/app/assets/javascripts/{jquery.ui.accordion.js → jquery-ui/widgets/accordion.js} +263 -209
- data/app/assets/javascripts/{jquery.ui.autocomplete.js → jquery-ui/widgets/autocomplete.js} +177 -142
- data/app/assets/javascripts/jquery-ui/widgets/button.js +454 -0
- data/app/assets/javascripts/jquery-ui/widgets/checkboxradio.js +294 -0
- data/app/assets/javascripts/jquery-ui/widgets/controlgroup.js +304 -0
- data/app/assets/javascripts/jquery-ui/widgets/datepicker.js +2240 -0
- data/app/assets/javascripts/jquery-ui/widgets/dialog.js +957 -0
- data/app/assets/javascripts/jquery-ui/widgets/draggable.js +1264 -0
- data/app/assets/javascripts/jquery-ui/widgets/droppable.js +508 -0
- data/app/assets/javascripts/{jquery.ui.menu.js → jquery-ui/widgets/menu.js} +276 -189
- data/app/assets/javascripts/jquery-ui/widgets/mouse.js +226 -0
- data/app/assets/javascripts/jquery-ui/widgets/progressbar.js +184 -0
- data/app/assets/javascripts/jquery-ui/widgets/resizable.js +1281 -0
- data/app/assets/javascripts/jquery-ui/widgets/selectable.js +321 -0
- data/app/assets/javascripts/jquery-ui/widgets/selectmenu.js +675 -0
- data/app/assets/javascripts/{jquery.ui.slider.js → jquery-ui/widgets/slider.js} +256 -176
- data/app/assets/javascripts/jquery-ui/widgets/sortable.js +1614 -0
- data/app/assets/javascripts/{jquery.ui.spinner.js → jquery-ui/widgets/spinner.js} +200 -137
- data/app/assets/javascripts/{jquery.ui.tabs.js → jquery-ui/widgets/tabs.js} +322 -277
- data/app/assets/javascripts/jquery-ui/widgets/tooltip.js +528 -0
- data/app/assets/javascripts/jquery-ui.js +52 -0
- data/app/assets/stylesheets/jquery-ui/accordion.css +26 -0
- data/app/assets/stylesheets/jquery-ui/all.css +14 -0
- data/app/assets/stylesheets/jquery-ui/autocomplete.css +19 -0
- data/app/assets/stylesheets/jquery-ui/base.css +32 -0
- data/app/assets/stylesheets/jquery-ui/button.css +80 -0
- data/app/assets/stylesheets/jquery-ui/checkboxradio.css +37 -0
- data/app/assets/stylesheets/jquery-ui/controlgroup.css +65 -0
- data/app/assets/stylesheets/{jquery.ui.core.css.erb → jquery-ui/core.css} +15 -12
- data/app/assets/stylesheets/{jquery.ui.datepicker.css.erb → jquery-ui/datepicker.css} +17 -8
- data/app/assets/stylesheets/{jquery.ui.dialog.css.erb → jquery-ui/dialog.css} +43 -15
- data/app/assets/stylesheets/jquery-ui/draggable.css +14 -0
- data/app/assets/stylesheets/jquery-ui/menu.css +65 -0
- data/app/assets/stylesheets/jquery-ui/progressbar.css +30 -0
- data/app/assets/stylesheets/{jquery.ui.resizable.css.erb → jquery-ui/resizable.css} +6 -6
- data/app/assets/stylesheets/jquery-ui/selectable.css +19 -0
- data/app/assets/stylesheets/jquery-ui/selectmenu.css +53 -0
- data/app/assets/stylesheets/{jquery.ui.slider.css.erb → jquery-ui/slider.css} +8 -14
- data/app/assets/stylesheets/jquery-ui/sortable.css +14 -0
- data/app/assets/stylesheets/{jquery.ui.spinner.css.erb → jquery-ui/spinner.css} +12 -27
- data/app/assets/stylesheets/{jquery.ui.tabs.css.erb → jquery-ui/tabs.css} +6 -7
- data/app/assets/stylesheets/{jquery.ui.theme.css.erb → jquery-ui/theme.css.erb} +121 -102
- data/app/assets/stylesheets/jquery-ui/tooltip.css +22 -0
- data/app/assets/stylesheets/jquery-ui.css +1 -0
- data/lib/jquery/ui/rails/version.rb +2 -2
- metadata +178 -169
- data/app/assets/images/jquery-ui/animated-overlay.gif +0 -0
- data/app/assets/images/jquery-ui/ui-bg_flat_75_ffffff_40x100.png +0 -0
- data/app/assets/images/jquery-ui/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
- data/app/assets/images/jquery-ui/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/app/assets/images/jquery-ui/ui-bg_glass_75_dadada_1x400.png +0 -0
- data/app/assets/images/jquery-ui/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
- data/app/assets/images/jquery-ui/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/app/assets/images/jquery-ui/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
- data/app/assets/images/jquery-ui/ui-icons_222222_256x240.png +0 -0
- data/app/assets/images/jquery-ui/ui-icons_2e83ff_256x240.png +0 -0
- data/app/assets/images/jquery-ui/ui-icons_454545_256x240.png +0 -0
- data/app/assets/images/jquery-ui/ui-icons_888888_256x240.png +0 -0
- data/app/assets/images/jquery-ui/ui-icons_cd0a0a_256x240.png +0 -0
- data/app/assets/javascripts/jquery.ui.all.js +0 -34
- data/app/assets/javascripts/jquery.ui.button.js +0 -398
- data/app/assets/javascripts/jquery.ui.core.js +0 -320
- data/app/assets/javascripts/jquery.ui.datepicker-af.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-ar-DZ.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-ar.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-az.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-be.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-bg.js +0 -24
- data/app/assets/javascripts/jquery.ui.datepicker-bs.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-ca.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-cs.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-cy-GB.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-da.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-de.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-el.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-en-AU.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-en-GB.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-en-NZ.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-eo.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-es.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-et.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-eu.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-fa.js +0 -59
- data/app/assets/javascripts/jquery.ui.datepicker-fi.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-fo.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-fr-CA.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-fr-CH.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-fr.js +0 -25
- data/app/assets/javascripts/jquery.ui.datepicker-gl.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-he.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-hi.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-hr.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-hu.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-hy.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-id.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-is.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-it.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-ja.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-ka.js +0 -21
- data/app/assets/javascripts/jquery.ui.datepicker-kk.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-km.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-ko.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-ky.js +0 -24
- data/app/assets/javascripts/jquery.ui.datepicker-lb.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-lt.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-lv.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-mk.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-ml.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-ms.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-nb.js +0 -22
- data/app/assets/javascripts/jquery.ui.datepicker-nl-BE.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-nl.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-nn.js +0 -22
- data/app/assets/javascripts/jquery.ui.datepicker-no.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-pl.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-pt-BR.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-pt.js +0 -22
- data/app/assets/javascripts/jquery.ui.datepicker-rm.js +0 -21
- data/app/assets/javascripts/jquery.ui.datepicker-ro.js +0 -26
- data/app/assets/javascripts/jquery.ui.datepicker-ru.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-sk.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-sl.js +0 -24
- data/app/assets/javascripts/jquery.ui.datepicker-sq.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-sr-SR.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-sr.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-sv.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-ta.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-th.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-tj.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-tr.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-uk.js +0 -24
- data/app/assets/javascripts/jquery.ui.datepicker-vi.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-zh-CN.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-zh-HK.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker-zh-TW.js +0 -23
- data/app/assets/javascripts/jquery.ui.datepicker.js +0 -2040
- data/app/assets/javascripts/jquery.ui.dialog.js +0 -830
- data/app/assets/javascripts/jquery.ui.draggable.js +0 -962
- data/app/assets/javascripts/jquery.ui.droppable.js +0 -394
- data/app/assets/javascripts/jquery.ui.effect-blind.js +0 -84
- data/app/assets/javascripts/jquery.ui.effect-bounce.js +0 -115
- data/app/assets/javascripts/jquery.ui.effect-clip.js +0 -69
- data/app/assets/javascripts/jquery.ui.effect-drop.js +0 -67
- data/app/assets/javascripts/jquery.ui.effect-explode.js +0 -99
- data/app/assets/javascripts/jquery.ui.effect-fade.js +0 -32
- data/app/assets/javascripts/jquery.ui.effect-fold.js +0 -78
- data/app/assets/javascripts/jquery.ui.effect-highlight.js +0 -52
- data/app/assets/javascripts/jquery.ui.effect-pulsate.js +0 -65
- data/app/assets/javascripts/jquery.ui.effect-scale.js +0 -320
- data/app/assets/javascripts/jquery.ui.effect-shake.js +0 -76
- data/app/assets/javascripts/jquery.ui.effect-slide.js +0 -66
- data/app/assets/javascripts/jquery.ui.effect-transfer.js +0 -49
- data/app/assets/javascripts/jquery.ui.effect.all.js +0 -14
- data/app/assets/javascripts/jquery.ui.effect.js +0 -1289
- data/app/assets/javascripts/jquery.ui.mouse.js +0 -172
- data/app/assets/javascripts/jquery.ui.progressbar.js +0 -148
- data/app/assets/javascripts/jquery.ui.resizable.js +0 -982
- data/app/assets/javascripts/jquery.ui.selectable.js +0 -281
- data/app/assets/javascripts/jquery.ui.sortable.js +0 -1293
- data/app/assets/javascripts/jquery.ui.tooltip.js +0 -406
- data/app/assets/javascripts/jquery.ui.widget.js +0 -521
- data/app/assets/stylesheets/jquery.ui.accordion.css.erb +0 -42
- data/app/assets/stylesheets/jquery.ui.all.css.erb +0 -14
- data/app/assets/stylesheets/jquery.ui.autocomplete.css.erb +0 -21
- data/app/assets/stylesheets/jquery.ui.base.css.erb +0 -27
- data/app/assets/stylesheets/jquery.ui.button.css.erb +0 -118
- data/app/assets/stylesheets/jquery.ui.menu.css.erb +0 -83
- data/app/assets/stylesheets/jquery.ui.progressbar.css.erb +0 -37
- data/app/assets/stylesheets/jquery.ui.selectable.css.erb +0 -17
- data/app/assets/stylesheets/jquery.ui.tooltip.css.erb +0 -25
@@ -0,0 +1,226 @@
|
|
1
|
+
//= require jquery-ui/version
|
2
|
+
//= require jquery-ui/widget
|
3
|
+
|
4
|
+
/*!
|
5
|
+
* jQuery UI Mouse 1.14.1
|
6
|
+
* https://jqueryui.com
|
7
|
+
*
|
8
|
+
* Copyright OpenJS Foundation and other contributors
|
9
|
+
* Released under the MIT license.
|
10
|
+
* https://jquery.org/license
|
11
|
+
*/
|
12
|
+
|
13
|
+
//>>label: Mouse
|
14
|
+
//>>group: Widgets
|
15
|
+
//>>description: Abstracts mouse-based interactions to assist in creating certain widgets.
|
16
|
+
//>>docs: https://api.jqueryui.com/mouse/
|
17
|
+
|
18
|
+
( function( factory ) {
|
19
|
+
"use strict";
|
20
|
+
|
21
|
+
if ( typeof define === "function" && define.amd ) {
|
22
|
+
|
23
|
+
// AMD. Register as an anonymous module.
|
24
|
+
define( [
|
25
|
+
"jquery",
|
26
|
+
"../version",
|
27
|
+
"../widget"
|
28
|
+
], factory );
|
29
|
+
} else {
|
30
|
+
|
31
|
+
// Browser globals
|
32
|
+
factory( jQuery );
|
33
|
+
}
|
34
|
+
} )( function( $ ) {
|
35
|
+
"use strict";
|
36
|
+
|
37
|
+
var mouseHandled = false;
|
38
|
+
$( document ).on( "mouseup", function() {
|
39
|
+
mouseHandled = false;
|
40
|
+
} );
|
41
|
+
|
42
|
+
return $.widget( "ui.mouse", {
|
43
|
+
version: "1.14.1",
|
44
|
+
options: {
|
45
|
+
cancel: "input, textarea, button, select, option",
|
46
|
+
distance: 1,
|
47
|
+
delay: 0
|
48
|
+
},
|
49
|
+
_mouseInit: function() {
|
50
|
+
var that = this;
|
51
|
+
|
52
|
+
this.element
|
53
|
+
.on( "mousedown." + this.widgetName, function( event ) {
|
54
|
+
return that._mouseDown( event );
|
55
|
+
} )
|
56
|
+
.on( "click." + this.widgetName, function( event ) {
|
57
|
+
if ( true === $.data( event.target, that.widgetName + ".preventClickEvent" ) ) {
|
58
|
+
$.removeData( event.target, that.widgetName + ".preventClickEvent" );
|
59
|
+
event.stopImmediatePropagation();
|
60
|
+
return false;
|
61
|
+
}
|
62
|
+
} );
|
63
|
+
|
64
|
+
this.started = false;
|
65
|
+
},
|
66
|
+
|
67
|
+
// TODO: make sure destroying one instance of mouse doesn't mess with
|
68
|
+
// other instances of mouse
|
69
|
+
_mouseDestroy: function() {
|
70
|
+
this.element.off( "." + this.widgetName );
|
71
|
+
if ( this._mouseMoveDelegate ) {
|
72
|
+
this.document
|
73
|
+
.off( "mousemove." + this.widgetName, this._mouseMoveDelegate )
|
74
|
+
.off( "mouseup." + this.widgetName, this._mouseUpDelegate );
|
75
|
+
}
|
76
|
+
},
|
77
|
+
|
78
|
+
_mouseDown: function( event ) {
|
79
|
+
|
80
|
+
// don't let more than one widget handle mouseStart
|
81
|
+
if ( mouseHandled ) {
|
82
|
+
return;
|
83
|
+
}
|
84
|
+
|
85
|
+
this._mouseMoved = false;
|
86
|
+
|
87
|
+
// We may have missed mouseup (out of window)
|
88
|
+
if ( this._mouseStarted ) {
|
89
|
+
this._mouseUp( event );
|
90
|
+
}
|
91
|
+
|
92
|
+
this._mouseDownEvent = event;
|
93
|
+
|
94
|
+
var that = this,
|
95
|
+
btnIsLeft = event.which === 1,
|
96
|
+
elIsCancel = typeof this.options.cancel === "string" ?
|
97
|
+
$( event.target ).closest( this.options.cancel ).length :
|
98
|
+
false;
|
99
|
+
if ( !btnIsLeft || elIsCancel || !this._mouseCapture( event ) ) {
|
100
|
+
return true;
|
101
|
+
}
|
102
|
+
|
103
|
+
this.mouseDelayMet = !this.options.delay;
|
104
|
+
if ( !this.mouseDelayMet ) {
|
105
|
+
this._mouseDelayTimer = setTimeout( function() {
|
106
|
+
that.mouseDelayMet = true;
|
107
|
+
}, this.options.delay );
|
108
|
+
}
|
109
|
+
|
110
|
+
if ( this._mouseDistanceMet( event ) && this._mouseDelayMet( event ) ) {
|
111
|
+
this._mouseStarted = ( this._mouseStart( event ) !== false );
|
112
|
+
if ( !this._mouseStarted ) {
|
113
|
+
event.preventDefault();
|
114
|
+
return true;
|
115
|
+
}
|
116
|
+
}
|
117
|
+
|
118
|
+
// Click event may never have fired (Gecko & Opera)
|
119
|
+
if ( true === $.data( event.target, this.widgetName + ".preventClickEvent" ) ) {
|
120
|
+
$.removeData( event.target, this.widgetName + ".preventClickEvent" );
|
121
|
+
}
|
122
|
+
|
123
|
+
// These delegates are required to keep context
|
124
|
+
this._mouseMoveDelegate = function( event ) {
|
125
|
+
return that._mouseMove( event );
|
126
|
+
};
|
127
|
+
this._mouseUpDelegate = function( event ) {
|
128
|
+
return that._mouseUp( event );
|
129
|
+
};
|
130
|
+
|
131
|
+
this.document
|
132
|
+
.on( "mousemove." + this.widgetName, this._mouseMoveDelegate )
|
133
|
+
.on( "mouseup." + this.widgetName, this._mouseUpDelegate );
|
134
|
+
|
135
|
+
event.preventDefault();
|
136
|
+
|
137
|
+
mouseHandled = true;
|
138
|
+
return true;
|
139
|
+
},
|
140
|
+
|
141
|
+
_mouseMove: function( event ) {
|
142
|
+
|
143
|
+
// Only check for mouseups outside the document if you've moved inside the document
|
144
|
+
// at least once.
|
145
|
+
if ( this._mouseMoved && !event.which ) {
|
146
|
+
|
147
|
+
// Support: Safari <=8 - 9
|
148
|
+
// Safari sets which to 0 if you press any of the following keys
|
149
|
+
// during a drag (#14461)
|
150
|
+
if ( event.originalEvent.altKey || event.originalEvent.ctrlKey ||
|
151
|
+
event.originalEvent.metaKey || event.originalEvent.shiftKey ) {
|
152
|
+
this.ignoreMissingWhich = true;
|
153
|
+
} else if ( !this.ignoreMissingWhich ) {
|
154
|
+
return this._mouseUp( event );
|
155
|
+
}
|
156
|
+
}
|
157
|
+
|
158
|
+
if ( event.which || event.button ) {
|
159
|
+
this._mouseMoved = true;
|
160
|
+
}
|
161
|
+
|
162
|
+
if ( this._mouseStarted ) {
|
163
|
+
this._mouseDrag( event );
|
164
|
+
return event.preventDefault();
|
165
|
+
}
|
166
|
+
|
167
|
+
if ( this._mouseDistanceMet( event ) && this._mouseDelayMet( event ) ) {
|
168
|
+
this._mouseStarted =
|
169
|
+
( this._mouseStart( this._mouseDownEvent, event ) !== false );
|
170
|
+
if ( this._mouseStarted ) {
|
171
|
+
this._mouseDrag( event );
|
172
|
+
} else {
|
173
|
+
this._mouseUp( event );
|
174
|
+
}
|
175
|
+
}
|
176
|
+
|
177
|
+
return !this._mouseStarted;
|
178
|
+
},
|
179
|
+
|
180
|
+
_mouseUp: function( event ) {
|
181
|
+
this.document
|
182
|
+
.off( "mousemove." + this.widgetName, this._mouseMoveDelegate )
|
183
|
+
.off( "mouseup." + this.widgetName, this._mouseUpDelegate );
|
184
|
+
|
185
|
+
if ( this._mouseStarted ) {
|
186
|
+
this._mouseStarted = false;
|
187
|
+
|
188
|
+
if ( event.target === this._mouseDownEvent.target ) {
|
189
|
+
$.data( event.target, this.widgetName + ".preventClickEvent", true );
|
190
|
+
}
|
191
|
+
|
192
|
+
this._mouseStop( event );
|
193
|
+
}
|
194
|
+
|
195
|
+
if ( this._mouseDelayTimer ) {
|
196
|
+
clearTimeout( this._mouseDelayTimer );
|
197
|
+
delete this._mouseDelayTimer;
|
198
|
+
}
|
199
|
+
|
200
|
+
this.ignoreMissingWhich = false;
|
201
|
+
mouseHandled = false;
|
202
|
+
event.preventDefault();
|
203
|
+
},
|
204
|
+
|
205
|
+
_mouseDistanceMet: function( event ) {
|
206
|
+
return ( Math.max(
|
207
|
+
Math.abs( this._mouseDownEvent.pageX - event.pageX ),
|
208
|
+
Math.abs( this._mouseDownEvent.pageY - event.pageY )
|
209
|
+
) >= this.options.distance
|
210
|
+
);
|
211
|
+
},
|
212
|
+
|
213
|
+
_mouseDelayMet: function( /* event */ ) {
|
214
|
+
return this.mouseDelayMet;
|
215
|
+
},
|
216
|
+
|
217
|
+
// These are placeholder methods, to be overriden by extending plugin
|
218
|
+
_mouseStart: function( /* event */ ) {},
|
219
|
+
_mouseDrag: function( /* event */ ) {},
|
220
|
+
_mouseStop: function( /* event */ ) {},
|
221
|
+
_mouseCapture: function( /* event */ ) {
|
222
|
+
return true;
|
223
|
+
}
|
224
|
+
} );
|
225
|
+
|
226
|
+
} );
|
@@ -0,0 +1,184 @@
|
|
1
|
+
//= require jquery-ui/version
|
2
|
+
//= require jquery-ui/widget
|
3
|
+
|
4
|
+
/*!
|
5
|
+
* jQuery UI Progressbar 1.14.1
|
6
|
+
* https://jqueryui.com
|
7
|
+
*
|
8
|
+
* Copyright OpenJS Foundation and other contributors
|
9
|
+
* Released under the MIT license.
|
10
|
+
* https://jquery.org/license
|
11
|
+
*/
|
12
|
+
|
13
|
+
//>>label: Progressbar
|
14
|
+
//>>group: Widgets
|
15
|
+
/* eslint-disable max-len */
|
16
|
+
//>>description: Displays a status indicator for loading state, standard percentage, and other progress indicators.
|
17
|
+
/* eslint-enable max-len */
|
18
|
+
//>>docs: https://api.jqueryui.com/progressbar/
|
19
|
+
//>>demos: https://jqueryui.com/progressbar/
|
20
|
+
//>>css.structure: ../../themes/base/core.css
|
21
|
+
//>>css.structure: ../../themes/base/progressbar.css
|
22
|
+
//>>css.theme: ../../themes/base/theme.css
|
23
|
+
|
24
|
+
( function( factory ) {
|
25
|
+
"use strict";
|
26
|
+
|
27
|
+
if ( typeof define === "function" && define.amd ) {
|
28
|
+
|
29
|
+
// AMD. Register as an anonymous module.
|
30
|
+
define( [
|
31
|
+
"jquery",
|
32
|
+
"../version",
|
33
|
+
"../widget"
|
34
|
+
], factory );
|
35
|
+
} else {
|
36
|
+
|
37
|
+
// Browser globals
|
38
|
+
factory( jQuery );
|
39
|
+
}
|
40
|
+
} )( function( $ ) {
|
41
|
+
"use strict";
|
42
|
+
|
43
|
+
return $.widget( "ui.progressbar", {
|
44
|
+
version: "1.14.1",
|
45
|
+
options: {
|
46
|
+
classes: {
|
47
|
+
"ui-progressbar": "ui-corner-all",
|
48
|
+
"ui-progressbar-value": "ui-corner-left",
|
49
|
+
"ui-progressbar-complete": "ui-corner-right"
|
50
|
+
},
|
51
|
+
max: 100,
|
52
|
+
value: 0,
|
53
|
+
|
54
|
+
change: null,
|
55
|
+
complete: null
|
56
|
+
},
|
57
|
+
|
58
|
+
min: 0,
|
59
|
+
|
60
|
+
_create: function() {
|
61
|
+
|
62
|
+
// Constrain initial value
|
63
|
+
this.oldValue = this.options.value = this._constrainedValue();
|
64
|
+
|
65
|
+
this.element.attr( {
|
66
|
+
|
67
|
+
// Only set static values; aria-valuenow and aria-valuemax are
|
68
|
+
// set inside _refreshValue()
|
69
|
+
role: "progressbar",
|
70
|
+
"aria-valuemin": this.min
|
71
|
+
} );
|
72
|
+
this._addClass( "ui-progressbar", "ui-widget ui-widget-content" );
|
73
|
+
|
74
|
+
this.valueDiv = $( "<div>" ).appendTo( this.element );
|
75
|
+
this._addClass( this.valueDiv, "ui-progressbar-value", "ui-widget-header" );
|
76
|
+
this._refreshValue();
|
77
|
+
},
|
78
|
+
|
79
|
+
_destroy: function() {
|
80
|
+
this.element.removeAttr( "role aria-valuemin aria-valuemax aria-valuenow" );
|
81
|
+
|
82
|
+
this.valueDiv.remove();
|
83
|
+
},
|
84
|
+
|
85
|
+
value: function( newValue ) {
|
86
|
+
if ( newValue === undefined ) {
|
87
|
+
return this.options.value;
|
88
|
+
}
|
89
|
+
|
90
|
+
this.options.value = this._constrainedValue( newValue );
|
91
|
+
this._refreshValue();
|
92
|
+
},
|
93
|
+
|
94
|
+
_constrainedValue: function( newValue ) {
|
95
|
+
if ( newValue === undefined ) {
|
96
|
+
newValue = this.options.value;
|
97
|
+
}
|
98
|
+
|
99
|
+
this.indeterminate = newValue === false;
|
100
|
+
|
101
|
+
// Sanitize value
|
102
|
+
if ( typeof newValue !== "number" ) {
|
103
|
+
newValue = 0;
|
104
|
+
}
|
105
|
+
|
106
|
+
return this.indeterminate ? false :
|
107
|
+
Math.min( this.options.max, Math.max( this.min, newValue ) );
|
108
|
+
},
|
109
|
+
|
110
|
+
_setOptions: function( options ) {
|
111
|
+
|
112
|
+
// Ensure "value" option is set after other values (like max)
|
113
|
+
var value = options.value;
|
114
|
+
delete options.value;
|
115
|
+
|
116
|
+
this._super( options );
|
117
|
+
|
118
|
+
this.options.value = this._constrainedValue( value );
|
119
|
+
this._refreshValue();
|
120
|
+
},
|
121
|
+
|
122
|
+
_setOption: function( key, value ) {
|
123
|
+
if ( key === "max" ) {
|
124
|
+
|
125
|
+
// Don't allow a max less than min
|
126
|
+
value = Math.max( this.min, value );
|
127
|
+
}
|
128
|
+
this._super( key, value );
|
129
|
+
},
|
130
|
+
|
131
|
+
_setOptionDisabled: function( value ) {
|
132
|
+
this._super( value );
|
133
|
+
|
134
|
+
this.element.attr( "aria-disabled", value );
|
135
|
+
this._toggleClass( null, "ui-state-disabled", !!value );
|
136
|
+
},
|
137
|
+
|
138
|
+
_percentage: function() {
|
139
|
+
return this.indeterminate ?
|
140
|
+
100 :
|
141
|
+
100 * ( this.options.value - this.min ) / ( this.options.max - this.min );
|
142
|
+
},
|
143
|
+
|
144
|
+
_refreshValue: function() {
|
145
|
+
var value = this.options.value,
|
146
|
+
percentage = this._percentage();
|
147
|
+
|
148
|
+
this.valueDiv
|
149
|
+
.toggle( this.indeterminate || value > this.min )
|
150
|
+
.width( percentage.toFixed( 0 ) + "%" );
|
151
|
+
|
152
|
+
this
|
153
|
+
._toggleClass( this.valueDiv, "ui-progressbar-complete", null,
|
154
|
+
value === this.options.max )
|
155
|
+
._toggleClass( "ui-progressbar-indeterminate", null, this.indeterminate );
|
156
|
+
|
157
|
+
if ( this.indeterminate ) {
|
158
|
+
this.element.removeAttr( "aria-valuenow" );
|
159
|
+
if ( !this.overlayDiv ) {
|
160
|
+
this.overlayDiv = $( "<div>" ).appendTo( this.valueDiv );
|
161
|
+
this._addClass( this.overlayDiv, "ui-progressbar-overlay" );
|
162
|
+
}
|
163
|
+
} else {
|
164
|
+
this.element.attr( {
|
165
|
+
"aria-valuemax": this.options.max,
|
166
|
+
"aria-valuenow": value
|
167
|
+
} );
|
168
|
+
if ( this.overlayDiv ) {
|
169
|
+
this.overlayDiv.remove();
|
170
|
+
this.overlayDiv = null;
|
171
|
+
}
|
172
|
+
}
|
173
|
+
|
174
|
+
if ( this.oldValue !== value ) {
|
175
|
+
this.oldValue = value;
|
176
|
+
this._trigger( "change" );
|
177
|
+
}
|
178
|
+
if ( value === this.options.max ) {
|
179
|
+
this._trigger( "complete" );
|
180
|
+
}
|
181
|
+
}
|
182
|
+
} );
|
183
|
+
|
184
|
+
} );
|