Skip to content

Commit 00e24e7

Browse files
authored
Release v5.3.2 (#230)
1 parent c62cc1a commit 00e24e7

File tree

10 files changed

+33
-22
lines changed

10 files changed

+33
-22
lines changed

.npmrc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
lockfile-version = 2
2+
registry = 'https://registry.npmjs.org/'

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ If you'd prefer to load the bootstrap-ie11 CSS without JavaScript you could use
3737
The CSS can be loaded via a CDN:
3838

3939
```html
40-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-ie11@5.3.1/css/bootstrap-ie11.min.css" media="all and (-ms-high-contrast: active), (-ms-high-contrast: none)">
40+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-ie11@5.3.2/css/bootstrap-ie11.min.css" media="all and (-ms-high-contrast: active), (-ms-high-contrast: none)">
4141
```
4242

4343
## FAQS

css/bootstrap-ie11.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/bootstrap-ie11.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/bootstrap-ie11.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/bootstrap-ie11.min.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bootstrap-ie11",
3-
"version": "5.3.1",
3+
"version": "5.3.2",
44
"description": "Bootstrap 5 for Internet Explorer 11",
55
"keywords": [
66
"bootstrap",
@@ -47,7 +47,7 @@
4747
"devDependencies": {
4848
"clean-css-cli": "4.3.0",
4949
"npm-run-all": "4.1.5",
50-
"sass": "1.66.1",
50+
"sass": "1.67.0",
5151
"stylelint": "15.10.3",
5252
"stylelint-config-twbs-bootstrap": "11.0.1"
5353
},

scss/bootstrap-ie11.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* Bootstrap for IE11 v5.3.1 (https://github.com/coliff/bootstrap-ie11)
2+
* Bootstrap for IE11 v5.3.2 (https://github.com/coliff/bootstrap-ie11)
33
* Copyright 2023 C.Oliff
44
* Licensed under MIT (https://github.com/coliff/bootstrap-ie11/blob/main/LICENSE)
55
*/

tests/index.html

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
<meta name="viewport" content="width=device-width, initial-scale=1">
88
<title>Bootstrap 5 - IE11 Test</title>
99
<meta name="description" content="Bootstrap 5 for Internet Explorer 11 Test Page">
10-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/css/bootstrap.min.css">
10+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css">
1111
<link rel="stylesheet" href="../css/bootstrap-ie11.css"
1212
media="all and (-ms-high-contrast: active), (-ms-high-contrast: none)">
1313

14-
<script src="https://cdn.jsdelivr.net/npm/jquery@3.7.0/dist/jquery.slim.min.js"></script>
14+
<script src="https://cdn.jsdelivr.net/npm/jquery@3.7.1/dist/jquery.slim.min.js"></script>
1515

1616
<!-- required JavaScript polyfills for IE11 -->
1717
<script nomodule crossorigin="anonymous"
@@ -43,7 +43,7 @@
4343
<nav class="navbar navbar-expand-lg navbar-light bg-light sticky-top fixed-top mb-5" id="nav">
4444
<div class="container">
4545
<a class="navbar-brand" href="#">Bootstrap 5 for IE 11 <small
46-
class="opacity-50 text-muted small fs-6">v5.3.1</small></a>
46+
class="opacity-50 text-muted small fs-6">v5.3.2</small></a>
4747
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent"
4848
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
4949
<span class="navbar-toggler-icon"></span>
@@ -121,6 +121,7 @@
121121
<li><a class="dropdown-item small" href="#clearfix">Clearfix</a></li>
122122
<li><a class="dropdown-item small" href="#color-and-background">Color & background</a></li>
123123
<li><a class="dropdown-item small" href="#colored-links">Colored links</a></li>
124+
<li><a class="dropdown-item small" href="#focus-ring">Focus ring</a></li>
124125
<li><a class="dropdown-item small" href="#ratio">Ratio</a></li>
125126
<li><a class="dropdown-item small" href="#stacks">Stacks</a></li>
126127
<li><a class="dropdown-item small" href="#text-truncation">Text truncation</a></li>
@@ -2421,6 +2422,14 @@ <h3 class="pt-3">Colored links</h3>
24212422
<a href="#" class="link-light">Light link</a>
24222423
<a href="#" class="link-dark">Dark link</a>
24232424

2425+
<hr class="my-5" id="focus-ring">
2426+
2427+
<h3 class="pt-3">Focus ring</h3>
2428+
2429+
<a href="#focus-ring" class="d-inline-flex focus-ring py-1 px-2 text-decoration-none border rounded-2">
2430+
Custom focus ring
2431+
</a>
2432+
24242433
<hr class="my-5" id="ratio">
24252434

24262435
<h3 class="pt-3">Ratio</h3>
@@ -2879,8 +2888,8 @@ <h5 class="pt-3">Text decoration</h5>
28792888

28802889
</main>
28812890

2882-
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/js/bootstrap.bundle.min.js"></script>
2891+
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
28832892

28842893
</body>
28852894

2886-
</html>
2895+
</html>

0 commit comments

Comments
 (0)