kaafil-react-uikit 0.10.1 → 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 CHANGED
@@ -6,6 +6,40 @@ 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
+
25
+ ## [0.10.2] — 2026-09-15
26
+
27
+ ### Fixed
28
+
29
+ - **An itinerary with no times no longer indents every row behind an empty
30
+ column.** `.kf-share-view__plan-time` is a fixed `inline-size` with
31
+ `flex-shrink: 0`, so it held its width whether or not it had anything in it.
32
+ When SOME rows carry a time that is correct — the ones without still need to
33
+ indent or the titles stop lining up. When NO row does, every title sat behind
34
+ a blank column that reads as a missing icon rather than as an absent time.
35
+
36
+ A `startTime` is optional on an itinerary item and a brochure day plan
37
+ usually has none — "Day 9: Solang Valley, free evening in Manali" is a whole
38
+ day, not an appointment — so the all-empty case is the common one, not the
39
+ edge. `TodayPlanSection` and `ItineraryDayStrip` now decide per LIST, not per
40
+ row: the column is dropped entirely when nothing in the day would fill it,
41
+ and kept for alignment as soon as one item would.
42
+
9
43
  ## [0.10.1] — 2026-09-15
10
44
 
11
45
  Two long-standing bugs that only bite together, found when the traveller