action_link 1.0.1 → 1.1.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: 80820750651f4ec759b40bafb3e029029676672d2e72f83b69eba9bd2f05a95b
4
- data.tar.gz: e3daa24250f63d7a9e5c41c2c4609007d63b3501e1e48c156eee0590efc2253b
3
+ metadata.gz: c33e8b0089be923178f23d55374d1716fa494f3c4b96743ae8266e4b71a66658
4
+ data.tar.gz: f2bcdf399c150c9c0a267ab789ae01fbc9ba00518fe5fbcc24df0cb95073d495
5
5
  SHA512:
6
- metadata.gz: a639c34fb4df4af7c79fe5478f9212fcd39dfd61363e1476f7fc411a370199e529c2b85549f0092803a369fbf00e6bd7f634fafcabb64f7827b14576950b4c5e
7
- data.tar.gz: d637d15c764b1cfc0c82ae5f27b83846cc82ac7f2627dc96662eaad0a805641e0e1fb6fd725f37e0bfcf446c95cb7e5fc4b49538af2ba37ace681d8febbf3ccf
6
+ metadata.gz: d81dc1c9cdd2b9d5cfcbfdf7a868951b04f12520fed0acc8b276ec50603115e175fb7c82c82ed6f10a2450d2908ba5c7bd22b1489592c58cba64ae5299ee988f
7
+ data.tar.gz: 050da79ed63d7b44fe34488b16e85d711155f6ba85f500b87652b85403a5d329d3166e50177f2fe285ff16311791c37afceb2db378e6f05da33bc864a78fd744
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [1.1.0] - 2026-04-28
4
+
5
+ - Attempt to fix warnings in rails boot
6
+
7
+ ## [1.0.2] - 2026-03-31
8
+
9
+ - Remove too invasive CSS default styling for links
10
+
3
11
  ## [1.0.1] - 2026-01-27
4
12
 
5
13
  - Fix <a title> for non-breaking spaces
@@ -2,7 +2,3 @@
2
2
  @use "./style"
3
3
  @use "./fonts"
4
4
  @use "./acticons"
5
-
6
- // Let's add some sane default that is not blue.
7
- .c-action-link
8
- color: black
@@ -35,14 +35,16 @@ module ActionLink
35
35
  # AND the view_component gem has been fully initialized (configured).
36
36
  #
37
37
  # That's right here and now.
38
- require_relative '../../app/components/action_link/application_component'
39
- require_relative '../../app/components/action_link/base'
40
- require_relative '../../app/components/action_link/custom'
41
- require_relative '../../app/components/action_link/destroy'
42
- require_relative '../../app/components/action_link/edit'
43
- require_relative '../../app/components/action_link/new'
44
- require_relative '../../app/components/action_link/show'
45
- require_relative '../../app/components/action_link/download'
38
+ ActiveSupport.on_load(:action_view) do
39
+ require_relative '../../app/components/action_link/application_component'
40
+ require_relative '../../app/components/action_link/base'
41
+ require_relative '../../app/components/action_link/custom'
42
+ require_relative '../../app/components/action_link/destroy'
43
+ require_relative '../../app/components/action_link/edit'
44
+ require_relative '../../app/components/action_link/new'
45
+ require_relative '../../app/components/action_link/show'
46
+ require_relative '../../app/components/action_link/download'
47
+ end
46
48
  end
47
49
  end
48
50
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ActionLink
4
- VERSION = '1.0.1'
4
+ VERSION = '1.1.0'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: action_link
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - halo
@@ -127,7 +127,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
127
127
  - !ruby/object:Gem::Version
128
128
  version: '0'
129
129
  requirements: []
130
- rubygems_version: 4.0.1
130
+ rubygems_version: 4.0.6
131
131
  specification_version: 4
132
132
  summary: A set of ViewComponents for common links (show, edit, delete, etc.)
133
133
  test_files: []