@trops/dash-core 0.1.43 → 0.1.45
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/dist/electron/index.js +6 -0
- package/dist/electron/index.js.map +1 -1
- package/dist/index.esm.js +66 -16
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +66 -16
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/electron/index.js
CHANGED
|
@@ -8990,6 +8990,12 @@ function createMainApi$1(extensions = {}) {
|
|
|
8990
8990
|
plugins: pluginApi$1,
|
|
8991
8991
|
clientCache: clientCacheApi$1,
|
|
8992
8992
|
|
|
8993
|
+
widgetEvent: {
|
|
8994
|
+
publish: (eventType, content) => {
|
|
8995
|
+
ipcRenderer.send("widget-event:publish", { eventType, content });
|
|
8996
|
+
},
|
|
8997
|
+
},
|
|
8998
|
+
|
|
8993
8999
|
// Merge template-specific extensions
|
|
8994
9000
|
...extensions,
|
|
8995
9001
|
};
|