kaafil-react-uikit 0.10.2 → 0.10.3
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 +16 -0
- package/dist/index.css +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,22 @@ The format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
|
6
6
|
and this package uses [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
While on `0.x` a minor bump may carry a breaking change; the entry will say so.
|
|
8
8
|
|
|
9
|
+
## [0.10.3] — 2026-09-15
|
|
10
|
+
|
|
11
|
+
### Fixed
|
|
12
|
+
|
|
13
|
+
- **A disabled "File it" lit up on hover and looked clickable.** In
|
|
14
|
+
`trip-documents-section.css` the `:disabled` rule and the `:hover` rule had
|
|
15
|
+
the same specificity, and `:hover` was declared ~90 lines later — so it won.
|
|
16
|
+
Hovering the disabled primary button in the file-a-document dialog repainted
|
|
17
|
+
it `--kf-accent-hover`, which on a light host is a full accent fill: the
|
|
18
|
+
affordance said press me while the button did nothing. Most visible on a trip
|
|
19
|
+
with no bookings, where "Booking voucher" correctly disables the action and
|
|
20
|
+
there is nothing at all to file.
|
|
21
|
+
|
|
22
|
+
The hover rule is now `:hover:not(:disabled)`. A sweep of every stylesheet in
|
|
23
|
+
the package found this as the only instance of the pattern.
|
|
24
|
+
|
|
9
25
|
## [0.10.2] — 2026-09-15
|
|
10
26
|
|
|
11
27
|
### Fixed
|