@hackersheet/next-document-content-components 0.1.0-alpha.22 → 0.1.0-alpha.24
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.
- package/dist/esm/index.mjs +20 -20
- package/package.json +1 -1
package/dist/esm/index.mjs
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
3
|
-
import
|
|
4
|
-
import
|
|
5
|
-
import
|
|
6
|
-
import
|
|
7
|
-
import
|
|
8
|
-
import
|
|
9
|
-
import
|
|
10
|
-
import
|
|
1
|
+
import { default as default2 } from "./components/code-block/code-block";
|
|
2
|
+
import { default as default3 } from "./components/code-block/directory-tree";
|
|
3
|
+
import { default as default4 } from "./components/gist/gist";
|
|
4
|
+
import { default as default5 } from "./components/heading/heading";
|
|
5
|
+
import { default as default6 } from "./components/image/image";
|
|
6
|
+
import { default as default7 } from "./components/link/link";
|
|
7
|
+
import { default as default8 } from "./components/link-card/link-card";
|
|
8
|
+
import { default as default9 } from "./components/mermaid/mermaid";
|
|
9
|
+
import { default as default10 } from "./components/x-post/x-post";
|
|
10
|
+
import { default as default11 } from "./components/youtube/youtube";
|
|
11
11
|
export {
|
|
12
|
-
CodeBlock,
|
|
13
|
-
DirectoryTree,
|
|
14
|
-
Gist,
|
|
15
|
-
Heading,
|
|
16
|
-
Image,
|
|
17
|
-
Link,
|
|
18
|
-
LinkCard,
|
|
19
|
-
Mermaid,
|
|
20
|
-
XPost,
|
|
21
|
-
Youtube
|
|
12
|
+
default2 as CodeBlock,
|
|
13
|
+
default3 as DirectoryTree,
|
|
14
|
+
default4 as Gist,
|
|
15
|
+
default5 as Heading,
|
|
16
|
+
default6 as Image,
|
|
17
|
+
default7 as Link,
|
|
18
|
+
default8 as LinkCard,
|
|
19
|
+
default9 as Mermaid,
|
|
20
|
+
default10 as XPost,
|
|
21
|
+
default11 as Youtube
|
|
22
22
|
};
|