sunpeak 0.9.8 → 0.9.12

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
@@ -6282,6 +6282,10 @@ background-color: var(--gray-200);
6282
6282
  min-height: calc(var(--spacing) * 8);
6283
6283
  }
6284
6284
 
6285
+ .w-1 {
6286
+ width: calc(var(--spacing) * 1);
6287
+ }
6288
+
6285
6289
  .w-3 {
6286
6290
  width: calc(var(--spacing) * 3);
6287
6291
  }
@@ -6403,6 +6407,10 @@ background-color: var(--gray-200);
6403
6407
  animation: var(--animate-spin);
6404
6408
  }
6405
6409
 
6410
+ .cursor-col-resize {
6411
+ cursor: col-resize;
6412
+ }
6413
+
6406
6414
  .cursor-pointer {
6407
6415
  cursor: pointer;
6408
6416
  }
@@ -7192,6 +7200,10 @@ background-color: var(--gray-200);
7192
7200
  z-index: 100;
7193
7201
  }
7194
7202
 
7203
+ .max-md\:\!w-2\/3 {
7204
+ width: 66.6667% !important;
7205
+ }
7206
+
7195
7207
  .max-md\:-translate-x-full {
7196
7208
  --tw-translate-x: -100%;
7197
7209
  translate: var(--tw-translate-x) var(--tw-translate-y);
@@ -7263,10 +7275,6 @@ background-color: var(--gray-200);
7263
7275
  }
7264
7276
 
7265
7277
  @media (min-width: 768px) {
7266
- .md\:relative {
7267
- position: relative;
7268
- }
7269
-
7270
7278
  .md\:z-20 {
7271
7279
  z-index: 20;
7272
7280
  }
@@ -7279,6 +7287,10 @@ background-color: var(--gray-200);
7279
7287
  margin-inline: calc(var(--spacing) * -4);
7280
7288
  }
7281
7289
 
7290
+ .md\:block {
7291
+ display: block;
7292
+ }
7293
+
7282
7294
  .md\:flex {
7283
7295
  display: flex;
7284
7296
  }
@@ -7455,6 +7467,18 @@ background-color: var(--gray-200);
7455
7467
  .\[\&\:hover\]\:bg-transparent:hover {
7456
7468
  background-color: #0000;
7457
7469
  }
7470
+
7471
+ .\[\&\>textarea\]\:\!h-full > textarea {
7472
+ height: 100% !important;
7473
+ }
7474
+
7475
+ .\[\&\>textarea\]\:\!max-h-none > textarea {
7476
+ max-height: none !important;
7477
+ }
7478
+
7479
+ .\[\&\>textarea\]\:\!min-h-0 > textarea {
7480
+ min-height: calc(var(--spacing) * 0) !important;
7481
+ }
7458
7482
  }
7459
7483
 
7460
7484
  @property --tw-translate-x {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sunpeak",
3
- "version": "0.9.8",
3
+ "version": "0.9.12",
4
4
  "description": "The ChatGPT App framework. Quickstart, build, & test your ChatGPT App locally!",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",