ariadne_view_components 0.0.68 → 0.0.69

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: 2c1c6ce26063b99def7c171185947bcadfc6ab4a01217570bd70ead0ac48fced
4
- data.tar.gz: 2c77caa134f149e3b32d9c1e9e767177e00aeb9c9cd51924ad955fa81f974f2b
3
+ metadata.gz: 6ea95398dc37c037489d83c7df796efa07358b63e5ad265db31ff497c7f3fab7
4
+ data.tar.gz: 268aba20f7c246554ded76254471c4496a659bbf4364e469138413d27138bf59
5
5
  SHA512:
6
- metadata.gz: 1a362bbcf743922eec8195d821f17b68d94d78d493f988b12f18994d3fa24efc4328451ff9a03e5f7ec17fe4e21754f322ac42756ca9f85de583dd3b351acd67
7
- data.tar.gz: fe2e8da4c9af0221e781a2f11ea920a7a96971c6f0be2326c4e4f9065ed45f49c4b5f2a9086989cc85339a8b3af259c516e223cc3c89a188f001d685c232351a
6
+ metadata.gz: cc4cbf3d71140d80c85a1dd9cd9e8c0046df890fb9c06404da089aea6850dc7325c2fb4812986cbe8d60234bcc3eb0a4ab7b5d1e2079825b7403175061d62571
7
+ data.tar.gz: f8308ec755858f998dfc30c79f52082fd3ab56c16c059d8295669e446db62464ffcf33c03c34e5172efb9a25a3a7edfd8afe4fc2ab32043bcea1529b0e4c9af0
data/CHANGELOG.md CHANGED
@@ -1,3 +1,5 @@
1
+ ## [v0.0.68] - 05-04-2024
2
+ **Full Changelog**: https://github.com/yettoapp/ariadne/compare/v0.0.67...v0.0.68
1
3
  ## [v0.0.67] - 05-04-2024
2
4
  **Full Changelog**: https://github.com/yettoapp/ariadne/compare/v0.0.66...v0.0.67
3
5
  ## [v0.0.66] - 05-04-2024
@@ -29,81 +29,6 @@ module Ariadne
29
29
  include IconHelper
30
30
  include HeroiconsHelper
31
31
 
32
- PRELOADED_ICONS = [
33
- {
34
- name: "bell",
35
- variant: HeroiconsHelper::Icon::VARIANT_OUTLINE,
36
- },
37
- {
38
- name: "check",
39
- variant: HeroiconsHelper::Icon::VARIANT_OUTLINE,
40
- },
41
- {
42
- name: "chevron-down",
43
- variant: HeroiconsHelper::Icon::VARIANT_OUTLINE,
44
- },
45
- {
46
- name: "clipboard",
47
- variant: HeroiconsHelper::Icon::VARIANT_OUTLINE,
48
- },
49
- {
50
- name: "clock",
51
- variant: HeroiconsHelper::Icon::VARIANT_OUTLINE,
52
- },
53
- {
54
- name: "information-circle",
55
- variant: HeroiconsHelper::Icon::VARIANT_OUTLINE,
56
- },
57
- {
58
- name: "dots-horizontal",
59
- variant: HeroiconsHelper::Icon::VARIANT_OUTLINE,
60
- },
61
- {
62
- name: "link",
63
- variant: HeroiconsHelper::Icon::VARIANT_OUTLINE,
64
- },
65
- {
66
- name: "lock-closed",
67
- variant: HeroiconsHelper::Icon::VARIANT_OUTLINE,
68
- },
69
- {
70
- name: "mail",
71
- variant: HeroiconsHelper::Icon::VARIANT_OUTLINE,
72
- },
73
- {
74
- name: "menu",
75
- variant: HeroiconsHelper::Icon::VARIANT_OUTLINE,
76
- },
77
- {
78
- name: "pencil",
79
- variant: HeroiconsHelper::Icon::VARIANT_OUTLINE,
80
- },
81
- {
82
- name: "plus-sm",
83
- variant: HeroiconsHelper::Icon::VARIANT_OUTLINE,
84
- },
85
- {
86
- name: "question-mark-circle",
87
- variant: HeroiconsHelper::Icon::VARIANT_OUTLINE,
88
- },
89
- {
90
- name: "search",
91
- variant: HeroiconsHelper::Icon::VARIANT_OUTLINE,
92
- },
93
- {
94
- name: "search",
95
- variant: HeroiconsHelper::Icon::VARIANT_OUTLINE,
96
- },
97
- {
98
- name: "trash",
99
- variant: HeroiconsHelper::Icon::VARIANT_OUTLINE,
100
- },
101
- {
102
- name: "x-mark",
103
- variant: HeroiconsHelper::Icon::VARIANT_OUTLINE,
104
- },
105
- ].freeze
106
-
107
32
  accepts_html_attributes do |html_attrs|
108
33
  html_attrs[:class] = Ariadne::ViewComponents.tailwind_merger.merge([@heroicon.attributes["class"], style(size: @size), html_attrs[:class]].join(" "))
109
34
  end
@@ -34,8 +34,7 @@ module Ariadne
34
34
  if Rails.application.config.eager_load
35
35
  Ariadne::Forms::Base.compile!
36
36
  Ariadne::Forms::Base.descendants.each(&:compile!)
37
- Ariadne::Forms::BaseComponent.descendants.each(&:compile!)
38
- Ariadne::Heroicon::Cache.preload!
37
+ Ariadne::Form::BaseComponent.descendants.each(&:compile!)
39
38
  end
40
39
  end
41
40
  end
@@ -3,6 +3,6 @@
3
3
  # :nocov:
4
4
  module Ariadne
5
5
  module ViewComponents
6
- VERSION = "0.0.68"
6
+ VERSION = "0.0.69"
7
7
  end
8
8
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ariadne_view_components
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.68
4
+ version: 0.0.69
5
5
  platform: ruby
6
6
  authors:
7
7
  - Garen J. Torikian