blocks-dusted 0.1.11 → 0.1.13
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 +5 -2
- package/src/cli.js +39 -3
- package/src/commands/shop.js +59 -0
- package/src/commands/warehouse.js +73 -0
- package/src/installers/patchRenderBlocks.js +1 -1
- package/src/registry/validateTemplateManifest.js +2 -1
- package/templates/blocks/BannerDD790432/Component.tsx +63 -0
- package/templates/blocks/BannerDD790432/config.ts +54 -0
- package/templates/blocks/BannerDD790432/manifest.json +80 -0
- package/templates/blocks/Button47/Component.tsx +124 -0
- package/templates/blocks/Button47/config.ts +75 -0
- package/templates/blocks/Button47/link.ts +22 -0
- package/templates/blocks/Button47/manifest.json +105 -0
- package/templates/blocks/Button47/styles.module.scss +75 -0
- package/templates/blocks/DD-Accordion/Component.tsx +55 -36
- package/templates/blocks/DD-Accordion/config.ts +71 -59
- package/templates/blocks/DD-AnimText/Component.tsx +50 -32
- package/templates/blocks/DD-AnimText/config.ts +296 -295
- package/templates/blocks/DD-AsideNav/Component.tsx +323 -319
- package/templates/blocks/DD-Banner/Component.tsx +54 -51
- package/templates/blocks/DD-BookCall/Component.tsx +10 -9
- package/templates/blocks/DD-ButtonPop/Component.tsx +118 -117
- package/templates/blocks/DD-Card/Component.tsx +4 -4
- package/templates/blocks/DD-CardTemplate01/Component.tsx +5 -5
- package/templates/blocks/DD-CardsWithVariantV3/Component.tsx +472 -0
- package/templates/blocks/DD-CardsWithVariantV3/ElectricBorder/index.tsx +203 -0
- package/templates/blocks/DD-CardsWithVariantV3/ElectricBorder/styles.ts +87 -0
- package/templates/blocks/DD-CardsWithVariantV3/ElectricBorder/useInjectStyle.ts +39 -0
- package/templates/blocks/DD-CardsWithVariantV3/config.ts +326 -0
- package/templates/blocks/DD-CardsWithVariantV3/manifest.json +110 -0
- package/templates/blocks/DD-Carousel-A/Component.tsx +251 -249
- package/templates/blocks/DD-Carousel-B/Component.tsx +405 -403
- package/templates/blocks/DD-Chip/Component.tsx +14 -14
- package/templates/blocks/DD-ComparisonTable/Component.tsx +255 -256
- package/templates/blocks/DD-Contact/Component.tsx +433 -434
- package/templates/blocks/DD-Counter/Component.tsx +18 -13
- package/templates/blocks/DD-DeliCard/Component.tsx +303 -0
- package/templates/blocks/DD-DeliCard/config.ts +186 -0
- package/templates/blocks/DD-DeliCard/manifest.json +94 -0
- package/templates/blocks/DD-FeatCat/Component.tsx +302 -302
- package/templates/blocks/DD-FeatProd/CircularGallery.tsx +1179 -0
- package/templates/blocks/DD-FeatProd/Component.tsx +484 -0
- package/templates/blocks/DD-FeatProd/config.ts +173 -0
- package/templates/blocks/DD-FeatProd/manifest.json +93 -0
- package/templates/blocks/DD-FeatServ/Component.tsx +607 -0
- package/templates/blocks/DD-FeatServ/config.ts +213 -0
- package/templates/blocks/DD-FeatServ/manifest.json +113 -0
- package/templates/blocks/DD-FeatStrip/Component.tsx +584 -585
- package/templates/blocks/DD-FluidBtn/ButtonsEyeCatching.tsx +627 -628
- package/templates/blocks/DD-FluidBtn/Component.tsx +46 -43
- package/templates/blocks/DD-GooeyInfo/Component.tsx +150 -149
- package/templates/blocks/DD-GooeyInfo/config.ts +136 -135
- package/templates/blocks/DD-Hero/Component.tsx +16 -40
- package/templates/blocks/DD-HeroPlas/Component.tsx +50 -0
- package/templates/blocks/DD-HeroPlas/ThreeScene.tsx +109 -0
- package/templates/blocks/DD-HeroPlas/config.ts +33 -0
- package/templates/blocks/DD-HeroPlas/manifest.json +88 -0
- package/templates/blocks/DD-HorizontalScroll/Component.tsx +4 -5
- package/templates/blocks/DD-Icon/Component.tsx +46 -81
- package/templates/blocks/DD-IconButton/Component.tsx +13 -20
- package/templates/blocks/DD-IdTag/Component.tsx +22 -21
- package/templates/blocks/DD-IframeMedia/Component.tsx +14 -10
- package/templates/blocks/DD-LineAnim/Component.tsx +42 -36
- package/templates/blocks/DD-LogoMarq/Component.tsx +38 -48
- package/templates/blocks/DD-Lottie/Component.tsx +11 -3
- package/templates/blocks/DD-MasonaryMedia/Component.tsx +544 -547
- package/templates/blocks/DD-MasonaryMedia/config.ts +389 -389
- package/templates/blocks/DD-Masonry/Component.tsx +654 -644
- package/templates/blocks/DD-Masonry/config.ts +475 -475
- package/templates/blocks/DD-MaterialSwatches/Component.tsx +85 -0
- package/templates/blocks/DD-MaterialSwatches/config.ts +232 -0
- package/templates/blocks/DD-MaterialSwatches/manifest.json +84 -0
- package/templates/blocks/DD-MaterialSwatches/material.ts +107 -0
- package/templates/blocks/DD-NineCanvas/Component.tsx +129 -0
- package/templates/blocks/DD-NineCanvas/RenderBlocks.tsx +244 -0
- package/templates/blocks/DD-NineCanvas/allowedCanvasBlocks.ts +6 -0
- package/templates/blocks/DD-NineCanvas/blockComponents.tsx +8 -0
- package/templates/blocks/DD-NineCanvas/canvas/CanvasGrid.tsx +316 -0
- package/templates/blocks/DD-NineCanvas/canvas/RadialNav.tsx +432 -0
- package/templates/blocks/DD-NineCanvas/canvas/canvas-panels.css +889 -0
- package/templates/blocks/DD-NineCanvas/canvas/icons/custom-icons.tsx +364 -0
- package/templates/blocks/DD-NineCanvas/config.ts +61 -0
- package/templates/blocks/DD-NineCanvas/manifest.json +165 -0
- package/templates/blocks/DD-NineCanvas/styles.scss +152 -0
- package/templates/blocks/DD-NineCanvas/tooltip/get-strict-context.tsx +26 -0
- package/templates/blocks/DD-NineCanvas/tooltip/primitives.tsx +178 -0
- package/templates/blocks/DD-NineCanvas/tooltip/tooltip.tsx +71 -0
- package/templates/blocks/DD-NineCanvas/tooltip/use-controlled-state.tsx +33 -0
- package/templates/blocks/DD-NineCanvas/utilities/FadeOnScroll.tsx +68 -0
- package/templates/blocks/DD-NineCanvas/utilities/ParallaxWrapper.tsx +157 -0
- package/templates/blocks/DD-NineCanvas/utilities/renderCustomCSS.ts +5 -0
- package/templates/blocks/DD-NineCanvas/utilities/webglCleanup.ts +27 -0
- package/templates/blocks/DD-PayloadAIAssistant/Component.tsx +78 -0
- package/templates/blocks/DD-PayloadAIAssistant/DustedBot.tsx +590 -0
- package/templates/blocks/DD-PayloadAIAssistant/config.ts +37 -0
- package/templates/blocks/DD-PayloadAIAssistant/demo.css +125 -0
- package/templates/blocks/DD-PayloadAIAssistant/manifest.json +93 -0
- package/templates/blocks/DD-PayloadAIAssistant/source-defaults.ts +17 -0
- package/templates/blocks/DD-PayloadAIAssistant/styles.ts +306 -0
- package/templates/blocks/DD-Pricing/Component.tsx +368 -372
- package/templates/blocks/DD-Pricing/config.ts +215 -215
- package/templates/blocks/DD-Process/Component.tsx +147 -149
- package/templates/blocks/DD-Progress/Component.tsx +156 -141
- package/templates/blocks/DD-ProjHeader/Component.tsx +93 -91
- package/templates/blocks/DD-ProjSlider/Component.tsx +1 -1
- package/templates/blocks/DD-ProjSlider/config.ts +2 -2
- package/templates/blocks/DD-Section/Component.tsx +265 -266
- package/templates/blocks/DD-Separator/Component.tsx +66 -66
- package/templates/blocks/DD-Services/Component.tsx +176 -176
- package/templates/blocks/DD-ShowcaseGrid/Component.tsx +306 -307
- package/templates/blocks/DD-Slider-A/Component.tsx +237 -237
- package/templates/blocks/DD-StackCards/Component.tsx +474 -473
- package/templates/blocks/DD-Team/Component.tsx +247 -247
- package/templates/blocks/DD-TeamCards/Component.tsx +251 -251
- package/templates/blocks/DD-TechStack/Component.tsx +161 -168
- package/templates/blocks/DD-TestMarq/Component.tsx +158 -132
- package/templates/blocks/DD-Testim/Component.tsx +247 -247
- package/templates/blocks/DD-Testim2/Component.tsx +265 -256
- package/templates/blocks/DD-Testimonials/Component.tsx +139 -147
- package/templates/blocks/DD-TextMarq/Component.tsx +157 -157
- package/templates/blocks/DD-Thanks/Component.tsx +501 -500
- package/templates/blocks/DD-Work/Component.tsx +315 -315
- package/templates/blocks/DD-Work-B/Component.tsx +294 -294
- package/templates/blocks/DDHG-CTASection2/Component.tsx +183 -184
- package/templates/blocks/DDHG-HighlightArc/Component.tsx +246 -243
- package/templates/blocks/DDHG-LogoMarquee/Component.tsx +180 -93
- package/templates/blocks/DDHG-LogoMarquee/config.ts +154 -66
- package/templates/blocks/DDHG-NavCodeGrid/Component.tsx +225 -213
- package/templates/blocks/DDHG-ProcessSec/Component.tsx +38 -39
- package/templates/blocks/DDHG-ServiceDetails/Component.tsx +11 -11
- package/templates/blocks/DDHG-ServiceDetails/ServiceDetailCard.tsx +30 -47
- package/templates/blocks/DDHG-ServiceHero/Component.tsx +10 -10
- package/templates/blocks/DDHG-ServiceOverview/Component.tsx +23 -23
- package/templates/blocks/DDHG-StatsFAQ/Component.tsx +40 -40
- package/templates/blocks/DDHG-TeamCards/Component.tsx +140 -131
- package/templates/blocks/Form/Checkbox/index.tsx +45 -0
- package/templates/blocks/Form/Component.tsx +163 -0
- package/templates/blocks/Form/Country/index.tsx +65 -0
- package/templates/blocks/Form/Country/options.ts +982 -0
- package/templates/blocks/Form/Email/index.tsx +38 -0
- package/templates/blocks/Form/Error/index.tsx +15 -0
- package/templates/blocks/Form/Message/index.tsx +13 -0
- package/templates/blocks/Form/Number/index.tsx +36 -0
- package/templates/blocks/Form/Select/index.tsx +63 -0
- package/templates/blocks/Form/State/index.tsx +64 -0
- package/templates/blocks/Form/State/options.ts +52 -0
- package/templates/blocks/Form/Text/index.tsx +32 -0
- package/templates/blocks/Form/Textarea/index.tsx +40 -0
- package/templates/blocks/Form/Width/index.tsx +13 -0
- package/templates/blocks/Form/config.ts +51 -0
- package/templates/blocks/Form/fields.tsx +21 -0
- package/templates/blocks/Form/manifest.json +168 -0
- package/templates/blocks/MediaBlock/Component.tsx +67 -0
- package/templates/blocks/MediaBlock/config.ts +14 -0
- package/templates/blocks/MediaBlock/manifest.json +92 -0
- package/templates/blocks/TransitionsDustedShowcase/Component.tsx +9 -0
- package/templates/blocks/TransitionsDustedShowcase/config.ts +13 -0
- package/templates/blocks/TransitionsDustedShowcase/manifest.json +80 -0
- package/templates/blocks/rawHtml/Component.tsx +25 -0
- package/templates/blocks/rawHtml/config.ts +56 -0
- package/templates/blocks/rawHtml/manifest.json +80 -0
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
{
|
|
2
|
+
"type": "block",
|
|
3
|
+
"name": "MediaBlock",
|
|
4
|
+
"label": "Media Block",
|
|
5
|
+
"sourceName": "MediaBlock",
|
|
6
|
+
"portableName": "MediaBlock",
|
|
7
|
+
"slug": "mediaBlock",
|
|
8
|
+
"version": "0.0.1",
|
|
9
|
+
"source": {
|
|
10
|
+
"repo": "Hadizainal/Dusted-Payload-Blocks",
|
|
11
|
+
"originalPath": "CLI-TestGround/dusted-blocks-demo/src/blocks/MediaBlock",
|
|
12
|
+
"originalSlug": "mediaBlock",
|
|
13
|
+
"originalConfigExport": "MediaBlock",
|
|
14
|
+
"originalComponentExport": "MediaBlock",
|
|
15
|
+
"originalInterfaceName": "MediaBlock"
|
|
16
|
+
},
|
|
17
|
+
"files": [
|
|
18
|
+
{
|
|
19
|
+
"from": "Component.tsx",
|
|
20
|
+
"to": "src/blocks/MediaBlock/Component.tsx"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"from": "config.ts",
|
|
24
|
+
"to": "src/blocks/MediaBlock/config.ts"
|
|
25
|
+
}
|
|
26
|
+
],
|
|
27
|
+
"dependencies": [],
|
|
28
|
+
"sharedFiles": [],
|
|
29
|
+
"requiredProjectFiles": [
|
|
30
|
+
{
|
|
31
|
+
"path": "src/payload-types.ts",
|
|
32
|
+
"reason": "Component uses the generated MediaBlock type."
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"path": "src/components/Media/index.tsx",
|
|
36
|
+
"reason": "Component renders Payload media."
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"path": "src/components/RichText/index.tsx",
|
|
40
|
+
"reason": "Component renders captions through RichText."
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"path": "src/utilities/ui.ts",
|
|
44
|
+
"reason": "Component imports cn from @/utilities/ui."
|
|
45
|
+
}
|
|
46
|
+
],
|
|
47
|
+
"optionalProjectFiles": [],
|
|
48
|
+
"collectionRegistration": {
|
|
49
|
+
"enabled": true,
|
|
50
|
+
"collections": [
|
|
51
|
+
"Pages",
|
|
52
|
+
"Posts"
|
|
53
|
+
]
|
|
54
|
+
},
|
|
55
|
+
"renderBlocksRegistration": {
|
|
56
|
+
"enabled": true
|
|
57
|
+
},
|
|
58
|
+
"renderBlocksBehavior": {
|
|
59
|
+
"wrapperless": false
|
|
60
|
+
},
|
|
61
|
+
"pageRouteIntegration": {
|
|
62
|
+
"required": false,
|
|
63
|
+
"manualSteps": []
|
|
64
|
+
},
|
|
65
|
+
"manual": [
|
|
66
|
+
"Register MediaBlock in Pages/Posts block arrays if automatic registration was skipped.",
|
|
67
|
+
"Register mediaBlock in RenderBlocks if automatic registration was skipped.",
|
|
68
|
+
"Run payload generate:types after schema changes.",
|
|
69
|
+
"Run payload generate:importmap if admin/component imports changed."
|
|
70
|
+
],
|
|
71
|
+
"manualSteps": [
|
|
72
|
+
"Register MediaBlock in Pages/Posts block arrays if automatic registration was skipped.",
|
|
73
|
+
"Register mediaBlock in RenderBlocks if automatic registration was skipped.",
|
|
74
|
+
"Run payload generate:types after schema changes.",
|
|
75
|
+
"Run payload generate:importmap if admin/component imports changed."
|
|
76
|
+
],
|
|
77
|
+
"patchTargets": {
|
|
78
|
+
"blockConfigRegistration": {
|
|
79
|
+
"description": "Installer can register MediaBlock from @/blocks/MediaBlock/config."
|
|
80
|
+
},
|
|
81
|
+
"renderBlocksRegistration": {
|
|
82
|
+
"description": "Installer can register mediaBlock with component export MediaBlock."
|
|
83
|
+
}
|
|
84
|
+
},
|
|
85
|
+
"notes": [
|
|
86
|
+
"Promoted from the verified Dusted Blocks demo implementation.",
|
|
87
|
+
"Installer preserves existing destination files and reports project requirements before writing."
|
|
88
|
+
],
|
|
89
|
+
"exportName": "MediaBlock",
|
|
90
|
+
"componentExportName": "MediaBlock",
|
|
91
|
+
"interfaceName": "MediaBlock"
|
|
92
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { Block } from 'payload'
|
|
2
|
+
|
|
3
|
+
export const TransitionsDustedShowcase: Block = {
|
|
4
|
+
slug: 'TransitionsDustedShowcase',
|
|
5
|
+
interfaceName: 'TransitionsDustedShowcaseBlock',
|
|
6
|
+
labels: {
|
|
7
|
+
singular: 'Transitions Dusted Showcase',
|
|
8
|
+
plural: 'Transitions Dusted Showcases',
|
|
9
|
+
},
|
|
10
|
+
fields: [],
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
export default TransitionsDustedShowcase
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
{
|
|
2
|
+
"type": "block",
|
|
3
|
+
"name": "TransitionsDustedShowcase",
|
|
4
|
+
"label": "Transitions Dusted Showcase",
|
|
5
|
+
"sourceName": "TransitionsDustedShowcase",
|
|
6
|
+
"portableName": "TransitionsDustedShowcase",
|
|
7
|
+
"slug": "TransitionsDustedShowcase",
|
|
8
|
+
"version": "0.0.1",
|
|
9
|
+
"source": {
|
|
10
|
+
"repo": "Hadizainal/Dusted-Payload-Blocks",
|
|
11
|
+
"originalPath": "CLI-TestGround/dusted-blocks-demo/src/blocks/TransitionsDustedShowcase",
|
|
12
|
+
"originalSlug": "TransitionsDustedShowcase",
|
|
13
|
+
"originalConfigExport": "TransitionsDustedShowcase",
|
|
14
|
+
"originalComponentExport": "TransitionsDustedShowcase",
|
|
15
|
+
"originalInterfaceName": "TransitionsDustedShowcaseBlock"
|
|
16
|
+
},
|
|
17
|
+
"files": [
|
|
18
|
+
{
|
|
19
|
+
"from": "Component.tsx",
|
|
20
|
+
"to": "src/blocks/TransitionsDustedShowcase/Component.tsx"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"from": "config.ts",
|
|
24
|
+
"to": "src/blocks/TransitionsDustedShowcase/config.ts"
|
|
25
|
+
}
|
|
26
|
+
],
|
|
27
|
+
"dependencies": [],
|
|
28
|
+
"sharedFiles": [],
|
|
29
|
+
"requiredProjectFiles": [
|
|
30
|
+
{
|
|
31
|
+
"path": "src/components/TransitionsDustedShowcase/index.tsx",
|
|
32
|
+
"reason": "Block renders the shared Transitions Dusted Showcase component."
|
|
33
|
+
}
|
|
34
|
+
],
|
|
35
|
+
"optionalProjectFiles": [],
|
|
36
|
+
"collectionRegistration": {
|
|
37
|
+
"enabled": true,
|
|
38
|
+
"collections": [
|
|
39
|
+
"Pages",
|
|
40
|
+
"Posts"
|
|
41
|
+
]
|
|
42
|
+
},
|
|
43
|
+
"renderBlocksRegistration": {
|
|
44
|
+
"enabled": true
|
|
45
|
+
},
|
|
46
|
+
"renderBlocksBehavior": {
|
|
47
|
+
"wrapperless": false
|
|
48
|
+
},
|
|
49
|
+
"pageRouteIntegration": {
|
|
50
|
+
"required": false,
|
|
51
|
+
"manualSteps": []
|
|
52
|
+
},
|
|
53
|
+
"manual": [
|
|
54
|
+
"Register TransitionsDustedShowcase in Pages/Posts block arrays if automatic registration was skipped.",
|
|
55
|
+
"Register TransitionsDustedShowcase in RenderBlocks if automatic registration was skipped.",
|
|
56
|
+
"Run payload generate:types after schema changes.",
|
|
57
|
+
"Run payload generate:importmap if admin/component imports changed."
|
|
58
|
+
],
|
|
59
|
+
"manualSteps": [
|
|
60
|
+
"Register TransitionsDustedShowcase in Pages/Posts block arrays if automatic registration was skipped.",
|
|
61
|
+
"Register TransitionsDustedShowcase in RenderBlocks if automatic registration was skipped.",
|
|
62
|
+
"Run payload generate:types after schema changes.",
|
|
63
|
+
"Run payload generate:importmap if admin/component imports changed."
|
|
64
|
+
],
|
|
65
|
+
"patchTargets": {
|
|
66
|
+
"blockConfigRegistration": {
|
|
67
|
+
"description": "Installer can register TransitionsDustedShowcase from @/blocks/TransitionsDustedShowcase/config."
|
|
68
|
+
},
|
|
69
|
+
"renderBlocksRegistration": {
|
|
70
|
+
"description": "Installer can register TransitionsDustedShowcase with component export TransitionsDustedShowcase."
|
|
71
|
+
}
|
|
72
|
+
},
|
|
73
|
+
"notes": [
|
|
74
|
+
"Promoted from the verified Dusted Blocks demo implementation.",
|
|
75
|
+
"Installer preserves existing destination files and reports project requirements before writing."
|
|
76
|
+
],
|
|
77
|
+
"exportName": "TransitionsDustedShowcase",
|
|
78
|
+
"componentExportName": "TransitionsDustedShowcase",
|
|
79
|
+
"interfaceName": "TransitionsDustedShowcaseBlock"
|
|
80
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import React from 'react'
|
|
2
|
+
|
|
3
|
+
import { cn } from '@/utilities/ui'
|
|
4
|
+
|
|
5
|
+
export type RawHtmlBlockProps = {
|
|
6
|
+
blockType: 'rawHtml'
|
|
7
|
+
blockName?: string
|
|
8
|
+
html?: string
|
|
9
|
+
css?: string
|
|
10
|
+
customClassName?: string | null
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
export const RawHtmlBlock: React.FC<RawHtmlBlockProps> = ({ html, css, customClassName }) => {
|
|
14
|
+
if (!html && !css) return null
|
|
15
|
+
|
|
16
|
+
return (
|
|
17
|
+
<div className={cn('rawh-block', customClassName)}>
|
|
18
|
+
{css ? <style dangerouslySetInnerHTML={{ __html: css }} /> : null}
|
|
19
|
+
|
|
20
|
+
{html ? (
|
|
21
|
+
<div className="rawh-block__content" dangerouslySetInnerHTML={{ __html: html }} />
|
|
22
|
+
) : null}
|
|
23
|
+
</div>
|
|
24
|
+
)
|
|
25
|
+
}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import type { Block } from 'payload'
|
|
2
|
+
|
|
3
|
+
export const RawHtmlBlock: Block = {
|
|
4
|
+
slug: 'rawHtml',
|
|
5
|
+
interfaceName: 'RawHtmlBlock',
|
|
6
|
+
labels: {
|
|
7
|
+
singular: 'Raw HTML',
|
|
8
|
+
plural: 'Raw HTML Blocks',
|
|
9
|
+
},
|
|
10
|
+
fields: [
|
|
11
|
+
{
|
|
12
|
+
type: 'tabs',
|
|
13
|
+
tabs: [
|
|
14
|
+
{
|
|
15
|
+
label: 'HTML',
|
|
16
|
+
fields: [
|
|
17
|
+
{
|
|
18
|
+
name: 'html',
|
|
19
|
+
type: 'code',
|
|
20
|
+
label: 'HTML',
|
|
21
|
+
admin: {
|
|
22
|
+
language: 'html',
|
|
23
|
+
},
|
|
24
|
+
},
|
|
25
|
+
],
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
label: 'Settings',
|
|
29
|
+
fields: [
|
|
30
|
+
{
|
|
31
|
+
name: 'customClassName',
|
|
32
|
+
type: 'text',
|
|
33
|
+
label: 'Custom CSS Classes',
|
|
34
|
+
admin: {
|
|
35
|
+
width: '50%',
|
|
36
|
+
},
|
|
37
|
+
},
|
|
38
|
+
],
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
label: 'CSS',
|
|
42
|
+
fields: [
|
|
43
|
+
{
|
|
44
|
+
name: 'css',
|
|
45
|
+
type: 'code',
|
|
46
|
+
label: 'CSS',
|
|
47
|
+
admin: {
|
|
48
|
+
language: 'css',
|
|
49
|
+
},
|
|
50
|
+
},
|
|
51
|
+
],
|
|
52
|
+
},
|
|
53
|
+
],
|
|
54
|
+
},
|
|
55
|
+
],
|
|
56
|
+
}
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
{
|
|
2
|
+
"type": "block",
|
|
3
|
+
"name": "rawHtml",
|
|
4
|
+
"label": "Raw HTML",
|
|
5
|
+
"sourceName": "rawHtml",
|
|
6
|
+
"portableName": "rawHtml",
|
|
7
|
+
"slug": "rawHtml",
|
|
8
|
+
"version": "0.0.1",
|
|
9
|
+
"source": {
|
|
10
|
+
"repo": "Hadizainal/Dusted-Payload-Blocks",
|
|
11
|
+
"originalPath": "CLI-TestGround/dusted-blocks-demo/src/blocks/rawHtml",
|
|
12
|
+
"originalSlug": "rawHtml",
|
|
13
|
+
"originalConfigExport": "RawHtmlBlock",
|
|
14
|
+
"originalComponentExport": "RawHtmlBlock",
|
|
15
|
+
"originalInterfaceName": "RawHtmlBlock"
|
|
16
|
+
},
|
|
17
|
+
"files": [
|
|
18
|
+
{
|
|
19
|
+
"from": "Component.tsx",
|
|
20
|
+
"to": "src/blocks/rawHtml/Component.tsx"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"from": "config.ts",
|
|
24
|
+
"to": "src/blocks/rawHtml/config.ts"
|
|
25
|
+
}
|
|
26
|
+
],
|
|
27
|
+
"dependencies": [],
|
|
28
|
+
"sharedFiles": [],
|
|
29
|
+
"requiredProjectFiles": [
|
|
30
|
+
{
|
|
31
|
+
"path": "src/utilities/ui.ts",
|
|
32
|
+
"reason": "Component imports cn from @/utilities/ui."
|
|
33
|
+
}
|
|
34
|
+
],
|
|
35
|
+
"optionalProjectFiles": [],
|
|
36
|
+
"collectionRegistration": {
|
|
37
|
+
"enabled": true,
|
|
38
|
+
"collections": [
|
|
39
|
+
"Pages",
|
|
40
|
+
"Posts"
|
|
41
|
+
]
|
|
42
|
+
},
|
|
43
|
+
"renderBlocksRegistration": {
|
|
44
|
+
"enabled": true
|
|
45
|
+
},
|
|
46
|
+
"renderBlocksBehavior": {
|
|
47
|
+
"wrapperless": false
|
|
48
|
+
},
|
|
49
|
+
"pageRouteIntegration": {
|
|
50
|
+
"required": false,
|
|
51
|
+
"manualSteps": []
|
|
52
|
+
},
|
|
53
|
+
"manual": [
|
|
54
|
+
"Register RawHtmlBlock in Pages/Posts block arrays if automatic registration was skipped.",
|
|
55
|
+
"Register rawHtml in RenderBlocks if automatic registration was skipped.",
|
|
56
|
+
"Run payload generate:types after schema changes.",
|
|
57
|
+
"Run payload generate:importmap if admin/component imports changed."
|
|
58
|
+
],
|
|
59
|
+
"manualSteps": [
|
|
60
|
+
"Register RawHtmlBlock in Pages/Posts block arrays if automatic registration was skipped.",
|
|
61
|
+
"Register rawHtml in RenderBlocks if automatic registration was skipped.",
|
|
62
|
+
"Run payload generate:types after schema changes.",
|
|
63
|
+
"Run payload generate:importmap if admin/component imports changed."
|
|
64
|
+
],
|
|
65
|
+
"patchTargets": {
|
|
66
|
+
"blockConfigRegistration": {
|
|
67
|
+
"description": "Installer can register RawHtmlBlock from @/blocks/rawHtml/config."
|
|
68
|
+
},
|
|
69
|
+
"renderBlocksRegistration": {
|
|
70
|
+
"description": "Installer can register rawHtml with component export RawHtmlBlock."
|
|
71
|
+
}
|
|
72
|
+
},
|
|
73
|
+
"notes": [
|
|
74
|
+
"Promoted from the verified Dusted Blocks demo implementation.",
|
|
75
|
+
"Installer preserves existing destination files and reports project requirements before writing."
|
|
76
|
+
],
|
|
77
|
+
"exportName": "RawHtmlBlock",
|
|
78
|
+
"componentExportName": "RawHtmlBlock",
|
|
79
|
+
"interfaceName": "RawHtmlBlock"
|
|
80
|
+
}
|