activeadmin 3.2.1 → 3.2.3

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 (46) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +26 -0
  3. data/README.md +2 -2
  4. data/app/assets/stylesheets/active_admin/_forms.scss +1 -2
  5. data/app/assets/stylesheets/active_admin/components/_comments.scss +1 -1
  6. data/app/assets/stylesheets/active_admin/components/_dropdown_menu.scss +7 -4
  7. data/app/assets/stylesheets/active_admin/components/_pagination.scss +5 -2
  8. data/app/assets/stylesheets/active_admin/components/_table_tools.scss +9 -6
  9. data/app/assets/stylesheets/active_admin/components/_tabs.scss +10 -7
  10. data/app/assets/stylesheets/active_admin/mixins/_buttons.scss +2 -2
  11. data/app/assets/stylesheets/active_admin/pages/_logged_out.scss +1 -1
  12. data/app/assets/stylesheets/active_admin/structure/_footer.scss +1 -1
  13. data/app/assets/stylesheets/active_admin/structure/_title_bar.scss +6 -3
  14. data/lib/active_admin/pundit_adapter.rb +1 -1
  15. data/lib/active_admin/resource/attributes.rb +8 -1
  16. data/lib/active_admin/version.rb +1 -1
  17. data/lib/active_admin/views/components/active_admin_form.rb +1 -1
  18. data/vendor/assets/javascripts/jquery-ui/data.js +12 -8
  19. data/vendor/assets/javascripts/jquery-ui/disable-selection.js +10 -7
  20. data/vendor/assets/javascripts/jquery-ui/focusable.js +12 -9
  21. data/vendor/assets/javascripts/jquery-ui/form-reset-mixin.js +60 -57
  22. data/vendor/assets/javascripts/jquery-ui/form.js +15 -12
  23. data/vendor/assets/javascripts/jquery-ui/ie.js +5 -2
  24. data/vendor/assets/javascripts/jquery-ui/keycode.js +11 -7
  25. data/vendor/assets/javascripts/jquery-ui/labels.js +46 -40
  26. data/vendor/assets/javascripts/jquery-ui/plugin.js +5 -2
  27. data/vendor/assets/javascripts/jquery-ui/position.js +30 -17
  28. data/vendor/assets/javascripts/jquery-ui/safe-active-element.js +6 -2
  29. data/vendor/assets/javascripts/jquery-ui/safe-blur.js +6 -2
  30. data/vendor/assets/javascripts/jquery-ui/scroll-parent.js +10 -7
  31. data/vendor/assets/javascripts/jquery-ui/tabbable.js +11 -8
  32. data/vendor/assets/javascripts/jquery-ui/unique-id.js +10 -7
  33. data/vendor/assets/javascripts/jquery-ui/version.js +6 -3
  34. data/vendor/assets/javascripts/jquery-ui/widget.js +53 -30
  35. data/vendor/assets/javascripts/jquery-ui/widgets/button.js +87 -24
  36. data/vendor/assets/javascripts/jquery-ui/widgets/checkboxradio.js +276 -273
  37. data/vendor/assets/javascripts/jquery-ui/widgets/controlgroup.js +15 -11
  38. data/vendor/assets/javascripts/jquery-ui/widgets/datepicker.js +182 -62
  39. data/vendor/assets/javascripts/jquery-ui/widgets/dialog.js +53 -36
  40. data/vendor/assets/javascripts/jquery-ui/widgets/draggable.js +28 -19
  41. data/vendor/assets/javascripts/jquery-ui/widgets/mouse.js +22 -11
  42. data/vendor/assets/javascripts/jquery-ui/widgets/resizable.js +47 -26
  43. data/vendor/assets/javascripts/jquery-ui/widgets/sortable.js +186 -125
  44. data/vendor/assets/javascripts/jquery-ui/widgets/tabs.js +20 -20
  45. metadata +3 -4
  46. data/vendor/assets/javascripts/jquery-ui/escape-selector.js +0 -23
@@ -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
+ } );
@@ -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.safeBlur = function( element ) {
15
19
 
16
20
  // Support: IE9 - 10 only
@@ -20,4 +24,4 @@ return $.ui.safeBlur = function( element ) {
20
24
  }
21
25
  };
22
26
 
23
- } ) );
27
+ } );
@@ -1,20 +1,22 @@
1
1
  //= require jquery-ui/version
2
2
 
3
3
  /*!
4
- * jQuery UI Scroll Parent 1.12.1
5
- * http://jqueryui.com
4
+ * jQuery UI Scroll Parent 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: scrollParent
13
13
  //>>group: Core
14
14
  //>>description: Get the closest ancestor element that is scrollable.
15
- //>>docs: http://api.jqueryui.com/scrollParent/
15
+ //>>docs: https://api.jqueryui.com/scrollParent/
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
  return $.fn.scrollParent = function( includeHidden ) {
30
33
  var position = this.css( "position" ),
@@ -44,4 +47,4 @@ return $.fn.scrollParent = function( includeHidden ) {
44
47
  scrollParent;
45
48
  };
46
49
 
47
- } ) );
50
+ } );
@@ -2,20 +2,22 @@
2
2
  //= require jquery-ui/focusable
3
3
 
4
4
  /*!
5
- * jQuery UI Tabbable 1.12.1
6
- * http://jqueryui.com
5
+ * jQuery UI Tabbable 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: :tabbable Selector
14
14
  //>>group: Core
15
15
  //>>description: Selects elements which can be tabbed to.
16
- //>>docs: http://api.jqueryui.com/tabbable-selector/
16
+ //>>docs: https://api.jqueryui.com/tabbable-selector/
17
17
 
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,9 +27,10 @@
25
27
  // Browser globals
26
28
  factory( jQuery );
27
29
  }
28
- } ( function( $ ) {
30
+ } )( function( $ ) {
31
+ "use strict";
29
32
 
30
- return $.extend( $.expr[ ":" ], {
33
+ return $.extend( $.expr.pseudos, {
31
34
  tabbable: function( element ) {
32
35
  var tabIndex = $.attr( element, "tabindex" ),
33
36
  hasTabindex = tabIndex != null;
@@ -35,4 +38,4 @@ return $.extend( $.expr[ ":" ], {
35
38
  }
36
39
  } );
37
40
 
38
- } ) );
41
+ } );
@@ -1,20 +1,22 @@
1
1
  //= require jquery-ui/version
2
2
 
3
3
  /*!
4
- * jQuery UI Unique ID 1.12.1
5
- * http://jqueryui.com
4
+ * jQuery UI Unique ID 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: uniqueId
13
13
  //>>group: Core
14
14
  //>>description: Functions to generate and remove uniqueId's
15
- //>>docs: http://api.jqueryui.com/uniqueId/
15
+ //>>docs: https://api.jqueryui.com/uniqueId/
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
  return $.fn.extend( {
30
33
  uniqueId: ( function() {
@@ -48,4 +51,4 @@ return $.fn.extend( {
48
51
  }
49
52
  } );
50
53
 
51
- } ) );
54
+ } );
@@ -1,4 +1,6 @@
1
1
  ( function( factory ) {
2
+ "use strict";
3
+
2
4
  if ( typeof define === "function" && define.amd ) {
3
5
 
4
6
  // AMD. Register as an anonymous module.
@@ -8,10 +10,11 @@
8
10
  // Browser globals
9
11
  factory( jQuery );
10
12
  }
11
- } ( function( $ ) {
13
+ } )( function( $ ) {
14
+ "use strict";
12
15
 
13
16
  $.ui = $.ui || {};
14
17
 
15
- return $.ui.version = "1.12.1";
18
+ return $.ui.version = "1.13.3";
16
19
 
17
- } ) );
20
+ } );