diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md
new file mode 100644
index 0000000..3d8d32c
--- /dev/null
+++ b/.github/CONTRIBUTING.md
@@ -0,0 +1,7 @@
+Contributing to Yii2
+====================
+
+- [Report an issue](https://github.com/yiisoft/yii2/blob/master/docs/internals/report-an-issue.md)
+- [Translate documentation or messages](https://github.com/yiisoft/yii2/blob/master/docs/internals/translation-workflow.md)
+- [Give us feedback or start a design discussion](http://www.yiiframework.com/forum/index.php/forum/42-general-discussions-for-yii-20/)
+- [Contribute to the core code or fix bugs](https://github.com/yiisoft/yii2/blob/master/docs/internals/git-workflow.md)
diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml
new file mode 100644
index 0000000..5f5c645
--- /dev/null
+++ b/.github/FUNDING.yml
@@ -0,0 +1,5 @@
+# These are supported funding model platforms
+
+open_collective: yiisoft
+github: [yiisoft]
+tidelift: "packagist/yiisoft/yii2-bootstrap4"
diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md
new file mode 100644
index 0000000..fb58a29
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE.md
@@ -0,0 +1,19 @@
+
+
+### What steps will reproduce the problem?
+
+### What's expected?
+
+### What do you get instead?
+
+
+### Additional info
+
+| Q | A
+| ---------------- | ---
+| Yii vesion |
+| PHP version |
+| Operating system |
diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md
new file mode 100644
index 0000000..968a845
--- /dev/null
+++ b/.github/PULL_REQUEST_TEMPLATE.md
@@ -0,0 +1,7 @@
+| Q | A
+| ------------- | ---
+| Is bugfix? | yes/no
+| New feature? | yes/no
+| Breaks BC? | yes/no
+| Tests pass? | yes/no
+| Fixed issues | comma-separated list of tickets # fixed by the PR, if any
diff --git a/.github/SECURITY.md b/.github/SECURITY.md
new file mode 100644
index 0000000..f713847
--- /dev/null
+++ b/.github/SECURITY.md
@@ -0,0 +1,6 @@
+# Security Policy
+
+Please use the [security issue form](https://www.yiiframework.com/security) to report to us any security issue you find in Yii.
+DO NOT use the issue tracker or discuss it in the public forum as it will cause more damage than help.
+
+Please note that as a non-commerial OpenSource project we are not able to pay bounties at the moment.
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
new file mode 100644
index 0000000..5f8fea2
--- /dev/null
+++ b/.github/workflows/build.yml
@@ -0,0 +1,47 @@
+name: build
+
+on: [push, pull_request]
+
+env:
+ DEFAULT_COMPOSER_FLAGS: "--prefer-dist --no-interaction --no-progress --optimize-autoloader --ansi"
+
+jobs:
+ phpunit:
+ name: PHP ${{ matrix.php }} on ${{ matrix.os }}
+ runs-on: ${{ matrix.os }}
+ strategy:
+ fail-fast: false
+ matrix:
+ os: [ubuntu-latest]
+ php: ['7.4', '8.0']
+
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v2
+ - name: Install PHP
+ uses: shivammathur/setup-php@v2
+ with:
+ php-version: ${{ matrix.php }}
+ - name: Get composer cache directory
+ id: composer-cache
+ run: echo "::set-output name=dir::$(composer config cache-files-dir)"
+ - name: Cache composer dependencies
+ uses: actions/cache@v1
+ with:
+ path: ${{ steps.composer-cache.outputs.dir }}
+ key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
+ restore-keys: ${{ runner.os }}-composer-
+ - name: Install dependencies
+ run: composer update $DEFAULT_COMPOSER_FLAGS
+ - name: Run unit tests with coverage
+ run: vendor/bin/phpunit --verbose --coverage-clover=coverage.clover --colors=always
+ if: matrix.php == '7.4'
+ - name: Run unit tests without coverage
+ run: vendor/bin/phpunit --verbose --colors=always
+ if: matrix.php != '7.4'
+ - name: Upload code coverage
+ run: |
+ wget https://scrutinizer-ci.com/ocular.phar
+ php ocular.phar code-coverage:upload --format=php-clover coverage.clover
+ if: matrix.php == '7.4'
+ continue-on-error: true # if is fork
diff --git a/CHANGELOG.md b/CHANGELOG.md
new file mode 100644
index 0000000..0929951
--- /dev/null
+++ b/CHANGELOG.md
@@ -0,0 +1,6 @@
+Yii Framework 2 bootstrap5 extension Change Log
+==============================================
+
+1.0.0 under development
+-----------------------
+- Initial release
diff --git a/LICENSE.md b/LICENSE.md
new file mode 100644
index 0000000..f6657fb
--- /dev/null
+++ b/LICENSE.md
@@ -0,0 +1,29 @@
+Copyright © 2008 by Yii Software LLC (http://www.yiisoft.com)
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions
+are met:
+
+* Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+* Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in
+ the documentation and/or other materials provided with the
+ distribution.
+* Neither the name of Yii Software LLC nor the names of its
+ contributors may be used to endorse or promote products derived
+ from this software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
+FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
+COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
+INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
+BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
+CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
+ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+POSSIBILITY OF SUCH DAMAGE.
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..e582067
--- /dev/null
+++ b/README.md
@@ -0,0 +1,49 @@
+
+
+
+
+
Twitter Bootstrap 5 Extension for Yii 2
+
+
+
+This is the Twitter Bootstrap extension for [Yii framework 2.0](http://www.yiiframework.com). It encapsulates [Bootstrap 5](http://getbootstrap.com/) components
+and plugins in terms of Yii widgets, and thus makes using Bootstrap components/plugins
+in Yii applications extremely easy.
+
+For license information check the [LICENSE](LICENSE.md)-file.
+
+Documentation is at [docs/guide/README.md](docs/guide/README.md).
+
+[![Latest Stable Version](https://poser.pugx.org/simialbi/yii2-bootstrap5/v/stable.png)](https://packagist.org/packages/simialbi/yii2-bootstrap5)
+[![Total Downloads](https://poser.pugx.org/simialbi/yii2-bootstrap5/downloads.png)](https://packagist.org/packages/simialbi/yii2-bootstrap5)
+[![Build Status](https://github.com/simialbi/yii2-bootstrap5/workflows/build/badge.svg)](https://github.com/simialbi/yii2-bootstrap5/actions)
+
+
+Installation
+------------
+
+The preferred way to install this extension is through [composer](http://getcomposer.org/download/).
+
+Either run
+
+```
+php composer.phar require --prefer-dist simialbi/yii2-bootstrap5
+```
+
+or add
+
+```
+"simialbi/yii2-bootstrap5": "~1.0@dev"
+```
+
+to the require section of your `composer.json` file.
+
+Usage
+----
+
+For example, the following
+single line of code in a view file would render a Bootstrap Progress plugin:
+
+```php
+= yii\bootstrap5\Progress::widget(['percent' => 60, 'label' => 'test']) ?>
+```
diff --git a/composer.json b/composer.json
index 7306979..b71ce7e 100644
--- a/composer.json
+++ b/composer.json
@@ -1,5 +1,5 @@
{
- "name": "mylistryx/yii2-bootstrap5",
+ "name": "simialbi/yii2-bootstrap5",
"description": "The Twitter Bootstrap v5 extension for the Yii framework",
"version": "1.0.0",
"keywords": [
@@ -10,25 +10,29 @@
"type": "yii2-extension",
"license": "BSD-3-Clause",
"support": {
- "source": "https://github.com/mylistryx/yii2-bootstrap45"
+ "source": "https://github.com/simialbi/yii2-bootstrap5"
},
"authors": [
{
"name": "Sergey Zhukovskiy",
"email": "mylistryx@gmail.com",
"homepage": "https://net23.ru/"
+ },
+ {
+ "name": "Simon Karlen",
+ "email": "simi.albi@outlook.com"
}
],
- "minimum-stability": "dev",
+ "minimum-stability": "stable",
"require": {
- "php": "~7.4.0",
- "yiisoft/yii2": "~2.0",
- "npm-asset/bootstrap": "^5.0.0",
- "ext-json": "*"
+ "php": ">=7.4.0",
+ "ext-json": "*",
+ "yiisoft/yii2": "^2.0.42",
+ "npm-asset/bootstrap": "^5.0.0"
},
"require-dev": {
"yiisoft/yii2-coding-standards": "~2.0",
- "cweagans/composer-patches": "^1.7"
+ "phpunit/phpunit": "^7.5.20"
},
"repositories": [
{
@@ -41,6 +45,11 @@
"yii\\bootstrap5\\": "src"
}
},
+ "autoload-dev": {
+ "psr-4": {
+ "yiiunit\\extensions\\bootstrap5\\": "tests"
+ }
+ },
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
diff --git a/docs/guide-de/README.md b/docs/guide-de/README.md
new file mode 100644
index 0000000..0a203d8
--- /dev/null
+++ b/docs/guide-de/README.md
@@ -0,0 +1,30 @@
+Twitter Bootstrap Erweiterung für Yii 2
+=======================================
+
+Diese Erweiterung enthält Unterstützung für das [Bootstrap 4 Framework](http://getbootstrap.com/) (auch bekannt als "Twitter Bootstrap")
+Markup und dessen Komponenten. Bootstrap ist eine exzellentes, reponsives Framework welches den clientseitigen
+Entwicklungsprozess vehement zu verkürzen vermag.
+
+Die Basis von Bootstrap ist unterteilt in folgende 2 Bereiche:
+ - CSS Basics: Grid Layout System, Typography, Helper-Klassen, Responsive Funktionen.
+ - "Ready to use"-Komponenten: Formulare, Menus, Paginationen, Modals, Tabs etc.
+
+Loslegen
+--------
+
+* [Installation](installation.md)
+* [Assets Setup](assets-setup.md)
+* [Basic Usage](basic-usage.md)
+
+Verwendung
+----------
+
+* [Yii widgets](usage-widgets.md)
+* [Html helper](helper-html.md)
+* [Asset Bundles](asset-bundles.md)
+
+Weitere Themen
+--------------
+
+* [Using the .sass files of Bootstrap directly](topics-sass.md)
+* [Migration von yii2-bootstrap](migrating-yii2-bootstrap.md)
diff --git a/docs/guide-de/asset-bundles.md b/docs/guide-de/asset-bundles.md
new file mode 100644
index 0000000..0b3a7db
--- /dev/null
+++ b/docs/guide-de/asset-bundles.md
@@ -0,0 +1,15 @@
+Asset Bundles
+=============
+
+Bootstrap ist eine komplexe Front-End-Lösung, welche CSS, Javascript, Schriften usw. beinhaltet.
+Um Ihnen die flexibelste Kontrolle über die einzelnen Komponenten zu ermöglichen enthält diese Erweiterung verschiedene Asset Bundles.
+
+Das sind:
+- [[yii\bootstrap4\BootstrapAsset|BootstrapAsset]] - enthält nur das hauptsächliche CSS.
+- [[yii\bootstrap4\BootstrapPluginAsset|BootstrapPluginAsset]] - enthält das Javascript. Abhängig von [[yii\bootstrap4\BootstrapAsset]].
+
+Verschiedene Anwendunganforderungen erfordern verschiedene Bundles (bzw. Kombinationen).
+Falls Sie nur auf das CSS angewiesen sind, reicht es wenn Sie [[yii\bootstrap4\BootstrapAsset]] laden.
+Wenn Sie das Javascript verwenden möchten, müssen Sie [[yii\bootstrap4\BootstrapPluginAsset]] auch laden.
+
+> Tipp: Die meisten Widgets laden [[yii\bootstrap4\BootstrapPluginAsset]] automatisch.
diff --git a/docs/guide-de/assets-setup.md b/docs/guide-de/assets-setup.md
new file mode 100644
index 0000000..4c01ac8
--- /dev/null
+++ b/docs/guide-de/assets-setup.md
@@ -0,0 +1,170 @@
+Asset-Konfiguration
+===================
+
+Diese Erweiterung beruht auf [Bower](http://bower.io/) und/oder [NPM](https://www.npmjs.org/) Packages für die Asset Installation.
+Bevor Sie diese Erweiterung einsetzen, sollten Sie entscheiden, auf welche Weise Sie diese Packages installieren möchten.
+
+## Verwendung des asset-packagist Repository
+
+Sie können [asset-packagist.or](https://asset-packagist.org) als Package-Quelle für die Bootstrap-Assets angeben.
+Fügen Sie dazu folgende Zeilen zur `composer.json`-Datei ihres Projekts hinzu:
+
+```json
+"repositories": [
+ {
+ "type": "composer",
+ "url": "https://asset-packagist.org"
+ }
+]
+```
+
+Passen Sie `@npm` und `@bower` in der Konfiguration ihrer Applikation wie folgt an:
+
+```php
+return [
+ //...
+ 'aliases' => [
+ '@bower' => '@vendor/bower-asset',
+ '@npm' => '@vendor/npm-asset',
+ ],
+ //...
+];
+```
+
+
+## Verwendung des composer asset Plugins
+
+Installieren Sie das [composer asset plugin](https://github.com/francoispluchino/composer-asset-plugin/) global durch das Ausführen folgendes Befehls:
+
+```
+composer global require "fxp/composer-asset-plugin:^1.4.0"
+```
+
+Fügen Sie folgende Zeilen zur `composer.json`-Datei ihres Projekts hinzu um das Verzeichnis der Installation von Assets anzupassen
+falls Sie möchten, das Yii sie verwaltet:
+
+```json
+"extra": {
+ "asset-installer-paths": {
+ "npm-asset-library": "vendor/npm",
+ "bower-asset-library": "vendor/bower"
+ }
+}
+```
+
+Daraufhin können Sie den composer install bzw. update Befehl ausführen um die Boostrap Assets zu installieren.
+
+> Warnung: Das Plugin `fxp/composer-asset-plugin` verlangsamt den `composer update` Befehl signifikant verglichen zur
+ "asset-packagist"-Methode.
+
+## Direkte Verwendung des Bower/NPM Clients
+
+Sie kännen die Bootstrap Assets direkt via Bower oder NPM Client installieren.
+Fügen Sie dafür folgende Zeilen zur `package.json`-Datei Ihres Projekts hinzu:
+
+```json
+{
+ ...
+ "dependencies": {
+ "bootstrap": "4.2.1",
+ ...
+ }
+ ...
+}
+```
+
+Fügen Sie zur `composer.json`-Datei Ihres Projekts folgende Zeilen hinzu zum Verhindern von redundanten Bootstrap-Installationen:
+
+```json
+"replace": {
+ "npm-asset/bootstrap": ">=4.2.1"
+},
+```
+
+## Verwendung des CDN
+
+Sie können die Bootstrap Assets vom [offiziellen CDN](https://www.bootstrapcdn.com) laden.
+
+Fügen Sie zur `composer.json`-Datei Ihres Projekts folgende Zeilen hinzu zum Verhindern von redundanten Bootstrap-Installationen:
+
+```json
+"replace": {
+ "npm-asset/bootstrap": ">=4.2.1"
+},
+```
+
+Konfigurieren Sie die 'assetManager'-Komponente wie folgt (überschreibt die Bootstrap Asset mit den CDN Links):
+
+```php
+return [
+ 'components' => [
+ 'assetManager' => [
+ // override bundles to use CDN :
+ 'bundles' => [
+ 'yii\bootstrap4\BootstrapAsset' => [
+ 'sourcePath' => null,
+ 'baseUrl' => 'https://stackpath.bootstrapcdn.com/bootstrap/4.2.1',
+ 'css' => [
+ 'css/bootstrap.min.css'
+ ],
+ ],
+ 'yii\bootstrap4\BootstrapPluginAsset' => [
+ 'sourcePath' => null,
+ 'baseUrl' => 'https://maxcdn.bootstrapcdn.com/bootstrap/4.2.1',
+ 'js' => [
+ 'js/bootstrap.bundle.min.js'
+ ],
+ ],
+ ],
+ ],
+ // ...
+ ],
+ // ...
+];
+```
+
+
+## Kompilieren von den .sass Dateien
+
+Falls Sie den Bootstrap Quelltext direkt anpassen möchten, können Sie das CSS direkt von den Quell *.sass-Dateien kompilieren.
+In diesem Fall macht die Installation der Bootstrap Assets via composer bzw. Bower/NPM kein Sinn, da Sie keine Dateien innerhalb
+des 'vendor'-Verzeichnisses bearbeiten können.
+Sie müssen die Bootstrap-Assets manuell herunterladen und sie irgendwo in Ihrem Projekt platzieren (z.B. 'assets/source/bootstrap').
+
+Fügen Sie zur `composer.json`-Datei Ihres Projekts folgende Zeilen hinzu zum Verhindern von redundanten Bootstrap-Installationen:
+
+```json
+"replace": {
+ "npm-asset/bootstrap": ">=4.2.1"
+},
+```
+
+Konfigurieren Sie die 'assetManager'-Komponente wie folgt (überschreibt die Bootstrap Assets):
+
+```php
+return [
+ 'components' => [
+ 'assetManager' => [
+ // override bundles to use local project files :
+ 'bundles' => [
+ 'yii\bootstrap4\BootstrapAsset' => [
+ 'sourcePath' => '@app/assets/source/bootstrap/dist',
+ 'css' => [
+ YII_ENV_DEV ? 'css/bootstrap.css' : 'css/bootstrap.min.css',
+ ],
+ ],
+ 'yii\bootstrap4\BootstrapPluginAsset' => [
+ 'sourcePath' => '@app/assets/source/bootstrap/dist',
+ 'js' => [
+ YII_ENV_DEV ? 'js/bootstrap.js' : 'js/bootstrap.min.js',
+ ]
+ ],
+ ],
+ ],
+ // ...
+ ],
+ // ...
+];
+```
+
+Nach dem Verändern des Bootstrap Quellcodes, stellen Sie sicher, dass sie neu [kompiliert werden](https://getbootstrap.com/docs/4.1/getting-started/build-tools/), z.B. mittels `npm run dist`.
diff --git a/docs/guide-de/basic-usage.md b/docs/guide-de/basic-usage.md
new file mode 100644
index 0000000..84bcd4c
--- /dev/null
+++ b/docs/guide-de/basic-usage.md
@@ -0,0 +1,17 @@
+Grundlegende Verwendung
+=======================
+
+Yii verpackt die Bootstrap Basics nicht in PHP Code, da dass HTML selbst sehr einfach aufgebaut ist. Sie finden mehr
+Informationen zur Verwendung der Basics unter [bootstrap documentation website](http://getbootstrap.com/css/). Yii bietet
+aber eine einfache Methode zur Einbindung der Bootstrap Assets in Ihre Seite durch das Hinzufügen einer Zeile zu `AppAsset.ph`
+im `@app/assets` Verzeichnis:
+
+```php
+public $depends = [
+ 'yii\web\YiiAsset',
+ 'yii\bootstrap4\BootstrapAsset', // Diese Zeile
+];
+```
+
+Die Verwendung von Bootstrap mittels des Yii Asset Manager erlaubt die Komprimierung und Kombinierung der Bootstrapressourcen
+mit den Applikationsressourcen (falls nötig).
diff --git a/docs/guide-de/helper-html.md b/docs/guide-de/helper-html.md
new file mode 100644
index 0000000..929dfbb
--- /dev/null
+++ b/docs/guide-de/helper-html.md
@@ -0,0 +1,28 @@
+HTML helper
+===========
+
+Bootstrap führt viele konsistente HTML Strukturen ein, welche es erlauben, verschiedene visuelle Effekte einfach zu verwenden.
+Ausschliesslich die komplexesten von ihnen sind mittels Widgets in dieser Erweiterung umgesetzt worden. Der Rest kann manuell
+mittels HTML zusammengestellt werden.
+Einige spezielle Bootstrap Markups sind implementiert im [[\yii\bootstrap4\Html]]-Helper.
+Die [[\yii\bootstrap4\Html]]-Klasse ist eine Erweiterung der regulären [[\yii\helpers\Html]]-Klasse mit Anpassungen zur
+Verwendung mit Bootstrap. Sie bietet verschiedene nützliche Methoden.
+
+Die [[\yii\bootstrap4\Html]]-Klasse erbt von der [[\yii\helpers\Html]]-Klasse und ersetzt diese dadurch vollumfänglich.
+Sie benötigen folglich **nicht** beide in Ihren Views.
+Beispiel:
+
+```php
+
+= Button::widget([
+ 'label' => Html::tag('i', ['class' => 'fas fa-check']) . Html::encode('Save & apply'),
+ 'encodeLabel' => false,
+ 'options' => ['class' => 'btn-primary'],
+]); ?>
+```
+
+> Vorsicht: Verwechseln Sie [[\yii\bootstrap4\Html]] und [[\yii\helpers\Html]] Klassen nicht und bedenken Sie jeweils
+ welche Sie in Ihren Views verwenden.
diff --git a/docs/guide-de/installation.md b/docs/guide-de/installation.md
new file mode 100644
index 0000000..0981aeb
--- /dev/null
+++ b/docs/guide-de/installation.md
@@ -0,0 +1,20 @@
+Installation
+============
+
+## Mittels Composer Package
+
+Der empfohlene Weg zur Installation dieser Erweiterung ist mittels [composer](http://getcomposer.org/download/).
+
+Führen Sie entweder folgenden Befehlt aus
+
+```
+php composer.phar require --prefer-dist yiisoft/yii2-bootstrap4
+```
+
+oder fügen Sie folgendes
+
+```
+"yiisoft/yii2-bootstrap4": "~1.0.0"
+```
+
+zur `require`-Sektion Ihrer `composer.json`-Datei hinzu.
diff --git a/docs/guide-de/migrating-yii2-bootstrap.md b/docs/guide-de/migrating-yii2-bootstrap.md
new file mode 100644
index 0000000..dc92e11
--- /dev/null
+++ b/docs/guide-de/migrating-yii2-bootstrap.md
@@ -0,0 +1,110 @@
+Migration von yii2-bootstrap
+============================
+
+yii2-bootstrap4 ist eine komplette Überarbeitung des Projekts (siehe den Bootstrap 4 von Bootstrap 3 Migrationsguide).
+Die grössten Änderungen finden Sie hier zusammengefasst:
+
+## Allgemein
+
+* Der Namespace ist nun `yii\bootstrap4` anstatt `yii\bootstrap`
+* Es wird das `npm` Paket verwendet anstatt das `bower` Paket
+* Es gibt kein Theme Asset mehr
+* `popper.js` muss nicht mehr extra installiert werden (wird vom Bootstrap JS Bundle mitgeliefert)
+
+## Widgets / Klassen
+
+* [[yii\bootstrap\Collapse|Collapse]] wurde umbenannt zu [[yii\bootstrap4\Accordion|Accordion]]
+* [[yii\bootstrap\BootstrapThemeAsset|BootstrapThemeAsset]] wurde entfernt
+* [[yii\bootstrap4\Breadcrumbs|Breadcrumbs]] wurde hinzugefügt (Bootstrap 4 Implementation von [[yii\widgets\Breadcrumbs]])
+* [[yii\bootstrap4\ButtonToolbar|ButtonToolbar]] wurde hinzugefügt (https://getbootstrap.com/docs/4.3/components/button-group/#button-toolbar)
+
+
+### BaseHtml
+
+Die Methode `icon` wurde entfernt. Sie macht keinen Sinn mehr, da Bootstrap 4 keine Icons mehr mit sich bringt. Eine
+mögliche Alternative wäre das [Font Awesome Widget](https://github.com/rmrevin/yii2-fontawesome) oder aber das
+[Font Awesome Inline Widget](https://github.com/YiiRocks/yii2-fontawesome-inline).
+
+### ActiveField
+
+Folgende Properties wurden umbenannt:
+* `$checkboxTemplate` zu `$checkTemplate`,
+* `$horizontalCheckboxTemplate` zu `$checkHorizontalTemplate`,
+* `$horizontalRadioTemplate` zu `$radioHorizontalTemplate`
+
+Die Properties `$inlineCheckboxListTemplate` und `$inlineRadioListTemplate` wurden entfernt. Dafür gibt es ein neues
+Template mit dem Namen `$checkEnclosedTemplate`. In Bootstrap 4 sind Checkboxen standardmässig nicht mehr von Labeln
+eingeschlossen.
+
+### ActiveForm
+
+Hier wurden die Konstanten [[yii\bootstrap4\ActiveForm::LAYOUT_DEFAULT]], [[yii\bootstrap4\ActiveForm::LAYOUT_HORIZONTAL]]
+und [[yii\bootstrap4\ActiveForm::LAYOUT_INLINE]] eingeführt. Sie sollen die Verwendung der Layout vereinfachen und bei
+allfälligen Änderungen der Werte Folgefehler verhindern.
+
+### Breadcrumbs
+
+Dieses Widget wurde neu eingeführt um die Korrekte Darstellung von Breadcrumbs im Bootstrap 4 Design zu gerwährleisten.
+Es ist vollständig komptibel mit [[yii\widgets\Breadcrumbs]].
+
+### ButtonDropdown
+
+Dieses Widget hat ein neues Property mit Namen `$direction` erhalten. Es ermöglicht die Anzeige des Menüs auf z.B. der
+rechten Seite des Buttons. Des weiteren gibt es die Konstanten [[yii\bootstrap4\ButtonDropdown::DIRECTION_DOWN]],
+[[yii\bootstrap4\ButtonDropdown::DIRECTION_LEFT]], [[yii\bootstrap4\ButtonDropdown::DIRECTION_RIGHT]] und
+[[yii\bootstrap4\ButtonDropdown::DIRECTION_UP]] um die Richtungsselektion zu vereinfachen.
+Es wurde ein weiteres Property eingeführt mit dem Namen `$renderContainer`. Falls dieses auf `false` gestellt wird, wird
+das rendern des das Dropdown umfassenden DIVs verhindert.
+
+Folgende Properties wurden umbenannt:
+* `$containerOptions` zu `$options`,
+* `$options` zu `$buttonOptions`
+
+### ButtonToolbar
+
+Dieses Widget wurde eingeführt um einfach Button-Toolbars zu erstellen. Weitere Informationen erhalten Sie unter
+https://getbootstrap.com/docs/4.3/components/button-group/#button-toolbar.
+
+### Carousel
+
+Dieses Widget hat das Property `$crossfade` erhalten. Es erlaubt das Ändern der Animation zwischen den Slides auf ein Fade,
+anstatt eines Slided wenn es auf `true` gestellt wird.
+
+### LinkPager
+
+Dieses neue Widget repräsentiert die Bootstrap Version von [[yii\widgets\LinkPager]]. Es rendert eine Pagination im Bootstrap
+Stil. Weitere Informationen erhalten Sie unter https://getbootstrap.com/docs/4.3/components/pagination/.
+
+### Modal
+
+Folgende Properties wurden umbenannt:
+* `$header` zu `$title`,
+* `$headerOptions` zu `$titleOptions`
+
+Des Weiteren ist es nicht mehr von nöten, beim `$title` die Titel-Tags `