@unlk/keymaster 1.6.9 → 1.7.1
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 +3 -1
- 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 +3 -2
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.7.1] - 2026-08-27
|
|
6
|
+
|
|
7
|
+
### Fix
|
|
8
|
+
- Tiled Radio and Checkbox hover state
|
|
9
|
+
|
|
10
|
+
## [1.7.0] - 2026-08-27
|
|
11
|
+
|
|
12
|
+
### Update
|
|
13
|
+
- Video Modal to use lazy loading API
|
|
14
|
+
|
|
15
|
+
### Fix
|
|
16
|
+
- Tiled Radio and Checkbox selected state
|
|
17
|
+
|
|
5
18
|
## [1.6.9] - 2026-08-17
|
|
6
19
|
|
|
7
20
|
### 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,12 +35347,14 @@ 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
|
|
|
35352
35354
|
.form-check-tiled .form-check-input:checked ~ .form-check-label:before {
|
|
35353
35355
|
opacity: 1;
|
|
35354
35356
|
background-color: #02f;
|
|
35357
|
+
background-image: url("data:image/svg+xml, %3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512' fill='%23fff'%3e%3cpath d='M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7 393.4 105.4c12.5-12.5 32.8-12.5 45.3 0z'/%3e%3c/svg%3e");
|
|
35355
35358
|
border-color: #02f;
|
|
35356
35359
|
transform: scale(1);
|
|
35357
35360
|
}
|
|
@@ -35386,7 +35389,6 @@ textarea.form-control-lg {
|
|
|
35386
35389
|
.form-check-tiled .form-check-label:before {
|
|
35387
35390
|
content: "";
|
|
35388
35391
|
opacity: 0;
|
|
35389
|
-
background-image: url("data:image/svg+xml, %3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512' fill='%23fff'%3e%3cpath d='M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7 393.4 105.4c12.5-12.5 32.8-12.5 45.3 0z'/%3e%3c/svg%3e");
|
|
35390
35392
|
background-position: center;
|
|
35391
35393
|
background-repeat: no-repeat;
|
|
35392
35394
|
background-size: 11px;
|