kono_utils_bootstrap_view4 0.1.0.pre.rc.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/MIT-LICENSE +20 -0
- data/README.md +21 -0
- data/Rakefile +32 -0
- data/app/assets/config/kono_utils_bootstrap_view4_manifest.js +0 -0
- data/app/assets/javascripts/kono_utils_bootstrap_view4/application.js.erb +12 -0
- data/app/assets/javascripts/kono_utils_bootstrap_view4/kono_utils_bootstrap_view4.js +36 -0
- data/app/assets/stylesheets/kono_utils_bootstrap_view4/application.css.scss.erb +12 -0
- data/app/concepts/kono_utils/object/cell/base.rb +123 -0
- data/app/concepts/kono_utils/object/cell/buttons/base.rb +57 -0
- data/app/concepts/kono_utils/object/cell/buttons/collapse_search.rb +31 -0
- data/app/concepts/kono_utils/object/cell/buttons/create.rb +22 -0
- data/app/concepts/kono_utils/object/cell/buttons/delete.rb +32 -0
- data/app/concepts/kono_utils/object/cell/buttons/download.rb +23 -0
- data/app/concepts/kono_utils/object/cell/buttons/edit.rb +18 -0
- data/app/concepts/kono_utils/object/cell/buttons/list.rb +17 -0
- data/app/concepts/kono_utils/object/cell/buttons/reset_search.rb +21 -0
- data/app/concepts/kono_utils/object/cell/create/base.rb +8 -0
- data/app/concepts/kono_utils/object/cell/create/page_title.rb +10 -0
- data/app/concepts/kono_utils/object/cell/create/side_title.rb +5 -0
- data/app/concepts/kono_utils/object/cell/edits/base.rb +8 -0
- data/app/concepts/kono_utils/object/cell/edits/page_title.rb +10 -0
- data/app/concepts/kono_utils/object/cell/edits/side_title.rb +5 -0
- data/app/concepts/kono_utils/object/cell/form.rb +51 -0
- data/app/concepts/kono_utils/object/cell/forms/base.rb +13 -0
- data/app/concepts/kono_utils/object/cell/forms/container.rb +25 -0
- data/app/concepts/kono_utils/object/cell/forms/containers/layout.rb +16 -0
- data/app/concepts/kono_utils/object/cell/forms/containers/modal_layout.rb +7 -0
- data/app/concepts/kono_utils/object/cell/forms/containers/search_layout.rb +7 -0
- data/app/concepts/kono_utils/object/cell/forms/containers/table_layout.rb +8 -0
- data/app/concepts/kono_utils/object/cell/forms/field_selector.rb +77 -0
- data/app/concepts/kono_utils/object/cell/forms/field_selectors/layout.rb +7 -0
- data/app/concepts/kono_utils/object/cell/forms/field_selectors/modal_layout.rb +7 -0
- data/app/concepts/kono_utils/object/cell/forms/field_selectors/table_layout.rb +8 -0
- data/app/concepts/kono_utils/object/cell/forms/fields/association.rb +7 -0
- data/app/concepts/kono_utils/object/cell/forms/fields/base.rb +25 -0
- data/app/concepts/kono_utils/object/cell/forms/fields/bases/layout.rb +24 -0
- data/app/concepts/kono_utils/object/cell/forms/fields/bases/modal_layout.rb +7 -0
- data/app/concepts/kono_utils/object/cell/forms/fields/bases/table_layout.rb +11 -0
- data/app/concepts/kono_utils/object/cell/forms/fields/check_box.rb +10 -0
- data/app/concepts/kono_utils/object/cell/forms/fields/collection.rb +17 -0
- data/app/concepts/kono_utils/object/cell/forms/fields/date_field.rb +15 -0
- data/app/concepts/kono_utils/object/cell/forms/fields/date_time_field.rb +51 -0
- data/app/concepts/kono_utils/object/cell/forms/fields/enum.rb +20 -0
- data/app/concepts/kono_utils/object/cell/forms/fields/file_field.rb +31 -0
- data/app/concepts/kono_utils/object/cell/forms/fields/nested_modal_wrapper.rb +6 -0
- data/app/concepts/kono_utils/object/cell/forms/fields/nested_modal_wrappers/forms_container.rb +9 -0
- data/app/concepts/kono_utils/object/cell/forms/fields/nested_modal_wrappers/show.rb +14 -0
- data/app/concepts/kono_utils/object/cell/forms/fields/nested_wrapper.rb +63 -0
- data/app/concepts/kono_utils/object/cell/forms/fields/nested_wrappers/form.rb +38 -0
- data/app/concepts/kono_utils/object/cell/forms/fields/nested_wrappers/forms/layout.rb +13 -0
- data/app/concepts/kono_utils/object/cell/forms/fields/nested_wrappers/forms/modal_layout.rb +7 -0
- data/app/concepts/kono_utils/object/cell/forms/fields/nested_wrappers/forms/table_layout.rb +7 -0
- data/app/concepts/kono_utils/object/cell/forms/fields/nested_wrappers/forms_container.rb +45 -0
- data/app/concepts/kono_utils/object/cell/forms/fields/nested_wrappers/forms_containers/layout.rb +15 -0
- data/app/concepts/kono_utils/object/cell/forms/fields/nested_wrappers/forms_containers/modal_layout.rb +9 -0
- data/app/concepts/kono_utils/object/cell/forms/fields/nested_wrappers/forms_containers/table_layout.rb +16 -0
- data/app/concepts/kono_utils/object/cell/forms/fields/nested_wrappers/header.rb +31 -0
- data/app/concepts/kono_utils/object/cell/forms/fields/nested_wrappers/remove_button.rb +44 -0
- data/app/concepts/kono_utils/object/cell/forms/fields/nested_wrappers/remove_buttons/layout.rb +10 -0
- data/app/concepts/kono_utils/object/cell/forms/fields/nested_wrappers/remove_buttons/modal_layout.rb +7 -0
- data/app/concepts/kono_utils/object/cell/forms/fields/nested_wrappers/remove_buttons/table_layout.rb +7 -0
- data/app/concepts/kono_utils/object/cell/forms/fields/read_only.rb +15 -0
- data/app/concepts/kono_utils/object/cell/forms/fields/time_field.rb +11 -0
- data/app/concepts/kono_utils/object/cell/forms/layout.rb +7 -0
- data/app/concepts/kono_utils/object/cell/forms/submit.rb +22 -0
- data/app/concepts/kono_utils/object/cell/index/base.rb +12 -0
- data/app/concepts/kono_utils/object/cell/index/page_title.rb +10 -0
- data/app/concepts/kono_utils/object/cell/index/row.rb +40 -0
- data/app/concepts/kono_utils/object/cell/index/row_buttons.rb +7 -0
- data/app/concepts/kono_utils/object/cell/index/row_footer.rb +6 -0
- data/app/concepts/kono_utils/object/cell/index/row_header.rb +11 -0
- data/app/concepts/kono_utils/object/cell/index/side_title.rb +5 -0
- data/app/concepts/kono_utils/object/cell/index/table.rb +15 -0
- data/app/concepts/kono_utils/object/cell/inject.rb +122 -0
- data/app/concepts/kono_utils/object/cell/modals/base.rb +6 -0
- data/app/concepts/kono_utils/object/cell/modals/bodies/layout.rb +7 -0
- data/app/concepts/kono_utils/object/cell/modals/body.rb +6 -0
- data/app/concepts/kono_utils/object/cell/modals/container.rb +24 -0
- data/app/concepts/kono_utils/object/cell/modals/containers/layout.rb +10 -0
- data/app/concepts/kono_utils/object/cell/modals/footer.rb +6 -0
- data/app/concepts/kono_utils/object/cell/modals/footers/layout.rb +7 -0
- data/app/concepts/kono_utils/object/cell/modals/header.rb +6 -0
- data/app/concepts/kono_utils/object/cell/modals/headers/layout.rb +7 -0
- data/app/concepts/kono_utils/object/cell/search.rb +27 -0
- data/app/concepts/kono_utils/object/cell/searches/form.rb +14 -0
- data/app/concepts/kono_utils/object/cell/show.rb +26 -0
- data/app/concepts/kono_utils/object/cell/shows/base.rb +8 -0
- data/app/concepts/kono_utils/object/cell/shows/page_title.rb +10 -0
- data/app/concepts/kono_utils/object/cell/shows/side_title.rb +5 -0
- data/app/concepts/kono_utils/object/view/create/side_title.erb +1 -0
- data/app/concepts/kono_utils/object/view/edits/side_title.erb +1 -0
- data/app/concepts/kono_utils/object/view/form.erb +9 -0
- data/app/concepts/kono_utils/object/view/forms/container.erb +5 -0
- data/app/concepts/kono_utils/object/view/forms/containers/layout.erb +3 -0
- data/app/concepts/kono_utils/object/view/forms/containers/modal_layout.erb +5 -0
- data/app/concepts/kono_utils/object/view/forms/containers/search_layout.erb +1 -0
- data/app/concepts/kono_utils/object/view/forms/containers/table_layout.erb +1 -0
- data/app/concepts/kono_utils/object/view/forms/field_selector.erb +1 -0
- data/app/concepts/kono_utils/object/view/forms/field_selectors/layout.erb +1 -0
- data/app/concepts/kono_utils/object/view/forms/field_selectors/modal_layout.erb +1 -0
- data/app/concepts/kono_utils/object/view/forms/field_selectors/table_layout.erb +1 -0
- data/app/concepts/kono_utils/object/view/forms/fields/association.erb +1 -0
- data/app/concepts/kono_utils/object/view/forms/fields/base.erb +1 -0
- data/app/concepts/kono_utils/object/view/forms/fields/bases/layout.erb +3 -0
- data/app/concepts/kono_utils/object/view/forms/fields/bases/layout.scss +25 -0
- data/app/concepts/kono_utils/object/view/forms/fields/bases/modal_layout.erb +3 -0
- data/app/concepts/kono_utils/object/view/forms/fields/bases/table_layout.erb +3 -0
- data/app/concepts/kono_utils/object/view/forms/fields/check_box.erb +1 -0
- data/app/concepts/kono_utils/object/view/forms/fields/collection.erb +1 -0
- data/app/concepts/kono_utils/object/view/forms/fields/nested_modal_wrapper.erb +23 -0
- data/app/concepts/kono_utils/object/view/forms/fields/nested_modal_wrappers/forms_container.erb +12 -0
- data/app/concepts/kono_utils/object/view/forms/fields/nested_modal_wrappers/show.erb +28 -0
- data/app/concepts/kono_utils/object/view/forms/fields/nested_wrapper.erb +18 -0
- data/app/concepts/kono_utils/object/view/forms/fields/nested_wrappers/form.erb +17 -0
- data/app/concepts/kono_utils/object/view/forms/fields/nested_wrappers/forms/layout.erb +18 -0
- data/app/concepts/kono_utils/object/view/forms/fields/nested_wrappers/forms/modal_layout.erb +4 -0
- data/app/concepts/kono_utils/object/view/forms/fields/nested_wrappers/forms/table_layout.erb +4 -0
- data/app/concepts/kono_utils/object/view/forms/fields/nested_wrappers/forms_container.erb +11 -0
- data/app/concepts/kono_utils/object/view/forms/fields/nested_wrappers/forms_containers/layout.erb +3 -0
- data/app/concepts/kono_utils/object/view/forms/fields/nested_wrappers/forms_containers/modal_layout.erb +3 -0
- data/app/concepts/kono_utils/object/view/forms/fields/nested_wrappers/forms_containers/table_layout.erb +14 -0
- data/app/concepts/kono_utils/object/view/forms/fields/nested_wrappers/header.erb +27 -0
- data/app/concepts/kono_utils/object/view/forms/fields/nested_wrappers/remove_button.erb +28 -0
- data/app/concepts/kono_utils/object/view/forms/fields/nested_wrappers/remove_buttons/layout.erb +1 -0
- data/app/concepts/kono_utils/object/view/forms/fields/nested_wrappers/remove_buttons/modal_layout.erb +1 -0
- data/app/concepts/kono_utils/object/view/forms/fields/nested_wrappers/remove_buttons/table_layout.erb +3 -0
- data/app/concepts/kono_utils/object/view/forms/layout.erb +1 -0
- data/app/concepts/kono_utils/object/view/index/row.erb +10 -0
- data/app/concepts/kono_utils/object/view/index/row_buttons.erb +2 -0
- data/app/concepts/kono_utils/object/view/index/row_footer.erb +0 -0
- data/app/concepts/kono_utils/object/view/index/row_header.erb +8 -0
- data/app/concepts/kono_utils/object/view/index/side_title.erb +1 -0
- data/app/concepts/kono_utils/object/view/index/table.erb +9 -0
- data/app/concepts/kono_utils/object/view/inject.erb +8 -0
- data/app/concepts/kono_utils/object/view/modals/bodies/layout.erb +3 -0
- data/app/concepts/kono_utils/object/view/modals/body.erb +1 -0
- data/app/concepts/kono_utils/object/view/modals/container.erb +13 -0
- data/app/concepts/kono_utils/object/view/modals/containers/layout.erb +7 -0
- data/app/concepts/kono_utils/object/view/modals/footer.erb +1 -0
- data/app/concepts/kono_utils/object/view/modals/footers/layout.erb +3 -0
- data/app/concepts/kono_utils/object/view/modals/header.erb +1 -0
- data/app/concepts/kono_utils/object/view/modals/headers/layout.erb +3 -0
- data/app/concepts/kono_utils/object/view/search.erb +40 -0
- data/app/concepts/kono_utils/object/view/searches/form.erb +16 -0
- data/app/concepts/kono_utils/object/view/show.erb +6 -0
- data/app/concepts/kono_utils/object/view/shows/side_title.erb +1 -0
- data/app/inputs/file_input_download_input.rb +22 -0
- data/app/inputs/tempus_dominus_input.rb +38 -0
- data/app/views/kaminari/_first_page.html.erb +3 -0
- data/app/views/kaminari/_gap.html.erb +3 -0
- data/app/views/kaminari/_last_page.html.erb +3 -0
- data/app/views/kaminari/_next_page.html.erb +3 -0
- data/app/views/kaminari/_page.html.erb +9 -0
- data/app/views/kaminari/_paginator.html.erb +17 -0
- data/app/views/kaminari/_prev_page.html.erb +3 -0
- data/app/views/kono_utils/base_editing/edit.html.erb +8 -0
- data/app/views/kono_utils/base_editing/edit.inject.erb +2 -0
- data/app/views/kono_utils/base_editing/index.html.erb +10 -0
- data/app/views/kono_utils/base_editing/new.html.erb +9 -0
- data/app/views/kono_utils/base_editing/new.inject.erb +2 -0
- data/app/views/kono_utils/base_editing/show.html.erb +8 -0
- data/app/views/kono_utils/base_editing/success_create_show.inject.erb +6 -0
- data/app/views/kono_utils/base_editing/success_update_show.inject.erb +6 -0
- data/config/initializers/kaminari_config.rb +30 -0
- data/config/initializers/simple_form.rb +179 -0
- data/config/initializers/simple_form_bootstrap.rb +439 -0
- data/config/locales/kono_utils_bootstrap4.en.yml +15 -0
- data/config/locales/kono_utils_bootstrap4.it.yml +15 -0
- data/config/locales/simple_form.en.yml +31 -0
- data/config/routes.rb +2 -0
- data/lib/generators/kono_utils_bootstrap_view4/concept/concept_generator.rb +79 -0
- data/lib/generators/kono_utils_bootstrap_view4/concept/templates/form.template +8 -0
- data/lib/generators/kono_utils_bootstrap_view4/concept/templates/forms/field_selector.template +13 -0
- data/lib/generators/kono_utils_bootstrap_view4/install/install_generator.rb +76 -0
- data/lib/generators/kono_utils_bootstrap_view4/install/templates/kono_utils_bootstrap_view4.js.erb.template +20 -0
- data/lib/generators/kono_utils_bootstrap_view4/install/templates/kono_utils_bootstrap_view4.template +5 -0
- data/lib/kono_utils_bootstrap_view4.rb +26 -0
- data/lib/kono_utils_bootstrap_view4/application_icon_helper.rb +31 -0
- data/lib/kono_utils_bootstrap_view4/base_class_concept_ns.rb +47 -0
- data/lib/kono_utils_bootstrap_view4/base_search.rb +5 -0
- data/lib/kono_utils_bootstrap_view4/configuration.rb +20 -0
- data/lib/kono_utils_bootstrap_view4/editable_field.rb +63 -0
- data/lib/kono_utils_bootstrap_view4/engine.rb +59 -0
- data/lib/kono_utils_bootstrap_view4/paginate_proxer.rb +11 -0
- data/lib/kono_utils_bootstrap_view4/search_form_builder.rb +14 -0
- data/lib/kono_utils_bootstrap_view4/version.rb +3 -0
- data/lib/tasks/kono_utils_bootstrap_view4_tasks.rake +4 -0
- data/lib/templates/erb/scaffold/_form.html.erb +15 -0
- metadata +391 -0
@@ -0,0 +1,59 @@
|
|
1
|
+
module KonoUtilsBootstrapView4
|
2
|
+
class Engine < ::Rails::Engine
|
3
|
+
|
4
|
+
require 'trailblazer/cells'
|
5
|
+
require 'cell/erb'
|
6
|
+
require 'cell/rails'
|
7
|
+
require 'kaminari'
|
8
|
+
require 'kaminari/actionview/action_view_extension'
|
9
|
+
require 'simple_form'
|
10
|
+
require "kaminari-cells"
|
11
|
+
require 'data-confirm-modal'
|
12
|
+
require 'kono_utils'
|
13
|
+
|
14
|
+
initializer 'kono_utils_bootstrap_view4.append_views', :before => 'kono_utils.append_views', :group => :all do |app|
|
15
|
+
ActionController::Base.append_view_path KonoUtilsBootstrapView4::Engine.root.join("app", "views", "kono_utils")
|
16
|
+
ActionController::Base.append_view_path KonoUtilsBootstrapView4::Engine.root.join("app", "views", "kono_utils", "base_editing")
|
17
|
+
end
|
18
|
+
|
19
|
+
initializer 'kono_utils_bootstrap_view4.set_paginator', :group => :all do |app|
|
20
|
+
KonoUtils.configure do |c|
|
21
|
+
c.pagination_proxer = KonoUtilsBootstrapView4::PaginateProxer
|
22
|
+
end
|
23
|
+
end
|
24
|
+
|
25
|
+
initializer 'kono_utils_bootstrap_view4.set_search_form_builder', :group => :all do |app|
|
26
|
+
KonoUtils.configure do |c|
|
27
|
+
c.search_form_builder = KonoUtilsBootstrapView4::SearchFormBuilder
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
31
|
+
initializer 'kono_utils_bootstrap_view4.append_helpers', after: 'kono_utils.append_helpers', :group => :all do |app|
|
32
|
+
KonoUtils.configure do |c|
|
33
|
+
c.application_helper_includes << KonoUtilsBootstrapView4::ApplicationIconHelper
|
34
|
+
end
|
35
|
+
end
|
36
|
+
|
37
|
+
##
|
38
|
+
# Abbiamo rimosso possibili JS, lasciamo per documentazione
|
39
|
+
initializer 'kono_utils_bootstrap_view4.append_cell_assets', :group => :all do |app|
|
40
|
+
# app.config.cells.with_assets = [] if app.config.cells.with_assets.nil?
|
41
|
+
# app.config.cells.with_assets += [
|
42
|
+
# "kono_utils/object/cell/form"
|
43
|
+
# ]
|
44
|
+
|
45
|
+
app.reloader.to_prepare do
|
46
|
+
Array([
|
47
|
+
"kono_utils/object/cell/forms/fields/bases/layout"
|
48
|
+
]).each do |cell_class|
|
49
|
+
puts "@@@@@ #{cell_class.camelize.constantize.prefixes}"
|
50
|
+
app.config.assets.paths += cell_class.camelize.constantize.prefixes # Song::Cell.prefixes
|
51
|
+
end
|
52
|
+
end
|
53
|
+
|
54
|
+
|
55
|
+
Rails.logger.warn { "config.assets.initialize_on_precompile should be true" } unless app.config.assets.initialize_on_precompile == true
|
56
|
+
end
|
57
|
+
|
58
|
+
end
|
59
|
+
end
|
@@ -0,0 +1,15 @@
|
|
1
|
+
<%# frozen_string_literal: true %>
|
2
|
+
<%%= simple_form_for(@<%= singular_table_name %>) do |f| %>
|
3
|
+
<%%= f.error_notification %>
|
4
|
+
<%%= f.error_notification message: f.object.errors[:base].to_sentence if f.object.errors[:base].present? %>
|
5
|
+
|
6
|
+
<div class="form-inputs">
|
7
|
+
<%- attributes.each do |attribute| -%>
|
8
|
+
<%%= f.<%= attribute.reference? ? :association : :input %> :<%= attribute.name %> %>
|
9
|
+
<%- end -%>
|
10
|
+
</div>
|
11
|
+
|
12
|
+
<div class="form-actions">
|
13
|
+
<%%= f.button :submit %>
|
14
|
+
</div>
|
15
|
+
<%% end %>
|
metadata
ADDED
@@ -0,0 +1,391 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: kono_utils_bootstrap_view4
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0.pre.rc.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Marino Bonetti
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2021-01-18 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: rails
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '5.2'
|
20
|
+
- - "<"
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: '7'
|
23
|
+
type: :runtime
|
24
|
+
prerelease: false
|
25
|
+
version_requirements: !ruby/object:Gem::Requirement
|
26
|
+
requirements:
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '5.2'
|
30
|
+
- - "<"
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: '7'
|
33
|
+
- !ruby/object:Gem::Dependency
|
34
|
+
name: kono_utils
|
35
|
+
requirement: !ruby/object:Gem::Requirement
|
36
|
+
requirements:
|
37
|
+
- - "~>"
|
38
|
+
- !ruby/object:Gem::Version
|
39
|
+
version: '1.1'
|
40
|
+
type: :runtime
|
41
|
+
prerelease: false
|
42
|
+
version_requirements: !ruby/object:Gem::Requirement
|
43
|
+
requirements:
|
44
|
+
- - "~>"
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
version: '1.1'
|
47
|
+
- !ruby/object:Gem::Dependency
|
48
|
+
name: kaminari
|
49
|
+
requirement: !ruby/object:Gem::Requirement
|
50
|
+
requirements:
|
51
|
+
- - "~>"
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: '1.1'
|
54
|
+
type: :runtime
|
55
|
+
prerelease: false
|
56
|
+
version_requirements: !ruby/object:Gem::Requirement
|
57
|
+
requirements:
|
58
|
+
- - "~>"
|
59
|
+
- !ruby/object:Gem::Version
|
60
|
+
version: '1.1'
|
61
|
+
- !ruby/object:Gem::Dependency
|
62
|
+
name: simple_form
|
63
|
+
requirement: !ruby/object:Gem::Requirement
|
64
|
+
requirements:
|
65
|
+
- - "~>"
|
66
|
+
- !ruby/object:Gem::Version
|
67
|
+
version: '4.1'
|
68
|
+
type: :runtime
|
69
|
+
prerelease: false
|
70
|
+
version_requirements: !ruby/object:Gem::Requirement
|
71
|
+
requirements:
|
72
|
+
- - "~>"
|
73
|
+
- !ruby/object:Gem::Version
|
74
|
+
version: '4.1'
|
75
|
+
- !ruby/object:Gem::Dependency
|
76
|
+
name: data-confirm-modal
|
77
|
+
requirement: !ruby/object:Gem::Requirement
|
78
|
+
requirements:
|
79
|
+
- - ">="
|
80
|
+
- !ruby/object:Gem::Version
|
81
|
+
version: '0'
|
82
|
+
type: :runtime
|
83
|
+
prerelease: false
|
84
|
+
version_requirements: !ruby/object:Gem::Requirement
|
85
|
+
requirements:
|
86
|
+
- - ">="
|
87
|
+
- !ruby/object:Gem::Version
|
88
|
+
version: '0'
|
89
|
+
- !ruby/object:Gem::Dependency
|
90
|
+
name: zeitwerk
|
91
|
+
requirement: !ruby/object:Gem::Requirement
|
92
|
+
requirements:
|
93
|
+
- - ">="
|
94
|
+
- !ruby/object:Gem::Version
|
95
|
+
version: '0'
|
96
|
+
type: :runtime
|
97
|
+
prerelease: false
|
98
|
+
version_requirements: !ruby/object:Gem::Requirement
|
99
|
+
requirements:
|
100
|
+
- - ">="
|
101
|
+
- !ruby/object:Gem::Version
|
102
|
+
version: '0'
|
103
|
+
- !ruby/object:Gem::Dependency
|
104
|
+
name: trailblazer-cells
|
105
|
+
requirement: !ruby/object:Gem::Requirement
|
106
|
+
requirements:
|
107
|
+
- - "~>"
|
108
|
+
- !ruby/object:Gem::Version
|
109
|
+
version: 0.0.3
|
110
|
+
type: :runtime
|
111
|
+
prerelease: false
|
112
|
+
version_requirements: !ruby/object:Gem::Requirement
|
113
|
+
requirements:
|
114
|
+
- - "~>"
|
115
|
+
- !ruby/object:Gem::Version
|
116
|
+
version: 0.0.3
|
117
|
+
- !ruby/object:Gem::Dependency
|
118
|
+
name: cells-rails
|
119
|
+
requirement: !ruby/object:Gem::Requirement
|
120
|
+
requirements:
|
121
|
+
- - ">="
|
122
|
+
- !ruby/object:Gem::Version
|
123
|
+
version: '0'
|
124
|
+
type: :runtime
|
125
|
+
prerelease: false
|
126
|
+
version_requirements: !ruby/object:Gem::Requirement
|
127
|
+
requirements:
|
128
|
+
- - ">="
|
129
|
+
- !ruby/object:Gem::Version
|
130
|
+
version: '0'
|
131
|
+
- !ruby/object:Gem::Dependency
|
132
|
+
name: cells-erb
|
133
|
+
requirement: !ruby/object:Gem::Requirement
|
134
|
+
requirements:
|
135
|
+
- - ">="
|
136
|
+
- !ruby/object:Gem::Version
|
137
|
+
version: '0'
|
138
|
+
type: :runtime
|
139
|
+
prerelease: false
|
140
|
+
version_requirements: !ruby/object:Gem::Requirement
|
141
|
+
requirements:
|
142
|
+
- - ">="
|
143
|
+
- !ruby/object:Gem::Version
|
144
|
+
version: '0'
|
145
|
+
- !ruby/object:Gem::Dependency
|
146
|
+
name: kaminari-cells
|
147
|
+
requirement: !ruby/object:Gem::Requirement
|
148
|
+
requirements:
|
149
|
+
- - ">="
|
150
|
+
- !ruby/object:Gem::Version
|
151
|
+
version: '0'
|
152
|
+
type: :runtime
|
153
|
+
prerelease: false
|
154
|
+
version_requirements: !ruby/object:Gem::Requirement
|
155
|
+
requirements:
|
156
|
+
- - ">="
|
157
|
+
- !ruby/object:Gem::Version
|
158
|
+
version: '0'
|
159
|
+
- !ruby/object:Gem::Dependency
|
160
|
+
name: sqlite3
|
161
|
+
requirement: !ruby/object:Gem::Requirement
|
162
|
+
requirements:
|
163
|
+
- - ">="
|
164
|
+
- !ruby/object:Gem::Version
|
165
|
+
version: '0'
|
166
|
+
type: :development
|
167
|
+
prerelease: false
|
168
|
+
version_requirements: !ruby/object:Gem::Requirement
|
169
|
+
requirements:
|
170
|
+
- - ">="
|
171
|
+
- !ruby/object:Gem::Version
|
172
|
+
version: '0'
|
173
|
+
description: Extrapolation of the old view in an external gem
|
174
|
+
email:
|
175
|
+
- marinobonetti@gmail.com
|
176
|
+
executables: []
|
177
|
+
extensions: []
|
178
|
+
extra_rdoc_files: []
|
179
|
+
files:
|
180
|
+
- MIT-LICENSE
|
181
|
+
- README.md
|
182
|
+
- Rakefile
|
183
|
+
- app/assets/config/kono_utils_bootstrap_view4_manifest.js
|
184
|
+
- app/assets/javascripts/kono_utils_bootstrap_view4/application.js.erb
|
185
|
+
- app/assets/javascripts/kono_utils_bootstrap_view4/kono_utils_bootstrap_view4.js
|
186
|
+
- app/assets/stylesheets/kono_utils_bootstrap_view4/application.css.scss.erb
|
187
|
+
- app/concepts/kono_utils/object/cell/base.rb
|
188
|
+
- app/concepts/kono_utils/object/cell/buttons/base.rb
|
189
|
+
- app/concepts/kono_utils/object/cell/buttons/collapse_search.rb
|
190
|
+
- app/concepts/kono_utils/object/cell/buttons/create.rb
|
191
|
+
- app/concepts/kono_utils/object/cell/buttons/delete.rb
|
192
|
+
- app/concepts/kono_utils/object/cell/buttons/download.rb
|
193
|
+
- app/concepts/kono_utils/object/cell/buttons/edit.rb
|
194
|
+
- app/concepts/kono_utils/object/cell/buttons/list.rb
|
195
|
+
- app/concepts/kono_utils/object/cell/buttons/reset_search.rb
|
196
|
+
- app/concepts/kono_utils/object/cell/create/base.rb
|
197
|
+
- app/concepts/kono_utils/object/cell/create/page_title.rb
|
198
|
+
- app/concepts/kono_utils/object/cell/create/side_title.rb
|
199
|
+
- app/concepts/kono_utils/object/cell/edits/base.rb
|
200
|
+
- app/concepts/kono_utils/object/cell/edits/page_title.rb
|
201
|
+
- app/concepts/kono_utils/object/cell/edits/side_title.rb
|
202
|
+
- app/concepts/kono_utils/object/cell/form.rb
|
203
|
+
- app/concepts/kono_utils/object/cell/forms/base.rb
|
204
|
+
- app/concepts/kono_utils/object/cell/forms/container.rb
|
205
|
+
- app/concepts/kono_utils/object/cell/forms/containers/layout.rb
|
206
|
+
- app/concepts/kono_utils/object/cell/forms/containers/modal_layout.rb
|
207
|
+
- app/concepts/kono_utils/object/cell/forms/containers/search_layout.rb
|
208
|
+
- app/concepts/kono_utils/object/cell/forms/containers/table_layout.rb
|
209
|
+
- app/concepts/kono_utils/object/cell/forms/field_selector.rb
|
210
|
+
- app/concepts/kono_utils/object/cell/forms/field_selectors/layout.rb
|
211
|
+
- app/concepts/kono_utils/object/cell/forms/field_selectors/modal_layout.rb
|
212
|
+
- app/concepts/kono_utils/object/cell/forms/field_selectors/table_layout.rb
|
213
|
+
- app/concepts/kono_utils/object/cell/forms/fields/association.rb
|
214
|
+
- app/concepts/kono_utils/object/cell/forms/fields/base.rb
|
215
|
+
- app/concepts/kono_utils/object/cell/forms/fields/bases/layout.rb
|
216
|
+
- app/concepts/kono_utils/object/cell/forms/fields/bases/modal_layout.rb
|
217
|
+
- app/concepts/kono_utils/object/cell/forms/fields/bases/table_layout.rb
|
218
|
+
- app/concepts/kono_utils/object/cell/forms/fields/check_box.rb
|
219
|
+
- app/concepts/kono_utils/object/cell/forms/fields/collection.rb
|
220
|
+
- app/concepts/kono_utils/object/cell/forms/fields/date_field.rb
|
221
|
+
- app/concepts/kono_utils/object/cell/forms/fields/date_time_field.rb
|
222
|
+
- app/concepts/kono_utils/object/cell/forms/fields/enum.rb
|
223
|
+
- app/concepts/kono_utils/object/cell/forms/fields/file_field.rb
|
224
|
+
- app/concepts/kono_utils/object/cell/forms/fields/nested_modal_wrapper.rb
|
225
|
+
- app/concepts/kono_utils/object/cell/forms/fields/nested_modal_wrappers/forms_container.rb
|
226
|
+
- app/concepts/kono_utils/object/cell/forms/fields/nested_modal_wrappers/show.rb
|
227
|
+
- app/concepts/kono_utils/object/cell/forms/fields/nested_wrapper.rb
|
228
|
+
- app/concepts/kono_utils/object/cell/forms/fields/nested_wrappers/form.rb
|
229
|
+
- app/concepts/kono_utils/object/cell/forms/fields/nested_wrappers/forms/layout.rb
|
230
|
+
- app/concepts/kono_utils/object/cell/forms/fields/nested_wrappers/forms/modal_layout.rb
|
231
|
+
- app/concepts/kono_utils/object/cell/forms/fields/nested_wrappers/forms/table_layout.rb
|
232
|
+
- app/concepts/kono_utils/object/cell/forms/fields/nested_wrappers/forms_container.rb
|
233
|
+
- app/concepts/kono_utils/object/cell/forms/fields/nested_wrappers/forms_containers/layout.rb
|
234
|
+
- app/concepts/kono_utils/object/cell/forms/fields/nested_wrappers/forms_containers/modal_layout.rb
|
235
|
+
- app/concepts/kono_utils/object/cell/forms/fields/nested_wrappers/forms_containers/table_layout.rb
|
236
|
+
- app/concepts/kono_utils/object/cell/forms/fields/nested_wrappers/header.rb
|
237
|
+
- app/concepts/kono_utils/object/cell/forms/fields/nested_wrappers/remove_button.rb
|
238
|
+
- app/concepts/kono_utils/object/cell/forms/fields/nested_wrappers/remove_buttons/layout.rb
|
239
|
+
- app/concepts/kono_utils/object/cell/forms/fields/nested_wrappers/remove_buttons/modal_layout.rb
|
240
|
+
- app/concepts/kono_utils/object/cell/forms/fields/nested_wrappers/remove_buttons/table_layout.rb
|
241
|
+
- app/concepts/kono_utils/object/cell/forms/fields/read_only.rb
|
242
|
+
- app/concepts/kono_utils/object/cell/forms/fields/time_field.rb
|
243
|
+
- app/concepts/kono_utils/object/cell/forms/layout.rb
|
244
|
+
- app/concepts/kono_utils/object/cell/forms/submit.rb
|
245
|
+
- app/concepts/kono_utils/object/cell/index/base.rb
|
246
|
+
- app/concepts/kono_utils/object/cell/index/page_title.rb
|
247
|
+
- app/concepts/kono_utils/object/cell/index/row.rb
|
248
|
+
- app/concepts/kono_utils/object/cell/index/row_buttons.rb
|
249
|
+
- app/concepts/kono_utils/object/cell/index/row_footer.rb
|
250
|
+
- app/concepts/kono_utils/object/cell/index/row_header.rb
|
251
|
+
- app/concepts/kono_utils/object/cell/index/side_title.rb
|
252
|
+
- app/concepts/kono_utils/object/cell/index/table.rb
|
253
|
+
- app/concepts/kono_utils/object/cell/inject.rb
|
254
|
+
- app/concepts/kono_utils/object/cell/modals/base.rb
|
255
|
+
- app/concepts/kono_utils/object/cell/modals/bodies/layout.rb
|
256
|
+
- app/concepts/kono_utils/object/cell/modals/body.rb
|
257
|
+
- app/concepts/kono_utils/object/cell/modals/container.rb
|
258
|
+
- app/concepts/kono_utils/object/cell/modals/containers/layout.rb
|
259
|
+
- app/concepts/kono_utils/object/cell/modals/footer.rb
|
260
|
+
- app/concepts/kono_utils/object/cell/modals/footers/layout.rb
|
261
|
+
- app/concepts/kono_utils/object/cell/modals/header.rb
|
262
|
+
- app/concepts/kono_utils/object/cell/modals/headers/layout.rb
|
263
|
+
- app/concepts/kono_utils/object/cell/search.rb
|
264
|
+
- app/concepts/kono_utils/object/cell/searches/form.rb
|
265
|
+
- app/concepts/kono_utils/object/cell/show.rb
|
266
|
+
- app/concepts/kono_utils/object/cell/shows/base.rb
|
267
|
+
- app/concepts/kono_utils/object/cell/shows/page_title.rb
|
268
|
+
- app/concepts/kono_utils/object/cell/shows/side_title.rb
|
269
|
+
- app/concepts/kono_utils/object/view/create/side_title.erb
|
270
|
+
- app/concepts/kono_utils/object/view/edits/side_title.erb
|
271
|
+
- app/concepts/kono_utils/object/view/form.erb
|
272
|
+
- app/concepts/kono_utils/object/view/forms/container.erb
|
273
|
+
- app/concepts/kono_utils/object/view/forms/containers/layout.erb
|
274
|
+
- app/concepts/kono_utils/object/view/forms/containers/modal_layout.erb
|
275
|
+
- app/concepts/kono_utils/object/view/forms/containers/search_layout.erb
|
276
|
+
- app/concepts/kono_utils/object/view/forms/containers/table_layout.erb
|
277
|
+
- app/concepts/kono_utils/object/view/forms/field_selector.erb
|
278
|
+
- app/concepts/kono_utils/object/view/forms/field_selectors/layout.erb
|
279
|
+
- app/concepts/kono_utils/object/view/forms/field_selectors/modal_layout.erb
|
280
|
+
- app/concepts/kono_utils/object/view/forms/field_selectors/table_layout.erb
|
281
|
+
- app/concepts/kono_utils/object/view/forms/fields/association.erb
|
282
|
+
- app/concepts/kono_utils/object/view/forms/fields/base.erb
|
283
|
+
- app/concepts/kono_utils/object/view/forms/fields/bases/layout.erb
|
284
|
+
- app/concepts/kono_utils/object/view/forms/fields/bases/layout.scss
|
285
|
+
- app/concepts/kono_utils/object/view/forms/fields/bases/modal_layout.erb
|
286
|
+
- app/concepts/kono_utils/object/view/forms/fields/bases/table_layout.erb
|
287
|
+
- app/concepts/kono_utils/object/view/forms/fields/check_box.erb
|
288
|
+
- app/concepts/kono_utils/object/view/forms/fields/collection.erb
|
289
|
+
- app/concepts/kono_utils/object/view/forms/fields/nested_modal_wrapper.erb
|
290
|
+
- app/concepts/kono_utils/object/view/forms/fields/nested_modal_wrappers/forms_container.erb
|
291
|
+
- app/concepts/kono_utils/object/view/forms/fields/nested_modal_wrappers/show.erb
|
292
|
+
- app/concepts/kono_utils/object/view/forms/fields/nested_wrapper.erb
|
293
|
+
- app/concepts/kono_utils/object/view/forms/fields/nested_wrappers/form.erb
|
294
|
+
- app/concepts/kono_utils/object/view/forms/fields/nested_wrappers/forms/layout.erb
|
295
|
+
- app/concepts/kono_utils/object/view/forms/fields/nested_wrappers/forms/modal_layout.erb
|
296
|
+
- app/concepts/kono_utils/object/view/forms/fields/nested_wrappers/forms/table_layout.erb
|
297
|
+
- app/concepts/kono_utils/object/view/forms/fields/nested_wrappers/forms_container.erb
|
298
|
+
- app/concepts/kono_utils/object/view/forms/fields/nested_wrappers/forms_containers/layout.erb
|
299
|
+
- app/concepts/kono_utils/object/view/forms/fields/nested_wrappers/forms_containers/modal_layout.erb
|
300
|
+
- app/concepts/kono_utils/object/view/forms/fields/nested_wrappers/forms_containers/table_layout.erb
|
301
|
+
- app/concepts/kono_utils/object/view/forms/fields/nested_wrappers/header.erb
|
302
|
+
- app/concepts/kono_utils/object/view/forms/fields/nested_wrappers/remove_button.erb
|
303
|
+
- app/concepts/kono_utils/object/view/forms/fields/nested_wrappers/remove_buttons/layout.erb
|
304
|
+
- app/concepts/kono_utils/object/view/forms/fields/nested_wrappers/remove_buttons/modal_layout.erb
|
305
|
+
- app/concepts/kono_utils/object/view/forms/fields/nested_wrappers/remove_buttons/table_layout.erb
|
306
|
+
- app/concepts/kono_utils/object/view/forms/layout.erb
|
307
|
+
- app/concepts/kono_utils/object/view/index/row.erb
|
308
|
+
- app/concepts/kono_utils/object/view/index/row_buttons.erb
|
309
|
+
- app/concepts/kono_utils/object/view/index/row_footer.erb
|
310
|
+
- app/concepts/kono_utils/object/view/index/row_header.erb
|
311
|
+
- app/concepts/kono_utils/object/view/index/side_title.erb
|
312
|
+
- app/concepts/kono_utils/object/view/index/table.erb
|
313
|
+
- app/concepts/kono_utils/object/view/inject.erb
|
314
|
+
- app/concepts/kono_utils/object/view/modals/bodies/layout.erb
|
315
|
+
- app/concepts/kono_utils/object/view/modals/body.erb
|
316
|
+
- app/concepts/kono_utils/object/view/modals/container.erb
|
317
|
+
- app/concepts/kono_utils/object/view/modals/containers/layout.erb
|
318
|
+
- app/concepts/kono_utils/object/view/modals/footer.erb
|
319
|
+
- app/concepts/kono_utils/object/view/modals/footers/layout.erb
|
320
|
+
- app/concepts/kono_utils/object/view/modals/header.erb
|
321
|
+
- app/concepts/kono_utils/object/view/modals/headers/layout.erb
|
322
|
+
- app/concepts/kono_utils/object/view/search.erb
|
323
|
+
- app/concepts/kono_utils/object/view/searches/form.erb
|
324
|
+
- app/concepts/kono_utils/object/view/show.erb
|
325
|
+
- app/concepts/kono_utils/object/view/shows/side_title.erb
|
326
|
+
- app/inputs/file_input_download_input.rb
|
327
|
+
- app/inputs/tempus_dominus_input.rb
|
328
|
+
- app/views/kaminari/_first_page.html.erb
|
329
|
+
- app/views/kaminari/_gap.html.erb
|
330
|
+
- app/views/kaminari/_last_page.html.erb
|
331
|
+
- app/views/kaminari/_next_page.html.erb
|
332
|
+
- app/views/kaminari/_page.html.erb
|
333
|
+
- app/views/kaminari/_paginator.html.erb
|
334
|
+
- app/views/kaminari/_prev_page.html.erb
|
335
|
+
- app/views/kono_utils/base_editing/edit.html.erb
|
336
|
+
- app/views/kono_utils/base_editing/edit.inject.erb
|
337
|
+
- app/views/kono_utils/base_editing/index.html.erb
|
338
|
+
- app/views/kono_utils/base_editing/new.html.erb
|
339
|
+
- app/views/kono_utils/base_editing/new.inject.erb
|
340
|
+
- app/views/kono_utils/base_editing/show.html.erb
|
341
|
+
- app/views/kono_utils/base_editing/success_create_show.inject.erb
|
342
|
+
- app/views/kono_utils/base_editing/success_update_show.inject.erb
|
343
|
+
- config/initializers/kaminari_config.rb
|
344
|
+
- config/initializers/simple_form.rb
|
345
|
+
- config/initializers/simple_form_bootstrap.rb
|
346
|
+
- config/locales/kono_utils_bootstrap4.en.yml
|
347
|
+
- config/locales/kono_utils_bootstrap4.it.yml
|
348
|
+
- config/locales/simple_form.en.yml
|
349
|
+
- config/routes.rb
|
350
|
+
- lib/generators/kono_utils_bootstrap_view4/concept/concept_generator.rb
|
351
|
+
- lib/generators/kono_utils_bootstrap_view4/concept/templates/form.template
|
352
|
+
- lib/generators/kono_utils_bootstrap_view4/concept/templates/forms/field_selector.template
|
353
|
+
- lib/generators/kono_utils_bootstrap_view4/install/install_generator.rb
|
354
|
+
- lib/generators/kono_utils_bootstrap_view4/install/templates/kono_utils_bootstrap_view4.js.erb.template
|
355
|
+
- lib/generators/kono_utils_bootstrap_view4/install/templates/kono_utils_bootstrap_view4.template
|
356
|
+
- lib/kono_utils_bootstrap_view4.rb
|
357
|
+
- lib/kono_utils_bootstrap_view4/application_icon_helper.rb
|
358
|
+
- lib/kono_utils_bootstrap_view4/base_class_concept_ns.rb
|
359
|
+
- lib/kono_utils_bootstrap_view4/base_search.rb
|
360
|
+
- lib/kono_utils_bootstrap_view4/configuration.rb
|
361
|
+
- lib/kono_utils_bootstrap_view4/editable_field.rb
|
362
|
+
- lib/kono_utils_bootstrap_view4/engine.rb
|
363
|
+
- lib/kono_utils_bootstrap_view4/paginate_proxer.rb
|
364
|
+
- lib/kono_utils_bootstrap_view4/search_form_builder.rb
|
365
|
+
- lib/kono_utils_bootstrap_view4/version.rb
|
366
|
+
- lib/tasks/kono_utils_bootstrap_view4_tasks.rake
|
367
|
+
- lib/templates/erb/scaffold/_form.html.erb
|
368
|
+
homepage: https://github.com/ArchimediaZerogroup/KonoUtilsBootstrap4
|
369
|
+
licenses:
|
370
|
+
- MIT
|
371
|
+
metadata: {}
|
372
|
+
post_install_message:
|
373
|
+
rdoc_options: []
|
374
|
+
require_paths:
|
375
|
+
- lib
|
376
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
377
|
+
requirements:
|
378
|
+
- - ">="
|
379
|
+
- !ruby/object:Gem::Version
|
380
|
+
version: '0'
|
381
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
382
|
+
requirements:
|
383
|
+
- - ">"
|
384
|
+
- !ruby/object:Gem::Version
|
385
|
+
version: 1.3.1
|
386
|
+
requirements: []
|
387
|
+
rubygems_version: 3.0.8
|
388
|
+
signing_key:
|
389
|
+
specification_version: 4
|
390
|
+
summary: Extrapolation of the old view in an external gem
|
391
|
+
test_files: []
|