Editor API Reference - v1.1.4
    Preparing search index...

    Class ComponentSchema

    Provides methods to access the components schema

    Index

    Internal

    Other

    • Gets default data for a component

      Parameters

      • component: string

        The component name

      Returns Record<string, any>

      The default data

      const modelData = editor.schema.components.getDefaultData('model');
      
    • Gets a list of fields of a particular type for a component

      Parameters

      • componentName: string

        The component name

      • type: string

        The desired type

      Returns string[]

      A list of fields

      const buttonEntityFields = editor.schema.components.getFieldsOfType('button', 'entity');