alchemy_cms 7.0.8 → 7.1.0.pre.b1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/backport.yml +36 -0
- data/.github/workflows/test.yml +3 -2
- data/.gitignore +1 -0
- data/.standard.yml +1 -1
- data/CHANGELOG.md +145 -0
- data/Gemfile +8 -10
- data/README.md +10 -8
- data/alchemy_cms.gemspec +3 -2
- data/app/assets/config/alchemy_manifest.js +0 -1
- data/app/assets/javascripts/alchemy/admin.js +1 -19
- data/app/assets/javascripts/alchemy/alchemy.confirm_dialog.js.coffee +2 -3
- data/app/assets/javascripts/alchemy/alchemy.dialog.js.coffee +19 -34
- data/app/assets/javascripts/alchemy/alchemy.elements_window.js.coffee +38 -13
- data/app/assets/javascripts/alchemy/alchemy.file_progress.js.coffee +1 -1
- data/app/assets/javascripts/alchemy/alchemy.fixed_elements.js +32 -25
- data/app/assets/javascripts/alchemy/alchemy.growler.js.coffee +1 -1
- data/app/assets/javascripts/alchemy/alchemy.image_overlay.coffee +3 -5
- data/app/assets/javascripts/alchemy/alchemy.initializer.js.coffee +0 -57
- data/app/assets/javascripts/alchemy/alchemy.link_dialog.js.coffee +22 -63
- data/app/assets/javascripts/alchemy/alchemy.list_filter.js.coffee +2 -2
- data/app/assets/javascripts/alchemy/alchemy.preview.js.coffee +5 -4
- data/app/assets/javascripts/alchemy/alchemy.preview_window.js.coffee +5 -5
- data/app/assets/javascripts/alchemy/templates/index.js +0 -2
- data/app/assets/javascripts/alchemy/templates/node_folder.hbs +1 -1
- data/app/assets/javascripts/alchemy/templates/page.hbs +1 -1
- data/app/assets/javascripts/alchemy/templates/page_folder.hbs +2 -2
- data/app/assets/stylesheets/alchemy/_custom-properties.scss +82 -0
- data/app/assets/stylesheets/alchemy/_mixins.scss +38 -30
- data/app/assets/stylesheets/alchemy/_variables.scss +12 -5
- data/app/assets/stylesheets/alchemy/admin.scss +3 -4
- data/app/assets/stylesheets/alchemy/archive.scss +107 -50
- data/app/assets/stylesheets/alchemy/attachments.scss +5 -4
- data/app/assets/stylesheets/alchemy/buttons.scss +38 -164
- data/app/assets/stylesheets/alchemy/dashboard.scss +31 -6
- data/app/assets/stylesheets/alchemy/dialogs.scss +12 -28
- data/app/assets/stylesheets/alchemy/elements.scss +273 -282
- data/app/assets/stylesheets/alchemy/flash.scss +20 -12
- data/app/assets/stylesheets/alchemy/forms.scss +21 -34
- data/app/assets/stylesheets/alchemy/frame.scss +11 -32
- data/app/assets/stylesheets/alchemy/hints.scss +4 -62
- data/app/assets/stylesheets/alchemy/image_library.scss +36 -33
- data/app/assets/stylesheets/alchemy/menubar.scss +7 -6
- data/app/assets/stylesheets/alchemy/navigation.scss +27 -15
- data/app/assets/stylesheets/alchemy/nodes.scss +11 -7
- data/app/assets/stylesheets/alchemy/notices.scss +16 -4
- data/app/assets/stylesheets/alchemy/page-select.scss +10 -2
- data/app/assets/stylesheets/alchemy/pagination.scss +22 -13
- data/app/assets/stylesheets/alchemy/resource_info.scss +7 -5
- data/app/assets/stylesheets/alchemy/selects.scss +49 -42
- data/app/assets/stylesheets/alchemy/shoelace.scss +345 -0
- data/app/assets/stylesheets/alchemy/sitemap.scss +24 -14
- data/app/assets/stylesheets/alchemy/spinner.scss +9 -19
- data/app/assets/stylesheets/alchemy/tables.scss +16 -24
- data/app/assets/stylesheets/alchemy/tags.scss +4 -0
- data/app/assets/stylesheets/alchemy/toolbar.scss +29 -25
- data/app/assets/stylesheets/alchemy/upload.scss +140 -89
- data/app/assets/stylesheets/tinymce/skins/alchemy/skin.min.css.scss +80 -108
- data/app/components/alchemy/admin/node_select.rb +39 -0
- data/app/components/alchemy/admin/page_select.rb +42 -0
- data/app/controllers/alchemy/admin/base_controller.rb +5 -6
- data/app/controllers/alchemy/admin/elements_controller.rb +63 -35
- data/app/controllers/alchemy/base_controller.rb +4 -2
- data/app/controllers/concerns/alchemy/admin/uploader_responses.rb +1 -1
- data/app/controllers/concerns/alchemy/site_redirects.rb +1 -1
- data/app/decorators/alchemy/element_editor.rb +0 -2
- data/app/helpers/alchemy/admin/attachments_helper.rb +6 -5
- data/app/helpers/alchemy/admin/base_helper.rb +17 -12
- data/app/helpers/alchemy/admin/ingredients_helper.rb +4 -1
- data/app/helpers/alchemy/admin/pages_helper.rb +5 -11
- data/app/helpers/alchemy/base_helper.rb +47 -13
- data/app/javascript/alchemy_admin/components/alchemy_html_element.js +129 -0
- data/app/javascript/alchemy_admin/components/button.js +59 -0
- data/app/javascript/alchemy_admin/components/char_counter.js +40 -0
- data/app/javascript/alchemy_admin/components/datepicker.js +39 -0
- data/app/javascript/alchemy_admin/components/dialog_link.js +45 -0
- data/app/javascript/alchemy_admin/components/element_editor/publish_element_button.js +36 -0
- data/app/javascript/alchemy_admin/components/element_editor.js +553 -0
- data/app/javascript/alchemy_admin/components/ingredient_group.js +54 -0
- data/app/javascript/alchemy_admin/components/link_buttons/link_button.js +48 -0
- data/app/javascript/alchemy_admin/components/link_buttons/unlink_button.js +38 -0
- data/app/javascript/alchemy_admin/components/link_buttons.js +79 -0
- data/app/javascript/alchemy_admin/components/node_select.js +45 -0
- data/app/javascript/alchemy_admin/components/overlay.js +18 -0
- data/app/javascript/alchemy_admin/components/page_select.js +63 -0
- data/app/javascript/alchemy_admin/components/remote_select.js +134 -0
- data/app/javascript/alchemy_admin/components/select.js +12 -0
- data/app/javascript/alchemy_admin/components/spinner.js +31 -0
- data/app/javascript/alchemy_admin/components/tinymce.js +146 -0
- data/app/javascript/alchemy_admin/components/uploader/file_upload.js +266 -0
- data/app/javascript/alchemy_admin/components/uploader/progress.js +258 -0
- data/app/javascript/alchemy_admin/components/uploader.js +132 -0
- data/app/javascript/alchemy_admin/dirty.js +49 -0
- data/app/javascript/alchemy_admin/file_editors.js +1 -1
- data/app/javascript/alchemy_admin/gui.js +14 -0
- data/app/javascript/alchemy_admin/i18n.js +12 -8
- data/app/javascript/alchemy_admin/image_cropper.js +6 -3
- data/app/javascript/alchemy_admin/image_loader.js +7 -15
- data/app/javascript/alchemy_admin/ingredient_anchor_link.js +2 -5
- data/app/javascript/alchemy_admin/initializer.js +65 -0
- data/app/javascript/alchemy_admin/locales/en.js +31 -0
- data/app/javascript/alchemy_admin/picture_editors.js +2 -2
- data/app/javascript/alchemy_admin/picture_selector.js +38 -0
- data/app/javascript/alchemy_admin/please_wait_overlay.js +8 -0
- data/app/javascript/alchemy_admin/sortable_elements.js +78 -0
- data/app/javascript/alchemy_admin/spinner.js +36 -0
- data/app/javascript/alchemy_admin/tags_autocomplete.js +46 -0
- data/app/javascript/alchemy_admin/utils/ajax.js +6 -5
- data/app/javascript/alchemy_admin/utils/dom_helpers.js +20 -0
- data/app/javascript/alchemy_admin/utils/format.js +11 -0
- data/app/javascript/alchemy_admin/utils/string_conversions.js +10 -0
- data/app/javascript/alchemy_admin.js +70 -13
- data/app/javascript/menubar.js +10 -0
- data/app/models/alchemy/attachment.rb +9 -11
- data/app/models/alchemy/element.rb +11 -0
- data/app/models/alchemy/ingredients/richtext.rb +1 -10
- data/app/models/alchemy/node.rb +4 -0
- data/app/models/alchemy/page/page_natures.rb +10 -2
- data/app/models/alchemy/page.rb +9 -49
- data/app/models/alchemy/picture/url.rb +1 -9
- data/app/serializers/alchemy/page_tree_serializer.rb +2 -1
- data/app/services/alchemy/copy_page.rb +98 -0
- data/app/views/alchemy/_menubar.html.erb +17 -13
- data/app/views/alchemy/admin/attachments/_archive_overlay.html.erb +14 -10
- data/app/views/alchemy/admin/attachments/_attachment.html.erb +44 -36
- data/app/views/alchemy/admin/attachments/_replace_button.html.erb +15 -21
- data/app/views/alchemy/admin/attachments/archive_overlay.js.erb +0 -1
- data/app/views/alchemy/admin/attachments/assign.js.erb +1 -1
- data/app/views/alchemy/admin/attachments/index.html.erb +6 -4
- data/app/views/alchemy/admin/attachments/show.html.erb +8 -8
- data/app/views/alchemy/admin/clipboard/clear.js.erb +1 -1
- data/app/views/alchemy/admin/clipboard/index.html.erb +3 -7
- data/app/views/alchemy/admin/clipboard/insert.js.erb +1 -1
- data/app/views/alchemy/admin/crop.html.erb +1 -1
- data/app/views/alchemy/admin/dashboard/_locked_pages.html.erb +1 -1
- data/app/views/alchemy/admin/dashboard/index.html.erb +13 -11
- data/app/views/alchemy/admin/dashboard/info.html.erb +7 -7
- data/app/views/alchemy/admin/elements/_add_nested_element_form.html.erb +21 -23
- data/app/views/alchemy/admin/elements/_element.html.erb +52 -44
- data/app/views/alchemy/admin/elements/_footer.html.erb +1 -1
- data/app/views/alchemy/admin/elements/_form.html.erb +1 -1
- data/app/views/alchemy/admin/elements/_header.html.erb +11 -12
- data/app/views/alchemy/admin/elements/_toolbar.html.erb +33 -45
- data/app/views/alchemy/admin/elements/create.js.erb +7 -15
- data/app/views/alchemy/admin/elements/destroy.js.erb +0 -2
- data/app/views/alchemy/admin/elements/index.html.erb +27 -24
- data/app/views/alchemy/admin/elements/new.html.erb +9 -11
- data/app/views/alchemy/admin/ingredients/_file_fields.html.erb +2 -2
- data/app/views/alchemy/admin/ingredients/_picture_fields.html.erb +3 -3
- data/app/views/alchemy/admin/ingredients/_video_fields.html.erb +1 -2
- data/app/views/alchemy/admin/languages/_form.html.erb +2 -3
- data/app/views/alchemy/admin/languages/_language.html.erb +15 -8
- data/app/views/alchemy/admin/languages/_table.html.erb +1 -0
- data/app/views/alchemy/admin/layoutpages/_layoutpage.html.erb +28 -16
- data/app/views/alchemy/admin/layoutpages/index.html.erb +2 -2
- data/app/views/alchemy/admin/legacy_page_urls/_legacy_page_url.html.erb +12 -8
- data/app/views/alchemy/admin/legacy_page_urls/_new.html.erb +1 -1
- data/app/views/alchemy/admin/nodes/_form.html.erb +20 -21
- data/app/views/alchemy/admin/nodes/_node.html.erb +39 -34
- data/app/views/alchemy/admin/nodes/index.html.erb +1 -1
- data/app/views/alchemy/admin/pages/_anchor_link.html.erb +4 -4
- data/app/views/alchemy/admin/pages/_create_language_form.html.erb +2 -2
- data/app/views/alchemy/admin/pages/_current_page.html.erb +1 -1
- data/app/views/alchemy/admin/pages/_external_link.html.erb +4 -4
- data/app/views/alchemy/admin/pages/_file_link.html.erb +5 -5
- data/app/views/alchemy/admin/pages/_form.html.erb +10 -21
- data/app/views/alchemy/admin/pages/_internal_link.html.erb +4 -4
- data/app/views/alchemy/admin/pages/_locked_page.html.erb +2 -2
- data/app/views/alchemy/admin/pages/_new_page_form.html.erb +4 -17
- data/app/views/alchemy/admin/pages/_page.html.erb +76 -72
- data/app/views/alchemy/admin/pages/_page_infos.html.erb +23 -7
- data/app/views/alchemy/admin/pages/_page_layout_filter.html.erb +2 -1
- data/app/views/alchemy/admin/pages/_page_status.html.erb +11 -21
- data/app/views/alchemy/admin/pages/_publication_fields.html.erb +2 -5
- data/app/views/alchemy/admin/pages/_table.html.erb +1 -1
- data/app/views/alchemy/admin/pages/_table_row.html.erb +43 -39
- data/app/views/alchemy/admin/pages/_toolbar.html.erb +43 -38
- data/app/views/alchemy/admin/pages/configure.html.erb +12 -14
- data/app/views/alchemy/admin/pages/edit.html.erb +80 -103
- data/app/views/alchemy/admin/pages/info.html.erb +20 -11
- data/app/views/alchemy/admin/pages/link.html.erb +22 -16
- data/app/views/alchemy/admin/pages/new.html.erb +9 -11
- data/app/views/alchemy/admin/pages/unlock.js.erb +10 -3
- data/app/views/alchemy/admin/partials/_language_tree_select.html.erb +15 -13
- data/app/views/alchemy/admin/partials/_main_navigation_entry.html.erb +3 -5
- data/app/views/alchemy/admin/partials/_routes.html.erb +10 -2
- data/app/views/alchemy/admin/partials/_site_select.html.erb +6 -5
- data/app/views/alchemy/admin/partials/_toolbar_button.html.erb +28 -23
- data/app/views/alchemy/admin/pictures/_archive.html.erb +5 -5
- data/app/views/alchemy/admin/pictures/_archive_overlay.html.erb +1 -1
- data/app/views/alchemy/admin/pictures/_filter_and_size_bar.html.erb +21 -23
- data/app/views/alchemy/admin/pictures/_infos.html.erb +2 -6
- data/app/views/alchemy/admin/pictures/_picture.html.erb +15 -17
- data/app/views/alchemy/admin/pictures/_picture_to_assign.html.erb +17 -16
- data/app/views/alchemy/admin/pictures/_tag_list.html.erb +1 -1
- data/app/views/alchemy/admin/pictures/archive_overlay.js.erb +1 -1
- data/app/views/alchemy/admin/pictures/assign.js.erb +1 -1
- data/app/views/alchemy/admin/pictures/index.html.erb +34 -30
- data/app/views/alchemy/admin/pictures/show.html.erb +3 -3
- data/app/views/alchemy/admin/resources/_filter.html.erb +1 -1
- data/app/views/alchemy/admin/resources/_form.html.erb +2 -2
- data/app/views/alchemy/admin/resources/_resource.html.erb +16 -9
- data/app/views/alchemy/admin/resources/_table.html.erb +4 -1
- data/app/views/alchemy/admin/resources/index.html.erb +22 -19
- data/app/views/alchemy/admin/sites/index.html.erb +2 -1
- data/app/views/alchemy/admin/styleguide/index.html.erb +54 -28
- data/app/views/alchemy/admin/tags/_tag.html.erb +16 -14
- data/app/views/alchemy/admin/tags/index.html.erb +15 -12
- data/app/views/alchemy/admin/tinymce/_setup.html.erb +29 -0
- data/app/views/alchemy/admin/uploader/_button.html.erb +23 -29
- data/app/views/alchemy/admin/uploader/_setup.html.erb +3 -8
- data/app/views/alchemy/base/500.html.erb +1 -1
- data/app/views/alchemy/base/error_notice.js.erb +0 -1
- data/app/views/alchemy/ingredients/_boolean_editor.html.erb +1 -1
- data/app/views/alchemy/ingredients/_datetime_editor.html.erb +1 -1
- data/app/views/alchemy/ingredients/_file_editor.html.erb +5 -5
- data/app/views/alchemy/ingredients/_link_editor.html.erb +1 -1
- data/app/views/alchemy/ingredients/_node_editor.html.erb +6 -19
- data/app/views/alchemy/ingredients/_page_editor.html.erb +7 -19
- data/app/views/alchemy/ingredients/_picture_editor.html.erb +2 -2
- data/app/views/alchemy/ingredients/_richtext_editor.html.erb +6 -15
- data/app/views/alchemy/ingredients/_select_editor.html.erb +2 -1
- data/app/views/alchemy/ingredients/_text_editor.html.erb +1 -1
- data/app/views/alchemy/ingredients/shared/_anchor.html.erb +1 -1
- data/app/views/alchemy/ingredients/shared/_link_tools.html.erb +10 -20
- data/app/views/alchemy/ingredients/shared/_picture_tools.html.erb +42 -49
- data/app/views/kaminari/alchemy/_first_page.html.erb +4 -2
- data/app/views/kaminari/alchemy/_gap.html.erb +1 -1
- data/app/views/kaminari/alchemy/_last_page.html.erb +4 -2
- data/app/views/kaminari/alchemy/_next_page.html.erb +4 -2
- data/app/views/kaminari/alchemy/_prev_page.html.erb +4 -2
- data/app/views/layouts/alchemy/admin.html.erb +10 -29
- data/config/alchemy/modules.yml +30 -30
- data/config/importmap.rb +10 -1
- data/config/initializers/rails_live_reload.rb +13 -0
- data/config/locales/alchemy.en.yml +23 -9
- data/config/routes.rb +2 -1
- data/lib/alchemy/auth_accessors.rb +6 -1
- data/lib/alchemy/dev_support/live_reload_watcher.rb +5 -0
- data/lib/alchemy/engine.rb +8 -2
- data/lib/alchemy/forms/builder.rb +18 -12
- data/lib/alchemy/resources_helper.rb +3 -3
- data/lib/alchemy/test_support/capybara_helpers.rb +8 -5
- data/lib/alchemy/test_support/rspec_matchers.rb +14 -0
- data/lib/alchemy/test_support/shared_uploader_examples.rb +1 -1
- data/lib/alchemy/tinymce.rb +8 -3
- data/lib/alchemy/version.rb +1 -1
- data/package.json +14 -5
- data/vendor/assets/fonts/remixicon.eot +0 -0
- data/vendor/assets/fonts/remixicon.svg +7816 -0
- data/vendor/assets/fonts/remixicon.ttf +0 -0
- data/vendor/assets/fonts/remixicon.woff +0 -0
- data/vendor/assets/fonts/remixicon.woff2 +0 -0
- data/vendor/assets/stylesheets/remixicon.scss +10480 -0
- metadata +83 -88
- data/app/assets/javascripts/alchemy/alchemy.autocomplete.js.coffee +0 -30
- data/app/assets/javascripts/alchemy/alchemy.base.js.coffee +0 -53
- data/app/assets/javascripts/alchemy/alchemy.buttons.js.coffee +0 -45
- data/app/assets/javascripts/alchemy/alchemy.char_counter.js.coffee +0 -19
- data/app/assets/javascripts/alchemy/alchemy.dirty.js.coffee +0 -59
- data/app/assets/javascripts/alchemy/alchemy.dragndrop.js.coffee +0 -79
- data/app/assets/javascripts/alchemy/alchemy.element_editors.js.coffee +0 -267
- data/app/assets/javascripts/alchemy/alchemy.gui.js.coffee +0 -27
- data/app/assets/javascripts/alchemy/alchemy.spinner.js +0 -32
- data/app/assets/javascripts/alchemy/alchemy.tooltips.coffee +0 -10
- data/app/assets/javascripts/alchemy/alchemy.uploader.js.coffee +0 -131
- data/app/assets/javascripts/alchemy/menubar.js.coffee +0 -8
- data/app/assets/javascripts/alchemy/node_select.js +0 -39
- data/app/assets/javascripts/alchemy/page_select.js +0 -46
- data/app/assets/javascripts/alchemy/templates/node.hbs +0 -16
- data/app/assets/javascripts/alchemy/templates/spinner.hbs +0 -7
- data/app/assets/stylesheets/alchemy/jquery-ui.scss +0 -435
- data/app/javascript/alchemy_admin/datepicker.js +0 -33
- data/app/javascript/alchemy_admin/tinymce.js +0 -146
- data/app/javascript/alchemy_admin/translations.js +0 -32
- data/app/views/alchemy/admin/elements/fold.js.erb +0 -33
- data/app/views/alchemy/admin/elements/order.js.erb +0 -11
- data/app/views/alchemy/admin/elements/publish.js.erb +0 -21
- data/app/views/alchemy/admin/elements/update.js.erb +0 -27
- data/vendor/assets/fonts/fa-regular-400.eot +0 -0
- data/vendor/assets/fonts/fa-regular-400.svg +0 -803
- data/vendor/assets/fonts/fa-regular-400.ttf +0 -0
- data/vendor/assets/fonts/fa-regular-400.woff +0 -0
- data/vendor/assets/fonts/fa-regular-400.woff2 +0 -0
- data/vendor/assets/fonts/fa-solid-900.eot +0 -0
- data/vendor/assets/fonts/fa-solid-900.svg +0 -4938
- data/vendor/assets/fonts/fa-solid-900.ttf +0 -0
- data/vendor/assets/fonts/fa-solid-900.woff +0 -0
- data/vendor/assets/fonts/fa-solid-900.woff2 +0 -0
- data/vendor/assets/javascripts/fileupload/jquery.fileupload-process.js +0 -178
- data/vendor/assets/javascripts/fileupload/jquery.fileupload-validate.js +0 -125
- data/vendor/assets/javascripts/fileupload/jquery.fileupload.js +0 -1502
- data/vendor/assets/javascripts/fileupload/jquery.iframe-transport.js +0 -224
- data/vendor/assets/javascripts/jquery-ui/data.js +0 -45
- data/vendor/assets/javascripts/jquery-ui/ie.js +0 -20
- data/vendor/assets/javascripts/jquery-ui/keycode.js +0 -51
- data/vendor/assets/javascripts/jquery-ui/plugin.js +0 -49
- data/vendor/assets/javascripts/jquery-ui/safe-active-element.js +0 -46
- data/vendor/assets/javascripts/jquery-ui/safe-blur.js +0 -27
- data/vendor/assets/javascripts/jquery-ui/scroll-parent.js +0 -50
- data/vendor/assets/javascripts/jquery-ui/unique-id.js +0 -54
- data/vendor/assets/javascripts/jquery-ui/version.js +0 -20
- data/vendor/assets/javascripts/jquery-ui/widget.js +0 -754
- data/vendor/assets/javascripts/jquery-ui/widgets/draggable.js +0 -1268
- data/vendor/assets/javascripts/jquery-ui/widgets/mouse.js +0 -241
- data/vendor/assets/javascripts/jquery-ui/widgets/sortable.js +0 -1623
- data/vendor/assets/javascripts/jquery-ui/widgets/tabs.js +0 -931
- data/vendor/assets/javascripts/jquery_plugins/jquery.scrollTo.min.js +0 -7
- data/vendor/assets/javascripts/jquery_plugins/jquery.ui.tabspaging.js +0 -296
- data/vendor/assets/stylesheets/fontawesome/_animated.scss +0 -20
- data/vendor/assets/stylesheets/fontawesome/_bordered-pulled.scss +0 -20
- data/vendor/assets/stylesheets/fontawesome/_core.scss +0 -21
- data/vendor/assets/stylesheets/fontawesome/_fixed-width.scss +0 -6
- data/vendor/assets/stylesheets/fontawesome/_icons.scss +0 -1441
- data/vendor/assets/stylesheets/fontawesome/_larger.scss +0 -23
- data/vendor/assets/stylesheets/fontawesome/_list.scss +0 -18
- data/vendor/assets/stylesheets/fontawesome/_mixins.scss +0 -56
- data/vendor/assets/stylesheets/fontawesome/_rotated-flipped.scss +0 -24
- data/vendor/assets/stylesheets/fontawesome/_screen-reader.scss +0 -5
- data/vendor/assets/stylesheets/fontawesome/_stacked.scss +0 -31
- data/vendor/assets/stylesheets/fontawesome/_variables.scss +0 -1458
- data/vendor/assets/stylesheets/fontawesome/fontawesome.scss +0 -16
- data/vendor/assets/stylesheets/fontawesome/regular.scss +0 -23
- data/vendor/assets/stylesheets/fontawesome/solid.scss +0 -24
@@ -1,241 +0,0 @@
|
|
1
|
-
//= require jquery-ui/ie
|
2
|
-
//= require jquery-ui/version
|
3
|
-
//= require jquery-ui/widget
|
4
|
-
|
5
|
-
/*!
|
6
|
-
* jQuery UI Mouse 1.13.0
|
7
|
-
* http://jqueryui.com
|
8
|
-
*
|
9
|
-
* Copyright jQuery Foundation and other contributors
|
10
|
-
* Released under the MIT license.
|
11
|
-
* http://jquery.org/license
|
12
|
-
*/
|
13
|
-
|
14
|
-
//>>label: Mouse
|
15
|
-
//>>group: Widgets
|
16
|
-
//>>description: Abstracts mouse-based interactions to assist in creating certain widgets.
|
17
|
-
//>>docs: http://api.jqueryui.com/mouse/
|
18
|
-
|
19
|
-
( function( factory ) {
|
20
|
-
"use strict";
|
21
|
-
|
22
|
-
if ( typeof define === "function" && define.amd ) {
|
23
|
-
|
24
|
-
// AMD. Register as an anonymous module.
|
25
|
-
define( [
|
26
|
-
"jquery",
|
27
|
-
"../ie",
|
28
|
-
"../version",
|
29
|
-
"../widget"
|
30
|
-
], factory );
|
31
|
-
} else {
|
32
|
-
|
33
|
-
// Browser globals
|
34
|
-
factory( jQuery );
|
35
|
-
}
|
36
|
-
} )( function( $ ) {
|
37
|
-
"use strict";
|
38
|
-
|
39
|
-
var mouseHandled = false;
|
40
|
-
$( document ).on( "mouseup", function() {
|
41
|
-
mouseHandled = false;
|
42
|
-
} );
|
43
|
-
|
44
|
-
return $.widget( "ui.mouse", {
|
45
|
-
version: "1.13.0",
|
46
|
-
options: {
|
47
|
-
cancel: "input, textarea, button, select, option",
|
48
|
-
distance: 1,
|
49
|
-
delay: 0
|
50
|
-
},
|
51
|
-
_mouseInit: function() {
|
52
|
-
var that = this;
|
53
|
-
|
54
|
-
this.element
|
55
|
-
.on( "mousedown." + this.widgetName, function( event ) {
|
56
|
-
return that._mouseDown( event );
|
57
|
-
} )
|
58
|
-
.on( "click." + this.widgetName, function( event ) {
|
59
|
-
if ( true === $.data( event.target, that.widgetName + ".preventClickEvent" ) ) {
|
60
|
-
$.removeData( event.target, that.widgetName + ".preventClickEvent" );
|
61
|
-
event.stopImmediatePropagation();
|
62
|
-
return false;
|
63
|
-
}
|
64
|
-
} );
|
65
|
-
|
66
|
-
this.started = false;
|
67
|
-
},
|
68
|
-
|
69
|
-
// TODO: make sure destroying one instance of mouse doesn't mess with
|
70
|
-
// other instances of mouse
|
71
|
-
_mouseDestroy: function() {
|
72
|
-
this.element.off( "." + this.widgetName );
|
73
|
-
if ( this._mouseMoveDelegate ) {
|
74
|
-
this.document
|
75
|
-
.off( "mousemove." + this.widgetName, this._mouseMoveDelegate )
|
76
|
-
.off( "mouseup." + this.widgetName, this._mouseUpDelegate );
|
77
|
-
}
|
78
|
-
},
|
79
|
-
|
80
|
-
_mouseDown: function( event ) {
|
81
|
-
|
82
|
-
// don't let more than one widget handle mouseStart
|
83
|
-
if ( mouseHandled ) {
|
84
|
-
return;
|
85
|
-
}
|
86
|
-
|
87
|
-
this._mouseMoved = false;
|
88
|
-
|
89
|
-
// We may have missed mouseup (out of window)
|
90
|
-
if ( this._mouseStarted ) {
|
91
|
-
this._mouseUp( event );
|
92
|
-
}
|
93
|
-
|
94
|
-
this._mouseDownEvent = event;
|
95
|
-
|
96
|
-
var that = this,
|
97
|
-
btnIsLeft = ( event.which === 1 ),
|
98
|
-
|
99
|
-
// event.target.nodeName works around a bug in IE 8 with
|
100
|
-
// disabled inputs (#7620)
|
101
|
-
elIsCancel = ( typeof this.options.cancel === "string" && event.target.nodeName ?
|
102
|
-
$( event.target ).closest( this.options.cancel ).length : false );
|
103
|
-
if ( !btnIsLeft || elIsCancel || !this._mouseCapture( event ) ) {
|
104
|
-
return true;
|
105
|
-
}
|
106
|
-
|
107
|
-
this.mouseDelayMet = !this.options.delay;
|
108
|
-
if ( !this.mouseDelayMet ) {
|
109
|
-
this._mouseDelayTimer = setTimeout( function() {
|
110
|
-
that.mouseDelayMet = true;
|
111
|
-
}, this.options.delay );
|
112
|
-
}
|
113
|
-
|
114
|
-
if ( this._mouseDistanceMet( event ) && this._mouseDelayMet( event ) ) {
|
115
|
-
this._mouseStarted = ( this._mouseStart( event ) !== false );
|
116
|
-
if ( !this._mouseStarted ) {
|
117
|
-
event.preventDefault();
|
118
|
-
return true;
|
119
|
-
}
|
120
|
-
}
|
121
|
-
|
122
|
-
// Click event may never have fired (Gecko & Opera)
|
123
|
-
if ( true === $.data( event.target, this.widgetName + ".preventClickEvent" ) ) {
|
124
|
-
$.removeData( event.target, this.widgetName + ".preventClickEvent" );
|
125
|
-
}
|
126
|
-
|
127
|
-
// These delegates are required to keep context
|
128
|
-
this._mouseMoveDelegate = function( event ) {
|
129
|
-
return that._mouseMove( event );
|
130
|
-
};
|
131
|
-
this._mouseUpDelegate = function( event ) {
|
132
|
-
return that._mouseUp( event );
|
133
|
-
};
|
134
|
-
|
135
|
-
this.document
|
136
|
-
.on( "mousemove." + this.widgetName, this._mouseMoveDelegate )
|
137
|
-
.on( "mouseup." + this.widgetName, this._mouseUpDelegate );
|
138
|
-
|
139
|
-
event.preventDefault();
|
140
|
-
|
141
|
-
mouseHandled = true;
|
142
|
-
return true;
|
143
|
-
},
|
144
|
-
|
145
|
-
_mouseMove: function( event ) {
|
146
|
-
|
147
|
-
// Only check for mouseups outside the document if you've moved inside the document
|
148
|
-
// at least once. This prevents the firing of mouseup in the case of IE<9, which will
|
149
|
-
// fire a mousemove event if content is placed under the cursor. See #7778
|
150
|
-
// Support: IE <9
|
151
|
-
if ( this._mouseMoved ) {
|
152
|
-
|
153
|
-
// IE mouseup check - mouseup happened when mouse was out of window
|
154
|
-
if ( $.ui.ie && ( !document.documentMode || document.documentMode < 9 ) &&
|
155
|
-
!event.button ) {
|
156
|
-
return this._mouseUp( event );
|
157
|
-
|
158
|
-
// Iframe mouseup check - mouseup occurred in another document
|
159
|
-
} else if ( !event.which ) {
|
160
|
-
|
161
|
-
// Support: Safari <=8 - 9
|
162
|
-
// Safari sets which to 0 if you press any of the following keys
|
163
|
-
// during a drag (#14461)
|
164
|
-
if ( event.originalEvent.altKey || event.originalEvent.ctrlKey ||
|
165
|
-
event.originalEvent.metaKey || event.originalEvent.shiftKey ) {
|
166
|
-
this.ignoreMissingWhich = true;
|
167
|
-
} else if ( !this.ignoreMissingWhich ) {
|
168
|
-
return this._mouseUp( event );
|
169
|
-
}
|
170
|
-
}
|
171
|
-
}
|
172
|
-
|
173
|
-
if ( event.which || event.button ) {
|
174
|
-
this._mouseMoved = true;
|
175
|
-
}
|
176
|
-
|
177
|
-
if ( this._mouseStarted ) {
|
178
|
-
this._mouseDrag( event );
|
179
|
-
return event.preventDefault();
|
180
|
-
}
|
181
|
-
|
182
|
-
if ( this._mouseDistanceMet( event ) && this._mouseDelayMet( event ) ) {
|
183
|
-
this._mouseStarted =
|
184
|
-
( this._mouseStart( this._mouseDownEvent, event ) !== false );
|
185
|
-
if ( this._mouseStarted ) {
|
186
|
-
this._mouseDrag( event );
|
187
|
-
} else {
|
188
|
-
this._mouseUp( event );
|
189
|
-
}
|
190
|
-
}
|
191
|
-
|
192
|
-
return !this._mouseStarted;
|
193
|
-
},
|
194
|
-
|
195
|
-
_mouseUp: function( event ) {
|
196
|
-
this.document
|
197
|
-
.off( "mousemove." + this.widgetName, this._mouseMoveDelegate )
|
198
|
-
.off( "mouseup." + this.widgetName, this._mouseUpDelegate );
|
199
|
-
|
200
|
-
if ( this._mouseStarted ) {
|
201
|
-
this._mouseStarted = false;
|
202
|
-
|
203
|
-
if ( event.target === this._mouseDownEvent.target ) {
|
204
|
-
$.data( event.target, this.widgetName + ".preventClickEvent", true );
|
205
|
-
}
|
206
|
-
|
207
|
-
this._mouseStop( event );
|
208
|
-
}
|
209
|
-
|
210
|
-
if ( this._mouseDelayTimer ) {
|
211
|
-
clearTimeout( this._mouseDelayTimer );
|
212
|
-
delete this._mouseDelayTimer;
|
213
|
-
}
|
214
|
-
|
215
|
-
this.ignoreMissingWhich = false;
|
216
|
-
mouseHandled = false;
|
217
|
-
event.preventDefault();
|
218
|
-
},
|
219
|
-
|
220
|
-
_mouseDistanceMet: function( event ) {
|
221
|
-
return ( Math.max(
|
222
|
-
Math.abs( this._mouseDownEvent.pageX - event.pageX ),
|
223
|
-
Math.abs( this._mouseDownEvent.pageY - event.pageY )
|
224
|
-
) >= this.options.distance
|
225
|
-
);
|
226
|
-
},
|
227
|
-
|
228
|
-
_mouseDelayMet: function( /* event */ ) {
|
229
|
-
return this.mouseDelayMet;
|
230
|
-
},
|
231
|
-
|
232
|
-
// These are placeholder methods, to be overriden by extending plugin
|
233
|
-
_mouseStart: function( /* event */ ) {},
|
234
|
-
_mouseDrag: function( /* event */ ) {},
|
235
|
-
_mouseStop: function( /* event */ ) {},
|
236
|
-
_mouseCapture: function( /* event */ ) {
|
237
|
-
return true;
|
238
|
-
}
|
239
|
-
} );
|
240
|
-
|
241
|
-
} );
|