pi-studio 0.8.1 → 0.8.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 +5 -0
- package/client/studio.css +3 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,11 @@ All notable changes to `pi-studio` are documented here.
|
|
|
4
4
|
|
|
5
5
|
## [Unreleased]
|
|
6
6
|
|
|
7
|
+
## [0.8.2] — 2026-05-13
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
- Improved dark-theme contrast for Studio dropdown arrows and the HTML artifact zoom percentage by using the stronger Studio info text colour token.
|
|
11
|
+
|
|
7
12
|
## [0.8.1] — 2026-05-13
|
|
8
13
|
|
|
9
14
|
### Added
|
package/client/studio.css
CHANGED
|
@@ -77,7 +77,7 @@
|
|
|
77
77
|
|
|
78
78
|
.export-preview-trigger::after {
|
|
79
79
|
content: "⌄";
|
|
80
|
-
color: var(--
|
|
80
|
+
color: var(--studio-info-text, var(--text));
|
|
81
81
|
font-size: 14px;
|
|
82
82
|
line-height: 1;
|
|
83
83
|
transform: translateY(-1px);
|
|
@@ -1598,7 +1598,7 @@
|
|
|
1598
1598
|
|
|
1599
1599
|
.rendered-markdown .studio-html-artifact-zoom-reset {
|
|
1600
1600
|
min-width: 42px;
|
|
1601
|
-
color: var(--
|
|
1601
|
+
color: var(--studio-info-text, var(--text));
|
|
1602
1602
|
}
|
|
1603
1603
|
|
|
1604
1604
|
.rendered-markdown .studio-html-artifact-frame {
|
|
@@ -3121,7 +3121,7 @@
|
|
|
3121
3121
|
|
|
3122
3122
|
body.studio-ui-refresh .studio-refresh-chip::after {
|
|
3123
3123
|
content: "⌄";
|
|
3124
|
-
color: var(--
|
|
3124
|
+
color: var(--studio-info-text, var(--text));
|
|
3125
3125
|
font-size: 14px;
|
|
3126
3126
|
line-height: 1;
|
|
3127
3127
|
transform: translateY(-1px);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-studio",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.2",
|
|
4
4
|
"description": "Two-pane browser workspace for pi with prompt/response editing, annotations, critiques, prompt/response history, and live Markdown/LaTeX/code preview",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|