Changeset 55175 for trunk/src/wp-includes/class-wp-theme-json.php
- Timestamp:
- 02/01/2023 04:13:49 PM (3 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/class-wp-theme-json.php (modified) (8 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-theme-json.php
r55172 r55175 193 193 * `--wp--style--root--padding-*`, and `box-shadow` properties, 194 194 * removed the `--wp--style--block-gap` property. 195 * @since 6.2.0 Added `outline-*` properties.195 * @since 6.2.0 Added `outline-*`, and `min-height` properties. 196 196 * 197 197 * @var array … … 232 232 'margin-bottom' => array( 'spacing', 'margin', 'bottom' ), 233 233 'margin-left' => array( 'spacing', 'margin', 'left' ), 234 'min-height' => array( 'dimensions', 'minHeight' ), 234 235 'outline-color' => array( 'outline', 'color' ), 235 236 'outline-offset' => array( 'outline', 'offset' ), … … 294 295 * @since 6.0.0 Added `color.defaultDuotone`. 295 296 * @since 6.1.0 Added `layout.definitions` and `useRootPaddingAwareAlignments`. 297 * @since 6.2.0 Added `dimensions.minHeight`. 296 298 * @var array 297 299 */ … … 320 322 ), 321 323 'custom' => null, 324 'dimensions' => array( 325 'minHeight' => null, 326 ), 322 327 'layout' => array( 323 328 'contentSize' => null, … … 359 364 * added new property `shadow`, 360 365 * updated `blockGap` to be allowed at any level. 361 * @since 6.2.0 Added `outline` properties.366 * @since 6.2.0 Added `outline`, and `minHeight` properties. 362 367 * 363 368 * @var array … … 378 383 'gradient' => null, 379 384 'text' => null, 385 ), 386 'dimensions' => array( 387 'minHeight' => null, 380 388 ), 381 389 'filter' => array( … … 491 499 * 492 500 * @since 6.0.0 501 * @since 6.2.0 Added `dimensions.minHeight`. 493 502 * @var array 494 503 */ … … 499 508 array( 'border', 'width' ), 500 509 array( 'color', 'link' ), 510 array( 'dimensions', 'minHeight' ), 501 511 array( 'spacing', 'blockGap' ), 502 512 array( 'spacing', 'margin' ),
Note: See TracChangeset
for help on using the changeset viewer.