ui_bibz 2.0.5 → 2.0.7

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 920798b8a2a9b5808968344bd6a65a67c555e5f4
4
- data.tar.gz: 7f33dba7e149daa5caf9d32119d88df80f829043
3
+ metadata.gz: ec16a9b8ba2047427457674aa25445225109dd16
4
+ data.tar.gz: 2a1576bdf76899c2f46edc801966ea72de327bb7
5
5
  SHA512:
6
- metadata.gz: 94b9da277ced5d3bd2be7300381858f793aefb6ee7be2143f94f3467d969456535915fd9f77c16e5f4d1bf84c4cf9b1316975e4327895ad4c596092d8f404f07
7
- data.tar.gz: b4a827d713b9750adaf72587e8a1ad5813bc614c8b8d6b152f9addbbed288a6dbc478e11534983fe437a0c3bc8b76314706a2348e87c09e01ffd696209df2895
6
+ metadata.gz: 6411ba066a5f1b4cc154f13032f8c4101ea02b8a5ae6715d351c1ae9ae4cf67cf4576fe32604aa88f00d5c42cdffe3f6d400b31f24c047f0314932b835b00917
7
+ data.tar.gz: 7394308494865ca5f244757b3458176e833a280a389f9f39e409ea47f4b367643128040b26b37390af042a884bc1373c15ae1f34d7c88d73dd93bcd2c9e8c1a9
data/Gemfile.lock CHANGED
@@ -1,9 +1,9 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- ui_bibz (2.0.5)
4
+ ui_bibz (2.0.7)
5
5
  bootstrap (= 4.1.1)
6
- font-awesome-sass (= 5.0.9)
6
+ font-awesome-sass (= 5.0.13)
7
7
  haml
8
8
  haml-rails
9
9
  jquery-rails (>= 3.1.0)
@@ -58,7 +58,7 @@ GEM
58
58
  minitest (~> 5.1)
59
59
  tzinfo (~> 1.1)
60
60
  arel (9.0.0)
61
- autoprefixer-rails (8.4.1)
61
+ autoprefixer-rails (8.6.0)
62
62
  execjs
63
63
  awesome_print (1.8.0)
64
64
  bootstrap (4.1.1)
@@ -75,14 +75,14 @@ GEM
75
75
  erubi (1.7.1)
76
76
  erubis (2.7.0)
77
77
  execjs (2.7.0)
78
- factory_bot (4.8.2)
78
+ factory_bot (4.10.0)
79
79
  activesupport (>= 3.0.0)
80
- factory_bot_rails (4.8.2)
81
- factory_bot (~> 4.8.2)
80
+ factory_bot_rails (4.10.0)
81
+ factory_bot (~> 4.10.0)
82
82
  railties (>= 3.0.0)
83
- ffi (1.9.23)
84
- font-awesome-sass (5.0.9)
85
- sass (>= 3.2)
83
+ ffi (1.9.25)
84
+ font-awesome-sass (5.0.13)
85
+ sassc (>= 1.11)
86
86
  globalid (0.4.1)
87
87
  activesupport (>= 4.2.0)
88
88
  haml (5.0.4)
@@ -166,10 +166,14 @@ GEM
166
166
  sprockets (>= 2.8, < 4.0)
167
167
  sprockets-rails (>= 2.0, < 4.0)
168
168
  tilt (>= 1.1, < 3)
169
+ sassc (1.11.4)
170
+ bundler
171
+ ffi (~> 1.9.6)
172
+ sass (>= 3.3.0)
169
173
  sexp_processor (4.11.0)
170
- simple_form (4.0.0)
171
- actionpack (> 4)
172
- activemodel (> 4)
174
+ simple_form (4.0.1)
175
+ actionpack (>= 5.0)
176
+ activemodel (>= 5.0)
173
177
  simplecov (0.13.0)
174
178
  docile (~> 1.1.0)
175
179
  json (>= 1.8, < 3)
@@ -27,7 +27,6 @@ $input-group-btn-border-color: $input-border-color
27
27
  .input-group
28
28
  position: relative
29
29
  display: flex
30
- align-items: center
31
30
  width: 100%
32
31
 
33
32
  .form-control
@@ -186,7 +185,7 @@ $input-group-btn-border-color: $input-border-color
186
185
  z-index: 3
187
186
 
188
187
  .input-group-addon .glyph, .input-group-btn .btn .glyph
189
- padding: 0.4rem 0
188
+ padding: 0.41rem 0
190
189
 
191
190
  .input-group-sm
192
191
  .input-group-addon .glyph,
@@ -6,7 +6,7 @@
6
6
  .glyph-#{$key}
7
7
  color: $value
8
8
 
9
- .glyph
9
+ .alert .glyph
10
10
  padding: .25rem 0
11
11
 
12
12
  .fa,
data/lib/ui_bibz/infos.rb CHANGED
@@ -1,9 +1,9 @@
1
1
  module UiBibz
2
2
  NAME = "Ui Bibz"
3
- VERSION = "2.0.5"
3
+ VERSION = "2.0.7"
4
4
  DESCRIPTION = "A Rails Interface Framework using Bootstrap."
5
5
  SUMMARY = "Create your project with Ui Bibz. Over a thirty reusable components built to provide iconography, dropdowns, input groups, navigation, alerts, and much more."
6
6
  LICENSE = "MIT"
7
- FONTAWESOME_VERSION = "5.0.9"
7
+ FONTAWESOME_VERSION = "5.0.13"
8
8
  BOOTSTRAP_VERSION = "4.1.1"
9
9
  end
@@ -15,6 +15,8 @@ module UiBibz::Ui::Core::Forms::Buttons
15
15
  #
16
16
  # You can add HTML attributes using the +html_options+.
17
17
  # You can pass arguments in options attribute:
18
+ # * +state+
19
+ # (+:active+, +:disabled+)
18
20
  # * +status+ - status of element with +symbol+ value:
19
21
  # (+:primary+, +:secondary+, +:info+, +:warning+, +:danger+)
20
22
  # * +size+ - Size of element with +symbol+ value:
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ui_bibz
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.5
4
+ version: 2.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Thooams
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-05-09 00:00:00.000000000 Z
11
+ date: 2018-06-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -128,14 +128,14 @@ dependencies:
128
128
  requirements:
129
129
  - - '='
130
130
  - !ruby/object:Gem::Version
131
- version: 5.0.9
131
+ version: 5.0.13
132
132
  type: :runtime
133
133
  prerelease: false
134
134
  version_requirements: !ruby/object:Gem::Requirement
135
135
  requirements:
136
136
  - - '='
137
137
  - !ruby/object:Gem::Version
138
- version: 5.0.9
138
+ version: 5.0.13
139
139
  - !ruby/object:Gem::Dependency
140
140
  name: bootstrap
141
141
  requirement: !ruby/object:Gem::Requirement