We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e9d19f commit 60e16d4Copy full SHA for 60e16d4
src/bundle/toolbar/utils/toolbarsConfigs.ts
@@ -29,6 +29,7 @@ interface TransformedItem {
29
icon?: ToolbarIconData;
30
hotkey?: string;
31
withArrow?: boolean;
32
+ doNotActivateList?: boolean;
33
preview?: React.ReactNode;
34
wysiwyg?: ToolbarItemWysiwyg<ToolbarDataType>;
35
markup?: ToolbarItemMarkup<ToolbarDataType>;
@@ -56,6 +57,7 @@ const transformItem = (
56
57
hint: item.view.hint,
58
icon: item.view.icon,
59
hotkey: item.view.hotkey,
60
+ doNotActivateList: item.view.doNotActivateList,
61
...(isSingleButton && {preview: (item.view as any).preview}),
62
...(isListButton && {withArrow: (item.view as any).withArrow}),
63
...(type === 'wysiwyg' && item.wysiwyg && {...item.wysiwyg}),
0 commit comments