ably-ui 13.1.0 → 13.2.2.dev.78815ed
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 +1 -1
- data/ably-ui.gemspec +13 -10
- data/lib/ably_ui/core/featured_link/component.css +16 -0
- data/lib/ably_ui/version.rb +1 -1
- metadata +16 -16
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 611c492968fb8d8c194885207f4d0020506b70a10c3940bca6c831c6d5952784
|
4
|
+
data.tar.gz: 566da5b9a281bcb2d69f3f41d9dafb2cb52e7854a4d222f79b911ac00cfca241
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4443313dc7136e344980dcea3a66d61416e04ed1175060c56fa8c97cc0cf62cb577e4837f72173677563778efe3cb6d1977bd45451c7bcc1a5010608d47dffe1
|
7
|
+
data.tar.gz: 22ae8894fdda0a6f241bd0df2bd7f50b0b81e96c8b036e718fc619723180f4601f9749e873e564d39715b9de2fac534022ac27712ddec675b3a6f59260baf9f5
|
data/Gemfile.lock
CHANGED
data/ably-ui.gemspec
CHANGED
@@ -1,22 +1,25 @@
|
|
1
|
+
# frozen_string_literal: true
|
1
2
|
|
2
|
-
lib = File.expand_path(
|
3
|
+
lib = File.expand_path('lib', __dir__)
|
3
4
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
-
require
|
5
|
+
require 'ably_ui/version'
|
5
6
|
|
6
7
|
Gem::Specification.new do |spec|
|
7
|
-
spec.name =
|
8
|
+
spec.name = 'ably-ui'
|
8
9
|
spec.version = AblyUi::VERSION
|
9
|
-
spec.authors = [
|
10
|
-
spec.email = [
|
11
|
-
spec.summary =
|
10
|
+
spec.authors = ['Kenneth Kalmer']
|
11
|
+
spec.email = ['kenneth.kalmer@ably.com']
|
12
|
+
spec.summary = 'Shared component library and design system for Ably Real-time Ltd (ably.com)'
|
12
13
|
spec.licenses = ['Apache-2.0']
|
13
|
-
spec.homepage =
|
14
|
+
spec.homepage = 'https://github.com/ably/ably-ui'
|
14
15
|
|
15
16
|
spec.metadata = {
|
16
|
-
|
17
|
+
'source_code_uri' => 'https://github.com/ably/ably-ui'
|
17
18
|
}
|
18
19
|
|
19
|
-
spec.files
|
20
|
+
spec.files = Dir['lib/**/*'] + %w[Gemfile Gemfile.lock LICENSE README.md ably-ui.gemspec]
|
20
21
|
|
21
|
-
spec.add_dependency
|
22
|
+
spec.add_dependency 'view_component', '>= 2.33', '< 2.50'
|
23
|
+
|
24
|
+
spec.required_ruby_version = '>= 3.1', '< 3.3'
|
22
25
|
end
|
@@ -0,0 +1,16 @@
|
|
1
|
+
@layer components {
|
2
|
+
.ui-featured-link {
|
3
|
+
@apply font-sans font-medium block;
|
4
|
+
@apply text-gui-default hover:text-gui-hover focus:text-gui-focus focus:outline-gui-focus;
|
5
|
+
}
|
6
|
+
|
7
|
+
.ui-featured-link:hover svg {
|
8
|
+
@apply left-0;
|
9
|
+
}
|
10
|
+
|
11
|
+
.ui-featured-link-icon {
|
12
|
+
transition: left 100ms ease-in-out;
|
13
|
+
@apply align-middle ml-8 relative -top-1 -left-4;
|
14
|
+
}
|
15
|
+
}
|
16
|
+
|
data/lib/ably_ui/version.rb
CHANGED
metadata
CHANGED
@@ -1,16 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ably-ui
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 13.
|
4
|
+
version: 13.2.2.dev.78815ed
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
-
|
8
|
-
|
9
|
-
- Bruce Thomas
|
10
|
-
autorequire:
|
7
|
+
- Kenneth Kalmer
|
8
|
+
autorequire:
|
11
9
|
bindir: bin
|
12
10
|
cert_chain: []
|
13
|
-
date:
|
11
|
+
date: 2024-02-12 00:00:00.000000000 Z
|
14
12
|
dependencies:
|
15
13
|
- !ruby/object:Gem::Dependency
|
16
14
|
name: view_component
|
@@ -32,11 +30,9 @@ dependencies:
|
|
32
30
|
- - "<"
|
33
31
|
- !ruby/object:Gem::Version
|
34
32
|
version: '2.50'
|
35
|
-
description:
|
33
|
+
description:
|
36
34
|
email:
|
37
|
-
-
|
38
|
-
- arti.mathanda@ably.com
|
39
|
-
- bruce.thomas@ably.com
|
35
|
+
- kenneth.kalmer@ably.com
|
40
36
|
executables: []
|
41
37
|
extensions: []
|
42
38
|
extra_rdoc_files: []
|
@@ -69,6 +65,7 @@ files:
|
|
69
65
|
- lib/ably_ui/core/feature_footer/component.js
|
70
66
|
- lib/ably_ui/core/feature_footer/feature_footer.html.erb
|
71
67
|
- lib/ably_ui/core/feature_footer/feature_footer.rb
|
68
|
+
- lib/ably_ui/core/featured_link/component.css
|
72
69
|
- lib/ably_ui/core/featured_link/component.js
|
73
70
|
- lib/ably_ui/core/featured_link/featured_link.html.erb
|
74
71
|
- lib/ably_ui/core/featured_link/featured_link.rb
|
@@ -230,7 +227,7 @@ licenses:
|
|
230
227
|
- Apache-2.0
|
231
228
|
metadata:
|
232
229
|
source_code_uri: https://github.com/ably/ably-ui
|
233
|
-
post_install_message:
|
230
|
+
post_install_message:
|
234
231
|
rdoc_options: []
|
235
232
|
require_paths:
|
236
233
|
- lib
|
@@ -238,15 +235,18 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
238
235
|
requirements:
|
239
236
|
- - ">="
|
240
237
|
- !ruby/object:Gem::Version
|
241
|
-
version: '
|
238
|
+
version: '3.1'
|
239
|
+
- - "<"
|
240
|
+
- !ruby/object:Gem::Version
|
241
|
+
version: '3.3'
|
242
242
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
243
243
|
requirements:
|
244
|
-
- - "
|
244
|
+
- - ">"
|
245
245
|
- !ruby/object:Gem::Version
|
246
|
-
version:
|
246
|
+
version: 1.3.1
|
247
247
|
requirements: []
|
248
|
-
rubygems_version: 3.
|
249
|
-
signing_key:
|
248
|
+
rubygems_version: 3.3.7
|
249
|
+
signing_key:
|
250
250
|
specification_version: 4
|
251
251
|
summary: Shared component library and design system for Ably Real-time Ltd (ably.com)
|
252
252
|
test_files: []
|