openproject-primer_view_components 0.44.1 → 0.44.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4070976cb5e56ee3459252e07c3fd1ca3544841315d96c5f4c05d57cad5eeeee
4
- data.tar.gz: 1a4cafe7ca3769c7ffaab32f19981d27323948c54416c870548d7cca7ea6ef9d
3
+ metadata.gz: 73a4696100a12779bd22f474145dabb70cf5e961951308ff0c31f171910f8844
4
+ data.tar.gz: 5689ce9147a4aafdfacdcf7a2d92e03d8402f28fd8af7fdf67078da3abb8c85e
5
5
  SHA512:
6
- metadata.gz: 1a1fdf6170b51b055da049ded17920b44cabfd528a10020d36f0d9281a04eba575f9bf85b90f47827fb15f5cb6eacf0c7471e7f792ab6c6face6f6476dc4d40d
7
- data.tar.gz: 5f4f687e0b02c3d2f206b6bcb1c2019524b55550ad02f9c94150ef13ee5e4ba0203291c0034beee7f0f2c437a2e189c325683617ed11d1085ee7f23c4c0373fe
6
+ metadata.gz: 6b31ea331978ffb53836339bc10571d4e7894f5f24c8a9949b55f3bea4a8116009e4499035da620ee857f2954e06c4688cc863c5ea691df08666da4bd0f963ec
7
+ data.tar.gz: df6928a7664073476e4565058b58bdc30a988f630be267c21e03e49b6123b6342fa137a4557d4719d6abd061fb7e4b9378b0abf964ca48ca08968e2c1bf68dea
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 0.44.3
4
+
5
+ ### Patch Changes
6
+
7
+ - [#180](https://github.com/opf/primer_view_components/pull/180) [`259491b`](https://github.com/opf/primer_view_components/commit/259491b418f1179537cee5caee5f306af30b83d8) Thanks [@HDinger](https://github.com/HDinger)! - Allow FeedbackMessage to show no icon at all
8
+
9
+ - [#182](https://github.com/opf/primer_view_components/pull/182) [`e0f7e87`](https://github.com/opf/primer_view_components/commit/e0f7e871f24a52901915e2310bf2445f0ab46f72) Thanks [@HDinger](https://github.com/HDinger)! - Upgrade Vite; stop updating bundle in CI
10
+
11
+ ## 0.44.2
12
+
13
+ ### Patch Changes
14
+
15
+ - [#178](https://github.com/opf/primer_view_components/pull/178) [`3429d42`](https://github.com/opf/primer_view_components/commit/3429d42114df30550f588a94f6e5577f6f3b710c) Thanks [@HDinger](https://github.com/HDinger)! - Remove OpenStruct from primer_octicon cop
16
+
17
+ - [#175](https://github.com/opf/primer_view_components/pull/175) [`015b6dc`](https://github.com/opf/primer_view_components/commit/015b6dc1bcc18878e173ca4a524a91d57756d654) Thanks [@HDinger](https://github.com/HDinger)! - Precompile loading svg
18
+
3
19
  ## 0.44.1
4
20
 
5
21
  ### Patch Changes
@@ -40,7 +40,7 @@ module Primer
40
40
  def before_render
41
41
  if @loading
42
42
  @blankslate.with_visual_image(src: asset_path("loading_indicator.svg"), alt: I18n.t(:label_loading))
43
- else
43
+ elsif @icon_arguments[:icon] != :none
44
44
  @blankslate.with_visual_icon(size: :medium, **@icon_arguments)
45
45
  end
46
46
 
@@ -6,7 +6,7 @@ module Primer
6
6
  module VERSION
7
7
  MAJOR = 0
8
8
  MINOR = 44
9
- PATCH = 1
9
+ PATCH = 3
10
10
 
11
11
  STRING = [MAJOR, MINOR, PATCH].join(".")
12
12
  end
@@ -200,7 +200,7 @@ module RuboCop
200
200
  def kwargs(node)
201
201
  return node.arguments.last if node.arguments.size > 1
202
202
 
203
- OpenStruct.new(keys: [], pairs: [], type: :hash)
203
+ RuboCop::AST::HashNode.new("hash")
204
204
  end
205
205
 
206
206
  def icon(node)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: openproject-primer_view_components
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.44.1
4
+ version: 0.44.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - GitHub Open Source
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2024-09-04 00:00:00.000000000 Z
12
+ date: 2024-09-06 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: actionview