PluginProbe
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor / 2.0.7
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor v2.0.7
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 / dynamic-date / block.json

block.json in Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor 2.0.7, at blocks/dynamic-date/block.json

87 lines 2.0 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/dynamic-date",
5 "title": "Dynamic Date",
6 "category": "bkbg-blog",
7 "icon": "calendar-alt",
8 "description": "Outputs the current date, time or copyright year automatically, with live clock option.",
9 "keywords": [
10 "date",
11 "time",
12 "year",
13 "clock",
14 "dynamic",
15 "copyright"
16 ],
17 "textdomain": "blockenberg",
18 "editorScript": "bkbg-dynamic-date-editor",
19 "editorStyle": "bkbg-dynamic-date-style",
20 "style": "bkbg-dynamic-date-style",
21 "viewScript": "bkbg-dynamic-date-frontend",
22 "supports": {
23 "html": false,
24 "anchor": true,
25 "className": true,
26 "align": []
27 },
28 "attributes": {
29 "format": {
30 "type": "string",
31 "default": "long-date"
32 },
33 "customFormat": {
34 "type": "string",
35 "default": ""
36 },
37 "timezone": {
38 "type": "string",
39 "default": "site"
40 },
41 "customTz": {
42 "type": "string",
43 "default": "UTC"
44 },
45 "liveClock": {
46 "type": "boolean",
47 "default": false
48 },
49 "prefix": {
50 "type": "string",
51 "default": ""
52 },
53 "suffix": {
54 "type": "string",
55 "default": ""
56 },
57 "tag": {
58 "type": "string",
59 "default": "span"
60 },
61 "textColor": {
62 "type": "string",
63 "default": ""
64 },
65 "fontSize": {
66 "type": "number",
67 "default": 16
68 },
69 "fontWeight": {
70 "type": "string",
71 "default": "400"
72 },
73 "lineHeight": {
74 "type": "number",
75 "default": 1.5
76 },
77 "align": {
78 "type": "string",
79 "default": "left"
80 },
81 "typoText": {
82 "type": "object",
83 "default": {}
84 }
85 }
86 }
87