@interopio/desktop 6.5.0 → 6.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2020 Tick42
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/changelog.md CHANGED
@@ -1,3 +1,5 @@
1
+ 6.5.1
2
+ - chore: unified repo bump
1
3
  6.5.0
2
4
  - feat: contexts - add new methods - setPath,setPaths
3
5
  - fix: windows - activate/focus never resolves in certain cases
package/desktop.d.ts CHANGED
@@ -5112,6 +5112,11 @@ export declare namespace IOConnectDesktop {
5112
5112
  */
5113
5113
  jumpList: IOConnectDesktop.Windows.JumpList;
5114
5114
 
5115
+ /**
5116
+ * If `true`, the user is able to drop the current window in a Workspace.
5117
+ */
5118
+ allowWorkspaceDrop: boolean;
5119
+
5115
5120
  /**
5116
5121
  * Attaches a tab window to the current tab window.
5117
5122
  * @param tab The instance or the name of the tab window to attach.
@@ -5525,6 +5530,12 @@ export declare namespace IOConnectDesktop {
5525
5530
  */
5526
5531
  setSticky(isSticky: boolean, success?: (window: IOConnectWindow) => void, error?: (error: string) => void): Promise<IOConnectWindow>;
5527
5532
 
5533
+ /**
5534
+ * Specifies whether the user will able to drop the current window in a Workspace.
5535
+ * @param allow Flag indicating whether the user will be able to drop the window in a Workspace.
5536
+ */
5537
+ setAllowWorkspaceDrop(allow: boolean): Promise<IOConnectWindow>;
5538
+
5528
5539
  /**
5529
5540
  * Refreshes the current window.
5530
5541
  * @param ignoreCache Flag indicating whether to use the Chromium cache (if `false`), or the server cache (if `true`) when refreshing the web page. Defaults to `false`.