heroicons_helper 0.5.0 → 0.7.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +4 -0
- data/README.md +2 -2
- data/heroicons_helper.gemspec +6 -0
- data/lib/heroicons_helper/cache.rb +11 -3
- data/lib/heroicons_helper/data.json +1 -3682
- data/lib/heroicons_helper/icon.rb +16 -7
- data/lib/heroicons_helper/version.rb +1 -1
- data/lib/heroicons_helper.rb +4 -3
- data/package-lock.json +15 -15
- data/package.json +1 -1
- data/script/keywords.json +1 -1
- data/script/update_heroicons +19 -36
- metadata +19 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5da4c0b0f7f44f07d6503285f56e845985f40dafa7684bc1f9f0dbbaad9a01a4
|
4
|
+
data.tar.gz: dc0e4700c426c4d40d0e8006bcd554b448be6ee2fc8a0394bd6258084ef14c93
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 71e76c5abdc3054576e00408126357b6393d7d0eea9f0f447e0cf9f5c404fc6c0b02901669333d2d7dbe5d9aec67ed8e22cfdbfc20817b879a61128e89bdc567
|
7
|
+
data.tar.gz: af25792b836859a2f929458552f626e97cf71223b82a8e700659c461e8a1d335360817597af63a5198a21ba1dff7d958f18e729928aab5bbc2e7d9fc67b56396
|
data/Gemfile
CHANGED
data/README.md
CHANGED
@@ -31,13 +31,13 @@ heroicon(icon, variant, attributes: {})
|
|
31
31
|
where
|
32
32
|
|
33
33
|
* `icon` is the Heroicon name (eg. `:bell` or `"bell")
|
34
|
-
* `variant` is the type of Heroicons (eg., `outline` or `
|
34
|
+
* `variant` is the type of Heroicons (eg., `outline`, `solid`, or `mini`)
|
35
35
|
* `attributes` are any additional HTML attributes to add on to the resulting `svg` element
|
36
36
|
|
37
37
|
This one method call returns an object that represents the Heroicon, and you should call `to_svg` to get the resulting SVG string:
|
38
38
|
|
39
39
|
```ruby
|
40
|
-
outline_icon = heroicon("x", variant: HeroiconsHelper::Icon::VARIANT_OUTLINE)
|
40
|
+
outline_icon = heroicon("x-mark", variant: HeroiconsHelper::Icon::VARIANT_OUTLINE)
|
41
41
|
puts outline_icon.to_svg
|
42
42
|
```
|
43
43
|
```
|
data/heroicons_helper.gemspec
CHANGED
@@ -16,6 +16,10 @@ Gem::Specification.new do |spec|
|
|
16
16
|
|
17
17
|
spec.metadata["homepage_uri"] = spec.homepage
|
18
18
|
spec.metadata["source_code_uri"] = spec.homepage
|
19
|
+
spec.metadata = {
|
20
|
+
"funding_uri" => "https://github.com/sponsors/gjtorikian/",
|
21
|
+
"rubygems_mfa_required" => "true",
|
22
|
+
}
|
19
23
|
|
20
24
|
# Specify which files should be added to the gem when it is released.
|
21
25
|
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
@@ -28,6 +32,8 @@ Gem::Specification.new do |spec|
|
|
28
32
|
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
|
29
33
|
spec.require_paths = ["lib"]
|
30
34
|
|
35
|
+
spec.add_runtime_dependency("activesupport", ">= 6")
|
36
|
+
|
31
37
|
# Uncomment to register a new dependency of your gem
|
32
38
|
# spec.add_dependency "example-gem", "~> 1.0"
|
33
39
|
|
@@ -6,8 +6,15 @@ module HeroiconsHelper
|
|
6
6
|
LOOKUP = {}
|
7
7
|
|
8
8
|
class << self
|
9
|
-
def get_key(name:, variant:, width: nil, height: nil)
|
10
|
-
attrs = { name: name, variant: variant, width: width, height: height }
|
9
|
+
def get_key(name:, variant:, unsafe: false, width: nil, height: nil)
|
10
|
+
attrs = { name: name, variant: variant, unsafe: unsafe, width: width, height: height }
|
11
|
+
if unsafe
|
12
|
+
attrs[:unsafe] = true
|
13
|
+
else
|
14
|
+
attrs.delete(:unsafe)
|
15
|
+
attrs[:safe] = true
|
16
|
+
end
|
17
|
+
|
11
18
|
attrs.compact!
|
12
19
|
attrs.hash
|
13
20
|
end
|
@@ -52,8 +59,9 @@ module HeroiconsHelper
|
|
52
59
|
cache_key = HeroiconsHelper::Cache.get_key(
|
53
60
|
name: icon["name"],
|
54
61
|
variant: icon["variant"],
|
62
|
+
unsafe: icon["unsafe"] || false,
|
55
63
|
height: height,
|
56
|
-
width: width
|
64
|
+
width: width,
|
57
65
|
)
|
58
66
|
|
59
67
|
cache_icon = HeroiconsHelper::Cache.read(cache_key)
|