- Issue created by @G4MBINI
- Merge request !79Issue #3506369 by g4mbini: [4.0.0-beta2] Move grid_cols and gap prop types... → (Merged) created by G4MBINI
In grid row, many enums would be better as integers than strings.
type: array
maxItems: 4
items:
type: string
enum:
- col-span-1
- col-span-2
- col-span-3
- ...
It would be better to do:
type: array
maxItems: 4
items:
type: integer
enum: [1, 2, 3...]
And concatenate the "col-span-" in the twig template
Active
4.0
Code