@unlk/keymaster 1.0.11 → 1.0.12
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 +6 -4
- package/dist/css/keymaster.css +13 -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 +35 -31
- package/dist/js/keymaster.js.map +1 -1
- package/dist/js/keymaster.min.js +25 -25
- package/dist/js/keymaster.min.js.map +1 -1
- package/package.json +1 -1
- package/scss/assets/bootstrap5/_card.scss +8 -8
- package/scss/assets/bootstrap5/mixins/_banner.scss +1 -1
- package/scss/assets/bootstrap5/mixins/_box-shadow.scss +11 -5
- package/scss/assets/bootstrap5/mixins/_visually-hidden.scss +5 -0
package/CHANGELOG.md
CHANGED
@@ -2,11 +2,16 @@
|
|
2
2
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
|
5
|
+
## [1.0.12] - 2025-06-23
|
6
|
+
|
7
|
+
### Update
|
8
|
+
- Bootstrap to 5.3.7
|
9
|
+
|
5
10
|
## [1.0.11] - 2025-06-13
|
6
11
|
|
7
12
|
### Chore
|
8
13
|
- Version Bump
|
9
|
-
|
14
|
+
|
10
15
|
## [1.0.10] - 2025-06-13
|
11
16
|
|
12
17
|
### Chore
|
@@ -66,13 +71,11 @@ All notable changes to this project will be documented in this file.
|
|
66
71
|
## [1.0.2] - 2025-04-21
|
67
72
|
|
68
73
|
### Added
|
69
|
-
|
70
74
|
- Shadows
|
71
75
|
|
72
76
|
## [1.0.1] - 2025-04-21
|
73
77
|
|
74
78
|
### Added
|
75
|
-
|
76
79
|
- Typography
|
77
80
|
- Accordion
|
78
81
|
- Alert
|
@@ -86,7 +89,6 @@ All notable changes to this project will be documented in this file.
|
|
86
89
|
_This is the first stable release of the design system._
|
87
90
|
|
88
91
|
### Added
|
89
|
-
|
90
92
|
- Font Awesome 6
|
91
93
|
- Color utility classes for brand colors
|
92
94
|
- Theme colors matching the brand colors
|
package/dist/css/keymaster.css
CHANGED
@@ -27,7 +27,7 @@
|
|
27
27
|
src: url("../../fonts/NeulisNeue-MediumItalic.woff2") format("woff2"), url("../../fonts/NeulisNeue-MediumItalic.woff") format("woff");
|
28
28
|
}
|
29
29
|
/*!
|
30
|
-
* Bootstrap v5.3.
|
30
|
+
* Bootstrap v5.3.7 (https://getbootstrap.com/)
|
31
31
|
* Copyright 2011-2025 The Bootstrap Authors
|
32
32
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
33
33
|
*/
|
@@ -4825,24 +4825,24 @@ textarea.form-control-lg {
|
|
4825
4825
|
border-top-right-radius: 0;
|
4826
4826
|
border-bottom-right-radius: 0;
|
4827
4827
|
}
|
4828
|
-
.card-group > .card:not(:last-child) .card-img-top,
|
4829
|
-
.card-group > .card:not(:last-child) .card-header {
|
4828
|
+
.card-group > .card:not(:last-child) > .card-img-top,
|
4829
|
+
.card-group > .card:not(:last-child) > .card-header {
|
4830
4830
|
border-top-right-radius: 0;
|
4831
4831
|
}
|
4832
|
-
.card-group > .card:not(:last-child) .card-img-bottom,
|
4833
|
-
.card-group > .card:not(:last-child) .card-footer {
|
4832
|
+
.card-group > .card:not(:last-child) > .card-img-bottom,
|
4833
|
+
.card-group > .card:not(:last-child) > .card-footer {
|
4834
4834
|
border-bottom-right-radius: 0;
|
4835
4835
|
}
|
4836
4836
|
.card-group > .card:not(:first-child) {
|
4837
4837
|
border-top-left-radius: 0;
|
4838
4838
|
border-bottom-left-radius: 0;
|
4839
4839
|
}
|
4840
|
-
.card-group > .card:not(:first-child) .card-img-top,
|
4841
|
-
.card-group > .card:not(:first-child) .card-header {
|
4840
|
+
.card-group > .card:not(:first-child) > .card-img-top,
|
4841
|
+
.card-group > .card:not(:first-child) > .card-header {
|
4842
4842
|
border-top-left-radius: 0;
|
4843
4843
|
}
|
4844
|
-
.card-group > .card:not(:first-child) .card-img-bottom,
|
4845
|
-
.card-group > .card:not(:first-child) .card-footer {
|
4844
|
+
.card-group > .card:not(:first-child) > .card-img-bottom,
|
4845
|
+
.card-group > .card:not(:first-child) > .card-footer {
|
4846
4846
|
border-bottom-left-radius: 0;
|
4847
4847
|
}
|
4848
4848
|
}
|
@@ -7608,6 +7608,10 @@ textarea.form-control-lg {
|
|
7608
7608
|
.visually-hidden-focusable:not(:focus):not(:focus-within):not(caption) {
|
7609
7609
|
position: absolute !important;
|
7610
7610
|
}
|
7611
|
+
.visually-hidden *,
|
7612
|
+
.visually-hidden-focusable:not(:focus):not(:focus-within) * {
|
7613
|
+
overflow: hidden !important;
|
7614
|
+
}
|
7611
7615
|
|
7612
7616
|
.stretched-link::after {
|
7613
7617
|
position: absolute;
|