ably-ui 13.0.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f1ddf5ec057d238dbee3c857bb1d9f761e850d907d8de6abb58bbcf1412e8cbf
4
- data.tar.gz: 9bdcb80f07acfcd00571f2b48ddfd3169f0f9b2c525d72a26ae7c22b719cf81d
3
+ metadata.gz: 611c492968fb8d8c194885207f4d0020506b70a10c3940bca6c831c6d5952784
4
+ data.tar.gz: 566da5b9a281bcb2d69f3f41d9dafb2cb52e7854a4d222f79b911ac00cfca241
5
5
  SHA512:
6
- metadata.gz: 5099154e90cd0fceb0efca3c815b05740721f27d20c9bda3d0c3d919a36afe8faea161e091e4990bcfff482f1dbab992fd9043336ca667b80aca509f1d7f92d2
7
- data.tar.gz: 5a8057f6f934d87c9c69747daa1df63142dfdc737c74cbd10bcc6381a04a12f0739bb9cd612166e07cf8961c2b15d43a71fc41dd86c9cabfaef0e8f07efc90c3
6
+ metadata.gz: 4443313dc7136e344980dcea3a66d61416e04ed1175060c56fa8c97cc0cf62cb577e4837f72173677563778efe3cb6d1977bd45451c7bcc1a5010608d47dffe1
7
+ data.tar.gz: 22ae8894fdda0a6f241bd0df2bd7f50b0b81e96c8b036e718fc619723180f4601f9749e873e564d39715b9de2fac534022ac27712ddec675b3a6f59260baf9f5
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- ably-ui (12.0.0.dev.9a060af)
4
+ ably-ui (13.2.2)
5
5
  view_component (>= 2.33, < 2.50)
6
6
 
7
7
  GEM
data/ably-ui.gemspec CHANGED
@@ -1,22 +1,25 @@
1
+ # frozen_string_literal: true
1
2
 
2
- lib = File.expand_path("../lib", __FILE__)
3
+ lib = File.expand_path('lib', __dir__)
3
4
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require "ably_ui/version"
5
+ require 'ably_ui/version'
5
6
 
6
7
  Gem::Specification.new do |spec|
7
- spec.name = "ably-ui"
8
+ spec.name = 'ably-ui'
8
9
  spec.version = AblyUi::VERSION
9
- spec.authors = ["Dominik Piatek", "Arti Mathanda", "Bruce Thomas"]
10
- spec.email = ["dominik.piatek@ably.com", "arti.mathanda@ably.com", "bruce.thomas@ably.com"]
11
- spec.summary = "Shared component library and design system for Ably Real-time Ltd (ably.com)"
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 = "https://github.com/ably/ably-ui"
14
+ spec.homepage = 'https://github.com/ably/ably-ui'
14
15
 
15
16
  spec.metadata = {
16
- "source_code_uri" => "https://github.com/ably/ably-ui",
17
+ 'source_code_uri' => 'https://github.com/ably/ably-ui'
17
18
  }
18
19
 
19
- spec.files = Dir['lib/**/*'] + %w[Gemfile Gemfile.lock LICENSE README.md ably-ui.gemspec]
20
+ spec.files = Dir['lib/**/*'] + %w[Gemfile Gemfile.lock LICENSE README.md ably-ui.gemspec]
20
21
 
21
- spec.add_dependency "view_component", '>= 2.33', '< 2.50'
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
+
@@ -34,7 +34,7 @@
34
34
  </li>
35
35
  <li>
36
36
  <%= link_to abs_url("/livesync"), class: "ui-meganav-media group" do %>
37
- <p class="ui-meganav-media-heading">LiveSync (Pre release)</p>
37
+ <p class="ui-meganav-media-heading">LiveSync (Early access)</p>
38
38
  <p class="ui-meganav-media-copy">Keep clients in sync with any relational database.</p>
39
39
  <% end %>
40
40
  </li>
@@ -1,3 +1,3 @@
1
1
  module AblyUi
2
- VERSION = '13.0.0'
2
+ VERSION = '13.2.2.dev.78815ed'
3
3
  end
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.0.0
4
+ version: 13.2.2.dev.78815ed
5
5
  platform: ruby
6
6
  authors:
7
- - Dominik Piatek
8
- - Arti Mathanda
9
- - Bruce Thomas
10
- autorequire:
7
+ - Kenneth Kalmer
8
+ autorequire:
11
9
  bindir: bin
12
10
  cert_chain: []
13
- date: 2023-12-11 00:00:00.000000000 Z
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
- - dominik.piatek@ably.com
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: '0'
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: '0'
246
+ version: 1.3.1
247
247
  requirements: []
248
- rubygems_version: 3.2.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: []