Skip to content

Commit

Permalink
Release v5.3.2 (#230)
Browse files Browse the repository at this point in the history
  • Loading branch information
coliff committed Sep 18, 2023
1 parent c62cc1a commit 00e24e7
Show file tree
Hide file tree
Showing 10 changed files with 33 additions and 22 deletions.
2 changes: 2 additions & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
lockfile-version = 2
registry = 'https://registry.npmjs.org/'
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ If you'd prefer to load the bootstrap-ie11 CSS without JavaScript you could use
The CSS can be loaded via a CDN:

```html
<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)">
<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)">
```

## FAQS
Expand Down
2 changes: 1 addition & 1 deletion css/bootstrap-ie11.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion css/bootstrap-ie11.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion css/bootstrap-ie11.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion css/bootstrap-ie11.min.css.map

Large diffs are not rendered by default.

18 changes: 9 additions & 9 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bootstrap-ie11",
"version": "5.3.1",
"version": "5.3.2",
"description": "Bootstrap 5 for Internet Explorer 11",
"keywords": [
"bootstrap",
Expand Down Expand Up @@ -47,7 +47,7 @@
"devDependencies": {
"clean-css-cli": "4.3.0",
"npm-run-all": "4.1.5",
"sass": "1.66.1",
"sass": "1.67.0",
"stylelint": "15.10.3",
"stylelint-config-twbs-bootstrap": "11.0.1"
},
Expand Down
2 changes: 1 addition & 1 deletion scss/bootstrap-ie11.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* Bootstrap for IE11 v5.3.1 (https://github.com/coliff/bootstrap-ie11)
* Bootstrap for IE11 v5.3.2 (https://github.com/coliff/bootstrap-ie11)
* Copyright 2023 C.Oliff
* Licensed under MIT (https://github.com/coliff/bootstrap-ie11/blob/main/LICENSE)
*/
Expand Down
19 changes: 14 additions & 5 deletions tests/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Bootstrap 5 - IE11 Test</title>
<meta name="description" content="Bootstrap 5 for Internet Explorer 11 Test Page">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="../css/bootstrap-ie11.css"
media="all and (-ms-high-contrast: active), (-ms-high-contrast: none)">

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

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

<hr class="my-5" id="focus-ring">

<h3 class="pt-3">Focus ring</h3>

<a href="#focus-ring" class="d-inline-flex focus-ring py-1 px-2 text-decoration-none border rounded-2">
Custom focus ring
</a>

<hr class="my-5" id="ratio">

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

</main>

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

</body>

</html>
</html>

0 comments on commit 00e24e7

Please sign in to comment.