sunpeak 0.5.15 → 0.5.16

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/style.css CHANGED
@@ -3050,6 +3050,15 @@
3050
3050
  body {
3051
3051
  counter-reset: katexEqnNo mmlEqnNo;
3052
3052
  }
3053
+
3054
+ :root, :where([data-theme="light"]) {
3055
+ --color-text: var(--gray-1000);
3056
+ --color-text-secondary: var(--gray-500);
3057
+ }
3058
+
3059
+ :where([data-theme="dark"]) {
3060
+ --color-text-secondary: var(--gray-700);
3061
+ }
3053
3062
  }
3054
3063
 
3055
3064
  @layer components;
@@ -3299,6 +3308,10 @@
3299
3308
  max-height: 100%;
3300
3309
  }
3301
3310
 
3311
+ .min-h-0 {
3312
+ min-height: calc(var(--spacing) * 0);
3313
+ }
3314
+
3302
3315
  .min-h-8 {
3303
3316
  min-height: calc(var(--spacing) * 8);
3304
3317
  }
@@ -3698,6 +3711,10 @@
3698
3711
  padding-right: calc(var(--spacing) * 12);
3699
3712
  }
3700
3713
 
3714
+ .pb-2 {
3715
+ padding-bottom: calc(var(--spacing) * 2);
3716
+ }
3717
+
3701
3718
  .pb-10 {
3702
3719
  padding-bottom: calc(var(--spacing) * 10);
3703
3720
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sunpeak",
3
- "version": "0.5.15",
3
+ "version": "0.5.16",
4
4
  "description": "The MCP App SDK. Quickstart, build, & test your ChatGPT App locally!",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",