@signal9/era-ui 34.11.0 → 34.11.1

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
@@ -1,3 +1,9 @@
1
+ ## [34.11.1](https://github.com/sig-nine/era-ui/compare/v34.11.0...v34.11.1) (2026-08-31)
2
+
3
+ ### Bug Fixes
4
+
5
+ * **timeline:** restore raised activity segment faces ([b670d63](https://github.com/sig-nine/era-ui/commit/b670d63c8b9c619758540fed04fe562e0c945669))
6
+
1
7
  ## [34.11.0](https://github.com/sig-nine/era-ui/compare/v34.10.6...v34.11.0) (2026-08-31)
2
8
 
3
9
  ### Features
@@ -1,6 +1,10 @@
1
1
  <script lang="ts" module>
2
2
  import type { ActivityTimelineState, TimelineState } from './context.svelte.js';
3
3
 
4
+ /** One Era-owned raised face for both timeline variants. Keeping the semantic
5
+ * material recipe singular prevents activity and duration chrome from drifting. */
6
+ const TIMELINE_FACE = 'bg-elevated shadow-sm outline outline-divider';
7
+
4
8
  /** Semantic tokens only — the bar follows theme and surface. */
5
9
  const TONE: Record<TimelineState, { label: string; bar: string; icon: string }> = {
6
10
  pending: { label: 'text-muted/60', bar: 'bg-elevated opacity-60', icon: 'text-muted' },
@@ -126,7 +130,8 @@
126
130
  <span class="sr-only">{stateLabel}</span>
127
131
  {/snippet}
128
132
  {@const activityClass = cn(
129
- 'flex items-center gap-inset-control px-inset-control shadow-sm outline outline-divider',
133
+ 'flex items-center gap-inset-control px-inset-control',
134
+ TIMELINE_FACE,
130
135
  durationActivity ? 'w-full min-w-0 max-w-none overflow-hidden' : 'min-w-[11ch] max-w-[20ch]',
131
136
  data.density === 'compact' ? 'tier-chip' : 'tier-control',
132
137
  interactive &&
@@ -174,7 +179,8 @@
174
179
 
175
180
  <div
176
181
  class={cn(
177
- 'flex tier-control items-center justify-end gap-inset-control px-inset-control shadow-sm outline outline-divider',
182
+ 'flex tier-control items-center justify-end gap-inset-control px-inset-control',
183
+ TIMELINE_FACE,
178
184
  tone?.bar,
179
185
  className
180
186
  )}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@signal9/era-ui",
3
- "version": "34.11.0",
3
+ "version": "34.11.1",
4
4
  "packageManager": "npm@11.19.0",
5
5
  "engines": {
6
6
  "node": ">=24 <27",
@@ -1,5 +1,11 @@
1
1
  # Era UI v34 release history
2
2
 
3
+ ## [34.11.1](https://github.com/sig-nine/era-ui/compare/v34.11.0...v34.11.1) (2026-08-31)
4
+
5
+ ### Bug Fixes
6
+
7
+ * **timeline:** restore raised activity segment faces ([b670d63](https://github.com/sig-nine/era-ui/commit/b670d63c8b9c619758540fed04fe562e0c945669))
8
+
3
9
  ## [34.11.0](https://github.com/sig-nine/era-ui/compare/v34.10.6...v34.11.0) (2026-08-31)
4
10
 
5
11
  ### Features
@@ -5,7 +5,7 @@ Load only the major versions crossed by an upgrade; use the package-root `CHANGE
5
5
 
6
6
  | Major | Range | Releases | History |
7
7
  | ---: | --- | ---: | --- |
8
- | 34 | 34.0.0–34.11.0 | 34 | [Read](./34.md) |
8
+ | 34 | 34.0.0–34.11.1 | 35 | [Read](./34.md) |
9
9
  | 33 | 33.0.0–33.0.1 | 2 | [Read](./33.md) |
10
10
  | 32 | 32.0.0–32.0.1 | 2 | [Read](./32.md) |
11
11
  | 31 | 31.0.0–31.0.0 | 1 | [Read](./31.md) |