anentrypoint-design 0.0.26 → 0.0.27

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.26",
3
+ "version": "0.0.27",
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",
package/src/components.js CHANGED
@@ -285,7 +285,7 @@ export function ChatMessage({ who = 'them', avatar, text, time, typing, key, aic
285
285
  ? h('span', { class: 'chat-typing' }, h('span'), h('span'), h('span'))
286
286
  : h('span', { class: 'chat-bubble' }, text);
287
287
  const meta = time ? h('div', { class: 'chat-meta' }, time) : null;
288
- const stack = h('div', {},
288
+ const stack = h('div', { class: 'chat-stack' },
289
289
  body,
290
290
  meta
291
291
  );