PluginProbe
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor / 2.0.11
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor v2.0.11
2.0.13 2.0.12 2.0.11 2.0.10 2.0.9 trunk 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8
blockenberg / blocks / cron-builder / block.json

block.json in Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor 2.0.11, at blocks/cron-builder/block.json

128 lines 3.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "apiVersion": 3,
3 "$schema": "https://schemas.wp.org/trunk/block.json",
4 "name": "blockenberg/cron-builder",
5 "title": "Cron Builder",
6 "category": "bkbg-dev",
7 "icon": "clock",
8 "description": "Visual cron expression builder. Edit each field individually, see a human-readable description, choose from common presets, preview next run times, and copy the final expression.",
9 "keywords": [
10 "cron",
11 "scheduler",
12 "schedule",
13 "expression",
14 "task",
15 "automation",
16 "developer",
17 "unix",
18 "linux"
19 ],
20 "textdomain": "blockenberg",
21 "editorScript": "bkbg-cron-builder-editor",
22 "style": "bkbg-cron-builder-style",
23 "viewScript": "bkbg-cron-builder-frontend",
24 "supports": {
25 "html": false,
26 "anchor": true,
27 "className": true,
28 "align": [
29 "wide",
30 "full"
31 ]
32 },
33 "attributes": {
34 "title": {
35 "type": "string",
36 "default": "Cron Expression Builder"
37 },
38 "subtitle": {
39 "type": "string",
40 "default": "Build and understand cron schedules visually"
41 },
42 "showTitle": {
43 "type": "boolean",
44 "default": true
45 },
46 "showSubtitle": {
47 "type": "boolean",
48 "default": true
49 },
50 "defaultExpression": {
51 "type": "string",
52 "default": "0 9 * * *"
53 },
54 "showNextRuns": {
55 "type": "boolean",
56 "default": true
57 },
58 "nextRunsCount": {
59 "type": "number",
60 "default": 5
61 },
62 "showPresets": {
63 "type": "boolean",
64 "default": true
65 },
66 "showDescription": {
67 "type": "boolean",
68 "default": true
69 },
70 "accentColor": {
71 "type": "string",
72 "default": "#0ea5e9"
73 },
74 "sectionBg": {
75 "type": "string",
76 "default": "#f0f9ff"
77 },
78 "cardBg": {
79 "type": "string",
80 "default": "#ffffff"
81 },
82 "inputBg": {
83 "type": "string",
84 "default": "#e0f2fe"
85 },
86 "fieldBg": {
87 "type": "string",
88 "default": "#e0f2fe"
89 },
90 "titleColor": {
91 "type": "string",
92 "default": "#0c4a6e"
93 },
94 "subtitleColor": {
95 "type": "string",
96 "default": "#6b7280"
97 },
98 "labelColor": {
99 "type": "string",
100 "default": "#374151"
101 },
102 "titleFontSize": {
103 "type": "number",
104 "default": 26
105 },
106 "subtitleFontSize": {
107 "type": "number",
108 "default": 15
109 },
110 "expressionFontSize": {
111 "type": "number",
112 "default": 22
113 },
114 "contentMaxWidth": {
115 "type": "number",
116 "default": 720
117 },
118 "typoTitle": {
119 "type": "object",
120 "default": {}
121 },
122 "typoSubtitle": {
123 "type": "object",
124 "default": {}
125 }
126 }
127 }
128