diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,6 @@
+# 0.2.0.12 (2017-06-21)
+    * Export EditorDef and EditorFactory constructors to allow for
+      wrapping of custom controls
 # 0.2.0.11 (2017-06-10)
     * Documentation only release.
 # 0.2.0.10 (2017-05-23)
diff --git a/src/Graphics/UI/Threepenny/Editors/Base.hs b/src/Graphics/UI/Threepenny/Editors/Base.hs
--- a/src/Graphics/UI/Threepenny/Editors/Base.hs
+++ b/src/Graphics/UI/Threepenny/Editors/Base.hs
@@ -10,9 +10,11 @@
   , contents
   , Editable(..)
     -- ** Editor definitions
-  , EditorDef
+  , EditorDef(..)
   , runEditorDef
-    -- ** Editor compoosition
+    -- ** Layouts
+  , Layout(..)
+    -- ** Editor composition
   , (|*|), (|*), (*|)
   , (-*-), (-*), (*-)
     -- ** Editor constructors
diff --git a/src/Graphics/UI/Threepenny/Editors/Profunctor.hs b/src/Graphics/UI/Threepenny/Editors/Profunctor.hs
--- a/src/Graphics/UI/Threepenny/Editors/Profunctor.hs
+++ b/src/Graphics/UI/Threepenny/Editors/Profunctor.hs
@@ -19,7 +19,7 @@
     Base.Editor(..)
   , Base.edited
   , Base.contents
-  , EditorFactory
+  , EditorFactory(..)
   , createEditor
   , Editable(..)
     -- ** Editor compoosition
diff --git a/threepenny-editors.cabal b/threepenny-editors.cabal
--- a/threepenny-editors.cabal
+++ b/threepenny-editors.cabal
@@ -3,7 +3,7 @@
 -- see: https://github.com/sol/hpack
 
 name:           threepenny-editors
-version:        0.2.0.11
+version:        0.2.0.12
 synopsis:       Composable algebraic editors
 description:    This package provides a type class 'Editable' and combinators to
                 easily put together form-like editors for algebraic datatypes.
