@lvce-editor/about-view 7.18.0 → 7.19.0
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/aboutWorkerMain.js +6 -1
- package/package.json +1 -1
package/dist/aboutWorkerMain.js
CHANGED
|
@@ -1601,7 +1601,7 @@ const create$1 = () => {
|
|
|
1601
1601
|
const {
|
|
1602
1602
|
dispose: dispose$1,
|
|
1603
1603
|
get,
|
|
1604
|
-
getCommandIds,
|
|
1604
|
+
getCommandIds: getCommandIds$1,
|
|
1605
1605
|
registerCommands,
|
|
1606
1606
|
set,
|
|
1607
1607
|
wrapAsyncCommand,
|
|
@@ -1710,6 +1710,11 @@ const focusPrevious = state => {
|
|
|
1710
1710
|
};
|
|
1711
1711
|
};
|
|
1712
1712
|
|
|
1713
|
+
const topLevelCommandIds = new Set(['showAbout', 'showAboutElectron']);
|
|
1714
|
+
const getCommandIds = () => {
|
|
1715
|
+
return getCommandIds$1().filter(commandId => !topLevelCommandIds.has(commandId));
|
|
1716
|
+
};
|
|
1717
|
+
|
|
1713
1718
|
const mergeClassNames = (...classNames) => {
|
|
1714
1719
|
return classNames.filter(Boolean).join(' ');
|
|
1715
1720
|
};
|