sunpeak 0.9.6 → 0.9.8

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
@@ -6416,10 +6416,18 @@ background-color: var(--gray-200);
6416
6416
  resize: both;
6417
6417
  }
6418
6418
 
6419
+ .resize-y {
6420
+ resize: vertical;
6421
+ }
6422
+
6419
6423
  .grid-cols-2 {
6420
6424
  grid-template-columns: repeat(2, minmax(0, 1fr));
6421
6425
  }
6422
6426
 
6427
+ .grid-cols-4 {
6428
+ grid-template-columns: repeat(4, minmax(0, 1fr));
6429
+ }
6430
+
6423
6431
  .grid-cols-\[1fr_auto_1fr\] {
6424
6432
  grid-template-columns: 1fr auto 1fr;
6425
6433
  }
@@ -6464,6 +6472,10 @@ background-color: var(--gray-200);
6464
6472
  justify-content: flex-start;
6465
6473
  }
6466
6474
 
6475
+ .gap-0\.5 {
6476
+ gap: calc(var(--spacing) * .5);
6477
+ }
6478
+
6467
6479
  .gap-1 {
6468
6480
  gap: calc(var(--spacing) * 1);
6469
6481
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sunpeak",
3
- "version": "0.9.6",
3
+ "version": "0.9.8",
4
4
  "description": "The ChatGPT App framework. Quickstart, build, & test your ChatGPT App locally!",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",