We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e97a405 commit c8eb8acCopy full SHA for c8eb8ac
src/App.php
@@ -87,4 +87,14 @@ public function openAtLogin(?bool $open = null): bool
87
88
return $open;
89
}
90
+
91
+ public function isEmojiPanelSupported(): bool
92
+ {
93
+ return (bool) $this->client->get('app/is-emoji-panel-supported')->json('supported');
94
+ }
95
96
+ public function showEmojiPanel(): void
97
98
+ $this->client->post('app/show-emoji-panel');
99
100
src/Facades/App.php
@@ -17,6 +17,8 @@
17
* @method static void clearRecentDocuments()
18
* @method static bool isRunningBundled()
19
* @method static bool openAtLogin(?bool $open = null)
20
+ * @method static bool isEmojiPanelSupported()
21
+ * @method static void showEmojiPanel()
22
*/
23
class App extends Facade
24
{
0 commit comments