Conversation
6def5c5 to
1fb1dda
Compare
1fb1dda to
678c268
Compare
1b07253 to
7589179
Compare
7a02791 to
0a4881e
Compare
|
|
||
| ```yaml | ||
| # config/packages/sylius_grid.yaml | ||
|
|
There was a problem hiding this comment.
This line break is present in all YAML/PHP examples in this file. Should I remove it?
| @@ -22,6 +22,13 @@ | |||
| </service> | |||
| <service id="sylius.grid_field.datetime" alias="Sylius\Component\Grid\FieldTypes\DatetimeFieldType" /> | |||
There was a problem hiding this comment.
Normally it has been flipped back. I have to check.
There was a problem hiding this comment.
I confirmed, I think your branch is not up to date.
There was a problem hiding this comment.
No!! @GSadee, you forgot the upmerge from 1.13 to 1.14
There was a problem hiding this comment.
I updated the config files
0a4881e to
20c2258
Compare
composer.json
Outdated
| "symfony/dependency-injection": "^5.4 || ^6.4 || ^7.0", | ||
| "symfony/deprecation-contracts": "^2.2 || ^3.1", | ||
| "symfony/event-dispatcher": "^5.4 || ^6.4 || ^7.0", | ||
| "symfony/expression-language": "^5.4 || ^6.0 || ^7.0", |
There was a problem hiding this comment.
| "symfony/expression-language": "^5.4 || ^6.0 || ^7.0", | |
| "symfony/expression-language": "^5.4 || ^6.4 || ^7.0", |
docs/field_types.md
Outdated
| Expression | ||
| ---------- | ||
|
|
||
| The **Expression** column provides flexibility by allowing you to specify an expression that will be evaluated on the fly. |
There was a problem hiding this comment.
| The **Expression** column provides flexibility by allowing you to specify an expression that will be evaluated on the fly. | |
| The **Expression** field type provides flexibility by allowing you to specify an expression that will be evaluated on the fly. |
docs/field_types.md
Outdated
| label: app.ui.price | ||
| options: | ||
| expression: 'value ~ "$"' | ||
|
|
docs/field_types.md
Outdated
| options: | ||
| expression: '"<strong>" ~ value ~ "</strong>"' | ||
| htmlspecialchars: false | ||
|
|
| <service id="Sylius\Bundle\GridBundle\FieldTypes\TwigFieldType" alias="sylius.grid_field.twig" /> | ||
| </services> | ||
| </container> | ||
|
|
src/Component/composer.json
Outdated
| "symfony/config": "^5.4 || ^6.4 || ^7.0", | ||
| "symfony/deprecation-contracts": "^2.2", | ||
| "symfony/event-dispatcher": "^5.4 || ^6.4 || ^7.0", | ||
| "symfony/expression-language": "^5.4 || ^6.0 || ^7.0", |
There was a problem hiding this comment.
| "symfony/expression-language": "^5.4 || ^6.0 || ^7.0", | |
| "symfony/expression-language": "^5.4 || ^6.4 || ^7.0", |
| <service id="sylius_grid.expression_language" class="Symfony\Component\ExpressionLanguage\ExpressionLanguage"> | ||
| <factory service="sylius_grid.expression_language.factory" /> | ||
| </service> | ||
| <service id="Symfony\Component\ExpressionLanguage\ExpressionLanguage" alias="sylius_grid.expression_language" /> |
There was a problem hiding this comment.
I don't think we can use symfony vendor class as alias for our locale expression language instance.
There was a problem hiding this comment.
Yep, I did this without thinking
20c2258 to
eed11b4
Compare
No description provided.