ui_bibz 2.3.3 → 2.3.4
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/Gemfile.lock +3 -3
- data/app/assets/stylesheets/fix_addon.sass +9 -1
- data/app/assets/stylesheets/notifications.sass +3 -1
- data/lib/ui_bibz/infos.rb +2 -2
- data/vendor/assets/fonts/fa-brands-400.eot +0 -0
- data/vendor/assets/fonts/fa-brands-400.svg +1 -1
- data/vendor/assets/fonts/fa-brands-400.ttf +0 -0
- data/vendor/assets/fonts/fa-brands-400.woff +0 -0
- data/vendor/assets/fonts/fa-brands-400.woff2 +0 -0
- data/vendor/assets/fonts/fa-regular-400.eot +0 -0
- data/vendor/assets/fonts/fa-regular-400.svg +1 -1
- data/vendor/assets/fonts/fa-regular-400.ttf +0 -0
- data/vendor/assets/fonts/fa-regular-400.woff +0 -0
- data/vendor/assets/fonts/fa-regular-400.woff2 +0 -0
- data/vendor/assets/fonts/fa-solid-900.eot +0 -0
- data/vendor/assets/fonts/fa-solid-900.svg +1 -1
- data/vendor/assets/fonts/fa-solid-900.ttf +0 -0
- data/vendor/assets/fonts/fa-solid-900.woff +0 -0
- data/vendor/assets/fonts/fa-solid-900.woff2 +0 -0
- data/vendor/assets/javascripts/all.js +7 -3
- data/vendor/assets/javascripts/all.min.js +1 -1
- data/vendor/assets/stylesheets/all.min.css +0 -4
- data/vendor/assets/stylesheets/fontawesome/_variables.scss +2 -2
- 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: e2190adb0db592c4f7e491e2990484548492f7053aea3ac65a39ade5c9fffc61
|
4
|
+
data.tar.gz: 9b733238ab3a6ed31e3c3fec6e430a2653f0f1a6b951a1daee6e11edd3812fa8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c09e346af9aaf0d056afb1d2470cd7b61c37cd19a837af4e27aa6f123170817993b06f4b950ae0fd5940dacd0b23082284eb36c12ee79fdf8717695db8c6a523
|
7
|
+
data.tar.gz: 70b5568278e7e23ad7680352a48ecfa235a0f5734b8a09c19cab307c47d60801300de51ea76ed3a099de02ea6964fd8f2d124cbbd89335f296407eb73db6f8bd
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
ui_bibz (2.3.
|
4
|
+
ui_bibz (2.3.4)
|
5
5
|
bootstrap (= 4.3.1)
|
6
6
|
haml
|
7
7
|
haml-rails
|
@@ -58,7 +58,7 @@ GEM
|
|
58
58
|
minitest (~> 5.1)
|
59
59
|
tzinfo (~> 1.1)
|
60
60
|
arel (9.0.0)
|
61
|
-
autoprefixer-rails (9.4.
|
61
|
+
autoprefixer-rails (9.4.9)
|
62
62
|
execjs
|
63
63
|
awesome_print (1.8.0)
|
64
64
|
bootstrap (4.3.1)
|
@@ -103,7 +103,7 @@ GEM
|
|
103
103
|
rails-dom-testing (>= 1, < 3)
|
104
104
|
railties (>= 4.2.0)
|
105
105
|
thor (>= 0.14, < 2.0)
|
106
|
-
json (2.
|
106
|
+
json (2.2.0)
|
107
107
|
loofah (2.2.3)
|
108
108
|
crass (~> 1.0.2)
|
109
109
|
nokogiri (>= 1.5.9)
|
@@ -107,6 +107,8 @@ $input-group-btn-border-color: $input-border-color
|
|
107
107
|
svg
|
108
108
|
font-size: 1rem
|
109
109
|
margin-top: 0.1rem
|
110
|
+
i.glyph
|
111
|
+
font-size: 1rem
|
110
112
|
|
111
113
|
|
112
114
|
&.form-control-lg
|
@@ -117,11 +119,17 @@ $input-group-btn-border-color: $input-border-color
|
|
117
119
|
svg
|
118
120
|
font-size: 1.5rem
|
119
121
|
margin-top: 0.1rem
|
122
|
+
i.glyph
|
123
|
+
font-size: 1.5rem
|
120
124
|
|
121
|
-
svg
|
125
|
+
svg, i.glyph
|
122
126
|
font-size: 1.3rem
|
123
127
|
margin-top: 0.1rem
|
124
128
|
|
129
|
+
i.glyph
|
130
|
+
margin-top: 0.4rem
|
131
|
+
font-size: 1.3rem
|
132
|
+
|
125
133
|
|
126
134
|
// scss-lint:disable QualifyingElement
|
127
135
|
// Nuke default margins from checkboxes and radios to vertically center within.
|
@@ -15,6 +15,8 @@
|
|
15
15
|
.btn
|
16
16
|
svg
|
17
17
|
margin: 0.25rem 0.25rem
|
18
|
+
i.glyph
|
19
|
+
margin: 0.4rem 0.25rem
|
18
20
|
.input-group-btn button svg
|
19
21
|
margin: 0.4rem 0.25rem
|
20
22
|
|
@@ -29,7 +31,7 @@
|
|
29
31
|
.fab
|
30
32
|
line-height: 0.7 !important
|
31
33
|
|
32
|
-
span:not(.input-group-addon, .btn)
|
34
|
+
span:not(.input-group-addon, .btn) svg
|
33
35
|
margin-top: -0.1rem
|
34
36
|
|
35
37
|
// .input-group-btn span svg
|
data/lib/ui_bibz/infos.rb
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
module UiBibz
|
2
2
|
NAME = "Ui Bibz"
|
3
|
-
VERSION = "2.3.
|
3
|
+
VERSION = "2.3.4"
|
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.7.
|
7
|
+
FONTAWESOME_VERSION = "5.7.2"
|
8
8
|
BOOTSTRAP_VERSION = "4.3.1"
|
9
9
|
end
|
Binary file
|
@@ -2,7 +2,7 @@
|
|
2
2
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
3
3
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
|
4
4
|
<metadata>
|
5
|
-
Created by FontForge 20190112 at
|
5
|
+
Created by FontForge 20190112 at Tue Feb 12 10:24:59 2019
|
6
6
|
By Robert Madole
|
7
7
|
Copyright (c) Font Awesome
|
8
8
|
</metadata>
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -2,7 +2,7 @@
|
|
2
2
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
3
3
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
|
4
4
|
<metadata>
|
5
|
-
Created by FontForge 20190112 at
|
5
|
+
Created by FontForge 20190112 at Tue Feb 12 10:24:59 2019
|
6
6
|
By Robert Madole
|
7
7
|
Copyright (c) Font Awesome
|
8
8
|
</metadata>
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -2,7 +2,7 @@
|
|
2
2
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
3
3
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
|
4
4
|
<metadata>
|
5
|
-
Created by FontForge 20190112 at
|
5
|
+
Created by FontForge 20190112 at Tue Feb 12 10:24:59 2019
|
6
6
|
By Robert Madole
|
7
7
|
Copyright (c) Font Awesome
|
8
8
|
</metadata>
|
Binary file
|
Binary file
|
Binary file
|
@@ -2338,7 +2338,7 @@
|
|
2338
2338
|
throw new TypeError('Promise resolver ' + resolver + ' is not a function');
|
2339
2339
|
}
|
2340
2340
|
|
2341
|
-
if (this instanceof
|
2341
|
+
if (this instanceof P === false) {
|
2342
2342
|
throw new TypeError('Failed to construct \'Promise\': Please use the \'new\' operator, this object constructor cannot be called as a function.');
|
2343
2343
|
}
|
2344
2344
|
|
@@ -2937,7 +2937,7 @@
|
|
2937
2937
|
mark: noop$1,
|
2938
2938
|
measure: noop$1
|
2939
2939
|
};
|
2940
|
-
var preamble = "FA \"5.7.
|
2940
|
+
var preamble = "FA \"5.7.2\"";
|
2941
2941
|
|
2942
2942
|
var begin = function begin(name) {
|
2943
2943
|
p.mark("".concat(preamble, " ").concat(name, " begins"));
|
@@ -3745,9 +3745,13 @@
|
|
3745
3745
|
hclAdd('complete');
|
3746
3746
|
hclRemove('pending');
|
3747
3747
|
if (typeof callback === 'function') callback();
|
3748
|
+
mark();
|
3748
3749
|
resolve();
|
3749
3750
|
});
|
3750
|
-
}).catch(
|
3751
|
+
}).catch(function () {
|
3752
|
+
mark();
|
3753
|
+
reject();
|
3754
|
+
});
|
3751
3755
|
});
|
3752
3756
|
}
|
3753
3757
|
function onNode(node) {
|