@unlk/keymaster 1.4.3 → 1.4.6
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 +21 -0
- package/dist/css/keymaster.css +15 -8
- 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 +16 -5
- package/react/index.js +4 -0
- package/react/use-carousel-caption.js +24 -0
- package/react/use-carousel-height.js +39 -0
- package/react/use-datepicker.js +33 -0
- package/react/use-video-modal.js +132 -0
- package/scss/theme/_carousel.scss +18 -14
- package/scss/theme/_version.scss +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,27 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [1.4.6] - 2026-04-08
|
|
6
|
+
|
|
7
|
+
### Update
|
|
8
|
+
- Carousel Caption styles
|
|
9
|
+
|
|
10
|
+
### Add
|
|
11
|
+
- React hooks for Carousel Caption, Carousel Height, Datepicker, and Video Modal
|
|
12
|
+
|
|
13
|
+
## [1.4.5] - 2026-04-03
|
|
14
|
+
|
|
15
|
+
### Update
|
|
16
|
+
- Stylelint rules
|
|
17
|
+
|
|
18
|
+
## [1.4.4] - 2026-04-03
|
|
19
|
+
|
|
20
|
+
### Add
|
|
21
|
+
- Smooth Carousel height transition
|
|
22
|
+
|
|
23
|
+
### Update
|
|
24
|
+
- Carousel and Video Modal to align with native bootstrap functions
|
|
25
|
+
|
|
5
26
|
## [1.4.3] - 2026-03-19
|
|
6
27
|
|
|
7
28
|
### 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.6 (https://keymaster.unlock.com)
|
|
21870
21870
|
* Copyright 2022-2025 Unlk Developers
|
|
21871
21871
|
* Licensed under MIT
|
|
21872
21872
|
*/
|
|
@@ -32240,7 +32240,7 @@ textarea.form-control-lg {
|
|
|
32240
32240
|
border-radius: var(--bs-border-radius-xxl) !important;
|
|
32241
32241
|
}
|
|
32242
32242
|
|
|
32243
|
-
.rounded-circle, .carousel-indicators [data-bs-target] {
|
|
32243
|
+
.rounded-circle, .carousel-controls .carousel-indicators [data-bs-target] {
|
|
32244
32244
|
border-radius: 50% !important;
|
|
32245
32245
|
}
|
|
32246
32246
|
|
|
@@ -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
|
}
|
|
@@ -36676,23 +36685,21 @@ textarea.form-control-lg {
|
|
|
36676
36685
|
display: flex;
|
|
36677
36686
|
justify-content: end;
|
|
36678
36687
|
}
|
|
36679
|
-
|
|
36680
|
-
.carousel-control-
|
|
36681
|
-
.carousel-control-next {
|
|
36688
|
+
.carousel-controls .carousel-control-prev,
|
|
36689
|
+
.carousel-controls .carousel-control-next {
|
|
36682
36690
|
position: unset;
|
|
36683
36691
|
width: -moz-fit-content;
|
|
36684
36692
|
width: fit-content;
|
|
36685
36693
|
padding: 0.375rem;
|
|
36686
36694
|
}
|
|
36687
|
-
|
|
36688
|
-
.carousel-indicators {
|
|
36695
|
+
.carousel-controls .carousel-indicators {
|
|
36689
36696
|
position: unset;
|
|
36690
36697
|
margin-bottom: 0;
|
|
36691
36698
|
margin-left: 0;
|
|
36692
36699
|
margin-right: calc(1.275rem + 0.3vw);
|
|
36693
36700
|
}
|
|
36694
36701
|
@media (min-width: 1200px) {
|
|
36695
|
-
.carousel-indicators {
|
|
36702
|
+
.carousel-controls .carousel-indicators {
|
|
36696
36703
|
margin-right: 1.5rem;
|
|
36697
36704
|
}
|
|
36698
36705
|
}
|