@unlk/keymaster 1.6.8 → 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 +13 -0
- package/dist/css/keymaster.css +13 -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 +13 -1
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.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
|
+
|
|
13
|
+
## [1.6.9] - 2026-08-17
|
|
14
|
+
|
|
15
|
+
### Add
|
|
16
|
+
- Form Check Large
|
|
17
|
+
|
|
5
18
|
## [1.6.8] - 2026-08-17
|
|
6
19
|
|
|
7
20
|
### Add
|
package/dist/css/keymaster.css
CHANGED
|
@@ -35313,6 +35313,17 @@ textarea.form-control-lg {
|
|
|
35313
35313
|
box-shadow: none;
|
|
35314
35314
|
}
|
|
35315
35315
|
|
|
35316
|
+
.form-check-lg {
|
|
35317
|
+
padding-left: 2em;
|
|
35318
|
+
}
|
|
35319
|
+
|
|
35320
|
+
.form-check-lg .form-check-input {
|
|
35321
|
+
width: 1.5em;
|
|
35322
|
+
height: 1.5em;
|
|
35323
|
+
margin-top: 0;
|
|
35324
|
+
margin-left: -2em;
|
|
35325
|
+
}
|
|
35326
|
+
|
|
35316
35327
|
.form-check-tiled {
|
|
35317
35328
|
margin-bottom: .5rem;
|
|
35318
35329
|
padding-left: .25rem;
|
|
@@ -35321,6 +35332,7 @@ textarea.form-control-lg {
|
|
|
35321
35332
|
}
|
|
35322
35333
|
|
|
35323
35334
|
.form-check-tiled input:checked label {
|
|
35335
|
+
background-color: #f2f4ff;
|
|
35324
35336
|
border-color: #02f;
|
|
35325
35337
|
}
|
|
35326
35338
|
|
|
@@ -35335,6 +35347,7 @@ textarea.form-control-lg {
|
|
|
35335
35347
|
}
|
|
35336
35348
|
|
|
35337
35349
|
.form-check-tiled .form-check-input:checked ~ .form-check-label {
|
|
35350
|
+
background-color: #f2f4ff;
|
|
35338
35351
|
border-color: #02f;
|
|
35339
35352
|
}
|
|
35340
35353
|
|