@liip/liipgpt 3.1.13 → 3.1.15
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/button/liipgpt-button.iife.js +26 -26
- package/chat/liipgpt-chat.iife.js +43 -43
- package/config/index.cjs +7 -1
- package/config/index.d.ts +84 -40
- package/config/index.js +7 -1
- package/configurator/_app/env.js +1 -1
- package/configurator/_app/immutable/chunks/C4smb4KD.js +279 -0
- package/configurator/_app/immutable/chunks/{B5b20vC5.js → DFZgwopc.js} +1 -1
- package/configurator/_app/immutable/chunks/DGvlRJ57.js +3 -0
- package/configurator/_app/immutable/chunks/{BmkBsBqo.js → DJ5qEkX6.js} +1 -1
- package/configurator/_app/immutable/chunks/{B0YFyw9m.js → DLsBQsIv.js} +1 -1
- package/configurator/_app/immutable/chunks/{BTlA0abw.js → DmhyMKU0.js} +1 -1
- package/configurator/_app/immutable/chunks/{wsC8zKOo.js → DvkaH2qk.js} +1 -1
- package/configurator/_app/immutable/chunks/{BW5HGSQX.js → Os9aTwtD.js} +1 -1
- package/configurator/_app/immutable/chunks/RKW_MteT.js +108 -0
- package/configurator/_app/immutable/chunks/Zg1oIjWv.js +143 -0
- package/configurator/_app/immutable/entry/{app.teVt-L9q.js → app.BOsUTo3n.js} +2 -2
- package/configurator/_app/immutable/entry/start.A9W2Zmif.js +1 -0
- package/configurator/_app/immutable/nodes/{0.CXBIpwD-.js → 0.D4OuOG-2.js} +1 -1
- package/configurator/_app/immutable/nodes/{1.BVvu-oNU.js → 1.DiYC3-E5.js} +1 -1
- package/configurator/_app/immutable/nodes/{2.D0EYnTHa.js → 2.Dn6Pm4Oa.js} +3 -3
- package/configurator/_app/immutable/nodes/{3.metSClos.js → 3.D0P8O9OU.js} +1 -1
- package/configurator/_app/version.json +1 -1
- package/configurator/index.html +7 -7
- package/configurator/sidebar.html +7 -7
- package/index.cjs +7 -1
- package/index.d.ts +162 -66
- package/index.js +7 -1
- package/package.json +1 -1
- package/configurator/_app/immutable/chunks/Bui4vWcG.js +0 -108
- package/configurator/_app/immutable/chunks/CDPxb1-d.js +0 -279
- package/configurator/_app/immutable/chunks/D7pwWfbv.js +0 -143
- package/configurator/_app/immutable/chunks/Dti0Jy1F.js +0 -3
- package/configurator/_app/immutable/entry/start.DdzAWzJ9.js +0 -1
package/config/index.cjs
CHANGED
|
@@ -4087,7 +4087,8 @@ var svgsSchema = exports_external.record(exports_external.enum([
|
|
|
4087
4087
|
"sources",
|
|
4088
4088
|
"model",
|
|
4089
4089
|
"checkbox",
|
|
4090
|
-
"warning"
|
|
4090
|
+
"warning",
|
|
4091
|
+
"headerLogo"
|
|
4091
4092
|
]), exports_external.string());
|
|
4092
4093
|
var tokensSchema = exports_external.object({
|
|
4093
4094
|
font: fontSchema.optional(),
|
|
@@ -4320,6 +4321,11 @@ var translationSchema = exports_external.object({
|
|
|
4320
4321
|
ariaSettingsRegion: exports_external.string(),
|
|
4321
4322
|
ariaReferencesRegion: exports_external.string(),
|
|
4322
4323
|
ariaFlyoutRegion: exports_external.string(),
|
|
4324
|
+
ariaSelected: exports_external.string(),
|
|
4325
|
+
ariaUnselected: exports_external.string(),
|
|
4326
|
+
ariaAllSelected: exports_external.string(),
|
|
4327
|
+
ariaAllUnselected: exports_external.string(),
|
|
4328
|
+
ariaAllReseted: exports_external.string(),
|
|
4323
4329
|
popups: exports_external.array(popup).optional(),
|
|
4324
4330
|
termsTitle: exports_external.string().optional(),
|
|
4325
4331
|
termsContent: exports_external.string().optional(),
|
package/config/index.d.ts
CHANGED
|
@@ -1760,6 +1760,11 @@ declare const translationSchema: z.ZodObject<{
|
|
|
1760
1760
|
ariaSettingsRegion: z.ZodString;
|
|
1761
1761
|
ariaReferencesRegion: z.ZodString;
|
|
1762
1762
|
ariaFlyoutRegion: z.ZodString;
|
|
1763
|
+
ariaSelected: z.ZodString;
|
|
1764
|
+
ariaUnselected: z.ZodString;
|
|
1765
|
+
ariaAllSelected: z.ZodString;
|
|
1766
|
+
ariaAllUnselected: z.ZodString;
|
|
1767
|
+
ariaAllReseted: z.ZodString;
|
|
1763
1768
|
popups: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1764
1769
|
hash: z.ZodString;
|
|
1765
1770
|
title: z.ZodString;
|
|
@@ -1871,6 +1876,11 @@ declare const translationSchema: z.ZodObject<{
|
|
|
1871
1876
|
ariaSettingsRegion: string;
|
|
1872
1877
|
ariaReferencesRegion: string;
|
|
1873
1878
|
ariaFlyoutRegion: string;
|
|
1879
|
+
ariaSelected: string;
|
|
1880
|
+
ariaUnselected: string;
|
|
1881
|
+
ariaAllSelected: string;
|
|
1882
|
+
ariaAllUnselected: string;
|
|
1883
|
+
ariaAllReseted: string;
|
|
1874
1884
|
hideSettings: string;
|
|
1875
1885
|
showSettings: string;
|
|
1876
1886
|
chooseAtLeastOneOption: string;
|
|
@@ -1968,6 +1978,11 @@ declare const translationSchema: z.ZodObject<{
|
|
|
1968
1978
|
ariaSettingsRegion: string;
|
|
1969
1979
|
ariaReferencesRegion: string;
|
|
1970
1980
|
ariaFlyoutRegion: string;
|
|
1981
|
+
ariaSelected: string;
|
|
1982
|
+
ariaUnselected: string;
|
|
1983
|
+
ariaAllSelected: string;
|
|
1984
|
+
ariaAllUnselected: string;
|
|
1985
|
+
ariaAllReseted: string;
|
|
1971
1986
|
hideSettings: string;
|
|
1972
1987
|
showSettings: string;
|
|
1973
1988
|
chooseAtLeastOneOption: string;
|
|
@@ -5719,7 +5734,8 @@ export declare const chatConfigSchema: z.ZodObject<{
|
|
|
5719
5734
|
"sources",
|
|
5720
5735
|
"model",
|
|
5721
5736
|
"checkbox",
|
|
5722
|
-
"warning"
|
|
5737
|
+
"warning",
|
|
5738
|
+
"headerLogo"
|
|
5723
5739
|
]>, z.ZodString>>;
|
|
5724
5740
|
}, "strip", z.ZodTypeAny, {
|
|
5725
5741
|
base?: {
|
|
@@ -5852,7 +5868,7 @@ export declare const chatConfigSchema: z.ZodObject<{
|
|
|
5852
5868
|
borderColor?: string | undefined;
|
|
5853
5869
|
boxShadow?: string | undefined;
|
|
5854
5870
|
}> | undefined;
|
|
5855
|
-
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox" | "warning", string>> | undefined;
|
|
5871
|
+
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox" | "warning" | "headerLogo", string>> | undefined;
|
|
5856
5872
|
}, {
|
|
5857
5873
|
base?: {
|
|
5858
5874
|
boxShadow?: string | undefined;
|
|
@@ -5984,7 +6000,7 @@ export declare const chatConfigSchema: z.ZodObject<{
|
|
|
5984
6000
|
borderColor?: string | undefined;
|
|
5985
6001
|
boxShadow?: string | undefined;
|
|
5986
6002
|
}> | undefined;
|
|
5987
|
-
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox" | "warning", string>> | undefined;
|
|
6003
|
+
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox" | "warning" | "headerLogo", string>> | undefined;
|
|
5988
6004
|
}>>;
|
|
5989
6005
|
}, "strip", z.ZodTypeAny, {
|
|
5990
6006
|
customCSS?: string | undefined;
|
|
@@ -6121,7 +6137,7 @@ export declare const chatConfigSchema: z.ZodObject<{
|
|
|
6121
6137
|
borderColor?: string | undefined;
|
|
6122
6138
|
boxShadow?: string | undefined;
|
|
6123
6139
|
}> | undefined;
|
|
6124
|
-
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox" | "warning", string>> | undefined;
|
|
6140
|
+
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox" | "warning" | "headerLogo", string>> | undefined;
|
|
6125
6141
|
} | undefined;
|
|
6126
6142
|
}, {
|
|
6127
6143
|
customCSS?: string | undefined;
|
|
@@ -6258,7 +6274,7 @@ export declare const chatConfigSchema: z.ZodObject<{
|
|
|
6258
6274
|
borderColor?: string | undefined;
|
|
6259
6275
|
boxShadow?: string | undefined;
|
|
6260
6276
|
}> | undefined;
|
|
6261
|
-
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox" | "warning", string>> | undefined;
|
|
6277
|
+
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox" | "warning" | "headerLogo", string>> | undefined;
|
|
6262
6278
|
} | undefined;
|
|
6263
6279
|
}>>;
|
|
6264
6280
|
dark: z.ZodOptional<z.ZodObject<{
|
|
@@ -6903,7 +6919,8 @@ export declare const chatConfigSchema: z.ZodObject<{
|
|
|
6903
6919
|
"sources",
|
|
6904
6920
|
"model",
|
|
6905
6921
|
"checkbox",
|
|
6906
|
-
"warning"
|
|
6922
|
+
"warning",
|
|
6923
|
+
"headerLogo"
|
|
6907
6924
|
]>, z.ZodString>>;
|
|
6908
6925
|
}, "strip", z.ZodTypeAny, {
|
|
6909
6926
|
base?: {
|
|
@@ -7036,7 +7053,7 @@ export declare const chatConfigSchema: z.ZodObject<{
|
|
|
7036
7053
|
borderColor?: string | undefined;
|
|
7037
7054
|
boxShadow?: string | undefined;
|
|
7038
7055
|
}> | undefined;
|
|
7039
|
-
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox" | "warning", string>> | undefined;
|
|
7056
|
+
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox" | "warning" | "headerLogo", string>> | undefined;
|
|
7040
7057
|
}, {
|
|
7041
7058
|
base?: {
|
|
7042
7059
|
boxShadow?: string | undefined;
|
|
@@ -7168,7 +7185,7 @@ export declare const chatConfigSchema: z.ZodObject<{
|
|
|
7168
7185
|
borderColor?: string | undefined;
|
|
7169
7186
|
boxShadow?: string | undefined;
|
|
7170
7187
|
}> | undefined;
|
|
7171
|
-
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox" | "warning", string>> | undefined;
|
|
7188
|
+
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox" | "warning" | "headerLogo", string>> | undefined;
|
|
7172
7189
|
}>>;
|
|
7173
7190
|
}, "strip", z.ZodTypeAny, {
|
|
7174
7191
|
customCSS?: string | undefined;
|
|
@@ -7305,7 +7322,7 @@ export declare const chatConfigSchema: z.ZodObject<{
|
|
|
7305
7322
|
borderColor?: string | undefined;
|
|
7306
7323
|
boxShadow?: string | undefined;
|
|
7307
7324
|
}> | undefined;
|
|
7308
|
-
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox" | "warning", string>> | undefined;
|
|
7325
|
+
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox" | "warning" | "headerLogo", string>> | undefined;
|
|
7309
7326
|
} | undefined;
|
|
7310
7327
|
}, {
|
|
7311
7328
|
customCSS?: string | undefined;
|
|
@@ -7442,7 +7459,7 @@ export declare const chatConfigSchema: z.ZodObject<{
|
|
|
7442
7459
|
borderColor?: string | undefined;
|
|
7443
7460
|
boxShadow?: string | undefined;
|
|
7444
7461
|
}> | undefined;
|
|
7445
|
-
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox" | "warning", string>> | undefined;
|
|
7462
|
+
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox" | "warning" | "headerLogo", string>> | undefined;
|
|
7446
7463
|
} | undefined;
|
|
7447
7464
|
}>>;
|
|
7448
7465
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -7581,7 +7598,7 @@ export declare const chatConfigSchema: z.ZodObject<{
|
|
|
7581
7598
|
borderColor?: string | undefined;
|
|
7582
7599
|
boxShadow?: string | undefined;
|
|
7583
7600
|
}> | undefined;
|
|
7584
|
-
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox" | "warning", string>> | undefined;
|
|
7601
|
+
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox" | "warning" | "headerLogo", string>> | undefined;
|
|
7585
7602
|
} | undefined;
|
|
7586
7603
|
} | undefined;
|
|
7587
7604
|
dark?: {
|
|
@@ -7719,7 +7736,7 @@ export declare const chatConfigSchema: z.ZodObject<{
|
|
|
7719
7736
|
borderColor?: string | undefined;
|
|
7720
7737
|
boxShadow?: string | undefined;
|
|
7721
7738
|
}> | undefined;
|
|
7722
|
-
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox" | "warning", string>> | undefined;
|
|
7739
|
+
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox" | "warning" | "headerLogo", string>> | undefined;
|
|
7723
7740
|
} | undefined;
|
|
7724
7741
|
} | undefined;
|
|
7725
7742
|
}, {
|
|
@@ -7858,7 +7875,7 @@ export declare const chatConfigSchema: z.ZodObject<{
|
|
|
7858
7875
|
borderColor?: string | undefined;
|
|
7859
7876
|
boxShadow?: string | undefined;
|
|
7860
7877
|
}> | undefined;
|
|
7861
|
-
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox" | "warning", string>> | undefined;
|
|
7878
|
+
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox" | "warning" | "headerLogo", string>> | undefined;
|
|
7862
7879
|
} | undefined;
|
|
7863
7880
|
} | undefined;
|
|
7864
7881
|
dark?: {
|
|
@@ -7996,7 +8013,7 @@ export declare const chatConfigSchema: z.ZodObject<{
|
|
|
7996
8013
|
borderColor?: string | undefined;
|
|
7997
8014
|
boxShadow?: string | undefined;
|
|
7998
8015
|
}> | undefined;
|
|
7999
|
-
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox" | "warning", string>> | undefined;
|
|
8016
|
+
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox" | "warning" | "headerLogo", string>> | undefined;
|
|
8000
8017
|
} | undefined;
|
|
8001
8018
|
} | undefined;
|
|
8002
8019
|
}>>;
|
|
@@ -8223,7 +8240,7 @@ export declare const chatConfigSchema: z.ZodObject<{
|
|
|
8223
8240
|
borderColor?: string | undefined;
|
|
8224
8241
|
boxShadow?: string | undefined;
|
|
8225
8242
|
}> | undefined;
|
|
8226
|
-
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox" | "warning", string>> | undefined;
|
|
8243
|
+
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox" | "warning" | "headerLogo", string>> | undefined;
|
|
8227
8244
|
} | undefined;
|
|
8228
8245
|
} | undefined;
|
|
8229
8246
|
dark?: {
|
|
@@ -8361,7 +8378,7 @@ export declare const chatConfigSchema: z.ZodObject<{
|
|
|
8361
8378
|
borderColor?: string | undefined;
|
|
8362
8379
|
boxShadow?: string | undefined;
|
|
8363
8380
|
}> | undefined;
|
|
8364
|
-
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox" | "warning", string>> | undefined;
|
|
8381
|
+
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox" | "warning" | "headerLogo", string>> | undefined;
|
|
8365
8382
|
} | undefined;
|
|
8366
8383
|
} | undefined;
|
|
8367
8384
|
} | undefined;
|
|
@@ -8588,7 +8605,7 @@ export declare const chatConfigSchema: z.ZodObject<{
|
|
|
8588
8605
|
borderColor?: string | undefined;
|
|
8589
8606
|
boxShadow?: string | undefined;
|
|
8590
8607
|
}> | undefined;
|
|
8591
|
-
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox" | "warning", string>> | undefined;
|
|
8608
|
+
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox" | "warning" | "headerLogo", string>> | undefined;
|
|
8592
8609
|
} | undefined;
|
|
8593
8610
|
} | undefined;
|
|
8594
8611
|
dark?: {
|
|
@@ -8726,7 +8743,7 @@ export declare const chatConfigSchema: z.ZodObject<{
|
|
|
8726
8743
|
borderColor?: string | undefined;
|
|
8727
8744
|
boxShadow?: string | undefined;
|
|
8728
8745
|
}> | undefined;
|
|
8729
|
-
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox" | "warning", string>> | undefined;
|
|
8746
|
+
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox" | "warning" | "headerLogo", string>> | undefined;
|
|
8730
8747
|
} | undefined;
|
|
8731
8748
|
} | undefined;
|
|
8732
8749
|
} | undefined;
|
|
@@ -8812,6 +8829,11 @@ export declare const chatConfigSchema: z.ZodObject<{
|
|
|
8812
8829
|
ariaSettingsRegion: z.ZodOptional<z.ZodString>;
|
|
8813
8830
|
ariaReferencesRegion: z.ZodOptional<z.ZodString>;
|
|
8814
8831
|
ariaFlyoutRegion: z.ZodOptional<z.ZodString>;
|
|
8832
|
+
ariaSelected: z.ZodOptional<z.ZodString>;
|
|
8833
|
+
ariaUnselected: z.ZodOptional<z.ZodString>;
|
|
8834
|
+
ariaAllSelected: z.ZodOptional<z.ZodString>;
|
|
8835
|
+
ariaAllUnselected: z.ZodOptional<z.ZodString>;
|
|
8836
|
+
ariaAllReseted: z.ZodOptional<z.ZodString>;
|
|
8815
8837
|
popups: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8816
8838
|
hash: z.ZodString;
|
|
8817
8839
|
title: z.ZodString;
|
|
@@ -8930,6 +8952,11 @@ export declare const chatConfigSchema: z.ZodObject<{
|
|
|
8930
8952
|
ariaSettingsRegion?: string | undefined;
|
|
8931
8953
|
ariaReferencesRegion?: string | undefined;
|
|
8932
8954
|
ariaFlyoutRegion?: string | undefined;
|
|
8955
|
+
ariaSelected?: string | undefined;
|
|
8956
|
+
ariaUnselected?: string | undefined;
|
|
8957
|
+
ariaAllSelected?: string | undefined;
|
|
8958
|
+
ariaAllUnselected?: string | undefined;
|
|
8959
|
+
ariaAllReseted?: string | undefined;
|
|
8933
8960
|
popups?: {
|
|
8934
8961
|
content: string;
|
|
8935
8962
|
title: string;
|
|
@@ -9027,6 +9054,11 @@ export declare const chatConfigSchema: z.ZodObject<{
|
|
|
9027
9054
|
ariaSettingsRegion?: string | undefined;
|
|
9028
9055
|
ariaReferencesRegion?: string | undefined;
|
|
9029
9056
|
ariaFlyoutRegion?: string | undefined;
|
|
9057
|
+
ariaSelected?: string | undefined;
|
|
9058
|
+
ariaUnselected?: string | undefined;
|
|
9059
|
+
ariaAllSelected?: string | undefined;
|
|
9060
|
+
ariaAllUnselected?: string | undefined;
|
|
9061
|
+
ariaAllReseted?: string | undefined;
|
|
9030
9062
|
popups?: {
|
|
9031
9063
|
content: string;
|
|
9032
9064
|
title: string;
|
|
@@ -9352,7 +9384,7 @@ export declare const chatConfigSchema: z.ZodObject<{
|
|
|
9352
9384
|
borderColor?: string | undefined;
|
|
9353
9385
|
boxShadow?: string | undefined;
|
|
9354
9386
|
}> | undefined;
|
|
9355
|
-
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox" | "warning", string>> | undefined;
|
|
9387
|
+
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox" | "warning" | "headerLogo", string>> | undefined;
|
|
9356
9388
|
} | undefined;
|
|
9357
9389
|
} | undefined;
|
|
9358
9390
|
dark?: {
|
|
@@ -9490,7 +9522,7 @@ export declare const chatConfigSchema: z.ZodObject<{
|
|
|
9490
9522
|
borderColor?: string | undefined;
|
|
9491
9523
|
boxShadow?: string | undefined;
|
|
9492
9524
|
}> | undefined;
|
|
9493
|
-
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox" | "warning", string>> | undefined;
|
|
9525
|
+
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox" | "warning" | "headerLogo", string>> | undefined;
|
|
9494
9526
|
} | undefined;
|
|
9495
9527
|
} | undefined;
|
|
9496
9528
|
} | undefined;
|
|
@@ -9571,6 +9603,11 @@ export declare const chatConfigSchema: z.ZodObject<{
|
|
|
9571
9603
|
ariaSettingsRegion?: string | undefined;
|
|
9572
9604
|
ariaReferencesRegion?: string | undefined;
|
|
9573
9605
|
ariaFlyoutRegion?: string | undefined;
|
|
9606
|
+
ariaSelected?: string | undefined;
|
|
9607
|
+
ariaUnselected?: string | undefined;
|
|
9608
|
+
ariaAllSelected?: string | undefined;
|
|
9609
|
+
ariaAllUnselected?: string | undefined;
|
|
9610
|
+
ariaAllReseted?: string | undefined;
|
|
9574
9611
|
popups?: {
|
|
9575
9612
|
content: string;
|
|
9576
9613
|
title: string;
|
|
@@ -9869,7 +9906,7 @@ export declare const chatConfigSchema: z.ZodObject<{
|
|
|
9869
9906
|
borderColor?: string | undefined;
|
|
9870
9907
|
boxShadow?: string | undefined;
|
|
9871
9908
|
}> | undefined;
|
|
9872
|
-
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox" | "warning", string>> | undefined;
|
|
9909
|
+
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox" | "warning" | "headerLogo", string>> | undefined;
|
|
9873
9910
|
} | undefined;
|
|
9874
9911
|
} | undefined;
|
|
9875
9912
|
dark?: {
|
|
@@ -10007,7 +10044,7 @@ export declare const chatConfigSchema: z.ZodObject<{
|
|
|
10007
10044
|
borderColor?: string | undefined;
|
|
10008
10045
|
boxShadow?: string | undefined;
|
|
10009
10046
|
}> | undefined;
|
|
10010
|
-
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox" | "warning", string>> | undefined;
|
|
10047
|
+
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox" | "warning" | "headerLogo", string>> | undefined;
|
|
10011
10048
|
} | undefined;
|
|
10012
10049
|
} | undefined;
|
|
10013
10050
|
} | undefined;
|
|
@@ -10088,6 +10125,11 @@ export declare const chatConfigSchema: z.ZodObject<{
|
|
|
10088
10125
|
ariaSettingsRegion?: string | undefined;
|
|
10089
10126
|
ariaReferencesRegion?: string | undefined;
|
|
10090
10127
|
ariaFlyoutRegion?: string | undefined;
|
|
10128
|
+
ariaSelected?: string | undefined;
|
|
10129
|
+
ariaUnselected?: string | undefined;
|
|
10130
|
+
ariaAllSelected?: string | undefined;
|
|
10131
|
+
ariaAllUnselected?: string | undefined;
|
|
10132
|
+
ariaAllReseted?: string | undefined;
|
|
10091
10133
|
popups?: {
|
|
10092
10134
|
content: string;
|
|
10093
10135
|
title: string;
|
|
@@ -11274,7 +11316,8 @@ declare const themeSchema: ZodObject<{
|
|
|
11274
11316
|
"sources",
|
|
11275
11317
|
"model",
|
|
11276
11318
|
"checkbox",
|
|
11277
|
-
"warning"
|
|
11319
|
+
"warning",
|
|
11320
|
+
"headerLogo"
|
|
11278
11321
|
]>, ZodString>>;
|
|
11279
11322
|
}, "strip", ZodTypeAny, {
|
|
11280
11323
|
base?: {
|
|
@@ -11407,7 +11450,7 @@ declare const themeSchema: ZodObject<{
|
|
|
11407
11450
|
borderColor?: string | undefined;
|
|
11408
11451
|
boxShadow?: string | undefined;
|
|
11409
11452
|
}> | undefined;
|
|
11410
|
-
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox" | "warning", string>> | undefined;
|
|
11453
|
+
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox" | "warning" | "headerLogo", string>> | undefined;
|
|
11411
11454
|
}, {
|
|
11412
11455
|
base?: {
|
|
11413
11456
|
boxShadow?: string | undefined;
|
|
@@ -11539,7 +11582,7 @@ declare const themeSchema: ZodObject<{
|
|
|
11539
11582
|
borderColor?: string | undefined;
|
|
11540
11583
|
boxShadow?: string | undefined;
|
|
11541
11584
|
}> | undefined;
|
|
11542
|
-
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox" | "warning", string>> | undefined;
|
|
11585
|
+
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox" | "warning" | "headerLogo", string>> | undefined;
|
|
11543
11586
|
}>>;
|
|
11544
11587
|
}, "strip", ZodTypeAny, {
|
|
11545
11588
|
customCSS?: string | undefined;
|
|
@@ -11676,7 +11719,7 @@ declare const themeSchema: ZodObject<{
|
|
|
11676
11719
|
borderColor?: string | undefined;
|
|
11677
11720
|
boxShadow?: string | undefined;
|
|
11678
11721
|
}> | undefined;
|
|
11679
|
-
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox" | "warning", string>> | undefined;
|
|
11722
|
+
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox" | "warning" | "headerLogo", string>> | undefined;
|
|
11680
11723
|
} | undefined;
|
|
11681
11724
|
}, {
|
|
11682
11725
|
customCSS?: string | undefined;
|
|
@@ -11813,7 +11856,7 @@ declare const themeSchema: ZodObject<{
|
|
|
11813
11856
|
borderColor?: string | undefined;
|
|
11814
11857
|
boxShadow?: string | undefined;
|
|
11815
11858
|
}> | undefined;
|
|
11816
|
-
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox" | "warning", string>> | undefined;
|
|
11859
|
+
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox" | "warning" | "headerLogo", string>> | undefined;
|
|
11817
11860
|
} | undefined;
|
|
11818
11861
|
}>>;
|
|
11819
11862
|
dark: ZodOptional<ZodObject<{
|
|
@@ -12458,7 +12501,8 @@ declare const themeSchema: ZodObject<{
|
|
|
12458
12501
|
"sources",
|
|
12459
12502
|
"model",
|
|
12460
12503
|
"checkbox",
|
|
12461
|
-
"warning"
|
|
12504
|
+
"warning",
|
|
12505
|
+
"headerLogo"
|
|
12462
12506
|
]>, ZodString>>;
|
|
12463
12507
|
}, "strip", ZodTypeAny, {
|
|
12464
12508
|
base?: {
|
|
@@ -12591,7 +12635,7 @@ declare const themeSchema: ZodObject<{
|
|
|
12591
12635
|
borderColor?: string | undefined;
|
|
12592
12636
|
boxShadow?: string | undefined;
|
|
12593
12637
|
}> | undefined;
|
|
12594
|
-
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox" | "warning", string>> | undefined;
|
|
12638
|
+
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox" | "warning" | "headerLogo", string>> | undefined;
|
|
12595
12639
|
}, {
|
|
12596
12640
|
base?: {
|
|
12597
12641
|
boxShadow?: string | undefined;
|
|
@@ -12723,7 +12767,7 @@ declare const themeSchema: ZodObject<{
|
|
|
12723
12767
|
borderColor?: string | undefined;
|
|
12724
12768
|
boxShadow?: string | undefined;
|
|
12725
12769
|
}> | undefined;
|
|
12726
|
-
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox" | "warning", string>> | undefined;
|
|
12770
|
+
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox" | "warning" | "headerLogo", string>> | undefined;
|
|
12727
12771
|
}>>;
|
|
12728
12772
|
}, "strip", ZodTypeAny, {
|
|
12729
12773
|
customCSS?: string | undefined;
|
|
@@ -12860,7 +12904,7 @@ declare const themeSchema: ZodObject<{
|
|
|
12860
12904
|
borderColor?: string | undefined;
|
|
12861
12905
|
boxShadow?: string | undefined;
|
|
12862
12906
|
}> | undefined;
|
|
12863
|
-
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox" | "warning", string>> | undefined;
|
|
12907
|
+
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox" | "warning" | "headerLogo", string>> | undefined;
|
|
12864
12908
|
} | undefined;
|
|
12865
12909
|
}, {
|
|
12866
12910
|
customCSS?: string | undefined;
|
|
@@ -12997,7 +13041,7 @@ declare const themeSchema: ZodObject<{
|
|
|
12997
13041
|
borderColor?: string | undefined;
|
|
12998
13042
|
boxShadow?: string | undefined;
|
|
12999
13043
|
}> | undefined;
|
|
13000
|
-
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox" | "warning", string>> | undefined;
|
|
13044
|
+
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox" | "warning" | "headerLogo", string>> | undefined;
|
|
13001
13045
|
} | undefined;
|
|
13002
13046
|
}>>;
|
|
13003
13047
|
}, "strip", ZodTypeAny, {
|
|
@@ -13136,7 +13180,7 @@ declare const themeSchema: ZodObject<{
|
|
|
13136
13180
|
borderColor?: string | undefined;
|
|
13137
13181
|
boxShadow?: string | undefined;
|
|
13138
13182
|
}> | undefined;
|
|
13139
|
-
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox" | "warning", string>> | undefined;
|
|
13183
|
+
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox" | "warning" | "headerLogo", string>> | undefined;
|
|
13140
13184
|
} | undefined;
|
|
13141
13185
|
} | undefined;
|
|
13142
13186
|
dark?: {
|
|
@@ -13274,7 +13318,7 @@ declare const themeSchema: ZodObject<{
|
|
|
13274
13318
|
borderColor?: string | undefined;
|
|
13275
13319
|
boxShadow?: string | undefined;
|
|
13276
13320
|
}> | undefined;
|
|
13277
|
-
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox" | "warning", string>> | undefined;
|
|
13321
|
+
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox" | "warning" | "headerLogo", string>> | undefined;
|
|
13278
13322
|
} | undefined;
|
|
13279
13323
|
} | undefined;
|
|
13280
13324
|
}, {
|
|
@@ -13413,7 +13457,7 @@ declare const themeSchema: ZodObject<{
|
|
|
13413
13457
|
borderColor?: string | undefined;
|
|
13414
13458
|
boxShadow?: string | undefined;
|
|
13415
13459
|
}> | undefined;
|
|
13416
|
-
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox" | "warning", string>> | undefined;
|
|
13460
|
+
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox" | "warning" | "headerLogo", string>> | undefined;
|
|
13417
13461
|
} | undefined;
|
|
13418
13462
|
} | undefined;
|
|
13419
13463
|
dark?: {
|
|
@@ -13551,7 +13595,7 @@ declare const themeSchema: ZodObject<{
|
|
|
13551
13595
|
borderColor?: string | undefined;
|
|
13552
13596
|
boxShadow?: string | undefined;
|
|
13553
13597
|
}> | undefined;
|
|
13554
|
-
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox" | "warning", string>> | undefined;
|
|
13598
|
+
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox" | "warning" | "headerLogo", string>> | undefined;
|
|
13555
13599
|
} | undefined;
|
|
13556
13600
|
} | undefined;
|
|
13557
13601
|
}>>;
|
|
@@ -13778,7 +13822,7 @@ declare const themeSchema: ZodObject<{
|
|
|
13778
13822
|
borderColor?: string | undefined;
|
|
13779
13823
|
boxShadow?: string | undefined;
|
|
13780
13824
|
}> | undefined;
|
|
13781
|
-
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox" | "warning", string>> | undefined;
|
|
13825
|
+
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox" | "warning" | "headerLogo", string>> | undefined;
|
|
13782
13826
|
} | undefined;
|
|
13783
13827
|
} | undefined;
|
|
13784
13828
|
dark?: {
|
|
@@ -13916,7 +13960,7 @@ declare const themeSchema: ZodObject<{
|
|
|
13916
13960
|
borderColor?: string | undefined;
|
|
13917
13961
|
boxShadow?: string | undefined;
|
|
13918
13962
|
}> | undefined;
|
|
13919
|
-
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox" | "warning", string>> | undefined;
|
|
13963
|
+
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox" | "warning" | "headerLogo", string>> | undefined;
|
|
13920
13964
|
} | undefined;
|
|
13921
13965
|
} | undefined;
|
|
13922
13966
|
} | undefined;
|
|
@@ -14143,7 +14187,7 @@ declare const themeSchema: ZodObject<{
|
|
|
14143
14187
|
borderColor?: string | undefined;
|
|
14144
14188
|
boxShadow?: string | undefined;
|
|
14145
14189
|
}> | undefined;
|
|
14146
|
-
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox" | "warning", string>> | undefined;
|
|
14190
|
+
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox" | "warning" | "headerLogo", string>> | undefined;
|
|
14147
14191
|
} | undefined;
|
|
14148
14192
|
} | undefined;
|
|
14149
14193
|
dark?: {
|
|
@@ -14281,7 +14325,7 @@ declare const themeSchema: ZodObject<{
|
|
|
14281
14325
|
borderColor?: string | undefined;
|
|
14282
14326
|
boxShadow?: string | undefined;
|
|
14283
14327
|
}> | undefined;
|
|
14284
|
-
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox" | "warning", string>> | undefined;
|
|
14328
|
+
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox" | "warning" | "headerLogo", string>> | undefined;
|
|
14285
14329
|
} | undefined;
|
|
14286
14330
|
} | undefined;
|
|
14287
14331
|
} | undefined;
|
package/config/index.js
CHANGED
|
@@ -4063,7 +4063,8 @@ var svgsSchema = exports_external.record(exports_external.enum([
|
|
|
4063
4063
|
"sources",
|
|
4064
4064
|
"model",
|
|
4065
4065
|
"checkbox",
|
|
4066
|
-
"warning"
|
|
4066
|
+
"warning",
|
|
4067
|
+
"headerLogo"
|
|
4067
4068
|
]), exports_external.string());
|
|
4068
4069
|
var tokensSchema = exports_external.object({
|
|
4069
4070
|
font: fontSchema.optional(),
|
|
@@ -4296,6 +4297,11 @@ var translationSchema = exports_external.object({
|
|
|
4296
4297
|
ariaSettingsRegion: exports_external.string(),
|
|
4297
4298
|
ariaReferencesRegion: exports_external.string(),
|
|
4298
4299
|
ariaFlyoutRegion: exports_external.string(),
|
|
4300
|
+
ariaSelected: exports_external.string(),
|
|
4301
|
+
ariaUnselected: exports_external.string(),
|
|
4302
|
+
ariaAllSelected: exports_external.string(),
|
|
4303
|
+
ariaAllUnselected: exports_external.string(),
|
|
4304
|
+
ariaAllReseted: exports_external.string(),
|
|
4299
4305
|
popups: exports_external.array(popup).optional(),
|
|
4300
4306
|
termsTitle: exports_external.string().optional(),
|
|
4301
4307
|
termsContent: exports_external.string().optional(),
|
package/configurator/_app/env.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const env={"PUBLIC_API_URL":"https://liipgpt.api.dev.genai.liip.ch/liipgpt","PUBLIC_CI_COMMIT_TAG":"3.1.
|
|
1
|
+
export const env={"PUBLIC_API_URL":"https://liipgpt.api.dev.genai.liip.ch/liipgpt","PUBLIC_CI_COMMIT_TAG":"3.1.15"}
|