@aparte/core 0.16.2 → 0.16.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/dist/index.css CHANGED
@@ -4439,6 +4439,12 @@ aparte-chat-viewport {
4439
4439
  }
4440
4440
 
4441
4441
  .aparte-viewport-container {
4442
+ /* Core ships no global border-box reset, so this box says it itself: the overlay
4443
+ clearance below is padding, and without this the padding was ADDED to the 100%
4444
+ height - the surface overran its host by the whole inset, clipped, with that much
4445
+ scrollbar and content cut off. Every example app carries a `* { box-sizing }` reset,
4446
+ which is exactly why it survived there and showed on the docs' bare frame. */
4447
+ box-sizing: border-box;
4442
4448
  display: flex;
4443
4449
  flex-direction: column;
4444
4450
  height: 100%;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aparte/core",
3
- "version": "0.16.2",
3
+ "version": "0.16.3",
4
4
  "description": "AI chat in Web Components, with the agent loop inside — zero third-party dependencies",
5
5
  "type": "module",
6
6
  "//sideEffects": "The BROWSER entry defines the custom elements and imports CSS at module scope, so it must never be tree-shaken; the Node entry (`index.node`) and every other module are pure. Listing them explicitly is what lets a bundler drop the rest — the whole package was implicitly side-effectful before, the only one of the 14 without this field.",
@@ -52,7 +52,7 @@
52
52
  "node": ">=18"
53
53
  },
54
54
  "dependencies": {
55
- "@aparte/engine": "0.16.2"
55
+ "@aparte/engine": "0.16.3"
56
56
  },
57
57
  "devDependencies": {
58
58
  "@custom-elements-manifest/analyzer": "^0.11.0",