@todesktop/shared 7.186.13 → 7.186.15
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/lib/base.d.ts +1 -1
- package/lib/desktopify2.d.ts +1 -1
- package/package.json +1 -1
- package/src/base.ts +1 -1
- package/src/desktopify2.ts +2 -1
package/lib/base.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { ExtraFileReference, FilePath, IAppBuilderLib, Release } from './desktop
|
|
|
2
2
|
export interface Schemable {
|
|
3
3
|
schemaVersion?: number;
|
|
4
4
|
}
|
|
5
|
-
export declare type ProgressTypes = 'progress' | 'done' | 'error';
|
|
5
|
+
export declare type ProgressTypes = 'queued' | 'progress' | 'done' | 'error';
|
|
6
6
|
export interface IChecklistItem {
|
|
7
7
|
[id: string]: boolean;
|
|
8
8
|
}
|
package/lib/desktopify2.d.ts
CHANGED
|
@@ -44,7 +44,7 @@ export interface DesktopifyMenuItemConstructorOptions extends Omit<MenuItemConst
|
|
|
44
44
|
bundledIcon?: string;
|
|
45
45
|
iconAssetDetails?: MenuIconAssetDetails;
|
|
46
46
|
useTemplateImage?: boolean;
|
|
47
|
-
acceleratorBehaviour?: 'none' | 'default' | 'custom';
|
|
47
|
+
acceleratorBehaviour?: 'none' | 'explicit-none' | 'default' | 'custom';
|
|
48
48
|
}
|
|
49
49
|
/**
|
|
50
50
|
* Toggle Window Tray Action
|
package/package.json
CHANGED
package/src/base.ts
CHANGED
package/src/desktopify2.ts
CHANGED
|
@@ -80,7 +80,8 @@ export interface DesktopifyMenuItemConstructorOptions
|
|
|
80
80
|
bundledIcon?: string;
|
|
81
81
|
iconAssetDetails?: MenuIconAssetDetails;
|
|
82
82
|
useTemplateImage?: boolean;
|
|
83
|
-
|
|
83
|
+
// 'none' is kept for legacy reasons
|
|
84
|
+
acceleratorBehaviour?: 'none' | 'explicit-none' | 'default' | 'custom';
|
|
84
85
|
}
|
|
85
86
|
|
|
86
87
|
/**
|