bullet_train-api 1.32.0 → 1.33.0

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: 960ace6a21ae86cd38d0274ddcc6f94bf7423ca1d9d3352f04e54268336714fa
4
- data.tar.gz: d4f2921290ff5f4157050ef23db3bf6a8cc3b122f464e7a161a1519439836c12
3
+ metadata.gz: cd05889ecd651686da4992f6f714e406e7820917c1c4524ff2fde1e43366bcc2
4
+ data.tar.gz: eb77e7158056d4318e941caebb59a1b705750f9c27606645f28097ee5d768a4c
5
5
  SHA512:
6
- metadata.gz: 74cb4f32ca0fad8c5f9e571e50dd95180bfd824c3ba1ba0e4aaf67463bb9994a780ca762299eda349ba19ab8497d235a6c17eb6cf261d8c5235ea078f39c777e
7
- data.tar.gz: 50dfb10ac6a8b90cc14c44de46e6ac4f8b7850fdc5f77dd2fa23e2971c1269fab23ec9980347ddd480b39243bd20f3728b6ee2fa98b877f3695d0a544bdcf39d
6
+ metadata.gz: 86c1d62db4cc44d7a9ba6568a8beee5ecbc554046b6d5763bd7f0132cc4edaae6cea4030bdec025db9230d6828cf7c7cef634001520dcf0c020e6ad5b973121a
7
+ data.tar.gz: 2db7ee1a717f06907e8d229297839458196c05349af38e56c3e60e1cf0c76f258e6b5809e48825f8198de381d069a63fae91b3f1976a6bdcd0bd3e5bdb35a9e9
@@ -3,7 +3,7 @@
3
3
  <% box.body do %>
4
4
  <ul class="space-y" data-turbo="false">
5
5
  <% @teams.each do |team| %>
6
- <li class="bg-white border overflow-hidden sm:rounded-md dark:bg-slate-400">
6
+ <li class="bg-white border overflow-hidden sm:rounded-md dark:bg-base-400">
7
7
  <% body = capture do %>
8
8
  <div class="px-4 py-4 flex items-center sm:pl-8 sm:pr-6">
9
9
  <div class="min-w-0 flex-1 sm:flex sm:items-center sm:justify-between">
@@ -11,14 +11,14 @@
11
11
  <%= team.name %>
12
12
  </div>
13
13
  <% unless can? :connect, team %>
14
- <div class="ml-5 flex-shrink-0 text-slate-400">
14
+ <div class="ml-5 flex-shrink-0 text-base-400">
15
15
  <%= t(".not_allowed") %>
16
16
  </div>
17
17
  <% end %>
18
18
  </div>
19
19
  <% if can? :connect, team %>
20
20
  <div class="ml-5 flex-shrink-0">
21
- <svg class="h-5 w-5 text-slate-400" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true">
21
+ <svg class="h-5 w-5 text-base-400" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true">
22
22
  <path fill-rule="evenodd" d="M7.293 14.707a1 1 0 010-1.414L10.586 10 7.293 6.707a1 1 0 011.414-1.414l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414 0z" clip-rule="evenodd" />
23
23
  </svg>
24
24
  </div>
@@ -27,11 +27,11 @@
27
27
  <% end %>
28
28
 
29
29
  <% if can? :connect, team %>
30
- <%= link_to request.url + "&team_id=#{team.id}", class: "group block hover:bg-slate-50 dark:hover:bg-slate-400 dark:text-slate-800", data: {controller: "connection-workflow", action: "connection-workflow#disableTeamButton"} do %>
30
+ <%= link_to request.url + "&team_id=#{team.id}", class: "group block hover:bg-base-50 dark:hover:bg-base-400 dark:text-base-800", data: {controller: "connection-workflow", action: "connection-workflow#disableTeamButton"} do %>
31
31
  <%= body %>
32
32
  <% end %>
33
33
  <% else %>
34
- <div class="block dark:text-slate-800">
34
+ <div class="block dark:text-base-800">
35
35
  <%= body %>
36
36
  </div>
37
37
  <% end %>
@@ -1,5 +1,5 @@
1
1
  module BulletTrain
2
2
  module Api
3
- VERSION = "1.32.0"
3
+ VERSION = "1.33.0"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bullet_train-api
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.32.0
4
+ version: 1.33.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Culver