ably-ui 8.8.0 → 8.9.0

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: 4887418fd0006d2db364d0c16bfa256295090a902faf917443475ae7b4981466
4
- data.tar.gz: fad0ff87759f87f4bdc6459c90ffaf99bd4a2d9387f9c3249fd68cff753550e4
3
+ metadata.gz: 43d1a92fa18f77aa4717dc844f036d7c20d08f63f27fd9a528e9d626074491fe
4
+ data.tar.gz: 9780e38433352d6d548ca9a89e5ccc7a67931e5f0394b9fcbaa9a65e35be477c
5
5
  SHA512:
6
- metadata.gz: 2ce8b875c5a1fb2060ffa3c7cf10ff0982ccfec0803ae9ff10d91e3e6e9c818bbeca0f0879ba24065608e3fcb71b660f6538c3f596bb952c5cabb9d799ee7cfd
7
- data.tar.gz: 40a808b20ab469e9734f1ae19f4508287ba34bab6b4ab6615dd98f95562d4d6edf4d90c4a17ee87daea48127d3df0f24be46147e000c4de205eb2da3ab67db12
6
+ metadata.gz: 0eb7d12d2c1f9a7c5d7abcefd07111e2da0d58bcc954035042714f849dab1f2fc926cd290b000dfab8c8cfce60d9bde9cb3fe75bf5e8ab4a134063ab4a74cd78
7
+ data.tar.gz: 2406083193f45dbbeea97acd642f7c886e02d8cd18100df0e7ac8f4b72c50b8a342ac88f976a9584d097ccfa6edd1087f1cd1dd18bfcec93ab6be1dbbbd3b613
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- ably-ui (8.7.0)
4
+ ably-ui (8.7.0.dev.b3aa10e)
5
5
  view_component (>= 2.33, < 2.50)
6
6
 
7
7
  GEM
@@ -1,9 +1,9 @@
1
1
  <section class="w-full bg-white">
2
- <ul class="py-64 flex flex-row flex-wrap md:flex-nowrap content-between m-auto items-center">
2
+ <%= tag.ul class: "py-64 flex flex-row flex-wrap md:flex-nowrap content-between m-auto items-center #{@additional_css}" do %>
3
3
  <% companies.each do |company| %>
4
4
  <li class="flex-auto text-center sm:w-1/3 w-1/2">
5
5
  <%= image_tag company[:logo], alt: "#{company[:label]} logo", class: 'mx-auto' %>
6
6
  </li>
7
7
  <% end %>
8
- </ul>
8
+ <% end %>
9
9
  </section>
@@ -5,8 +5,9 @@ module AblyUi
5
5
  class CustomerLogos < ViewComponent::Base
6
6
  attr_reader :companies
7
7
 
8
- def initialize(companies:)
8
+ def initialize(companies:, additional_css: '')
9
9
  @companies = companies
10
+ @additional_css = additional_css
10
11
  end
11
12
  end
12
13
  end
@@ -467,16 +467,15 @@
467
467
  }
468
468
 
469
469
  .ui-link {
470
- @apply visited:text-gui-visited;
470
+ @apply text-gui-default;
471
471
  @apply hover:text-gui-hover active:text-gui-active disabled:text-gui-unavailable;
472
- @apply focus:text-gui-focus focus:outline-gui-focus;
473
- @apply underline;
472
+ @apply focus:text-gui-default focus:outline-gui-focus;
473
+ @apply no-underline;
474
474
  }
475
475
 
476
476
  .ui-link-neutral {
477
- @apply visited:text-dark-grey;
478
477
  @apply hover:text-dark-grey active:text-cool-black disabled:text-gui-unavailable;
479
- @apply focus:text-gui-focus focus:outline-gui-focus-neutral;
478
+ @apply focus:text-charcoal-grey focus:outline-gui-focus-neutral;
480
479
  @apply underline;
481
480
  }
482
481
  }
@@ -1,3 +1,3 @@
1
1
  module AblyUi
2
- VERSION = '8.8.0'
2
+ VERSION = '8.9.0'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ably-ui
3
3
  version: !ruby/object:Gem::Version
4
- version: 8.8.0
4
+ version: 8.9.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dominik Piatek
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2022-09-29 00:00:00.000000000 Z
13
+ date: 2022-10-04 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: view_component