PluginProbe ʕ •ᴥ•ʔ
Kubio AI Page Builder / 2.8.3
Kubio AI Page Builder v2.8.3
2.8.4 2.8.3 2.8.2 2.8.1 trunk 1.0.0 1.0.1 1.1.0 1.2.0 1.2.1 1.2.2 1.2.3 1.3.0 1.3.1 1.3.2 1.4.0 1.4.1 1.4.2 1.4.3 1.5.0 1.6.0 1.6.1 1.6.2 1.6.3 1.6.4 1.7.0 1.7.1 1.7.2 1.7.3 1.8.0 1.8.1 1.8.2 1.9.0 2.0.0 2.1.1 2.1.2 2.1.3 2.2.0 2.2.3 2.2.4 2.2.5 2.3.0 2.3.1 2.3.3 2.3.4 2.4.0 2.4.1 2.4.2 2.4.3 2.4.5 2.5.0 2.5.1 2.5.2 2.5.3 2.6.0 2.6.1 2.6.2 2.6.3 2.6.5 2.6.6 2.6.7 2.7.0 2.7.1 2.7.2 2.7.3 2.8.0
kubio / build / block-library / blocks / post-categories / block.json
kubio / build / block-library / blocks / post-categories Last commit date
block.json 4 years ago index.php 1 year ago
block.json
90 lines
1 {
2 "name": "kubio/post-categories",
3 "category": "kubio-blog-components",
4 "attributes": {
5 "kubio": {
6 "type": "object"
7 },
8 "separator": {
9 "type": "string",
10 "default": "-"
11 },
12 "placeholder": {
13 "type": "string",
14 "default": "No category"
15 }
16 },
17 "usesContext": ["postId", "postType"],
18 "supports": {
19 "kubio": {
20 "appearanceEffect": true,
21 "default": {
22 "style": {
23 "descendants": {
24 "link": {
25 "margin": {
26 "right": {
27 "value": 10,
28 "unit": "px"
29 },
30 "left": {
31 "value": 10,
32 "unit": "px"
33 }
34 }
35 }
36 }
37 },
38 "props": {}
39 },
40 "elementsEnum": {
41 "CONTAINER": "container",
42 "LINK": "link",
43 "SEPARATOR": "separator",
44 "PLACEHOLDER": "placeholder",
45 "TAGS": "tags"
46 },
47 "elementsByName": {
48 "container": {
49 "wrapper": true,
50 "default": true,
51 "props": {
52 "className": ["kubio-post-categories-container"]
53 }
54 },
55 "link": {
56 "selector": "a"
57 },
58 "separator": {
59 "selector": ".separator"
60 },
61 "placeholder": {
62 "props": {
63 "className": ["kubio-post-categories-placeholder"]
64 }
65 }
66 },
67 "template": {
68 "type": "element",
69 "props": {
70 "name": "container"
71 },
72 "children": [
73 {
74 "type": "element",
75 "props": {
76 "name": "placeholder"
77 }
78 },
79 {
80 "type": "element",
81 "props": {
82 "name": "tags"
83 }
84 }
85 ]
86 }
87 }
88 }
89 }
90