@chrryai/chrry 1.3.12 → 1.3.14

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.
@@ -1,3 +1,7 @@
1
+ @use "./breakpoints.scss";
2
+ @use "./utils.scss";
3
+ @use "./toRem.scss";
4
+
1
5
  .main {
2
6
  display: flex;
3
7
  flex-direction: column;
@@ -60,14 +64,14 @@
60
64
  }
61
65
 
62
66
  &.counting {
63
- border: 1px solid var(--accent-3);
67
+ border: 1px solid var(--accent-4);
68
+ box-shadow: 0 0 toRem.toRem(5) var(--accent-4);
64
69
 
65
70
  /* border-color: hsl(120 60% 50%); */
66
- box-shadow: var(--shadow-glow);
67
71
  }
68
72
 
69
73
  &.paused {
70
- border: 1px solid var(--accent-1);
74
+ border: 1px solid var(--orange-500);
71
75
  }
72
76
 
73
77
  &.finished {
@@ -77,7 +81,7 @@
77
81
  }
78
82
 
79
83
  .pauseButton {
80
- border: 1px solid var(--accent-3) !important;
84
+ border: 1px solid var(--accent-4) !important;
81
85
  }
82
86
 
83
87
  .additionalSettings {
@@ -390,7 +394,8 @@
390
394
  justify-content: center;
391
395
  color: var(--shade-7);
392
396
  margin-bottom: 13px;
393
- margin-top: 8px;
397
+
398
+ margin-top: -5px;
394
399
  gap: 10px;
395
400
 
396
401
  @media (max-width: 450px) {
@@ -540,12 +545,12 @@
540
545
  border: 1px solid var(--accent-1);
541
546
 
542
547
  &.counting {
543
- border: 1px solid var(--accent-3);
544
- box-shadow: var(--shadow-glow);
548
+ border: 1px solid var(--accent-4);
549
+ box-shadow: 0 0 toRem.toRem(5) var(--accent-4);
545
550
  }
546
551
 
547
552
  &.paused {
548
- border: 1px solid var(--accent-1);
553
+ border: 1px solid var(--orange-500);
549
554
  }
550
555
 
551
556
  &.finished {
@@ -10,7 +10,7 @@
10
10
  max-width: toRem.toRem(420);
11
11
  border-radius: var(--radius);
12
12
  font-size: toRem.toRem(15);
13
- margin: toRem.toRem(5) auto toRem.toRem(15) auto;
13
+ margin: toRem.toRem(10) auto toRem.toRem(15) auto;
14
14
  animation: slideUp 0.4s ease forwards;
15
15
  position: relative;
16
16
 
@@ -1,3 +1,5 @@
1
+ @use "./toRem.scss";
2
+
1
3
  .moodReports {
2
4
  display: flex;
3
5
  flex-direction: column;
@@ -10,6 +12,8 @@
10
12
  margin: 0 auto;
11
13
  max-width: 500px;
12
14
 
15
+ font-size: toRem.toRem(13);
16
+
13
17
  @media (min-width: 800px) {
14
18
  min-width: 500px;
15
19
  }
@@ -19,6 +23,7 @@
19
23
  display: flex;
20
24
  flex-direction: row;
21
25
  margin-top: 0;
26
+ margin-bottom: 15px;
22
27
 
23
28
  align-items: center;
24
29
 
@@ -56,8 +56,8 @@
56
56
 
57
57
  .content {
58
58
  padding: 15px 15px 10px 15px;
59
- background-color: var(--background-transparent);
60
- border: 1px solid var(--shade-2-transparent);
59
+ background-color: var(--shade-1);
60
+ border: 1px solid var(--shade-2);
61
61
  border-radius: 20px;
62
62
 
63
63
  animation: slideUp 0.3s ease-in-out;
package/dist/index.d.mts CHANGED
@@ -739,6 +739,7 @@ declare const pageSizes: {
739
739
  apps: number;
740
740
  taskLogs: number;
741
741
  };
742
+ declare const utcToday: Date;
742
743
  declare const getBrowserAPI: () => BrowserAPIType | null;
743
744
  declare const BrowserInstance: BrowserAPIType | null;
744
745
  declare function capitalizeFirstLetter(val: string): string;
@@ -801,7 +802,7 @@ declare const isFirefox: boolean;
801
802
  declare function getFlag({ code }: {
802
803
  code?: string;
803
804
  }): string;
804
- declare const VERSION = "1.3.12";
805
+ declare const VERSION = "1.3.14";
805
806
  type instructionBase = {
806
807
  id: string;
807
808
  title: string;
@@ -1186,7 +1187,7 @@ declare const getImageSrc: ({ app, icon, logo, store, PROD_FRONTEND_URL, src, sl
1186
1187
  showLoading?: boolean;
1187
1188
  dataTestId?: string;
1188
1189
  src?: string;
1189
- logo?: "lifeOS" | "isMagenta" | "isVivid" | "vex" | "chrry" | "blossom";
1190
+ logo?: "lifeOS" | "isMagenta" | "isVivid" | "vex" | "chrry" | "blossom" | "focus";
1190
1191
  icon?: "spaceInvader" | "pacman" | "heart" | "plus" | "hamster" | "frog" | "calendar" | "deepSeek" | "perplexity" | "claude" | "chatGPT" | "gemini" | "flux" | "chrry" | "raspberry" | "strawberry";
1191
1192
  app?: appWithStore;
1192
1193
  width?: number | string;
@@ -1643,4 +1644,4 @@ interface HistoryRouterProviderProps {
1643
1644
  */
1644
1645
  declare function HistoryRouterProvider({ children, }: HistoryRouterProviderProps): React.ReactElement;
1645
1646
 
1646
- export { ADDITIONAL_CREDITS, API_URL, type AiAgent, type AiAgentCapabilities, type ApiActions, BrowserInstance, CHRRY_URL, CREDITS_PRICE, type CalendarEventFormData, Chrry, type CreateCustomAiAgent, FREE_DAYS, FRONTEND_URL, GUEST_TASKS_COUNT, HistoryRouterProvider, MAX_FILE_SIZES, MAX_TOOL_CALLS_PER_MESSAGE, MEMBER_TASKS_COUNT, OWNER_CREDITS, PDF_LIMITS, PLUS_PRICE, PLUS_TASKS_COUNT, PROD_FRONTEND_URL, PROMPT_LIMITS, PRO_PRICE, Sidebar, Store, VERSION, WS_URL, addParam, aiAgentCapabilitiesSchema, aiAgentSchema, apiFetch, type appFormData, appSchema, budgetCategory, capitalizeFirstLetter, checkIsExtension, checkThreadSummaryLimit, createApp, createCalendarEvent, createCustomAiAgentSchema, deleteApp, deleteCalendarEvent, deleteMemories, deleteMessage, deleteSubscription, exampleInstructions, expenseCategory, type expenseCategoryType, exportToGoogleCalendar, extensionSuggestions, generateAppMetadata, getActions, getApps, getBrowserAPI, getBrowserIdentity, getCalendarEvents, getDailyImageLimit, getExampleInstructions, getExtensionUrl, getFlag, getGuest, getHourlyLimit, getImageSrc, getInstructionConfig, getLastMessage, getMetadata, getRedirectURL, getSession, getSlugFromPathname, getThread, getThreadId, getThreads, getUser, getUsers, getWeatherCacheTime, type instructionBase, isCI, isCollaborator, isDeepEqual, isDevelopment, isE2E, isFirefox, isOwner, isSameDay, isValidUsername, isValidUuidV4, pageSizes, removeParam, removeUser, reorderApps, replaceLinks, storage, syncGoogleCalendar, updateApp, updateCalendarEvent, updateCollaboration, updateGuest, updateMessage, updateThread, updateUser, uploadUserImage, useCountdown, useDeviceInfo, useHasHydrated, useLocalStorage, usePWAInstall };
1647
+ export { ADDITIONAL_CREDITS, API_URL, type AiAgent, type AiAgentCapabilities, type ApiActions, BrowserInstance, CHRRY_URL, CREDITS_PRICE, type CalendarEventFormData, Chrry, type CreateCustomAiAgent, FREE_DAYS, FRONTEND_URL, GUEST_TASKS_COUNT, HistoryRouterProvider, MAX_FILE_SIZES, MAX_TOOL_CALLS_PER_MESSAGE, MEMBER_TASKS_COUNT, OWNER_CREDITS, PDF_LIMITS, PLUS_PRICE, PLUS_TASKS_COUNT, PROD_FRONTEND_URL, PROMPT_LIMITS, PRO_PRICE, Sidebar, Store, VERSION, WS_URL, addParam, aiAgentCapabilitiesSchema, aiAgentSchema, apiFetch, type appFormData, appSchema, budgetCategory, capitalizeFirstLetter, checkIsExtension, checkThreadSummaryLimit, createApp, createCalendarEvent, createCustomAiAgentSchema, deleteApp, deleteCalendarEvent, deleteMemories, deleteMessage, deleteSubscription, exampleInstructions, expenseCategory, type expenseCategoryType, exportToGoogleCalendar, extensionSuggestions, generateAppMetadata, getActions, getApps, getBrowserAPI, getBrowserIdentity, getCalendarEvents, getDailyImageLimit, getExampleInstructions, getExtensionUrl, getFlag, getGuest, getHourlyLimit, getImageSrc, getInstructionConfig, getLastMessage, getMetadata, getRedirectURL, getSession, getSlugFromPathname, getThread, getThreadId, getThreads, getUser, getUsers, getWeatherCacheTime, type instructionBase, isCI, isCollaborator, isDeepEqual, isDevelopment, isE2E, isFirefox, isOwner, isSameDay, isValidUsername, isValidUuidV4, pageSizes, removeParam, removeUser, reorderApps, replaceLinks, storage, syncGoogleCalendar, updateApp, updateCalendarEvent, updateCollaboration, updateGuest, updateMessage, updateThread, updateUser, uploadUserImage, useCountdown, useDeviceInfo, useHasHydrated, useLocalStorage, usePWAInstall, utcToday };
package/dist/index.d.ts CHANGED
@@ -739,6 +739,7 @@ declare const pageSizes: {
739
739
  apps: number;
740
740
  taskLogs: number;
741
741
  };
742
+ declare const utcToday: Date;
742
743
  declare const getBrowserAPI: () => BrowserAPIType | null;
743
744
  declare const BrowserInstance: BrowserAPIType | null;
744
745
  declare function capitalizeFirstLetter(val: string): string;
@@ -801,7 +802,7 @@ declare const isFirefox: boolean;
801
802
  declare function getFlag({ code }: {
802
803
  code?: string;
803
804
  }): string;
804
- declare const VERSION = "1.3.12";
805
+ declare const VERSION = "1.3.14";
805
806
  type instructionBase = {
806
807
  id: string;
807
808
  title: string;
@@ -1186,7 +1187,7 @@ declare const getImageSrc: ({ app, icon, logo, store, PROD_FRONTEND_URL, src, sl
1186
1187
  showLoading?: boolean;
1187
1188
  dataTestId?: string;
1188
1189
  src?: string;
1189
- logo?: "lifeOS" | "isMagenta" | "isVivid" | "vex" | "chrry" | "blossom";
1190
+ logo?: "lifeOS" | "isMagenta" | "isVivid" | "vex" | "chrry" | "blossom" | "focus";
1190
1191
  icon?: "spaceInvader" | "pacman" | "heart" | "plus" | "hamster" | "frog" | "calendar" | "deepSeek" | "perplexity" | "claude" | "chatGPT" | "gemini" | "flux" | "chrry" | "raspberry" | "strawberry";
1191
1192
  app?: appWithStore;
1192
1193
  width?: number | string;
@@ -1643,4 +1644,4 @@ interface HistoryRouterProviderProps {
1643
1644
  */
1644
1645
  declare function HistoryRouterProvider({ children, }: HistoryRouterProviderProps): React.ReactElement;
1645
1646
 
1646
- export { ADDITIONAL_CREDITS, API_URL, type AiAgent, type AiAgentCapabilities, type ApiActions, BrowserInstance, CHRRY_URL, CREDITS_PRICE, type CalendarEventFormData, Chrry, type CreateCustomAiAgent, FREE_DAYS, FRONTEND_URL, GUEST_TASKS_COUNT, HistoryRouterProvider, MAX_FILE_SIZES, MAX_TOOL_CALLS_PER_MESSAGE, MEMBER_TASKS_COUNT, OWNER_CREDITS, PDF_LIMITS, PLUS_PRICE, PLUS_TASKS_COUNT, PROD_FRONTEND_URL, PROMPT_LIMITS, PRO_PRICE, Sidebar, Store, VERSION, WS_URL, addParam, aiAgentCapabilitiesSchema, aiAgentSchema, apiFetch, type appFormData, appSchema, budgetCategory, capitalizeFirstLetter, checkIsExtension, checkThreadSummaryLimit, createApp, createCalendarEvent, createCustomAiAgentSchema, deleteApp, deleteCalendarEvent, deleteMemories, deleteMessage, deleteSubscription, exampleInstructions, expenseCategory, type expenseCategoryType, exportToGoogleCalendar, extensionSuggestions, generateAppMetadata, getActions, getApps, getBrowserAPI, getBrowserIdentity, getCalendarEvents, getDailyImageLimit, getExampleInstructions, getExtensionUrl, getFlag, getGuest, getHourlyLimit, getImageSrc, getInstructionConfig, getLastMessage, getMetadata, getRedirectURL, getSession, getSlugFromPathname, getThread, getThreadId, getThreads, getUser, getUsers, getWeatherCacheTime, type instructionBase, isCI, isCollaborator, isDeepEqual, isDevelopment, isE2E, isFirefox, isOwner, isSameDay, isValidUsername, isValidUuidV4, pageSizes, removeParam, removeUser, reorderApps, replaceLinks, storage, syncGoogleCalendar, updateApp, updateCalendarEvent, updateCollaboration, updateGuest, updateMessage, updateThread, updateUser, uploadUserImage, useCountdown, useDeviceInfo, useHasHydrated, useLocalStorage, usePWAInstall };
1647
+ export { ADDITIONAL_CREDITS, API_URL, type AiAgent, type AiAgentCapabilities, type ApiActions, BrowserInstance, CHRRY_URL, CREDITS_PRICE, type CalendarEventFormData, Chrry, type CreateCustomAiAgent, FREE_DAYS, FRONTEND_URL, GUEST_TASKS_COUNT, HistoryRouterProvider, MAX_FILE_SIZES, MAX_TOOL_CALLS_PER_MESSAGE, MEMBER_TASKS_COUNT, OWNER_CREDITS, PDF_LIMITS, PLUS_PRICE, PLUS_TASKS_COUNT, PROD_FRONTEND_URL, PROMPT_LIMITS, PRO_PRICE, Sidebar, Store, VERSION, WS_URL, addParam, aiAgentCapabilitiesSchema, aiAgentSchema, apiFetch, type appFormData, appSchema, budgetCategory, capitalizeFirstLetter, checkIsExtension, checkThreadSummaryLimit, createApp, createCalendarEvent, createCustomAiAgentSchema, deleteApp, deleteCalendarEvent, deleteMemories, deleteMessage, deleteSubscription, exampleInstructions, expenseCategory, type expenseCategoryType, exportToGoogleCalendar, extensionSuggestions, generateAppMetadata, getActions, getApps, getBrowserAPI, getBrowserIdentity, getCalendarEvents, getDailyImageLimit, getExampleInstructions, getExtensionUrl, getFlag, getGuest, getHourlyLimit, getImageSrc, getInstructionConfig, getLastMessage, getMetadata, getRedirectURL, getSession, getSlugFromPathname, getThread, getThreadId, getThreads, getUser, getUsers, getWeatherCacheTime, type instructionBase, isCI, isCollaborator, isDeepEqual, isDevelopment, isE2E, isFirefox, isOwner, isSameDay, isValidUsername, isValidUuidV4, pageSizes, removeParam, removeUser, reorderApps, replaceLinks, storage, syncGoogleCalendar, updateApp, updateCalendarEvent, updateCollaboration, updateGuest, updateMessage, updateThread, updateUser, uploadUserImage, useCountdown, useDeviceInfo, useHasHydrated, useLocalStorage, usePWAInstall, utcToday };