| 1 |
{ |
| 2 |
"apiVersion": 3, |
| 3 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 4 |
"name": "blockenberg/taxonomy-list", |
| 5 |
"title": "Taxonomy List", |
| 6 |
"category": "bkbg-blog", |
| 7 |
"icon": "tag", |
| 8 |
"description": "Display categories, tags or custom taxonomy as a styled list, grid, chips or cards \u2014 with icons, counts and links.", |
| 9 |
"keywords": [ |
| 10 |
"taxonomy", |
| 11 |
"category", |
| 12 |
"tag", |
| 13 |
"list", |
| 14 |
"filter", |
| 15 |
"navigation", |
| 16 |
"menu", |
| 17 |
"terms", |
| 18 |
"archive" |
| 19 |
], |
| 20 |
"textdomain": "blockenberg", |
| 21 |
"editorScript": "bkbg-taxonomy-list-editor", |
| 22 |
"editorStyle": "bkbg-taxonomy-list-style", |
| 23 |
"style": "bkbg-taxonomy-list-style", |
| 24 |
"viewScript": "bkbg-taxonomy-list-frontend", |
| 25 |
"supports": { |
| 26 |
"html": false, |
| 27 |
"anchor": true, |
| 28 |
"className": true, |
| 29 |
"align": [ |
| 30 |
"wide", |
| 31 |
"full" |
| 32 |
] |
| 33 |
}, |
| 34 |
"attributes": { |
| 35 |
"items": { |
| 36 |
"type": "array", |
| 37 |
"default": [ |
| 38 |
{ |
| 39 |
"id": "t1", |
| 40 |
"name": "Design", |
| 41 |
"url": "#", |
| 42 |
"icon": "\ud83c\udfa8", |
| 43 |
"iconType": "custom-char", |
| 44 |
"iconDashicon": "", |
| 45 |
"iconImageUrl": "", |
| 46 |
"count": 12 |
| 47 |
}, |
| 48 |
{ |
| 49 |
"id": "t2", |
| 50 |
"name": "Development", |
| 51 |
"url": "#", |
| 52 |
"icon": "\ud83d\udcbb", |
| 53 |
"iconType": "custom-char", |
| 54 |
"iconDashicon": "", |
| 55 |
"iconImageUrl": "", |
| 56 |
"count": 8 |
| 57 |
}, |
| 58 |
{ |
| 59 |
"id": "t3", |
| 60 |
"name": "Marketing", |
| 61 |
"url": "#", |
| 62 |
"icon": "\ud83d\udce2", |
| 63 |
"iconType": "custom-char", |
| 64 |
"iconDashicon": "", |
| 65 |
"iconImageUrl": "", |
| 66 |
"count": 5 |
| 67 |
}, |
| 68 |
{ |
| 69 |
"id": "t4", |
| 70 |
"name": "Business", |
| 71 |
"url": "#", |
| 72 |
"icon": "\ud83d\udcbc", |
| 73 |
"iconType": "custom-char", |
| 74 |
"iconDashicon": "", |
| 75 |
"iconImageUrl": "", |
| 76 |
"count": 3 |
| 77 |
}, |
| 78 |
{ |
| 79 |
"id": "t5", |
| 80 |
"name": "Lifestyle", |
| 81 |
"url": "#", |
| 82 |
"icon": "\ud83c\udf3f", |
| 83 |
"iconType": "custom-char", |
| 84 |
"iconDashicon": "", |
| 85 |
"iconImageUrl": "", |
| 86 |
"count": 7 |
| 87 |
} |
| 88 |
] |
| 89 |
}, |
| 90 |
"layout": { |
| 91 |
"type": "string", |
| 92 |
"default": "list" |
| 93 |
}, |
| 94 |
"columns": { |
| 95 |
"type": "number", |
| 96 |
"default": 2 |
| 97 |
}, |
| 98 |
"showCount": { |
| 99 |
"type": "boolean", |
| 100 |
"default": true |
| 101 |
}, |
| 102 |
"showIcon": { |
| 103 |
"type": "boolean", |
| 104 |
"default": true |
| 105 |
}, |
| 106 |
"showChevron": { |
| 107 |
"type": "boolean", |
| 108 |
"default": true |
| 109 |
}, |
| 110 |
"countPosition": { |
| 111 |
"type": "string", |
| 112 |
"default": "badge" |
| 113 |
}, |
| 114 |
"linkItems": { |
| 115 |
"type": "boolean", |
| 116 |
"default": true |
| 117 |
}, |
| 118 |
"linkTarget": { |
| 119 |
"type": "string", |
| 120 |
"default": "_self" |
| 121 |
}, |
| 122 |
"itemTypo": { |
| 123 |
"type": "object", |
| 124 |
"default": {} |
| 125 |
}, |
| 126 |
"borderRadius": { |
| 127 |
"type": "number", |
| 128 |
"default": 8 |
| 129 |
}, |
| 130 |
"gap": { |
| 131 |
"type": "number", |
| 132 |
"default": 8 |
| 133 |
}, |
| 134 |
"padding": { |
| 135 |
"type": "number", |
| 136 |
"default": 14 |
| 137 |
}, |
| 138 |
"maxWidth": { |
| 139 |
"type": "number", |
| 140 |
"default": 0 |
| 141 |
}, |
| 142 |
"itemBg": { |
| 143 |
"type": "string", |
| 144 |
"default": "#ffffff" |
| 145 |
}, |
| 146 |
"itemBgHover": { |
| 147 |
"type": "string", |
| 148 |
"default": "#f1f5f9" |
| 149 |
}, |
| 150 |
"itemColor": { |
| 151 |
"type": "string", |
| 152 |
"default": "#1e293b" |
| 153 |
}, |
| 154 |
"itemColorHover": { |
| 155 |
"type": "string", |
| 156 |
"default": "#2563eb" |
| 157 |
}, |
| 158 |
"countBg": { |
| 159 |
"type": "string", |
| 160 |
"default": "#e2e8f0" |
| 161 |
}, |
| 162 |
"countColor": { |
| 163 |
"type": "string", |
| 164 |
"default": "#475569" |
| 165 |
}, |
| 166 |
"iconColor": { |
| 167 |
"type": "string", |
| 168 |
"default": "#6b7280" |
| 169 |
}, |
| 170 |
"borderColor": { |
| 171 |
"type": "string", |
| 172 |
"default": "#e2e8f0" |
| 173 |
}, |
| 174 |
"accentColor": { |
| 175 |
"type": "string", |
| 176 |
"default": "#2563eb" |
| 177 |
} |
| 178 |
} |
| 179 |
} |