anentrypoint-design 0.0.197 → 0.0.198

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "anentrypoint-design",
3
- "version": "0.0.197",
3
+ "version": "0.0.198",
4
4
  "description": "247420 design system SDK — webjsx + modified ripple-ui, single-file ESM bundle for reproducible use of the AnEntrypoint design.",
5
5
  "type": "module",
6
6
  "main": "./dist/247420.js",
@@ -1307,3 +1307,43 @@ html.ds-247420 { touch-action: pan-x pan-y; overscroll-behavior: none; -webkit-t
1307
1307
  line-height: 1.2;
1308
1308
  margin: 0;
1309
1309
  }
1310
+
1311
+ /* gm memory browser — recall hits rendered as interactive, prunable cards
1312
+ (thebird's gm app, docs/apps.js recall panel). */
1313
+ .ds-247420 .gm-recall-hits {
1314
+ display: flex;
1315
+ flex-direction: column;
1316
+ gap: 6px;
1317
+ margin: 8px 0;
1318
+ }
1319
+ .ds-247420 .gm-recall-hit {
1320
+ border: 1px solid color-mix(in oklab, var(--fg) 14%, transparent);
1321
+ border-radius: 6px;
1322
+ padding: 8px 10px;
1323
+ background: color-mix(in oklab, var(--bg) 92%, var(--fg) 2%);
1324
+ }
1325
+ .ds-247420 .gm-recall-hit.is-pruned {
1326
+ opacity: 0.45;
1327
+ text-decoration: line-through;
1328
+ }
1329
+ .ds-247420 .gm-recall-meta {
1330
+ font-family: var(--os-mono, ui-monospace, monospace);
1331
+ font-size: 11px;
1332
+ color: color-mix(in oklab, var(--fg) 60%, transparent);
1333
+ margin-bottom: 4px;
1334
+ }
1335
+ .ds-247420 .gm-recall-text {
1336
+ font-size: 13px;
1337
+ line-height: 1.4;
1338
+ white-space: pre-wrap;
1339
+ word-break: break-word;
1340
+ }
1341
+ .ds-247420 .gm-recall-acts {
1342
+ display: flex;
1343
+ justify-content: flex-end;
1344
+ margin-top: 6px;
1345
+ }
1346
+ .ds-247420 .gm-recall-forget {
1347
+ font-size: 11px;
1348
+ padding: 2px 8px;
1349
+ }