Skip to content
This repository was archived by the owner on Jan 31, 2023. It is now read-only.

Commit 009f25f

Browse files
committed
Fix some query builder imports
1 parent b5c3d96 commit 009f25f

File tree

5 files changed

+11
-7
lines changed

5 files changed

+11
-7
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 2.54.15
2+
3+
- Fix query builder imports
4+
15
# 2.54.14
26

37
- Fix grey-vest publishing v2

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "contexture-react",
3-
"version": "2.54.14",
3+
"version": "2.54.15",
44
"description": "React components for building contexture interfaces",
55
"type": "module",
66
"main": "dist/esm/index.js",
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import dnd from 'react-dnd'
1+
import { DragDropContext } from 'react-dnd'
22
import HTML5Backend from 'react-dnd-html5-backend'
33

4-
export default dnd.DragDropContext(HTML5Backend)
4+
export default DragDropContext(HTML5Backend)

src/queryBuilder/DragDrop/FilterDragSource.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import dnd from 'react-dnd'
1+
import { DragSource } from 'react-dnd'
22

3-
export default dnd.DragSource(
3+
export default DragSource(
44
'filter',
55
{
66
beginDrag: (props) => ({

src/queryBuilder/DragDrop/FilterDropTarget.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
import dnd from 'react-dnd'
1+
import { DropTarget } from 'react-dnd'
22

33
export let FilterDropTarget = (spec) =>
4-
dnd.DropTarget('filter', spec, (connect, monitor) => ({
4+
DropTarget('filter', spec, (connect, monitor) => ({
55
connectDropTarget: connect.dropTarget(),
66
isOver: monitor.isOver(),
77
canDrop: monitor.canDrop(),

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy