cicy-desktop 2.1.328 → 2.1.329
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/package.json +1 -1
- package/src/backends/homepage-preload.js +8 -0
- package/src/backends/homepage-react/assets/index-CppodgBn.js +377 -0
- package/src/backends/homepage-react/index.html +1 -1
- package/src/main.js +11 -0
- package/src/tabbrowser/panel-menu-store.js +87 -0
- package/src/tabbrowser/panel-menu.js +13 -18
- package/src/tabbrowser/panel-presets.js +28 -4
- package/src/tools/index.js +1 -0
- package/src/tools/panel-menu-tools.js +80 -0
- package/test/facebook-matrix.test.js +10 -2
- package/test/panel-menu-config.test.js +96 -0
- package/workers/render/src/App.jsx +154 -0
- package/src/backends/homepage-react/assets/index-Cj1zsmOl.js +0 -377
package/package.json
CHANGED
|
@@ -316,6 +316,14 @@ contextBridge.exposeInMainWorld("cicy", {
|
|
|
316
316
|
cloud: {
|
|
317
317
|
fetch: (url, opts) => logInvoke("cloud:fetch", { url, ...(opts || {}) }),
|
|
318
318
|
},
|
|
319
|
+
// "+ 面板" dropdown config — which panels the menu offers, in what order, under
|
|
320
|
+
// what name. get() returns every built-in with its current title/enabled state
|
|
321
|
+
// (so the settings UI can render the full list, not just the enabled ones);
|
|
322
|
+
// set() persists and returns the merged result.
|
|
323
|
+
panelMenu: {
|
|
324
|
+
get: () => logInvoke("panelMenu:get"),
|
|
325
|
+
set: (items) => logInvoke("panelMenu:set", items),
|
|
326
|
+
},
|
|
319
327
|
// CiCy Hub — email sign-in, then every cicy-code instance of that account.
|
|
320
328
|
hub: {
|
|
321
329
|
status: () => logInvoke("hub:status"),
|