satis 2.1.60 → 2.1.61

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9726463882df1d5b1d5e74c2b4f7800df64ca8ffae1b111d441500621686ba99
4
- data.tar.gz: eda32cc883571354849bb912f7881a33020b93f58659a5794bf1982ffdd6d164
3
+ metadata.gz: 061bf1edddfde525ee223cd979a02df4d7fd1b7d3692d5618625c71db7181903
4
+ data.tar.gz: 95da7c206c9d6c5a652b7104619381aac17cc7817b30fb27093eaf09df4f541f
5
5
  SHA512:
6
- metadata.gz: 838731d4216a2021639364a4584001243cad0038225ea38b40583588832af02e2dd3e8ccf3f779c0dd3a0b769913ebb886293a7004b320ae0be344c73b56450d
7
- data.tar.gz: eaee6844cec69481c2388da70e32a31f24eda1ebdc51b7bfe95db173fa6c7b31b61ed1f9cc7da14e5dc95b42afbaaa4d582188c9404285c7166d0b0c1862bd38
6
+ metadata.gz: a32a57d5bfc6b3d42e81e53928d07d498e3ea115b11c4d573bb55f9d4dc436905d8c2ec7b0233445668df74b4353f238b5226f6f358bfcc727bb8019f520b423
7
+ data.tar.gz: 5c85fbbf5858d795f988561a171bf5b668b9aa63d0fd3ba96566727f059e7083c72d5405eec08f902fd7d3d9d35e2c469f0fbab1bf974b21ca306d85c89a2c83
@@ -62,6 +62,8 @@ form {
62
62
  input.is-invalid,
63
63
  select.is-invalid {
64
64
  @apply border-red-300 dark:border-red-500 text-red-900 placeholder-red-300 focus:outline-none focus:ring-red-500 focus:border-red-500;
65
+ border: 1px solid red;
66
+ border-radius: 0.375rem;
65
67
  }
66
68
 
67
69
  input[type="checkbox"].custom-control-input {
@@ -31,7 +31,7 @@
31
31
  }
32
32
 
33
33
  .topbar .satis-dropdown .sts-dropdown{
34
- @apply bg-white dark:bg-gray-900 outline dark:outline-none outline-gray-200 outline-1 rounded-md shadow-none shadow-md;
34
+ @apply bg-white dark:bg-gray-900 outline dark:outline-none outline-gray-200 outline-1 rounded-md shadow-none;
35
35
  }
36
36
 
37
37
  .page_body .satis-dropdown .sts-dropdown{
@@ -12,7 +12,7 @@ div.satis-dropdown data-action="keydown->satis-dropdown#dispatch" data-controlle
12
12
  .h-12.p-1.flex.rounded
13
13
  .flex.flex-auto.flex-wrap.sts-dropdown-input
14
14
  / Input where you can search
15
- input.focus:ring-0.border-none.p-1.px-2.appearance-none.w-full.sts-dropdown-input.text-gray-800.dark:text-gray-300 data-action="input->satis-dropdown#search" data-satis-dropdown-target="searchInput" placeholder=placeholder autofocus=options[:autofocus]
15
+ input.focus:ring-0.border-none.p-1.px-2.appearance-none.w-full.sts-dropdown-input.text-gray-800.dark:text-gray-300 class=input_class data-action="input->satis-dropdown#search" data-satis-dropdown-target="searchInput" placeholder=placeholder autofocus=options[:autofocus]
16
16
  div
17
17
  / Reset button
18
18
  - unless @reset_button == false
@@ -31,11 +31,11 @@ module Satis
31
31
 
32
32
  unless options[:input_html]["data-reflex"]
33
33
  actions = [options[:input_html]["data-action"], "change->satis-dropdown#display",
34
- "focus->satis-dropdown#focus"].join(" ")
34
+ "focus->satis-dropdown#focus"].join(" ")
35
35
  end
36
36
 
37
37
  options[:input_html].merge!("data-satis-dropdown-target" => "hiddenSelect",
38
- "data-action" => actions)
38
+ "data-action" => actions)
39
39
 
40
40
  @block = block
41
41
  @page_size = options[:page_size] || 25
@@ -57,7 +57,7 @@ module Satis
57
57
  return [[]] unless obj
58
58
 
59
59
  if obj.is_a?(Array)
60
- obj.filter_map {|item| option_value(item) }
60
+ obj.filter_map { |item| option_value(item) }
61
61
  else
62
62
  [option_value(obj)]
63
63
  end
@@ -69,10 +69,10 @@ module Satis
69
69
  if item.respond_to?(:id)
70
70
  value = item.send(:id)
71
71
  text = if item.respond_to?(:name)
72
- item.send(:name)
73
- else
74
- ""
75
- end
72
+ item.send(:name)
73
+ else
74
+ ""
75
+ end
76
76
  elsif item.is_a?(Array)
77
77
  value = item.first
78
78
  text = item.second
@@ -109,6 +109,10 @@ module Satis
109
109
  def item_html(item)
110
110
  form.template.capture { @block.call(item) }
111
111
  end
112
+
113
+ def input_class
114
+ [@options.fetch(:input_html, {}).fetch(:class, ""), "sts-input__input", form.has_error?(attribute) ? "is-invalid" : ""].join(" ")
115
+ end
112
116
  end
113
117
  end
114
118
  end
@@ -12,8 +12,10 @@ export default class TabsComponentController extends ApplicationController {
12
12
 
13
13
  let firstErrorIndex
14
14
  this.tabTargets.forEach((tab, index) => {
15
- let hasErrors = this.contentTargets[index].querySelectorAll(".is-invalid,.invalid-feedback")
16
- if (hasErrors.length > 0) {
15
+ let hasErrors = this.contentTargets[index].querySelectorAll(".is-invalid")
16
+ let invalidText = this.contentTargets[index].querySelector('.invalid-feedback')
17
+
18
+ if ((hasErrors.length > 0) || (invalidText && invalidText.textContent.trim() !== "")) {
17
19
  if (!firstErrorIndex) {
18
20
  firstErrorIndex = index
19
21
  }
@@ -115,10 +115,10 @@ module Satis
115
115
  # ))
116
116
  else
117
117
  invalid_feedback = nil
118
- if @object.errors.messages[name].present?
119
- invalid_feedback = tag.div(@object.errors.messages[name].join(", "),
120
- class: "invalid-feedback")
121
- end
118
+ # if @object.errors.messages[name].present?
119
+ # invalid_feedback = tag.div(@object.errors.messages[name].join(", "),
120
+ # class: "invalid-feedback")
121
+ # end
122
122
  safe_join [
123
123
  invalid_feedback,
124
124
  rails_fields_for(*args, options, &block)
data/lib/satis/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Satis
2
- VERSION = "2.1.60"
2
+ VERSION = "2.1.61"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: satis
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.60
4
+ version: 2.1.61
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tom de Grunt
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-03-07 00:00:00.000000000 Z
11
+ date: 2025-03-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: browser