activeadmin 1.0.0 → 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of activeadmin might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/.github/ISSUE_TEMPLATE.md +20 -0
- data/.mdlrc +1 -0
- data/.rubocop.yml +52 -3
- data/.simplecov +13 -0
- data/.travis.yml +9 -24
- data/.yardopts +0 -1
- data/CHANGELOG.md +85 -4
- data/CONTRIBUTING.md +33 -57
- data/Gemfile +26 -17
- data/Rakefile +1 -12
- data/activeadmin.gemspec +9 -11
- data/app/assets/javascripts/active_admin/base.js.coffee +6 -2
- data/app/assets/javascripts/active_admin/initializers/batch_actions.js.coffee +5 -1
- data/app/assets/javascripts/active_admin/initializers/datepicker.js.coffee +5 -1
- data/app/assets/javascripts/active_admin/initializers/filters.js.coffee +5 -1
- data/app/assets/javascripts/active_admin/initializers/tabs.js.coffee +5 -1
- data/app/assets/javascripts/active_admin/lib/batch_actions.js.coffee +6 -3
- data/app/assets/javascripts/active_admin/lib/checkbox-toggler.js.coffee +9 -7
- data/app/assets/javascripts/active_admin/lib/dropdown-menu.js.coffee +5 -2
- data/app/assets/javascripts/active_admin/lib/per_page.js.coffee +6 -2
- data/app/assets/javascripts/active_admin/lib/table-checkbox-toggler.js.coffee +3 -5
- data/app/assets/stylesheets/active_admin/_base.scss +2 -2
- data/app/assets/stylesheets/active_admin/_forms.scss +6 -12
- data/app/assets/stylesheets/active_admin/components/_batch_actions.scss +0 -5
- data/app/assets/stylesheets/active_admin/components/_pagination.scss +11 -0
- data/app/assets/stylesheets/active_admin/components/_status_tags.scss +1 -0
- data/app/assets/stylesheets/active_admin/components/_tables.scss +4 -1
- data/app/assets/stylesheets/active_admin/mixins/_all.scss +0 -2
- data/app/assets/stylesheets/active_admin/print.scss +2 -3
- data/app/views/active_admin/devise/sessions/new.html.erb +1 -1
- data/app/views/active_admin/devise/shared/_links.erb +12 -6
- data/app/views/kaminari/active_admin/_first_page.html.erb +11 -0
- data/app/views/kaminari/active_admin/_gap.html.erb +8 -0
- data/app/views/kaminari/active_admin/_last_page.html.erb +11 -0
- data/app/views/kaminari/active_admin/_next_page.html.erb +11 -0
- data/app/views/kaminari/active_admin/_page.html.erb +12 -0
- data/app/views/kaminari/active_admin/_paginator.html.erb +25 -0
- data/app/views/kaminari/active_admin/_prev_page.html.erb +11 -0
- data/codecov.yml +14 -12
- data/config/i18n-tasks.yml +26 -0
- data/config/locales/ar.yml +1 -3
- data/config/locales/bg.yml +0 -2
- data/config/locales/bs.yml +0 -2
- data/config/locales/ca.yml +0 -2
- data/config/locales/cs.yml +0 -2
- data/config/locales/da.yml +1 -3
- data/config/locales/de-CH.yml +1 -3
- data/config/locales/de.yml +1 -3
- data/config/locales/el.yml +1 -3
- data/config/locales/en-CA.yml +138 -0
- data/config/locales/en-GB.yml +43 -3
- data/config/locales/en.yml +8 -4
- data/config/locales/es-MX.yml +3 -2
- data/config/locales/es.yml +10 -4
- data/config/locales/fa.yml +0 -2
- data/config/locales/fi.yml +0 -2
- data/config/locales/fr.yml +9 -2
- data/config/locales/he.yml +53 -7
- data/config/locales/hr.yml +0 -2
- data/config/locales/hu.yml +0 -2
- data/config/locales/id.yml +1 -3
- data/config/locales/it.yml +2 -4
- data/config/locales/ja.yml +1 -3
- data/config/locales/ko.yml +0 -2
- data/config/locales/lt.yml +24 -4
- data/config/locales/lv.yml +0 -2
- data/config/locales/nb.yml +0 -2
- data/config/locales/nl.yml +1 -3
- data/config/locales/pl.yml +3 -2
- data/config/locales/pt-BR.yml +1 -3
- data/config/locales/pt-PT.yml +0 -2
- data/config/locales/ro.yml +0 -2
- data/config/locales/ru.yml +1 -3
- data/config/locales/sk.yml +0 -2
- data/config/locales/sv-SE.yml +1 -3
- data/config/locales/tr.yml +0 -2
- data/config/locales/uk.yml +1 -3
- data/config/locales/vi.yml +0 -2
- data/config/locales/zh-CN.yml +0 -2
- data/config/locales/zh-TW.yml +1 -3
- data/config/mdl_style.rb +9 -0
- data/cucumber.yml +3 -3
- data/docs/0-installation.md +15 -12
- data/docs/1-general-configuration.md +10 -3
- data/docs/10-custom-pages.md +10 -5
- data/docs/11-decorators.md +1 -0
- data/docs/12-arbre-components.md +7 -9
- data/docs/13-authorization-adapter.md +39 -24
- data/docs/14-gotchas.md +41 -22
- data/docs/2-resource-customization.md +41 -18
- data/docs/3-index-pages.md +30 -12
- data/docs/3-index-pages/custom-index.md +1 -0
- data/docs/3-index-pages/index-as-block.md +0 -5
- data/docs/3-index-pages/index-as-blog.md +0 -5
- data/docs/3-index-pages/index-as-grid.md +0 -5
- data/docs/3-index-pages/index-as-table.md +1 -9
- data/docs/4-csv-format.md +2 -1
- data/docs/5-forms.md +45 -21
- data/docs/6-show-pages.md +2 -1
- data/docs/7-sidebars.md +2 -1
- data/docs/8-custom-actions.md +4 -1
- data/docs/9-batch-actions.md +4 -2
- data/docs/documentation.md +19 -21
- data/features/comments/commenting.feature +20 -0
- data/features/index/filters.feature +41 -1
- data/features/index/format_as_csv.feature +17 -0
- data/features/index/index_scopes.feature +15 -0
- data/features/registering_assets.feature +8 -4
- data/features/show/attributes_table_title.feature +54 -0
- data/features/show/tabs.feature +10 -4
- data/features/step_definitions/action_link_steps.rb +0 -1
- data/features/step_definitions/attributes_table_title_steps.rb +11 -0
- data/features/step_definitions/batch_action_steps.rb +2 -2
- data/features/step_definitions/comment_steps.rb +21 -1
- data/features/step_definitions/configuration_steps.rb +1 -1
- data/features/step_definitions/filter_steps.rb +9 -0
- data/features/step_definitions/format_steps.rb +1 -1
- data/features/step_definitions/index_scope_steps.rb +4 -0
- data/features/support/env.rb +5 -4
- data/features/support/regular_env.rb +7 -0
- data/features/support/reload_env.rb +7 -0
- data/gemfiles/rails_42.gemfile +2 -37
- data/gemfiles/rails_50.gemfile +5 -40
- data/gemfiles/rails_51.gemfile +5 -40
- data/lib/active_admin.rb +0 -3
- data/lib/active_admin/application.rb +6 -4
- data/lib/active_admin/asset_registration.rb +8 -0
- data/lib/active_admin/authorization_adapter.rb +0 -3
- data/lib/active_admin/base_controller.rb +1 -2
- data/lib/active_admin/base_controller/authorization.rb +0 -1
- data/lib/active_admin/base_controller/menu.rb +9 -9
- data/lib/active_admin/batch_actions/controller.rb +1 -1
- data/lib/active_admin/batch_actions/views/selection_cells.rb +6 -5
- data/lib/active_admin/csv_builder.rb +3 -3
- data/lib/active_admin/dependency.rb +1 -1
- data/lib/active_admin/devise.rb +2 -2
- data/lib/active_admin/dsl.rb +2 -2
- data/lib/active_admin/filters.rb +2 -0
- data/lib/active_admin/filters/active.rb +13 -14
- data/lib/active_admin/filters/active_filter.rb +87 -0
- data/lib/active_admin/filters/active_sidebar.rb +50 -0
- data/lib/active_admin/filters/forms.rb +1 -2
- data/lib/active_admin/filters/resource_extension.rb +2 -30
- data/lib/active_admin/helpers/settings.rb +0 -1
- data/lib/active_admin/inputs/datepicker_input.rb +5 -5
- data/lib/active_admin/inputs/filters/date_range_input.rb +12 -4
- data/lib/active_admin/inputs/filters/text_input.rb +0 -1
- data/lib/active_admin/menu.rb +4 -4
- data/lib/active_admin/menu_collection.rb +0 -2
- data/lib/active_admin/namespace.rb +1 -1
- data/lib/active_admin/orm/active_record/comments/comment.rb +1 -5
- data/lib/active_admin/orm/active_record/comments/views/active_admin_comments.rb +4 -2
- data/lib/active_admin/page_controller.rb +1 -1
- data/lib/active_admin/resource/action_items.rb +4 -0
- data/lib/active_admin/resource/attributes.rb +1 -1
- data/lib/active_admin/resource/page_presenters.rb +1 -1
- data/lib/active_admin/resource/routes.rb +0 -1
- data/lib/active_admin/resource/scopes.rb +2 -1
- data/lib/active_admin/resource_controller.rb +1 -1
- data/lib/active_admin/resource_controller/data_access.rb +8 -9
- data/lib/active_admin/resource_dsl.rb +10 -10
- data/lib/active_admin/router.rb +1 -1
- data/lib/active_admin/scope.rb +3 -3
- data/lib/active_admin/version.rb +1 -1
- data/lib/active_admin/view_helpers.rb +1 -0
- data/lib/active_admin/view_helpers/display_helper.rb +1 -1
- data/lib/active_admin/view_helpers/form_helper.rb +1 -1
- data/lib/active_admin/view_helpers/scope_name_helper.rb +16 -0
- data/lib/active_admin/views/action_items.rb +1 -1
- data/lib/active_admin/views/components/active_admin_form.rb +1 -1
- data/lib/active_admin/views/components/dropdown_menu.rb +2 -2
- data/lib/active_admin/views/components/index_list.rb +0 -2
- data/lib/active_admin/views/components/paginated_collection.rb +1 -1
- data/lib/active_admin/views/components/scopes.rb +2 -10
- data/lib/active_admin/views/components/status_tag.rb +19 -11
- data/lib/active_admin/views/components/tabs.rb +2 -2
- data/lib/active_admin/views/header.rb +0 -1
- data/lib/active_admin/views/index_as_blog.rb +1 -2
- data/lib/active_admin/views/index_as_grid.rb +2 -2
- data/lib/active_admin/views/index_as_table.rb +19 -1
- data/lib/active_admin/views/pages/base.rb +4 -4
- data/lib/active_admin/views/pages/show.rb +6 -1
- data/lib/active_admin/views/title_bar.rb +4 -4
- data/lib/bug_report_templates/{rails_5_master.rb → active_admin_master.rb} +35 -40
- data/lib/generators/active_admin/devise/devise_generator.rb +1 -1
- data/lib/generators/active_admin/install/templates/admin_user.rb.erb +1 -1
- data/spec/bug_report_templates_spec.rb +2 -3
- data/spec/rails_helper.rb +0 -3
- data/spec/spec_helper.rb +1 -12
- data/spec/support/active_admin_integration_spec_helper.rb +1 -1
- data/spec/support/rails_template.rb +5 -37
- data/spec/support/rails_template_with_data.rb +262 -3
- data/spec/support/templates/policies/active_admin/comment_policy.rb +1 -1
- data/spec/support/templates/policies/active_admin/page_policy.rb +1 -1
- data/spec/support/templates/policies/application_policy.rb +1 -2
- data/spec/support/templates/post_decorator.rb +0 -1
- data/spec/unit/abstract_view_factory_spec.rb +0 -1
- data/spec/unit/application_spec.rb +4 -0
- data/spec/unit/asset_registration_spec.rb +29 -0
- data/spec/unit/belongs_to_spec.rb +1 -2
- data/spec/unit/config_shared_examples.rb +1 -1
- data/spec/unit/csv_builder_spec.rb +2 -4
- data/spec/unit/dependency_spec.rb +7 -7
- data/spec/unit/dsl_spec.rb +0 -2
- data/spec/unit/filters/active_filter_spec.rb +135 -0
- data/spec/unit/filters/active_spec.rb +11 -1
- data/spec/unit/filters/filter_form_builder_spec.rb +9 -7
- data/spec/unit/form_builder_spec.rb +14 -14
- data/spec/unit/helpers/scope_chain_spec.rb +0 -1
- data/spec/unit/i18n_spec.rb +17 -0
- data/spec/unit/menu_item_spec.rb +1 -3
- data/spec/unit/namespace/register_page_spec.rb +1 -1
- data/spec/unit/namespace_spec.rb +0 -1
- data/spec/unit/page_spec.rb +0 -3
- data/spec/unit/resource/action_items_spec.rb +5 -1
- data/spec/unit/resource/attributes_spec.rb +1 -2
- data/spec/unit/resource/ordering_spec.rb +0 -3
- data/spec/unit/resource/scopes_spec.rb +1 -1
- data/spec/unit/resource_controller/data_access_spec.rb +2 -2
- data/spec/unit/resource_controller_spec.rb +1 -2
- data/spec/unit/resource_spec.rb +9 -2
- data/spec/unit/routing_spec.rb +0 -2
- data/spec/unit/scope_spec.rb +3 -3
- data/spec/unit/settings_spec.rb +0 -1
- data/spec/unit/view_factory_spec.rb +1 -1
- data/spec/unit/view_helpers/flash_helper_spec.rb +0 -1
- data/spec/unit/view_helpers/form_helper_spec.rb +3 -4
- data/spec/unit/view_helpers/method_or_proc_helper_spec.rb +0 -1
- data/spec/unit/views/components/attributes_table_spec.rb +0 -1
- data/spec/unit/views/components/columns_spec.rb +0 -2
- data/spec/unit/views/components/site_title_spec.rb +0 -2
- data/spec/unit/views/components/status_tag_spec.rb +23 -7
- data/spec/unit/views/components/tabs_spec.rb +29 -1
- data/spec/unit/views/pages/index_spec.rb +1 -1
- data/tasks/docs.rake +37 -10
- data/tasks/lint.rake +14 -1
- data/tasks/local.rake +2 -2
- data/tasks/test.rake +8 -25
- data/vendor/assets/javascripts/jquery-ui/data.js +41 -0
- data/vendor/assets/javascripts/jquery-ui/disable-selection.js +48 -0
- data/vendor/assets/javascripts/jquery-ui/escape-selector.js +23 -0
- data/vendor/assets/javascripts/jquery-ui/focusable.js +86 -0
- data/vendor/assets/javascripts/jquery-ui/ie.js +17 -0
- data/vendor/assets/javascripts/jquery-ui/keycode.js +47 -0
- data/vendor/assets/javascripts/jquery-ui/plugin.js +46 -0
- data/vendor/assets/javascripts/jquery-ui/position.js +500 -0
- data/vendor/assets/javascripts/jquery-ui/safe-active-element.js +42 -0
- data/vendor/assets/javascripts/jquery-ui/safe-blur.js +23 -0
- data/vendor/assets/javascripts/jquery-ui/scroll-parent.js +47 -0
- data/vendor/assets/javascripts/jquery-ui/tabbable.js +38 -0
- data/vendor/assets/javascripts/jquery-ui/unique-id.js +51 -0
- data/vendor/assets/javascripts/jquery-ui/version.js +17 -0
- data/vendor/assets/javascripts/jquery-ui/widget.js +735 -0
- data/vendor/assets/javascripts/jquery-ui/widgets/button.js +391 -0
- data/vendor/assets/javascripts/jquery-ui/widgets/checkboxradio.js +300 -0
- data/vendor/assets/javascripts/jquery-ui/widgets/controlgroup.js +300 -0
- data/vendor/assets/javascripts/jquery-ui/widgets/datepicker.js +2123 -0
- data/vendor/assets/javascripts/jquery-ui/widgets/dialog.js +954 -0
- data/vendor/assets/javascripts/jquery-ui/widgets/draggable.js +1259 -0
- data/vendor/assets/javascripts/jquery-ui/widgets/mouse.js +230 -0
- data/vendor/assets/javascripts/jquery-ui/widgets/resizable.js +1207 -0
- data/vendor/assets/javascripts/jquery-ui/widgets/sortable.js +1561 -0
- data/vendor/assets/javascripts/jquery-ui/widgets/tabs.js +931 -0
- data/vendor/assets/stylesheets/active_admin/_normalize.scss +447 -0
- metadata +62 -51
- data/.hound.yml +0 -14
- data/Appraisals +0 -41
- data/app/assets/images/active_admin/datepicker/datepicker-input-icon.png +0 -0
- data/app/assets/javascripts/active_admin/jquery_ui.js.erb +0 -18
- data/app/assets/stylesheets/active_admin/mixins/_reset.scss +0 -165
- data/lib/active_admin/filters/humanized.rb +0 -68
- data/spec/requests/javascript_spec.rb +0 -22
- data/spec/support/jslint.yml +0 -80
- data/spec/unit/filters/humanized_spec.rb +0 -64
- data/tasks/yard.rake +0 -9
data/tasks/docs.rake
CHANGED
@@ -1,13 +1,21 @@
|
|
1
|
+
require 'yard'
|
2
|
+
require 'yard/rake/yardoc_task'
|
3
|
+
|
1
4
|
namespace :docs do
|
2
5
|
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
6
|
+
YARD::Rake::YardocTask.new do |t|
|
7
|
+
t.files = ['lib/**/*.rb']
|
8
|
+
t.options = ['--no-output']
|
9
|
+
end
|
10
|
+
|
11
|
+
def jekyll_redirect_string(filename)
|
12
|
+
<<-EOD.strip_heredoc
|
13
|
+
---
|
14
|
+
redirect_from: /docs/3-index-pages/#{filename}
|
15
|
+
---
|
9
16
|
|
10
|
-
EOD
|
17
|
+
EOD
|
18
|
+
end
|
11
19
|
|
12
20
|
def filename_from_module(mod)
|
13
21
|
mod.name.to_s.underscore.tr('_', '-')
|
@@ -15,14 +23,31 @@ EOD
|
|
15
23
|
|
16
24
|
def write_docstrings_to(path, mods)
|
17
25
|
mods.each do |mod|
|
18
|
-
|
19
|
-
|
26
|
+
filename = filename_from_module(mod)
|
27
|
+
|
28
|
+
File.open("#{path}/#{filename}.md", 'w+') do |f|
|
29
|
+
f << jekyll_redirect_string("#{filename}.html") + mod.docstring + "\n"
|
20
30
|
end
|
21
31
|
end
|
22
32
|
end
|
23
33
|
|
34
|
+
def docs_syncronized?
|
35
|
+
# Do not print diff and yield whether exit code was zero
|
36
|
+
sh('git diff --quiet docs/3-index-pages') do |outcome, _|
|
37
|
+
return if outcome
|
38
|
+
|
39
|
+
# Output diff before raising error
|
40
|
+
sh('git diff docs/3-index-pages')
|
41
|
+
|
42
|
+
raise <<-MSG.strip_heredoc
|
43
|
+
The docs/3-index-pages directory is out of sync.
|
44
|
+
Run rake generate_cops_documentation and commit the results.
|
45
|
+
MSG
|
46
|
+
end
|
47
|
+
end
|
48
|
+
|
24
49
|
desc "Update docs in the docs folder"
|
25
|
-
task :
|
50
|
+
task build: :yard do
|
26
51
|
require 'yard'
|
27
52
|
require 'active_support/all'
|
28
53
|
|
@@ -32,6 +57,8 @@ EOD
|
|
32
57
|
# Index Types
|
33
58
|
index_types = views.children.select{|obj| obj.name.to_s =~ /^IndexAs/ }
|
34
59
|
write_docstrings_to "docs/3-index-pages", index_types
|
60
|
+
|
61
|
+
docs_syncronized? if ENV["CI"]
|
35
62
|
end
|
36
63
|
|
37
64
|
end
|
data/tasks/lint.rake
CHANGED
@@ -1,8 +1,21 @@
|
|
1
1
|
desc "Lints ActiveAdmin code base"
|
2
|
-
task lint: "lint:rubocop"
|
2
|
+
task lint: ["lint:rubocop", "lint:mdl"]
|
3
3
|
|
4
4
|
namespace :lint do
|
5
5
|
require "rubocop/rake_task"
|
6
6
|
desc "Checks ruby code style with RuboCop"
|
7
7
|
RuboCop::RakeTask.new
|
8
|
+
|
9
|
+
desc "Checks markdown code style with Markdownlint"
|
10
|
+
task :mdl do
|
11
|
+
puts "Running mdl..."
|
12
|
+
|
13
|
+
targets = [
|
14
|
+
*Dir.glob("docs/**/*.md"),
|
15
|
+
"CONTRIBUTING.md",
|
16
|
+
".github/ISSUE_TEMPLATE.md"
|
17
|
+
]
|
18
|
+
|
19
|
+
abort unless system("mdl", *targets)
|
20
|
+
end
|
8
21
|
end
|
data/tasks/local.rake
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
desc 'Runs a command agains the local sample application'
|
2
|
-
task local
|
2
|
+
task :local do
|
3
3
|
Rake::Task['setup'].invoke(false,
|
4
4
|
'.test-rails-apps',
|
5
5
|
'rails_template_with_data')
|
@@ -10,7 +10,7 @@ task local: :enforce_version do
|
|
10
10
|
argv = ARGV[1..-1]
|
11
11
|
|
12
12
|
# If it's a rails command, or we're using Rails 5, auto add the rails script
|
13
|
-
rails_commands = %w(generate console server dbconsole g c s runner)
|
13
|
+
rails_commands = %w(generate console server db dbconsole g c s runner)
|
14
14
|
|
15
15
|
if Rails::VERSION::MAJOR >= 5 || rails_commands.include?(argv[0])
|
16
16
|
argv.unshift('rails')
|
data/tasks/test.rake
CHANGED
@@ -1,44 +1,27 @@
|
|
1
1
|
desc "Run the full suite using 1 core"
|
2
|
-
task test: [:
|
3
|
-
'spec:unit',
|
4
|
-
'spec:request',
|
5
|
-
'cucumber',
|
6
|
-
'cucumber:class_reloading']
|
2
|
+
task test: [:spec, :cucumber]
|
7
3
|
|
8
4
|
require 'rspec/core/rake_task'
|
9
5
|
|
10
6
|
RSpec::Core::RakeTask.new(:spec)
|
11
7
|
|
12
|
-
namespace :spec do
|
13
|
-
|
14
|
-
desc "Run the unit specs"
|
15
|
-
RSpec::Core::RakeTask.new(:unit) do |t|
|
16
|
-
t.pattern = "spec/unit/**/*_spec.rb"
|
17
|
-
end
|
18
|
-
|
19
|
-
desc "Run the request specs"
|
20
|
-
RSpec::Core::RakeTask.new(:request) do |t|
|
21
|
-
t.pattern = "spec/requests/**/*_spec.rb"
|
22
|
-
end
|
23
|
-
|
24
|
-
end
|
25
|
-
|
26
|
-
|
27
8
|
require 'cucumber/rake/task'
|
28
9
|
|
29
|
-
|
30
|
-
t.profile = 'default'
|
31
|
-
t.bundler = false
|
32
|
-
end
|
10
|
+
task cucumber: [:"cucumber:regular", :"cucumber:reloading"]
|
33
11
|
|
34
12
|
namespace :cucumber do
|
35
13
|
|
14
|
+
Cucumber::Rake::Task.new(:regular, "Run the standard cucumber scenarios") do |t|
|
15
|
+
t.profile = 'default'
|
16
|
+
t.bundler = false
|
17
|
+
end
|
18
|
+
|
36
19
|
Cucumber::Rake::Task.new(:wip, "Run the cucumber scenarios with the @wip tag") do |t|
|
37
20
|
t.profile = 'wip'
|
38
21
|
t.bundler = false
|
39
22
|
end
|
40
23
|
|
41
|
-
Cucumber::Rake::Task.new(:
|
24
|
+
Cucumber::Rake::Task.new(:reloading, "Run the cucumber scenarios that test reloading") do |t|
|
42
25
|
t.profile = 'class-reloading'
|
43
26
|
t.bundler = false
|
44
27
|
end
|
@@ -0,0 +1,41 @@
|
|
1
|
+
//= require jquery-ui/version
|
2
|
+
|
3
|
+
/*!
|
4
|
+
* jQuery UI :data 1.12.1
|
5
|
+
* http://jqueryui.com
|
6
|
+
*
|
7
|
+
* Copyright jQuery Foundation and other contributors
|
8
|
+
* Released under the MIT license.
|
9
|
+
* http://jquery.org/license
|
10
|
+
*/
|
11
|
+
|
12
|
+
//>>label: :data Selector
|
13
|
+
//>>group: Core
|
14
|
+
//>>description: Selects elements which have data stored under the specified key.
|
15
|
+
//>>docs: http://api.jqueryui.com/data-selector/
|
16
|
+
|
17
|
+
( function( factory ) {
|
18
|
+
if ( typeof define === "function" && define.amd ) {
|
19
|
+
|
20
|
+
// AMD. Register as an anonymous module.
|
21
|
+
define( [ "jquery", "./version" ], factory );
|
22
|
+
} else {
|
23
|
+
|
24
|
+
// Browser globals
|
25
|
+
factory( jQuery );
|
26
|
+
}
|
27
|
+
} ( function( $ ) {
|
28
|
+
return $.extend( $.expr[ ":" ], {
|
29
|
+
data: $.expr.createPseudo ?
|
30
|
+
$.expr.createPseudo( function( dataName ) {
|
31
|
+
return function( elem ) {
|
32
|
+
return !!$.data( elem, dataName );
|
33
|
+
};
|
34
|
+
} ) :
|
35
|
+
|
36
|
+
// Support: jQuery <1.8
|
37
|
+
function( elem, i, match ) {
|
38
|
+
return !!$.data( elem, match[ 3 ] );
|
39
|
+
}
|
40
|
+
} );
|
41
|
+
} ) );
|
@@ -0,0 +1,48 @@
|
|
1
|
+
//= require jquery-ui/version
|
2
|
+
|
3
|
+
/*!
|
4
|
+
* jQuery UI Disable Selection 1.12.1
|
5
|
+
* http://jqueryui.com
|
6
|
+
*
|
7
|
+
* Copyright jQuery Foundation and other contributors
|
8
|
+
* Released under the MIT license.
|
9
|
+
* http://jquery.org/license
|
10
|
+
*/
|
11
|
+
|
12
|
+
//>>label: disableSelection
|
13
|
+
//>>group: Core
|
14
|
+
//>>description: Disable selection of text content within the set of matched elements.
|
15
|
+
//>>docs: http://api.jqueryui.com/disableSelection/
|
16
|
+
|
17
|
+
// This file is deprecated
|
18
|
+
( function( factory ) {
|
19
|
+
if ( typeof define === "function" && define.amd ) {
|
20
|
+
|
21
|
+
// AMD. Register as an anonymous module.
|
22
|
+
define( [ "jquery", "./version" ], factory );
|
23
|
+
} else {
|
24
|
+
|
25
|
+
// Browser globals
|
26
|
+
factory( jQuery );
|
27
|
+
}
|
28
|
+
} ( function( $ ) {
|
29
|
+
|
30
|
+
return $.fn.extend( {
|
31
|
+
disableSelection: ( function() {
|
32
|
+
var eventType = "onselectstart" in document.createElement( "div" ) ?
|
33
|
+
"selectstart" :
|
34
|
+
"mousedown";
|
35
|
+
|
36
|
+
return function() {
|
37
|
+
return this.on( eventType + ".ui-disableSelection", function( event ) {
|
38
|
+
event.preventDefault();
|
39
|
+
} );
|
40
|
+
};
|
41
|
+
} )(),
|
42
|
+
|
43
|
+
enableSelection: function() {
|
44
|
+
return this.off( ".ui-disableSelection" );
|
45
|
+
}
|
46
|
+
} );
|
47
|
+
|
48
|
+
} ) );
|
@@ -0,0 +1,23 @@
|
|
1
|
+
//= require jquery-ui/version
|
2
|
+
|
3
|
+
( function( factory ) {
|
4
|
+
if ( typeof define === "function" && define.amd ) {
|
5
|
+
|
6
|
+
// AMD. Register as an anonymous module.
|
7
|
+
define( [ "jquery", "./version" ], factory );
|
8
|
+
} else {
|
9
|
+
|
10
|
+
// Browser globals
|
11
|
+
factory( jQuery );
|
12
|
+
}
|
13
|
+
} ( function( $ ) {
|
14
|
+
|
15
|
+
// Internal use only
|
16
|
+
return $.ui.escapeSelector = ( function() {
|
17
|
+
var selectorEscape = /([!"#$%&'()*+,./:;<=>?@[\]^`{|}~])/g;
|
18
|
+
return function( selector ) {
|
19
|
+
return selector.replace( selectorEscape, "\\$1" );
|
20
|
+
};
|
21
|
+
} )();
|
22
|
+
|
23
|
+
} ) );
|
@@ -0,0 +1,86 @@
|
|
1
|
+
//= require jquery-ui/version
|
2
|
+
|
3
|
+
/*!
|
4
|
+
* jQuery UI Focusable 1.12.1
|
5
|
+
* http://jqueryui.com
|
6
|
+
*
|
7
|
+
* Copyright jQuery Foundation and other contributors
|
8
|
+
* Released under the MIT license.
|
9
|
+
* http://jquery.org/license
|
10
|
+
*/
|
11
|
+
|
12
|
+
//>>label: :focusable Selector
|
13
|
+
//>>group: Core
|
14
|
+
//>>description: Selects elements which can be focused.
|
15
|
+
//>>docs: http://api.jqueryui.com/focusable-selector/
|
16
|
+
|
17
|
+
( function( factory ) {
|
18
|
+
if ( typeof define === "function" && define.amd ) {
|
19
|
+
|
20
|
+
// AMD. Register as an anonymous module.
|
21
|
+
define( [ "jquery", "./version" ], factory );
|
22
|
+
} else {
|
23
|
+
|
24
|
+
// Browser globals
|
25
|
+
factory( jQuery );
|
26
|
+
}
|
27
|
+
} ( function( $ ) {
|
28
|
+
|
29
|
+
// Selectors
|
30
|
+
$.ui.focusable = function( element, hasTabindex ) {
|
31
|
+
var map, mapName, img, focusableIfVisible, fieldset,
|
32
|
+
nodeName = element.nodeName.toLowerCase();
|
33
|
+
|
34
|
+
if ( "area" === nodeName ) {
|
35
|
+
map = element.parentNode;
|
36
|
+
mapName = map.name;
|
37
|
+
if ( !element.href || !mapName || map.nodeName.toLowerCase() !== "map" ) {
|
38
|
+
return false;
|
39
|
+
}
|
40
|
+
img = $( "img[usemap='#" + mapName + "']" );
|
41
|
+
return img.length > 0 && img.is( ":visible" );
|
42
|
+
}
|
43
|
+
|
44
|
+
if ( /^(input|select|textarea|button|object)$/.test( nodeName ) ) {
|
45
|
+
focusableIfVisible = !element.disabled;
|
46
|
+
|
47
|
+
if ( focusableIfVisible ) {
|
48
|
+
|
49
|
+
// Form controls within a disabled fieldset are disabled.
|
50
|
+
// However, controls within the fieldset's legend do not get disabled.
|
51
|
+
// Since controls generally aren't placed inside legends, we skip
|
52
|
+
// this portion of the check.
|
53
|
+
fieldset = $( element ).closest( "fieldset" )[ 0 ];
|
54
|
+
if ( fieldset ) {
|
55
|
+
focusableIfVisible = !fieldset.disabled;
|
56
|
+
}
|
57
|
+
}
|
58
|
+
} else if ( "a" === nodeName ) {
|
59
|
+
focusableIfVisible = element.href || hasTabindex;
|
60
|
+
} else {
|
61
|
+
focusableIfVisible = hasTabindex;
|
62
|
+
}
|
63
|
+
|
64
|
+
return focusableIfVisible && $( element ).is( ":visible" ) && visible( $( element ) );
|
65
|
+
};
|
66
|
+
|
67
|
+
// Support: IE 8 only
|
68
|
+
// IE 8 doesn't resolve inherit to visible/hidden for computed values
|
69
|
+
function visible( element ) {
|
70
|
+
var visibility = element.css( "visibility" );
|
71
|
+
while ( visibility === "inherit" ) {
|
72
|
+
element = element.parent();
|
73
|
+
visibility = element.css( "visibility" );
|
74
|
+
}
|
75
|
+
return visibility !== "hidden";
|
76
|
+
}
|
77
|
+
|
78
|
+
$.extend( $.expr[ ":" ], {
|
79
|
+
focusable: function( element ) {
|
80
|
+
return $.ui.focusable( element, $.attr( element, "tabindex" ) != null );
|
81
|
+
}
|
82
|
+
} );
|
83
|
+
|
84
|
+
return $.ui.focusable;
|
85
|
+
|
86
|
+
} ) );
|
@@ -0,0 +1,17 @@
|
|
1
|
+
//= require jquery-ui/version
|
2
|
+
|
3
|
+
( function( factory ) {
|
4
|
+
if ( typeof define === "function" && define.amd ) {
|
5
|
+
|
6
|
+
// AMD. Register as an anonymous module.
|
7
|
+
define( [ "jquery", "./version" ], factory );
|
8
|
+
} else {
|
9
|
+
|
10
|
+
// Browser globals
|
11
|
+
factory( jQuery );
|
12
|
+
}
|
13
|
+
} ( function( $ ) {
|
14
|
+
|
15
|
+
// This file is deprecated
|
16
|
+
return $.ui.ie = !!/msie [\w.]+/.exec( navigator.userAgent.toLowerCase() );
|
17
|
+
} ) );
|
@@ -0,0 +1,47 @@
|
|
1
|
+
//= require jquery-ui/version
|
2
|
+
|
3
|
+
/*!
|
4
|
+
* jQuery UI Keycode 1.12.1
|
5
|
+
* http://jqueryui.com
|
6
|
+
*
|
7
|
+
* Copyright jQuery Foundation and other contributors
|
8
|
+
* Released under the MIT license.
|
9
|
+
* http://jquery.org/license
|
10
|
+
*/
|
11
|
+
|
12
|
+
//>>label: Keycode
|
13
|
+
//>>group: Core
|
14
|
+
//>>description: Provide keycodes as keynames
|
15
|
+
//>>docs: http://api.jqueryui.com/jQuery.ui.keyCode/
|
16
|
+
|
17
|
+
( function( factory ) {
|
18
|
+
if ( typeof define === "function" && define.amd ) {
|
19
|
+
|
20
|
+
// AMD. Register as an anonymous module.
|
21
|
+
define( [ "jquery", "./version" ], factory );
|
22
|
+
} else {
|
23
|
+
|
24
|
+
// Browser globals
|
25
|
+
factory( jQuery );
|
26
|
+
}
|
27
|
+
} ( function( $ ) {
|
28
|
+
return $.ui.keyCode = {
|
29
|
+
BACKSPACE: 8,
|
30
|
+
COMMA: 188,
|
31
|
+
DELETE: 46,
|
32
|
+
DOWN: 40,
|
33
|
+
END: 35,
|
34
|
+
ENTER: 13,
|
35
|
+
ESCAPE: 27,
|
36
|
+
HOME: 36,
|
37
|
+
LEFT: 37,
|
38
|
+
PAGE_DOWN: 34,
|
39
|
+
PAGE_UP: 33,
|
40
|
+
PERIOD: 190,
|
41
|
+
RIGHT: 39,
|
42
|
+
SPACE: 32,
|
43
|
+
TAB: 9,
|
44
|
+
UP: 38
|
45
|
+
};
|
46
|
+
|
47
|
+
} ) );
|
@@ -0,0 +1,46 @@
|
|
1
|
+
//= require jquery-ui/version
|
2
|
+
|
3
|
+
( function( factory ) {
|
4
|
+
if ( typeof define === "function" && define.amd ) {
|
5
|
+
|
6
|
+
// AMD. Register as an anonymous module.
|
7
|
+
define( [ "jquery", "./version" ], factory );
|
8
|
+
} else {
|
9
|
+
|
10
|
+
// Browser globals
|
11
|
+
factory( jQuery );
|
12
|
+
}
|
13
|
+
} ( function( $ ) {
|
14
|
+
|
15
|
+
// $.ui.plugin is deprecated. Use $.widget() extensions instead.
|
16
|
+
return $.ui.plugin = {
|
17
|
+
add: function( module, option, set ) {
|
18
|
+
var i,
|
19
|
+
proto = $.ui[ module ].prototype;
|
20
|
+
for ( i in set ) {
|
21
|
+
proto.plugins[ i ] = proto.plugins[ i ] || [];
|
22
|
+
proto.plugins[ i ].push( [ option, set[ i ] ] );
|
23
|
+
}
|
24
|
+
},
|
25
|
+
call: function( instance, name, args, allowDisconnected ) {
|
26
|
+
var i,
|
27
|
+
set = instance.plugins[ name ];
|
28
|
+
|
29
|
+
if ( !set ) {
|
30
|
+
return;
|
31
|
+
}
|
32
|
+
|
33
|
+
if ( !allowDisconnected && ( !instance.element[ 0 ].parentNode ||
|
34
|
+
instance.element[ 0 ].parentNode.nodeType === 11 ) ) {
|
35
|
+
return;
|
36
|
+
}
|
37
|
+
|
38
|
+
for ( i = 0; i < set.length; i++ ) {
|
39
|
+
if ( instance.options[ set[ i ][ 0 ] ] ) {
|
40
|
+
set[ i ][ 1 ].apply( instance.element, args );
|
41
|
+
}
|
42
|
+
}
|
43
|
+
}
|
44
|
+
};
|
45
|
+
|
46
|
+
} ) );
|