@seelen-ui/lib 2.2.6-next.20250421135521 → 2.2.6-next.20250424092212
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/esm/deps/jsr.io/@std/encoding/{1.0.9 → 1.0.10}/_common64.d.ts +12 -5
- package/esm/deps/jsr.io/@std/encoding/1.0.10/_common64.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/encoding/{1.0.9 → 1.0.10}/_common64.js +9 -9
- package/esm/deps/jsr.io/@std/encoding/1.0.10/_common_detach.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/encoding/1.0.10/_types.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/encoding/1.0.10/base64url.d.ts.map +1 -0
- package/esm/state/settings/mod.d.ts +3 -3
- package/esm/state/widget.js +1 -1
- package/esm/system_state/bluetooth.d.ts +2 -2
- package/esm/system_state/user.d.ts +1 -1
- package/esm/types/Resource.d.ts +1 -0
- package/esm/types/Resource.d.ts.map +1 -1
- package/esm/types/mod.d.ts +177 -177
- package/esm/types/mod.d.ts.map +1 -1
- package/esm/types/mod.js +177 -177
- package/package.json +1 -1
- package/script/deps/jsr.io/@std/encoding/{1.0.9 → 1.0.10}/_common64.d.ts +12 -5
- package/script/deps/jsr.io/@std/encoding/1.0.10/_common64.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/encoding/{1.0.9 → 1.0.10}/_common64.js +9 -9
- package/script/deps/jsr.io/@std/encoding/1.0.10/_common_detach.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/encoding/1.0.10/_types.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/encoding/1.0.10/base64url.d.ts.map +1 -0
- package/script/state/settings/mod.d.ts +3 -3
- package/script/state/widget.js +1 -1
- package/script/system_state/bluetooth.d.ts +2 -2
- package/script/system_state/user.d.ts +1 -1
- package/script/types/Resource.d.ts +1 -0
- package/script/types/Resource.d.ts.map +1 -1
- package/script/types/mod.d.ts +177 -177
- package/script/types/mod.d.ts.map +1 -1
- package/script/types/mod.js +177 -177
- package/esm/deps/jsr.io/@std/encoding/1.0.9/_common64.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/encoding/1.0.9/_common_detach.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/encoding/1.0.9/_types.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/encoding/1.0.9/base64url.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/encoding/1.0.9/_common64.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/encoding/1.0.9/_common_detach.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/encoding/1.0.9/_types.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/encoding/1.0.9/base64url.d.ts.map +0 -1
- /package/esm/deps/jsr.io/@std/encoding/{1.0.9 → 1.0.10}/_common_detach.d.ts +0 -0
- /package/esm/deps/jsr.io/@std/encoding/{1.0.9 → 1.0.10}/_common_detach.js +0 -0
- /package/esm/deps/jsr.io/@std/encoding/{1.0.9 → 1.0.10}/_types.d.ts +0 -0
- /package/esm/deps/jsr.io/@std/encoding/{1.0.9 → 1.0.10}/_types.js +0 -0
- /package/esm/deps/jsr.io/@std/encoding/{1.0.9 → 1.0.10}/base64url.d.ts +0 -0
- /package/esm/deps/jsr.io/@std/encoding/{1.0.9 → 1.0.10}/base64url.js +0 -0
- /package/script/deps/jsr.io/@std/encoding/{1.0.9 → 1.0.10}/_common_detach.d.ts +0 -0
- /package/script/deps/jsr.io/@std/encoding/{1.0.9 → 1.0.10}/_common_detach.js +0 -0
- /package/script/deps/jsr.io/@std/encoding/{1.0.9 → 1.0.10}/_types.d.ts +0 -0
- /package/script/deps/jsr.io/@std/encoding/{1.0.9 → 1.0.10}/_types.js +0 -0
- /package/script/deps/jsr.io/@std/encoding/{1.0.9 → 1.0.10}/base64url.d.ts +0 -0
- /package/script/deps/jsr.io/@std/encoding/{1.0.9 → 1.0.10}/base64url.js +0 -0
|
@@ -1,15 +1,22 @@
|
|
|
1
1
|
import type { Uint8Array_ } from "./_types.js";
|
|
2
2
|
export type { Uint8Array_ };
|
|
3
3
|
export declare const padding: number;
|
|
4
|
-
export declare const alphabet: Record<
|
|
5
|
-
export declare const rAlphabet: Record<
|
|
4
|
+
export declare const alphabet: Record<Base64Alphabet, Uint8Array>;
|
|
5
|
+
export declare const rAlphabet: Record<Base64Alphabet, Uint8Array>;
|
|
6
6
|
/**
|
|
7
|
-
*
|
|
7
|
+
* Options for encoding and decoding base64 strings.
|
|
8
8
|
*/
|
|
9
|
-
export
|
|
9
|
+
export interface Base64Options {
|
|
10
|
+
/** The base64 alphabet. Defaults to "base64" */
|
|
11
|
+
alphabet?: Base64Alphabet;
|
|
12
|
+
}
|
|
13
|
+
/**
|
|
14
|
+
* The base64 alphabets.
|
|
15
|
+
*/
|
|
16
|
+
export type Base64Alphabet = "base64" | "base64url";
|
|
10
17
|
/**
|
|
11
18
|
* Calculate the output size needed to encode a given input size for
|
|
12
|
-
* {@linkcode
|
|
19
|
+
* {@linkcode encodeIntoBase64}.
|
|
13
20
|
*
|
|
14
21
|
* @param originalSize The size of the input buffer.
|
|
15
22
|
* @returns The size of the output buffer.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"_common64.d.ts","sourceRoot":"","sources":["../../../../../../src/deps/jsr.io/@std/encoding/1.0.10/_common64.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAC/C,YAAY,EAAE,WAAW,EAAE,CAAC;AAE5B,eAAO,MAAM,OAAO,QAAoB,CAAC;AACzC,eAAO,MAAM,QAAQ,EAAE,MAAM,CAAC,cAAc,EAAE,UAAU,CAKvD,CAAC;AACF,eAAO,MAAM,SAAS,EAAE,MAAM,CAAC,cAAc,EAAE,UAAU,CAGxD,CAAC;AAMF;;GAEG;AACH,MAAM,WAAW,aAAa;IAC5B,gDAAgD;IAChD,QAAQ,CAAC,EAAE,cAAc,CAAC;CAC3B;AAED;;GAEG;AACH,MAAM,MAAM,cAAc,GAAG,QAAQ,GAAG,WAAW,CAAC;AAEpD;;;;;;;;;;;;;;GAcG;AACH,wBAAgB,cAAc,CAAC,YAAY,EAAE,MAAM,GAAG,MAAM,CAE3D;AAED,wBAAgB,MAAM,CACpB,MAAM,EAAE,WAAW,EACnB,CAAC,EAAE,MAAM,EACT,CAAC,EAAE,MAAM,EACT,QAAQ,EAAE,UAAU,EACpB,OAAO,EAAE,MAAM,GACd,MAAM,CA4BR;AAED,wBAAgB,MAAM,CACpB,MAAM,EAAE,WAAW,EACnB,CAAC,EAAE,MAAM,EACT,CAAC,EAAE,MAAM,EACT,QAAQ,EAAE,UAAU,EACpB,OAAO,EAAE,MAAM,GACd,MAAM,CAmDR"}
|
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
// Copyright 2018-2025 the Deno authors. MIT license.
|
|
2
2
|
export const padding = "=".charCodeAt(0);
|
|
3
3
|
export const alphabet = {
|
|
4
|
-
|
|
4
|
+
base64: new TextEncoder()
|
|
5
5
|
.encode("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"),
|
|
6
|
-
|
|
6
|
+
base64url: new TextEncoder()
|
|
7
7
|
.encode("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_"),
|
|
8
8
|
};
|
|
9
9
|
export const rAlphabet = {
|
|
10
|
-
|
|
11
|
-
|
|
10
|
+
base64: new Uint8Array(128).fill(64), // alphabet.base64.length
|
|
11
|
+
base64url: new Uint8Array(128).fill(64),
|
|
12
12
|
};
|
|
13
|
-
alphabet.
|
|
14
|
-
.forEach((byte, i) => rAlphabet.
|
|
15
|
-
alphabet.
|
|
16
|
-
.forEach((byte, i) => rAlphabet.
|
|
13
|
+
alphabet.base64
|
|
14
|
+
.forEach((byte, i) => rAlphabet.base64[byte] = i);
|
|
15
|
+
alphabet.base64url
|
|
16
|
+
.forEach((byte, i) => rAlphabet.base64url[byte] = i);
|
|
17
17
|
/**
|
|
18
18
|
* Calculate the output size needed to encode a given input size for
|
|
19
|
-
* {@linkcode
|
|
19
|
+
* {@linkcode encodeIntoBase64}.
|
|
20
20
|
*
|
|
21
21
|
* @param originalSize The size of the input buffer.
|
|
22
22
|
* @returns The size of the output buffer.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"_common_detach.d.ts","sourceRoot":"","sources":["../../../../../../src/deps/jsr.io/@std/encoding/1.0.10/_common_detach.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAC/C,YAAY,EAAE,WAAW,EAAE,CAAC;AAE5B,wBAAgB,MAAM,CACpB,MAAM,EAAE,WAAW,EACnB,OAAO,EAAE,MAAM,GACd,CAAC,WAAW,EAAE,MAAM,CAAC,CAWvB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"_types.d.ts","sourceRoot":"","sources":["../../../../../../src/deps/jsr.io/@std/encoding/1.0.10/_types.ts"],"names":[],"mappings":"AAEA;;;;;;GAMG;AAEH,MAAM,MAAM,WAAW,GAAG,UAAU,CAAC,UAAU,CAAC,OAAO,CAAC,CAAC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"base64url.d.ts","sourceRoot":"","sources":["../../../../../../src/deps/jsr.io/@std/encoding/1.0.10/base64url.ts"],"names":[],"mappings":"AAaA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAC/C,YAAY,EAAE,WAAW,EAAE,CAAC;AAQ5B;;;;;;;;;;;;;;;GAeG;AACH,wBAAgB,eAAe,CAC7B,IAAI,EAAE,WAAW,GAAG,UAAU,GAAG,MAAM,GACtC,MAAM,CAeR;AAED;;;;;;;;;;;;;;;;;;GAkBG;AACH,wBAAgB,eAAe,CAAC,MAAM,EAAE,MAAM,GAAG,WAAW,CAK3D"}
|
|
@@ -49,15 +49,15 @@ declare const SeelenWegMode: {
|
|
|
49
49
|
MinContent: "MinContent";
|
|
50
50
|
};
|
|
51
51
|
declare const HideMode: {
|
|
52
|
-
Always: "Always";
|
|
53
52
|
Never: "Never";
|
|
53
|
+
Always: "Always";
|
|
54
54
|
OnOverlap: "OnOverlap";
|
|
55
55
|
};
|
|
56
56
|
declare const SeelenWegSide: {
|
|
57
|
-
Left: "Left";
|
|
58
|
-
Right: "Right";
|
|
59
57
|
Top: "Top";
|
|
60
58
|
Bottom: "Bottom";
|
|
59
|
+
Left: "Left";
|
|
60
|
+
Right: "Right";
|
|
61
61
|
};
|
|
62
62
|
declare const SeelenLauncherMonitor: {
|
|
63
63
|
Primary: "Primary";
|
package/esm/state/widget.js
CHANGED
|
@@ -2,7 +2,7 @@ import { SeelenCommand, SeelenEvent } from '../handlers/mod.js';
|
|
|
2
2
|
import { List } from '../utils/List.js';
|
|
3
3
|
import { createInstanceInvoker, createInstanceOnEvent } from '../utils/State.js';
|
|
4
4
|
import { getCurrentWebviewWindow } from '@tauri-apps/api/webviewWindow';
|
|
5
|
-
import { decodeBase64Url } from '../deps/jsr.io/@std/encoding/1.0.
|
|
5
|
+
import { decodeBase64Url } from '../deps/jsr.io/@std/encoding/1.0.10/base64url.js';
|
|
6
6
|
export const SeelenWegWidgetId = '@seelen/weg';
|
|
7
7
|
export const SeelenToolbarWidgetId = '@seelen/fancy-toolbar';
|
|
8
8
|
export const SeelenWindowManagerWidgetId = '@seelen/window-manager';
|
|
@@ -60,17 +60,17 @@ export declare class BluetoothDevices extends List<BluetoothDevice> {
|
|
|
60
60
|
static default(): BluetoothDevices;
|
|
61
61
|
}
|
|
62
62
|
declare const BluetoothMajor: {
|
|
63
|
-
Uncategorized: "Uncategorized";
|
|
64
63
|
Phone: "Phone";
|
|
65
64
|
Computer: "Computer";
|
|
66
|
-
Wearable: "Wearable";
|
|
67
65
|
Miscellaneous: "Miscellaneous";
|
|
68
66
|
NetworkAccessPoint: "NetworkAccessPoint";
|
|
69
67
|
AudioVideo: "AudioVideo";
|
|
70
68
|
Peripheral: "Peripheral";
|
|
71
69
|
Imaging: "Imaging";
|
|
70
|
+
Wearable: "Wearable";
|
|
72
71
|
Toy: "Toy";
|
|
73
72
|
Health: "Health";
|
|
73
|
+
Uncategorized: "Uncategorized";
|
|
74
74
|
};
|
|
75
75
|
export { BluetoothMajor };
|
|
76
76
|
//# sourceMappingURL=bluetooth.d.ts.map
|
package/esm/types/Resource.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Resource.d.ts","sourceRoot":"","sources":["../../src/types/Resource.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAC;AAClD,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;AACtD,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAC;AAC9D,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAC;AAE1D,MAAM,MAAM,QAAQ,GAAG;IAAE,GAAG,EAAE,MAAM,CAAC;IAAC,SAAS,EAAE,MAAM,CAAC;IACxD;;OAEG;IACH,UAAU,EAAE,UAAU,CAAC;IAAC,QAAQ,EAAE,gBAAgB,CAAC;IAAC,SAAS,EAAE,MAAM,CAAC;IAAC,SAAS,EAAE,MAAM,CAAC;IAAC,MAAM,EAAE,cAAc,CAAC;IACjH;;OAEG;IACH,SAAS,EAAE,MAAM,GAAG,IAAI,CAAC;IAAC,OAAO,EAAE,MAAM,CAAC;IAAC,IAAI,EAAE,YAAY,CAAC;IAC9D;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC;IAAC,KAAK,EAAE,MAAM,CAAC;CAAE,CAAC"}
|
|
1
|
+
{"version":3,"file":"Resource.d.ts","sourceRoot":"","sources":["../../src/types/Resource.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAC;AAClD,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;AACtD,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAC;AAC9D,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAC;AAE1D,MAAM,MAAM,QAAQ,GAAG;IAAE,GAAG,EAAE,MAAM,CAAC;IAAC,SAAS,EAAE,MAAM,CAAC;IACxD;;OAEG;IACH,UAAU,EAAE,UAAU,CAAC;IAAC,QAAQ,EAAE,gBAAgB,CAAC;IAAC,SAAS,EAAE,MAAM,CAAC;IAAC,SAAS,EAAE,MAAM,CAAC;IAAC,MAAM,EAAE,cAAc,CAAC;IACjH;;OAEG;IACH,SAAS,EAAE,MAAM,GAAG,IAAI,CAAC;IAAC,OAAO,EAAE,MAAM,CAAC;IAAC,IAAI,EAAE,YAAY,CAAC;IAC9D;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC;IAAC,KAAK,EAAE,MAAM,CAAC;IAAC,SAAS,EAAE,MAAM,CAAC;CAAE,CAAC"}
|
package/esm/types/mod.d.ts
CHANGED
|
@@ -1,202 +1,202 @@
|
|
|
1
|
-
export * from './
|
|
2
|
-
export * from './
|
|
3
|
-
export * from './BluetoothPeripheralSubMinor.js';
|
|
4
|
-
export * from './WmVerticalNode.js';
|
|
5
|
-
export * from './BLEAppearanceRunningWalkingSensorSubCategory.js';
|
|
6
|
-
export * from './WidgetId.js';
|
|
7
|
-
export * from './AppIdentifierType.js';
|
|
8
|
-
export * from './BLEAppearance.js';
|
|
9
|
-
export * from './UserToolbarItem.js';
|
|
1
|
+
export * from './BLEAppearanceClockSubCategory.js';
|
|
2
|
+
export * from './BluetoothWearableMinor.js';
|
|
10
3
|
export * from './BLEAppearanceWindowCoveringSubCategory.js';
|
|
11
|
-
export * from './
|
|
12
|
-
export * from './
|
|
13
|
-
export * from './
|
|
14
|
-
export * from './WegPinnedItemsVisibility.js';
|
|
15
|
-
export * from './Placeholder.js';
|
|
16
|
-
export * from './ResourceKind.js';
|
|
17
|
-
export * from './ToastActionActivationType.js';
|
|
18
|
-
export * from './WegItemSubtype.js';
|
|
19
|
-
export * from './BLEAppearanceComputerSubCategory.js';
|
|
20
|
-
export * from './UpdateChannel.js';
|
|
21
|
-
export * from './SeelenWegSettings.js';
|
|
22
|
-
export * from './FancyToolbarSettingsByMonitor.js';
|
|
23
|
-
export * from './WegItems.js';
|
|
24
|
-
export * from './BLEAppearanceTagSubCategory.js';
|
|
4
|
+
export * from './KeyboardToolbarItem.js';
|
|
5
|
+
export * from './BLEAppearanceContinuousGlucoseMonitorSubCategory.js';
|
|
6
|
+
export * from './UserToolbarItem.js';
|
|
25
7
|
export * from './AhkVar.js';
|
|
26
|
-
export * from './
|
|
27
|
-
export * from './
|
|
28
|
-
export * from './
|
|
29
|
-
export * from './
|
|
8
|
+
export * from './WorkspaceToolbarItem.js';
|
|
9
|
+
export * from './BLEAppearanceIndustrialMeasurementDeviceSubCategory.js';
|
|
10
|
+
export * from './SeelenLauncherMonitor.js';
|
|
11
|
+
export * from './IconPack.js';
|
|
12
|
+
export * from './ToastText.js';
|
|
13
|
+
export * from './File.js';
|
|
14
|
+
export * from './WmHorizontalNode.js';
|
|
15
|
+
export * from './DateToolbarItem.js';
|
|
16
|
+
export * from './NoFallbackBehavior.js';
|
|
17
|
+
export * from './ToolbarItem.js';
|
|
18
|
+
export * from './PluginId.js';
|
|
19
|
+
export * from './ToastSubGroup.js';
|
|
20
|
+
export * from './WindowManagerSettingsByMonitor.js';
|
|
21
|
+
export * from './BLEAppearanceTagSubCategory.js';
|
|
22
|
+
export * from './BluetoothDevice.js';
|
|
23
|
+
export * from './ToastVisual.js';
|
|
24
|
+
export * from './BluetoothToyMinor.js';
|
|
25
|
+
export * from './ResourceKind.js';
|
|
26
|
+
export * from './WorkspaceConfiguration.js';
|
|
27
|
+
export * from './WorkspaceToolbarItemMode.js';
|
|
28
|
+
export * from './WsdItemInputText.js';
|
|
29
|
+
export * from './Profile.js';
|
|
30
30
|
export * from './BLEAppearanceHumanInterfaceDeviceSubCategory.js';
|
|
31
|
-
export * from './
|
|
32
|
-
export * from './
|
|
33
|
-
export * from './
|
|
34
|
-
export * from './
|
|
35
|
-
export * from './BLEAppearanceAircraftSubCategory.js';
|
|
36
|
-
export * from './WmLeafNode.js';
|
|
37
|
-
export * from './VirtualDesktopStrategy.js';
|
|
38
|
-
export * from './MediaToolbarItem.js';
|
|
39
|
-
export * from './WsdGroupEntry.js';
|
|
40
|
-
export * from './IconPackId.js';
|
|
41
|
-
export * from './BluetoothPhoneMinor.js';
|
|
31
|
+
export * from './WegItemSubtype.js';
|
|
32
|
+
export * from './BLEAppearanceNetworkDeviceSubCategory.js';
|
|
33
|
+
export * from './ResourceId.js';
|
|
34
|
+
export * from './BluetoothComputerMinor.js';
|
|
42
35
|
export * from './User.js';
|
|
43
|
-
export * from './
|
|
44
|
-
export * from './
|
|
45
|
-
export * from './
|
|
46
|
-
export * from './BLEAppearanceHeartRateSensorSubCategory.js';
|
|
47
|
-
export * from './BluetoothNetworkMinor.js';
|
|
48
|
-
export * from './SeelenWegSide.js';
|
|
49
|
-
export * from './BluetoothWearableMinor.js';
|
|
36
|
+
export * from './BLEAppearanceMotorizedDeviceSubCategory.js';
|
|
37
|
+
export * from './BLEAppearanceBarcodeScannerSubCategory.js';
|
|
38
|
+
export * from './Icon.js';
|
|
50
39
|
export * from './PinnedWegItemData.js';
|
|
51
|
-
export * from './MatchingStrategy.js';
|
|
52
|
-
export * from './WmNode.js';
|
|
53
|
-
export * from './Color.js';
|
|
54
|
-
export * from './ResourceText.js';
|
|
55
|
-
export * from './ProfileSettings.js';
|
|
56
|
-
export * from './Border.js';
|
|
57
|
-
export * from './BLEAppearanceAudioSourceSubCategory.js';
|
|
58
|
-
export * from './BLEAppearanceAccessControlSubCategory.js';
|
|
59
|
-
export * from './WegItem.js';
|
|
60
|
-
export * from './IconPack.js';
|
|
61
|
-
export * from './SettingsByWidget.js';
|
|
62
|
-
export * from './TextToolbarItem.js';
|
|
63
40
|
export * from './WsdItemSwitch.js';
|
|
64
|
-
export * from './
|
|
65
|
-
export * from './
|
|
66
|
-
export * from './
|
|
67
|
-
export * from './
|
|
68
|
-
export * from './
|
|
69
|
-
export * from './
|
|
70
|
-
export * from './
|
|
41
|
+
export * from './GenericToolbarItem.js';
|
|
42
|
+
export * from './Resource.js';
|
|
43
|
+
export * from './BLEAppearanceAirConditioningSubCategory.js';
|
|
44
|
+
export * from './WegItems.js';
|
|
45
|
+
export * from './SettingsByWidget.js';
|
|
46
|
+
export * from './WsdItemSelectSubtype.js';
|
|
47
|
+
export * from './BLEAppearancePhoneSubCategory.js';
|
|
48
|
+
export * from './PowerToolbarItem.js';
|
|
49
|
+
export * from './ToastProgress.js';
|
|
50
|
+
export * from './BLEAppearanceHVACSubCategory.js';
|
|
51
|
+
export * from './SeelenWallWallpaper.js';
|
|
52
|
+
export * from './BLEAppearanceAVEquipmentSubCategory.js';
|
|
71
53
|
export * from './BLEAppearancePulseOximeterSubCategory.js';
|
|
72
|
-
export * from './
|
|
73
|
-
export * from './
|
|
74
|
-
export * from './WorkspaceConfiguration.js';
|
|
75
|
-
export * from './BluetoothToyMinor.js';
|
|
76
|
-
export * from './FloatingWindowSettings.js';
|
|
77
|
-
export * from './BLEAppearanceOutdoorSportsActivitySubCategory.js';
|
|
78
|
-
export * from './BLEAppearanceNetworkDeviceSubCategory.js';
|
|
54
|
+
export * from './Toast.js';
|
|
55
|
+
export * from './BluetoothMajorClass.js';
|
|
79
56
|
export * from './ToastAction.js';
|
|
80
|
-
export * from './
|
|
81
|
-
export * from './
|
|
57
|
+
export * from './BLEAppearanceAudioSourceSubCategory.js';
|
|
58
|
+
export * from './BLEAppearanceCyclingSubCategory.js';
|
|
59
|
+
export * from './FolderChangedArgs.js';
|
|
60
|
+
export * from './WegItem.js';
|
|
61
|
+
export * from './HideMode.js';
|
|
62
|
+
export * from './WidgetSettingsDeclarationList.js';
|
|
63
|
+
export * from './DeviceToolbarItem.js';
|
|
64
|
+
export * from './StyleValue.js';
|
|
65
|
+
export * from './BLEAppearanceHumidifierSubCategory.js';
|
|
66
|
+
export * from './Rect.js';
|
|
67
|
+
export * from './SeelenLauncherSettings.js';
|
|
68
|
+
export * from './WsdItemSelect.js';
|
|
69
|
+
export * from './NetworkToolbarItem.js';
|
|
70
|
+
export * from './BLEAppearanceComputerSubCategory.js';
|
|
82
71
|
export * from './TrayToolbarItem.js';
|
|
72
|
+
export * from './ToastActionsEntry.js';
|
|
83
73
|
export * from './BLEAppearanceGamingSubCategory.js';
|
|
84
|
-
export * from './
|
|
85
|
-
export * from './
|
|
86
|
-
export * from './
|
|
87
|
-
export * from './
|
|
74
|
+
export * from './BLEAppearanceHeartRateSensorSubCategory.js';
|
|
75
|
+
export * from './BluetoothPhoneMinor.js';
|
|
76
|
+
export * from './WegAppGroupItem.js';
|
|
77
|
+
export * from './BLEAppearanceOutdoorSportsActivitySubCategory.js';
|
|
78
|
+
export * from './BLEAppearancePowerDeviceSubCategory.js';
|
|
79
|
+
export * from './BLEAppearanceAircraftSubCategory.js';
|
|
80
|
+
export * from './UpdateChannel.js';
|
|
81
|
+
export * from './Plugin.js';
|
|
82
|
+
export * from './FancyToolbarSide.js';
|
|
83
|
+
export * from './WmNode.js';
|
|
84
|
+
export * from './ToastSubGroupEntry.js';
|
|
85
|
+
export * from './BLEAppearanceEyeglassesSubCategory.js';
|
|
86
|
+
export * from './WorkspaceIdentifierType.js';
|
|
87
|
+
export * from './BLEAppearanceRunningWalkingSensorSubCategory.js';
|
|
88
|
+
export * from './BLEAppearanceLightSourceSubCategory.js';
|
|
89
|
+
export * from './Settings.js';
|
|
90
|
+
export * from './SettingsToolbarItem.js';
|
|
91
|
+
export * from './BLEAppearanceWearableAudioDeviceSubCategory.js';
|
|
92
|
+
export * from './Placeholder.js';
|
|
93
|
+
export * from './BluetoothMinorClass.js';
|
|
94
|
+
export * from './WsdItem.js';
|
|
95
|
+
export * from './BLEAppearanceHeatingSubCategory.js';
|
|
96
|
+
export * from './BLEAppearanceDisplaySubCategory.js';
|
|
97
|
+
export * from './SeelenWegMode.js';
|
|
98
|
+
export * from './ToastInput.js';
|
|
99
|
+
export * from './ToastActionPlacement.js';
|
|
100
|
+
export * from './ToastActionButtonStyle.js';
|
|
101
|
+
export * from './ToastHeader.js';
|
|
88
102
|
export * from './RelaunchArguments.js';
|
|
89
|
-
export * from './ToastImage.js';
|
|
90
103
|
export * from './BLEAppearanceMedicationDeliverySubCategory.js';
|
|
91
|
-
export * from './
|
|
92
|
-
export * from './
|
|
93
|
-
export * from './
|
|
94
|
-
export * from './
|
|
95
|
-
export * from './BLEAppearanceMotorizedVehicleSubCategory.js';
|
|
96
|
-
export * from './NodeSubtype.js';
|
|
97
|
-
export * from './AppNotification.js';
|
|
98
|
-
export * from './BLEAppearanceFanSubCategory.js';
|
|
99
|
-
export * from './BLEAppearancePhoneSubCategory.js';
|
|
100
|
-
export * from './BLEAppearancePersonalMobilityDeviceSubCategory.js';
|
|
101
|
-
export * from './WindowManagerSettingsByMonitor.js';
|
|
102
|
-
export * from './UpdaterSettings.js';
|
|
103
|
-
export * from './WsdGroup.js';
|
|
104
|
-
export * from './BLEAppearanceWeightScaleSubCategory.js';
|
|
105
|
-
export * from './Icon.js';
|
|
106
|
-
export * from './WorkspaceIdentifierType.js';
|
|
107
|
-
export * from './BluetoothMajorClass.js';
|
|
108
|
-
export * from './BLEAppearanceEyeglassesSubCategory.js';
|
|
109
|
-
export * from './ToolbarItem.js';
|
|
110
|
-
export * from './BluetoothDevice.js';
|
|
111
|
-
export * from './BLEAppearanceDomesticApplianceSubCategory.js';
|
|
104
|
+
export * from './BLEAppearanceSensorSubCategory.js';
|
|
105
|
+
export * from './BLEAppearanceDisplayEquipmentSubCategory.js';
|
|
106
|
+
export * from './WindowManagerSettings.js';
|
|
107
|
+
export * from './AppConfig.js';
|
|
112
108
|
export * from './ToastInputSelection.js';
|
|
113
|
-
export * from './
|
|
114
|
-
export * from './BluetoothToolbarItem.js';
|
|
109
|
+
export * from './BLEAppearanceFanSubCategory.js';
|
|
115
110
|
export * from './BLEAppearanceUnknownSubCategory.js';
|
|
116
|
-
export * from './
|
|
117
|
-
export * from './
|
|
111
|
+
export * from './BLEAppearanceAccessControlSubCategory.js';
|
|
112
|
+
export * from './AppIdentifierType.js';
|
|
113
|
+
export * from './IconPackId.js';
|
|
114
|
+
export * from './BluetoothPeripheralMinor.js';
|
|
115
|
+
export * from './UIColors.js';
|
|
116
|
+
export * from './ThemeId.js';
|
|
117
|
+
export * from './BLEAppearanceGlucoseMeterSubCategory.js';
|
|
118
|
+
export * from './SeelenWallSettingsByMonitor.js';
|
|
119
|
+
export * from './BLEAppearanceDomesticApplianceSubCategory.js';
|
|
120
|
+
export * from './WsdGroupEntry.js';
|
|
121
|
+
export * from './SeelenWegSide.js';
|
|
122
|
+
export * from './BLEAppearanceSpirometerSubCategory.js';
|
|
123
|
+
export * from './SeelenWegSettingsByMonitor.js';
|
|
124
|
+
export * from './WsdItemInputNumber.js';
|
|
125
|
+
export * from './WmFallbackNode.js';
|
|
118
126
|
export * from './BLEAppearanceRemoteControlSubCategory.js';
|
|
119
|
-
export * from './
|
|
120
|
-
export * from './
|
|
121
|
-
export * from './
|
|
122
|
-
export * from './
|
|
123
|
-
export * from './
|
|
124
|
-
export * from './
|
|
127
|
+
export * from './ResourceText.js';
|
|
128
|
+
export * from './ToastActionAfterActivationBehavior.js';
|
|
129
|
+
export * from './BLEAppearanceIndustrialToolsSubCategory.js';
|
|
130
|
+
export * from './Border.js';
|
|
131
|
+
export * from './BluetoothHealthMinor.js';
|
|
132
|
+
export * from './WegPinnedItemsVisibility.js';
|
|
133
|
+
export * from './ToolbarItem2.js';
|
|
134
|
+
export * from './WmLeafNode.js';
|
|
135
|
+
export * from './BLEAppearanceWatchSubCategory.js';
|
|
136
|
+
export * from './BLEAppearanceThermometerSubCategory.js';
|
|
137
|
+
export * from './BluetoothDevicePairShowPinRequest.js';
|
|
138
|
+
export * from './Color.js';
|
|
139
|
+
export * from './WindowManagerLayout.js';
|
|
140
|
+
export * from './MonitorConfiguration.js';
|
|
141
|
+
export * from './ToastImagePlacement.js';
|
|
142
|
+
export * from './BluetoothAudioVideoMinor.js';
|
|
125
143
|
export * from './WmStackNode.js';
|
|
126
|
-
export * from './
|
|
144
|
+
export * from './ResourceStatus.js';
|
|
145
|
+
export * from './BLEAppearance.js';
|
|
146
|
+
export * from './BluetoothNetworkMinor.js';
|
|
147
|
+
export * from './BLEAppearanceWeightScaleSubCategory.js';
|
|
148
|
+
export * from './BluetoothImagingMinor.js';
|
|
149
|
+
export * from './WidgetId.js';
|
|
150
|
+
export * from './VirtualDesktopStrategy.js';
|
|
151
|
+
export * from './FancyToolbarSettings.js';
|
|
152
|
+
export * from './BLEAppearanceControlDeviceSubCategory.js';
|
|
153
|
+
export * from './ToastActions.js';
|
|
154
|
+
export * from './AppNotification.js';
|
|
155
|
+
export * from './BLEAppearanceLightFixturesSubCategory.js';
|
|
156
|
+
export * from './ToastImageCropType.js';
|
|
157
|
+
export * from './NodeSubtype.js';
|
|
127
158
|
export * from './AppIdentifier.js';
|
|
128
|
-
export * from './
|
|
129
|
-
export * from './
|
|
130
|
-
export * from './
|
|
131
|
-
export * from './
|
|
132
|
-
export * from './
|
|
159
|
+
export * from './BLEAppearanceBloodPressureSubCategory.js';
|
|
160
|
+
export * from './Theme.js';
|
|
161
|
+
export * from './SeelenLauncherRunner.js';
|
|
162
|
+
export * from './Binding.js';
|
|
163
|
+
export * from './BLEAppearanceAudioSinkSubCategory.js';
|
|
164
|
+
export * from './ToastImage.js';
|
|
165
|
+
export * from './BLEAppearanceMediaPlayerSubCategory.js';
|
|
166
|
+
export * from './WsdGroup.js';
|
|
133
167
|
export * from './ToastTemplateType.js';
|
|
134
|
-
export * from './
|
|
135
|
-
export * from './
|
|
136
|
-
export * from './
|
|
137
|
-
export * from './
|
|
138
|
-
export * from './
|
|
139
|
-
export * from './
|
|
140
|
-
export * from './
|
|
141
|
-
export * from './ToastActionPlacement.js';
|
|
142
|
-
export * from './BluetoothAudioVideoMinor.js';
|
|
168
|
+
export * from './BLEAppearancePersonalMobilityDeviceSubCategory.js';
|
|
169
|
+
export * from './BLEAppearanceMotorizedVehicleSubCategory.js';
|
|
170
|
+
export * from './ProfileSettings.js';
|
|
171
|
+
export * from './BluetoothImagingSubMinor.js';
|
|
172
|
+
export * from './BluetoothNetworkSubMinor.js';
|
|
173
|
+
export * from './FancyToolbarSettingsByMonitor.js';
|
|
174
|
+
export * from './WorkspaceIdentifier.js';
|
|
143
175
|
export * from './AppExtraFlag.js';
|
|
144
|
-
export * from './
|
|
145
|
-
export * from './
|
|
146
|
-
export * from './
|
|
147
|
-
export * from './NetworkToolbarItem.js';
|
|
148
|
-
export * from './KeyboardToolbarItem.js';
|
|
149
|
-
export * from './BLEAppearanceWatchSubCategory.js';
|
|
150
|
-
export * from './Toast.js';
|
|
151
|
-
export * from './Settings.js';
|
|
152
|
-
export * from './ToastImageCropType.js';
|
|
153
|
-
export * from './StyleValue.js';
|
|
154
|
-
export * from './WsdItemSelectSubtype.js';
|
|
155
|
-
export * from './WsdItemInputNumber.js';
|
|
156
|
-
export * from './BLEAppearancePowerDeviceSubCategory.js';
|
|
157
|
-
export * from './DateToolbarItem.js';
|
|
158
|
-
export * from './ToastBindingEntry.js';
|
|
159
|
-
export * from './BLEAppearanceDisplayEquipmentSubCategory.js';
|
|
160
|
-
export * from './WegTemporalItemsVisibility.js';
|
|
161
|
-
export * from './ThemeId.js';
|
|
162
|
-
export * from './BLEAppearanceAVEquipmentSubCategory.js';
|
|
163
|
-
export * from './WindowManagerSettings.js';
|
|
164
|
-
export * from './WsdItem.js';
|
|
165
|
-
export * from './BLEAppearanceIndustrialToolsSubCategory.js';
|
|
166
|
-
export * from './BLEAppearanceAirConditioningSubCategory.js';
|
|
167
|
-
export * from './BLEAppearanceClockSubCategory.js';
|
|
168
|
-
export * from './BLEAppearanceLightFixturesSubCategory.js';
|
|
169
|
-
export * from './ToastImagePlacement.js';
|
|
176
|
+
export * from './BluetoothPeripheralSubMinor.js';
|
|
177
|
+
export * from './WsdItemSelectOption.js';
|
|
178
|
+
export * from './TextToolbarItem.js';
|
|
170
179
|
export * from './ToastInputType.js';
|
|
171
|
-
export * from './BluetoothImagingMinor.js';
|
|
172
|
-
export * from './BluetoothPeripheralMinor.js';
|
|
173
|
-
export * from './Resource.js';
|
|
174
|
-
export * from './ToastHeader.js';
|
|
175
|
-
export * from './ResourceStatus.js';
|
|
176
|
-
export * from './WsdItemInputText.js';
|
|
177
|
-
export * from './SeelenWegMode.js';
|
|
178
|
-
export * from './WmFallbackNode.js';
|
|
179
180
|
export * from './NotificationsToolbarItem.js';
|
|
180
|
-
export * from './BluetoothComputerMinor.js';
|
|
181
|
-
export * from './BLEAppearanceGlucoseMeterSubCategory.js';
|
|
182
|
-
export * from './WsdItemSelectOption.js';
|
|
183
|
-
export * from './BLEAppearanceSpirometerSubCategory.js';
|
|
184
|
-
export * from './BLEAppearanceHVACSubCategory.js';
|
|
185
|
-
export * from './SeelenWallSettings.js';
|
|
186
181
|
export * from './BLEAppearanceSignageSubCategory.js';
|
|
182
|
+
export * from './MatchingStrategy.js';
|
|
183
|
+
export * from './WegTemporalItemsVisibility.js';
|
|
187
184
|
export * from './ResourceMetadata.js';
|
|
188
|
-
export * from './
|
|
189
|
-
export * from './
|
|
190
|
-
export * from './
|
|
191
|
-
export * from './
|
|
192
|
-
export * from './
|
|
193
|
-
export * from './
|
|
194
|
-
export * from './
|
|
195
|
-
export * from './
|
|
196
|
-
export * from './
|
|
197
|
-
export * from './
|
|
198
|
-
export * from './
|
|
199
|
-
export * from './
|
|
185
|
+
export * from './BLEAppearanceHearingaidSubCategory.js';
|
|
186
|
+
export * from './ToastBindingEntry.js';
|
|
187
|
+
export * from './BLEAppearanceInsulinPumpSubCategory.js';
|
|
188
|
+
export * from './BLEAppearanceKeyringSubCategory.js';
|
|
189
|
+
export * from './ToastActionActivationType.js';
|
|
190
|
+
export * from './MediaToolbarItem.js';
|
|
191
|
+
export * from './SeelenWallSettings.js';
|
|
192
|
+
export * from './UpdaterSettings.js';
|
|
193
|
+
export * from './AhkVarList.js';
|
|
194
|
+
export * from './Widget.js';
|
|
195
|
+
export * from './WmVerticalNode.js';
|
|
196
|
+
export * from './FolderType.js';
|
|
197
|
+
export * from './SeelenWegSettings.js';
|
|
198
|
+
export * from './FloatingWindowSettings.js';
|
|
199
|
+
export * from './BluetoothToolbarItem.js';
|
|
200
200
|
export * from './ToastGroup.js';
|
|
201
|
-
export * from './
|
|
201
|
+
export * from './BluetoothMajorServiceClass.js';
|
|
202
202
|
//# sourceMappingURL=mod.d.ts.map
|
package/esm/types/mod.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"mod.d.ts","sourceRoot":"","sources":["../../src/types/mod.ts"],"names":[],"mappings":"AAAA,cAAc,
|
|
1
|
+
{"version":3,"file":"mod.d.ts","sourceRoot":"","sources":["../../src/types/mod.ts"],"names":[],"mappings":"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"}
|