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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +230 -0
- data/CONTRIBUTING.md +4 -12
- data/README.md +4 -4
- data/app/assets/javascripts/active_admin/base.js +1 -4
- data/app/assets/stylesheets/active_admin/_forms.scss +2 -3
- data/app/assets/stylesheets/active_admin/components/_comments.scss +1 -1
- data/app/assets/stylesheets/active_admin/components/_dropdown_menu.scss +7 -4
- data/app/assets/stylesheets/active_admin/components/_pagination.scss +5 -2
- data/app/assets/stylesheets/active_admin/components/_table_tools.scss +9 -6
- data/app/assets/stylesheets/active_admin/components/_tabs.scss +10 -7
- data/app/assets/stylesheets/active_admin/mixins/_buttons.scss +2 -2
- data/app/assets/stylesheets/active_admin/pages/_logged_out.scss +1 -1
- data/app/assets/stylesheets/active_admin/structure/_footer.scss +6 -1
- data/app/assets/stylesheets/active_admin/structure/_title_bar.scss +6 -3
- data/app/views/layouts/active_admin_logged_out.html.erb +5 -4
- data/config/locales/ar.yml +0 -7
- data/config/locales/az.yml +0 -7
- data/config/locales/bg.yml +0 -7
- data/config/locales/bs.yml +0 -7
- data/config/locales/ca.yml +0 -7
- data/config/locales/cs.yml +0 -7
- data/config/locales/da.yml +0 -7
- data/config/locales/de-CH.yml +0 -7
- data/config/locales/de.yml +0 -8
- data/config/locales/el.yml +0 -7
- data/config/locales/en-CA.yml +0 -7
- data/config/locales/en-GB.yml +0 -7
- data/config/locales/en.yml +0 -8
- data/config/locales/eo.yml +0 -8
- data/config/locales/es-MX.yml +0 -7
- data/config/locales/es.yml +0 -8
- data/config/locales/fa.yml +0 -7
- data/config/locales/fi.yml +0 -7
- data/config/locales/fr.yml +3 -11
- data/config/locales/he.yml +0 -9
- data/config/locales/hr.yml +0 -7
- data/config/locales/hu.yml +0 -8
- data/config/locales/id.yml +0 -7
- data/config/locales/it.yml +0 -8
- data/config/locales/ja.yml +0 -8
- data/config/locales/ko.yml +0 -7
- data/config/locales/lt.yml +0 -8
- data/config/locales/lv.yml +0 -7
- data/config/locales/mk.yml +0 -8
- data/config/locales/nb.yml +0 -8
- data/config/locales/nl.yml +0 -8
- data/config/locales/pl.yml +0 -8
- data/config/locales/pt-BR.yml +0 -8
- data/config/locales/pt-PT.yml +0 -7
- data/config/locales/ro.yml +0 -7
- data/config/locales/ru.yml +0 -6
- data/config/locales/sk.yml +0 -8
- data/config/locales/sv-SE.yml +58 -39
- data/config/locales/tr.yml +0 -11
- data/config/locales/uk.yml +0 -6
- data/config/locales/vi.yml +34 -15
- data/config/locales/zh-CN.yml +34 -23
- data/config/locales/zh-TW.yml +0 -7
- data/lib/active_admin/application.rb +4 -4
- data/lib/active_admin/asset_registration.rb +3 -3
- data/lib/active_admin/authorization_adapter.rb +2 -0
- data/lib/active_admin/base_controller/authorization.rb +2 -2
- data/lib/active_admin/csv_builder.rb +23 -2
- data/lib/active_admin/dependency.rb +0 -4
- data/lib/active_admin/engine.rb +5 -1
- data/lib/active_admin/filters/active_filter.rb +1 -1
- data/lib/active_admin/filters/forms.rb +2 -2
- data/lib/active_admin/filters/formtastic_addons.rb +1 -1
- data/lib/active_admin/filters/resource_extension.rb +4 -4
- data/lib/active_admin/form_builder.rb +5 -6
- data/lib/active_admin/inputs/filters/base/search_method_select.rb +2 -2
- data/lib/active_admin/inputs/filters/date_range_input.rb +2 -2
- data/lib/active_admin/inputs/filters/numeric_input.rb +1 -1
- data/lib/active_admin/inputs/filters/select_input.rb +3 -3
- data/lib/active_admin/inputs/filters/string_input.rb +1 -1
- data/lib/active_admin/menu.rb +1 -0
- data/lib/active_admin/namespace.rb +3 -3
- data/lib/active_admin/namespace_settings.rb +1 -1
- data/lib/active_admin/orm/active_record/comments/comment.rb +8 -0
- data/lib/active_admin/orm/active_record/comments/views/active_admin_comments.rb +1 -1
- data/lib/active_admin/orm/active_record/comments.rb +8 -8
- data/lib/active_admin/pundit_adapter.rb +20 -14
- data/lib/active_admin/resource/action_items.rb +2 -2
- data/lib/active_admin/resource/attributes.rb +8 -1
- data/lib/active_admin/resource/belongs_to.rb +0 -1
- data/lib/active_admin/resource_controller/decorators.rb +1 -1
- data/lib/active_admin/resource_controller/streaming.rb +1 -1
- data/lib/active_admin/version.rb +1 -1
- data/lib/active_admin/view_helpers/auto_link_helper.rb +1 -1
- data/lib/active_admin/view_helpers/display_helper.rb +10 -3
- data/lib/active_admin/views/components/active_admin_form.rb +14 -6
- data/lib/active_admin/views/components/paginated_collection.rb +4 -1
- data/lib/active_admin/views/index_as_table.rb +8 -7
- data/lib/active_admin/views/pages/base.rb +4 -3
- data/lib/active_admin/views/pages/index.rb +1 -1
- data/lib/active_admin/views/pages/show.rb +1 -7
- data/lib/active_admin.rb +5 -3
- data/lib/generators/active_admin/install/templates/active_admin.rb.erb +19 -2
- data/vendor/assets/javascripts/jquery-ui/data.js +12 -8
- data/vendor/assets/javascripts/jquery-ui/disable-selection.js +10 -7
- data/vendor/assets/javascripts/jquery-ui/focusable.js +12 -9
- data/vendor/assets/javascripts/jquery-ui/form-reset-mixin.js +60 -57
- data/vendor/assets/javascripts/jquery-ui/form.js +15 -12
- data/vendor/assets/javascripts/jquery-ui/ie.js +5 -2
- data/vendor/assets/javascripts/jquery-ui/keycode.js +11 -7
- data/vendor/assets/javascripts/jquery-ui/labels.js +46 -40
- data/vendor/assets/javascripts/jquery-ui/plugin.js +5 -2
- data/vendor/assets/javascripts/jquery-ui/position.js +30 -17
- data/vendor/assets/javascripts/jquery-ui/safe-active-element.js +6 -2
- data/vendor/assets/javascripts/jquery-ui/safe-blur.js +6 -2
- data/vendor/assets/javascripts/jquery-ui/scroll-parent.js +10 -7
- data/vendor/assets/javascripts/jquery-ui/tabbable.js +11 -8
- data/vendor/assets/javascripts/jquery-ui/unique-id.js +10 -7
- data/vendor/assets/javascripts/jquery-ui/version.js +6 -3
- data/vendor/assets/javascripts/jquery-ui/widget.js +53 -30
- data/vendor/assets/javascripts/jquery-ui/widgets/button.js +87 -24
- data/vendor/assets/javascripts/jquery-ui/widgets/checkboxradio.js +276 -273
- data/vendor/assets/javascripts/jquery-ui/widgets/controlgroup.js +15 -11
- data/vendor/assets/javascripts/jquery-ui/widgets/datepicker.js +182 -62
- data/vendor/assets/javascripts/jquery-ui/widgets/dialog.js +53 -36
- data/vendor/assets/javascripts/jquery-ui/widgets/draggable.js +28 -19
- data/vendor/assets/javascripts/jquery-ui/widgets/mouse.js +22 -11
- data/vendor/assets/javascripts/jquery-ui/widgets/resizable.js +47 -26
- data/vendor/assets/javascripts/jquery-ui/widgets/sortable.js +186 -125
- data/vendor/assets/javascripts/jquery-ui/widgets/tabs.js +20 -20
- metadata +34 -79
- data/docs/.gitignore +0 -1
- data/docs/0-installation.md +0 -142
- data/docs/1-general-configuration.md +0 -224
- data/docs/10-custom-pages.md +0 -150
- data/docs/11-decorators.md +0 -70
- data/docs/12-arbre-components.md +0 -214
- data/docs/13-authorization-adapter.md +0 -285
- data/docs/14-gotchas.md +0 -138
- data/docs/2-resource-customization.md +0 -475
- data/docs/3-index-pages/custom-index.md +0 -35
- data/docs/3-index-pages/index-as-block.md +0 -19
- data/docs/3-index-pages/index-as-blog.md +0 -69
- data/docs/3-index-pages/index-as-grid.md +0 -27
- data/docs/3-index-pages/index-as-table.md +0 -234
- data/docs/3-index-pages.md +0 -328
- data/docs/4-csv-format.md +0 -74
- data/docs/5-forms.md +0 -237
- data/docs/6-show-pages.md +0 -93
- data/docs/7-sidebars.md +0 -75
- data/docs/8-custom-actions.md +0 -177
- data/docs/9-batch-actions.md +0 -237
- data/docs/CNAME +0 -1
- data/docs/Gemfile +0 -4
- data/docs/Gemfile.lock +0 -283
- data/docs/README.md +0 -24
- data/docs/_config.yml +0 -4
- data/docs/_includes/footer.html +0 -8
- data/docs/_includes/google-analytics.html +0 -16
- data/docs/_includes/head.html +0 -7
- data/docs/_includes/toc.html +0 -98
- data/docs/_includes/top-menu.html +0 -17
- data/docs/_layouts/default.html +0 -21
- data/docs/documentation.md +0 -60
- data/docs/images/activeadmin.png +0 -0
- data/docs/images/code-header.png +0 -0
- data/docs/images/divider.png +0 -0
- data/docs/images/features.png +0 -0
- data/docs/images/tidelift.svg +0 -14
- data/docs/index.html +0 -226
- data/docs/stylesheets/main.css +0 -1205
- data/lib/active_admin/deprecation.rb +0 -11
- data/lib/ransack_ext.rb +0 -21
- 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.
|
5
|
-
*
|
4
|
+
* jQuery UI :data 1.13.3
|
5
|
+
* https://jqueryui.com
|
6
6
|
*
|
7
|
-
* Copyright
|
7
|
+
* Copyright OpenJS Foundation and other contributors
|
8
8
|
* Released under the MIT license.
|
9
|
-
*
|
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:
|
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
|
-
|
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.
|
5
|
-
*
|
4
|
+
* jQuery UI Disable Selection 1.13.3
|
5
|
+
* https://jqueryui.com
|
6
6
|
*
|
7
|
-
* Copyright
|
7
|
+
* Copyright OpenJS Foundation and other contributors
|
8
8
|
* Released under the MIT license.
|
9
|
-
*
|
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:
|
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.
|
5
|
-
*
|
4
|
+
* jQuery UI Focusable 1.13.3
|
5
|
+
* https://jqueryui.com
|
6
6
|
*
|
7
|
-
* Copyright
|
7
|
+
* Copyright OpenJS Foundation and other contributors
|
8
8
|
* Released under the MIT license.
|
9
|
-
*
|
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:
|
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
|
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.
|
6
|
-
*
|
5
|
+
* jQuery UI Form Reset Mixin 1.13.3
|
6
|
+
* https://jqueryui.com
|
7
7
|
*
|
8
|
-
* Copyright
|
8
|
+
* Copyright OpenJS Foundation and other contributors
|
9
9
|
* Released under the MIT license.
|
10
|
-
*
|
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:
|
16
|
+
//>>docs: https://api.jqueryui.com/form-reset-mixin/
|
17
17
|
|
18
18
|
( function( factory ) {
|
19
|
-
|
19
|
+
"use strict";
|
20
20
|
|
21
|
-
|
22
|
-
define( [
|
23
|
-
"jquery",
|
24
|
-
"./form",
|
25
|
-
"./version"
|
26
|
-
], factory );
|
27
|
-
} else {
|
21
|
+
if ( typeof define === "function" && define.amd ) {
|
28
22
|
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
23
|
+
// AMD. Register as an anonymous module.
|
24
|
+
define( [
|
25
|
+
"jquery",
|
26
|
+
"./form",
|
27
|
+
"./version"
|
28
|
+
], factory );
|
29
|
+
} else {
|
33
30
|
|
34
|
-
|
35
|
-
|
36
|
-
|
31
|
+
// Browser globals
|
32
|
+
factory( jQuery );
|
33
|
+
}
|
34
|
+
} )( function( $ ) {
|
35
|
+
"use strict";
|
37
36
|
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
$.each( instances, function() {
|
42
|
-
this.refresh();
|
43
|
-
} );
|
44
|
-
} );
|
45
|
-
},
|
37
|
+
return $.ui.formResetMixin = {
|
38
|
+
_formResetHandler: function() {
|
39
|
+
var form = $( this );
|
46
40
|
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
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
|
-
|
54
|
-
|
50
|
+
_bindFormResetHandler: function() {
|
51
|
+
this.form = this.element._form();
|
52
|
+
if ( !this.form.length ) {
|
53
|
+
return;
|
54
|
+
}
|
55
55
|
|
56
|
-
|
57
|
-
|
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
|
-
|
64
|
-
|
65
|
-
|
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
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
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
|
-
|
4
|
+
"use strict";
|
5
5
|
|
6
|
-
|
7
|
-
define( [ "jquery", "./version" ], factory );
|
8
|
-
} else {
|
6
|
+
if ( typeof define === "function" && define.amd ) {
|
9
7
|
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
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
|
-
|
19
|
-
|
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.
|
5
|
-
*
|
4
|
+
* jQuery UI Keycode 1.13.3
|
5
|
+
* https://jqueryui.com
|
6
6
|
*
|
7
|
-
* Copyright
|
7
|
+
* Copyright OpenJS Foundation and other contributors
|
8
8
|
* Released under the MIT license.
|
9
|
-
*
|
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:
|
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.
|
6
|
-
*
|
4
|
+
* jQuery UI Labels 1.13.3
|
5
|
+
* https://jqueryui.com
|
7
6
|
*
|
8
|
-
* Copyright
|
7
|
+
* Copyright OpenJS Foundation and other contributors
|
9
8
|
* Released under the MIT license.
|
10
|
-
*
|
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:
|
15
|
+
//>>docs: https://api.jqueryui.com/labels/
|
17
16
|
|
18
17
|
( function( factory ) {
|
19
|
-
|
18
|
+
"use strict";
|
20
19
|
|
21
|
-
|
22
|
-
define( [ "jquery", "./version", "./escape-selector" ], factory );
|
23
|
-
} else {
|
20
|
+
if ( typeof define === "function" && define.amd ) {
|
24
21
|
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
} ( function( $ ) {
|
22
|
+
// AMD. Register as an anonymous module.
|
23
|
+
define( [ "jquery", "./version" ], factory );
|
24
|
+
} else {
|
29
25
|
|
30
|
-
|
31
|
-
|
26
|
+
// Browser globals
|
27
|
+
factory( jQuery );
|
28
|
+
}
|
29
|
+
} )( function( $ ) {
|
30
|
+
"use strict";
|
32
31
|
|
33
|
-
|
34
|
-
|
35
|
-
return this.pushStack( this[ 0 ].labels );
|
36
|
-
}
|
32
|
+
return $.fn.labels = function() {
|
33
|
+
var ancestor, selector, id, labels, ancestors;
|
37
34
|
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
labels = this.eq( 0 ).parents( "label" );
|
35
|
+
if ( !this.length ) {
|
36
|
+
return this.pushStack( [] );
|
37
|
+
}
|
42
38
|
|
43
|
-
|
44
|
-
|
45
|
-
|
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
|
-
|
48
|
-
|
49
|
-
|
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
|
-
|
52
|
-
|
49
|
+
// Look for the label based on the id
|
50
|
+
id = this.attr( "id" );
|
51
|
+
if ( id ) {
|
53
52
|
|
54
|
-
|
55
|
-
|
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
|
-
|
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
|
-
|
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.
|
5
|
-
*
|
4
|
+
* jQuery UI Position 1.13.3
|
5
|
+
* https://jqueryui.com
|
6
6
|
*
|
7
|
-
* Copyright
|
7
|
+
* Copyright OpenJS Foundation and other contributors
|
8
8
|
* Released under the MIT license.
|
9
|
-
*
|
9
|
+
* https://jquery.org/license
|
10
10
|
*
|
11
|
-
*
|
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:
|
18
|
-
//>>demos:
|
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 (
|
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
|
-
"
|
91
|
-
"<div style='height:
|
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
|
-
|
132
|
+
isElemWindow = isWindow( withinElement[ 0 ] ),
|
125
133
|
isDocument = !!withinElement[ 0 ] && withinElement[ 0 ].nodeType === 9,
|
126
|
-
hasOffset = !
|
134
|
+
hasOffset = !isElemWindow && !isDocument;
|
127
135
|
return {
|
128
136
|
element: withinElement,
|
129
|
-
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
|
-
|
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
|
+
} );
|