Skip to content

Commit

Permalink
Merge pull request #384 from Lemoncode/dev
Browse files Browse the repository at this point in the history
fix keyboard
  • Loading branch information
brauliodiez authored Sep 17, 2024
2 parents 8803a7c + a7eeeb0 commit 27365f9
Show file tree
Hide file tree
Showing 13 changed files with 9 additions and 8 deletions.
5 changes: 5 additions & 0 deletions src/pods/galleries/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
export * from './basic-shapes-gallery/basic-shapes-gallery.pod';
export * from './component-gallery/component-gallery.pod';
export * from './container-gallery/container-gallery.pod';
export * from './rich-components-gallery/rich-shapes-gallery.pod';
export * from './text-component-gallery/text-component-gallery.pod';
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { GalleryComponent } from '@/common/components/gallery/gallery-component';
import { mockRichComponentsCollection } from '../rich-components-gallery/rich-components-gallery-data';
import { mockRichComponentsCollection } from './rich-components-gallery-data';

export const RichComponentsGalleryPod = () => {
return <GalleryComponent itemCollection={mockRichComponentsCollection} />;
Expand Down
6 changes: 1 addition & 5 deletions src/pods/index.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
export * from './canvas/canvas.pod';
export * from './container-gallery/container-gallery.pod';
export * from './component-gallery/component-gallery.pod';
export * from './basic-shapes-gallery/basic-shapes-gallery.pod';
export * from './rich-components-gallery/basic-shapes-gallery.pod';
export * from './text-component-gallery/text-component-gallery.pod';
export * from './galleries';
export * from './toolbar/toolbar.pod';
4 changes: 2 additions & 2 deletions src/pods/toolbar/shortcut/shortcut.const.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ export const SHORTCUTS: Shortcut = {
delete: {
description: 'Delete',
id: 'delete-button-shortcut',
targetKey: ['backspace'],
targetKeyLabel: 'Backspace',
targetKey: ['Ctrl+backspace', 'Meta+backspace'],
targetKeyLabel: 'Ctrl + Backspace',
},
copy: {
description: 'Copy',
Expand Down

0 comments on commit 27365f9

Please sign in to comment.