primer_view_components 0.0.56 → 0.0.57

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: 1263f18dfe58150640310bfea1bd27f14e3854656f77606ed824fb4cc068b47e
4
- data.tar.gz: 6dc1be9c61762bc31d0274b9402853d53c9a8e75438ffb3361179f0104c1896c
3
+ metadata.gz: d48950fcd237f0cbc66a756cd503bad481125489a4be1dceaaca10d9585b1f9a
4
+ data.tar.gz: a08fd9afa611ef57ec975550b9522fdf7923475a77e80a5e726cb7ec593c289f
5
5
  SHA512:
6
- metadata.gz: da4c5a2f914f1b08177830023af568d4cc9970bf8047c95fa39ce13d3ea46b6a30687ae6df89a9fefbfb65b5e9f52f37ace2801370f9582513c43b0e5e26ccfb
7
- data.tar.gz: 66e9eb50c0f9a91aecd6804d7b44aa5d6644f094edbf6011e60361a54d9de1c51dcb0ec157c162458139ca69d2cb7a469c8978b53b63d5f2aa06f59b79ebdc1f
6
+ metadata.gz: 405f72cbcdf10628d38d31e13e9c9522ce1210c8ad563afddf25bffb76eb3003d58a65d97878f496d6c9e92e82dcc657b22460dd3170bae314cc4c8ef6e6db0d
7
+ data.tar.gz: f6b22b60183ddecf413911bdbd05492a8694974f6445c355eafe08e3ba010784e5fbaf72cae66706c27a2cc1aa6c5a5605160711eeb3c3e0df33c71f8d83b2a3
data/CHANGELOG.md CHANGED
@@ -30,6 +30,14 @@ The category for changes related to documentation, testing and tooling. Also, fo
30
30
 
31
31
  ## main
32
32
 
33
+ ## 0.0.57
34
+
35
+ ### Bug fixes
36
+
37
+ * Don't suggest empty colors for Octicons when autocorrecting.
38
+
39
+ *Manuel Puyol*
40
+
33
41
  ## 0.0.56
34
42
 
35
43
  ### Updates
@@ -0,0 +1 @@
1
+ import '@github/auto-complete-element';
@@ -0,0 +1 @@
1
+ import '@github/auto-complete-element';
@@ -0,0 +1 @@
1
+ import '@github/auto-complete-element';
@@ -0,0 +1 @@
1
+ import '@github/auto-complete-element';
@@ -5,7 +5,7 @@ module Primer
5
5
  module VERSION
6
6
  MAJOR = 0
7
7
  MINOR = 0
8
- PATCH = 56
8
+ PATCH = 57
9
9
 
10
10
  STRING = [MAJOR, MINOR, PATCH].join(".")
11
11
  end
@@ -142,11 +142,11 @@ module RuboCop
142
142
  :text_white
143
143
  when :text_link
144
144
  :icon_info
145
- else
145
+ when Symbol
146
146
  args[:color].to_s.gsub("text_", "icon_").to_sym
147
147
  end
148
148
 
149
- args[:color] = color
149
+ args[:color] = color if color
150
150
 
151
151
  ::Primer::Classify::Utilities.hash_to_args(args)
152
152
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: primer_view_components
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.56
4
+ version: 0.0.57
5
5
  platform: ruby
6
6
  authors:
7
7
  - GitHub Open Source
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-09-10 00:00:00.000000000 Z
11
+ date: 2021-09-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: actionview
@@ -387,6 +387,10 @@ files:
387
387
  - app/components/primer/alpha/underline_nav.rb
388
388
  - app/components/primer/alpha/underline_panels.html.erb
389
389
  - app/components/primer/alpha/underline_panels.rb
390
+ - app/components/primer/auto_complete/auto_complete.d.ts
391
+ - app/components/primer/auto_complete/auto_complete.js
392
+ - app/components/primer/auto_complete/auto_component.d.ts
393
+ - app/components/primer/auto_complete/auto_component.js
390
394
  - app/components/primer/base_button.rb
391
395
  - app/components/primer/base_component.rb
392
396
  - app/components/primer/beta/auto_complete.rb
@@ -570,7 +574,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
570
574
  - !ruby/object:Gem::Version
571
575
  version: '0'
572
576
  requirements: []
573
- rubygems_version: 3.2.22
577
+ rubygems_version: 3.1.2
574
578
  signing_key:
575
579
  specification_version: 4
576
580
  summary: ViewComponents for the Primer Design System