thecore_ui_commons 2.5.2 → 3.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (36) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/devise/sessions.js.erb +1 -0
  3. data/app/assets/javascripts/manifest.json.erb +21 -0
  4. data/app/assets/stylesheets/devise/sessions.css.erb +167 -0
  5. data/app/controllers/application_controller.rb +0 -8
  6. data/app/views/layouts/_footer.html.erb +6 -0
  7. data/app/views/layouts/_head.html.erb +10 -0
  8. data/app/views/layouts/devise/sessions.html.erb +25 -0
  9. data/app/views/shared/_flash.html.erb +40 -0
  10. data/config/initializers/thecore_ui_commons_assets.rb +11 -0
  11. data/config/initializers/thecore_ui_commons_configs.rb +17 -0
  12. data/config/initializers/thecore_ui_commons_helper.rb +4 -4
  13. data/db/seeds.rb +13 -1
  14. data/lib/thecore_ui_commons/engine.rb +0 -1
  15. data/lib/thecore_ui_commons/version.rb +1 -1
  16. data/lib/thecore_ui_commons.rb +5 -17
  17. metadata +57 -40
  18. data/app/assets/config/thecore_ui_commons_manifest.js +0 -0
  19. data/app/assets/images/favicon-16x16.png +0 -0
  20. data/app/assets/images/favicon-32x32.png +0 -0
  21. data/app/assets/images/mstile-150x150.png +0 -0
  22. data/app/assets/images/safari-pinned-tab.svg +0 -1042
  23. data/app/assets/images/up-arrow.png +0 -0
  24. data/app/assets/javascripts/ie.js +0 -19
  25. data/app/assets/javascripts/pages.coffee +0 -3
  26. data/app/assets/javascripts/thecore_ui_commons/thecore-devise.js +0 -3
  27. data/app/assets/javascripts/thecore_ui_commons/thecore.js +0 -12
  28. data/app/assets/javascripts/timer.js +0 -135
  29. data/app/assets/stylesheets/thecore_ui_commons/actiontext.scss +0 -36
  30. data/app/assets/stylesheets/thecore_ui_commons/thecore.scss +0 -43
  31. data/app/views/layouts/_messages.html.erb +0 -9
  32. data/app/views/layouts/_navigation.html.erb +0 -20
  33. data/app/views/layouts/_navigation_links.html.erb +0 -7
  34. data/app/views/layouts/thecore.html.erb +0 -46
  35. data/config/initializers/thecore_assets_tweak.rb +0 -5
  36. data/config/initializers/thecore_ui_commons_application_config.rb +0 -48
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1701240181701fa0f4611385a02d630a72aac79ee844a83536c79470a3177f21
4
- data.tar.gz: 7ea8ff19a579c869f0a681ef5ed03cd0fd3741af64d9e375bf13f7fdcbe98a26
3
+ metadata.gz: 86a08e66dc54796e75046d3c49d233ba10b064f5e4f87511583fa20c680e18d9
4
+ data.tar.gz: 16f30879d635c0e463e56b7563cb9d97b7ce0c76725c5c1310270fd343ec060b
5
5
  SHA512:
6
- metadata.gz: d7811d1d572e4cffb6b7787fb982710bef24af58e8212d9cedbcbc37192b3b52e7b05750879273e01a75df4baf44e63462d3135f3394be768b44d42f4fb7c2be
7
- data.tar.gz: c4f6da48e33347ac890cd0b167be718be3e7a6b753d228faddb2838e3533ac9117fdee50a1342316114620f99c827716dadd01d1b9417dd632a8774378cbb600
6
+ metadata.gz: b6b94ca3bce2745533e453c3f3f4b8ec4ca9fc834d8ab0eee138283adc026151d3aacd982cfcdfb78302e3c7d1337e67b8b86df92b12522affadf772d6b1938b
7
+ data.tar.gz: e3d255230f59b03c0602b04d0df68bacc7d83436c2fd51b5058c5cd5da28eb5c0dc515e8293707eb9bd58b75771c1586a56a9237cf62dc271e17b18df51553e6
@@ -0,0 +1 @@
1
+ console.log("I'm in login form")
@@ -0,0 +1,21 @@
1
+ {
2
+ "short_name": "<%= ThecoreSettings::Setting.where(ns: "main", key: "app_name").first.raw %>",
3
+ "icons": [
4
+ {
5
+ "src": "<%= image_path 'android-chrome-192x192.png' %>",
6
+ "sizes": "192x192",
7
+ "type": "image/png"
8
+ },
9
+ {
10
+ "src": "<%= image_path 'android-chrome-512x512.png' %>",
11
+ "sizes": "512x512",
12
+ "type": "image/png"
13
+ }
14
+ ],
15
+ "name": "<%= ThecoreSettings::Setting.where(ns: "main", key: "app_name").first.raw %>",
16
+ "theme_color": "<%= ThecoreSettings::Setting.where(ns: "theme", key: "main_color").first.raw %>",
17
+ "background_color": "<%= ThecoreSettings::Setting.where(ns: "theme", key: "main_color").first.raw %>",
18
+ "orientation": "portrait",
19
+ "display": "standalone",
20
+ "optional_permissions": ["clipboardWrite", "clipboardRead"]
21
+ }
@@ -0,0 +1,167 @@
1
+ <%
2
+ @text_color = Settings.ns(:theme).text_color
3
+ @accents_color = Settings.ns(:theme).accents_color
4
+ @background_color = Settings.ns(:theme).background_color
5
+ @main_color = Settings.ns(:theme).main_color
6
+ @shadows_color = Settings.ns(:theme).shadows_color
7
+
8
+ @neutral_color = Settings.ns(:theme).neutral_color
9
+ @success_color = Settings.ns(:theme).success_color
10
+ @info_color = Settings.ns(:theme).info_color
11
+ @danger_color = Settings.ns(:theme).danger_color
12
+ @warning_color = Settings.ns(:theme).warning_color
13
+ %>
14
+
15
+ html, body {
16
+ width: 100vw;
17
+ height: 100vh;
18
+ }
19
+ body {
20
+ margin: 0;
21
+ background-color: <%= @main_color %>;
22
+ overflow: hidden;
23
+ }
24
+ /* unvisited link */
25
+ a:link {
26
+ color: <%= @accents_color %>;
27
+ }
28
+
29
+ /* visited link */
30
+ a:visited {
31
+ color: <%= @background_color %>;
32
+ }
33
+
34
+ /* mouse over link */
35
+ a:hover {
36
+ color: <%= @text_color %>;
37
+ }
38
+
39
+ /* selected link */
40
+ a:active {
41
+ color: <%= @accents_color %>;
42
+ }
43
+ .container {
44
+ display : flex;
45
+ flex-direction: column;
46
+ align-items : center;
47
+ justify-content: space-evenly;
48
+ min-height: calc(100vh - 2em);
49
+ }
50
+ #footer {
51
+ display : flex;
52
+ align-items : center;
53
+ justify-content: center;
54
+ background-color: <%= @shadows_color %>;
55
+ width: 100vw;
56
+ height: 2em;
57
+ color: <%= @text_color %>;
58
+ padding-top: 4px;
59
+ padding-bottom: 4px;
60
+ }
61
+ #footer img {
62
+ height: 2em;
63
+ }
64
+ #main-menu-app-header, #main-menu-app-description {
65
+ display: none;
66
+ }
67
+ #main-menu-app-logo {
68
+ width: 10vw;
69
+ }
70
+ .contained {
71
+ display : flex;
72
+ flex-direction: column;
73
+ align-items : center;
74
+ justify-content: space-evenly;
75
+ width: 30vw;
76
+ background-color: <%= @shadows_color %>;
77
+ border-radius: 1em;
78
+ border: 1px solid <%= @background_color %>;
79
+ padding: 1em;
80
+ }
81
+ .contained div {
82
+ margin-bottom: 1em;
83
+ }
84
+ .form-control {
85
+ display: block;
86
+ width: 100%;
87
+ height: 34px;
88
+ padding: 6px 12px;
89
+ font-size: 14px;
90
+ line-height: 1.42857143;
91
+ color: #555;
92
+ background-color: #fff;
93
+ background-image: none;
94
+ border: 1px solid #ccc;
95
+ border-radius: 4px;
96
+ -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
97
+ box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
98
+ -webkit-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
99
+ -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
100
+ -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
101
+ transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
102
+ transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
103
+ transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
104
+ }
105
+
106
+ .btn-default {
107
+ color: #333;
108
+ background-color: #fff;
109
+ border-color: #ccc;
110
+ }
111
+
112
+ .btn {
113
+ display: inline-block;
114
+ margin-bottom: 0;
115
+ font-weight: 400;
116
+ text-align: center;
117
+ white-space: nowrap;
118
+ vertical-align: middle;
119
+ -ms-touch-action: manipulation;
120
+ touch-action: manipulation;
121
+ cursor: pointer;
122
+ background-image: none;
123
+ border: 1px solid transparent;
124
+ padding: 6px 12px;
125
+ font-size: 14px;
126
+ line-height: 1.42857143;
127
+ border-radius: 4px;
128
+ -webkit-user-select: none;
129
+ -moz-user-select: none;
130
+ -ms-user-select: none;
131
+ user-select: none;
132
+ }
133
+
134
+ .form-check-label {
135
+ color: <%= @text_color %>;
136
+ }
137
+
138
+ .alert-warning {
139
+ color: <%= @shadows_color %>;
140
+ background-color: <%= @warning_color %>;
141
+ border-color: <%= @background_color %>;
142
+ }
143
+
144
+ .alert-success {
145
+ color: <%= @shadows_color %>;
146
+ background-color: <%= @success_color %>;
147
+ border-color: <%= @background_color %>;
148
+ }
149
+
150
+ .alert-danger {
151
+ color: <%= @shadows_color %>;
152
+ background-color: <%= @danger_color %>;
153
+ border-color: <%= @background_color %>;
154
+ }
155
+
156
+ .alert-info {
157
+ color: <%= @shadows_color %>;
158
+ background-color: <%= @info_color %>;
159
+ border-color: <%= @background_color %>;
160
+ }
161
+
162
+ .alert {
163
+ padding: 15px;
164
+ margin-bottom: 20px;
165
+ border: 1px solid transparent;
166
+ border-radius: 4px;
167
+ }
@@ -1,10 +1,2 @@
1
1
  class ApplicationController < ActionController::Base
2
- before_action :setup_white_label
3
-
4
- private
5
-
6
- def setup_white_label
7
- # Somewhat white label support
8
- prepend_view_path(["vendor/custombuilds/#{ENV['COMPOSE_PROJECT_NAME']}.#{ENV['BASE_DOMAIN']}/deltas/app/views"]) if ENV['COMPOSE_PROJECT_NAME'].present? && ENV['BASE_DOMAIN'].present?
9
- end
10
2
  end
@@ -0,0 +1,6 @@
1
+ <div id="footer">
2
+ Made by
3
+ <a href="https://github.com/gabrieletassoni/" target="_blank"><img src="<%= image_path 'logo.png' %>"></a>
4
+ using Thecore's
5
+ <a href="https://github.com/gabrieletassoni/model_driven_api" target="_blank">Model Driven API</a>.
6
+ </div>
@@ -0,0 +1,10 @@
1
+ <meta charset="UTF-8">
2
+ <meta name="apple-mobile-web-app-capable" content="yes">
3
+ <meta name="viewport" content="width=device-width, initial-scale=1">
4
+ <title><%= Settings.app_name rescue "Thecore" %></title>
5
+ <link rel="icon" type="image/x-icon" href="<%= image_path 'favicon.ico' %>">
6
+ <%= tag("link", rel: "manifest", href: asset_path("manifest.json", skip_pipeline: true)) %>
7
+ <meta name="turbo-cache-control" content="no-cache">
8
+ <meta name="theme-color" content="#3b4e59">
9
+ <%= csrf_meta_tags %>
10
+
@@ -0,0 +1,25 @@
1
+ <!DOCTYPE html>
2
+ <html lang="<%=I18n.locale%>">
3
+ <head>
4
+ <%= render partial: "layouts/head" %>
5
+ <%= stylesheet_link_tag "devise/sessions.css", media: :all, data: {'turbo-track': 'reload'} %>
6
+ <%= javascript_include_tag "devise/sessions.js", defer: true, data: {'turbo-track': 'reload'} %>
7
+ </head>
8
+ <body>
9
+ <link rel="apple-touch-icon" href="apple-touch-icon.png">
10
+ <%- unless flash.blank? %>
11
+ <%= render partial: 'shared/flash' %>
12
+ <%-end%>
13
+ <div class="jumbotron">
14
+ <div class="container">
15
+ <div class="contained">
16
+ <div class="logos">
17
+ <%=render partial: 'layouts/logos'%>
18
+ </div>
19
+ <%= yield %>
20
+ </div>
21
+ </div>
22
+ <%= render 'layouts/footer' %>
23
+ </div>
24
+ </body>
25
+ </html>
@@ -0,0 +1,40 @@
1
+ <style>
2
+ .alerts {
3
+ position: absolute;
4
+ top: 1em !important;
5
+ bottom: auto !important;
6
+ right: 2.5em !important;
7
+ width: auto !important;
8
+ }
9
+ .alert {
10
+ z-index: 9999 !important;
11
+ border-radius: 2em !important;
12
+ animation: hideMe 5s 1;
13
+ animation-fill-mode: forwards;
14
+ animation-delay: 2s;
15
+ }
16
+ .close {
17
+ background-color: transparent;
18
+ border: none;
19
+ }
20
+ @keyframes hideMe {
21
+ 0% {
22
+ opacity: 1;
23
+ }
24
+ 100% {
25
+ opacity: 0;
26
+ }
27
+ }
28
+ </style>
29
+
30
+ <div class="alerts">
31
+ <% flash.each do |type, message| %>
32
+ <%-unless [true, "true", :true].include? message%>
33
+ <div class="alert <%= bootstrap_class_for(type) %> alert-dismissible fade-out show" role="alert">
34
+ <button class="close" data-dismiss="alert">×</button>
35
+ <span class="sr-only"><%= type.capitalize%>:</span>
36
+ <%= message %>
37
+ </div>
38
+ <%-end%>
39
+ <% end %>
40
+ </div>
@@ -0,0 +1,11 @@
1
+ Rails.application.configure do
2
+ config.assets.precompile += %w(
3
+ android-chrome-192x192.png
4
+ android-chrome-512x512.png
5
+ apple-touch-icon.png
6
+ favicon.ico
7
+ customer_logo.png
8
+ logo.png
9
+ )
10
+ config.assets.precompile += %w( devise/sessions.css devise/sessions.js )
11
+ end
@@ -0,0 +1,17 @@
1
+ Rails.application.configure do
2
+ config.filter_parameters += [:password]
3
+
4
+ config.active_record.raise_in_transactional_callbacks = true
5
+
6
+ config.serviceworker.routes.draw do
7
+ match "/manifest.json"
8
+ end
9
+
10
+ config.assets.configure do |env|
11
+ env.export_concurrent = false
12
+ end
13
+
14
+ config.after_initialize do
15
+ User.send(:include, ThecoreUiCommonsUser)
16
+ end
17
+ end
@@ -9,13 +9,13 @@ module Helpers
9
9
  base_s = Dir["#{base}.{css,scss}"]
10
10
  base_j = Dir["#{base}.js"]
11
11
 
12
- (out << stylesheet_link_tag("#{get_folder base_s}/#{basename}", media: 'all', 'data-turbolinks-track' => true) if base_s.any?) rescue nil
13
- (out << javascript_include_tag("#{get_folder base_j}/#{basename}", 'data-turbolinks-track' => true) if base_j.any?) rescue nil
12
+ (out << stylesheet_link_tag("#{get_folder base_s}/#{basename}", media: 'all', 'data-turbo-track' => true) if base_s.any?) rescue nil
13
+ (out << javascript_include_tag("#{get_folder base_j}/#{basename}", 'data-turbo-track' => true) if base_j.any?) rescue nil
14
14
  end
15
15
 
16
16
  # Application level assets
17
- (out << stylesheet_link_tag('application', media: 'all', 'data-turbolinks-track' => true)) rescue nil
18
- (out << javascript_include_tag('application', 'data-turbolinks-track' => true)) rescue nil
17
+ (out << stylesheet_link_tag('application', media: 'all', 'data-turbo-track' => true)) rescue nil
18
+ (out << javascript_include_tag('application', 'data-turbo-track' => true)) rescue nil
19
19
 
20
20
  out.join("\n").html_safe
21
21
  end
data/db/seeds.rb CHANGED
@@ -1,4 +1,16 @@
1
1
  puts "Loading ThecoreUiCommons seeds"
2
2
 
3
3
  Thecore::Seed.save_setting :importer, :import_from_folder, "tmp/imports"
4
- Thecore::Seed.save_setting :importer, :extension, "txt"
4
+ Thecore::Seed.save_setting :importer, :extension, "txt"
5
+
6
+ Thecore::Seed.save_setting :theme, :text_color, "#FFEAD0"
7
+ Thecore::Seed.save_setting :theme, :accents_color, "#F76F8E"
8
+ Thecore::Seed.save_setting :theme, :background_color, "#96616B"
9
+ Thecore::Seed.save_setting :theme, :main_color, "#37505C"
10
+ Thecore::Seed.save_setting :theme, :shadows_color, "#113537"
11
+
12
+ Thecore::Seed.save_setting :theme, :neutral_color, "#999999"
13
+ Thecore::Seed.save_setting :theme, :success_color, "#37BC9B"
14
+ Thecore::Seed.save_setting :theme, :info_color, "#CCCCCC"
15
+ Thecore::Seed.save_setting :theme, :danger_color, "#E9573F"
16
+ Thecore::Seed.save_setting :theme, :warning_color, "#F6BB42"
@@ -2,7 +2,6 @@ module ThecoreUiCommons
2
2
  class Engine < ::Rails::Engine
3
3
  initializer 'thecore_ui_commons.add_to_migrations' do |app|
4
4
  # Adds the list of Thecore Engines, so to manage seeds loading, i.e.:
5
- # Thecore::Base.thecore_engines.each { |engine| engine.load_seed }
6
5
  Thecore::Base.thecore_engines << self.class
7
6
  unless app.root.to_s.match root.to_s
8
7
  # APPEND TO MAIN APP MIGRATIONS FROM THIS GEM
@@ -1,3 +1,3 @@
1
1
  module ThecoreUiCommons
2
- VERSION = "#{`git describe --tags $(git rev-list --tags --max-count=1)`.chomp}"
2
+ VERSION = "3.0.0" #"#{`git describe --tags $(git rev-list --tags --max-count=1)`.chomp}"
3
3
  end
@@ -1,37 +1,25 @@
1
+ require 'haml'
2
+ require 'haml-rails'
3
+
1
4
  require 'thecore_background_jobs' # This brings backend commons also.
2
5
  # Rails
3
6
  require 'serviceworker-rails'
4
7
  require "groupdate"
5
8
  require "apexcharts"
6
- # require "gtk3"
7
- # require "cairo"
8
- # require "poppler"
9
9
  require "image_processing"
10
10
 
11
11
  require 'concerns/thecore_ui_commons_user'
12
12
 
13
- # require 'helpers/thecore_ui_commons_helper'
14
- # require 'helpers/charts_helper'
15
-
16
13
  require "thecore_ui_commons/engine"
17
14
 
18
15
  module ThecoreUiCommons
19
- # Your code goes here...
20
-
21
16
  def self.save_files files
22
- Rails.logger.debug "AAAAAAAAAAA: POST?"
23
17
  files.each do |pic|
24
- # Rails.logger.debug "AAAAAAAAAAA: EACH PIC: #{pic.inspect}"
25
18
  upload_dir = Rails.root.join(Settings.ns(:importer).import_from_folder, 'uploads')
26
19
  FileUtils.mkdir_p upload_dir
27
- # Rails.logger.debug "AAAAAAAAAAA: Fatto MKDIR di #{upload_dir}"
28
20
  file_to_upload = Rails.root.join(upload_dir, "uploaded-#{Time.now.strftime("%Y%m%d%H%M%S%L")}-#{pic.original_filename}")
29
- # Rails.logger.debug "AAAAAAAAAAA: File da uploadare #{file_to_upload}"
30
- # Rails.logger.debug "AAAAAAAAAAA: File da uploadare esiste? #{File.exists?(file_to_upload)}"
31
- File.open(file_to_upload, 'wb') do |file|
32
- # Rails.logger.debug "AAAAAAAAAAAAAAAAAA: Dentro alla scrittura"
33
- file.write(pic.read)
34
- end if Regexp.new("\\.#{Settings.ns(:importer).extension.gsub(/ +/, "").split(",").join("|\\.")}$").match? pic.original_filename
21
+
22
+ File.open(file_to_upload, 'wb') { |file| file.write(pic.read) } if Regexp.new("\\.#{Settings.ns(:importer).extension.gsub(/ +/, "").split(",").join("|\\.")}$").match? pic.original_filename
35
23
  end
36
24
  end
37
25
  end
metadata CHANGED
@@ -1,85 +1,113 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: thecore_ui_commons
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.5.2
4
+ version: 3.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gabriele Tassoni
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-09-26 00:00:00.000000000 Z
11
+ date: 2023-02-06 00:00:00.000000000 Z
12
12
  dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: haml
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: haml-rails
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
13
41
  - !ruby/object:Gem::Dependency
14
42
  name: thecore_background_jobs
15
43
  requirement: !ruby/object:Gem::Requirement
16
44
  requirements:
17
45
  - - "~>"
18
46
  - !ruby/object:Gem::Version
19
- version: '2.2'
47
+ version: '3.0'
20
48
  type: :runtime
21
49
  prerelease: false
22
50
  version_requirements: !ruby/object:Gem::Requirement
23
51
  requirements:
24
52
  - - "~>"
25
53
  - !ruby/object:Gem::Version
26
- version: '2.2'
54
+ version: '3.0'
27
55
  - !ruby/object:Gem::Dependency
28
56
  name: serviceworker-rails
29
57
  requirement: !ruby/object:Gem::Requirement
30
58
  requirements:
31
- - - "~>"
59
+ - - ">="
32
60
  - !ruby/object:Gem::Version
33
- version: '0.5'
61
+ version: '0'
34
62
  type: :runtime
35
63
  prerelease: false
36
64
  version_requirements: !ruby/object:Gem::Requirement
37
65
  requirements:
38
- - - "~>"
66
+ - - ">="
39
67
  - !ruby/object:Gem::Version
40
- version: '0.5'
68
+ version: '0'
41
69
  - !ruby/object:Gem::Dependency
42
70
  name: groupdate
43
71
  requirement: !ruby/object:Gem::Requirement
44
72
  requirements:
45
- - - "~>"
73
+ - - ">="
46
74
  - !ruby/object:Gem::Version
47
- version: '5.0'
75
+ version: '0'
48
76
  type: :runtime
49
77
  prerelease: false
50
78
  version_requirements: !ruby/object:Gem::Requirement
51
79
  requirements:
52
- - - "~>"
80
+ - - ">="
53
81
  - !ruby/object:Gem::Version
54
- version: '5.0'
82
+ version: '0'
55
83
  - !ruby/object:Gem::Dependency
56
84
  name: apexcharts
57
85
  requirement: !ruby/object:Gem::Requirement
58
86
  requirements:
59
- - - "~>"
87
+ - - ">="
60
88
  - !ruby/object:Gem::Version
61
- version: '0.1'
89
+ version: '0'
62
90
  type: :runtime
63
91
  prerelease: false
64
92
  version_requirements: !ruby/object:Gem::Requirement
65
93
  requirements:
66
- - - "~>"
94
+ - - ">="
67
95
  - !ruby/object:Gem::Version
68
- version: '0.1'
96
+ version: '0'
69
97
  - !ruby/object:Gem::Dependency
70
98
  name: image_processing
71
99
  requirement: !ruby/object:Gem::Requirement
72
100
  requirements:
73
- - - "~>"
101
+ - - ">="
74
102
  - !ruby/object:Gem::Version
75
- version: '1.2'
103
+ version: '0'
76
104
  type: :runtime
77
105
  prerelease: false
78
106
  version_requirements: !ruby/object:Gem::Requirement
79
107
  requirements:
80
- - - "~>"
108
+ - - ">="
81
109
  - !ruby/object:Gem::Version
82
- version: '1.2'
110
+ version: '0'
83
111
  description: Engine to serve configurations and rails module useful for all the UIs.
84
112
  email:
85
113
  - gabriele.tassoni@gmail.com
@@ -90,26 +118,16 @@ files:
90
118
  - MIT-LICENSE
91
119
  - README.md
92
120
  - Rakefile
93
- - app/assets/config/thecore_ui_commons_manifest.js
94
121
  - app/assets/images/android-chrome-192x192.png
95
122
  - app/assets/images/android-chrome-512x512.png
96
123
  - app/assets/images/apple-touch-icon.png
97
124
  - app/assets/images/customer_logo.png
98
- - app/assets/images/favicon-16x16.png
99
- - app/assets/images/favicon-32x32.png
100
125
  - app/assets/images/favicon.ico
101
126
  - app/assets/images/logo.png
102
- - app/assets/images/mstile-150x150.png
103
- - app/assets/images/safari-pinned-tab.svg
104
- - app/assets/images/up-arrow.png
105
127
  - app/assets/javascripts/browserconfig.xml
106
- - app/assets/javascripts/ie.js
107
- - app/assets/javascripts/pages.coffee
108
- - app/assets/javascripts/thecore_ui_commons/thecore-devise.js
109
- - app/assets/javascripts/thecore_ui_commons/thecore.js
110
- - app/assets/javascripts/timer.js
111
- - app/assets/stylesheets/thecore_ui_commons/actiontext.scss
112
- - app/assets/stylesheets/thecore_ui_commons/thecore.scss
128
+ - app/assets/javascripts/devise/sessions.js.erb
129
+ - app/assets/javascripts/manifest.json.erb
130
+ - app/assets/stylesheets/devise/sessions.css.erb
113
131
  - app/controllers/application_controller.rb
114
132
  - app/views/active_storage/blobs/_blob.html.erb
115
133
  - app/views/contact_mailer/contact_message.html.erb
@@ -134,17 +152,16 @@ files:
134
152
  - app/views/kaminari/_paginator.html.erb
135
153
  - app/views/kaminari/_prev_page.html.erb
136
154
  - app/views/layouts/_footer.html.erb
155
+ - app/views/layouts/_head.html.erb
137
156
  - app/views/layouts/_logos.html.erb
138
- - app/views/layouts/_messages.html.erb
139
- - app/views/layouts/_navigation.html.erb
140
- - app/views/layouts/_navigation_links.html.erb
157
+ - app/views/layouts/devise/sessions.html.erb
141
158
  - app/views/layouts/mailer.html.erb
142
159
  - app/views/layouts/mailer.text.erb
143
- - app/views/layouts/thecore.html.erb
160
+ - app/views/shared/_flash.html.erb
144
161
  - app/views/thecore_utils/_drag_drop_uploader.html.erb
145
162
  - config/initializers/charts_helper.rb
146
- - config/initializers/thecore_assets_tweak.rb
147
- - config/initializers/thecore_ui_commons_application_config.rb
163
+ - config/initializers/thecore_ui_commons_assets.rb
164
+ - config/initializers/thecore_ui_commons_configs.rb
148
165
  - config/initializers/thecore_ui_commons_helper.rb
149
166
  - config/locales/en.ra_settings.yml
150
167
  - config/locales/en.simple_form.yml
@@ -181,7 +198,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
181
198
  - !ruby/object:Gem::Version
182
199
  version: '0'
183
200
  requirements: []
184
- rubygems_version: 3.0.3.1
201
+ rubygems_version: 3.3.26
185
202
  signing_key:
186
203
  specification_version: 4
187
204
  summary: Common artifacts for the UIs.
File without changes
Binary file
Binary file
Binary file