@unlk/keymaster 1.7.0 → 1.7.2
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 +2 -2
- package/dist/css/keymaster.css.map +1 -1
- package/dist/css/keymaster.min.css +1 -1
- package/dist/js/keymaster.js +1 -1
- package/dist/js/keymaster.min.js +1 -1
- package/package.json +1 -1
- package/scss/theme/_accordion.scss +1 -1
- package/scss/theme/_version.scss +1 -1
- package/scss/theme/forms/_form-check.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.7.2] - 2026-09-02
|
|
6
|
+
|
|
7
|
+
### Updated
|
|
8
|
+
- Accordion Alt closing transition
|
|
9
|
+
|
|
10
|
+
## [1.7.1] - 2026-08-27
|
|
11
|
+
|
|
12
|
+
### Fix
|
|
13
|
+
- Tiled Radio and Checkbox hover state
|
|
14
|
+
|
|
5
15
|
## [1.7.0] - 2026-08-27
|
|
6
16
|
|
|
7
17
|
### Update
|
package/dist/css/keymaster.css
CHANGED
|
@@ -34681,7 +34681,7 @@ textarea.form-control-lg {
|
|
|
34681
34681
|
--bs-accordion-alt-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 22' fill='%2302f'%3e%3cpath d='M12.6923 1.69231C12.6923 0.75625 11.9361 0 11 0C10.0639 0 9.30769 0.75625 9.30769 1.69231V9.30769H1.69231C0.75625 9.30769 0 10.0639 0 11C0 11.9361 0.75625 12.6923 1.69231 12.6923H9.30769V20.3077C9.30769 21.2438 10.0639 22 11 22C11.9361 22 12.6923 21.2438 12.6923 20.3077V12.6923H20.3077C21.2438 12.6923 22 11.9361 22 11C22 10.0639 21.2438 9.30769 20.3077 9.30769H12.6923V1.69231Z'/%3e%3c/svg%3e");
|
|
34682
34682
|
--bs-accordion-alt-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 25' fill='%2302f'%3e%3cpath d='M21.2143 12.5C21.2143 13.3643 20.512 14.0625 19.6428 14.0625H2.35713C1.48794 14.0625 0.785706 13.3643 0.785706 12.5C0.785706 11.6357 1.48794 10.9375 2.35713 10.9375H19.6428C20.512 10.9375 21.2143 11.6357 21.2143 12.5Z'/%3e%3c/svg%3e");
|
|
34683
34683
|
--bs-accordion-alt-active-color: var(--bs-action);
|
|
34684
|
-
box-shadow:
|
|
34684
|
+
box-shadow: 0 0 0 calc(var(--bs-accordion-alt-border-active-width) - var(--bs-accordion-alt-border-width)) transparent;
|
|
34685
34685
|
}
|
|
34686
34686
|
|
|
34687
34687
|
.accordion-alt .accordion-button {
|
|
@@ -35354,6 +35354,7 @@ textarea.form-control-lg {
|
|
|
35354
35354
|
.form-check-tiled .form-check-input:checked ~ .form-check-label:before {
|
|
35355
35355
|
opacity: 1;
|
|
35356
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");
|
|
35357
35358
|
border-color: #02f;
|
|
35358
35359
|
transform: scale(1);
|
|
35359
35360
|
}
|
|
@@ -35388,7 +35389,6 @@ textarea.form-control-lg {
|
|
|
35388
35389
|
.form-check-tiled .form-check-label:before {
|
|
35389
35390
|
content: "";
|
|
35390
35391
|
opacity: 0;
|
|
35391
|
-
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");
|
|
35392
35392
|
background-position: center;
|
|
35393
35393
|
background-repeat: no-repeat;
|
|
35394
35394
|
background-size: 11px;
|