rollout-ui 0.7.0 → 0.7.1

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: 0ff86241a71a40f4c2300c7ba47119d6cc6e18aa1e1b3c68fb4d5b587daac0d7
4
- data.tar.gz: 7b6ca985c2d7f31e8f436bca041c180d1a89a0bd80586ce8a916860a08b8a937
3
+ metadata.gz: 6f52e6f2464930c297ee97dfa2e73771ef20dc1c345186582c4f211ddc16a9bc
4
+ data.tar.gz: 72b761a78d4607396ee71860ff9d5f36fd57563fcba018e34ed374fc308dd3d0
5
5
  SHA512:
6
- metadata.gz: 675cc0df4e5079e5d3b619a06ae44ef0cd703ef029ba0892d663ff3889fdde4955ecd2b44807d829e1bc9cb078b417b19cf26ae52e02fe6183aeced63820241d
7
- data.tar.gz: 449b29ebeb854d4764c29947db9f84009e4e88e6d32db8bd3bed43dc58c72e58311d5eb47da885cdbe5d7864e96919a8be5840bf8fe22ebdf49aaf75d38d2e41
6
+ metadata.gz: c9a1eec0c0b71f92458be1f494a99098aa1a7d8bce482c47f45f90de8566dcc2643e97bf2f8bad90c209456dd459e8d462c4edae804e31fc6283bc2f14836f19
7
+ data.tar.gz: c9e5d5ddaea0f7cb5302d67f7f4b3e709ee63b916a5a2aa7f2b7075af8a3034f2bfca0d00b7cb634082bb5319f03a727d688ab84109d431922edfb9122dee520
@@ -1,5 +1,5 @@
1
1
  class Rollout
2
2
  module UI
3
- VERSION = "0.7.0"
3
+ VERSION = "0.7.1"
4
4
  end
5
5
  end
@@ -7,22 +7,22 @@
7
7
  .w-8.h-1.bg-gray-300.my-10
8
8
 
9
9
  .overflow-auto.scrolling-touch
10
- table.text-sm.w-100.text-left.w-full.table-fixed
10
+ table.text-sm.w-100.text-left.w-full
11
11
  - if show_header
12
12
  thead.font-semibold.text-gray-600.border-b.border-gray-200
13
13
  - if show_feature
14
- th.pb-2.pr-3.w-1/6 Feature
15
- th.pb-2.pr-3.w-2/3 Action
16
- th.pl-2.w-1/6
14
+ th.pb-2.pr-3.whitespace-nowrap Feature
15
+ th.pb-2.pr-3.w-full Action
16
+ th.pl-2.whitespace-nowrap style="min-width: 160px;"
17
17
 
18
18
  tbody.text-gray-600.border-t.border-gray-200
19
19
  - events.each do |event|
20
20
  tr.border-b.border-gray-200
21
21
  - if show_feature
22
- td.py-2.whitespace-no-wrap.w-1/6
22
+ td.py-2.pr-3.whitespace-nowrap
23
23
  a.text-blue-600(href=feature_path(event.feature) class='hover:text-blue-700 hover:underline')
24
24
  = event.feature
25
- td.py-2.pr-3.whitespace-normal.w-2/3
25
+ td.py-2.pr-3.break-words.w-full
26
26
  - if event.name == "update"
27
27
  - if event.context && event.context[:actor]
28
28
  - if config.defined?(:actor_url)
@@ -38,9 +38,12 @@
38
38
  - "#{format_change_key(key)} from #{before} to #{after}"
39
39
 
40
40
  ' changed
41
- = changes.join(', ')
41
+ - unless changes.empty?
42
+ = changes.join(', ')
43
+ - else
44
+ ' nothing!
42
45
  - else
43
46
  = event.data
44
47
 
45
- td.py-2.text-right.whitespace-nowrap.pl-3.w-1/6
48
+ td.py-2.text-right.whitespace-nowrap.pl-3 style="min-width: 160px;"
46
49
  span title=event.created_at.strftime(Rollout::UI.config.timestamp_format) = time_ago(event.created_at)
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rollout-ui
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.7.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - FetLife
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2025-03-25 00:00:00.000000000 Z
11
+ date: 2025-03-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rollout