bmc 1.4.1 → 1.4.2
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/CHANGELOG.md +3 -0
- data/app/helpers/bmc/form_helper.rb +2 -2
- data/app/views/bmc/search/_form.html.slim +1 -1
- data/app/views/bmc/search/_form_bs3.html.slim +1 -1
- data/app/views/bmc/search/_form_bs4.html.slim +1 -1
- data/app/views/bmc/search/_form_bs5.html.slim +1 -1
- data/lib/bmc/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: 76fecfb84df0ecc80387ef64b76d6042594473fd93bce1ad0a9dfdcb3530574b
|
4
|
+
data.tar.gz: bc953b87c09e7b152e609398a53cc4893ca8b748805d84a05020ed5afa0b900f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f78df23115e0bb884a5a3d255022f7b17cc1a052b8de20ff03200f894235615b8e3c94b317e293e77a0aa067e07a8c95a442492e87b633e51e0ff0d864e67cba
|
7
|
+
data.tar.gz: 8f8c25277438fa515c0b219eaf089365404ae3f788bbd62f2531ab96bbbf8dee5c01a52a9995d0f832bdadf01f48d1a594b60940272bdee3833f30ca1b105ff4
|
data/CHANGELOG.md
CHANGED
@@ -8,8 +8,8 @@ module BMC::FormHelper
|
|
8
8
|
tag.input(type: "submit", class: "hidden-submit", style: css)
|
9
9
|
end
|
10
10
|
|
11
|
-
def search_form(action: request.fullpath)
|
12
|
-
render "bmc/search/form", action: action
|
11
|
+
def search_form(action: request.fullpath, placeholder: ta(:search))
|
12
|
+
render "bmc/search/form", action: action, placeholder: placeholder
|
13
13
|
end
|
14
14
|
|
15
15
|
def hidden_inputs_for_get_form(url, except: nil, only: nil)
|
@@ -1 +1 @@
|
|
1
|
-
= render "bmc/search/form_bs#{BMC::BootstrapHelper.bootstrap_version}", action: action
|
1
|
+
= render "bmc/search/form_bs#{BMC::BootstrapHelper.bootstrap_version}", action: action, placeholder: placeholder
|
@@ -3,7 +3,7 @@ form.search.bs3 method="get" action=action
|
|
3
3
|
= form_hidden_submit
|
4
4
|
|
5
5
|
p.input-group.search
|
6
|
-
input.form-control name="q" placeholder=
|
6
|
+
input.form-control name="q" placeholder=placeholder size=25 value=params[:q]
|
7
7
|
|
8
8
|
span.input-group-btn
|
9
9
|
button.btn.btn-default.search-reset.reset type="submit"
|
@@ -3,7 +3,7 @@ form.search.bs4 method="get" action=action
|
|
3
3
|
= form_hidden_submit
|
4
4
|
|
5
5
|
.input-group.search
|
6
|
-
input.form-control.form-control-sm type="text" name="q" placeholder=
|
6
|
+
input.form-control.form-control-sm type="text" name="q" placeholder=placeholder value=params[:q]
|
7
7
|
span.input-group-append
|
8
8
|
button.btn.btn-sm.bg-light.border.search-reset.reset type="submit" = fa_s(:times)
|
9
9
|
button.btn.btn-sm.bg-light.border.search-submit type="submit" = fa_s(:search)
|
@@ -3,6 +3,6 @@ form.search.bs5.mb-3 method="get" action=action
|
|
3
3
|
= form_hidden_submit
|
4
4
|
|
5
5
|
.input-group.search
|
6
|
-
input.form-control.form-control-sm type="text" name="q" placeholder=
|
6
|
+
input.form-control.form-control-sm type="text" name="q" placeholder=placeholder value=params[:q]
|
7
7
|
button.btn.btn-sm.bg-light.border.search-reset.reset type="submit" = fa_s(:times)
|
8
8
|
button.btn.btn-sm.bg-light.border.search-submit type="submit" = fa_s(:search)
|
data/lib/bmc/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bmc
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.4.
|
4
|
+
version: 1.4.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Benoit MARTIN-CHAVE
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-11-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails-i18n
|