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/chatgpt/globals.css +21 -0
- package/dist/index.cjs +18 -26
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +18 -26
- package/dist/index.js.map +1 -1
- package/dist/style.css +21 -0
- package/package.json +1 -1
- package/template/dist/chatgpt/albums.js +1 -1
- package/template/dist/chatgpt/carousel.js +1 -1
- package/template/dist/chatgpt/counter.js +1 -1
- package/template/node_modules/.vite/deps/@openai_apps-sdk-ui_components_SegmentedControl.js +4 -4
- package/template/node_modules/.vite/deps/@openai_apps-sdk-ui_components_Select.js +6 -6
- package/template/node_modules/.vite/deps/_metadata.json +23 -23
- package/template/node_modules/.vite/vitest/da39a3ee5e6b4b0d3255bfef95601890afd80709/results.json +1 -1
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
|
}
|