@unlk/keymaster 1.3.6 → 1.3.8
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 +10 -0
- package/dist/css/keymaster.css +7 -9
- 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 +13 -1
- package/dist/js/keymaster.js.map +1 -1
- package/dist/js/keymaster.min.js +8 -8
- package/dist/js/keymaster.min.js.map +1 -1
- package/js/video-modal.js +19 -3
- package/package.json +1 -1
- package/scss/theme/_spinner.scss +0 -6
- package/scss/theme/_variables-overrides.scss +4 -0
- package/scss/theme/_version.scss +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,16 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [1.3.8] - 2025-12-20
|
|
6
|
+
|
|
7
|
+
### Update
|
|
8
|
+
- Range Thumb Size
|
|
9
|
+
|
|
10
|
+
## [1.3.7] - 2025-12-23
|
|
11
|
+
|
|
12
|
+
### Update
|
|
13
|
+
- Video Modal for Segment Tracking
|
|
14
|
+
|
|
5
15
|
## [1.3.6] - 2025-12-03
|
|
6
16
|
|
|
7
17
|
### Add
|
package/dist/css/keymaster.css
CHANGED
|
@@ -21866,7 +21866,7 @@
|
|
|
21866
21866
|
}
|
|
21867
21867
|
|
|
21868
21868
|
/*!
|
|
21869
|
-
* Keymaster v1.3.
|
|
21869
|
+
* Keymaster v1.3.8 (https://unlock-com.github.io/keymaster)
|
|
21870
21870
|
* Copyright 2022-2025 Unlk Developers
|
|
21871
21871
|
* Licensed under MIT
|
|
21872
21872
|
*/
|
|
@@ -24529,7 +24529,7 @@ textarea.form-control-lg {
|
|
|
24529
24529
|
|
|
24530
24530
|
.form-range {
|
|
24531
24531
|
width: 100%;
|
|
24532
|
-
height: 1.
|
|
24532
|
+
height: 1.75rem;
|
|
24533
24533
|
padding: 0;
|
|
24534
24534
|
-webkit-appearance: none;
|
|
24535
24535
|
-moz-appearance: none;
|
|
@@ -24549,9 +24549,9 @@ textarea.form-control-lg {
|
|
|
24549
24549
|
border: 0;
|
|
24550
24550
|
}
|
|
24551
24551
|
.form-range::-webkit-slider-thumb {
|
|
24552
|
-
width:
|
|
24553
|
-
height:
|
|
24554
|
-
margin-top: -0.
|
|
24552
|
+
width: 1.25rem;
|
|
24553
|
+
height: 1.25rem;
|
|
24554
|
+
margin-top: -0.375rem;
|
|
24555
24555
|
-webkit-appearance: none;
|
|
24556
24556
|
appearance: none;
|
|
24557
24557
|
background-color: #02f;
|
|
@@ -24581,8 +24581,8 @@ textarea.form-control-lg {
|
|
|
24581
24581
|
box-shadow: var(--bs-box-shadow-inset);
|
|
24582
24582
|
}
|
|
24583
24583
|
.form-range::-moz-range-thumb {
|
|
24584
|
-
width:
|
|
24585
|
-
height:
|
|
24584
|
+
width: 1.25rem;
|
|
24585
|
+
height: 1.25rem;
|
|
24586
24586
|
-moz-appearance: none;
|
|
24587
24587
|
appearance: none;
|
|
24588
24588
|
background-color: #02f;
|
|
@@ -37042,7 +37042,6 @@ textarea.form-control-lg {
|
|
|
37042
37042
|
.spinner-home::before {
|
|
37043
37043
|
position: absolute;
|
|
37044
37044
|
inset: 0;
|
|
37045
|
-
/* polygon converted from your yellow <polygon> */
|
|
37046
37045
|
clip-path: polygon(50% 47.36%, 72.28% 0%, 100% 35.7%, 90.1% 80.1%, 50% 100%, 50% 47.36%);
|
|
37047
37046
|
content: "";
|
|
37048
37047
|
background: #fbcd18;
|
|
@@ -37050,7 +37049,6 @@ textarea.form-control-lg {
|
|
|
37050
37049
|
.spinner-home::after {
|
|
37051
37050
|
position: absolute;
|
|
37052
37051
|
inset: 0;
|
|
37053
|
-
/* polygon converted from your blue <polygon> */
|
|
37054
37052
|
clip-path: polygon(72.28% 0%, 27.75% 0%, 0% 35.7%, 9.9% 80.1%, 50% 100%, 50% 47.36%, 72.28% 0%);
|
|
37055
37053
|
content: "";
|
|
37056
37054
|
background: #02f;
|