@bigbinary/neeto-molecules 1.0.52 → 1.0.54
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/README.md +1 -0
- package/dist/CopyToClipboardButton.cjs.js +78 -0
- package/dist/CopyToClipboardButton.cjs.js.map +1 -0
- package/dist/CopyToClipboardButton.js +72 -0
- package/dist/CopyToClipboardButton.js.map +1 -0
- package/dist/KeyboardShortcuts.cjs.js +2 -1
- package/dist/KeyboardShortcuts.cjs.js.map +1 -1
- package/dist/KeyboardShortcuts.js +2 -1
- package/dist/KeyboardShortcuts.js.map +1 -1
- package/dist/NeetoWidget.cjs.js +10 -15
- package/dist/NeetoWidget.cjs.js.map +1 -1
- package/dist/NeetoWidget.js +10 -15
- package/dist/NeetoWidget.js.map +1 -1
- package/package.json +1 -1
- package/src/translations/en.json +1 -1
- package/types/CopyToClipboardButton.d.ts +21 -0
- package/types/KeyboardShortcuts.d.ts +39 -2
|
@@ -2225,7 +2225,8 @@ var KeyboardShortcutsPane = function KeyboardShortcutsPane(_ref) {
|
|
|
2225
2225
|
|
|
2226
2226
|
var KeyboardShortcuts = {
|
|
2227
2227
|
Pane: KeyboardShortcutsPane,
|
|
2228
|
-
usePaneState: useKeyboardShortcutsPaneState
|
|
2228
|
+
usePaneState: useKeyboardShortcutsPaneState,
|
|
2229
|
+
GLOBAL_SHORTCUTS: getGlobalShortcuts()
|
|
2229
2230
|
};
|
|
2230
2231
|
|
|
2231
2232
|
export { KeyboardShortcuts as default };
|