14 lines
267 B
JavaScript
14 lines
267 B
JavaScript
'use strict';
|
|
|
|
const ItemTypes = {
|
|
COMPONENT: 'component',
|
|
EDIT_FIELD: 'editField',
|
|
FIELD: 'field',
|
|
DYNAMIC_ZONE: 'dynamicZone',
|
|
RELATION: 'relation',
|
|
BLOCKS: 'blocks'
|
|
};
|
|
|
|
exports.ItemTypes = ItemTypes;
|
|
//# sourceMappingURL=dragAndDrop.js.map
|