-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3715 from open-formulieren/feature/3712-upgrade-f…
…ormio-builder Upgrade formio builder
- Loading branch information
Showing
16 changed files
with
2,281 additions
and
91 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
module.exports = { | ||
plugins: [require('autoprefixer'), require('cssnano')], | ||
plugins: [require('autoprefixer'), require('cssnano'), require('css-has-pseudo')()], | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
src/openforms/forms/migrations/0100_ensure_datasrc_property.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Generated by Django 3.2.23 on 2023-12-27 13:01 | ||
|
||
from django.db import migrations | ||
|
||
from openforms.forms.migration_operations import ConvertComponentsOperation | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("forms", "0099_form_theme"), | ||
] | ||
|
||
operations = [ | ||
ConvertComponentsOperation("select", "set_openforms_datasrc"), | ||
ConvertComponentsOperation("radio", "set_openforms_datasrc"), | ||
ConvertComponentsOperation("selectboxes", "set_openforms_datasrc"), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.