@blocknote/mantine 0.30.0 → 0.30.1

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.
@@ -31,7 +31,8 @@ export const ToolbarSelect = forwardRef<
31
31
  exitDuration: 0,
32
32
  }}
33
33
  disabled={isDisabled}
34
- middlewares={{ flip: true, shift: true, inline: false, size: true }}>
34
+ middlewares={{ flip: true, shift: true, inline: false, size: true }}
35
+ >
35
36
  <MantineMenu.Target>
36
37
  <MantineButton
37
38
  // Needed as Safari doesn't focus button elements on mouse down
@@ -45,7 +46,8 @@ export const ToolbarSelect = forwardRef<
45
46
  rightSection={<HiChevronDown />}
46
47
  size={"xs"}
47
48
  variant={"subtle"}
48
- disabled={isDisabled}>
49
+ disabled={isDisabled}
50
+ >
49
51
  {selectedItem.text}
50
52
  </MantineButton>
51
53
  </MantineMenu.Target>
@@ -63,7 +65,8 @@ export const ToolbarSelect = forwardRef<
63
65
  <div className={"bn-tick-space"} />
64
66
  )
65
67
  }
66
- disabled={item.isDisabled}>
68
+ disabled={item.isDisabled}
69
+ >
67
70
  {item.text}
68
71
  </MantineMenu.Item>
69
72
  ))}