simple_form_password_with_hints 0.0.9 → 0.0.10

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
  SHA256:
3
- metadata.gz: a5aacdfa3a0f99c34974b176267e506ed86722dfff724a3264fcf6d3b9fb03e1
4
- data.tar.gz: 6ed8bb691cf776ffa1765305e60c6fc333331438c3207d34efdb88f460ef1ef8
3
+ metadata.gz: d83415f47aa069c001ae4ef753a4f5c8adf2d51ecef3810f0b73c09d9d4cccd9
4
+ data.tar.gz: a617f17aa73ce03dfa9a014d0beb09403d802a608d375d566dd6ed7e112feac0
5
5
  SHA512:
6
- metadata.gz: 44349627a8469df0a56f72d722bb5d7c09b42d9627b5df48d1b484e4bf99a5b8fb89d9c5de33cb50711203bf4b4daa1c5e7f52700dd51bfa701681b8e7f6a422
7
- data.tar.gz: 742cde6b786eb9257f6c884d643d0c1ad1047705bed383519e5a1ee31eeefd48a8eeff0e87757b4540852c83570b06dc4c3a514fa471a79f62a710809c09f922
6
+ metadata.gz: eca8cf2fc11d72662bb5c273716a9cda54fe71889e183971a4fd6516729f099a092c131cd645ab0ee1217acdf226aa82ffeed576e22a0d95ad30467777942382
7
+ data.tar.gz: 6d7e1328160d9f33a9a3f583ce466a6c2a7788d47e3ea6974d96e63eca717de3d8467d4f03b05b6f6c932a846bf3426b9bd4c0336a614e8d16a90bbafc6cc0cd
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- simple_form_password_with_hints (0.0.9)
4
+ simple_form_password_with_hints (0.0.10)
5
5
  rails
6
6
  simple_form
7
7
 
data/UPGRADING ADDED
@@ -0,0 +1,5 @@
1
+ ###################################
2
+ # NOTE FOR UPGRADING FROM 0.0.7 #
3
+ ###################################
4
+
5
+ The eye icon is now correctly placed vertically, so if you had any overwrite to adjust the vertical position of the eye you should now remove it
@@ -35,9 +35,12 @@
35
35
  display: block
36
36
  &-password-toggle
37
37
  cursor: pointer
38
+ height: 20px
39
+ line-height: 1
38
40
  position: absolute
39
41
  right: 10px
40
- top: calc(50% - 10px)
42
+ top: 50%
43
+ transform: translateY(-50%)
41
44
  width: 20px
42
45
  &::before
43
46
  content: asset-url('icon-eye.svg')
@@ -1,3 +1,3 @@
1
1
  module SimpleFormPasswordWithHints
2
- VERSION = "0.0.9".freeze
2
+ VERSION = "0.0.10".freeze
3
3
  end
@@ -12,6 +12,10 @@ Gem::Specification.new do |s|
12
12
  s.files = Dir.chdir(File.expand_path('..', __FILE__)) do
13
13
  `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
14
14
  end
15
+ if File.exist?('UPGRADING')
16
+ s.post_install_message = File.read("UPGRADING")
17
+ end
18
+
15
19
  s.require_paths = ['lib']
16
20
  s.homepage =
17
21
  'https://github.com/noesya/simple_form_password_with_hints'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: simple_form_password_with_hints
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.9
4
+ version: 0.0.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pierre-andré Boissinot
@@ -81,6 +81,7 @@ files:
81
81
  - LICENSE
82
82
  - README.md
83
83
  - Rakefile
84
+ - UPGRADING
84
85
  - app/assets/images/icon-cancel.svg
85
86
  - app/assets/images/icon-check.svg
86
87
  - app/assets/images/icon-eye-slash.svg
@@ -99,7 +100,12 @@ homepage: https://github.com/noesya/simple_form_password_with_hints
99
100
  licenses:
100
101
  - MIT
101
102
  metadata: {}
102
- post_install_message:
103
+ post_install_message: |-
104
+ ###################################
105
+ # NOTE FOR UPGRADING FROM 0.0.7 #
106
+ ###################################
107
+
108
+ The eye icon is now correctly placed vertically, so if you had any overwrite to adjust the vertical position of the eye you should now remove it
103
109
  rdoc_options: []
104
110
  require_paths:
105
111
  - lib