activeadmin 2.12.0 → 3.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (170) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +230 -0
  3. data/CONTRIBUTING.md +4 -12
  4. data/README.md +4 -4
  5. data/app/assets/javascripts/active_admin/base.js +1 -4
  6. data/app/assets/stylesheets/active_admin/_forms.scss +2 -3
  7. data/app/assets/stylesheets/active_admin/components/_comments.scss +1 -1
  8. data/app/assets/stylesheets/active_admin/components/_dropdown_menu.scss +7 -4
  9. data/app/assets/stylesheets/active_admin/components/_pagination.scss +5 -2
  10. data/app/assets/stylesheets/active_admin/components/_table_tools.scss +9 -6
  11. data/app/assets/stylesheets/active_admin/components/_tabs.scss +10 -7
  12. data/app/assets/stylesheets/active_admin/mixins/_buttons.scss +2 -2
  13. data/app/assets/stylesheets/active_admin/pages/_logged_out.scss +1 -1
  14. data/app/assets/stylesheets/active_admin/structure/_footer.scss +6 -1
  15. data/app/assets/stylesheets/active_admin/structure/_title_bar.scss +6 -3
  16. data/app/views/layouts/active_admin_logged_out.html.erb +5 -4
  17. data/config/locales/ar.yml +0 -7
  18. data/config/locales/az.yml +0 -7
  19. data/config/locales/bg.yml +0 -7
  20. data/config/locales/bs.yml +0 -7
  21. data/config/locales/ca.yml +0 -7
  22. data/config/locales/cs.yml +0 -7
  23. data/config/locales/da.yml +0 -7
  24. data/config/locales/de-CH.yml +0 -7
  25. data/config/locales/de.yml +0 -8
  26. data/config/locales/el.yml +0 -7
  27. data/config/locales/en-CA.yml +0 -7
  28. data/config/locales/en-GB.yml +0 -7
  29. data/config/locales/en.yml +0 -8
  30. data/config/locales/eo.yml +0 -8
  31. data/config/locales/es-MX.yml +0 -7
  32. data/config/locales/es.yml +0 -8
  33. data/config/locales/fa.yml +0 -7
  34. data/config/locales/fi.yml +0 -7
  35. data/config/locales/fr.yml +3 -11
  36. data/config/locales/he.yml +0 -9
  37. data/config/locales/hr.yml +0 -7
  38. data/config/locales/hu.yml +0 -8
  39. data/config/locales/id.yml +0 -7
  40. data/config/locales/it.yml +0 -8
  41. data/config/locales/ja.yml +0 -8
  42. data/config/locales/ko.yml +0 -7
  43. data/config/locales/lt.yml +0 -8
  44. data/config/locales/lv.yml +0 -7
  45. data/config/locales/mk.yml +0 -8
  46. data/config/locales/nb.yml +0 -8
  47. data/config/locales/nl.yml +0 -8
  48. data/config/locales/pl.yml +0 -8
  49. data/config/locales/pt-BR.yml +0 -8
  50. data/config/locales/pt-PT.yml +0 -7
  51. data/config/locales/ro.yml +0 -7
  52. data/config/locales/ru.yml +0 -6
  53. data/config/locales/sk.yml +0 -8
  54. data/config/locales/sv-SE.yml +58 -39
  55. data/config/locales/tr.yml +0 -11
  56. data/config/locales/uk.yml +0 -6
  57. data/config/locales/vi.yml +34 -15
  58. data/config/locales/zh-CN.yml +34 -23
  59. data/config/locales/zh-TW.yml +0 -7
  60. data/lib/active_admin/application.rb +4 -4
  61. data/lib/active_admin/asset_registration.rb +3 -3
  62. data/lib/active_admin/authorization_adapter.rb +2 -0
  63. data/lib/active_admin/base_controller/authorization.rb +2 -2
  64. data/lib/active_admin/csv_builder.rb +23 -2
  65. data/lib/active_admin/dependency.rb +0 -4
  66. data/lib/active_admin/engine.rb +5 -1
  67. data/lib/active_admin/filters/active_filter.rb +1 -1
  68. data/lib/active_admin/filters/forms.rb +2 -2
  69. data/lib/active_admin/filters/formtastic_addons.rb +1 -1
  70. data/lib/active_admin/filters/resource_extension.rb +4 -4
  71. data/lib/active_admin/form_builder.rb +5 -6
  72. data/lib/active_admin/inputs/filters/base/search_method_select.rb +2 -2
  73. data/lib/active_admin/inputs/filters/date_range_input.rb +2 -2
  74. data/lib/active_admin/inputs/filters/numeric_input.rb +1 -1
  75. data/lib/active_admin/inputs/filters/select_input.rb +3 -3
  76. data/lib/active_admin/inputs/filters/string_input.rb +1 -1
  77. data/lib/active_admin/menu.rb +1 -0
  78. data/lib/active_admin/namespace.rb +3 -3
  79. data/lib/active_admin/namespace_settings.rb +1 -1
  80. data/lib/active_admin/orm/active_record/comments/comment.rb +8 -0
  81. data/lib/active_admin/orm/active_record/comments/views/active_admin_comments.rb +1 -1
  82. data/lib/active_admin/orm/active_record/comments.rb +8 -8
  83. data/lib/active_admin/pundit_adapter.rb +20 -14
  84. data/lib/active_admin/resource/action_items.rb +2 -2
  85. data/lib/active_admin/resource/attributes.rb +8 -1
  86. data/lib/active_admin/resource/belongs_to.rb +0 -1
  87. data/lib/active_admin/resource_controller/decorators.rb +1 -1
  88. data/lib/active_admin/resource_controller/streaming.rb +1 -1
  89. data/lib/active_admin/version.rb +1 -1
  90. data/lib/active_admin/view_helpers/auto_link_helper.rb +1 -1
  91. data/lib/active_admin/view_helpers/display_helper.rb +10 -3
  92. data/lib/active_admin/views/components/active_admin_form.rb +14 -6
  93. data/lib/active_admin/views/components/paginated_collection.rb +4 -1
  94. data/lib/active_admin/views/index_as_table.rb +8 -7
  95. data/lib/active_admin/views/pages/base.rb +4 -3
  96. data/lib/active_admin/views/pages/index.rb +1 -1
  97. data/lib/active_admin/views/pages/show.rb +1 -7
  98. data/lib/active_admin.rb +5 -3
  99. data/lib/generators/active_admin/install/templates/active_admin.rb.erb +19 -2
  100. data/vendor/assets/javascripts/jquery-ui/data.js +12 -8
  101. data/vendor/assets/javascripts/jquery-ui/disable-selection.js +10 -7
  102. data/vendor/assets/javascripts/jquery-ui/focusable.js +12 -9
  103. data/vendor/assets/javascripts/jquery-ui/form-reset-mixin.js +60 -57
  104. data/vendor/assets/javascripts/jquery-ui/form.js +15 -12
  105. data/vendor/assets/javascripts/jquery-ui/ie.js +5 -2
  106. data/vendor/assets/javascripts/jquery-ui/keycode.js +11 -7
  107. data/vendor/assets/javascripts/jquery-ui/labels.js +46 -40
  108. data/vendor/assets/javascripts/jquery-ui/plugin.js +5 -2
  109. data/vendor/assets/javascripts/jquery-ui/position.js +30 -17
  110. data/vendor/assets/javascripts/jquery-ui/safe-active-element.js +6 -2
  111. data/vendor/assets/javascripts/jquery-ui/safe-blur.js +6 -2
  112. data/vendor/assets/javascripts/jquery-ui/scroll-parent.js +10 -7
  113. data/vendor/assets/javascripts/jquery-ui/tabbable.js +11 -8
  114. data/vendor/assets/javascripts/jquery-ui/unique-id.js +10 -7
  115. data/vendor/assets/javascripts/jquery-ui/version.js +6 -3
  116. data/vendor/assets/javascripts/jquery-ui/widget.js +53 -30
  117. data/vendor/assets/javascripts/jquery-ui/widgets/button.js +87 -24
  118. data/vendor/assets/javascripts/jquery-ui/widgets/checkboxradio.js +276 -273
  119. data/vendor/assets/javascripts/jquery-ui/widgets/controlgroup.js +15 -11
  120. data/vendor/assets/javascripts/jquery-ui/widgets/datepicker.js +182 -62
  121. data/vendor/assets/javascripts/jquery-ui/widgets/dialog.js +53 -36
  122. data/vendor/assets/javascripts/jquery-ui/widgets/draggable.js +28 -19
  123. data/vendor/assets/javascripts/jquery-ui/widgets/mouse.js +22 -11
  124. data/vendor/assets/javascripts/jquery-ui/widgets/resizable.js +47 -26
  125. data/vendor/assets/javascripts/jquery-ui/widgets/sortable.js +186 -125
  126. data/vendor/assets/javascripts/jquery-ui/widgets/tabs.js +20 -20
  127. metadata +34 -79
  128. data/docs/.gitignore +0 -1
  129. data/docs/0-installation.md +0 -142
  130. data/docs/1-general-configuration.md +0 -224
  131. data/docs/10-custom-pages.md +0 -150
  132. data/docs/11-decorators.md +0 -70
  133. data/docs/12-arbre-components.md +0 -214
  134. data/docs/13-authorization-adapter.md +0 -285
  135. data/docs/14-gotchas.md +0 -138
  136. data/docs/2-resource-customization.md +0 -475
  137. data/docs/3-index-pages/custom-index.md +0 -35
  138. data/docs/3-index-pages/index-as-block.md +0 -19
  139. data/docs/3-index-pages/index-as-blog.md +0 -69
  140. data/docs/3-index-pages/index-as-grid.md +0 -27
  141. data/docs/3-index-pages/index-as-table.md +0 -234
  142. data/docs/3-index-pages.md +0 -328
  143. data/docs/4-csv-format.md +0 -74
  144. data/docs/5-forms.md +0 -237
  145. data/docs/6-show-pages.md +0 -93
  146. data/docs/7-sidebars.md +0 -75
  147. data/docs/8-custom-actions.md +0 -177
  148. data/docs/9-batch-actions.md +0 -237
  149. data/docs/CNAME +0 -1
  150. data/docs/Gemfile +0 -4
  151. data/docs/Gemfile.lock +0 -283
  152. data/docs/README.md +0 -24
  153. data/docs/_config.yml +0 -4
  154. data/docs/_includes/footer.html +0 -8
  155. data/docs/_includes/google-analytics.html +0 -16
  156. data/docs/_includes/head.html +0 -7
  157. data/docs/_includes/toc.html +0 -98
  158. data/docs/_includes/top-menu.html +0 -17
  159. data/docs/_layouts/default.html +0 -21
  160. data/docs/documentation.md +0 -60
  161. data/docs/images/activeadmin.png +0 -0
  162. data/docs/images/code-header.png +0 -0
  163. data/docs/images/divider.png +0 -0
  164. data/docs/images/features.png +0 -0
  165. data/docs/images/tidelift.svg +0 -14
  166. data/docs/index.html +0 -226
  167. data/docs/stylesheets/main.css +0 -1205
  168. data/lib/active_admin/deprecation.rb +0 -11
  169. data/lib/ransack_ext.rb +0 -21
  170. data/vendor/assets/javascripts/jquery-ui/escape-selector.js +0 -23
@@ -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
+ } );
@@ -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,9 @@
10
12
  // Browser globals
11
13
  factory( jQuery );
12
14
  }
13
- } ( function( $ ) {
15
+ } )( function( $ ) {
16
+ "use strict";
17
+
14
18
  return $.ui.safeActiveElement = function( document ) {
15
19
  var activeElement;
16
20
 
@@ -39,4 +43,4 @@ return $.ui.safeActiveElement = function( document ) {
39
43
  return activeElement;
40
44
  };
41
45
 
42
- } ) );
46
+ } );