@ddtcorex/dsh-maestro-memory 1.1.1 → 1.2.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 +28 -0
- package/lib/client.js +227 -365
- package/lib/prompt/snapshot.d.ts.map +1 -1
- package/lib/prompt/snapshot.js +4 -1
- package/lib/prompt/snapshot.js.map +1 -1
- package/lib/types/client/index.d.ts +0 -4
- package/lib/types/client/index.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/client/index.tsx +534 -1003
- package/src/host/prompt/snapshot.ts +4 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,34 @@ All notable changes to this project are documented in this file. Format follows
|
|
|
4
4
|
[Keep a Changelog](https://keepachangelog.com/en/1.1.0/); this project uses
|
|
5
5
|
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
+
## [1.2.2] - 2026-08-30
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
|
|
11
|
+
- **Memory tab overlay bleed (2)** — add `contain: paint` + `overflow:hidden` to `[class*="viewArea"]`/`[data-slot="conversation.view"]`/`[data-slot="conversation.session"]` and `.memx`, force `.memx` `background !important` + `z-index:2`, `pointer-events:auto`, `overflow-x:clip`/`overflow-y:auto` so hover no longer leaks to chat/composer/widthHandle behind.
|
|
12
|
+
- **Mobile tab content overlap** — `.memx` now `box-sizing:border-box` + `max-width:100%`/`overflow-wrap`, `.memx-layout`/`memx-panel`/`memx-grid`/`memx-card`/`memx-form` all `min-width:0` + `max-width:100%`, `grid-template-columns:200px minmax(0,1fr)`, `formrow` flex `1 1 0`, mobile `@1023px` forces `1fr` + `min-width:0`, `@480px` stacks `memx-field`. Fixes right-side overlap on 375px (verify 268/268 green).
|
|
13
|
+
|
|
14
|
+
## [1.2.1] - 2026-08-30
|
|
15
|
+
|
|
16
|
+
### Fixed
|
|
17
|
+
|
|
18
|
+
- **Memory tab overlay bleed** — `conversation.view` content now fully opaque over chat. `.memx` gets `background: var(--dsw-alias-bg-base)`, `isolation: isolate`, `z-index:1`, `min-height:100%` + `flex:1`, parent `[data-slot="conversation.view"]` forced opaque; inline `style` also carries bg/isolation to cover slot gaps that leaked chat hover effects.
|
|
19
|
+
|
|
20
|
+
## [1.2.0] - 2026-08-29
|
|
21
|
+
|
|
22
|
+
### Added
|
|
23
|
+
|
|
24
|
+
- **Memory tab redesign** (`src/client/index.tsx`, maestro-design Minimalism + Bento Grid, DSH tokens only). Desktop `200px nav rail + bento` (`≥1024px`), mobile horizontal `tablist` with `44px` touch, safe-area insets, `header` Refresh inline with title.
|
|
25
|
+
|
|
26
|
+
### Changed
|
|
27
|
+
|
|
28
|
+
- Align `memx-layout`/`memx-nav` breakpoint to `1024px` (match `dsh-maestro-mobile` `1023px` drawer), fix `memx-search`/`memx-field` `min-width:0` overflow on 375px.
|
|
29
|
+
|
|
30
|
+
### Fixed
|
|
31
|
+
|
|
32
|
+
- Client a11y: `prefers-reduced-motion` typo (`.card` → `.memx-card` + badge), `search:focus-within` ring, `aria-label` on cwd/todo/review inputs, `role=tablist/tab/tabpanel` with `aria-selected`.
|
|
33
|
+
- Host `renderSnapshot` Recent Daily timezone: use local calendar (`getMonth/getDate`) instead of UTC `toISOString` to match `store.todayStamp` (fixes midnight ICT flake, 268/268 green).
|
|
34
|
+
|
|
7
35
|
## [1.1.0] - 2026-08-29
|
|
8
36
|
|
|
9
37
|
Adopts proven mechanisms from `FuRongJun-1999/dsh-memory` in file-native form (no Python). Live-validated in chat, 268 tests.
|