@stainless-api/docs 0.1.0-beta.105 → 0.1.0-beta.106

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,5 +1,11 @@
1
1
  # @stainless-api/docs
2
2
 
3
+ ## 0.1.0-beta.106
4
+
5
+ ### Patch Changes
6
+
7
+ - a8ed299: Adds the ability for AI chat to move into a sidebar “panel” position.
8
+
3
9
  ## 0.1.0-beta.105
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stainless-api/docs",
3
- "version": "0.1.0-beta.105",
3
+ "version": "0.1.0-beta.106",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
package/styles/page.css CHANGED
@@ -39,13 +39,16 @@
39
39
  display: grid;
40
40
 
41
41
  /* TODO: verify that env-safe-area-inset is behaving as we expect */
42
- --stl-viewport-width: calc(100vw - env(safe-area-inset-left, 0) - env(safe-area-inset-right, 0));
42
+ --stl-viewport-width: calc(
43
+ 100vw - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px) -
44
+ var(--stl-chat-panel-width, 0px)
45
+ );
43
46
  --stl-page-gutter-left: calc(
44
- env(safe-area-inset-left, 0) +
47
+ env(safe-area-inset-left, 0px) +
45
48
  max(var(--stl-page-min-padding), (var(--stl-viewport-width) - var(--stl-page-max-width)) / 2)
46
49
  );
47
50
  --stl-page-gutter-right: calc(
48
- env(safe-area-inset-right, 0) +
51
+ env(safe-area-inset-right, 0px) +
49
52
  max(var(--stl-page-min-padding), (var(--stl-viewport-width) - var(--stl-page-max-width)) / 2)
50
53
  );
51
54
 
@@ -183,7 +186,7 @@ header > .header {
183
186
  max-width: min(var(--stl-two-column-content-max-width), 100%);
184
187
  padding-inline-start: clamp(
185
188
  var(--stl-content-padding),
186
- var(--stl-page-gutter-right) - env(safe-area-inset-right, 0),
189
+ var(--stl-page-gutter-right) - env(safe-area-inset-right, 0px),
187
190
  var(--stl-content-padding) * 2
188
191
  );
189
192
  padding-inline-end: 0;