@levo-so/blocks 0.1.72 → 0.1.73
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@levo-so/blocks",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.73",
|
|
4
4
|
"author": "Levo Engineering <devs@theinternetfolks.com>",
|
|
5
5
|
"description": "Set of blocks for Levo studio",
|
|
6
6
|
"type": "module",
|
|
@@ -15,9 +15,9 @@
|
|
|
15
15
|
"peerDependencies": {
|
|
16
16
|
"react": ">=18",
|
|
17
17
|
"react-dom": ">=18",
|
|
18
|
-
"@levo-so/
|
|
19
|
-
"@levo-so/
|
|
20
|
-
"@levo-so/
|
|
18
|
+
"@levo-so/studio": "0.1.73",
|
|
19
|
+
"@levo-so/core": "0.1.71",
|
|
20
|
+
"@levo-so/react": "0.1.71"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"dayjs": "1.11.13",
|
|
@@ -228,7 +228,7 @@ export const BlogPost1: IBlock = {
|
|
|
228
228
|
{
|
|
229
229
|
key: "content",
|
|
230
230
|
label: "Content",
|
|
231
|
-
field_interface: "
|
|
231
|
+
field_interface: "BlogContentWidget",
|
|
232
232
|
hint: {
|
|
233
233
|
prompt_description:
|
|
234
234
|
"Full blog article body. Use formal, professional tone suitable for financial topics. Include headings, paragraphs, and clear explanations. Length should be 800–2000 words for a comprehensive post.",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { ILevoBlockBaseProps } from "@levo-so/studio";
|
|
2
|
-
import { Box, Container, Heading, Icon, Media, Section, Typography } from "@levo-so/studio";
|
|
2
|
+
import { BlogContent, Box, Container, Heading, Icon, Media, Section, Typography } from "@levo-so/studio";
|
|
3
3
|
import dayjs from "dayjs";
|
|
4
4
|
import type React from "react";
|
|
5
5
|
|
|
@@ -32,7 +32,7 @@ const BlogPost1: React.FC<ILevoBlockBaseProps<IBlogPost1Content>> = ({ content }
|
|
|
32
32
|
<Media elementKey="blog-cover" alt="Blog Cover" />
|
|
33
33
|
</Box>
|
|
34
34
|
<Box elementKey="content-section">
|
|
35
|
-
<
|
|
35
|
+
<BlogContent elementKey="content" />
|
|
36
36
|
</Box>
|
|
37
37
|
</Container>
|
|
38
38
|
</Section>
|