Generate select list if a property has an enum value

Created on 18 October 2024, 6 months ago

Problem/Motivation

It would be nice if the component form would generate a select list if there are enum values.

For example, I only want a few icons to be available to show in the component:

$schema: https://git.drupalcode.org/project/sdc/-/raw/1.x/src/metadata.schema.json
name: Icon
status: stable
group: Atoms

props:
  type: object
  properties:
    theIcon:
      type: string
      title: Icon
      description: "The icon to show"
      enum:
        - "twitter"
        - "youtube"
        - "facebook"
        - "oc"

This would generate:

<select>
    <option value="twitter">twitter</option>
    <option value="youtube">youtube</option>
    <option value="facebook">facebook</option>
    <option value="oc">oc</option>
</select>
✨ Feature request
Status

Active

Version

1.1

Component

Code

Created by

πŸ‡ΊπŸ‡ΈUnited States markie Albuquerque, NM

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Merge Requests

Comments & Activities

Production build 0.71.5 2024