Kairat Jenishev
Kairat Jenishev
I'm tired to "fetch updates from Bower" manually every-time 😫
At the moment the latest release is `5.3.3`: [npm-asset/bootstrap](https://asset-packagist.org/package/npm-asset/bootstrap), which is match with Bootstrap's latest release. (The latest one for `bower-asset/bootstrap` is still `v5.3.0-alpha1`)
How about this: ```php class CallbackDependency extends Dependency { // ... public function __serialize() { return get_class_vars(self::class); } } ``` which will return ``` O:30:"yii\caching\CallbackDependency":3:{s:8:"callback";N;s:4:"data";N;s:8:"reusable";b:0;} ``` And yeah, gotta to...
Just FYI guys, The following lines https://github.com/yiisoft/yii2-bootstrap5/blob/bd19a9d413a5778f09ec6f8e2fe8105cd4bf11d6/src/ButtonDropdown.php#L139 https://github.com/yiisoft/yii2-bootstrap5/blob/bd19a9d413a5778f09ec6f8e2fe8105cd4bf11d6/src/Button.php#L60 generates ```js (new bootstrap.Button('#w1-button', {})); (new bootstrap.Dropdown('#w1-button', {})); ``` which causes "Bootstrap doesn't allow more than one instance per element. Bound instance:...