feat(style): implementa media query com variáveis #2219
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
spike - grid-system: implementa customização dos breakpoints
SPIKE po-style-service
DTHFUI-9712
Qual o comportamento atual?
Atualmente não é possível implementar regras de media query com referência à variáveis, exemplo:
@media (min-width: var(--gridSystemMdMinWidth)) and (max-width: var(--gridSystemMdMaxWidth)){}
Foi realizado teste com o postcss-custom-properties e outros porém não reconheceram as variáveis quando referenciadas em regra de media query.
Qual o novo comportamento?
O estudo demonstrou como possibilitar a implementação de media query referenciando variáveis no lugar de valores;
A solução contempla dois lados:
1-O projeto Po-Style: Agora possibilita declararmos variáveis e com o auxílio do plugin postcss-simple-vars integrado ao gulp realiza a troca das respectivas variáveis para seus valores.
2-O serviço PoStyleService: Criado um serviço que possibilita ao desenvolver realizar a customização das variáveis informando a regra e qual valor ou valores deverá aplicar.
Simulação