sunpeak 0.5.14 → 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
  }
@@ -3587,6 +3600,10 @@
3587
3600
  background-color: var(--color-background-primary-soft);
3588
3601
  }
3589
3602
 
3603
+ .bg-sidebar {
3604
+ background-color: var(--color-surface-secondary);
3605
+ }
3606
+
3590
3607
  .bg-surface {
3591
3608
  background-color: var(--color-surface);
3592
3609
  }
@@ -3694,6 +3711,10 @@
3694
3711
  padding-right: calc(var(--spacing) * 12);
3695
3712
  }
3696
3713
 
3714
+ .pb-2 {
3715
+ padding-bottom: calc(var(--spacing) * 2);
3716
+ }
3717
+
3697
3718
  .pb-10 {
3698
3719
  padding-bottom: calc(var(--spacing) * 10);
3699
3720
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sunpeak",
3
- "version": "0.5.14",
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",