sunpeak 0.13.10 → 0.13.11
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 +4 -0
- package/dist/chatgpt/index.cjs +1 -1
- package/dist/chatgpt/index.js +1 -1
- package/dist/{index-D6Z9ZDNT.js → index-CJ3jfcjj.js} +8 -7
- package/dist/{index-D6Z9ZDNT.js.map → index-CJ3jfcjj.js.map} +1 -1
- package/dist/{index-BhfrUoaZ.cjs → index-Cdeg96So.cjs} +9 -8
- package/dist/{index-BhfrUoaZ.cjs.map → index-Cdeg96So.cjs.map} +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.js +2 -2
- package/dist/mcp/index.cjs +30 -6
- package/dist/mcp/index.cjs.map +1 -1
- package/dist/mcp/index.js +30 -6
- package/dist/mcp/index.js.map +1 -1
- package/dist/style.css +4 -0
- package/package.json +1 -1
- package/template/.sunpeak/resource-loader.html +1 -3
- package/template/src/resources/albums/albums-resource.tsx +1 -1
- package/template/src/resources/albums/components/fullscreen-viewer.tsx +5 -1
package/dist/chatgpt/globals.css
CHANGED
package/dist/chatgpt/index.cjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
-
const chatgpt_index = require("../index-
|
|
3
|
+
const chatgpt_index = require("../index-Cdeg96So.cjs");
|
|
4
4
|
const discovery = require("../discovery-CRR3SlyI.cjs");
|
|
5
5
|
exports.ChatGPTSimulator = chatgpt_index.ChatGPTSimulator;
|
|
6
6
|
exports.IframeResource = chatgpt_index.IframeResource;
|
package/dist/chatgpt/index.js
CHANGED
|
@@ -14408,16 +14408,17 @@ function generateScriptHtml(scriptSrc, theme, cspPolicy) {
|
|
|
14408
14408
|
<meta http-equiv="Content-Security-Policy" content="${safeCsp}" />
|
|
14409
14409
|
<title>Resource</title>
|
|
14410
14410
|
<style>
|
|
14411
|
+
html {
|
|
14412
|
+
/* Set color-scheme before the resource script loads so system UI (scrollbars,
|
|
14413
|
+
form elements) is themed correctly from first paint. Once the script loads,
|
|
14414
|
+
applyDocumentTheme() takes over with an inline style. */
|
|
14415
|
+
color-scheme: ${safeTheme};
|
|
14416
|
+
}
|
|
14411
14417
|
html, body, #root {
|
|
14412
14418
|
margin: 0;
|
|
14413
14419
|
padding: 0;
|
|
14414
14420
|
width: 100%;
|
|
14415
|
-
|
|
14416
|
-
This allows ResizeObserver to detect content changes and
|
|
14417
|
-
report accurate intrinsic height to the host. */
|
|
14418
|
-
min-height: 100%;
|
|
14419
|
-
background: transparent;
|
|
14420
|
-
color-scheme: dark light;
|
|
14421
|
+
background-color: var(--color-surface);
|
|
14421
14422
|
}
|
|
14422
14423
|
</style>
|
|
14423
14424
|
<script>${PAINT_FENCE_SCRIPT}<\/script>
|
|
@@ -15127,4 +15128,4 @@ export {
|
|
|
15127
15128
|
index as i,
|
|
15128
15129
|
useThemeContext as u
|
|
15129
15130
|
};
|
|
15130
|
-
//# sourceMappingURL=index-
|
|
15131
|
+
//# sourceMappingURL=index-CJ3jfcjj.js.map
|