ably-ui 7.8.0.dev.4eda5fb → 7.8.0.dev.502e5bf
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/lib/ably_ui/core/logo/logo.rb +4 -2
- data/lib/ably_ui/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 63cecba88fec1723905de50f638853aae7213476168d10f95abcebb548960a9b
|
4
|
+
data.tar.gz: 2e709ca0a40da7ae05effe7b373aa7b6b242d220bec6e5ece90f41fabb443106
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 61b95e984ab6d3f1254349b10b9ca7fb3633b2b60c0865afa50d7d34dcc9bf29b175098a87b7e8bc87ce8d0b99c3deb1d30338c0c4c928e6f962b15ddd46e656
|
7
|
+
data.tar.gz: 99a98b4288e89c6712d2217222f936966e39e74ff723f87410d6c157e1029175ef32fb0e062ee79ec64c965c9cd837906f78f710f828ea475372a192a754b71a
|
data/Gemfile.lock
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
require 'securerandom'
|
2
|
+
|
1
3
|
module AblyUi
|
2
4
|
module Core
|
3
5
|
class Logo < ViewComponent::Base
|
@@ -8,8 +10,8 @@ module AblyUi
|
|
8
10
|
def initialize(data_id: '', href:)
|
9
11
|
@data_id = data_id
|
10
12
|
@href = href
|
11
|
-
@gradient_id_0 = "paint_linear_#{
|
12
|
-
@gradient_id_1 = "paint_linear_#{
|
13
|
+
@gradient_id_0 = "paint_linear_#{SecureRandom.uuid}"
|
14
|
+
@gradient_id_1 = "paint_linear_#{SecureRandom.uuid}"
|
13
15
|
end
|
14
16
|
|
15
17
|
def logo_href
|
data/lib/ably_ui/version.rb
CHANGED