prime-rails 0.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +15 -0
- data/app/assets/images/images/loading.gif +0 -0
- data/app/assets/images/images/messages.png +0 -0
- data/app/assets/images/images/ornament.png +0 -0
- data/app/assets/images/images/password-meter.png +0 -0
- data/app/assets/javascripts/js/accordion/accordion.js +134 -0
- data/app/assets/javascripts/js/autocomplete/autocomplete.js +439 -0
- data/app/assets/javascripts/js/button/button.js +98 -0
- data/app/assets/javascripts/js/checkbox/checkbox.js +117 -0
- data/app/assets/javascripts/js/core/core.js +60 -0
- data/app/assets/javascripts/js/datatable/datatable.js +334 -0
- data/app/assets/javascripts/js/dialog/dialog.js +485 -0
- data/app/assets/javascripts/js/dropdown/dropdown.js +546 -0
- data/app/assets/javascripts/js/fieldset/fieldset.js +68 -0
- data/app/assets/javascripts/js/galleria/galleria.js +221 -0
- data/app/assets/javascripts/js/growl/growl.js +98 -0
- data/app/assets/javascripts/js/inputtext/inputtext.js +40 -0
- data/app/assets/javascripts/js/inputtextarea/inputtextarea.js +360 -0
- data/app/assets/javascripts/js/lightbox/lightbox.js +343 -0
- data/app/assets/javascripts/js/menu/menu.js +689 -0
- data/app/assets/javascripts/js/notify/notify.js +79 -0
- data/app/assets/javascripts/js/paginator/paginator.js +280 -0
- data/app/assets/javascripts/js/panel/panel.js +170 -0
- data/app/assets/javascripts/js/password/password.js +157 -0
- data/app/assets/javascripts/js/progressbar/progressbar.js +92 -0
- data/app/assets/javascripts/js/radiobutton/radiobutton.js +94 -0
- data/app/assets/javascripts/js/rating/rating.js +87 -0
- data/app/assets/javascripts/js/spinner/spinner.js +227 -0
- data/app/assets/javascripts/js/tabview/tabview.js +153 -0
- data/app/assets/javascripts/js/terminal/terminal.js +91 -0
- data/app/assets/javascripts/js/tooltip/tooltip.js +124 -0
- data/app/assets/javascripts/plugins/cursorposition.js +138 -0
- data/app/assets/javascripts/plugins/rangyinput.js +239 -0
- data/app/assets/javascripts/primefaces-core.js +1253 -0
- data/app/assets/javascripts/primefaces-rails.js +152 -0
- data/app/assets/javascripts/primeui.js +5577 -0
- data/app/assets/stylesheets/css/primeui/css/accordion/accordion.css +39 -0
- data/app/assets/stylesheets/css/primeui/css/autocomplete/autocomplete.css +100 -0
- data/app/assets/stylesheets/css/primeui/css/button/button.css +75 -0
- data/app/assets/stylesheets/css/primeui/css/checkbox/checkbox.css +23 -0
- data/app/assets/stylesheets/css/primeui/css/core/core.css +5 -0
- data/app/assets/stylesheets/css/primeui/css/datatable/datatable.css +60 -0
- data/app/assets/stylesheets/css/primeui/css/dialog/dialog.css +36 -0
- data/app/assets/stylesheets/css/primeui/css/dropdown/dropdown.css +96 -0
- data/app/assets/stylesheets/css/primeui/css/fieldset/fieldset.css +15 -0
- data/app/assets/stylesheets/css/primeui/css/galleria/galleria.css +77 -0
- data/app/assets/stylesheets/css/primeui/css/growl/growl.css +78 -0
- data/app/assets/stylesheets/css/primeui/css/inputtext/inputtext.css +11 -0
- data/app/assets/stylesheets/css/primeui/css/inputtextarea/inputtextarea.css +4 -0
- data/app/assets/stylesheets/css/primeui/css/lightbox/lightbox.css +52 -0
- data/app/assets/stylesheets/css/primeui/css/menu/menu.css +391 -0
- data/app/assets/stylesheets/css/primeui/css/notify/notify.css +27 -0
- data/app/assets/stylesheets/css/primeui/css/paginator/paginator.css +61 -0
- data/app/assets/stylesheets/css/primeui/css/panel/panel.css +51 -0
- data/app/assets/stylesheets/css/primeui/css/password/password.css +20 -0
- data/app/assets/stylesheets/css/primeui/css/progressbar/progressbar.css +22 -0
- data/app/assets/stylesheets/css/primeui/css/radiobutton/radiobutton.css +20 -0
- data/app/assets/stylesheets/css/primeui/css/rating/images/rating.png +0 -0
- data/app/assets/stylesheets/css/primeui/css/rating/rating.css +37 -0
- data/app/assets/stylesheets/css/primeui/css/spinner/spinner.css +46 -0
- data/app/assets/stylesheets/css/primeui/css/tabview/tabview.css +124 -0
- data/app/assets/stylesheets/css/primeui/css/terminal/terminal.css +25 -0
- data/app/assets/stylesheets/css/primeui/css/tooltip/tooltip.css +5 -0
- data/app/assets/stylesheets/css/primeui/primeui.css +1453 -0
- data/app/assets/stylesheets/jquery-ui.css +53 -0
- data/app/assets/stylesheets/themes/afterdark/images/ui-icons-dark.png +0 -0
- data/app/assets/stylesheets/themes/afterdark/images/ui-icons-light.png +0 -0
- data/app/assets/stylesheets/themes/afterdark/theme.css +435 -0
- data/app/assets/stylesheets/themes/afternoon/images/ui-icons-dark.png +0 -0
- data/app/assets/stylesheets/themes/afternoon/images/ui-icons-light.png +0 -0
- data/app/assets/stylesheets/themes/afternoon/theme.css +443 -0
- data/app/assets/stylesheets/themes/afterwork/images/ui-icons-dark.png +0 -0
- data/app/assets/stylesheets/themes/afterwork/images/ui-icons-light.png +0 -0
- data/app/assets/stylesheets/themes/afterwork/theme.css +442 -0
- data/app/assets/stylesheets/themes/aristo/images/ui-bg_flat_0_2d5972_40x100.png +0 -0
- data/app/assets/stylesheets/themes/aristo/images/ui-bg_flat_0_4f4f4f_40x100.png +0 -0
- data/app/assets/stylesheets/themes/aristo/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/app/assets/stylesheets/themes/aristo/images/ui-bg_flat_100_ffffff_40x100.png +0 -0
- data/app/assets/stylesheets/themes/aristo/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
- data/app/assets/stylesheets/themes/aristo/images/ui-bg_highlight-hard_80_85b2cb_1x100.png +0 -0
- data/app/assets/stylesheets/themes/aristo/images/ui-bg_highlight-hard_80_c4c4c4_1x100.png +0 -0
- data/app/assets/stylesheets/themes/aristo/images/ui-bg_highlight-hard_80_e3e3e3_1x100.png +0 -0
- data/app/assets/stylesheets/themes/aristo/images/ui-bg_highlight-soft_100_c4c4c4_1x100.png +0 -0
- data/app/assets/stylesheets/themes/aristo/images/ui-bg_highlight-soft_75_85b2cb_1x100.png +0 -0
- data/app/assets/stylesheets/themes/aristo/images/ui-bg_inset-hard_65_85b2cb_1x100.png +0 -0
- data/app/assets/stylesheets/themes/aristo/images/ui-bg_inset-hard_65_c4c4c4_1x100.png +0 -0
- data/app/assets/stylesheets/themes/aristo/images/ui-bg_inset-soft_95_fef1ec_1x100.png +0 -0
- data/app/assets/stylesheets/themes/aristo/images/ui-icons_2d5972_256x240.png +0 -0
- data/app/assets/stylesheets/themes/aristo/images/ui-icons_2e83ff_256x240.png +0 -0
- data/app/assets/stylesheets/themes/aristo/images/ui-icons_38667f_256x240.png +0 -0
- data/app/assets/stylesheets/themes/aristo/images/ui-icons_3a6983_256x240.png +0 -0
- data/app/assets/stylesheets/themes/aristo/images/ui-icons_616161_256x240.png +0 -0
- data/app/assets/stylesheets/themes/aristo/images/ui-icons_898989_256x240.png +0 -0
- data/app/assets/stylesheets/themes/aristo/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/app/assets/stylesheets/themes/aristo/images/ui-icons_ffffff_256x240.png +0 -0
- data/app/assets/stylesheets/themes/aristo/theme.css +1251 -0
- data/app/assets/stylesheets/themes/black-tie/images/ui-bg_diagonals-thick_8_333333_40x40.png +0 -0
- data/app/assets/stylesheets/themes/black-tie/images/ui-bg_flat_65_ffffff_40x100.png +0 -0
- data/app/assets/stylesheets/themes/black-tie/images/ui-bg_glass_40_111111_1x400.png +0 -0
- data/app/assets/stylesheets/themes/black-tie/images/ui-bg_glass_55_1c1c1c_1x400.png +0 -0
- data/app/assets/stylesheets/themes/black-tie/images/ui-bg_highlight-hard_100_f9f9f9_1x100.png +0 -0
- data/app/assets/stylesheets/themes/black-tie/images/ui-bg_highlight-hard_40_aaaaaa_1x100.png +0 -0
- data/app/assets/stylesheets/themes/black-tie/images/ui-bg_highlight-soft_50_aaaaaa_1x100.png +0 -0
- data/app/assets/stylesheets/themes/black-tie/images/ui-bg_inset-hard_45_cd0a0a_1x100.png +0 -0
- data/app/assets/stylesheets/themes/black-tie/images/ui-bg_inset-hard_55_ffeb80_1x100.png +0 -0
- data/app/assets/stylesheets/themes/black-tie/images/ui-icons_222222_256x240.png +0 -0
- data/app/assets/stylesheets/themes/black-tie/images/ui-icons_4ca300_256x240.png +0 -0
- data/app/assets/stylesheets/themes/black-tie/images/ui-icons_bbbbbb_256x240.png +0 -0
- data/app/assets/stylesheets/themes/black-tie/images/ui-icons_ededed_256x240.png +0 -0
- data/app/assets/stylesheets/themes/black-tie/images/ui-icons_ffcf29_256x240.png +0 -0
- data/app/assets/stylesheets/themes/black-tie/images/ui-icons_ffffff_256x240.png +0 -0
- data/app/assets/stylesheets/themes/black-tie/theme.css +269 -0
- data/app/assets/stylesheets/themes/blitzer/images/ui-bg_diagonals-thick_75_f3d8d8_40x40.png +0 -0
- data/app/assets/stylesheets/themes/blitzer/images/ui-bg_dots-small_65_a6a6a6_2x2.png +0 -0
- data/app/assets/stylesheets/themes/blitzer/images/ui-bg_flat_0_333333_40x100.png +0 -0
- data/app/assets/stylesheets/themes/blitzer/images/ui-bg_flat_65_ffffff_40x100.png +0 -0
- data/app/assets/stylesheets/themes/blitzer/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
- data/app/assets/stylesheets/themes/blitzer/images/ui-bg_glass_55_fbf8ee_1x400.png +0 -0
- data/app/assets/stylesheets/themes/blitzer/images/ui-bg_highlight-hard_100_eeeeee_1x100.png +0 -0
- data/app/assets/stylesheets/themes/blitzer/images/ui-bg_highlight-hard_100_f6f6f6_1x100.png +0 -0
- data/app/assets/stylesheets/themes/blitzer/images/ui-bg_highlight-soft_15_cc0000_1x100.png +0 -0
- data/app/assets/stylesheets/themes/blitzer/images/ui-icons_004276_256x240.png +0 -0
- data/app/assets/stylesheets/themes/blitzer/images/ui-icons_cc0000_256x240.png +0 -0
- data/app/assets/stylesheets/themes/blitzer/images/ui-icons_ffffff_256x240.png +0 -0
- data/app/assets/stylesheets/themes/blitzer/theme.css +269 -0
- data/app/assets/stylesheets/themes/bluesky/images/active.png +0 -0
- data/app/assets/stylesheets/themes/bluesky/images/default.png +0 -0
- data/app/assets/stylesheets/themes/bluesky/images/header.png +0 -0
- data/app/assets/stylesheets/themes/bluesky/images/ui-bg_diagonals-thick_90_eeeeee_40x40.png +0 -0
- data/app/assets/stylesheets/themes/bluesky/images/ui-bg_flat_15_cd0a0a_40x100.png +0 -0
- data/app/assets/stylesheets/themes/bluesky/images/ui-bg_highlight-hard_100_f2f5f7_1x100.png +0 -0
- data/app/assets/stylesheets/themes/bluesky/images/ui-bg_highlight-hard_70_000000_1x100.png +0 -0
- data/app/assets/stylesheets/themes/bluesky/images/ui-bg_highlight-soft_100_deedf7_1x100.png +0 -0
- data/app/assets/stylesheets/themes/bluesky/images/ui-bg_highlight-soft_25_ffef8f_1x100.png +0 -0
- data/app/assets/stylesheets/themes/bluesky/images/ui-icons_2e83ff_256x240.png +0 -0
- data/app/assets/stylesheets/themes/bluesky/images/ui-icons_3d80b3_256x240.png +0 -0
- data/app/assets/stylesheets/themes/bluesky/images/ui-icons_72a7cf_256x240.png +0 -0
- data/app/assets/stylesheets/themes/bluesky/images/ui-icons_ffffff_256x240.png +0 -0
- data/app/assets/stylesheets/themes/bluesky/theme.css +262 -0
- data/app/assets/stylesheets/themes/bootstrap/images/ui-icons_333333_256x240.png +0 -0
- data/app/assets/stylesheets/themes/bootstrap/images/ui-icons_ffffff_256x240.png +0 -0
- data/app/assets/stylesheets/themes/bootstrap/theme.css +918 -0
- data/app/assets/stylesheets/themes/casablanca/images/active.png +0 -0
- data/app/assets/stylesheets/themes/casablanca/images/default.png +0 -0
- data/app/assets/stylesheets/themes/casablanca/images/header.png +0 -0
- data/app/assets/stylesheets/themes/casablanca/images/hover.png +0 -0
- data/app/assets/stylesheets/themes/casablanca/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/app/assets/stylesheets/themes/casablanca/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
- data/app/assets/stylesheets/themes/casablanca/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
- data/app/assets/stylesheets/themes/casablanca/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/app/assets/stylesheets/themes/casablanca/images/ui-icons_222222_256x240.png +0 -0
- data/app/assets/stylesheets/themes/casablanca/images/ui-icons_2e83ff_256x240.png +0 -0
- data/app/assets/stylesheets/themes/casablanca/images/ui-icons_454545_256x240.png +0 -0
- data/app/assets/stylesheets/themes/casablanca/images/ui-icons_888888_256x240.png +0 -0
- data/app/assets/stylesheets/themes/casablanca/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/app/assets/stylesheets/themes/casablanca/theme.css +262 -0
- data/app/assets/stylesheets/themes/cruze/images/ui-bg_flat_30_cccccc_40x100.png +0 -0
- data/app/assets/stylesheets/themes/cruze/images/ui-bg_flat_50_575757_40x100.png +0 -0
- data/app/assets/stylesheets/themes/cruze/images/ui-bg_flat_50_5c5c5c_40x100.png +0 -0
- data/app/assets/stylesheets/themes/cruze/images/ui-bg_glass_20_3d3d3d_1x400.png +0 -0
- data/app/assets/stylesheets/themes/cruze/images/ui-bg_glass_20_474747_1x400.png +0 -0
- data/app/assets/stylesheets/themes/cruze/images/ui-bg_glass_40_0099e0_1x400.png +0 -0
- data/app/assets/stylesheets/themes/cruze/images/ui-bg_glass_40_ffc73d_1x400.png +0 -0
- data/app/assets/stylesheets/themes/cruze/images/ui-bg_gloss-wave_25_333333_500x100.png +0 -0
- data/app/assets/stylesheets/themes/cruze/images/ui-bg_highlight-soft_80_eeeeee_1x100.png +0 -0
- data/app/assets/stylesheets/themes/cruze/images/ui-icons_0099e0_256x240.png +0 -0
- data/app/assets/stylesheets/themes/cruze/images/ui-icons_a83300_256x240.png +0 -0
- data/app/assets/stylesheets/themes/cruze/images/ui-icons_eeeeee_256x240.png +0 -0
- data/app/assets/stylesheets/themes/cruze/images/ui-icons_ffffff_256x240.png +0 -0
- data/app/assets/stylesheets/themes/cruze/theme.css +273 -0
- data/app/assets/stylesheets/themes/cupertino/images/ui-bg_diagonals-thick_90_eeeeee_40x40.png +0 -0
- data/app/assets/stylesheets/themes/cupertino/images/ui-bg_flat_15_cd0a0a_40x100.png +0 -0
- data/app/assets/stylesheets/themes/cupertino/images/ui-bg_glass_100_e4f1fb_1x400.png +0 -0
- data/app/assets/stylesheets/themes/cupertino/images/ui-bg_glass_50_3baae3_1x400.png +0 -0
- data/app/assets/stylesheets/themes/cupertino/images/ui-bg_glass_80_d7ebf9_1x400.png +0 -0
- data/app/assets/stylesheets/themes/cupertino/images/ui-bg_highlight-hard_100_f2f5f7_1x100.png +0 -0
- data/app/assets/stylesheets/themes/cupertino/images/ui-bg_highlight-hard_70_000000_1x100.png +0 -0
- data/app/assets/stylesheets/themes/cupertino/images/ui-bg_highlight-soft_100_deedf7_1x100.png +0 -0
- data/app/assets/stylesheets/themes/cupertino/images/ui-bg_highlight-soft_25_ffef8f_1x100.png +0 -0
- data/app/assets/stylesheets/themes/cupertino/images/ui-icons_2694e8_256x240.png +0 -0
- data/app/assets/stylesheets/themes/cupertino/images/ui-icons_2e83ff_256x240.png +0 -0
- data/app/assets/stylesheets/themes/cupertino/images/ui-icons_3d80b3_256x240.png +0 -0
- data/app/assets/stylesheets/themes/cupertino/images/ui-icons_72a7cf_256x240.png +0 -0
- data/app/assets/stylesheets/themes/cupertino/images/ui-icons_ffffff_256x240.png +0 -0
- data/app/assets/stylesheets/themes/cupertino/theme.css +269 -0
- data/app/assets/stylesheets/themes/dark-hive/images/ui-bg_flat_30_cccccc_40x100.png +0 -0
- data/app/assets/stylesheets/themes/dark-hive/images/ui-bg_flat_50_5c5c5c_40x100.png +0 -0
- data/app/assets/stylesheets/themes/dark-hive/images/ui-bg_glass_40_ffc73d_1x400.png +0 -0
- data/app/assets/stylesheets/themes/dark-hive/images/ui-bg_highlight-hard_20_0972a5_1x100.png +0 -0
- data/app/assets/stylesheets/themes/dark-hive/images/ui-bg_highlight-soft_33_003147_1x100.png +0 -0
- data/app/assets/stylesheets/themes/dark-hive/images/ui-bg_highlight-soft_35_222222_1x100.png +0 -0
- data/app/assets/stylesheets/themes/dark-hive/images/ui-bg_highlight-soft_44_444444_1x100.png +0 -0
- data/app/assets/stylesheets/themes/dark-hive/images/ui-bg_highlight-soft_80_eeeeee_1x100.png +0 -0
- data/app/assets/stylesheets/themes/dark-hive/images/ui-bg_loop_25_000000_21x21.png +0 -0
- data/app/assets/stylesheets/themes/dark-hive/images/ui-icons_222222_256x240.png +0 -0
- data/app/assets/stylesheets/themes/dark-hive/images/ui-icons_4b8e0b_256x240.png +0 -0
- data/app/assets/stylesheets/themes/dark-hive/images/ui-icons_a83300_256x240.png +0 -0
- data/app/assets/stylesheets/themes/dark-hive/images/ui-icons_cccccc_256x240.png +0 -0
- data/app/assets/stylesheets/themes/dark-hive/images/ui-icons_ffffff_256x240.png +0 -0
- data/app/assets/stylesheets/themes/dark-hive/theme.css +269 -0
- data/app/assets/stylesheets/themes/delta/images/icons_16.png +0 -0
- data/app/assets/stylesheets/themes/delta/images/jGrowl-close.png +0 -0
- data/app/assets/stylesheets/themes/delta/images/modalClose.png +0 -0
- data/app/assets/stylesheets/themes/delta/images/modalClose@2x.png +0 -0
- data/app/assets/stylesheets/themes/delta/images/slider_handles.png +0 -0
- data/app/assets/stylesheets/themes/delta/images/slider_handles@2x.png +0 -0
- data/app/assets/stylesheets/themes/delta/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/app/assets/stylesheets/themes/delta/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
- data/app/assets/stylesheets/themes/delta/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
- data/app/assets/stylesheets/themes/delta/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/app/assets/stylesheets/themes/delta/images/ui-bg_glass_75_dadada_1x400.png +0 -0
- data/app/assets/stylesheets/themes/delta/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
- data/app/assets/stylesheets/themes/delta/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/app/assets/stylesheets/themes/delta/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
- data/app/assets/stylesheets/themes/delta/images/ui-icons_222222_256x240.png +0 -0
- data/app/assets/stylesheets/themes/delta/images/ui-icons_2e83ff_256x240.png +0 -0
- data/app/assets/stylesheets/themes/delta/images/ui-icons_454545_256x240.png +0 -0
- data/app/assets/stylesheets/themes/delta/images/ui-icons_888888_256x240.png +0 -0
- data/app/assets/stylesheets/themes/delta/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/app/assets/stylesheets/themes/delta/images/ui-icons_ffffff_256x240.png +0 -0
- data/app/assets/stylesheets/themes/delta/theme.css +671 -0
- data/app/assets/stylesheets/themes/dot-luv/images/ui-bg_diagonals-thick_15_0b3e6f_40x40.png +0 -0
- data/app/assets/stylesheets/themes/dot-luv/images/ui-bg_dots-medium_30_0b58a2_4x4.png +0 -0
- data/app/assets/stylesheets/themes/dot-luv/images/ui-bg_dots-small_20_333333_2x2.png +0 -0
- data/app/assets/stylesheets/themes/dot-luv/images/ui-bg_dots-small_30_a32d00_2x2.png +0 -0
- data/app/assets/stylesheets/themes/dot-luv/images/ui-bg_dots-small_40_00498f_2x2.png +0 -0
- data/app/assets/stylesheets/themes/dot-luv/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/app/assets/stylesheets/themes/dot-luv/images/ui-bg_flat_40_292929_40x100.png +0 -0
- data/app/assets/stylesheets/themes/dot-luv/images/ui-bg_gloss-wave_20_111111_500x100.png +0 -0
- data/app/assets/stylesheets/themes/dot-luv/images/ui-icons_00498f_256x240.png +0 -0
- data/app/assets/stylesheets/themes/dot-luv/images/ui-icons_98d2fb_256x240.png +0 -0
- data/app/assets/stylesheets/themes/dot-luv/images/ui-icons_9ccdfc_256x240.png +0 -0
- data/app/assets/stylesheets/themes/dot-luv/images/ui-icons_ffffff_256x240.png +0 -0
- data/app/assets/stylesheets/themes/dot-luv/theme.css +269 -0
- data/app/assets/stylesheets/themes/eggplant/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/app/assets/stylesheets/themes/eggplant/images/ui-bg_flat_0_eeeeee_40x100.png +0 -0
- data/app/assets/stylesheets/themes/eggplant/images/ui-bg_flat_55_994d53_40x100.png +0 -0
- data/app/assets/stylesheets/themes/eggplant/images/ui-bg_flat_55_fafafa_40x100.png +0 -0
- data/app/assets/stylesheets/themes/eggplant/images/ui-bg_gloss-wave_30_3d3644_500x100.png +0 -0
- data/app/assets/stylesheets/themes/eggplant/images/ui-bg_highlight-soft_100_dcd9de_1x100.png +0 -0
- data/app/assets/stylesheets/themes/eggplant/images/ui-bg_highlight-soft_100_eae6ea_1x100.png +0 -0
- data/app/assets/stylesheets/themes/eggplant/images/ui-bg_highlight-soft_25_30273a_1x100.png +0 -0
- data/app/assets/stylesheets/themes/eggplant/images/ui-bg_highlight-soft_45_5f5964_1x100.png +0 -0
- data/app/assets/stylesheets/themes/eggplant/images/ui-icons_454545_256x240.png +0 -0
- data/app/assets/stylesheets/themes/eggplant/images/ui-icons_734d99_256x240.png +0 -0
- data/app/assets/stylesheets/themes/eggplant/images/ui-icons_8d78a5_256x240.png +0 -0
- data/app/assets/stylesheets/themes/eggplant/images/ui-icons_a8a3ae_256x240.png +0 -0
- data/app/assets/stylesheets/themes/eggplant/images/ui-icons_ebccce_256x240.png +0 -0
- data/app/assets/stylesheets/themes/eggplant/images/ui-icons_ffffff_256x240.png +0 -0
- data/app/assets/stylesheets/themes/eggplant/theme.css +269 -0
- data/app/assets/stylesheets/themes/excite-bike/images/ui-bg_diagonals-small_25_c5ddfc_40x40.png +0 -0
- data/app/assets/stylesheets/themes/excite-bike/images/ui-bg_diagonals-thick_20_e69700_40x40.png +0 -0
- data/app/assets/stylesheets/themes/excite-bike/images/ui-bg_diagonals-thick_22_1484e6_40x40.png +0 -0
- data/app/assets/stylesheets/themes/excite-bike/images/ui-bg_diagonals-thick_26_2293f7_40x40.png +0 -0
- data/app/assets/stylesheets/themes/excite-bike/images/ui-bg_flat_0_e69700_40x100.png +0 -0
- data/app/assets/stylesheets/themes/excite-bike/images/ui-bg_flat_0_e6b900_40x100.png +0 -0
- data/app/assets/stylesheets/themes/excite-bike/images/ui-bg_highlight-soft_100_f9f9f9_1x100.png +0 -0
- data/app/assets/stylesheets/themes/excite-bike/images/ui-bg_inset-hard_100_eeeeee_1x100.png +0 -0
- data/app/assets/stylesheets/themes/excite-bike/images/ui-icons_0a82eb_256x240.png +0 -0
- data/app/assets/stylesheets/themes/excite-bike/images/ui-icons_0b54d5_256x240.png +0 -0
- data/app/assets/stylesheets/themes/excite-bike/images/ui-icons_5fa5e3_256x240.png +0 -0
- data/app/assets/stylesheets/themes/excite-bike/images/ui-icons_fcdd4a_256x240.png +0 -0
- data/app/assets/stylesheets/themes/excite-bike/images/ui-icons_ffffff_256x240.png +0 -0
- data/app/assets/stylesheets/themes/excite-bike/theme.css +270 -0
- data/app/assets/stylesheets/themes/flick/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/app/assets/stylesheets/themes/flick/images/ui-bg_flat_0_eeeeee_40x100.png +0 -0
- data/app/assets/stylesheets/themes/flick/images/ui-bg_flat_55_ffffff_40x100.png +0 -0
- data/app/assets/stylesheets/themes/flick/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
- data/app/assets/stylesheets/themes/flick/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/app/assets/stylesheets/themes/flick/images/ui-bg_highlight-soft_100_f6f6f6_1x100.png +0 -0
- data/app/assets/stylesheets/themes/flick/images/ui-bg_highlight-soft_25_0073ea_1x100.png +0 -0
- data/app/assets/stylesheets/themes/flick/images/ui-bg_highlight-soft_50_dddddd_1x100.png +0 -0
- data/app/assets/stylesheets/themes/flick/images/ui-icons_0073ea_256x240.png +0 -0
- data/app/assets/stylesheets/themes/flick/images/ui-icons_454545_256x240.png +0 -0
- data/app/assets/stylesheets/themes/flick/images/ui-icons_666666_256x240.png +0 -0
- data/app/assets/stylesheets/themes/flick/images/ui-icons_ff0084_256x240.png +0 -0
- data/app/assets/stylesheets/themes/flick/images/ui-icons_ffffff_256x240.png +0 -0
- data/app/assets/stylesheets/themes/flick/theme.css +269 -0
- data/app/assets/stylesheets/themes/glass-x/images/active.png +0 -0
- data/app/assets/stylesheets/themes/glass-x/images/default.png +0 -0
- data/app/assets/stylesheets/themes/glass-x/images/header.png +0 -0
- data/app/assets/stylesheets/themes/glass-x/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/app/assets/stylesheets/themes/glass-x/images/ui-icons_222222_256x240.png +0 -0
- data/app/assets/stylesheets/themes/glass-x/theme.css +276 -0
- data/app/assets/stylesheets/themes/home/images/active.png +0 -0
- data/app/assets/stylesheets/themes/home/images/default.png +0 -0
- data/app/assets/stylesheets/themes/home/images/header.png +0 -0
- data/app/assets/stylesheets/themes/home/images/hover.png +0 -0
- data/app/assets/stylesheets/themes/home/images/ui-bg_diagonals-thick_8_333333_40x40.png +0 -0
- data/app/assets/stylesheets/themes/home/images/ui-bg_flat_65_ffffff_40x100.png +0 -0
- data/app/assets/stylesheets/themes/home/images/ui-bg_glass_40_111111_1x400.png +0 -0
- data/app/assets/stylesheets/themes/home/images/ui-bg_glass_55_1c1c1c_1x400.png +0 -0
- data/app/assets/stylesheets/themes/home/images/ui-bg_highlight-hard_100_f9f9f9_1x100.png +0 -0
- data/app/assets/stylesheets/themes/home/images/ui-bg_highlight-hard_40_aaaaaa_1x100.png +0 -0
- data/app/assets/stylesheets/themes/home/images/ui-bg_highlight-soft_50_aaaaaa_1x100.png +0 -0
- data/app/assets/stylesheets/themes/home/images/ui-bg_inset-hard_45_cd0a0a_1x100.png +0 -0
- data/app/assets/stylesheets/themes/home/images/ui-bg_inset-hard_55_ffeb80_1x100.png +0 -0
- data/app/assets/stylesheets/themes/home/images/ui-icons_222222_256x240.png +0 -0
- data/app/assets/stylesheets/themes/home/images/ui-icons_4ca300_256x240.png +0 -0
- data/app/assets/stylesheets/themes/home/images/ui-icons_bbbbbb_256x240.png +0 -0
- data/app/assets/stylesheets/themes/home/images/ui-icons_ededed_256x240.png +0 -0
- data/app/assets/stylesheets/themes/home/images/ui-icons_ffcf29_256x240.png +0 -0
- data/app/assets/stylesheets/themes/home/images/ui-icons_ffffff_256x240.png +0 -0
- data/app/assets/stylesheets/themes/home/theme.css +273 -0
- data/app/assets/stylesheets/themes/hot-sneaks/images/ui-bg_diagonals-small_40_db4865_40x40.png +0 -0
- data/app/assets/stylesheets/themes/hot-sneaks/images/ui-bg_diagonals-small_50_93c3cd_40x40.png +0 -0
- data/app/assets/stylesheets/themes/hot-sneaks/images/ui-bg_diagonals-small_50_ff3853_40x40.png +0 -0
- data/app/assets/stylesheets/themes/hot-sneaks/images/ui-bg_diagonals-small_75_ccd232_40x40.png +0 -0
- data/app/assets/stylesheets/themes/hot-sneaks/images/ui-bg_dots-medium_80_ffff38_4x4.png +0 -0
- data/app/assets/stylesheets/themes/hot-sneaks/images/ui-bg_dots-small_35_35414f_2x2.png +0 -0
- data/app/assets/stylesheets/themes/hot-sneaks/images/ui-bg_flat_75_ba9217_40x100.png +0 -0
- data/app/assets/stylesheets/themes/hot-sneaks/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
- data/app/assets/stylesheets/themes/hot-sneaks/images/ui-bg_white-lines_85_f7f7ba_40x100.png +0 -0
- data/app/assets/stylesheets/themes/hot-sneaks/images/ui-icons_454545_256x240.png +0 -0
- data/app/assets/stylesheets/themes/hot-sneaks/images/ui-icons_88a206_256x240.png +0 -0
- data/app/assets/stylesheets/themes/hot-sneaks/images/ui-icons_c02669_256x240.png +0 -0
- data/app/assets/stylesheets/themes/hot-sneaks/images/ui-icons_e1e463_256x240.png +0 -0
- data/app/assets/stylesheets/themes/hot-sneaks/images/ui-icons_ffeb33_256x240.png +0 -0
- data/app/assets/stylesheets/themes/hot-sneaks/images/ui-icons_ffffff_256x240.png +0 -0
- data/app/assets/stylesheets/themes/hot-sneaks/theme.css +269 -0
- data/app/assets/stylesheets/themes/humanity/images/ui-bg_flat_75_aaaaaa_40x100.png +0 -0
- data/app/assets/stylesheets/themes/humanity/images/ui-bg_glass_100_f5f0e5_1x400.png +0 -0
- data/app/assets/stylesheets/themes/humanity/images/ui-bg_glass_25_cb842e_1x400.png +0 -0
- data/app/assets/stylesheets/themes/humanity/images/ui-bg_glass_70_ede4d4_1x400.png +0 -0
- data/app/assets/stylesheets/themes/humanity/images/ui-bg_highlight-hard_100_f4f0ec_1x100.png +0 -0
- data/app/assets/stylesheets/themes/humanity/images/ui-bg_highlight-hard_65_fee4bd_1x100.png +0 -0
- data/app/assets/stylesheets/themes/humanity/images/ui-bg_highlight-hard_75_f5f5b5_1x100.png +0 -0
- data/app/assets/stylesheets/themes/humanity/images/ui-bg_inset-soft_100_f4f0ec_1x100.png +0 -0
- data/app/assets/stylesheets/themes/humanity/images/ui-icons_c47a23_256x240.png +0 -0
- data/app/assets/stylesheets/themes/humanity/images/ui-icons_cb672b_256x240.png +0 -0
- data/app/assets/stylesheets/themes/humanity/images/ui-icons_f08000_256x240.png +0 -0
- data/app/assets/stylesheets/themes/humanity/images/ui-icons_f35f07_256x240.png +0 -0
- data/app/assets/stylesheets/themes/humanity/images/ui-icons_ff7519_256x240.png +0 -0
- data/app/assets/stylesheets/themes/humanity/images/ui-icons_ffffff_256x240.png +0 -0
- data/app/assets/stylesheets/themes/humanity/theme.css +269 -0
- data/app/assets/stylesheets/themes/le-frog/images/ui-bg_diagonals-small_0_aaaaaa_40x40.png +0 -0
- data/app/assets/stylesheets/themes/le-frog/images/ui-bg_diagonals-thick_15_444444_40x40.png +0 -0
- data/app/assets/stylesheets/themes/le-frog/images/ui-bg_diagonals-thick_95_ffdc2e_40x40.png +0 -0
- data/app/assets/stylesheets/themes/le-frog/images/ui-bg_glass_55_fbf5d0_1x400.png +0 -0
- data/app/assets/stylesheets/themes/le-frog/images/ui-bg_highlight-hard_30_285c00_1x100.png +0 -0
- data/app/assets/stylesheets/themes/le-frog/images/ui-bg_highlight-soft_33_3a8104_1x100.png +0 -0
- data/app/assets/stylesheets/themes/le-frog/images/ui-bg_highlight-soft_50_4eb305_1x100.png +0 -0
- data/app/assets/stylesheets/themes/le-frog/images/ui-bg_highlight-soft_60_4ca20b_1x100.png +0 -0
- data/app/assets/stylesheets/themes/le-frog/images/ui-bg_inset-soft_10_285c00_1x100.png +0 -0
- data/app/assets/stylesheets/themes/le-frog/images/ui-icons_4eb305_256x240.png +0 -0
- data/app/assets/stylesheets/themes/le-frog/images/ui-icons_72b42d_256x240.png +0 -0
- data/app/assets/stylesheets/themes/le-frog/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/app/assets/stylesheets/themes/le-frog/images/ui-icons_ffffff_256x240.png +0 -0
- data/app/assets/stylesheets/themes/le-frog/theme.css +269 -0
- data/app/assets/stylesheets/themes/midnight/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/app/assets/stylesheets/themes/midnight/images/ui-bg_flat_100_18181f_40x100.png +0 -0
- data/app/assets/stylesheets/themes/midnight/images/ui-bg_flat_100_583d3d_40x100.png +0 -0
- data/app/assets/stylesheets/themes/midnight/images/ui-bg_flat_10_3d4858_40x100.png +0 -0
- data/app/assets/stylesheets/themes/midnight/images/ui-bg_highlight-soft_15_191921_1x100.png +0 -0
- data/app/assets/stylesheets/themes/midnight/images/ui-bg_highlight-soft_15_32323d_1x100.png +0 -0
- data/app/assets/stylesheets/themes/midnight/images/ui-bg_highlight-soft_35_191921_1x100.png +0 -0
- data/app/assets/stylesheets/themes/midnight/images/ui-bg_inset-soft_35_191921_1x100.png +0 -0
- data/app/assets/stylesheets/themes/midnight/images/ui-icons_8fddff_256x240.png +0 -0
- data/app/assets/stylesheets/themes/midnight/images/ui-icons_a1ddff_256x240.png +0 -0
- data/app/assets/stylesheets/themes/midnight/images/ui-icons_f4f4f9_256x240.png +0 -0
- data/app/assets/stylesheets/themes/midnight/images/ui-icons_fafafa_256x240.png +0 -0
- data/app/assets/stylesheets/themes/midnight/images/ui-icons_ff8f8f_256x240.png +0 -0
- data/app/assets/stylesheets/themes/midnight/theme.css +268 -0
- data/app/assets/stylesheets/themes/mint-choc/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/app/assets/stylesheets/themes/mint-choc/images/ui-bg_glass_15_5f391b_1x400.png +0 -0
- data/app/assets/stylesheets/themes/mint-choc/images/ui-bg_gloss-wave_20_1c160d_500x100.png +0 -0
- data/app/assets/stylesheets/themes/mint-choc/images/ui-bg_gloss-wave_25_453326_500x100.png +0 -0
- data/app/assets/stylesheets/themes/mint-choc/images/ui-bg_gloss-wave_30_44372c_500x100.png +0 -0
- data/app/assets/stylesheets/themes/mint-choc/images/ui-bg_highlight-soft_20_201913_1x100.png +0 -0
- data/app/assets/stylesheets/themes/mint-choc/images/ui-bg_highlight-soft_20_619226_1x100.png +0 -0
- data/app/assets/stylesheets/themes/mint-choc/images/ui-bg_inset-soft_10_201913_1x100.png +0 -0
- data/app/assets/stylesheets/themes/mint-choc/images/ui-icons_222222_256x240.png +0 -0
- data/app/assets/stylesheets/themes/mint-choc/images/ui-icons_9bcc60_256x240.png +0 -0
- data/app/assets/stylesheets/themes/mint-choc/images/ui-icons_add978_256x240.png +0 -0
- data/app/assets/stylesheets/themes/mint-choc/images/ui-icons_e3ddc9_256x240.png +0 -0
- data/app/assets/stylesheets/themes/mint-choc/images/ui-icons_f1fd86_256x240.png +0 -0
- data/app/assets/stylesheets/themes/mint-choc/images/ui-icons_ffffff_256x240.png +0 -0
- data/app/assets/stylesheets/themes/mint-choc/theme.css +269 -0
- data/app/assets/stylesheets/themes/overcast/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/app/assets/stylesheets/themes/overcast/images/ui-bg_flat_0_eeeeee_40x100.png +0 -0
- data/app/assets/stylesheets/themes/overcast/images/ui-bg_flat_55_c0402a_40x100.png +0 -0
- data/app/assets/stylesheets/themes/overcast/images/ui-bg_flat_55_eeeeee_40x100.png +0 -0
- data/app/assets/stylesheets/themes/overcast/images/ui-bg_glass_100_f8f8f8_1x400.png +0 -0
- data/app/assets/stylesheets/themes/overcast/images/ui-bg_glass_35_dddddd_1x400.png +0 -0
- data/app/assets/stylesheets/themes/overcast/images/ui-bg_glass_60_eeeeee_1x400.png +0 -0
- data/app/assets/stylesheets/themes/overcast/images/ui-bg_inset-hard_75_999999_1x100.png +0 -0
- data/app/assets/stylesheets/themes/overcast/images/ui-bg_inset-soft_50_c9c9c9_1x100.png +0 -0
- data/app/assets/stylesheets/themes/overcast/images/ui-icons_3383bb_256x240.png +0 -0
- data/app/assets/stylesheets/themes/overcast/images/ui-icons_454545_256x240.png +0 -0
- data/app/assets/stylesheets/themes/overcast/images/ui-icons_70b2e1_256x240.png +0 -0
- data/app/assets/stylesheets/themes/overcast/images/ui-icons_999999_256x240.png +0 -0
- data/app/assets/stylesheets/themes/overcast/images/ui-icons_fbc856_256x240.png +0 -0
- data/app/assets/stylesheets/themes/overcast/theme.css +269 -0
- data/app/assets/stylesheets/themes/pepper-grinder/images/ui-bg_diagonal-maze_20_6e4f1c_10x10.png +0 -0
- data/app/assets/stylesheets/themes/pepper-grinder/images/ui-bg_diagonal-maze_40_000000_10x10.png +0 -0
- data/app/assets/stylesheets/themes/pepper-grinder/images/ui-bg_fine-grain_10_eceadf_60x60.png +0 -0
- data/app/assets/stylesheets/themes/pepper-grinder/images/ui-bg_fine-grain_10_f8f7f6_60x60.png +0 -0
- data/app/assets/stylesheets/themes/pepper-grinder/images/ui-bg_fine-grain_15_eceadf_60x60.png +0 -0
- data/app/assets/stylesheets/themes/pepper-grinder/images/ui-bg_fine-grain_15_f7f3de_60x60.png +0 -0
- data/app/assets/stylesheets/themes/pepper-grinder/images/ui-bg_fine-grain_15_ffffff_60x60.png +0 -0
- data/app/assets/stylesheets/themes/pepper-grinder/images/ui-bg_fine-grain_65_654b24_60x60.png +0 -0
- data/app/assets/stylesheets/themes/pepper-grinder/images/ui-bg_fine-grain_68_b83400_60x60.png +0 -0
- data/app/assets/stylesheets/themes/pepper-grinder/images/ui-icons_222222_256x240.png +0 -0
- data/app/assets/stylesheets/themes/pepper-grinder/images/ui-icons_3572ac_256x240.png +0 -0
- data/app/assets/stylesheets/themes/pepper-grinder/images/ui-icons_8c291d_256x240.png +0 -0
- data/app/assets/stylesheets/themes/pepper-grinder/images/ui-icons_b83400_256x240.png +0 -0
- data/app/assets/stylesheets/themes/pepper-grinder/images/ui-icons_fbdb93_256x240.png +0 -0
- data/app/assets/stylesheets/themes/pepper-grinder/images/ui-icons_ffffff_256x240.png +0 -0
- data/app/assets/stylesheets/themes/pepper-grinder/theme.css +269 -0
- data/app/assets/stylesheets/themes/redmond/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/app/assets/stylesheets/themes/redmond/images/ui-bg_flat_55_fbec88_40x100.png +0 -0
- data/app/assets/stylesheets/themes/redmond/images/ui-bg_glass_75_d0e5f5_1x400.png +0 -0
- data/app/assets/stylesheets/themes/redmond/images/ui-bg_glass_85_dfeffc_1x400.png +0 -0
- data/app/assets/stylesheets/themes/redmond/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/app/assets/stylesheets/themes/redmond/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png +0 -0
- data/app/assets/stylesheets/themes/redmond/images/ui-bg_inset-hard_100_f5f8f9_1x100.png +0 -0
- data/app/assets/stylesheets/themes/redmond/images/ui-bg_inset-hard_100_fcfdfd_1x100.png +0 -0
- data/app/assets/stylesheets/themes/redmond/images/ui-icons_217bc0_256x240.png +0 -0
- data/app/assets/stylesheets/themes/redmond/images/ui-icons_2e83ff_256x240.png +0 -0
- data/app/assets/stylesheets/themes/redmond/images/ui-icons_469bdd_256x240.png +0 -0
- data/app/assets/stylesheets/themes/redmond/images/ui-icons_6da8d5_256x240.png +0 -0
- data/app/assets/stylesheets/themes/redmond/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/app/assets/stylesheets/themes/redmond/images/ui-icons_d8e7f3_256x240.png +0 -0
- data/app/assets/stylesheets/themes/redmond/images/ui-icons_f9bd01_256x240.png +0 -0
- data/app/assets/stylesheets/themes/redmond/theme.css +269 -0
- data/app/assets/stylesheets/themes/rocket/images/ui-bg_diagonals-thick_50_00a6dd_40x40.png +0 -0
- data/app/assets/stylesheets/themes/rocket/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/app/assets/stylesheets/themes/rocket/images/ui-bg_flat_100_f1f1f1_40x100.png +0 -0
- data/app/assets/stylesheets/themes/rocket/images/ui-bg_highlight-soft_15_242122_1x100.png +0 -0
- data/app/assets/stylesheets/themes/rocket/images/ui-bg_highlight-soft_15_65358a_1x100.png +0 -0
- data/app/assets/stylesheets/themes/rocket/images/ui-bg_highlight-soft_15_8A56B2_1x100.png +0 -0
- data/app/assets/stylesheets/themes/rocket/images/ui-bg_highlight-soft_15_9eca38_1x100.png +0 -0
- data/app/assets/stylesheets/themes/rocket/images/ui-bg_highlight-soft_15_ca3838_1x100.png +0 -0
- data/app/assets/stylesheets/themes/rocket/images/ui-bg_highlight-soft_35_00a6dd_1x100.png +0 -0
- data/app/assets/stylesheets/themes/rocket/images/ui-bg_inset-soft_100_e1e1e1_1x100.png +0 -0
- data/app/assets/stylesheets/themes/rocket/images/ui-bg_inset-soft_15_242122_1x100 - Copy.png +0 -0
- data/app/assets/stylesheets/themes/rocket/images/ui-bg_inset-soft_15_242122_1x100.png +0 -0
- data/app/assets/stylesheets/themes/rocket/images/ui-icons_00a6dd_256x240.png +0 -0
- data/app/assets/stylesheets/themes/rocket/images/ui-icons_304915_256x240.png +0 -0
- data/app/assets/stylesheets/themes/rocket/images/ui-icons_d399ff_256x240.png +0 -0
- data/app/assets/stylesheets/themes/rocket/images/ui-icons_eaffb9_256x240.png +0 -0
- data/app/assets/stylesheets/themes/rocket/images/ui-icons_f4f4f9_256x240.png +0 -0
- data/app/assets/stylesheets/themes/rocket/images/ui-icons_fafafa_256x240.png +0 -0
- data/app/assets/stylesheets/themes/rocket/images/ui-icons_ff8f8f_256x240.png +0 -0
- data/app/assets/stylesheets/themes/rocket/theme.css +301 -0
- data/app/assets/stylesheets/themes/sam/images/sprite.png +0 -0
- data/app/assets/stylesheets/themes/sam/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/app/assets/stylesheets/themes/sam/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
- data/app/assets/stylesheets/themes/sam/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
- data/app/assets/stylesheets/themes/sam/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/app/assets/stylesheets/themes/sam/images/ui-bg_glass_75_dadada_1x400.png +0 -0
- data/app/assets/stylesheets/themes/sam/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
- data/app/assets/stylesheets/themes/sam/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/app/assets/stylesheets/themes/sam/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
- data/app/assets/stylesheets/themes/sam/images/ui-default.png +0 -0
- data/app/assets/stylesheets/themes/sam/images/ui-icons_222222_256x240.png +0 -0
- data/app/assets/stylesheets/themes/sam/images/ui-icons_2e83ff_256x240.png +0 -0
- data/app/assets/stylesheets/themes/sam/images/ui-icons_454545_256x240.png +0 -0
- data/app/assets/stylesheets/themes/sam/images/ui-icons_888888_256x240.png +0 -0
- data/app/assets/stylesheets/themes/sam/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/app/assets/stylesheets/themes/sam/theme.css +303 -0
- data/app/assets/stylesheets/themes/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/app/assets/stylesheets/themes/smoothness/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
- data/app/assets/stylesheets/themes/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
- data/app/assets/stylesheets/themes/smoothness/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/app/assets/stylesheets/themes/smoothness/images/ui-bg_glass_75_dadada_1x400.png +0 -0
- data/app/assets/stylesheets/themes/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
- data/app/assets/stylesheets/themes/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/app/assets/stylesheets/themes/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
- data/app/assets/stylesheets/themes/smoothness/images/ui-icons_222222_256x240.png +0 -0
- data/app/assets/stylesheets/themes/smoothness/images/ui-icons_2e83ff_256x240.png +0 -0
- data/app/assets/stylesheets/themes/smoothness/images/ui-icons_454545_256x240.png +0 -0
- data/app/assets/stylesheets/themes/smoothness/images/ui-icons_888888_256x240.png +0 -0
- data/app/assets/stylesheets/themes/smoothness/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/app/assets/stylesheets/themes/smoothness/theme.css +269 -0
- data/app/assets/stylesheets/themes/south-street/images/ui-bg_glass_55_fcf0ba_1x400.png +0 -0
- data/app/assets/stylesheets/themes/south-street/images/ui-bg_gloss-wave_100_ece8da_500x100.png +0 -0
- data/app/assets/stylesheets/themes/south-street/images/ui-bg_highlight-hard_100_f5f3e5_1x100.png +0 -0
- data/app/assets/stylesheets/themes/south-street/images/ui-bg_highlight-hard_100_fafaf4_1x100.png +0 -0
- data/app/assets/stylesheets/themes/south-street/images/ui-bg_highlight-hard_15_459e00_1x100.png +0 -0
- data/app/assets/stylesheets/themes/south-street/images/ui-bg_highlight-hard_95_cccccc_1x100.png +0 -0
- data/app/assets/stylesheets/themes/south-street/images/ui-bg_highlight-soft_25_67b021_1x100.png +0 -0
- data/app/assets/stylesheets/themes/south-street/images/ui-bg_highlight-soft_95_ffedad_1x100.png +0 -0
- data/app/assets/stylesheets/themes/south-street/images/ui-bg_inset-soft_15_2b2922_1x100.png +0 -0
- data/app/assets/stylesheets/themes/south-street/images/ui-icons_808080_256x240.png +0 -0
- data/app/assets/stylesheets/themes/south-street/images/ui-icons_847e71_256x240.png +0 -0
- data/app/assets/stylesheets/themes/south-street/images/ui-icons_8dc262_256x240.png +0 -0
- data/app/assets/stylesheets/themes/south-street/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/app/assets/stylesheets/themes/south-street/images/ui-icons_eeeeee_256x240.png +0 -0
- data/app/assets/stylesheets/themes/south-street/images/ui-icons_ffffff_256x240.png +0 -0
- data/app/assets/stylesheets/themes/south-street/theme.css +269 -0
- data/app/assets/stylesheets/themes/start/images/ui-bg_flat_55_999999_40x100.png +0 -0
- data/app/assets/stylesheets/themes/start/images/ui-bg_flat_75_aaaaaa_40x100.png +0 -0
- data/app/assets/stylesheets/themes/start/images/ui-bg_glass_45_0078ae_1x400.png +0 -0
- data/app/assets/stylesheets/themes/start/images/ui-bg_glass_55_f8da4e_1x400.png +0 -0
- data/app/assets/stylesheets/themes/start/images/ui-bg_glass_75_79c9ec_1x400.png +0 -0
- data/app/assets/stylesheets/themes/start/images/ui-bg_gloss-wave_45_e14f1c_500x100.png +0 -0
- data/app/assets/stylesheets/themes/start/images/ui-bg_gloss-wave_50_6eac2c_500x100.png +0 -0
- data/app/assets/stylesheets/themes/start/images/ui-bg_gloss-wave_75_2191c0_500x100.png +0 -0
- data/app/assets/stylesheets/themes/start/images/ui-bg_inset-hard_100_fcfdfd_1x100.png +0 -0
- data/app/assets/stylesheets/themes/start/images/ui-icons_0078ae_256x240.png +0 -0
- data/app/assets/stylesheets/themes/start/images/ui-icons_056b93_256x240.png +0 -0
- data/app/assets/stylesheets/themes/start/images/ui-icons_d8e7f3_256x240.png +0 -0
- data/app/assets/stylesheets/themes/start/images/ui-icons_e0fdff_256x240.png +0 -0
- data/app/assets/stylesheets/themes/start/images/ui-icons_f5e175_256x240.png +0 -0
- data/app/assets/stylesheets/themes/start/images/ui-icons_f7a50d_256x240.png +0 -0
- data/app/assets/stylesheets/themes/start/images/ui-icons_fcd113_256x240.png +0 -0
- data/app/assets/stylesheets/themes/start/theme.css +269 -0
- data/app/assets/stylesheets/themes/sunny/images/ui-bg_diagonals-medium_20_d34d17_40x40.png +0 -0
- data/app/assets/stylesheets/themes/sunny/images/ui-bg_flat_30_cccccc_40x100.png +0 -0
- data/app/assets/stylesheets/themes/sunny/images/ui-bg_flat_50_5c5c5c_40x100.png +0 -0
- data/app/assets/stylesheets/themes/sunny/images/ui-bg_gloss-wave_45_817865_500x100.png +0 -0
- data/app/assets/stylesheets/themes/sunny/images/ui-bg_gloss-wave_60_fece2f_500x100.png +0 -0
- data/app/assets/stylesheets/themes/sunny/images/ui-bg_gloss-wave_70_ffdd57_500x100.png +0 -0
- data/app/assets/stylesheets/themes/sunny/images/ui-bg_gloss-wave_90_fff9e5_500x100.png +0 -0
- data/app/assets/stylesheets/themes/sunny/images/ui-bg_highlight-soft_100_feeebd_1x100.png +0 -0
- data/app/assets/stylesheets/themes/sunny/images/ui-bg_inset-soft_30_ffffff_1x100.png +0 -0
- data/app/assets/stylesheets/themes/sunny/images/ui-icons_3d3d3d_256x240.png +0 -0
- data/app/assets/stylesheets/themes/sunny/images/ui-icons_bd7b00_256x240.png +0 -0
- data/app/assets/stylesheets/themes/sunny/images/ui-icons_d19405_256x240.png +0 -0
- data/app/assets/stylesheets/themes/sunny/images/ui-icons_eb990f_256x240.png +0 -0
- data/app/assets/stylesheets/themes/sunny/images/ui-icons_ed9f26_256x240.png +0 -0
- data/app/assets/stylesheets/themes/sunny/images/ui-icons_fadc7a_256x240.png +0 -0
- data/app/assets/stylesheets/themes/sunny/images/ui-icons_ffe180_256x240.png +0 -0
- data/app/assets/stylesheets/themes/sunny/theme.css +269 -0
- data/app/assets/stylesheets/themes/swanky-purse/images/ui-bg_diamond_10_4f4221_10x8.png +0 -0
- data/app/assets/stylesheets/themes/swanky-purse/images/ui-bg_diamond_20_372806_10x8.png +0 -0
- data/app/assets/stylesheets/themes/swanky-purse/images/ui-bg_diamond_25_675423_10x8.png +0 -0
- data/app/assets/stylesheets/themes/swanky-purse/images/ui-bg_diamond_25_d5ac5d_10x8.png +0 -0
- data/app/assets/stylesheets/themes/swanky-purse/images/ui-bg_diamond_8_261803_10x8.png +0 -0
- data/app/assets/stylesheets/themes/swanky-purse/images/ui-bg_diamond_8_443113_10x8.png +0 -0
- data/app/assets/stylesheets/themes/swanky-purse/images/ui-bg_flat_75_ddd4b0_40x100.png +0 -0
- data/app/assets/stylesheets/themes/swanky-purse/images/ui-bg_highlight-hard_65_fee4bd_1x100.png +0 -0
- data/app/assets/stylesheets/themes/swanky-purse/images/ui-icons_070603_256x240.png +0 -0
- data/app/assets/stylesheets/themes/swanky-purse/images/ui-icons_e8e2b5_256x240.png +0 -0
- data/app/assets/stylesheets/themes/swanky-purse/images/ui-icons_e9cd86_256x240.png +0 -0
- data/app/assets/stylesheets/themes/swanky-purse/images/ui-icons_efec9f_256x240.png +0 -0
- data/app/assets/stylesheets/themes/swanky-purse/images/ui-icons_f2ec64_256x240.png +0 -0
- data/app/assets/stylesheets/themes/swanky-purse/images/ui-icons_f9f2bd_256x240.png +0 -0
- data/app/assets/stylesheets/themes/swanky-purse/images/ui-icons_ff7519_256x240.png +0 -0
- data/app/assets/stylesheets/themes/swanky-purse/theme.css +269 -0
- data/app/assets/stylesheets/themes/trontastic/images/ui-bg_diagonals-small_50_262626_40x40.png +0 -0
- data/app/assets/stylesheets/themes/trontastic/images/ui-bg_flat_0_303030_40x100.png +0 -0
- data/app/assets/stylesheets/themes/trontastic/images/ui-bg_flat_0_4c4c4c_40x100.png +0 -0
- data/app/assets/stylesheets/themes/trontastic/images/ui-bg_glass_40_0a0a0a_1x400.png +0 -0
- data/app/assets/stylesheets/themes/trontastic/images/ui-bg_glass_55_f1fbe5_1x400.png +0 -0
- data/app/assets/stylesheets/themes/trontastic/images/ui-bg_glass_60_000000_1x400.png +0 -0
- data/app/assets/stylesheets/themes/trontastic/images/ui-bg_gloss-wave_55_000000_500x100.png +0 -0
- data/app/assets/stylesheets/themes/trontastic/images/ui-bg_gloss-wave_85_9fda58_500x100.png +0 -0
- data/app/assets/stylesheets/themes/trontastic/images/ui-bg_gloss-wave_95_f6ecd5_500x100.png +0 -0
- data/app/assets/stylesheets/themes/trontastic/images/ui-icons_000000_256x240.png +0 -0
- data/app/assets/stylesheets/themes/trontastic/images/ui-icons_1f1f1f_256x240.png +0 -0
- data/app/assets/stylesheets/themes/trontastic/images/ui-icons_9fda58_256x240.png +0 -0
- data/app/assets/stylesheets/themes/trontastic/images/ui-icons_b8ec79_256x240.png +0 -0
- data/app/assets/stylesheets/themes/trontastic/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/app/assets/stylesheets/themes/trontastic/images/ui-icons_ffffff_256x240.png +0 -0
- data/app/assets/stylesheets/themes/trontastic/theme.css +269 -0
- data/app/assets/stylesheets/themes/ui-darkness/images/ui-bg_flat_30_cccccc_40x100.png +0 -0
- data/app/assets/stylesheets/themes/ui-darkness/images/ui-bg_flat_50_5c5c5c_40x100.png +0 -0
- data/app/assets/stylesheets/themes/ui-darkness/images/ui-bg_glass_20_555555_1x400.png +0 -0
- data/app/assets/stylesheets/themes/ui-darkness/images/ui-bg_glass_40_0078a3_1x400.png +0 -0
- data/app/assets/stylesheets/themes/ui-darkness/images/ui-bg_glass_40_ffc73d_1x400.png +0 -0
- data/app/assets/stylesheets/themes/ui-darkness/images/ui-bg_gloss-wave_25_333333_500x100.png +0 -0
- data/app/assets/stylesheets/themes/ui-darkness/images/ui-bg_highlight-soft_80_eeeeee_1x100.png +0 -0
- data/app/assets/stylesheets/themes/ui-darkness/images/ui-bg_inset-soft_25_000000_1x100.png +0 -0
- data/app/assets/stylesheets/themes/ui-darkness/images/ui-bg_inset-soft_30_f58400_1x100.png +0 -0
- data/app/assets/stylesheets/themes/ui-darkness/images/ui-icons_222222_256x240.png +0 -0
- data/app/assets/stylesheets/themes/ui-darkness/images/ui-icons_4b8e0b_256x240.png +0 -0
- data/app/assets/stylesheets/themes/ui-darkness/images/ui-icons_a83300_256x240.png +0 -0
- data/app/assets/stylesheets/themes/ui-darkness/images/ui-icons_cccccc_256x240.png +0 -0
- data/app/assets/stylesheets/themes/ui-darkness/images/ui-icons_ffffff_256x240.png +0 -0
- data/app/assets/stylesheets/themes/ui-darkness/theme.css +269 -0
- data/app/assets/stylesheets/themes/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png +0 -0
- data/app/assets/stylesheets/themes/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png +0 -0
- data/app/assets/stylesheets/themes/ui-lightness/images/ui-bg_flat_10_000000_40x100.png +0 -0
- data/app/assets/stylesheets/themes/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png +0 -0
- data/app/assets/stylesheets/themes/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png +0 -0
- data/app/assets/stylesheets/themes/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/app/assets/stylesheets/themes/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png +0 -0
- data/app/assets/stylesheets/themes/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png +0 -0
- data/app/assets/stylesheets/themes/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png +0 -0
- data/app/assets/stylesheets/themes/ui-lightness/images/ui-icons_222222_256x240.png +0 -0
- data/app/assets/stylesheets/themes/ui-lightness/images/ui-icons_228ef1_256x240.png +0 -0
- data/app/assets/stylesheets/themes/ui-lightness/images/ui-icons_ef8c08_256x240.png +0 -0
- data/app/assets/stylesheets/themes/ui-lightness/images/ui-icons_ffd27a_256x240.png +0 -0
- data/app/assets/stylesheets/themes/ui-lightness/images/ui-icons_ffffff_256x240.png +0 -0
- data/app/assets/stylesheets/themes/ui-lightness/theme.css +269 -0
- data/app/assets/stylesheets/themes/vader/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/app/assets/stylesheets/themes/vader/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/app/assets/stylesheets/themes/vader/images/ui-bg_gloss-wave_16_121212_500x100.png +0 -0
- data/app/assets/stylesheets/themes/vader/images/ui-bg_highlight-hard_15_888888_1x100.png +0 -0
- data/app/assets/stylesheets/themes/vader/images/ui-bg_highlight-hard_55_555555_1x100.png +0 -0
- data/app/assets/stylesheets/themes/vader/images/ui-bg_highlight-soft_35_adadad_1x100.png +0 -0
- data/app/assets/stylesheets/themes/vader/images/ui-bg_highlight-soft_60_dddddd_1x100.png +0 -0
- data/app/assets/stylesheets/themes/vader/images/ui-bg_inset-soft_15_121212_1x100.png +0 -0
- data/app/assets/stylesheets/themes/vader/images/ui-icons_666666_256x240.png +0 -0
- data/app/assets/stylesheets/themes/vader/images/ui-icons_aaaaaa_256x240.png +0 -0
- data/app/assets/stylesheets/themes/vader/images/ui-icons_bbbbbb_256x240.png +0 -0
- data/app/assets/stylesheets/themes/vader/images/ui-icons_c98000_256x240.png +0 -0
- data/app/assets/stylesheets/themes/vader/images/ui-icons_cccccc_256x240.png +0 -0
- data/app/assets/stylesheets/themes/vader/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/app/assets/stylesheets/themes/vader/images/ui-icons_f29a00_256x240.png +0 -0
- data/app/assets/stylesheets/themes/vader/theme.css +269 -0
- data/app/helpers/breadcrumb_helper.rb +51 -0
- data/app/helpers/dialog_helper.rb +34 -0
- data/app/helpers/fieldset_helper.rb +35 -0
- data/app/helpers/panel_helper.rb +35 -0
- data/app/helpers/progressbar_helper.rb +31 -0
- data/app/helpers/tabview_helper.rb +54 -0
- data/app/helpers/tooltip_helper.rb +35 -0
- data/app/views/prime-rails/_breadcrumbs.html.erb +10 -0
- data/lib/generators/primerails/install/install_generator.rb +47 -0
- data/lib/generators/primerails/install/templates/application.css +7 -0
- data/lib/generators/primerails/install/templates/application.js +11 -0
- data/lib/generators/primerails/install/templates/primerails_and_overrides.css +5 -0
- data/lib/prime/rails/engine.rb +22 -0
- data/lib/prime/rails/form_helper.rb +19 -0
- data/lib/prime/rails/form_tag_helper.rb +139 -0
- data/lib/prime/rails/prime-rails-breadcrumbs.rb +43 -0
- data/lib/prime/rails/primerails.rb +3 -0
- data/lib/prime/rails/tags/text_area.rb +32 -0
- data/lib/prime/rails/tags/text_field.rb +26 -0
- data/lib/prime/rails/utils.rb +28 -0
- data/lib/prime/rails/version.rb +5 -0
- data/lib/prime-rails.rb +1 -0
- metadata +681 -0
@@ -0,0 +1,546 @@
|
|
1
|
+
/**
|
2
|
+
* PrimeUI dropdown widget
|
3
|
+
*/
|
4
|
+
$(function() {
|
5
|
+
|
6
|
+
$.widget("primeui.puidropdown", {
|
7
|
+
|
8
|
+
options: {
|
9
|
+
effect: 'fade',
|
10
|
+
effectSpeed: 'normal',
|
11
|
+
filter: false,
|
12
|
+
filterMatchMode: 'startsWith',
|
13
|
+
caseSensitiveFilter: false,
|
14
|
+
filterFunction: null,
|
15
|
+
source: null,
|
16
|
+
content: null,
|
17
|
+
scrollHeight: 200
|
18
|
+
},
|
19
|
+
|
20
|
+
_create: function() {
|
21
|
+
if(this.options.source) {
|
22
|
+
for(var i = 0; i < this.options.source.length; i++) {
|
23
|
+
var choice = this.options.source[i];
|
24
|
+
if(choice.label)
|
25
|
+
this.element.append('<option value="' + choice.value + '">' + choice.label + '</option>');
|
26
|
+
else
|
27
|
+
this.element.append('<option value="' + choice + '">' + choice + '</option>');
|
28
|
+
}
|
29
|
+
}
|
30
|
+
|
31
|
+
this.element.wrap('<div class="pui-dropdown ui-widget ui-state-default ui-corner-all ui-helper-clearfix" />')
|
32
|
+
.wrap('<div class="ui-helper-hidden-accessible" />');
|
33
|
+
this.container = this.element.closest('.pui-dropdown');
|
34
|
+
this.focusElementContainer = $('<div class="ui-helper-hidden-accessible"><input type="text" /></div>').appendTo(this.container);
|
35
|
+
this.focusElement = this.focusElementContainer.children('input');
|
36
|
+
this.label = this.options.editable ? $('<input type="text" class="pui-dropdown-label pui-inputtext ui-corner-all"">')
|
37
|
+
: $('<label class="pui-dropdown-label pui-inputtext ui-corner-all"/>');
|
38
|
+
this.label.appendTo(this.container);
|
39
|
+
this.menuIcon = $('<div class="pui-dropdown-trigger ui-state-default ui-corner-right"><span class="ui-icon ui-icon-triangle-1-s"></span></div>')
|
40
|
+
.appendTo(this.container);
|
41
|
+
this.panel = $('<div class="pui-dropdown-panel ui-widget-content ui-corner-all ui-helper-hidden pui-shadow" />').appendTo(document.body);
|
42
|
+
this.itemsWrapper = $('<div class="pui-dropdown-items-wrapper" />').appendTo(this.panel);
|
43
|
+
this.itemsContainer = $('<ul class="pui-dropdown-items pui-dropdown-list ui-widget-content ui-widget ui-corner-all ui-helper-reset"></ul>')
|
44
|
+
.appendTo(this.itemsWrapper);
|
45
|
+
this.disabled = this.element.prop('disabled');
|
46
|
+
this.choices = this.element.children('option');
|
47
|
+
this.optGroupsSize = this.itemsContainer.children('li.puiselectonemenu-item-group').length;
|
48
|
+
|
49
|
+
if(this.options.filter) {
|
50
|
+
this.filterContainer = $('<div class="pui-dropdown-filter-container" />').prependTo(this.panel);
|
51
|
+
this.filterInput = $('<input type="text" autocomplete="off" class="pui-dropdown-filter pui-inputtext ui-widget ui-state-default ui-corner-all" />')
|
52
|
+
.appendTo(this.filterContainer);
|
53
|
+
this.filterContainer.append('<span class="ui-icon ui-icon-search"></span>');
|
54
|
+
}
|
55
|
+
|
56
|
+
this._generateItems();
|
57
|
+
|
58
|
+
var $this = this,
|
59
|
+
selectedOption = this.choices.filter(':selected');
|
60
|
+
|
61
|
+
//disable options
|
62
|
+
this.choices.filter(':disabled').each(function() {
|
63
|
+
$this.items.eq($(this).index()).addClass('ui-state-disabled');
|
64
|
+
});
|
65
|
+
|
66
|
+
//triggers
|
67
|
+
this.triggers = this.options.editable ? this.menuIcon : this.container.children('.pui-dropdown-trigger, .pui-dropdown-label');
|
68
|
+
|
69
|
+
//activate selected
|
70
|
+
if(this.options.editable) {
|
71
|
+
var customInputVal = this.label.val();
|
72
|
+
|
73
|
+
//predefined input
|
74
|
+
if(customInputVal === selectedOption.text()) {
|
75
|
+
this._highlightItem(this.items.eq(selectedOption.index()));
|
76
|
+
}
|
77
|
+
//custom input
|
78
|
+
else {
|
79
|
+
this.items.eq(0).addClass('ui-state-highlight');
|
80
|
+
this.customInput = true;
|
81
|
+
this.customInputVal = customInputVal;
|
82
|
+
}
|
83
|
+
}
|
84
|
+
else {
|
85
|
+
this._highlightItem(this.items.eq(selectedOption.index()));
|
86
|
+
}
|
87
|
+
|
88
|
+
if(!this.disabled) {
|
89
|
+
this._bindEvents();
|
90
|
+
this._bindConstantEvents();
|
91
|
+
}
|
92
|
+
|
93
|
+
this._initDimensions();
|
94
|
+
},
|
95
|
+
|
96
|
+
_generateItems: function() {
|
97
|
+
for(var i = 0; i < this.choices.length; i++) {
|
98
|
+
var option = this.choices.eq(i),
|
99
|
+
optionLabel = option.text(),
|
100
|
+
content = this.options.content ? this.options.content.call(this, this.options.source[i]) : optionLabel;
|
101
|
+
|
102
|
+
this.itemsContainer.append('<li data-label="' + optionLabel + '" class="pui-dropdown-item pui-dropdown-list-item ui-corner-all">' + content + '</li>');
|
103
|
+
}
|
104
|
+
|
105
|
+
this.items = this.itemsContainer.children('.pui-dropdown-item');
|
106
|
+
},
|
107
|
+
|
108
|
+
_bindEvents: function() {
|
109
|
+
var $this = this;
|
110
|
+
|
111
|
+
this.items.filter(':not(.ui-state-disabled)').on('mouseover.puidropdown', function() {
|
112
|
+
var el = $(this);
|
113
|
+
|
114
|
+
if(!el.hasClass('ui-state-highlight'))
|
115
|
+
$(this).addClass('ui-state-hover');
|
116
|
+
})
|
117
|
+
.on('mouseout.puidropdown', function() {
|
118
|
+
$(this).removeClass('ui-state-hover');
|
119
|
+
})
|
120
|
+
.on('click.puidropdown', function() {
|
121
|
+
$this._selectItem($(this));
|
122
|
+
});
|
123
|
+
|
124
|
+
this.triggers.on('mouseenter.puidropdown', function() {
|
125
|
+
if(!$this.container.hasClass('ui-state-focus')) {
|
126
|
+
$this.container.addClass('ui-state-hover');
|
127
|
+
$this.menuIcon.addClass('ui-state-hover');
|
128
|
+
}
|
129
|
+
})
|
130
|
+
.on('mouseleave.puidropdown', function() {
|
131
|
+
$this.container.removeClass('ui-state-hover');
|
132
|
+
$this.menuIcon.removeClass('ui-state-hover');
|
133
|
+
})
|
134
|
+
.on('click.puidropdown', function(e) {
|
135
|
+
if($this.panel.is(":hidden")) {
|
136
|
+
$this._show();
|
137
|
+
}
|
138
|
+
else {
|
139
|
+
$this._hide();
|
140
|
+
|
141
|
+
$this._revert();
|
142
|
+
}
|
143
|
+
|
144
|
+
$this.container.removeClass('ui-state-hover');
|
145
|
+
$this.menuIcon.removeClass('ui-state-hover');
|
146
|
+
$this.focusElement.trigger('focus.puidropdown');
|
147
|
+
e.preventDefault();
|
148
|
+
});
|
149
|
+
|
150
|
+
this.focusElement.on('focus.puidropdown', function() {
|
151
|
+
$this.container.addClass('ui-state-focus');
|
152
|
+
$this.menuIcon.addClass('ui-state-focus');
|
153
|
+
})
|
154
|
+
.on('blur.puidropdown', function() {
|
155
|
+
$this.container.removeClass('ui-state-focus');
|
156
|
+
$this.menuIcon.removeClass('ui-state-focus');
|
157
|
+
});
|
158
|
+
|
159
|
+
if(this.options.editable) {
|
160
|
+
this.label.on('change.pui-dropdown', function() {
|
161
|
+
$this._triggerChange(true);
|
162
|
+
$this.customInput = true;
|
163
|
+
$this.customInputVal = $(this).val();
|
164
|
+
$this.items.filter('.ui-state-highlight').removeClass('ui-state-highlight');
|
165
|
+
$this.items.eq(0).addClass('ui-state-highlight');
|
166
|
+
});
|
167
|
+
}
|
168
|
+
|
169
|
+
this._bindKeyEvents();
|
170
|
+
|
171
|
+
if(this.options.filter) {
|
172
|
+
this._setupFilterMatcher();
|
173
|
+
|
174
|
+
this.filterInput.puiinputtext();
|
175
|
+
|
176
|
+
this.filterInput.on('keyup.pui-dropdown', function() {
|
177
|
+
$this._filter($(this).val());
|
178
|
+
});
|
179
|
+
}
|
180
|
+
},
|
181
|
+
|
182
|
+
_bindConstantEvents: function() {
|
183
|
+
var $this = this;
|
184
|
+
|
185
|
+
$(document.body).bind('mousedown.pui-dropdown', function (e) {
|
186
|
+
if($this.panel.is(":hidden")) {
|
187
|
+
return;
|
188
|
+
}
|
189
|
+
|
190
|
+
var offset = $this.panel.offset();
|
191
|
+
if (e.target === $this.label.get(0) ||
|
192
|
+
e.target === $this.menuIcon.get(0) ||
|
193
|
+
e.target === $this.menuIcon.children().get(0)) {
|
194
|
+
return;
|
195
|
+
}
|
196
|
+
|
197
|
+
if (e.pageX < offset.left ||
|
198
|
+
e.pageX > offset.left + $this.panel.width() ||
|
199
|
+
e.pageY < offset.top ||
|
200
|
+
e.pageY > offset.top + $this.panel.height()) {
|
201
|
+
|
202
|
+
$this._hide();
|
203
|
+
$this._revert();
|
204
|
+
}
|
205
|
+
});
|
206
|
+
|
207
|
+
this.resizeNS = 'resize.' + this.id;
|
208
|
+
this._unbindResize();
|
209
|
+
this._bindResize();
|
210
|
+
},
|
211
|
+
|
212
|
+
_bindKeyEvents: function() {
|
213
|
+
var $this = this;
|
214
|
+
|
215
|
+
this.focusElement.on('keydown.puiselectonemenu', function(e) {
|
216
|
+
var keyCode = $.ui.keyCode,
|
217
|
+
key = e.which;
|
218
|
+
|
219
|
+
switch(key) {
|
220
|
+
case keyCode.UP:
|
221
|
+
case keyCode.LEFT:
|
222
|
+
var activeItem = $this._getActiveItem(),
|
223
|
+
prev = activeItem.prevAll(':not(.ui-state-disabled,.ui-selectonemenu-item-group):first');
|
224
|
+
|
225
|
+
if(prev.length == 1) {
|
226
|
+
if($this.panel.is(':hidden')) {
|
227
|
+
$this._selectItem(prev);
|
228
|
+
}
|
229
|
+
else {
|
230
|
+
$this._highlightItem(prev);
|
231
|
+
PUI.scrollInView($this.itemsWrapper, prev);
|
232
|
+
}
|
233
|
+
}
|
234
|
+
|
235
|
+
e.preventDefault();
|
236
|
+
break;
|
237
|
+
|
238
|
+
case keyCode.DOWN:
|
239
|
+
case keyCode.RIGHT:
|
240
|
+
var activeItem = $this._getActiveItem(),
|
241
|
+
next = activeItem.nextAll(':not(.ui-state-disabled,.ui-selectonemenu-item-group):first');
|
242
|
+
|
243
|
+
if(next.length == 1) {
|
244
|
+
if($this.panel.is(':hidden')) {
|
245
|
+
if(e.altKey) {
|
246
|
+
$this._show();
|
247
|
+
} else {
|
248
|
+
$this._selectItem(next);
|
249
|
+
}
|
250
|
+
}
|
251
|
+
else {
|
252
|
+
$this._highlightItem(next);
|
253
|
+
PUI.scrollInView($this.itemsWrapper, next);
|
254
|
+
}
|
255
|
+
}
|
256
|
+
|
257
|
+
e.preventDefault();
|
258
|
+
break;
|
259
|
+
|
260
|
+
case keyCode.ENTER:
|
261
|
+
case keyCode.NUMPAD_ENTER:
|
262
|
+
if($this.panel.is(':hidden')) {
|
263
|
+
$this._show();
|
264
|
+
}
|
265
|
+
else {
|
266
|
+
$this._selectItem($this._getActiveItem());
|
267
|
+
}
|
268
|
+
|
269
|
+
e.preventDefault();
|
270
|
+
break;
|
271
|
+
|
272
|
+
case keyCode.TAB:
|
273
|
+
if($this.panel.is(':visible')) {
|
274
|
+
$this._revert();
|
275
|
+
$this._hide();
|
276
|
+
}
|
277
|
+
break;
|
278
|
+
|
279
|
+
case keyCode.ESCAPE:
|
280
|
+
if($this.panel.is(':visible')) {
|
281
|
+
$this._revert();
|
282
|
+
$this._hide();
|
283
|
+
}
|
284
|
+
break;
|
285
|
+
|
286
|
+
default:
|
287
|
+
var k = String.fromCharCode((96 <= key && key <= 105)? key-48 : key),
|
288
|
+
currentItem = $this.items.filter('.ui-state-highlight');
|
289
|
+
|
290
|
+
//Search items forward from current to end and on no result, search from start until current
|
291
|
+
var highlightItem = $this._search(k, currentItem.index() + 1, $this.options.length);
|
292
|
+
if(!highlightItem) {
|
293
|
+
highlightItem = $this._search(k, 0, currentItem.index());
|
294
|
+
}
|
295
|
+
|
296
|
+
if(highlightItem) {
|
297
|
+
if($this.panel.is(':hidden')) {
|
298
|
+
$this._selectItem(highlightItem);
|
299
|
+
}
|
300
|
+
else {
|
301
|
+
$this._highlightItem(highlightItem);
|
302
|
+
PUI.scrollInView($this.itemsWrapper, highlightItem);
|
303
|
+
}
|
304
|
+
}
|
305
|
+
|
306
|
+
break;
|
307
|
+
}
|
308
|
+
});
|
309
|
+
},
|
310
|
+
|
311
|
+
_initDimensions: function() {
|
312
|
+
var userStyle = this.element.attr('style');
|
313
|
+
|
314
|
+
//do not adjust width of container if there is user width defined
|
315
|
+
if(!userStyle||userStyle.indexOf('width') == -1) {
|
316
|
+
this.container.width(this.element.outerWidth(true) + 5);
|
317
|
+
}
|
318
|
+
|
319
|
+
//width of label
|
320
|
+
this.label.width(this.container.width() - this.menuIcon.width());
|
321
|
+
|
322
|
+
//align panel and container
|
323
|
+
var jqWidth = this.container.innerWidth();
|
324
|
+
if(this.panel.outerWidth() < jqWidth) {
|
325
|
+
this.panel.width(jqWidth);
|
326
|
+
}
|
327
|
+
|
328
|
+
this.element.parent().addClass('ui-helper-hidden').removeClass('ui-helper-hidden-accessible');
|
329
|
+
|
330
|
+
if(this.options.scrollHeight && this.panel.outerHeight() > this.options.scrollHeight) {
|
331
|
+
this.itemsWrapper.height(this.options.scrollHeight);
|
332
|
+
}
|
333
|
+
},
|
334
|
+
|
335
|
+
_selectItem: function(item, silent) {
|
336
|
+
var selectedOption = this.choices.eq(this._resolveItemIndex(item)),
|
337
|
+
currentOption = this.choices.filter(':selected'),
|
338
|
+
sameOption = selectedOption.val() == currentOption.val(),
|
339
|
+
shouldChange = null;
|
340
|
+
|
341
|
+
if(this.options.editable) {
|
342
|
+
shouldChange = (!sameOption)||(selectedOption.text() != this.label.val());
|
343
|
+
}
|
344
|
+
else {
|
345
|
+
shouldChange = !sameOption;
|
346
|
+
}
|
347
|
+
|
348
|
+
if(shouldChange) {
|
349
|
+
this._highlightItem(item);
|
350
|
+
this.element.val(selectedOption.val())
|
351
|
+
|
352
|
+
this._triggerChange();
|
353
|
+
|
354
|
+
if(this.options.editable) {
|
355
|
+
this.customInput = false;
|
356
|
+
}
|
357
|
+
}
|
358
|
+
|
359
|
+
if(!silent) {
|
360
|
+
this.focusElement.trigger('focus.puidropdown');
|
361
|
+
}
|
362
|
+
|
363
|
+
if(this.panel.is(':visible')) {
|
364
|
+
this._hide();
|
365
|
+
}
|
366
|
+
},
|
367
|
+
|
368
|
+
_highlightItem: function(item) {
|
369
|
+
this.items.filter('.ui-state-highlight').removeClass('ui-state-highlight');
|
370
|
+
item.addClass('ui-state-highlight');
|
371
|
+
|
372
|
+
this._setLabel(item.data('label'));
|
373
|
+
},
|
374
|
+
|
375
|
+
_triggerChange: function(edited) {
|
376
|
+
this.changed = false;
|
377
|
+
|
378
|
+
if(this.options.change) {
|
379
|
+
this._trigger('change');
|
380
|
+
}
|
381
|
+
|
382
|
+
if(!edited) {
|
383
|
+
this.value = this.choices.filter(':selected').val();
|
384
|
+
}
|
385
|
+
},
|
386
|
+
|
387
|
+
_resolveItemIndex: function(item) {
|
388
|
+
if(this.optGroupsSize === 0)
|
389
|
+
return item.index();
|
390
|
+
else
|
391
|
+
return item.index() - item.prevAll('li.pui-dropdown-item-group').length;
|
392
|
+
},
|
393
|
+
|
394
|
+
_setLabel: function(value) {
|
395
|
+
if(this.options.editable) {
|
396
|
+
this.label.val(value);
|
397
|
+
}
|
398
|
+
else {
|
399
|
+
if(value === ' ')
|
400
|
+
this.label.html(' ');
|
401
|
+
else
|
402
|
+
this.label.text(value);
|
403
|
+
}
|
404
|
+
},
|
405
|
+
|
406
|
+
_bindResize: function() {
|
407
|
+
var $this = this;
|
408
|
+
|
409
|
+
$(window).bind(this.resizeNS, function(e) {
|
410
|
+
if($this.panel.is(':visible')) {
|
411
|
+
$this._alignPanel();
|
412
|
+
}
|
413
|
+
});
|
414
|
+
},
|
415
|
+
|
416
|
+
_unbindResize: function() {
|
417
|
+
$(window).unbind(this.resizeNS);
|
418
|
+
},
|
419
|
+
|
420
|
+
_unbindEvents: function() {
|
421
|
+
this.items.off();
|
422
|
+
this.triggers.off();
|
423
|
+
this.input.off();
|
424
|
+
this.focusInput.off();
|
425
|
+
this.label.off();
|
426
|
+
},
|
427
|
+
|
428
|
+
_alignPanel: function() {
|
429
|
+
this.panel.css({left:'', top:''}).position({
|
430
|
+
my: 'left top'
|
431
|
+
,at: 'left bottom'
|
432
|
+
,of: this.container
|
433
|
+
});
|
434
|
+
},
|
435
|
+
|
436
|
+
_show: function() {
|
437
|
+
this._alignPanel();
|
438
|
+
|
439
|
+
this.panel.css('z-index', ++PUI.zindex);
|
440
|
+
|
441
|
+
if(this.options.effect != 'none')
|
442
|
+
this.panel.show(this.options.effect, {}, this.options.effectSpeed);
|
443
|
+
else
|
444
|
+
this.panel.show();
|
445
|
+
|
446
|
+
this.preShowValue = this.choices.filter(':selected');
|
447
|
+
},
|
448
|
+
|
449
|
+
_hide: function() {
|
450
|
+
this.panel.hide();
|
451
|
+
},
|
452
|
+
|
453
|
+
_revert: function() {
|
454
|
+
if(this.options.editable && this.customInput) {
|
455
|
+
this._setLabel(this.customInputVal);
|
456
|
+
this.items.filter('.ui-state-active').removeClass('ui-state-active');
|
457
|
+
this.items.eq(0).addClass('ui-state-active');
|
458
|
+
}
|
459
|
+
else {
|
460
|
+
this._highlightItem(this.items.eq(this.preShowValue.index()));
|
461
|
+
}
|
462
|
+
},
|
463
|
+
|
464
|
+
_getActiveItem: function() {
|
465
|
+
return this.items.filter('.ui-state-highlight');
|
466
|
+
},
|
467
|
+
|
468
|
+
_setupFilterMatcher: function() {
|
469
|
+
this.filterMatchers = {
|
470
|
+
'startsWith': this._startsWithFilter
|
471
|
+
,'contains': this._containsFilter
|
472
|
+
,'endsWith': this._endsWithFilter
|
473
|
+
,'custom': this.options.filterFunction
|
474
|
+
};
|
475
|
+
|
476
|
+
this.filterMatcher = this.filterMatchers[this.options.filterMatchMode];
|
477
|
+
},
|
478
|
+
|
479
|
+
_startsWithFilter: function(value, filter) {
|
480
|
+
return value.indexOf(filter) === 0;
|
481
|
+
},
|
482
|
+
|
483
|
+
_containsFilter: function(value, filter) {
|
484
|
+
return value.indexOf(filter) !== -1;
|
485
|
+
},
|
486
|
+
|
487
|
+
_endsWithFilter: function(value, filter) {
|
488
|
+
return value.indexOf(filter, value.length - filter.length) !== -1;
|
489
|
+
},
|
490
|
+
|
491
|
+
_filter: function(value) {
|
492
|
+
this.initialHeight = this.initialHeight||this.itemsWrapper.height();
|
493
|
+
var filterValue = this.options.caseSensitiveFilter ? $.trim(value) : $.trim(value).toLowerCase();
|
494
|
+
|
495
|
+
if(filterValue === '') {
|
496
|
+
this.items.filter(':hidden').show();
|
497
|
+
}
|
498
|
+
else {
|
499
|
+
for(var i = 0; i < this.choices.length; i++) {
|
500
|
+
var option = this.choices.eq(i),
|
501
|
+
itemLabel = this.options.caseSensitiveFilter ? option.text() : option.text().toLowerCase(),
|
502
|
+
item = this.items.eq(i);
|
503
|
+
|
504
|
+
if(this.filterMatcher(itemLabel, filterValue))
|
505
|
+
item.show();
|
506
|
+
else
|
507
|
+
item.hide();
|
508
|
+
}
|
509
|
+
}
|
510
|
+
|
511
|
+
if(this.itemsContainer.height() < this.initialHeight) {
|
512
|
+
this.itemsWrapper.css('height', 'auto');
|
513
|
+
}
|
514
|
+
else {
|
515
|
+
this.itemsWrapper.height(this.initialHeight);
|
516
|
+
}
|
517
|
+
},
|
518
|
+
|
519
|
+
_search: function(text, start, end) {
|
520
|
+
for(var i = start; i < end; i++) {
|
521
|
+
var option = this.choices.eq(i);
|
522
|
+
|
523
|
+
if(option.text().indexOf(text) == 0) {
|
524
|
+
return this.items.eq(i);
|
525
|
+
}
|
526
|
+
}
|
527
|
+
|
528
|
+
return null;
|
529
|
+
},
|
530
|
+
|
531
|
+
getSelectedValue: function() {
|
532
|
+
return this.element.val();
|
533
|
+
},
|
534
|
+
|
535
|
+
getSelectedLabel: function() {
|
536
|
+
return this.choices.filter(':selected').text();
|
537
|
+
},
|
538
|
+
|
539
|
+
selectValue : function(value) {
|
540
|
+
var option = this.choices.filter('[value="' + value + '"]');
|
541
|
+
|
542
|
+
this._selectItem(this.items.eq(option.index()), true);
|
543
|
+
}
|
544
|
+
});
|
545
|
+
|
546
|
+
});
|
@@ -0,0 +1,68 @@
|
|
1
|
+
/**
|
2
|
+
* PrimeFaces Fieldset Widget
|
3
|
+
*/
|
4
|
+
$(function() {
|
5
|
+
|
6
|
+
$.widget("primeui.puifieldset", {
|
7
|
+
|
8
|
+
options: {
|
9
|
+
toggleable: false,
|
10
|
+
toggleDuration: 'normal',
|
11
|
+
collapsed: false
|
12
|
+
},
|
13
|
+
|
14
|
+
_create: function() {
|
15
|
+
this.element.addClass('pui-fieldset ui-widget ui-widget-content ui-corner-all').
|
16
|
+
children('legend').addClass('pui-fieldset-legend ui-corner-all ui-state-default');
|
17
|
+
|
18
|
+
this.element.contents(':not(legend)').wrapAll('<div class="pui-fieldset-content" />');
|
19
|
+
|
20
|
+
this.legend = this.element.children('legend.pui-fieldset-legend');
|
21
|
+
this.content = this.element.children('div.pui-fieldset-content');
|
22
|
+
|
23
|
+
this.legend.prependTo(this.element);
|
24
|
+
|
25
|
+
if(this.options.toggleable) {
|
26
|
+
this.element.addClass('pui-fieldset-toggleable');
|
27
|
+
this.toggler = $('<span class="pui-fieldset-toggler ui-icon" />').prependTo(this.legend);
|
28
|
+
|
29
|
+
this._bindEvents();
|
30
|
+
|
31
|
+
if(this.options.collapsed) {
|
32
|
+
this.content.hide();
|
33
|
+
this.toggler.addClass('ui-icon-plusthick');
|
34
|
+
} else {
|
35
|
+
this.toggler.addClass('ui-icon-minusthick');
|
36
|
+
}
|
37
|
+
}
|
38
|
+
},
|
39
|
+
|
40
|
+
_bindEvents: function() {
|
41
|
+
var $this = this;
|
42
|
+
|
43
|
+
this.legend.on('click.puifieldset', function(e) {$this.toggle(e);})
|
44
|
+
.on('mouseover.puifieldset', function() {$this.legend.addClass('ui-state-hover');})
|
45
|
+
.on('mouseout.puifieldset', function() {$this.legend.removeClass('ui-state-hover ui-state-active');})
|
46
|
+
.on('mousedown.puifieldset', function() {$this.legend.removeClass('ui-state-hover').addClass('ui-state-active');})
|
47
|
+
.on('mouseup.puifieldset', function() {$this.legend.removeClass('ui-state-active').addClass('ui-state-hover');})
|
48
|
+
},
|
49
|
+
|
50
|
+
toggle: function(e) {
|
51
|
+
var $this = this;
|
52
|
+
|
53
|
+
this._trigger('beforeToggle', e);
|
54
|
+
|
55
|
+
if(this.options.collapsed) {
|
56
|
+
this.toggler.removeClass('ui-icon-plusthick').addClass('ui-icon-minusthick');
|
57
|
+
} else {
|
58
|
+
this.toggler.removeClass('ui-icon-minusthick').addClass('ui-icon-plusthick');
|
59
|
+
}
|
60
|
+
|
61
|
+
this.content.slideToggle(this.options.toggleSpeed, 'easeInOutCirc', function() {
|
62
|
+
$this._trigger('afterToggle', e);
|
63
|
+
$this.options.collapsed = !$this.options.collapsed;
|
64
|
+
});
|
65
|
+
}
|
66
|
+
|
67
|
+
});
|
68
|
+
});
|