- Added support for additional attachment types: PDF and plain text. - Updated the TeamProvisioningService to handle new attachment types with appropriate content blocks. - Enhanced AttachmentDisplay and AttachmentPreview components to differentiate between image and non-image files. - Modified DropZoneOverlay and SendMessageDialog to reflect changes in file handling and messaging. - Improved user experience by allowing file previews for non-image attachments and updating error messages accordingly. - Refactored attachment validation logic to categorize unsupported files and handle them gracefully.
15 lines
363 B
TypeScript
15 lines
363 B
TypeScript
/**
|
|
* Shared constants barrel export.
|
|
*/
|
|
|
|
export * from './agentBlocks';
|
|
export * from './attachments';
|
|
export * from './cache';
|
|
export * from './cli';
|
|
export * from './crossTeam';
|
|
export * from './kanban';
|
|
export * from './memberColors';
|
|
export * from './teamLimits';
|
|
export * from './trafficLights';
|
|
export * from './triggerColors';
|
|
export * from './window';
|