* Refactored JS folder. Removed useless files * Add border to signature webview ( Fix for light theme) * migrated quill to jodit(links not working) * Removed quill subfolder * removed table styles and fixed trigger color * disable addaptive toolbar * Remove direction button * MinHeight, Toolbar toggle, style for combobox * Added reference mail to replies and forward * Command bar in compose page Fixed align behaviour with Jodit * Fix theme toggle in composer * switch cc and to in mail chain * default selected value for aligment * make CC/To/From to be mailto links * Added drag and drop for images Fixed dropzones visual states Corrected border radius Fixed null reference exception when event dispatched when chromium still not initialized
10 lines
235 B
C#
10 lines
235 B
C#
namespace Wino.Core.Domain.Models.Requests
|
|
{
|
|
// Used to pass messages from the webview to the app.
|
|
public class WebViewMessage
|
|
{
|
|
public string type { get; set; }
|
|
public string value { get; set; }
|
|
}
|
|
}
|