@unlk/keymaster 1.4.3 → 1.4.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +13 -0
- package/dist/css/keymaster.css +10 -1
- package/dist/css/keymaster.css.map +1 -1
- package/dist/css/keymaster.min.css +2 -2
- package/dist/css/keymaster.min.css.map +1 -1
- package/dist/js/keymaster.js +69 -53
- package/dist/js/keymaster.js.map +1 -1
- package/dist/js/keymaster.min.js +14 -14
- package/dist/js/keymaster.min.js.map +1 -1
- package/js/bootstrap.js +1 -0
- package/js/carousel-caption.js +5 -26
- package/js/carousel-height.js +56 -0
- package/js/datepicker.js +1 -1
- package/js/video-modal.js +18 -27
- package/package.json +4 -4
- package/scss/theme/_carousel.scss +4 -0
- package/scss/theme/_version.scss +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,19 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [1.4.5] - 2026-04-03
|
|
6
|
+
|
|
7
|
+
### Update
|
|
8
|
+
- Stylelint rules
|
|
9
|
+
|
|
10
|
+
## [1.4.4] - 2026-04-03
|
|
11
|
+
|
|
12
|
+
### Add
|
|
13
|
+
- Smooth Carousel height transition
|
|
14
|
+
|
|
15
|
+
### Update
|
|
16
|
+
- Carousel and Video Modal to align with native bootstrap functions
|
|
17
|
+
|
|
5
18
|
## [1.4.3] - 2026-03-19
|
|
6
19
|
|
|
7
20
|
### Add
|
package/dist/css/keymaster.css
CHANGED
|
@@ -21866,7 +21866,7 @@
|
|
|
21866
21866
|
}
|
|
21867
21867
|
|
|
21868
21868
|
/*!
|
|
21869
|
-
* Keymaster v1.4.
|
|
21869
|
+
* Keymaster v1.4.5 (https://keymaster.unlock.com)
|
|
21870
21870
|
* Copyright 2022-2025 Unlk Developers
|
|
21871
21871
|
* Licensed under MIT
|
|
21872
21872
|
*/
|
|
@@ -36653,6 +36653,15 @@ textarea.form-control-lg {
|
|
|
36653
36653
|
--bs-badge-font-size: 0.75em;
|
|
36654
36654
|
}
|
|
36655
36655
|
|
|
36656
|
+
.carousel-inner {
|
|
36657
|
+
transition: height 0.6s ease;
|
|
36658
|
+
}
|
|
36659
|
+
@media (prefers-reduced-motion: reduce) {
|
|
36660
|
+
.carousel-inner {
|
|
36661
|
+
transition: none;
|
|
36662
|
+
}
|
|
36663
|
+
}
|
|
36664
|
+
|
|
36656
36665
|
.carousel-item img {
|
|
36657
36666
|
border-radius: 1rem;
|
|
36658
36667
|
}
|