Releases: techfromsage/bootstrap-theme
Releases · techfromsage/bootstrap-theme
2.0.1
2.0.0
You'll want to pay attention to how you are consuming Bootstrap v5. Previously, you could get away with using the bootstrap-theme
package alone. Now you will need to install Bootstrap v5 and this package, before configuring a stylesheet per Bootstrap instructions.
What's Changed
- BREAKING CHANGE: Move Talis customisations to own partial by @danielmatthew in #17
Full Changelog: v1.3.3...v2.0.0
1.3.3
Manual release to include .o-list--striped
util: apply it to a list in order to receive striped rows behind the list children.
1.3.2
1.3.2 (2022-01-06)
Bug Fixes
- table: monkey patch top table border (827eae1)
Full Changelog: v1.3.1...v1.3.2
1.3.1
What's Changed
- docs(Otis): add Otis examples by @danielmatthew in #14
- fix(pagination): adjust default sizing by @danielmatthew in #15
Full Changelog: v1.3.0...v1.3.1
1.3.0
1.2.2
1.2.1
Full Changelog: v1.2.0...v1.2.1
1.2.0
The Confirmation Dialog[ue] Release
The modal is dead; long live the modal!
Until we phase out the old style modals, apply .o-confirmation-modal
to your .modal
. Don't forget to add a whizzy .modal-image
to the top of the display.
<div class="modal o-confirmation-modal fade" id="confirmation-modal" tabindex="-1" role="dialog" aria-labelledby="confirmation-label" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<img src="{{ '/assets/img/discard.svg' | url }}" class="modal-image" alt="" width="149" height="158" />
<div class="modal-header">
<h2 class="modal-title" id="confirmation-label">Are you sure?</h2>
</div>
<div class="modal-body">
<p>
You will lose your unsaved data.
</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-lg btn-danger" data-bs-dismiss="modal">
Yes
</button>
<button type="button" class="btn btn-lg btn-default">
Cancel
</button>
</div>
</div>
<!-- /.modal-content -->
</div>
<!-- /.modal-dialog -->
</div>
1.2.0 (2021-10-06)
Features
- add confirmation modal (9d92b69)