@unlk/keymaster 1.4.5 → 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 +8 -0
- package/dist/css/keymaster.css +6 -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 +1 -1
- package/dist/js/keymaster.min.js +1 -1
- package/package.json +13 -2
- 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 +14 -14
- package/scss/theme/_version.scss +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,14 @@
|
|
|
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
|
+
|
|
5
13
|
## [1.4.5] - 2026-04-03
|
|
6
14
|
|
|
7
15
|
### Update
|
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
|
|
|
@@ -36685,23 +36685,21 @@ textarea.form-control-lg {
|
|
|
36685
36685
|
display: flex;
|
|
36686
36686
|
justify-content: end;
|
|
36687
36687
|
}
|
|
36688
|
-
|
|
36689
|
-
.carousel-control-
|
|
36690
|
-
.carousel-control-next {
|
|
36688
|
+
.carousel-controls .carousel-control-prev,
|
|
36689
|
+
.carousel-controls .carousel-control-next {
|
|
36691
36690
|
position: unset;
|
|
36692
36691
|
width: -moz-fit-content;
|
|
36693
36692
|
width: fit-content;
|
|
36694
36693
|
padding: 0.375rem;
|
|
36695
36694
|
}
|
|
36696
|
-
|
|
36697
|
-
.carousel-indicators {
|
|
36695
|
+
.carousel-controls .carousel-indicators {
|
|
36698
36696
|
position: unset;
|
|
36699
36697
|
margin-bottom: 0;
|
|
36700
36698
|
margin-left: 0;
|
|
36701
36699
|
margin-right: calc(1.275rem + 0.3vw);
|
|
36702
36700
|
}
|
|
36703
36701
|
@media (min-width: 1200px) {
|
|
36704
|
-
.carousel-indicators {
|
|
36702
|
+
.carousel-controls .carousel-indicators {
|
|
36705
36703
|
margin-right: 1.5rem;
|
|
36706
36704
|
}
|
|
36707
36705
|
}
|