@benwatsonuk/govuk-pages-plugin 1.2.1 → 1.2.2

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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## v1.2.2
4
+
5
+ ### Fixes
6
+ - Page Options working for Flows with and without stage information (previously only with stage data)
7
+
3
8
  ## v1.2.1
4
9
 
5
10
  ### Features
@@ -8,6 +8,11 @@
8
8
  column-gap: govuk-spacing(1);
9
9
  overflow-x: scroll;
10
10
  }
11
+ &--inline {
12
+ display: flex;
13
+ column-gap: govuk-spacing(1);
14
+ overflow-x: scroll;
15
+ }
11
16
  &--full-width {
12
17
  overflow-x: visible;
13
18
  }
@@ -167,4 +172,16 @@
167
172
  }
168
173
  }
169
174
  }
175
+
176
+ &__flow {
177
+ &:not(:has(.govuk-pages-plugin__stages__item)) {
178
+ .govuk-pages-plugin__flows__item {
179
+ &:last-of-type {
180
+ &:before, .govuk-pages-plugin__flows__connector {
181
+ display: none;
182
+ }
183
+ }
184
+ }
185
+ }
186
+ }
170
187
  }