openproject-primer_view_components 0.35.0 → 0.35.1
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 +4 -4
- data/CHANGELOG.md +6 -0
- data/app/components/primer/open_project/flex_layout.rb +1 -1
- data/lib/primer/view_components/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7eaa566da63f5b8b5b2b4ac23a4720e917f0e26f364129cf2491feb1104fd530
|
|
4
|
+
data.tar.gz: 89478f4fbff4f41cb3e2163c37dd3e99e239c2094e61efabf897759da0fe0190
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ae5b0322ba727f1f8616d11eddd67c071947fbeb07595acae58586340eb4cf08c69362578bbc794a7089a967cda0c697157b80e1d95962205f882372f2f13000
|
|
7
|
+
data.tar.gz: e4278df9ab46c3679953235b8f80a307fe026f8b29a77f24f1cb1044a5598d12928008b2425907f066836fcd9a62c01c0cb4bf6770b7767e26241868befcae0a
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# CHANGELOG
|
|
2
2
|
|
|
3
|
+
## 0.35.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#133](https://github.com/opf/primer_view_components/pull/133) [`650d1e6`](https://github.com/opf/primer_view_components/commit/650d1e6420e14843c65c09a9e2bb60a2f868ffc1) Thanks [@oliverguenther](https://github.com/oliverguenther)! - Don't raise on empty flex_layout
|
|
8
|
+
|
|
3
9
|
## 0.35.0
|
|
4
10
|
|
|
5
11
|
### Minor Changes
|
|
@@ -29,7 +29,7 @@ module Primer
|
|
|
29
29
|
|
|
30
30
|
def render?
|
|
31
31
|
# no slot provided
|
|
32
|
-
|
|
32
|
+
return false if rows.empty? && columns.empty? && boxes.empty?
|
|
33
33
|
|
|
34
34
|
if [rows, columns, boxes].count { |arr| !arr.empty? } == 1
|
|
35
35
|
# only rows or columns or boxes are used
|
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.35.
|
|
4
|
+
version: 0.35.1
|
|
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-06-
|
|
12
|
+
date: 2024-06-24 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: actionview
|