kaui 4.0.0 → 4.0.1
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/app/assets/javascripts/kaui/kaui_override.js +1 -1
- data/app/assets/stylesheets/kaui/dashboard.css +31 -0
- data/app/views/kaui/components/dashboard/_setting.html.erb +32 -10
- data/app/views/kaui/components/form_input/_form_input.html.erb +4 -2
- data/app/views/kaui/components/form_password/_form_password.html.erb +4 -2
- data/app/views/kaui/home/index.html.erb +1 -45
- data/app/views/kaui/layouts/kaui_application.html.erb +12 -32
- data/app/views/kaui/sessions/_form.html.erb +3 -3
- data/config/locales/devise.en.yml +16 -11
- data/lib/kaui/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 805463d351eaabf12476b05446e7f3b8eb056b97e37e6de25c436afa0fca134b
|
|
4
|
+
data.tar.gz: 0ae2b9aeaa2dfb7c0ba5ad8f0a4d884da25bdbeab8295a9790a3bb1fa8efa3df
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c69a457e3c988c05dc27a6cb36ddb8d91fdfc6cd89b3021a98feb3399368e709a07a8802a092569a45b7a7b4e6d617e3060b598575ebd738f9c704171f4a148b
|
|
7
|
+
data.tar.gz: c7e2527b2bea8ba42730a18644d1add4afc61d96e0a8955190de6708f4c2675756e2834ea7b83ca7055b913964b3ad879a1319af632f6cd2537a892cca19daf8
|
|
@@ -273,7 +273,7 @@ jQuery(document).ready(function ($) {
|
|
|
273
273
|
return;
|
|
274
274
|
}
|
|
275
275
|
|
|
276
|
-
var message =
|
|
276
|
+
var message = getMessageFromResponse(jqxhr);
|
|
277
277
|
|
|
278
278
|
if (jqxhr.status == 200) {
|
|
279
279
|
message = thrownError.message == undefined ? thrownError : thrownError.message;
|
|
@@ -24,3 +24,34 @@
|
|
|
24
24
|
height: 2.5rem;
|
|
25
25
|
width: 2.5rem;
|
|
26
26
|
}
|
|
27
|
+
|
|
28
|
+
/* Disabled setting card styles */
|
|
29
|
+
.disabled-setting-card {
|
|
30
|
+
cursor: not-allowed !important;
|
|
31
|
+
opacity: 0.6 !important;
|
|
32
|
+
position: relative;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.disabled-setting-card .tooltip-text {
|
|
36
|
+
visibility: hidden !important;
|
|
37
|
+
position: absolute;
|
|
38
|
+
background-color: #333;
|
|
39
|
+
color: white;
|
|
40
|
+
text-align: center;
|
|
41
|
+
padding: 5px 10px;
|
|
42
|
+
border-radius: 4px;
|
|
43
|
+
bottom: 100%;
|
|
44
|
+
left: 50%;
|
|
45
|
+
transform: translateX(-50%);
|
|
46
|
+
white-space: nowrap;
|
|
47
|
+
font-size: 12px;
|
|
48
|
+
z-index: 1000;
|
|
49
|
+
margin-bottom: 5px;
|
|
50
|
+
opacity: 0 !important;
|
|
51
|
+
transition: opacity 0.2s, visibility 0.2s;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.disabled-setting-card:hover .tooltip-text {
|
|
55
|
+
visibility: visible !important;
|
|
56
|
+
opacity: 1 !important;
|
|
57
|
+
}
|
|
@@ -1,15 +1,37 @@
|
|
|
1
|
+
<% disabled ||= false %>
|
|
2
|
+
<% tooltip_message ||= nil %>
|
|
3
|
+
|
|
1
4
|
<div class="col mb-3">
|
|
2
|
-
|
|
3
|
-
<div class="
|
|
4
|
-
<div class="flex-
|
|
5
|
-
<div class="flex
|
|
6
|
-
|
|
5
|
+
<% if disabled %>
|
|
6
|
+
<div class="text-decoration-none text-reset disabled-setting-card">
|
|
7
|
+
<div class="d-flex gap-3">
|
|
8
|
+
<div class="flex-shrink-0">
|
|
9
|
+
<div class="flex items-center justify-content-center setting-card-icon border rounded-3">
|
|
10
|
+
<%= image_tag "#{icon}", height: 20 %>
|
|
11
|
+
</div>
|
|
12
|
+
</div>
|
|
13
|
+
<div>
|
|
14
|
+
<h6 class="mb-0 fw-600 text-black-900"><%= title %></h6>
|
|
15
|
+
<p class="text-muted fw-normal text-tertiary small mb-0 mt-1"><%= desc %></p>
|
|
7
16
|
</div>
|
|
8
17
|
</div>
|
|
9
|
-
|
|
10
|
-
<
|
|
11
|
-
|
|
12
|
-
</div>
|
|
18
|
+
<% if tooltip_message.present? %>
|
|
19
|
+
<span class="tooltip-text"><%= tooltip_message %></span>
|
|
20
|
+
<% end %>
|
|
13
21
|
</div>
|
|
22
|
+
<% else %>
|
|
23
|
+
<%= link_to path, class: "text-decoration-none text-reset custom-hover" do %>
|
|
24
|
+
<div class="d-flex gap-3">
|
|
25
|
+
<div class="flex-shrink-0">
|
|
26
|
+
<div class="flex items-center justify-content-center setting-card-icon border rounded-3">
|
|
27
|
+
<%= image_tag "#{icon}", height: 20 %>
|
|
28
|
+
</div>
|
|
29
|
+
</div>
|
|
30
|
+
<div>
|
|
31
|
+
<h6 class="mb-0 fw-600 text-black-900"><%= title %></h6>
|
|
32
|
+
<p class="text-muted fw-normal text-tertiary small mb-0 mt-1"><%= desc %></p>
|
|
33
|
+
</div>
|
|
34
|
+
</div>
|
|
35
|
+
<% end %>
|
|
14
36
|
<% end %>
|
|
15
|
-
</div>
|
|
37
|
+
</div>
|
|
@@ -1,4 +1,6 @@
|
|
|
1
|
+
<% value ||= nil %>
|
|
2
|
+
|
|
1
3
|
<div class="mb-3">
|
|
2
4
|
<%= f.label field, label, class: "form-label text-gray-700 fs-7" %>
|
|
3
|
-
<%= f.text_field field, class: "form-control text-gray-700 fs-7", placeholder: placeholder %>
|
|
4
|
-
</div>
|
|
5
|
+
<%= f.text_field field, class: "form-control text-gray-700 fs-7", placeholder: placeholder, value: value %>
|
|
6
|
+
</div>
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
+
<% value ||= nil %>
|
|
2
|
+
|
|
1
3
|
<div class="mb-3">
|
|
2
4
|
<div class="d-flex justify-content-between align-items-center">
|
|
3
5
|
<%= f.label field, label, class: "form-label text-gray-700 fs-7" %>
|
|
4
6
|
</div>
|
|
5
|
-
<%= f.password_field field, class: "form-control text-gray-700 fs-7", placeholder: placeholder %>
|
|
6
|
-
</div>
|
|
7
|
+
<%= f.password_field field, class: "form-control text-gray-700 fs-7", placeholder: placeholder, value: value %>
|
|
8
|
+
</div>
|
|
@@ -38,48 +38,4 @@
|
|
|
38
38
|
</div>
|
|
39
39
|
</div>
|
|
40
40
|
</div>
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
<%
|
|
44
|
-
=begin%>
|
|
45
|
-
<div class="home">
|
|
46
|
-
<div class="row">
|
|
47
|
-
<div class="col-md-6 col-md-offset-3 text-center">
|
|
48
|
-
|
|
49
|
-
<%= form_tag search_path, :id => 'home_searchform', :method => 'get' do %>
|
|
50
|
-
<%= text_field_tag :q, @search_query, :id => 'search', :placeholder => 'What are you looking for?' %>
|
|
51
|
-
<%= submit_tag 'Search' %>
|
|
52
|
-
|
|
53
|
-
<div id="advanced">
|
|
54
|
-
<%= link_to('Advanced search','#advancedSearchModal', data: { toggle: 'modal', target: '#advancedSearchModal' }) %>
|
|
55
|
-
</div>
|
|
56
|
-
<% end %>
|
|
57
|
-
|
|
58
|
-
</div>
|
|
59
|
-
<div class="col-md-6 col-md-offset-3 legend">
|
|
60
|
-
<p class="text-center">
|
|
61
|
-
<%= link_to 'Latest accounts', kaui_engine.accounts_path %> /
|
|
62
|
-
<%= link_to 'Latest invoices', kaui_engine.invoices_path %> /
|
|
63
|
-
<%= link_to 'Latest payments', kaui_engine.payments_path %>
|
|
64
|
-
</p>
|
|
65
|
-
</div>
|
|
66
|
-
</div>
|
|
67
|
-
<span class="duck_help">Accounts are searched by default. For complex searches, use <b>Advanced Search</b>.</span>
|
|
68
|
-
|
|
69
|
-
</div>
|
|
70
|
-
|
|
71
|
-
<%= render :partial => 'advanced_search_modal' %>
|
|
72
|
-
|
|
73
|
-
<script language="javascript">
|
|
74
|
-
$(document).ready(function() {
|
|
75
|
-
function alignToSearch() {
|
|
76
|
-
var leftPosition = $('#search').position().left + 25;
|
|
77
|
-
$('#advanced').css('padding-left', leftPosition);
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
alignToSearch();
|
|
81
|
-
});
|
|
82
|
-
</script>
|
|
83
|
-
<%
|
|
84
|
-
=end%>
|
|
85
|
-
</div>
|
|
41
|
+
</div>
|
|
@@ -1,35 +1,15 @@
|
|
|
1
1
|
<!DOCTYPE html>
|
|
2
2
|
<html>
|
|
3
3
|
<%= render :template => 'kaui/layouts/kaui_header' %>
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
<%
|
|
17
|
-
=end%>
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
<%
|
|
21
|
-
=begin%>
|
|
22
|
-
<% if params[:account_id].present? %>
|
|
23
|
-
<%= render :template => 'kaui/layouts/kaui_account_sidebar' %>
|
|
24
|
-
<% end %>
|
|
25
|
-
<%
|
|
26
|
-
=end%>
|
|
27
|
-
|
|
28
|
-
<div class="container-fluid auth-container">
|
|
29
|
-
<%= render :template => 'kaui/layouts/kaui_flash' %>
|
|
30
|
-
<%= yield %>
|
|
31
|
-
</div>
|
|
32
|
-
<%= render :template => 'kaui/layouts/kaui_footer' %>
|
|
33
|
-
</body>
|
|
34
|
-
|
|
35
|
-
</html>
|
|
4
|
+
<body>
|
|
5
|
+
<% if user_signed_in? -%>
|
|
6
|
+
<%= render :template => 'kaui/layouts/kaui_navbar' %>
|
|
7
|
+
<% end %>
|
|
8
|
+
|
|
9
|
+
<div class="container-fluid auth-container">
|
|
10
|
+
<%= render :template => 'kaui/layouts/kaui_flash' %>
|
|
11
|
+
<%= yield %>
|
|
12
|
+
</div>
|
|
13
|
+
<%= render :template => 'kaui/layouts/kaui_footer' %>
|
|
14
|
+
</body>
|
|
15
|
+
</html>
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
<%= form_for resource, as: resource_name, url: session_path(resource_name), html: { class: "" } do |f| %>
|
|
2
2
|
|
|
3
|
-
<%= render "kaui/components/form_input/form_input", f: f, field: :kb_username, label: "
|
|
4
|
-
<%= render "kaui/components/form_password/form_password", f: f, field: :password, label: "
|
|
3
|
+
<%= render "kaui/components/form_input/form_input", f: f, field: :kb_username, label: t("devise.sessions.new.username"), placeholder: t("devise.sessions.new.enter_username") %>
|
|
4
|
+
<%= render "kaui/components/form_password/form_password", f: f, field: :password, label: t("devise.sessions.new.password"), placeholder: "*****" %>
|
|
5
5
|
|
|
6
6
|
<div class="d-grid mt-4">
|
|
7
|
-
<%= render "kaui/components/button/button", label: "
|
|
7
|
+
<%= render "kaui/components/button/button", label: t("devise.sessions.new.log_in"), variant: "btn-primary custom-hover", type: "submit", html_class: "w-100" %>
|
|
8
8
|
</div>
|
|
9
9
|
<% end %>
|
|
@@ -3,19 +3,19 @@
|
|
|
3
3
|
en:
|
|
4
4
|
devise:
|
|
5
5
|
confirmations:
|
|
6
|
-
confirmed: "Your account was successfully confirmed. You are now
|
|
6
|
+
confirmed: "Your account was successfully confirmed. You are now logged in."
|
|
7
7
|
send_instructions: "You will receive an email with instructions about how to confirm your account in a few minutes."
|
|
8
8
|
send_paranoid_instructions: "If your email address exists in our database, you will receive an email with instructions about how to confirm your account in a few minutes."
|
|
9
9
|
failure:
|
|
10
|
-
already_authenticated: "You are already
|
|
10
|
+
already_authenticated: "You are already logged in."
|
|
11
11
|
inactive: "Your account was not activated yet."
|
|
12
12
|
invalid: "Invalid username or password."
|
|
13
13
|
invalid_token: "Invalid authentication token."
|
|
14
14
|
locked: "Your account is locked."
|
|
15
15
|
not_found_in_database: "Invalid username or password."
|
|
16
16
|
killbill_not_available: "Kill Bill is unavailable"
|
|
17
|
-
timeout: "Your session expired, please
|
|
18
|
-
unauthenticated: "You need to
|
|
17
|
+
timeout: "Your session expired, please log in again to continue."
|
|
18
|
+
unauthenticated: "You need to log in before continuing."
|
|
19
19
|
unconfirmed: "You have to confirm your account before continuing."
|
|
20
20
|
mailer:
|
|
21
21
|
confirmation_instructions:
|
|
@@ -31,26 +31,31 @@ en:
|
|
|
31
31
|
no_token: "You can't access this page without coming from a password reset email. If you do come from a password reset email, please make sure you used the full URL provided."
|
|
32
32
|
send_instructions: "You will receive an email with instructions about how to reset your password in a few minutes."
|
|
33
33
|
send_paranoid_instructions: "If your email address exists in our database, you will receive a password recovery link at your email address in a few minutes."
|
|
34
|
-
updated: "Your password was changed successfully. You are now
|
|
34
|
+
updated: "Your password was changed successfully. You are now logged in."
|
|
35
35
|
updated_not_active: "Your password was changed successfully."
|
|
36
36
|
registrations:
|
|
37
37
|
destroyed: "Bye! Your account was successfully cancelled. We hope to see you again soon."
|
|
38
38
|
signed_up: "Welcome! You have signed up successfully."
|
|
39
|
-
signed_up_but_inactive: "You have signed up successfully. However, we could not
|
|
40
|
-
signed_up_but_locked: "You have signed up successfully. However, we could not
|
|
39
|
+
signed_up_but_inactive: "You have signed up successfully. However, we could not log you in because your account is not yet activated."
|
|
40
|
+
signed_up_but_locked: "You have signed up successfully. However, we could not log you in because your account is locked."
|
|
41
41
|
signed_up_but_unconfirmed: "A message with a confirmation link has been sent to your email address. Please open the link to activate your account."
|
|
42
42
|
update_needs_confirmation: "You updated your account successfully, but we need to verify your new email address. Please check your email and click on the confirm link to finalize confirming your new email address."
|
|
43
43
|
updated: "You updated your account successfully."
|
|
44
44
|
sessions:
|
|
45
|
-
signed_in: "
|
|
46
|
-
signed_out: "
|
|
45
|
+
signed_in: "Logged in successfully."
|
|
46
|
+
signed_out: "Logged out successfully."
|
|
47
|
+
new:
|
|
48
|
+
username: "Username"
|
|
49
|
+
password: "Password"
|
|
50
|
+
enter_username: "Enter your username"
|
|
51
|
+
log_in: "Log in"
|
|
47
52
|
unlocks:
|
|
48
53
|
send_instructions: "You will receive an email with instructions about how to unlock your account in a few minutes."
|
|
49
54
|
send_paranoid_instructions: "If your account exists, you will receive an email with instructions about how to unlock it in a few minutes."
|
|
50
|
-
unlocked: "Your account has been unlocked successfully. Please
|
|
55
|
+
unlocked: "Your account has been unlocked successfully. Please log in to continue."
|
|
51
56
|
errors:
|
|
52
57
|
messages:
|
|
53
|
-
already_confirmed: "was already confirmed, please try
|
|
58
|
+
already_confirmed: "was already confirmed, please try logging in"
|
|
54
59
|
confirmation_period_expired: "needs to be confirmed within %{period}, please request a new one"
|
|
55
60
|
expired: "has expired, please request a new one"
|
|
56
61
|
not_found: "not found"
|
data/lib/kaui/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: kaui
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.0.
|
|
4
|
+
version: 4.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kill Bill core team
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2025-11-
|
|
11
|
+
date: 2025-11-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: actionpack
|