Yii Bootstrap5 1.2
Yii Bootstrap 5 version 1.2.0 was released.
In this version:
- Add
tabIndex()method toButtonwidget - Raise
yiisoft/htmlversion to^3.13 || ^4.0 - Fix
Collapsere-encoding content already managed byToggler
Yii Bootstrap 5 version 1.2.0 was released.
In this version:
tabIndex() method to Button widgetyiisoft/html version to ^3.13 || ^4.0Collapse re-encoding content already managed by TogglerBootstrap 5 version 1.1.0 was released.
In this version:
Nav::activateParents() that makes parent dropdown active when one of its child items is activeDropdown::togglerVariant() to be null, avoiding it setting a variant classvisible to Dropdown and DropdownItemnavId() method to NavBar widgetFirst stable release of yiisoft/bootstrap5 package was tagged. The package presents Bootstrap 5 UI framework in terms of Yii widgets allowing easy usage in PHP templates, theming and more.
<?php
use Yiisoft\Bootstrap5\Carousel;
use Yiisoft\Bootstrap5\CarouselItem;
use Yiisoft\Html\Tag\Div;
use Yiisoft\Html\Tag\H2;
use Yiisoft\Html\Tag\P;
?>
<?= Carousel::widget()
->id('carouselExampleOnlyText')
->items(
CarouselItem::to(
Div::tag()
->addClass('bg-primary text-white p-5 text-center')
->addContent(
H2::tag()->content('Title 1'),
P::tag()->content('This is the first slide with text.'),
),
),
CarouselItem::to(
Div::tag()
->addClass('bg-success text-white p-5 text-center')
->addContent(
H2::tag()->content('Title 2'),
P::tag()->content('This is the second slide with text.'),
),
),
CarouselItem::to(
Div::tag()
->addClass('bg-danger text-white p-5 text-center')
->addContent(
H2::tag()->content('Title 3'),
P::tag()->content('This is the third slide with text.'),
),
),
);
Check more examples in the package user guide.
Yii2 extensions with pending releases were tagged:
Bootstrap 4 extension version 2.0.11 was released. In this version:
ToggleButtonGroup.yii\bootstrap4\BaseHtml::$normalizeClassAttribute is set to true by default to make the package BC with Yii 2.0.44.See CHANGELOG for details.
We are very pleased to announce the release of Bootstrap extension version 2.0.11. This version adds support of custom templates for Tab headers and panes.
See the CHANGELOG for details.
First version of Bootstrap 5 extension for Yii 2 was released. It is similar to Bootstrap and Bootstrap 4 extensions and is meant to support newer Bootstrap CSS framework version.
Documentation is available in extension repository.
Big thanks to simialbi for preparing the package.
Bootstrap 4 extension version 2.0.10 was released.
This version fixes a bug and adds Toast widget.
See CHANGELOG for details.
Bootstrap 4 extension version 2.0.9 was released.
This version:
centerVertical, scrollable, dialogOptions options to Modal and role="document" to modal-dialog element.Accordion to expand a certain card.See CHANGELOG for details.
Bootstrap 4 extension version 2.0.8 was released fixing non-functional headerOptions in Tabs.
See CHANGELOG for details.
Bootstrap 4 extension version 2.0.7 was released. This version fixes a bug in displaying error message for checkbox and radio lists and allowing to override all CSS classes via widget factory.
Thanks to @simialbi for taking care of the extension!
See CHANGELOG for details.
Bootstrap 4 extension version 2.0.6 was released. In this version there are two changes.
First, documentation on how to migrate from Bootstrap 3 was added.
Second, simplified syntax for progress bars that was present in Bootstrap 3 was brought back:
Bootstrap 4 extension version 2.0.5 was released. In this release ActiveField got two options, radioTemplate and radioHorizontalTemplate. Previously radio buttons were sharing templates with checkbox templates. Another changes is that both radios and checkboxes are custom-styled by default.
See CHANGELOG for details.
Bootstrap 4 extension version 2.0.4 was released. In this release two bugs were fixed.
See CHANGELOG for details.
Note:
activateContaineroption forNavintroduced in 2.0.3 became obsolete and it has therefore been deleted. Please make sure you are not using it. If you are, remove it from your code.
Bootstrap 4 extension version 2.0.3 was released. In this release four bugs were fixed. Additionally:
Modal::SIZE_EXTRA_LARGE constant was addedNav, Dropdown and TabsSee CHANGELOG for details.
Thanks to Thoulah and simialbi for taking care of the extension.
We are very pleased to announce the release of Bootstrap 4 extension version 2.0.2. In this release progress widget was fixed to work properly with Russian locale and Pagination widget was added.
See CHANGELOG for details.
We are very pleased to announce the release of Bootstrap extension version 2.0.10.
See the CHANGELOG for details.
We are very pleased to announce the release of Bootstrap 4 extension version 2.0.1. There are five bugs fixed found since initial release.
We are very pleased to announce the release of Bootstrap extension version 2.0.9 which updates asset constraint to use Bootstrap 3.4.x.
We are very pleased to announce the first stable release of Bootstrap 4 extension version 2.0.0 that adds assets and widgets for Bootstrap 4.
The guide is available at the website.