@lvce-editor/extension-management-worker 4.31.0 → 4.31.2
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.
|
@@ -2139,6 +2139,10 @@ const invalidateExtensionsCache = async () => {
|
|
|
2139
2139
|
};
|
|
2140
2140
|
|
|
2141
2141
|
const handleChange = async _id => {
|
|
2142
|
+
const statusBarVisible = await invoke$2('Layout.getStatusBarVisible');
|
|
2143
|
+
if (!statusBarVisible) {
|
|
2144
|
+
return;
|
|
2145
|
+
}
|
|
2142
2146
|
await invoke$2('StatusBar.handleItemsChanged');
|
|
2143
2147
|
};
|
|
2144
2148
|
|
|
@@ -2951,8 +2955,8 @@ const saveViewInstanceState = async (viewId, uid, assetDir, platform) => {
|
|
|
2951
2955
|
return rpc.invoke('ExtensionApi.saveViewInstanceState', uid);
|
|
2952
2956
|
};
|
|
2953
2957
|
|
|
2954
|
-
const getAccessToken = () => {
|
|
2955
|
-
return invoke$6('Auth.getAccessToken');
|
|
2958
|
+
const getAccessToken = (options = {}) => {
|
|
2959
|
+
return invoke$6('Auth.getAccessToken', options);
|
|
2956
2960
|
};
|
|
2957
2961
|
|
|
2958
2962
|
const transparent = (color, factor) => {
|