rails-clipboard-helper 0.1.3 → 0.1.4

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: be719a85fc7938e8435fc85ad584ff73a52cd7ae4567bbf114333cc546304f5e
4
- data.tar.gz: 3f8b196816b0f7769ba662b4f711320107a64fb697d240840248fe334c2a7786
3
+ metadata.gz: 8ee315e134b969a778faf20d364cc9347f7535740b507f12ec2abe533f746430
4
+ data.tar.gz: db64ecd464944c6193a34c61e3a65fed79657d61c5da6404f524db5bc0d7e9c6
5
5
  SHA512:
6
- metadata.gz: 700dfa05a984dabf155a2986bf3c2506e91042eefd25c6f5b0630ed264594093d3a3f5ec20710447a8a38c3d1112f098f320f8af42aeeb88f116e4591ebc3b0d
7
- data.tar.gz: 76d58104bccd82495e3520d53ecb120e3045cce0d8f0abb8252f1f0592625392570e589fe00a89b4dd93024a45d85d3d270284e0926ad438a6cc7c1707a30c90
6
+ metadata.gz: 2ab94059e4c3cbec455f2c8a4722b86fed215ce44673361769c92a80b78374b4098288edd98d632db2b96a0c53fc6be78c6c701721a5678a59fca942e515e1ce
7
+ data.tar.gz: 3a4fb74ffcab2d0309d03bcda5ec695696ddaf48835947290be4192f21125083fd305eac49bf17a1ec980265577452b22f48273a19e5083fb6c461b76098f045
data/CHANGELOG.md CHANGED
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [0.1.4] - 2025-11-09
9
+
10
+ ### Changed
11
+ - Removed `display: flex` from container default style for better layout flexibility
12
+ - Container now renders elements inline by default
13
+
8
14
  ## [0.1.3] - 2025-11-09
9
15
 
10
16
  ### Fixed
@@ -3,7 +3,7 @@
3
3
  module Rails
4
4
  module Clipboard
5
5
  module Helper
6
- VERSION = "0.1.3"
6
+ VERSION = "0.1.4"
7
7
  end
8
8
  end
9
9
  end
@@ -88,7 +88,7 @@ module Rails
88
88
  JS
89
89
 
90
90
  html = <<~HTML
91
- <div class="#{container_class}" style="display: flex; align-items: center; gap: 10px;">
91
+ <div class="#{container_class}">
92
92
  #{show_content ? %Q(<span class="#{content_class}" id="#{unique_id}">#{ERB::Util.html_escape(content)}</span>) : %Q(<input type="hidden" id="#{unique_id}" value="#{ERB::Util.html_escape(content)}">)}
93
93
  <button
94
94
  type="button"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails-clipboard-helper
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - dhq_boiler