activeadmin 2.6.1 → 3.2.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (326) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +438 -9
  3. data/CONTRIBUTING.md +12 -36
  4. data/README.md +8 -8
  5. data/app/assets/javascripts/active_admin/base.js +27 -25
  6. data/app/assets/stylesheets/active_admin/_base.scss +53 -37
  7. data/app/assets/stylesheets/active_admin/_forms.scss +2 -13
  8. data/app/assets/stylesheets/active_admin/_header.scss +37 -3
  9. data/app/assets/stylesheets/active_admin/_normalize.scss +25 -123
  10. data/app/assets/stylesheets/active_admin/components/_comments.scss +2 -2
  11. data/app/assets/stylesheets/active_admin/components/_date_picker.scss +1 -2
  12. data/app/assets/stylesheets/active_admin/components/_dropdown_menu.scss +7 -5
  13. data/app/assets/stylesheets/active_admin/components/_pagination.scss +5 -2
  14. data/app/assets/stylesheets/active_admin/components/_table_tools.scss +9 -6
  15. data/app/assets/stylesheets/active_admin/components/_tabs.scss +10 -7
  16. data/app/assets/stylesheets/active_admin/mixins/_buttons.scss +2 -2
  17. data/app/assets/stylesheets/active_admin/mixins/_variables.scss +12 -0
  18. data/app/assets/stylesheets/active_admin/pages/_logged_out.scss +1 -1
  19. data/app/assets/stylesheets/active_admin/structure/_footer.scss +6 -1
  20. data/app/assets/stylesheets/active_admin/structure/_title_bar.scss +6 -4
  21. data/app/javascript/active_admin/initializers/has-many.js +4 -1
  22. data/app/javascript/active_admin/initializers/per-page.js +1 -1
  23. data/app/javascript/active_admin/lib/checkbox-toggler.js +3 -3
  24. data/app/javascript/active_admin/lib/dropdown-menu.js +1 -1
  25. data/app/javascript/active_admin/lib/modal-dialog.js +7 -7
  26. data/app/javascript/active_admin/lib/per-page.js +1 -1
  27. data/app/javascript/active_admin/lib/table-checkbox-toggler.js +1 -1
  28. data/app/views/active_admin/devise/mailer/reset_password_instructions.html.erb +1 -1
  29. data/app/views/active_admin/devise/mailer/unlock_instructions.html.erb +2 -2
  30. data/app/views/active_admin/devise/shared/_links.erb +1 -1
  31. data/app/views/active_admin/page/index.html.arb +1 -0
  32. data/app/views/active_admin/resource/edit.html.arb +1 -0
  33. data/app/views/active_admin/resource/index.html.arb +1 -0
  34. data/app/views/active_admin/resource/new.html.arb +1 -0
  35. data/app/views/active_admin/resource/show.html.arb +1 -0
  36. data/app/views/layouts/active_admin.html.arb +1 -0
  37. data/app/views/layouts/active_admin_logged_out.html.erb +18 -7
  38. data/config/locales/ar.yml +6 -13
  39. data/config/locales/az.yml +0 -7
  40. data/config/locales/bg.yml +0 -7
  41. data/config/locales/bs.yml +0 -7
  42. data/config/locales/ca.yml +0 -7
  43. data/config/locales/cs.yml +0 -7
  44. data/config/locales/da.yml +0 -7
  45. data/config/locales/de-CH.yml +0 -7
  46. data/config/locales/de.yml +0 -8
  47. data/config/locales/el.yml +0 -7
  48. data/config/locales/en-CA.yml +0 -7
  49. data/config/locales/en-GB.yml +0 -7
  50. data/config/locales/en.yml +0 -8
  51. data/config/locales/eo.yml +0 -8
  52. data/config/locales/es-MX.yml +2 -8
  53. data/config/locales/es.yml +2 -10
  54. data/config/locales/fa.yml +0 -7
  55. data/config/locales/fi.yml +0 -7
  56. data/config/locales/fr.yml +3 -11
  57. data/config/locales/he.yml +0 -9
  58. data/config/locales/hr.yml +0 -7
  59. data/config/locales/hu.yml +0 -8
  60. data/config/locales/id.yml +0 -7
  61. data/config/locales/it.yml +18 -8
  62. data/config/locales/ja.yml +2 -10
  63. data/config/locales/ko.yml +1 -8
  64. data/config/locales/lt.yml +0 -8
  65. data/config/locales/lv.yml +0 -7
  66. data/config/locales/mk.yml +0 -8
  67. data/config/locales/nb.yml +0 -8
  68. data/config/locales/nl.yml +1 -9
  69. data/config/locales/pl.yml +0 -8
  70. data/config/locales/pt-BR.yml +0 -8
  71. data/config/locales/pt-PT.yml +0 -7
  72. data/config/locales/ro.yml +3 -9
  73. data/config/locales/ru.yml +0 -6
  74. data/config/locales/sk.yml +0 -8
  75. data/config/locales/sv-SE.yml +58 -39
  76. data/config/locales/tr.yml +0 -11
  77. data/config/locales/uk.yml +0 -6
  78. data/config/locales/vi.yml +38 -19
  79. data/config/locales/zh-CN.yml +34 -23
  80. data/config/locales/zh-TW.yml +0 -7
  81. data/lib/active_admin/abstract_view_factory.rb +1 -0
  82. data/lib/active_admin/application.rb +19 -19
  83. data/lib/active_admin/application_settings.rb +4 -3
  84. data/lib/active_admin/asset_registration.rb +4 -3
  85. data/lib/active_admin/authorization_adapter.rb +6 -3
  86. data/lib/active_admin/base_controller/authorization.rb +15 -13
  87. data/lib/active_admin/base_controller/menu.rb +1 -0
  88. data/lib/active_admin/base_controller.rb +6 -5
  89. data/lib/active_admin/batch_actions/controller.rb +4 -3
  90. data/lib/active_admin/batch_actions/resource_extension.rb +10 -8
  91. data/lib/active_admin/batch_actions/views/batch_action_form.rb +4 -3
  92. data/lib/active_admin/batch_actions/views/batch_action_selector.rb +7 -6
  93. data/lib/active_admin/batch_actions/views/selection_cells.rb +4 -3
  94. data/lib/active_admin/batch_actions.rb +1 -0
  95. data/lib/active_admin/callbacks.rb +1 -0
  96. data/lib/active_admin/cancan_adapter.rb +2 -1
  97. data/lib/active_admin/collection_decorator.rb +32 -0
  98. data/lib/active_admin/component.rb +1 -0
  99. data/lib/active_admin/controller_action.rb +1 -0
  100. data/lib/active_admin/csv_builder.rb +25 -17
  101. data/lib/active_admin/dependency.rb +12 -15
  102. data/lib/active_admin/devise.rb +16 -5
  103. data/lib/active_admin/dsl.rb +2 -1
  104. data/lib/active_admin/dynamic_setting.rb +1 -0
  105. data/lib/active_admin/dynamic_settings_node.rb +3 -2
  106. data/lib/active_admin/engine.rb +17 -9
  107. data/lib/active_admin/error.rb +1 -2
  108. data/lib/active_admin/filters/active.rb +2 -1
  109. data/lib/active_admin/filters/active_filter.rb +6 -6
  110. data/lib/active_admin/filters/active_sidebar.rb +4 -30
  111. data/lib/active_admin/filters/dsl.rb +1 -0
  112. data/lib/active_admin/filters/forms.rb +9 -8
  113. data/lib/active_admin/filters/formtastic_addons.rb +3 -7
  114. data/lib/active_admin/filters/resource_extension.rb +6 -5
  115. data/lib/active_admin/filters.rb +8 -7
  116. data/lib/active_admin/form_builder.rb +25 -20
  117. data/lib/active_admin/generators/boilerplate.rb +2 -1
  118. data/lib/active_admin/helpers/collection.rb +2 -0
  119. data/lib/active_admin/helpers/i18n.rb +1 -0
  120. data/lib/active_admin/helpers/optional_display.rb +3 -2
  121. data/lib/active_admin/helpers/routes/url_helpers.rb +1 -0
  122. data/lib/active_admin/helpers/scope_chain.rb +1 -0
  123. data/lib/active_admin/inputs/datepicker_input.rb +2 -1
  124. data/lib/active_admin/inputs/filters/base/search_method_select.rb +7 -6
  125. data/lib/active_admin/inputs/filters/base.rb +2 -1
  126. data/lib/active_admin/inputs/filters/boolean_input.rb +2 -1
  127. data/lib/active_admin/inputs/filters/check_boxes_input.rb +2 -1
  128. data/lib/active_admin/inputs/filters/date_picker_input.rb +1 -0
  129. data/lib/active_admin/inputs/filters/date_range_input.rb +3 -2
  130. data/lib/active_admin/inputs/filters/numeric_input.rb +2 -1
  131. data/lib/active_admin/inputs/filters/select_input.rb +5 -2
  132. data/lib/active_admin/inputs/filters/string_input.rb +2 -1
  133. data/lib/active_admin/inputs/filters/text_input.rb +1 -0
  134. data/lib/active_admin/inputs.rb +1 -0
  135. data/lib/active_admin/localizers/resource_localizer.rb +4 -3
  136. data/lib/active_admin/localizers.rb +2 -1
  137. data/lib/active_admin/menu.rb +8 -3
  138. data/lib/active_admin/menu_collection.rb +1 -0
  139. data/lib/active_admin/menu_item.rb +8 -7
  140. data/lib/active_admin/namespace.rb +16 -15
  141. data/lib/active_admin/namespace_settings.rb +9 -5
  142. data/lib/active_admin/order_clause.rb +2 -1
  143. data/lib/active_admin/orm/active_record/comments/comment.rb +12 -3
  144. data/lib/active_admin/orm/active_record/comments/namespace_helper.rb +1 -0
  145. data/lib/active_admin/orm/active_record/comments/resource_helper.rb +1 -0
  146. data/lib/active_admin/orm/active_record/comments/show_page_helper.rb +1 -0
  147. data/lib/active_admin/orm/active_record/comments/views/active_admin_comments.rb +21 -20
  148. data/lib/active_admin/orm/active_record/comments/views.rb +3 -2
  149. data/lib/active_admin/orm/active_record/comments.rb +28 -27
  150. data/lib/active_admin/orm/active_record.rb +2 -1
  151. data/lib/active_admin/orm/mongoid.rb +1 -0
  152. data/lib/active_admin/page.rb +2 -1
  153. data/lib/active_admin/page_controller.rb +1 -0
  154. data/lib/active_admin/page_dsl.rb +1 -0
  155. data/lib/active_admin/page_presenter.rb +1 -0
  156. data/lib/active_admin/pundit_adapter.rb +58 -16
  157. data/lib/active_admin/resource/action_items.rb +6 -5
  158. data/lib/active_admin/resource/attributes.rb +9 -1
  159. data/lib/active_admin/resource/belongs_to.rb +3 -2
  160. data/lib/active_admin/resource/controllers.rb +2 -1
  161. data/lib/active_admin/resource/includes.rb +1 -0
  162. data/lib/active_admin/resource/menu.rb +5 -4
  163. data/lib/active_admin/resource/model.rb +1 -0
  164. data/lib/active_admin/resource/naming.rb +5 -4
  165. data/lib/active_admin/resource/ordering.rb +1 -0
  166. data/lib/active_admin/resource/page_presenters.rb +1 -0
  167. data/lib/active_admin/resource/pagination.rb +1 -0
  168. data/lib/active_admin/resource/routes.rb +6 -7
  169. data/lib/active_admin/resource/scope_to.rb +8 -7
  170. data/lib/active_admin/resource/scopes.rb +1 -0
  171. data/lib/active_admin/resource/sidebars.rb +2 -1
  172. data/lib/active_admin/resource.rb +20 -19
  173. data/lib/active_admin/resource_collection.rb +1 -0
  174. data/lib/active_admin/resource_controller/action_builder.rb +1 -0
  175. data/lib/active_admin/resource_controller/data_access.rb +31 -5
  176. data/lib/active_admin/resource_controller/decorators.rb +7 -28
  177. data/lib/active_admin/resource_controller/polymorphic_routes.rb +1 -0
  178. data/lib/active_admin/resource_controller/resource_class_methods.rb +1 -0
  179. data/lib/active_admin/resource_controller/scoping.rb +1 -0
  180. data/lib/active_admin/resource_controller/sidebars.rb +1 -0
  181. data/lib/active_admin/resource_controller/streaming.rb +9 -7
  182. data/lib/active_admin/resource_controller.rb +13 -11
  183. data/lib/active_admin/resource_dsl.rb +11 -25
  184. data/lib/active_admin/router.rb +1 -0
  185. data/lib/active_admin/scope.rb +7 -6
  186. data/lib/active_admin/settings_node.rb +1 -0
  187. data/lib/active_admin/sidebar_section.rb +1 -0
  188. data/lib/active_admin/version.rb +2 -1
  189. data/lib/active_admin/view_factory.rb +18 -17
  190. data/lib/active_admin/view_helpers/active_admin_application_helper.rb +1 -0
  191. data/lib/active_admin/view_helpers/auto_link_helper.rb +2 -1
  192. data/lib/active_admin/view_helpers/breadcrumb_helper.rb +4 -3
  193. data/lib/active_admin/view_helpers/display_helper.rb +23 -8
  194. data/lib/active_admin/view_helpers/download_format_links_helper.rb +2 -1
  195. data/lib/active_admin/view_helpers/fields_for.rb +3 -2
  196. data/lib/active_admin/view_helpers/flash_helper.rb +1 -0
  197. data/lib/active_admin/view_helpers/form_helper.rb +1 -0
  198. data/lib/active_admin/view_helpers/method_or_proc_helper.rb +1 -0
  199. data/lib/active_admin/view_helpers/scope_name_helper.rb +1 -0
  200. data/lib/active_admin/view_helpers/sidebar_helper.rb +1 -0
  201. data/lib/active_admin/view_helpers/title_helper.rb +1 -0
  202. data/lib/active_admin/view_helpers/view_factory_helper.rb +1 -0
  203. data/lib/active_admin/view_helpers.rb +2 -1
  204. data/lib/active_admin/views/action_items.rb +1 -0
  205. data/lib/active_admin/views/components/active_admin_form.rb +8 -11
  206. data/lib/active_admin/views/components/active_filters_sidebar_content.rb +59 -0
  207. data/lib/active_admin/views/components/attributes_table.rb +6 -5
  208. data/lib/active_admin/views/components/blank_slate.rb +2 -1
  209. data/lib/active_admin/views/components/columns.rb +1 -0
  210. data/lib/active_admin/views/components/dropdown_menu.rb +7 -9
  211. data/lib/active_admin/views/components/index_list.rb +4 -3
  212. data/lib/active_admin/views/components/menu.rb +2 -1
  213. data/lib/active_admin/views/components/menu_item.rb +5 -4
  214. data/lib/active_admin/views/components/paginated_collection.rb +19 -18
  215. data/lib/active_admin/views/components/panel.rb +2 -1
  216. data/lib/active_admin/views/components/scopes.rb +8 -5
  217. data/lib/active_admin/views/components/sidebar.rb +1 -0
  218. data/lib/active_admin/views/components/sidebar_section.rb +1 -0
  219. data/lib/active_admin/views/components/site_title.rb +2 -1
  220. data/lib/active_admin/views/components/status_tag.rb +12 -11
  221. data/lib/active_admin/views/components/table_for.rb +18 -17
  222. data/lib/active_admin/views/components/tabs.rb +4 -3
  223. data/lib/active_admin/views/components/unsupported_browser.rb +1 -0
  224. data/lib/active_admin/views/footer.rb +3 -1
  225. data/lib/active_admin/views/header.rb +3 -2
  226. data/lib/active_admin/views/index_as_block.rb +1 -0
  227. data/lib/active_admin/views/index_as_blog.rb +2 -1
  228. data/lib/active_admin/views/index_as_grid.rb +2 -1
  229. data/lib/active_admin/views/index_as_table.rb +16 -19
  230. data/lib/active_admin/views/pages/base.rb +17 -11
  231. data/lib/active_admin/views/pages/form.rb +1 -0
  232. data/lib/active_admin/views/pages/index.rb +15 -13
  233. data/lib/active_admin/views/pages/layout.rb +1 -0
  234. data/lib/active_admin/views/pages/page.rb +1 -0
  235. data/lib/active_admin/views/pages/show.rb +2 -7
  236. data/lib/active_admin/views/tabbed_navigation.rb +3 -2
  237. data/lib/active_admin/views/title_bar.rb +2 -1
  238. data/lib/active_admin/views.rb +2 -1
  239. data/lib/active_admin.rb +63 -61
  240. data/lib/activeadmin.rb +2 -1
  241. data/lib/generators/active_admin/assets/assets_generator.rb +3 -2
  242. data/lib/generators/active_admin/assets/templates/active_admin.scss +2 -2
  243. data/lib/generators/active_admin/devise/devise_generator.rb +6 -5
  244. data/lib/generators/active_admin/install/install_generator.rb +15 -8
  245. data/lib/generators/active_admin/install/templates/active_admin.rb.erb +27 -3
  246. data/lib/generators/active_admin/install/templates/dashboard.rb +1 -0
  247. data/lib/generators/active_admin/page/page_generator.rb +2 -1
  248. data/lib/generators/active_admin/page/templates/page.rb +1 -0
  249. data/lib/generators/active_admin/resource/resource_generator.rb +4 -3
  250. data/lib/generators/active_admin/webpacker/plugins/jquery.js +7 -0
  251. data/lib/generators/active_admin/webpacker/templates/active_admin.js +5 -0
  252. data/lib/generators/active_admin/webpacker/templates/active_admin.scss +17 -0
  253. data/lib/generators/active_admin/webpacker/templates/print.scss +2 -0
  254. data/lib/generators/active_admin/webpacker/webpacker_generator.rb +27 -0
  255. data/vendor/assets/javascripts/jquery-ui/data.js +12 -8
  256. data/vendor/assets/javascripts/jquery-ui/disable-selection.js +10 -7
  257. data/vendor/assets/javascripts/jquery-ui/focusable.js +12 -9
  258. data/vendor/assets/javascripts/jquery-ui/form-reset-mixin.js +60 -57
  259. data/vendor/assets/javascripts/jquery-ui/form.js +15 -12
  260. data/vendor/assets/javascripts/jquery-ui/ie.js +5 -2
  261. data/vendor/assets/javascripts/jquery-ui/keycode.js +11 -7
  262. data/vendor/assets/javascripts/jquery-ui/labels.js +46 -40
  263. data/vendor/assets/javascripts/jquery-ui/plugin.js +5 -2
  264. data/vendor/assets/javascripts/jquery-ui/position.js +30 -17
  265. data/vendor/assets/javascripts/jquery-ui/safe-active-element.js +6 -2
  266. data/vendor/assets/javascripts/jquery-ui/safe-blur.js +6 -2
  267. data/vendor/assets/javascripts/jquery-ui/scroll-parent.js +10 -7
  268. data/vendor/assets/javascripts/jquery-ui/tabbable.js +11 -8
  269. data/vendor/assets/javascripts/jquery-ui/unique-id.js +10 -7
  270. data/vendor/assets/javascripts/jquery-ui/version.js +6 -3
  271. data/vendor/assets/javascripts/jquery-ui/widget.js +53 -30
  272. data/vendor/assets/javascripts/jquery-ui/widgets/button.js +87 -24
  273. data/vendor/assets/javascripts/jquery-ui/widgets/checkboxradio.js +276 -273
  274. data/vendor/assets/javascripts/jquery-ui/widgets/controlgroup.js +15 -11
  275. data/vendor/assets/javascripts/jquery-ui/widgets/datepicker.js +182 -62
  276. data/vendor/assets/javascripts/jquery-ui/widgets/dialog.js +53 -36
  277. data/vendor/assets/javascripts/jquery-ui/widgets/draggable.js +28 -19
  278. data/vendor/assets/javascripts/jquery-ui/widgets/mouse.js +22 -11
  279. data/vendor/assets/javascripts/jquery-ui/widgets/resizable.js +47 -26
  280. data/vendor/assets/javascripts/jquery-ui/widgets/sortable.js +186 -125
  281. data/vendor/assets/javascripts/jquery-ui/widgets/tabs.js +20 -20
  282. metadata +48 -114
  283. data/docs/.gitignore +0 -1
  284. data/docs/0-installation.md +0 -118
  285. data/docs/1-general-configuration.md +0 -224
  286. data/docs/10-custom-pages.md +0 -150
  287. data/docs/11-decorators.md +0 -59
  288. data/docs/12-arbre-components.md +0 -214
  289. data/docs/13-authorization-adapter.md +0 -285
  290. data/docs/14-gotchas.md +0 -138
  291. data/docs/2-resource-customization.md +0 -466
  292. data/docs/3-index-pages/custom-index.md +0 -35
  293. data/docs/3-index-pages/index-as-block.md +0 -19
  294. data/docs/3-index-pages/index-as-blog.md +0 -69
  295. data/docs/3-index-pages/index-as-grid.md +0 -27
  296. data/docs/3-index-pages/index-as-table.md +0 -234
  297. data/docs/3-index-pages.md +0 -328
  298. data/docs/4-csv-format.md +0 -74
  299. data/docs/5-forms.md +0 -232
  300. data/docs/6-show-pages.md +0 -81
  301. data/docs/7-sidebars.md +0 -75
  302. data/docs/8-custom-actions.md +0 -177
  303. data/docs/9-batch-actions.md +0 -237
  304. data/docs/CNAME +0 -1
  305. data/docs/Gemfile +0 -3
  306. data/docs/Gemfile.lock +0 -248
  307. data/docs/README.md +0 -24
  308. data/docs/_config.yml +0 -4
  309. data/docs/_includes/footer.html +0 -8
  310. data/docs/_includes/google-analytics.html +0 -16
  311. data/docs/_includes/head.html +0 -7
  312. data/docs/_includes/toc.html +0 -98
  313. data/docs/_includes/top-menu.html +0 -17
  314. data/docs/_layouts/default.html +0 -21
  315. data/docs/documentation.md +0 -60
  316. data/docs/images/activeadmin.png +0 -0
  317. data/docs/images/code-header.png +0 -0
  318. data/docs/images/divider.png +0 -0
  319. data/docs/images/features.png +0 -0
  320. data/docs/images/tidelift.svg +0 -14
  321. data/docs/index.html +0 -226
  322. data/docs/stylesheets/main.css +0 -1205
  323. data/lib/active_admin/deprecation.rb +0 -10
  324. data/lib/ransack_ext.rb +0 -20
  325. data/vendor/assets/javascripts/jquery-ui/escape-selector.js +0 -23
  326. /data/app/assets/stylesheets/active_admin/{print.scss → _print.scss} +0 -0
@@ -0,0 +1,27 @@
1
+ # frozen_string_literal: true
2
+ module ActiveAdmin
3
+ module Generators
4
+ class WebpackerGenerator < Rails::Generators::Base
5
+
6
+ source_root File.expand_path("templates", __dir__)
7
+
8
+ def install_assets
9
+ template "active_admin.js", "app/javascript/packs/active_admin.js"
10
+ template "active_admin.scss", "app/javascript/stylesheets/active_admin.scss"
11
+ template "print.scss", "app/javascript/packs/active_admin/print.scss"
12
+
13
+ copy_file "#{__dir__}/plugins/jquery.js", Rails.root.join("config/webpack/plugins/jquery.js").to_s
14
+
15
+ insert_into_file Rails.root.join("config/webpack/environment.js").to_s,
16
+ "const jquery = require('./plugins/jquery')\n",
17
+ after: /require\(('|")@rails\/webpacker\1\);?\n/
18
+
19
+ insert_into_file Rails.root.join("config/webpack/environment.js").to_s,
20
+ "environment.plugins.prepend('jquery', jquery)\n",
21
+ before: "module.exports"
22
+
23
+ run "yarn add @activeadmin/activeadmin"
24
+ end
25
+ end
26
+ end
27
+ end
@@ -1,20 +1,22 @@
1
1
  //= require jquery-ui/version
2
2
 
3
3
  /*!
4
- * jQuery UI :data 1.12.1
5
- * http://jqueryui.com
4
+ * jQuery UI :data 1.13.3
5
+ * https://jqueryui.com
6
6
  *
7
- * Copyright jQuery Foundation and other contributors
7
+ * Copyright OpenJS Foundation and other contributors
8
8
  * Released under the MIT license.
9
- * http://jquery.org/license
9
+ * https://jquery.org/license
10
10
  */
11
11
 
12
12
  //>>label: :data Selector
13
13
  //>>group: Core
14
14
  //>>description: Selects elements which have data stored under the specified key.
15
- //>>docs: http://api.jqueryui.com/data-selector/
15
+ //>>docs: https://api.jqueryui.com/data-selector/
16
16
 
17
17
  ( function( factory ) {
18
+ "use strict";
19
+
18
20
  if ( typeof define === "function" && define.amd ) {
19
21
 
20
22
  // AMD. Register as an anonymous module.
@@ -24,8 +26,10 @@
24
26
  // Browser globals
25
27
  factory( jQuery );
26
28
  }
27
- } ( function( $ ) {
28
- return $.extend( $.expr[ ":" ], {
29
+ } )( function( $ ) {
30
+ "use strict";
31
+
32
+ return $.extend( $.expr.pseudos, {
29
33
  data: $.expr.createPseudo ?
30
34
  $.expr.createPseudo( function( dataName ) {
31
35
  return function( elem ) {
@@ -38,4 +42,4 @@ return $.extend( $.expr[ ":" ], {
38
42
  return !!$.data( elem, match[ 3 ] );
39
43
  }
40
44
  } );
41
- } ) );
45
+ } );
@@ -1,21 +1,23 @@
1
1
  //= require jquery-ui/version
2
2
 
3
3
  /*!
4
- * jQuery UI Disable Selection 1.12.1
5
- * http://jqueryui.com
4
+ * jQuery UI Disable Selection 1.13.3
5
+ * https://jqueryui.com
6
6
  *
7
- * Copyright jQuery Foundation and other contributors
7
+ * Copyright OpenJS Foundation and other contributors
8
8
  * Released under the MIT license.
9
- * http://jquery.org/license
9
+ * https://jquery.org/license
10
10
  */
11
11
 
12
12
  //>>label: disableSelection
13
13
  //>>group: Core
14
14
  //>>description: Disable selection of text content within the set of matched elements.
15
- //>>docs: http://api.jqueryui.com/disableSelection/
15
+ //>>docs: https://api.jqueryui.com/disableSelection/
16
16
 
17
17
  // This file is deprecated
18
18
  ( function( factory ) {
19
+ "use strict";
20
+
19
21
  if ( typeof define === "function" && define.amd ) {
20
22
 
21
23
  // AMD. Register as an anonymous module.
@@ -25,7 +27,8 @@
25
27
  // Browser globals
26
28
  factory( jQuery );
27
29
  }
28
- } ( function( $ ) {
30
+ } )( function( $ ) {
31
+ "use strict";
29
32
 
30
33
  return $.fn.extend( {
31
34
  disableSelection: ( function() {
@@ -45,4 +48,4 @@ return $.fn.extend( {
45
48
  }
46
49
  } );
47
50
 
48
- } ) );
51
+ } );
@@ -1,20 +1,22 @@
1
1
  //= require jquery-ui/version
2
2
 
3
3
  /*!
4
- * jQuery UI Focusable 1.12.1
5
- * http://jqueryui.com
4
+ * jQuery UI Focusable 1.13.3
5
+ * https://jqueryui.com
6
6
  *
7
- * Copyright jQuery Foundation and other contributors
7
+ * Copyright OpenJS Foundation and other contributors
8
8
  * Released under the MIT license.
9
- * http://jquery.org/license
9
+ * https://jquery.org/license
10
10
  */
11
11
 
12
12
  //>>label: :focusable Selector
13
13
  //>>group: Core
14
14
  //>>description: Selects elements which can be focused.
15
- //>>docs: http://api.jqueryui.com/focusable-selector/
15
+ //>>docs: https://api.jqueryui.com/focusable-selector/
16
16
 
17
17
  ( function( factory ) {
18
+ "use strict";
19
+
18
20
  if ( typeof define === "function" && define.amd ) {
19
21
 
20
22
  // AMD. Register as an anonymous module.
@@ -24,7 +26,8 @@
24
26
  // Browser globals
25
27
  factory( jQuery );
26
28
  }
27
- } ( function( $ ) {
29
+ } )( function( $ ) {
30
+ "use strict";
28
31
 
29
32
  // Selectors
30
33
  $.ui.focusable = function( element, hasTabindex ) {
@@ -72,10 +75,10 @@ function visible( element ) {
72
75
  element = element.parent();
73
76
  visibility = element.css( "visibility" );
74
77
  }
75
- return visibility !== "hidden";
78
+ return visibility === "visible";
76
79
  }
77
80
 
78
- $.extend( $.expr[ ":" ], {
81
+ $.extend( $.expr.pseudos, {
79
82
  focusable: function( element ) {
80
83
  return $.ui.focusable( element, $.attr( element, "tabindex" ) != null );
81
84
  }
@@ -83,4 +86,4 @@ $.extend( $.expr[ ":" ], {
83
86
 
84
87
  return $.ui.focusable;
85
88
 
86
- } ) );
89
+ } );
@@ -2,79 +2,82 @@
2
2
  //= require jquery-ui/version
3
3
 
4
4
  /*!
5
- * jQuery UI Form Reset Mixin 1.12.1
6
- * http://jqueryui.com
5
+ * jQuery UI Form Reset Mixin 1.13.3
6
+ * https://jqueryui.com
7
7
  *
8
- * Copyright jQuery Foundation and other contributors
8
+ * Copyright OpenJS Foundation and other contributors
9
9
  * Released under the MIT license.
10
- * http://jquery.org/license
10
+ * https://jquery.org/license
11
11
  */
12
12
 
13
13
  //>>label: Form Reset Mixin
14
14
  //>>group: Core
15
15
  //>>description: Refresh input widgets when their form is reset
16
- //>>docs: http://api.jqueryui.com/form-reset-mixin/
16
+ //>>docs: https://api.jqueryui.com/form-reset-mixin/
17
17
 
18
18
  ( function( factory ) {
19
- if ( typeof define === "function" && define.amd ) {
19
+ "use strict";
20
20
 
21
- // AMD. Register as an anonymous module.
22
- define( [
23
- "jquery",
24
- "./form",
25
- "./version"
26
- ], factory );
27
- } else {
21
+ if ( typeof define === "function" && define.amd ) {
28
22
 
29
- // Browser globals
30
- factory( jQuery );
31
- }
32
- }( function( $ ) {
23
+ // AMD. Register as an anonymous module.
24
+ define( [
25
+ "jquery",
26
+ "./form",
27
+ "./version"
28
+ ], factory );
29
+ } else {
33
30
 
34
- return $.ui.formResetMixin = {
35
- _formResetHandler: function() {
36
- var form = $( this );
31
+ // Browser globals
32
+ factory( jQuery );
33
+ }
34
+ } )( function( $ ) {
35
+ "use strict";
37
36
 
38
- // Wait for the form reset to actually happen before refreshing
39
- setTimeout( function() {
40
- var instances = form.data( "ui-form-reset-instances" );
41
- $.each( instances, function() {
42
- this.refresh();
43
- } );
44
- } );
45
- },
37
+ return $.ui.formResetMixin = {
38
+ _formResetHandler: function() {
39
+ var form = $( this );
46
40
 
47
- _bindFormResetHandler: function() {
48
- this.form = this.element.form();
49
- if ( !this.form.length ) {
50
- return;
51
- }
41
+ // Wait for the form reset to actually happen before refreshing
42
+ setTimeout( function() {
43
+ var instances = form.data( "ui-form-reset-instances" );
44
+ $.each( instances, function() {
45
+ this.refresh();
46
+ } );
47
+ } );
48
+ },
52
49
 
53
- var instances = this.form.data( "ui-form-reset-instances" ) || [];
54
- if ( !instances.length ) {
50
+ _bindFormResetHandler: function() {
51
+ this.form = this.element._form();
52
+ if ( !this.form.length ) {
53
+ return;
54
+ }
55
55
 
56
- // We don't use _on() here because we use a single event handler per form
57
- this.form.on( "reset.ui-form-reset", this._formResetHandler );
58
- }
59
- instances.push( this );
60
- this.form.data( "ui-form-reset-instances", instances );
61
- },
56
+ var instances = this.form.data( "ui-form-reset-instances" ) || [];
57
+ if ( !instances.length ) {
62
58
 
63
- _unbindFormResetHandler: function() {
64
- if ( !this.form.length ) {
65
- return;
66
- }
59
+ // We don't use _on() here because we use a single event handler per form
60
+ this.form.on( "reset.ui-form-reset", this._formResetHandler );
61
+ }
62
+ instances.push( this );
63
+ this.form.data( "ui-form-reset-instances", instances );
64
+ },
67
65
 
68
- var instances = this.form.data( "ui-form-reset-instances" );
69
- instances.splice( $.inArray( this, instances ), 1 );
70
- if ( instances.length ) {
71
- this.form.data( "ui-form-reset-instances", instances );
72
- } else {
73
- this.form
74
- .removeData( "ui-form-reset-instances" )
75
- .off( "reset.ui-form-reset" );
76
- }
77
- }
78
- };
66
+ _unbindFormResetHandler: function() {
67
+ if ( !this.form.length ) {
68
+ return;
69
+ }
79
70
 
80
- } ) );
71
+ var instances = this.form.data( "ui-form-reset-instances" );
72
+ instances.splice( $.inArray( this, instances ), 1 );
73
+ if ( instances.length ) {
74
+ this.form.data( "ui-form-reset-instances", instances );
75
+ } else {
76
+ this.form
77
+ .removeData( "ui-form-reset-instances" )
78
+ .off( "reset.ui-form-reset" );
79
+ }
80
+ }
81
+ };
82
+
83
+ } );
@@ -1,22 +1,25 @@
1
1
  //= require jquery-ui/version
2
2
 
3
3
  ( function( factory ) {
4
- if ( typeof define === "function" && define.amd ) {
4
+ "use strict";
5
5
 
6
- // AMD. Register as an anonymous module.
7
- define( [ "jquery", "./version" ], factory );
8
- } else {
6
+ if ( typeof define === "function" && define.amd ) {
9
7
 
10
- // Browser globals
11
- factory( jQuery );
12
- }
13
- } ( function( $ ) {
8
+ // AMD. Register as an anonymous module.
9
+ define( [ "jquery", "./version" ], factory );
10
+ } else {
11
+
12
+ // Browser globals
13
+ factory( jQuery );
14
+ }
15
+ } )( function( $ ) {
16
+ "use strict";
14
17
 
15
18
  // Support: IE8 Only
16
19
  // IE8 does not support the form attribute and when it is supplied. It overwrites the form prop
17
20
  // with a string, so we need to find the proper form.
18
- return $.fn.form = function() {
19
- return typeof this[ 0 ].form === "string" ? this.closest( "form" ) : $( this[ 0 ].form );
20
- };
21
+ return $.fn._form = function() {
22
+ return typeof this[ 0 ].form === "string" ? this.closest( "form" ) : $( this[ 0 ].form );
23
+ };
21
24
 
22
- } ) );
25
+ } );
@@ -1,6 +1,8 @@
1
1
  //= require jquery-ui/version
2
2
 
3
3
  ( function( factory ) {
4
+ "use strict";
5
+
4
6
  if ( typeof define === "function" && define.amd ) {
5
7
 
6
8
  // AMD. Register as an anonymous module.
@@ -10,8 +12,9 @@
10
12
  // Browser globals
11
13
  factory( jQuery );
12
14
  }
13
- } ( function( $ ) {
15
+ } )( function( $ ) {
16
+ "use strict";
14
17
 
15
18
  // This file is deprecated
16
19
  return $.ui.ie = !!/msie [\w.]+/.exec( navigator.userAgent.toLowerCase() );
17
- } ) );
20
+ } );
@@ -1,20 +1,22 @@
1
1
  //= require jquery-ui/version
2
2
 
3
3
  /*!
4
- * jQuery UI Keycode 1.12.1
5
- * http://jqueryui.com
4
+ * jQuery UI Keycode 1.13.3
5
+ * https://jqueryui.com
6
6
  *
7
- * Copyright jQuery Foundation and other contributors
7
+ * Copyright OpenJS Foundation and other contributors
8
8
  * Released under the MIT license.
9
- * http://jquery.org/license
9
+ * https://jquery.org/license
10
10
  */
11
11
 
12
12
  //>>label: Keycode
13
13
  //>>group: Core
14
14
  //>>description: Provide keycodes as keynames
15
- //>>docs: http://api.jqueryui.com/jQuery.ui.keyCode/
15
+ //>>docs: https://api.jqueryui.com/jQuery.ui.keyCode/
16
16
 
17
17
  ( function( factory ) {
18
+ "use strict";
19
+
18
20
  if ( typeof define === "function" && define.amd ) {
19
21
 
20
22
  // AMD. Register as an anonymous module.
@@ -24,7 +26,9 @@
24
26
  // Browser globals
25
27
  factory( jQuery );
26
28
  }
27
- } ( function( $ ) {
29
+ } )( function( $ ) {
30
+ "use strict";
31
+
28
32
  return $.ui.keyCode = {
29
33
  BACKSPACE: 8,
30
34
  COMMA: 188,
@@ -44,4 +48,4 @@ return $.ui.keyCode = {
44
48
  UP: 38
45
49
  };
46
50
 
47
- } ) );
51
+ } );
@@ -1,65 +1,71 @@
1
1
  //= require jquery-ui/version
2
- //= require jquery-ui/escape-selector
3
2
 
4
3
  /*!
5
- * jQuery UI Labels 1.12.1
6
- * http://jqueryui.com
4
+ * jQuery UI Labels 1.13.3
5
+ * https://jqueryui.com
7
6
  *
8
- * Copyright jQuery Foundation and other contributors
7
+ * Copyright OpenJS Foundation and other contributors
9
8
  * Released under the MIT license.
10
- * http://jquery.org/license
9
+ * https://jquery.org/license
11
10
  */
12
11
 
13
12
  //>>label: labels
14
13
  //>>group: Core
15
14
  //>>description: Find all the labels associated with a given input
16
- //>>docs: http://api.jqueryui.com/labels/
15
+ //>>docs: https://api.jqueryui.com/labels/
17
16
 
18
17
  ( function( factory ) {
19
- if ( typeof define === "function" && define.amd ) {
18
+ "use strict";
20
19
 
21
- // AMD. Register as an anonymous module.
22
- define( [ "jquery", "./version", "./escape-selector" ], factory );
23
- } else {
20
+ if ( typeof define === "function" && define.amd ) {
24
21
 
25
- // Browser globals
26
- factory( jQuery );
27
- }
28
- } ( function( $ ) {
22
+ // AMD. Register as an anonymous module.
23
+ define( [ "jquery", "./version" ], factory );
24
+ } else {
29
25
 
30
- return $.fn.labels = function() {
31
- var ancestor, selector, id, labels, ancestors;
26
+ // Browser globals
27
+ factory( jQuery );
28
+ }
29
+ } )( function( $ ) {
30
+ "use strict";
32
31
 
33
- // Check control.labels first
34
- if ( this[ 0 ].labels && this[ 0 ].labels.length ) {
35
- return this.pushStack( this[ 0 ].labels );
36
- }
32
+ return $.fn.labels = function() {
33
+ var ancestor, selector, id, labels, ancestors;
37
34
 
38
- // Support: IE <= 11, FF <= 37, Android <= 2.3 only
39
- // Above browsers do not support control.labels. Everything below is to support them
40
- // as well as document fragments. control.labels does not work on document fragments
41
- labels = this.eq( 0 ).parents( "label" );
35
+ if ( !this.length ) {
36
+ return this.pushStack( [] );
37
+ }
42
38
 
43
- // Look for the label based on the id
44
- id = this.attr( "id" );
45
- if ( id ) {
39
+ // Check control.labels first
40
+ if ( this[ 0 ].labels && this[ 0 ].labels.length ) {
41
+ return this.pushStack( this[ 0 ].labels );
42
+ }
46
43
 
47
- // We don't search against the document in case the element
48
- // is disconnected from the DOM
49
- ancestor = this.eq( 0 ).parents().last();
44
+ // Support: IE <= 11, FF <= 37, Android <= 2.3 only
45
+ // Above browsers do not support control.labels. Everything below is to support them
46
+ // as well as document fragments. control.labels does not work on document fragments
47
+ labels = this.eq( 0 ).parents( "label" );
50
48
 
51
- // Get a full set of top level ancestors
52
- ancestors = ancestor.add( ancestor.length ? ancestor.siblings() : this.siblings() );
49
+ // Look for the label based on the id
50
+ id = this.attr( "id" );
51
+ if ( id ) {
53
52
 
54
- // Create a selector for the label based on the id
55
- selector = "label[for='" + $.ui.escapeSelector( id ) + "']";
53
+ // We don't search against the document in case the element
54
+ // is disconnected from the DOM
55
+ ancestor = this.eq( 0 ).parents().last();
56
56
 
57
- labels = labels.add( ancestors.find( selector ).addBack( selector ) );
57
+ // Get a full set of top level ancestors
58
+ ancestors = ancestor.add( ancestor.length ? ancestor.siblings() : this.siblings() );
58
59
 
59
- }
60
+ // Create a selector for the label based on the id
61
+ selector = "label[for='" + $.escapeSelector( id ) + "']";
60
62
 
61
- // Return whatever we have found for labels
62
- return this.pushStack( labels );
63
- };
63
+ labels = labels.add( ancestors.find( selector ).addBack( selector ) );
64
64
 
65
- } ) );
65
+ }
66
+
67
+ // Return whatever we have found for labels
68
+ return this.pushStack( labels );
69
+ };
70
+
71
+ } );
@@ -1,6 +1,8 @@
1
1
  //= require jquery-ui/version
2
2
 
3
3
  ( function( factory ) {
4
+ "use strict";
5
+
4
6
  if ( typeof define === "function" && define.amd ) {
5
7
 
6
8
  // AMD. Register as an anonymous module.
@@ -10,7 +12,8 @@
10
12
  // Browser globals
11
13
  factory( jQuery );
12
14
  }
13
- } ( function( $ ) {
15
+ } )( function( $ ) {
16
+ "use strict";
14
17
 
15
18
  // $.ui.plugin is deprecated. Use $.widget() extensions instead.
16
19
  return $.ui.plugin = {
@@ -43,4 +46,4 @@ return $.ui.plugin = {
43
46
  }
44
47
  };
45
48
 
46
- } ) );
49
+ } );
@@ -1,23 +1,25 @@
1
1
  //= require jquery-ui/version
2
2
 
3
3
  /*!
4
- * jQuery UI Position 1.12.1
5
- * http://jqueryui.com
4
+ * jQuery UI Position 1.13.3
5
+ * https://jqueryui.com
6
6
  *
7
- * Copyright jQuery Foundation and other contributors
7
+ * Copyright OpenJS Foundation and other contributors
8
8
  * Released under the MIT license.
9
- * http://jquery.org/license
9
+ * https://jquery.org/license
10
10
  *
11
- * http://api.jqueryui.com/position/
11
+ * https://api.jqueryui.com/position/
12
12
  */
13
13
 
14
14
  //>>label: Position
15
15
  //>>group: Core
16
16
  //>>description: Positions elements relative to other elements.
17
- //>>docs: http://api.jqueryui.com/position/
18
- //>>demos: http://jqueryui.com/position/
17
+ //>>docs: https://api.jqueryui.com/position/
18
+ //>>demos: https://jqueryui.com/position/
19
19
 
20
20
  ( function( factory ) {
21
+ "use strict";
22
+
21
23
  if ( typeof define === "function" && define.amd ) {
22
24
 
23
25
  // AMD. Register as an anonymous module.
@@ -27,7 +29,9 @@
27
29
  // Browser globals
28
30
  factory( jQuery );
29
31
  }
30
- }( function( $ ) {
32
+ } )( function( $ ) {
33
+ "use strict";
34
+
31
35
  ( function() {
32
36
  var cachedScrollbarWidth,
33
37
  max = Math.max,
@@ -50,6 +54,10 @@ function parseCss( element, property ) {
50
54
  return parseInt( $.css( element, property ), 10 ) || 0;
51
55
  }
52
56
 
57
+ function isWindow( obj ) {
58
+ return obj != null && obj === obj.window;
59
+ }
60
+
53
61
  function getDimensions( elem ) {
54
62
  var raw = elem[ 0 ];
55
63
  if ( raw.nodeType === 9 ) {
@@ -59,7 +67,7 @@ function getDimensions( elem ) {
59
67
  offset: { top: 0, left: 0 }
60
68
  };
61
69
  }
62
- if ( $.isWindow( raw ) ) {
70
+ if ( isWindow( raw ) ) {
63
71
  return {
64
72
  width: elem.width(),
65
73
  height: elem.height(),
@@ -86,9 +94,9 @@ $.position = {
86
94
  return cachedScrollbarWidth;
87
95
  }
88
96
  var w1, w2,
89
- div = $( "<div " +
90
- "style='display:block;position:absolute;width:50px;height:50px;overflow:hidden;'>" +
91
- "<div style='height:100px;width:auto;'></div></div>" ),
97
+ div = $( "<div style=" +
98
+ "'display:block;position:absolute;width:200px;height:200px;overflow:hidden;'>" +
99
+ "<div style='height:300px;width:auto;'></div></div>" ),
92
100
  innerDiv = div.children()[ 0 ];
93
101
 
94
102
  $( "body" ).append( div );
@@ -121,12 +129,12 @@ $.position = {
121
129
  },
122
130
  getWithinInfo: function( element ) {
123
131
  var withinElement = $( element || window ),
124
- isWindow = $.isWindow( withinElement[ 0 ] ),
132
+ isElemWindow = isWindow( withinElement[ 0 ] ),
125
133
  isDocument = !!withinElement[ 0 ] && withinElement[ 0 ].nodeType === 9,
126
- hasOffset = !isWindow && !isDocument;
134
+ hasOffset = !isElemWindow && !isDocument;
127
135
  return {
128
136
  element: withinElement,
129
- isWindow: isWindow,
137
+ isWindow: isElemWindow,
130
138
  isDocument: isDocument,
131
139
  offset: hasOffset ? $( element ).offset() : { left: 0, top: 0 },
132
140
  scrollLeft: withinElement.scrollLeft(),
@@ -146,7 +154,12 @@ $.fn.position = function( options ) {
146
154
  options = $.extend( {}, options );
147
155
 
148
156
  var atOffset, targetWidth, targetHeight, targetOffset, basePosition, dimensions,
149
- target = $( options.of ),
157
+
158
+ // Make sure string options are treated as CSS selectors
159
+ target = typeof options.of === "string" ?
160
+ $( document ).find( options.of ) :
161
+ $( options.of ),
162
+
150
163
  within = $.position.getWithinInfo( options.within ),
151
164
  scrollInfo = $.position.getScrollInfo( within ),
152
165
  collision = ( options.collision || "flip" ).split( " " ),
@@ -497,4 +510,4 @@ $.ui.position = {
497
510
 
498
511
  return $.ui.position;
499
512
 
500
- } ) );
513
+ } );