Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ jobs:
contents: write
id-token: write
steps:
- name: Install dependencies
env:
DEPENDENCIES: libvips
run: sudo apt-get install -y $DEPENDENCIES || (sudo apt-get update && sudo apt-get install -y $DEPENDENCIES)
- uses: actions/checkout@v6
- uses: ruby/setup-ruby@v1
with:
Expand Down
23 changes: 12 additions & 11 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ GIT
PATH
remote: .
specs:
katalyst-koi (5.9.0)
katalyst-koi (5.10.0)
bcrypt
importmap-rails
jwt (>= 3.0)
katalyst-content (>= 3.2)
katalyst-govuk-formbuilder (>= 1.28.0, < 2)
katalyst-govuk-formbuilder (>= 2)
katalyst-html-attributes
katalyst-navigation (>= 2)
katalyst-tables (>= 3.5)
Expand Down Expand Up @@ -78,11 +78,11 @@ GEM
erubi (~> 1.11)
rails-dom-testing (~> 2.2)
rails-html-sanitizer (~> 1.6)
active_storage_validations (3.0.6)
activejob (>= 6.1.4)
activemodel (>= 6.1.4)
activestorage (>= 6.1.4)
activesupport (>= 6.1.4)
active_storage_validations (4.0.0)
activejob (>= 7.0.1)
activemodel (>= 7.0.1)
activestorage (>= 7.0.1)
activesupport (>= 7.0.1)
marcel (>= 1.0.3)
activejob (8.1.3.1)
activesupport (= 8.1.3.1)
Expand Down Expand Up @@ -229,13 +229,14 @@ GEM
jwt (3.2.0)
base64
katalyst-basic-auth (1.0.0)
katalyst-content (3.2.1)
katalyst-content (3.2.2)
active_storage_validations
activerecord
katalyst-govuk-formbuilder
katalyst-html-attributes
view_component
katalyst-govuk-formbuilder (1.30.1)
katalyst-govuk-formbuilder (2.0.0)
activestorage (>= 8.0.0)
govuk_design_system_formbuilder (>= 6.2.0)
katalyst-html-attributes (1.1.2)
activesupport
Expand Down Expand Up @@ -364,7 +365,7 @@ GEM
zeitwerk (~> 2.6)
rainbow (3.1.1)
rake (13.4.2)
rbs (4.1.1)
rbs (4.1.2)
logger
prism (>= 1.6.0)
tsort
Expand Down Expand Up @@ -486,7 +487,7 @@ GEM
railties (>= 6.0.0)
thor (1.5.0)
timeout (0.6.1)
tpm-key_attestation (0.14.1)
tpm-key_attestation (0.14.2)
bindata (~> 2.4)
openssl (> 2.0)
openssl-signature_algorithm (~> 1.0)
Expand Down
6 changes: 4 additions & 2 deletions app/assets/stylesheets/koi/blocks/button.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
.button {
.button,
:where(.govuk-button) {
/* Configuration */
--button-padding: 0.5em 1em;
--button-gap: 0.5em;
Expand Down Expand Up @@ -72,7 +73,8 @@
--button-padding: 0.5em;
}

&[data-ghost-button] {
&[data-ghost-button],
&:where(.govuk-button--secondary) {
--button-bg: transparent;
--button-border-color: currentColor;
--button-color: currentColor;
Expand Down
84 changes: 0 additions & 84 deletions app/assets/stylesheets/koi/forms/document-field.css

This file was deleted.

Loading