@chrryai/chrry 1.4.94 → 1.4.95
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/Chat.module.scss +1 -1
- package/Messages.module.scss +1 -0
- package/dist/index.js +26 -15
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +26 -15
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/Chat.module.scss
CHANGED
package/Messages.module.scss
CHANGED
package/dist/index.js
CHANGED
|
@@ -732,7 +732,7 @@ function getSiteConfig(hostnameOrMode) {
|
|
|
732
732
|
favicon: "focus",
|
|
733
733
|
mode: "focus",
|
|
734
734
|
slug: "focus",
|
|
735
|
-
version: "26.10.
|
|
735
|
+
version: "26.10.39",
|
|
736
736
|
storeSlug: "blossom",
|
|
737
737
|
name: "Focus",
|
|
738
738
|
domain: "focus.chrry.ai",
|
|
@@ -1902,7 +1902,7 @@ var init_utils = __esm({
|
|
|
1902
1902
|
};
|
|
1903
1903
|
isFirefox = typeof navigator !== "undefined" && navigator?.userAgent?.includes("Firefox");
|
|
1904
1904
|
config = getSiteConfig(getClientHostname());
|
|
1905
|
-
VERSION = config.version || "1.4.
|
|
1905
|
+
VERSION = config.version || "1.4.95";
|
|
1906
1906
|
getSlugFromPathname = (path) => {
|
|
1907
1907
|
return getAppAndStoreSlugs(path, {
|
|
1908
1908
|
defaultAppSlug: config.slug,
|
|
@@ -24068,7 +24068,7 @@ function DataProvider({ children, ...rest }) {
|
|
|
24068
24068
|
const [instructions, setInstructions] = (0, import_react21.useState)([]);
|
|
24069
24069
|
const [affiliateStats, setAffiliateStats] = (0, import_react21.useState)(null);
|
|
24070
24070
|
const [loadingAffiliateStats, setLoadingAffiliateStats] = (0, import_react21.useState)(false);
|
|
24071
|
-
const VERSION4 = "1.4.
|
|
24071
|
+
const VERSION4 = "1.4.95";
|
|
24072
24072
|
const [weather, setWeather] = useLocalStorage2("weather", user?.weather || guest?.weather || void 0);
|
|
24073
24073
|
const {
|
|
24074
24074
|
API_URL: API_URL2,
|
|
@@ -36225,7 +36225,7 @@ var init_Chat_styles = __esm({
|
|
|
36225
36225
|
transform: "translateX(-50%)"
|
|
36226
36226
|
},
|
|
36227
36227
|
standalone: {
|
|
36228
|
-
|
|
36228
|
+
bottom: 15
|
|
36229
36229
|
},
|
|
36230
36230
|
drawerOpen: {
|
|
36231
36231
|
left: "calc(50% + 7.65625rem)"
|
|
@@ -46442,7 +46442,8 @@ var init_Messages_styles = __esm({
|
|
|
46442
46442
|
marginTop: 25,
|
|
46443
46443
|
gap: 10,
|
|
46444
46444
|
color: "var(--shade-6)",
|
|
46445
|
-
flexWrap: "wrap"
|
|
46445
|
+
flexWrap: "wrap",
|
|
46446
|
+
flexDirection: "column"
|
|
46446
46447
|
},
|
|
46447
46448
|
loading: {
|
|
46448
46449
|
display: "flex",
|
|
@@ -46644,17 +46645,27 @@ var init_Messages = __esm({
|
|
|
46644
46645
|
}
|
|
46645
46646
|
),
|
|
46646
46647
|
t5("Enable Character Profiles")
|
|
46647
|
-
) : null), showLoadingCharacterProfile ? /* @__PURE__ */ React.createElement(
|
|
46648
|
-
|
|
46648
|
+
) : null), showLoadingCharacterProfile ? /* @__PURE__ */ React.createElement(
|
|
46649
|
+
Div,
|
|
46649
46650
|
{
|
|
46650
|
-
style: {
|
|
46651
|
-
|
|
46652
|
-
|
|
46653
|
-
|
|
46654
|
-
|
|
46655
|
-
|
|
46656
|
-
|
|
46657
|
-
|
|
46651
|
+
style: {
|
|
46652
|
+
...styles4.characterProfileContainer.style,
|
|
46653
|
+
flexDirection: "row"
|
|
46654
|
+
}
|
|
46655
|
+
},
|
|
46656
|
+
/* @__PURE__ */ React.createElement(
|
|
46657
|
+
Video_web_default,
|
|
46658
|
+
{
|
|
46659
|
+
style: { ...styles4.video.style },
|
|
46660
|
+
src: `${FRONTEND_URL2}/video/blob.mp4`,
|
|
46661
|
+
autoPlay: true,
|
|
46662
|
+
loop: true,
|
|
46663
|
+
muted: true,
|
|
46664
|
+
playsInline: true
|
|
46665
|
+
}
|
|
46666
|
+
),
|
|
46667
|
+
t5("Generating character tags...")
|
|
46668
|
+
) : characterProfile && characterProfilesEnabled && (isOwner_default(characterProfile, {
|
|
46658
46669
|
userId: user?.id,
|
|
46659
46670
|
guestId: guest?.id
|
|
46660
46671
|
}) || characterProfile.visibility === "public") ? /* @__PURE__ */ React.createElement(Div, { style: { ...styles4.characterProfileContainer.style } }, /* @__PURE__ */ React.createElement(Div, { style: { ...styles4.tags.style } }, characterProfile.tags?.join(", ")), /* @__PURE__ */ React.createElement(
|