| 1 |
{ |
| 2 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 |
"apiVersion": 3, |
| 4 |
"name": "polylang/navigation-language-switcher", |
| 5 |
"version": "3.8", |
| 6 |
"title": "Navigation Language Switcher", |
| 7 |
"category": "design", |
| 8 |
"parent": [ "core/navigation" ], |
| 9 |
"description": "Language switcher suitable for navigation.", |
| 10 |
"example": {}, |
| 11 |
"attributes": { |
| 12 |
"dropdown": { |
| 13 |
"type": "boolean", |
| 14 |
"default": 0 |
| 15 |
}, |
| 16 |
"show_names": { |
| 17 |
"type": "boolean", |
| 18 |
"default": 1 |
| 19 |
}, |
| 20 |
"show_flags": { |
| 21 |
"type": "boolean", |
| 22 |
"default": 0 |
| 23 |
}, |
| 24 |
"force_home": { |
| 25 |
"type": "boolean", |
| 26 |
"default": 0 |
| 27 |
}, |
| 28 |
"hide_current": { |
| 29 |
"type": "boolean", |
| 30 |
"default": 0 |
| 31 |
}, |
| 32 |
"hide_if_no_translation": { |
| 33 |
"type": "boolean", |
| 34 |
"default": 0 |
| 35 |
}, |
| 36 |
"className": { |
| 37 |
"type": "string", |
| 38 |
"default": "" |
| 39 |
} |
| 40 |
}, |
| 41 |
"usesContext": [ |
| 42 |
"textColor", |
| 43 |
"customTextColor", |
| 44 |
"backgroundColor", |
| 45 |
"customBackgroundColor", |
| 46 |
"overlayTextColor", |
| 47 |
"customOverlayTextColor", |
| 48 |
"overlayBackgroundColor", |
| 49 |
"customOverlayBackgroundColor", |
| 50 |
"fontSize", |
| 51 |
"customFontSize", |
| 52 |
"showSubmenuIcon", |
| 53 |
"maxNestingLevel", |
| 54 |
"openSubmenusOnClick", |
| 55 |
"style", |
| 56 |
"isResponsive", |
| 57 |
"submenuVisibility" |
| 58 |
], |
| 59 |
"supports": { |
| 60 |
"contentRole": true |
| 61 |
}, |
| 62 |
"textdomain": "polylang", |
| 63 |
"editorScript": "pll_blocks", |
| 64 |
"editorStyle": "pll-navigation-language-switcher-editor-style" |
| 65 |
} |
| 66 |
|