lucid-package 0.0.111 → 0.0.112

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lucid-package",
3
- "version": "0.0.111",
3
+ "version": "0.0.112",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -5,13 +5,13 @@ const client = new EditorClient();
5
5
  const menu = new Menu(client);
6
6
  const viewport = new Viewport(client);
7
7
 
8
- client.registerAction('test', () => {
8
+ client.registerAction('show-import-modal', () => {
9
9
  const modal = new ImportModal(client);
10
10
  modal.show();
11
11
  });
12
12
 
13
13
  menu.addMenuItem({
14
- label: 'Test thing 2',
15
- action: 'test',
14
+ label: 'Show import modal',
15
+ action: 'show-import-modal',
16
16
  menuType: MenuType.Main,
17
17
  });