plusui-native-core 0.1.82 → 0.1.84
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/Core/API/index.ts +33 -30
- package/package.json +1 -1
package/Core/API/index.ts
CHANGED
|
@@ -36,31 +36,34 @@ export { gpu } from '../Features/WebGPU/webgpu';
|
|
|
36
36
|
// CUSTOM CHANNELS - For user-defined events (uses .on/.emit)
|
|
37
37
|
// ============================================================
|
|
38
38
|
|
|
39
|
-
export {
|
|
40
|
-
connect,
|
|
41
|
-
createChannel,
|
|
39
|
+
export {
|
|
40
|
+
connect,
|
|
41
|
+
createChannel,
|
|
42
42
|
createFeatureConnect,
|
|
43
|
-
type Channel
|
|
43
|
+
type Channel
|
|
44
44
|
} from './Connect_API';
|
|
45
45
|
|
|
46
|
+
// Internal export for connection generator
|
|
47
|
+
export { _client } from '../Features/Connection/connect';
|
|
48
|
+
|
|
46
49
|
// ============================================================
|
|
47
50
|
// TYPES - Re-exported for convenience
|
|
48
51
|
// ============================================================
|
|
49
52
|
|
|
50
|
-
export type {
|
|
51
|
-
WindowSize,
|
|
52
|
-
WindowPosition,
|
|
53
|
-
WindowRect,
|
|
53
|
+
export type {
|
|
54
|
+
WindowSize,
|
|
55
|
+
WindowPosition,
|
|
56
|
+
WindowRect,
|
|
54
57
|
WindowState,
|
|
55
58
|
WindowId
|
|
56
59
|
} from '../Features/Window/window';
|
|
57
60
|
|
|
58
|
-
export type {
|
|
59
|
-
ClipboardAPI
|
|
61
|
+
export type {
|
|
62
|
+
ClipboardAPI
|
|
60
63
|
} from '../Features/Clipboard/clipboard';
|
|
61
64
|
|
|
62
|
-
export type {
|
|
63
|
-
KeyEvent,
|
|
65
|
+
export type {
|
|
66
|
+
KeyEvent,
|
|
64
67
|
Shortcut,
|
|
65
68
|
KeyEventCallback,
|
|
66
69
|
ShortcutCallback,
|
|
@@ -68,34 +71,34 @@ export type {
|
|
|
68
71
|
KeyMod
|
|
69
72
|
} from '../Features/Keyboard/keyboard';
|
|
70
73
|
|
|
71
|
-
export type {
|
|
72
|
-
TrayMenuItem,
|
|
73
|
-
TrayIconData
|
|
74
|
+
export type {
|
|
75
|
+
TrayMenuItem,
|
|
76
|
+
TrayIconData
|
|
74
77
|
} from '../Features/Tray/tray';
|
|
75
78
|
|
|
76
|
-
export type {
|
|
77
|
-
Display,
|
|
78
|
-
DisplayMode,
|
|
79
|
-
DisplayBounds,
|
|
80
|
-
DisplayResolution
|
|
79
|
+
export type {
|
|
80
|
+
Display,
|
|
81
|
+
DisplayMode,
|
|
82
|
+
DisplayBounds,
|
|
83
|
+
DisplayResolution
|
|
81
84
|
} from '../Features/Display/display';
|
|
82
85
|
|
|
83
|
-
export type {
|
|
84
|
-
FileInfo,
|
|
86
|
+
export type {
|
|
87
|
+
FileInfo,
|
|
85
88
|
DragEvent,
|
|
86
|
-
FileDropAPI
|
|
89
|
+
FileDropAPI
|
|
87
90
|
} from '../Features/FileDrop/filedrop';
|
|
88
91
|
|
|
89
|
-
export type {
|
|
90
|
-
MenuItem,
|
|
92
|
+
export type {
|
|
93
|
+
MenuItem,
|
|
91
94
|
MenuItemType,
|
|
92
|
-
MenuBarData,
|
|
93
|
-
ContextMenuOptions,
|
|
94
|
-
ContextInfo
|
|
95
|
+
MenuBarData,
|
|
96
|
+
ContextMenuOptions,
|
|
97
|
+
ContextInfo
|
|
95
98
|
} from '../Features/Menu/menu';
|
|
96
99
|
|
|
97
|
-
export type {
|
|
98
|
-
AppConfig
|
|
100
|
+
export type {
|
|
101
|
+
AppConfig
|
|
99
102
|
} from '../Features/App/app';
|
|
100
103
|
|
|
101
104
|
export type {
|