sunpeak 0.6.4 → 0.6.5
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/bin/sunpeak.js +8 -4
- package/dist/style.css +440 -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/dist/chatgpt/pizzaz.js +3034 -0
- package/template/node_modules/.vite/deps/@openai_apps-sdk-ui_components_Avatar.js +97 -0
- package/template/node_modules/.vite/deps/@openai_apps-sdk-ui_components_Avatar.js.map +7 -0
- package/template/node_modules/.vite/deps/@openai_apps-sdk-ui_components_Button.js +3 -3
- package/template/node_modules/.vite/deps/@openai_apps-sdk-ui_components_SegmentedControl.js +1 -1
- package/template/node_modules/.vite/deps/@openai_apps-sdk-ui_components_Select.js +11 -11
- package/template/node_modules/.vite/deps/@openai_apps-sdk-ui_components_Textarea.js +3 -3
- package/template/node_modules/.vite/deps/_metadata.json +46 -34
- package/template/node_modules/.vite/deps/{chunk-EVJ3DVH5.js → chunk-LR7NKCX5.js} +7 -7
- package/template/node_modules/.vite/deps/mapbox-gl.js +32835 -0
- package/template/node_modules/.vite/deps/mapbox-gl.js.map +7 -0
- package/template/node_modules/.vite/vitest/da39a3ee5e6b4b0d3255bfef95601890afd80709/results.json +1 -1
- package/template/package.json +1 -0
- package/template/src/components/index.ts +1 -0
- package/template/src/components/pizzaz/index.ts +6 -0
- package/template/src/components/pizzaz/map-view.tsx +212 -0
- package/template/src/components/pizzaz/pizzaz.tsx +145 -0
- package/template/src/components/pizzaz/place-card.tsx +55 -0
- package/template/src/components/pizzaz/place-carousel.tsx +45 -0
- package/template/src/components/pizzaz/place-inspector.tsx +132 -0
- package/template/src/components/pizzaz/place-list.tsx +90 -0
- package/template/src/resources/index.ts +1 -0
- package/template/src/resources/pizzaz-resource.tsx +32 -0
- package/template/src/simulations/index.ts +2 -0
- package/template/src/simulations/pizzaz-simulation.ts +177 -0
- /package/template/node_modules/.vite/deps/{chunk-EVJ3DVH5.js.map → chunk-LR7NKCX5.js.map} +0 -0
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
import {
|
|
2
|
+
toCssVariables
|
|
3
|
+
} from "./chunk-BAG6OO6S.js";
|
|
4
|
+
import "./chunk-EGRHWZRV.js";
|
|
5
|
+
import {
|
|
6
|
+
clsx_default
|
|
7
|
+
} from "./chunk-CNYJBM5F.js";
|
|
8
|
+
import {
|
|
9
|
+
require_jsx_runtime
|
|
10
|
+
} from "./chunk-PTVT3RFX.js";
|
|
11
|
+
import {
|
|
12
|
+
require_react
|
|
13
|
+
} from "./chunk-4TLBUCVB.js";
|
|
14
|
+
import {
|
|
15
|
+
__toESM
|
|
16
|
+
} from "./chunk-ILHRZGIS.js";
|
|
17
|
+
|
|
18
|
+
// ../node_modules/.pnpm/@openai+apps-sdk-ui@0.2.0_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@19._60630c8dcc43ec213b3e346c9e26579b/node_modules/@openai/apps-sdk-ui/dist/es/components/Avatar/Avatar.js
|
|
19
|
+
var import_jsx_runtime = __toESM(require_jsx_runtime());
|
|
20
|
+
var import_react = __toESM(require_react());
|
|
21
|
+
var import_react2 = __toESM(require_react());
|
|
22
|
+
import s from "/home/runner/work/sunpeak/sunpeak/node_modules/.pnpm/@openai+apps-sdk-ui@0.2.0_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@19._60630c8dcc43ec213b3e346c9e26579b/node_modules/@openai/apps-sdk-ui/dist/es/components/Avatar/Avatar.module.css";
|
|
23
|
+
var Avatar = (props) => {
|
|
24
|
+
const validImageUrl = validateImageUrl(props.imageUrl);
|
|
25
|
+
return (0, import_react.createElement)(AvatarInner, { ...props, imageUrl: validImageUrl, key: validImageUrl });
|
|
26
|
+
};
|
|
27
|
+
var AvatarInner = (props) => {
|
|
28
|
+
const {
|
|
29
|
+
className,
|
|
30
|
+
size,
|
|
31
|
+
overflowCount,
|
|
32
|
+
name,
|
|
33
|
+
color = "secondary",
|
|
34
|
+
variant = "soft",
|
|
35
|
+
imageUrl,
|
|
36
|
+
Icon,
|
|
37
|
+
// asChild support
|
|
38
|
+
...restProps
|
|
39
|
+
} = props;
|
|
40
|
+
const [imageStatus, setImageStatus] = (0, import_react2.useState)();
|
|
41
|
+
const isInteractive = !!(restProps.onPointerDown || restProps.onClick);
|
|
42
|
+
const TagName = isInteractive ? "button" : "span";
|
|
43
|
+
return (0, import_jsx_runtime.jsx)(TagName, { className: clsx_default(s.Avatar, className), style: toCssVariables({
|
|
44
|
+
"avatar-size": size
|
|
45
|
+
}), role: isInteractive ? void 0 : "presentation", "data-color": color, "data-variant": variant, type: isInteractive ? "button" : void 0, ...restProps, children: (() => {
|
|
46
|
+
if (imageUrl && imageStatus !== "error") {
|
|
47
|
+
return (0, import_jsx_runtime.jsx)(AvatarImage, { status: imageStatus, url: imageUrl, onError: () => setImageStatus("error"), onLoad: () => setImageStatus("loaded") });
|
|
48
|
+
}
|
|
49
|
+
if (Icon) {
|
|
50
|
+
return (0, import_jsx_runtime.jsx)(Icon, { className: s.AvatarIcon });
|
|
51
|
+
}
|
|
52
|
+
return overflowCount ? (0, import_jsx_runtime.jsx)(AvatarOverflowCount, { count: overflowCount }) : (0, import_jsx_runtime.jsx)(AvatarInitial, { name });
|
|
53
|
+
})() });
|
|
54
|
+
};
|
|
55
|
+
var validateImageUrl = (imageUrl) => {
|
|
56
|
+
if (!imageUrl) {
|
|
57
|
+
return;
|
|
58
|
+
}
|
|
59
|
+
if (imageUrl.includes("gravatar.com") && imageUrl.includes("cdn.auth0.com")) {
|
|
60
|
+
return;
|
|
61
|
+
}
|
|
62
|
+
return imageUrl;
|
|
63
|
+
};
|
|
64
|
+
var AvatarImage = ({ url, status, onLoad, onError }) => {
|
|
65
|
+
return (0, import_jsx_runtime.jsx)("span", { className: s.AvatarImageContainer, children: (0, import_jsx_runtime.jsx)("img", { src: url, className: s.AvatarImage, "data-loaded": status === "loaded" ? "" : void 0, onLoad, onError, alt: "", role: "presentation" }) });
|
|
66
|
+
};
|
|
67
|
+
var AvatarInitial = ({ name = "" }) => {
|
|
68
|
+
const firstInitial = (0, import_react2.useMemo)(() => name.charAt(0).toUpperCase(), [name]);
|
|
69
|
+
return (0, import_jsx_runtime.jsx)("span", { className: s.AvatarInitial, children: firstInitial });
|
|
70
|
+
};
|
|
71
|
+
var AvatarOverflowCount = ({ count }) => {
|
|
72
|
+
const formattedCount = (0, import_react2.useMemo)(() => {
|
|
73
|
+
return new Intl.NumberFormat("en", {
|
|
74
|
+
notation: "compact",
|
|
75
|
+
compactDisplay: "short",
|
|
76
|
+
maximumFractionDigits: 0
|
|
77
|
+
}).format(count).toLocaleLowerCase();
|
|
78
|
+
}, [count]);
|
|
79
|
+
return (0, import_jsx_runtime.jsxs)("span", { className: s.AvatarOverflowCount, "data-letter-count": formattedCount.length, children: [(0, import_jsx_runtime.jsx)("span", { className: s.AvatarOverflowCountSymbol, children: "+" }), formattedCount] });
|
|
80
|
+
};
|
|
81
|
+
|
|
82
|
+
// ../node_modules/.pnpm/@openai+apps-sdk-ui@0.2.0_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@19._60630c8dcc43ec213b3e346c9e26579b/node_modules/@openai/apps-sdk-ui/dist/es/components/Avatar/AvatarGroup.js
|
|
83
|
+
var import_jsx_runtime2 = __toESM(require_jsx_runtime());
|
|
84
|
+
var import_react3 = __toESM(require_react());
|
|
85
|
+
import s2 from "/home/runner/work/sunpeak/sunpeak/node_modules/.pnpm/@openai+apps-sdk-ui@0.2.0_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@19._60630c8dcc43ec213b3e346c9e26579b/node_modules/@openai/apps-sdk-ui/dist/es/components/Avatar/AvatarGroup.module.css";
|
|
86
|
+
var AvatarGroup = ({ className, stack = "start", size, children }) => {
|
|
87
|
+
const childrenArray = import_react3.Children.toArray(children);
|
|
88
|
+
const maybeReversedChildren = stack === "start" ? childrenArray.slice().reverse() : childrenArray;
|
|
89
|
+
return (0, import_jsx_runtime2.jsx)("div", { className: clsx_default(s2.Group, className), "data-stack": stack, style: toCssVariables({
|
|
90
|
+
"avatar-size": size
|
|
91
|
+
}), children: maybeReversedChildren.map((child) => (0, import_react3.isValidElement)(child) ? (0, import_react3.cloneElement)(child) : child) });
|
|
92
|
+
};
|
|
93
|
+
export {
|
|
94
|
+
Avatar,
|
|
95
|
+
AvatarGroup
|
|
96
|
+
};
|
|
97
|
+
//# sourceMappingURL=@openai_apps-sdk-ui_components_Avatar.js.map
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../../../node_modules/.pnpm/@openai+apps-sdk-ui@0.2.0_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@19._60630c8dcc43ec213b3e346c9e26579b/node_modules/@openai/apps-sdk-ui/src/components/Avatar/Avatar.tsx", "../../../../node_modules/.pnpm/@openai+apps-sdk-ui@0.2.0_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@19._60630c8dcc43ec213b3e346c9e26579b/node_modules/@openai/apps-sdk-ui/src/components/Avatar/AvatarGroup.tsx"],
|
|
4
|
+
"sourcesContent": ["\"use client\"\n\nimport clsx from \"clsx\"\nimport { useMemo, useState } from \"react\"\nimport { toCssVariables } from \"../../lib/helpers\"\nimport { type SemanticColors, type Variants } from \"../../types\"\nimport s from \"./Avatar.module.css\"\n\ntype ImageStatus = undefined | \"error\" | \"loaded\"\n\nexport type AvatarProps = {\n /** Class name applied to the avatar */\n className?: string\n /** Size of the avatar's width & height, in pixels. */\n size?: number\n /** Display a formatted count of overflow objects. */\n overflowCount?: number\n /** Name used to display initials from */\n name?: string\n /**\n * Color used for the avatar\n * @default secondary\n */\n color?: SemanticColors<\"primary\" | \"secondary\" | \"success\" | \"info\" | \"discovery\" | \"danger\">\n /**\n * Style variant of the avatar\n * @default soft\n */\n variant?: Variants<\"soft\" | \"solid\">\n /** URL of the image to display as the avatar */\n imageUrl?: string\n /** Icon to render in the avatar circle */\n Icon?: React.ComponentType<React.SVGProps<SVGSVGElement>>\n /** Optional click handler, which also enables semantic interactions */\n onClick?: () => void\n /** Optional pointer handler, which also enables semantic interactions */\n onPointerDown?: () => void\n}\n\nexport const Avatar = (props: AvatarProps) => {\n // Validate the image url before sending to the component\n const validImageUrl = validateImageUrl(props.imageUrl)\n\n // Keying off of imageUrl allows us to refresh imageStatus automatically through React rendering\n return <AvatarInner {...props} imageUrl={validImageUrl} key={validImageUrl} />\n}\n\nexport const AvatarInner = (props: AvatarProps) => {\n const {\n className,\n size,\n overflowCount,\n name,\n color = \"secondary\",\n variant = \"soft\",\n imageUrl,\n Icon,\n // asChild support\n ...restProps\n } = props\n const [imageStatus, setImageStatus] = useState<ImageStatus>()\n const isInteractive = !!(restProps.onPointerDown || restProps.onClick)\n const TagName = isInteractive ? \"button\" : \"span\"\n\n return (\n <TagName\n className={clsx(s.Avatar, className)}\n style={toCssVariables({\n \"avatar-size\": size,\n })}\n role={isInteractive ? undefined : \"presentation\"}\n data-color={color}\n data-variant={variant}\n type={isInteractive ? \"button\" : undefined}\n {...restProps}\n >\n {(() => {\n if (imageUrl && imageStatus !== \"error\") {\n return (\n <AvatarImage\n status={imageStatus}\n url={imageUrl}\n onError={() => setImageStatus(\"error\")}\n onLoad={() => setImageStatus(\"loaded\")}\n />\n )\n }\n if (Icon) {\n return <Icon className={s.AvatarIcon} />\n }\n return overflowCount ? (\n <AvatarOverflowCount count={overflowCount} />\n ) : (\n <AvatarInitial name={name} />\n )\n })()}\n </TagName>\n )\n}\n\nconst validateImageUrl = (imageUrl?: string): string | undefined => {\n if (!imageUrl) {\n return\n }\n\n // Avoid specific pattern of images from gravatar.com, which use a pair of initials, instead of a single initial.\n if (imageUrl.includes(\"gravatar.com\") && imageUrl.includes(\"cdn.auth0.com\")) {\n return\n }\n\n return imageUrl\n}\n\nconst AvatarImage = ({\n url,\n status,\n onLoad,\n onError,\n}: {\n url: string\n status: ImageStatus\n onLoad: () => void\n onError: () => void\n}) => {\n return (\n <span className={s.AvatarImageContainer}>\n <img\n src={url}\n className={s.AvatarImage}\n data-loaded={status === \"loaded\" ? \"\" : undefined}\n onLoad={onLoad}\n onError={onError}\n alt=\"\"\n role=\"presentation\"\n />\n </span>\n )\n}\n\nconst AvatarInitial = ({ name = \"\" }: { name?: string }) => {\n const firstInitial = useMemo(() => name.charAt(0).toUpperCase(), [name])\n\n return <span className={s.AvatarInitial}>{firstInitial}</span>\n}\n\nconst AvatarOverflowCount = ({ count }: { count: number }) => {\n const formattedCount = useMemo<string>(() => {\n return new Intl.NumberFormat(\"en\", {\n notation: \"compact\",\n compactDisplay: \"short\",\n maximumFractionDigits: 0,\n })\n .format(count)\n .toLocaleLowerCase()\n }, [count])\n\n return (\n <span className={s.AvatarOverflowCount} data-letter-count={formattedCount.length}>\n <span className={s.AvatarOverflowCountSymbol}>+</span>\n {formattedCount}\n </span>\n )\n}\n", "import clsx from \"clsx\"\nimport { Children, cloneElement, isValidElement, type ReactNode } from \"react\"\nimport { toCssVariables } from \"../../lib/helpers\"\nimport s from \"./AvatarGroup.module.css\"\n\nexport type AvatarGroupProps = {\n /** Class name passed to the group container */\n className?: string\n /**\n * Determines stacking layer order\n * @default start\n */\n stack?: \"start\" | \"end\"\n /** Size all avatars in the group, in pixels. */\n size?: number\n children: ReactNode\n}\n\nexport const AvatarGroup = ({ className, stack = \"start\", size, children }: AvatarGroupProps) => {\n const childrenArray = Children.toArray(children)\n // Conditionally reverse the array depending on desired stacking priority\n const maybeReversedChildren = stack === \"start\" ? childrenArray.slice().reverse() : childrenArray\n\n return (\n <div\n className={clsx(s.Group, className)}\n data-stack={stack}\n style={toCssVariables({\n \"avatar-size\": size,\n })}\n >\n {maybeReversedChildren.map((child) => (isValidElement(child) ? cloneElement(child) : child))}\n </div>\n )\n}\n"],
|
|
5
|
+
"mappings": "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",
|
|
6
|
+
"names": ["import_react", "_createElement", "_jsx", "_jsxs", "import_react", "s", "_jsx"]
|
|
7
|
+
}
|
|
@@ -2,13 +2,13 @@ import {
|
|
|
2
2
|
Button,
|
|
3
3
|
ButtonLink,
|
|
4
4
|
CopyButton
|
|
5
|
-
} from "./chunk-
|
|
5
|
+
} from "./chunk-LR7NKCX5.js";
|
|
6
6
|
import "./chunk-YOJ6QPGS.js";
|
|
7
|
-
import "./chunk-BAG6OO6S.js";
|
|
8
|
-
import "./chunk-XB525PXG.js";
|
|
9
7
|
import "./chunk-QPJAV452.js";
|
|
8
|
+
import "./chunk-BAG6OO6S.js";
|
|
10
9
|
import "./chunk-EGRHWZRV.js";
|
|
11
10
|
import "./chunk-CNYJBM5F.js";
|
|
11
|
+
import "./chunk-XB525PXG.js";
|
|
12
12
|
import "./chunk-PTVT3RFX.js";
|
|
13
13
|
import "./chunk-4TLBUCVB.js";
|
|
14
14
|
import "./chunk-ILHRZGIS.js";
|
|
@@ -5,11 +5,11 @@ import {
|
|
|
5
5
|
handlePressableMouseEnter,
|
|
6
6
|
waitForAnimationFrame
|
|
7
7
|
} from "./chunk-BAG6OO6S.js";
|
|
8
|
+
import "./chunk-EGRHWZRV.js";
|
|
8
9
|
import {
|
|
9
10
|
dist_exports4 as dist_exports
|
|
10
11
|
} from "./chunk-SGWD4VEU.js";
|
|
11
12
|
import "./chunk-KFGKZMLK.js";
|
|
12
|
-
import "./chunk-EGRHWZRV.js";
|
|
13
13
|
import {
|
|
14
14
|
clsx_default
|
|
15
15
|
} from "./chunk-CNYJBM5F.js";
|
|
@@ -1,23 +1,33 @@
|
|
|
1
|
+
import {
|
|
2
|
+
Input
|
|
3
|
+
} from "./chunk-CQ3GYAYB.js";
|
|
1
4
|
import {
|
|
2
5
|
Button,
|
|
3
6
|
LoadingIndicator,
|
|
4
7
|
TransitionGroup
|
|
5
|
-
} from "./chunk-
|
|
8
|
+
} from "./chunk-LR7NKCX5.js";
|
|
6
9
|
import {
|
|
7
10
|
useTimeout
|
|
8
11
|
} from "./chunk-YOJ6QPGS.js";
|
|
12
|
+
import {
|
|
13
|
+
o
|
|
14
|
+
} from "./chunk-QPJAV452.js";
|
|
9
15
|
import {
|
|
10
16
|
handlePressableMouseEnter,
|
|
11
17
|
preventDefaultHandler,
|
|
12
18
|
toCssVariables,
|
|
13
19
|
waitForAnimationFrame
|
|
14
20
|
} from "./chunk-BAG6OO6S.js";
|
|
21
|
+
import "./chunk-EGRHWZRV.js";
|
|
15
22
|
import {
|
|
16
23
|
dist_exports,
|
|
17
24
|
dist_exports3 as dist_exports2,
|
|
18
25
|
dist_exports5 as dist_exports3
|
|
19
26
|
} from "./chunk-SGWD4VEU.js";
|
|
20
27
|
import "./chunk-KFGKZMLK.js";
|
|
28
|
+
import {
|
|
29
|
+
clsx_default
|
|
30
|
+
} from "./chunk-CNYJBM5F.js";
|
|
21
31
|
import {
|
|
22
32
|
Check_default,
|
|
23
33
|
ChevronDownVector_default,
|
|
@@ -26,16 +36,6 @@ import {
|
|
|
26
36
|
Search_default,
|
|
27
37
|
X_default
|
|
28
38
|
} from "./chunk-XB525PXG.js";
|
|
29
|
-
import {
|
|
30
|
-
Input
|
|
31
|
-
} from "./chunk-CQ3GYAYB.js";
|
|
32
|
-
import {
|
|
33
|
-
o
|
|
34
|
-
} from "./chunk-QPJAV452.js";
|
|
35
|
-
import "./chunk-EGRHWZRV.js";
|
|
36
|
-
import {
|
|
37
|
-
clsx_default
|
|
38
|
-
} from "./chunk-CNYJBM5F.js";
|
|
39
39
|
import {
|
|
40
40
|
require_jsx_runtime
|
|
41
41
|
} from "./chunk-PTVT3RFX.js";
|
|
@@ -1,143 +1,155 @@
|
|
|
1
1
|
{
|
|
2
|
-
"hash": "
|
|
2
|
+
"hash": "dae09673",
|
|
3
3
|
"configHash": "851f7cb4",
|
|
4
|
-
"lockfileHash": "
|
|
5
|
-
"browserHash": "
|
|
4
|
+
"lockfileHash": "6a28c6f3",
|
|
5
|
+
"browserHash": "8381547e",
|
|
6
6
|
"optimized": {
|
|
7
7
|
"react": {
|
|
8
8
|
"src": "../../../../node_modules/.pnpm/react@19.2.0/node_modules/react/index.js",
|
|
9
9
|
"file": "react.js",
|
|
10
|
-
"fileHash": "
|
|
10
|
+
"fileHash": "a6f63993",
|
|
11
11
|
"needsInterop": true
|
|
12
12
|
},
|
|
13
13
|
"react-dom": {
|
|
14
14
|
"src": "../../../../node_modules/.pnpm/react-dom@19.2.0_react@19.2.0/node_modules/react-dom/index.js",
|
|
15
15
|
"file": "react-dom.js",
|
|
16
|
-
"fileHash": "
|
|
16
|
+
"fileHash": "9f45c691",
|
|
17
17
|
"needsInterop": true
|
|
18
18
|
},
|
|
19
19
|
"react/jsx-dev-runtime": {
|
|
20
20
|
"src": "../../../../node_modules/.pnpm/react@19.2.0/node_modules/react/jsx-dev-runtime.js",
|
|
21
21
|
"file": "react_jsx-dev-runtime.js",
|
|
22
|
-
"fileHash": "
|
|
22
|
+
"fileHash": "2d1fa3b5",
|
|
23
23
|
"needsInterop": true
|
|
24
24
|
},
|
|
25
25
|
"react/jsx-runtime": {
|
|
26
26
|
"src": "../../../../node_modules/.pnpm/react@19.2.0/node_modules/react/jsx-runtime.js",
|
|
27
27
|
"file": "react_jsx-runtime.js",
|
|
28
|
-
"fileHash": "
|
|
28
|
+
"fileHash": "6d6cf47a",
|
|
29
29
|
"needsInterop": true
|
|
30
30
|
},
|
|
31
|
+
"@openai/apps-sdk-ui/components/Avatar": {
|
|
32
|
+
"src": "../../../../node_modules/.pnpm/@openai+apps-sdk-ui@0.2.0_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@19._60630c8dcc43ec213b3e346c9e26579b/node_modules/@openai/apps-sdk-ui/dist/es/components/Avatar/index.js",
|
|
33
|
+
"file": "@openai_apps-sdk-ui_components_Avatar.js",
|
|
34
|
+
"fileHash": "155266ed",
|
|
35
|
+
"needsInterop": false
|
|
36
|
+
},
|
|
31
37
|
"@openai/apps-sdk-ui/components/Button": {
|
|
32
38
|
"src": "../../../../node_modules/.pnpm/@openai+apps-sdk-ui@0.2.0_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@19._60630c8dcc43ec213b3e346c9e26579b/node_modules/@openai/apps-sdk-ui/dist/es/components/Button/index.js",
|
|
33
39
|
"file": "@openai_apps-sdk-ui_components_Button.js",
|
|
34
|
-
"fileHash": "
|
|
40
|
+
"fileHash": "1cd5ff9e",
|
|
35
41
|
"needsInterop": false
|
|
36
42
|
},
|
|
37
43
|
"@openai/apps-sdk-ui/components/Checkbox": {
|
|
38
44
|
"src": "../../../../node_modules/.pnpm/@openai+apps-sdk-ui@0.2.0_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@19._60630c8dcc43ec213b3e346c9e26579b/node_modules/@openai/apps-sdk-ui/dist/es/components/Checkbox/index.js",
|
|
39
45
|
"file": "@openai_apps-sdk-ui_components_Checkbox.js",
|
|
40
|
-
"fileHash": "
|
|
46
|
+
"fileHash": "e4216059",
|
|
41
47
|
"needsInterop": false
|
|
42
48
|
},
|
|
43
49
|
"@openai/apps-sdk-ui/components/Icon": {
|
|
44
50
|
"src": "../../../../node_modules/.pnpm/@openai+apps-sdk-ui@0.2.0_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@19._60630c8dcc43ec213b3e346c9e26579b/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/index.js",
|
|
45
51
|
"file": "@openai_apps-sdk-ui_components_Icon.js",
|
|
46
|
-
"fileHash": "
|
|
52
|
+
"fileHash": "af5a5510",
|
|
47
53
|
"needsInterop": false
|
|
48
54
|
},
|
|
49
55
|
"@openai/apps-sdk-ui/components/Input": {
|
|
50
56
|
"src": "../../../../node_modules/.pnpm/@openai+apps-sdk-ui@0.2.0_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@19._60630c8dcc43ec213b3e346c9e26579b/node_modules/@openai/apps-sdk-ui/dist/es/components/Input/index.js",
|
|
51
57
|
"file": "@openai_apps-sdk-ui_components_Input.js",
|
|
52
|
-
"fileHash": "
|
|
58
|
+
"fileHash": "b9e173ab",
|
|
53
59
|
"needsInterop": false
|
|
54
60
|
},
|
|
55
61
|
"@openai/apps-sdk-ui/components/SegmentedControl": {
|
|
56
62
|
"src": "../../../../node_modules/.pnpm/@openai+apps-sdk-ui@0.2.0_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@19._60630c8dcc43ec213b3e346c9e26579b/node_modules/@openai/apps-sdk-ui/dist/es/components/SegmentedControl/index.js",
|
|
57
63
|
"file": "@openai_apps-sdk-ui_components_SegmentedControl.js",
|
|
58
|
-
"fileHash": "
|
|
64
|
+
"fileHash": "55a34be0",
|
|
59
65
|
"needsInterop": false
|
|
60
66
|
},
|
|
61
67
|
"@openai/apps-sdk-ui/components/Select": {
|
|
62
68
|
"src": "../../../../node_modules/.pnpm/@openai+apps-sdk-ui@0.2.0_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@19._60630c8dcc43ec213b3e346c9e26579b/node_modules/@openai/apps-sdk-ui/dist/es/components/Select/index.js",
|
|
63
69
|
"file": "@openai_apps-sdk-ui_components_Select.js",
|
|
64
|
-
"fileHash": "
|
|
70
|
+
"fileHash": "c1f3f277",
|
|
65
71
|
"needsInterop": false
|
|
66
72
|
},
|
|
67
73
|
"@openai/apps-sdk-ui/components/Textarea": {
|
|
68
74
|
"src": "../../../../node_modules/.pnpm/@openai+apps-sdk-ui@0.2.0_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@19._60630c8dcc43ec213b3e346c9e26579b/node_modules/@openai/apps-sdk-ui/dist/es/components/Textarea/index.js",
|
|
69
75
|
"file": "@openai_apps-sdk-ui_components_Textarea.js",
|
|
70
|
-
"fileHash": "
|
|
76
|
+
"fileHash": "116e5d56",
|
|
71
77
|
"needsInterop": false
|
|
72
78
|
},
|
|
73
79
|
"@openai/apps-sdk-ui/theme": {
|
|
74
80
|
"src": "../../../../node_modules/.pnpm/@openai+apps-sdk-ui@0.2.0_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@19._60630c8dcc43ec213b3e346c9e26579b/node_modules/@openai/apps-sdk-ui/dist/es/lib/theme.js",
|
|
75
81
|
"file": "@openai_apps-sdk-ui_theme.js",
|
|
76
|
-
"fileHash": "
|
|
82
|
+
"fileHash": "d28c52a6",
|
|
77
83
|
"needsInterop": false
|
|
78
84
|
},
|
|
79
85
|
"clsx": {
|
|
80
86
|
"src": "../../../../node_modules/.pnpm/clsx@2.1.1/node_modules/clsx/dist/clsx.mjs",
|
|
81
87
|
"file": "clsx.js",
|
|
82
|
-
"fileHash": "
|
|
88
|
+
"fileHash": "f5594ba0",
|
|
83
89
|
"needsInterop": false
|
|
84
90
|
},
|
|
85
91
|
"embla-carousel-react": {
|
|
86
92
|
"src": "../../../../node_modules/.pnpm/embla-carousel-react@8.6.0_react@19.2.0/node_modules/embla-carousel-react/esm/embla-carousel-react.esm.js",
|
|
87
93
|
"file": "embla-carousel-react.js",
|
|
88
|
-
"fileHash": "
|
|
94
|
+
"fileHash": "461563cb",
|
|
89
95
|
"needsInterop": false
|
|
90
96
|
},
|
|
91
97
|
"embla-carousel-wheel-gestures": {
|
|
92
98
|
"src": "../../../../node_modules/.pnpm/embla-carousel-wheel-gestures@8.1.0_embla-carousel@8.6.0/node_modules/embla-carousel-wheel-gestures/dist/embla-carousel-wheel-gestures.esm.js",
|
|
93
99
|
"file": "embla-carousel-wheel-gestures.js",
|
|
94
|
-
"fileHash": "
|
|
100
|
+
"fileHash": "ec9add1b",
|
|
95
101
|
"needsInterop": false
|
|
96
102
|
},
|
|
103
|
+
"mapbox-gl": {
|
|
104
|
+
"src": "../../../../node_modules/.pnpm/mapbox-gl@3.17.0/node_modules/mapbox-gl/dist/mapbox-gl.js",
|
|
105
|
+
"file": "mapbox-gl.js",
|
|
106
|
+
"fileHash": "7520fb75",
|
|
107
|
+
"needsInterop": true
|
|
108
|
+
},
|
|
97
109
|
"react-dom/client": {
|
|
98
110
|
"src": "../../../../node_modules/.pnpm/react-dom@19.2.0_react@19.2.0/node_modules/react-dom/client.js",
|
|
99
111
|
"file": "react-dom_client.js",
|
|
100
|
-
"fileHash": "
|
|
112
|
+
"fileHash": "9a7ac990",
|
|
101
113
|
"needsInterop": true
|
|
102
114
|
},
|
|
103
115
|
"tailwind-merge": {
|
|
104
116
|
"src": "../../../../node_modules/.pnpm/tailwind-merge@3.4.0/node_modules/tailwind-merge/dist/bundle-mjs.mjs",
|
|
105
117
|
"file": "tailwind-merge.js",
|
|
106
|
-
"fileHash": "
|
|
118
|
+
"fileHash": "bc54e38f",
|
|
107
119
|
"needsInterop": false
|
|
108
120
|
}
|
|
109
121
|
},
|
|
110
122
|
"chunks": {
|
|
111
|
-
"chunk-
|
|
112
|
-
"file": "chunk-
|
|
123
|
+
"chunk-CQ3GYAYB": {
|
|
124
|
+
"file": "chunk-CQ3GYAYB.js"
|
|
125
|
+
},
|
|
126
|
+
"chunk-LR7NKCX5": {
|
|
127
|
+
"file": "chunk-LR7NKCX5.js"
|
|
113
128
|
},
|
|
114
129
|
"chunk-YOJ6QPGS": {
|
|
115
130
|
"file": "chunk-YOJ6QPGS.js"
|
|
116
131
|
},
|
|
132
|
+
"chunk-QPJAV452": {
|
|
133
|
+
"file": "chunk-QPJAV452.js"
|
|
134
|
+
},
|
|
117
135
|
"chunk-BAG6OO6S": {
|
|
118
136
|
"file": "chunk-BAG6OO6S.js"
|
|
119
137
|
},
|
|
138
|
+
"chunk-EGRHWZRV": {
|
|
139
|
+
"file": "chunk-EGRHWZRV.js"
|
|
140
|
+
},
|
|
120
141
|
"chunk-SGWD4VEU": {
|
|
121
142
|
"file": "chunk-SGWD4VEU.js"
|
|
122
143
|
},
|
|
123
144
|
"chunk-KFGKZMLK": {
|
|
124
145
|
"file": "chunk-KFGKZMLK.js"
|
|
125
146
|
},
|
|
126
|
-
"chunk-XB525PXG": {
|
|
127
|
-
"file": "chunk-XB525PXG.js"
|
|
128
|
-
},
|
|
129
|
-
"chunk-CQ3GYAYB": {
|
|
130
|
-
"file": "chunk-CQ3GYAYB.js"
|
|
131
|
-
},
|
|
132
|
-
"chunk-QPJAV452": {
|
|
133
|
-
"file": "chunk-QPJAV452.js"
|
|
134
|
-
},
|
|
135
|
-
"chunk-EGRHWZRV": {
|
|
136
|
-
"file": "chunk-EGRHWZRV.js"
|
|
137
|
-
},
|
|
138
147
|
"chunk-CNYJBM5F": {
|
|
139
148
|
"file": "chunk-CNYJBM5F.js"
|
|
140
149
|
},
|
|
150
|
+
"chunk-XB525PXG": {
|
|
151
|
+
"file": "chunk-XB525PXG.js"
|
|
152
|
+
},
|
|
141
153
|
"chunk-PTVT3RFX": {
|
|
142
154
|
"file": "chunk-PTVT3RFX.js"
|
|
143
155
|
},
|
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
useTimeout
|
|
3
3
|
} from "./chunk-YOJ6QPGS.js";
|
|
4
|
+
import {
|
|
5
|
+
o
|
|
6
|
+
} from "./chunk-QPJAV452.js";
|
|
4
7
|
import {
|
|
5
8
|
handlePressableMouseEnter,
|
|
6
9
|
isDev,
|
|
@@ -12,16 +15,13 @@ import {
|
|
|
12
15
|
toTransformProperty,
|
|
13
16
|
waitForAnimationFrame
|
|
14
17
|
} from "./chunk-BAG6OO6S.js";
|
|
18
|
+
import {
|
|
19
|
+
clsx_default
|
|
20
|
+
} from "./chunk-CNYJBM5F.js";
|
|
15
21
|
import {
|
|
16
22
|
Check_default,
|
|
17
23
|
Copy_default
|
|
18
24
|
} from "./chunk-XB525PXG.js";
|
|
19
|
-
import {
|
|
20
|
-
o
|
|
21
|
-
} from "./chunk-QPJAV452.js";
|
|
22
|
-
import {
|
|
23
|
-
clsx_default
|
|
24
|
-
} from "./chunk-CNYJBM5F.js";
|
|
25
25
|
import {
|
|
26
26
|
require_jsx_runtime
|
|
27
27
|
} from "./chunk-PTVT3RFX.js";
|
|
@@ -625,4 +625,4 @@ export {
|
|
|
625
625
|
ButtonLink,
|
|
626
626
|
CopyButton
|
|
627
627
|
};
|
|
628
|
-
//# sourceMappingURL=chunk-
|
|
628
|
+
//# sourceMappingURL=chunk-LR7NKCX5.js.map
|