@bangle.dev/core
Advanced tools
Comparing version 0.10.0 to 0.10.1
import * as logging from './utils/logging'; | ||
import browser, { isChromeWithSelectionBug } from './utils/browser'; | ||
import browser from './utils/browser'; | ||
import * as utils from './utils/utils'; | ||
import * as components from './components/components'; | ||
@@ -12,2 +13,5 @@ export * from './components/components'; | ||
export { utils, logging, browser, isChromeWithSelectionBug }; | ||
const isChromeWithSelectionBug = | ||
browser.chrome && !browser.android && browser.chrome_version >= 58; | ||
export { components, utils, logging, browser, isChromeWithSelectionBug }; |
{ | ||
"name": "@bangle.dev/core", | ||
"version": "0.10.0", | ||
"version": "0.10.1", | ||
"homepage": "https://bangle.dev", | ||
@@ -5,0 +5,0 @@ "authors": [ |
@@ -47,4 +47,1 @@ const browser = { | ||
export default browser; | ||
export const isChromeWithSelectionBug = | ||
browser.chrome && !browser.android && browser.chrome_version >= 58; |
520275
18968