@unlk/keymaster 1.6.9 → 1.7.0
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 +2 -0
- package/dist/css/keymaster.css.map +1 -1
- package/dist/css/keymaster.min.css +1 -1
- package/dist/js/keymaster.js +126 -54
- package/dist/js/keymaster.js.map +1 -1
- package/dist/js/keymaster.min.js +7 -7
- package/dist/js/keymaster.min.js.map +1 -1
- package/js/video-modal.js +174 -58
- package/package.json +1 -1
- package/scss/theme/_version.scss +1 -1
- package/scss/theme/forms/_form-check.scss +2 -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.7.0] - 2026-08-27
|
|
6
|
+
|
|
7
|
+
### Update
|
|
8
|
+
- Video Modal to use lazy loading API
|
|
9
|
+
|
|
10
|
+
### Fix
|
|
11
|
+
- Tiled Radio and Checkbox selected state
|
|
12
|
+
|
|
5
13
|
## [1.6.9] - 2026-08-17
|
|
6
14
|
|
|
7
15
|
### Add
|
package/dist/css/keymaster.css
CHANGED
|
@@ -35332,6 +35332,7 @@ textarea.form-control-lg {
|
|
|
35332
35332
|
}
|
|
35333
35333
|
|
|
35334
35334
|
.form-check-tiled input:checked label {
|
|
35335
|
+
background-color: #f2f4ff;
|
|
35335
35336
|
border-color: #02f;
|
|
35336
35337
|
}
|
|
35337
35338
|
|
|
@@ -35346,6 +35347,7 @@ textarea.form-control-lg {
|
|
|
35346
35347
|
}
|
|
35347
35348
|
|
|
35348
35349
|
.form-check-tiled .form-check-input:checked ~ .form-check-label {
|
|
35350
|
+
background-color: #f2f4ff;
|
|
35349
35351
|
border-color: #02f;
|
|
35350
35352
|
}
|
|
35351
35353
|
|