Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save KayeeNL/6d70b04014b1d5abf8f3a15ecc68b812 to your computer and use it in GitHub Desktop.
Save KayeeNL/6d70b04014b1d5abf8f3a15ecc68b812 to your computer and use it in GitHub Desktop.
FEAAS.External.registerComponent(MyByocComponent, {
name: 'MyByocComponent',
properties: {
title: {
title: 'Title',
type: 'string',
enum: ['Mr', 'Mrs', 'Miss', 'Ms', 'Dr'],
description: 'Please select an appropriate title',
},
firstName: {
title: 'First Name',
type: 'string',
},
lastName: {
title: 'Last Name',
type: 'string',
},
columnsCount: {
title: 'Columns count',
type: 'number',
},
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment