nuvoleweb / ui_patterns

[NOTE] Development has moved to https://drupal.org/project/ui_patterns
https://drupal.org/project/ui_patterns
GNU General Public License v2.0
85 stars 56 forks source link

It is possible to define different "preview" by "variants" ? #352

Open steveoriol opened 2 years ago

steveoriol commented 2 years ago

for example:

[...]
  variants:
    default:
      label: Défaut
      description: Affichage normal.
    teaser:
      label: Teaser
      description: Affichage Teaser.
  fields:
    nom:
      type: text
      label: Nom
      description: Nom du produit.
      preview:
        default: 'Lave de strombolli'
        teaser: 'Lave de ....'
    visuel:
      type: image
      label: Visuel produit
      description: Visuel du produit.
      preview:
        default:
          theme: image
          uri: https://via.placeholder.com/220
          width: 220
          attributes: {}
        teaser: 20
[...]