* feat: Added tests * feat: Added header test * feat: Added new tests * fix * feat: Added test, fmt * feat: Added delete test * added system and unread ind tests * fix: analysis * added new tests * fix: analysis * added tests * add attachment actions modal tests * fix analysis * fix analysis * add backbutton tests * fix analysis * increase timeout * add channelheader tests * add infotile tests * add reactions modal and channel unread indicator tests * add golden test for reaction bubble * add dark tests * add system message golden * add deletd message golden * add message action modal tests * update goldens * update workflow runner * update goldens * remove channel unread indicator in favor of unread indicator * move file and media screen to sample app * add channel image tesst * add channel_list_header test * add thread_header test * bump up test threashold * fix review Co-authored-by: Salvatore Giordano <[email protected]>
37 lines
1.3 KiB
Dart
37 lines
1.3 KiB
Dart
library stream_chat;
|
|
|
|
export 'package:async/async.dart';
|
|
export 'package:dio/src/dio_error.dart';
|
|
export 'package:dio/src/multipart_file.dart';
|
|
export 'package:dio/src/options.dart' show ProgressCallback;
|
|
export 'package:logging/logging.dart' show Logger, Level;
|
|
|
|
export './src/api/channel.dart';
|
|
export './src/api/connection_status.dart';
|
|
export './src/api/requests.dart';
|
|
export './src/api/requests.dart';
|
|
export './src/api/responses.dart';
|
|
export './src/attachment_file_uploader.dart' show AttachmentFileUploader;
|
|
export './src/client.dart';
|
|
export './src/db/chat_persistence_client.dart';
|
|
export './src/event_type.dart';
|
|
export './src/exceptions.dart';
|
|
export './src/extensions/rate_limit.dart';
|
|
export './src/extensions/string_extension.dart';
|
|
export './src/models/action.dart';
|
|
export './src/models/attachment.dart';
|
|
export './src/models/attachment_file.dart';
|
|
export './src/models/channel_config.dart';
|
|
export './src/models/channel_model.dart';
|
|
export './src/models/channel_state.dart';
|
|
export './src/models/command.dart';
|
|
export './src/models/device.dart';
|
|
export './src/models/event.dart';
|
|
export './src/models/member.dart';
|
|
export './src/models/message.dart';
|
|
export './src/models/mute.dart';
|
|
export './src/models/own_user.dart';
|
|
export './src/models/reaction.dart';
|
|
export './src/models/read.dart';
|
|
export './src/models/user.dart';
|