wp/wp-includes/blocks/code/block.json
changeset 21 48c4eec2b7e6
parent 19 3d72ae0968f4
equal deleted inserted replaced
20:7b1b88e27a20 21:48c4eec2b7e6
     1 {
     1 {
     2 	"$schema": "https://schemas.wp.org/trunk/block.json",
     2 	"$schema": "https://schemas.wp.org/trunk/block.json",
     3 	"apiVersion": 2,
     3 	"apiVersion": 3,
     4 	"name": "core/code",
     4 	"name": "core/code",
     5 	"title": "Code",
     5 	"title": "Code",
     6 	"category": "text",
     6 	"category": "text",
     7 	"description": "Display code snippets that respect your spacing and tabs.",
     7 	"description": "Display code snippets that respect your spacing and tabs.",
     8 	"textdomain": "default",
     8 	"textdomain": "default",
     9 	"attributes": {
     9 	"attributes": {
    10 		"content": {
    10 		"content": {
    11 			"type": "string",
    11 			"type": "rich-text",
    12 			"source": "html",
    12 			"source": "rich-text",
    13 			"selector": "code"
    13 			"selector": "code",
       
    14 			"__unstablePreserveWhiteSpace": true
    14 		}
    15 		}
    15 	},
    16 	},
    16 	"supports": {
    17 	"supports": {
       
    18 		"align": [ "wide" ],
    17 		"anchor": true,
    19 		"anchor": true,
    18 		"typography": {
    20 		"typography": {
    19 			"fontSize": true,
    21 			"fontSize": true,
    20 			"lineHeight": true,
    22 			"lineHeight": true,
       
    23 			"__experimentalFontFamily": true,
       
    24 			"__experimentalFontWeight": true,
    21 			"__experimentalFontStyle": true,
    25 			"__experimentalFontStyle": true,
    22 			"__experimentalFontWeight": true,
    26 			"__experimentalTextTransform": true,
       
    27 			"__experimentalTextDecoration": true,
    23 			"__experimentalLetterSpacing": true,
    28 			"__experimentalLetterSpacing": true,
    24 			"__experimentalTextTransform": true,
       
    25 			"__experimentalDefaultControls": {
    29 			"__experimentalDefaultControls": {
    26 				"fontSize": true
    30 				"fontSize": true
    27 			}
    31 			}
    28 		},
    32 		},
    29 		"spacing": {
    33 		"spacing": {
    30 			"margin": [ "top", "bottom" ],
    34 			"margin": [ "top", "bottom" ],
    31 			"padding": true
    35 			"padding": true,
       
    36 			"__experimentalDefaultControls": {
       
    37 				"margin": false,
       
    38 				"padding": false
       
    39 			}
    32 		},
    40 		},
    33 		"__experimentalBorder": {
    41 		"__experimentalBorder": {
    34 			"radius": true,
    42 			"radius": true,
    35 			"color": true,
    43 			"color": true,
    36 			"width": true,
    44 			"width": true,
    46 			"gradients": true,
    54 			"gradients": true,
    47 			"__experimentalDefaultControls": {
    55 			"__experimentalDefaultControls": {
    48 				"background": true,
    56 				"background": true,
    49 				"text": true
    57 				"text": true
    50 			}
    58 			}
       
    59 		},
       
    60 		"interactivity": {
       
    61 			"clientNavigation": true
    51 		}
    62 		}
    52 	},
    63 	},
    53 	"style": "wp-block-code"
    64 	"style": "wp-block-code"
    54 }
    65 }