mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-07 22:43:19 +00:00
40 lines
959 B
JavaScript
40 lines
959 B
JavaScript
export default [
|
|
{
|
|
attributeKey: 'textContact',
|
|
attributeDisplayName: 'Text Input',
|
|
attributeDisplayType: 'text',
|
|
value: 'Sample text value',
|
|
},
|
|
{
|
|
attributeKey: 'linkContact',
|
|
attributeDisplayName: 'URL Input',
|
|
attributeDisplayType: 'link',
|
|
value: 'https://www.chatwoot.com',
|
|
},
|
|
{
|
|
attributeKey: 'numberContact',
|
|
attributeDisplayName: 'Number Input',
|
|
attributeDisplayType: 'number',
|
|
value: '42',
|
|
},
|
|
{
|
|
attributeKey: 'listContact',
|
|
attributeDisplayName: 'List Input',
|
|
attributeDisplayType: 'list',
|
|
value: 'Option 2',
|
|
attributeValues: ['Option 1', 'Option 2', 'Option 3'],
|
|
},
|
|
{
|
|
attributeKey: 'dateContact',
|
|
attributeDisplayName: 'Date Input',
|
|
attributeDisplayType: 'date',
|
|
value: '2024-03-25T00:00:00.000Z',
|
|
},
|
|
{
|
|
attributeKey: 'checkboxContact',
|
|
attributeDisplayName: 'Checkbox Input',
|
|
attributeDisplayType: 'checkbox',
|
|
value: true,
|
|
},
|
|
];
|