Archive 2026-03 11

ISO week view.

airfleet/airfleet-nexus-plugin

Release 0.4.0

View on GitHub

Added

  • Added responsive module providing responsive breakpoints support: xs, sm, md, lg, xl, xxl, xxxl, 2k, 4k with customizable ranges via airfleet/responsive/breakpoints filter
  • responsive: Added responsive media query CSS generation with automatic print to page head. See inc/Modules/Responsive/PrintCssToHead.php
  • responsive: Added comprehensive module documentation in docs/modules/responsive.md with breakpoint configuration, CSS generation, customization examples, and warnings about changing breakpoints on live sites
  • Added support-responsive module providing global responsive visibility controls for all Gutenberg blocks that support custom CSS classes. See inc/Modules/Blocks/SupportResponsive/SupportResponsive.php
  • support-responsive: Added Inspector Controls UI panel in the block settings for selecting responsive visibility per breakpoint
  • support-responsive: Added automatic CSS class injection for static blocks via blocks.getSaveContent.extraProps filter
  • support-responsive: Added dynamic block support via WP_Block_Supports API for server-side rendering, so we can output CSS classes in the dynamic blocks wrappers using gsupport-responsive: et_block_wrapper_attributes() function.
  • support-responsive: Added editor indicator and opacity for blocks with active responsive visibility control, when the block is not selected
  • support-responsive: Added comprehensive module documentation in docs/modules/blocks/support-responsive.md with editor control architecture, usage guide, and best practices

Fixed

  • Fixed webpack.config.js bug. Previously, if we had index.js and index.scss in the same folder in src/modules/{folder}, only the index.scss file would appear in the build folder. The index.js was missing. Now we can have both files in the same folder and they will be compiled accordingly.