Skip to content
Snippets Groups Projects
Commit a5ada9a3 authored by Rajab Natshah's avatar Rajab Natshah
Browse files

Issue #3474702: Change the 1.1.x branch to support Drupal <= 10.2 for a smoother update process

parent cad0d57b
No related branches found
No related tags found
Loading
name: 'Bootstrap Layout Builder'
description: 'Add Bootstrap Grid support to Layout Builder module.'
type: module
core_version_requirement: ^10.3 || ^11
core_version_requirement: <=10.2
configure: bootstrap_layout_builder.settings
package: 'Layout Builder'
dependencies:
......
......@@ -6,6 +6,6 @@
"description": "Add Bootstrap Grid support to Layout Builder module.",
"require": {
"drupal/bootstrap_styles": "^1.1",
"drupal/core": "^10.3 || ^11"
"drupal/core": "<=10.2"
}
}
......@@ -2,14 +2,14 @@
namespace Drupal\bootstrap_layout_builder\Element;
use Drupal\Core\Render\Element\RenderElementBase;
use Drupal\Core\Render\Element\RenderElement;
/**
* Provides a container wrapper element.
*
* @RenderElement("blb_container")
*/
class Container extends RenderElementBase {
class Container extends RenderElement {
/**
* {@inheritdoc}
......
......@@ -2,14 +2,14 @@
namespace Drupal\bootstrap_layout_builder\Element;
use Drupal\Core\Render\Element\RenderElementBase;
use Drupal\Core\Render\Element\RenderElement;
/**
* Provides a container wapper render element.
* Provides a container wrapper render element.
*
* @RenderElement("blb_container_wrapper")
*/
class ContainerWrapper extends RenderElementBase {
class ContainerWrapper extends RenderElement {
/**
* {@inheritdoc}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment