@mariozechner/pi-web-ui 0.5.44 → 0.5.45
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/README.md +178 -99
- package/dist/ChatPanel.d.ts +15 -10
- package/dist/ChatPanel.d.ts.map +1 -1
- package/dist/ChatPanel.js +68 -100
- package/dist/ChatPanel.js.map +1 -1
- package/dist/{state/agent-session.d.ts → agent/agent.d.ts} +23 -19
- package/dist/agent/agent.d.ts.map +1 -0
- package/dist/{state/agent-session.js → agent/agent.js} +50 -32
- package/dist/agent/agent.js.map +1 -0
- package/dist/{state → agent}/transports/AppTransport.d.ts +1 -3
- package/dist/agent/transports/AppTransport.d.ts.map +1 -0
- package/dist/{state → agent}/transports/AppTransport.js +5 -4
- package/dist/{state → agent}/transports/AppTransport.js.map +1 -1
- package/dist/{state → agent}/transports/ProviderTransport.d.ts +1 -3
- package/dist/agent/transports/ProviderTransport.d.ts.map +1 -0
- package/dist/{state → agent}/transports/ProviderTransport.js +6 -7
- package/dist/agent/transports/ProviderTransport.js.map +1 -0
- package/dist/{state → agent}/transports/index.d.ts.map +1 -1
- package/dist/agent/transports/index.js.map +1 -0
- package/dist/{state → agent}/transports/proxy-types.d.ts.map +1 -1
- package/dist/agent/transports/proxy-types.js.map +1 -0
- package/dist/agent/transports/types.d.ts +12 -0
- package/dist/agent/transports/types.d.ts.map +1 -0
- package/dist/{state → agent}/transports/types.js.map +1 -1
- package/dist/{state → agent}/types.d.ts.map +1 -1
- package/dist/{state → agent}/types.js.map +1 -1
- package/dist/app.css +1 -1
- package/dist/components/AgentInterface.d.ts +7 -4
- package/dist/components/AgentInterface.d.ts.map +1 -1
- package/dist/components/AgentInterface.js +29 -17
- package/dist/components/AgentInterface.js.map +1 -1
- package/dist/components/ConsoleBlock.d.ts +1 -0
- package/dist/components/ConsoleBlock.d.ts.map +1 -1
- package/dist/components/ConsoleBlock.js +7 -1
- package/dist/components/ConsoleBlock.js.map +1 -1
- package/dist/components/ExpandableSection.d.ts +15 -0
- package/dist/components/ExpandableSection.d.ts.map +1 -0
- package/dist/components/ExpandableSection.js +63 -0
- package/dist/components/ExpandableSection.js.map +1 -0
- package/dist/components/MessageEditor.d.ts +8 -1
- package/dist/components/MessageEditor.d.ts.map +1 -1
- package/dist/components/MessageEditor.js +149 -6
- package/dist/components/MessageEditor.js.map +1 -1
- package/dist/components/MessageList.d.ts +3 -2
- package/dist/components/MessageList.d.ts.map +1 -1
- package/dist/components/MessageList.js +14 -1
- package/dist/components/MessageList.js.map +1 -1
- package/dist/components/Messages.d.ts +15 -6
- package/dist/components/Messages.d.ts.map +1 -1
- package/dist/components/Messages.js +17 -83
- package/dist/components/Messages.js.map +1 -1
- package/dist/components/ProviderKeyInput.d.ts.map +1 -1
- package/dist/components/ProviderKeyInput.js +6 -5
- package/dist/components/ProviderKeyInput.js.map +1 -1
- package/dist/components/SandboxedIframe.d.ts +29 -7
- package/dist/components/SandboxedIframe.d.ts.map +1 -1
- package/dist/components/SandboxedIframe.js +350 -282
- package/dist/components/SandboxedIframe.js.map +1 -1
- package/dist/components/message-renderer-registry.d.ts +12 -0
- package/dist/components/message-renderer-registry.d.ts.map +1 -0
- package/dist/components/message-renderer-registry.js +12 -0
- package/dist/components/message-renderer-registry.js.map +1 -0
- package/dist/components/sandbox/ArtifactsRuntimeProvider.d.ts +35 -0
- package/dist/components/sandbox/ArtifactsRuntimeProvider.d.ts.map +1 -0
- package/dist/components/sandbox/ArtifactsRuntimeProvider.js +189 -0
- package/dist/components/sandbox/ArtifactsRuntimeProvider.js.map +1 -0
- package/dist/components/sandbox/AttachmentsRuntimeProvider.d.ts +17 -0
- package/dist/components/sandbox/AttachmentsRuntimeProvider.d.ts.map +1 -0
- package/dist/components/sandbox/AttachmentsRuntimeProvider.js +64 -0
- package/dist/components/sandbox/AttachmentsRuntimeProvider.js.map +1 -0
- package/dist/components/sandbox/ConsoleRuntimeProvider.d.ts +42 -0
- package/dist/components/sandbox/ConsoleRuntimeProvider.d.ts.map +1 -0
- package/dist/components/sandbox/ConsoleRuntimeProvider.js +161 -0
- package/dist/components/sandbox/ConsoleRuntimeProvider.js.map +1 -0
- package/dist/components/sandbox/FileDownloadRuntimeProvider.d.ts +30 -0
- package/dist/components/sandbox/FileDownloadRuntimeProvider.d.ts.map +1 -0
- package/dist/components/sandbox/FileDownloadRuntimeProvider.js +97 -0
- package/dist/components/sandbox/FileDownloadRuntimeProvider.js.map +1 -0
- package/dist/components/sandbox/RuntimeMessageBridge.d.ts +19 -0
- package/dist/components/sandbox/RuntimeMessageBridge.d.ts.map +1 -0
- package/dist/components/sandbox/RuntimeMessageBridge.js +74 -0
- package/dist/components/sandbox/RuntimeMessageBridge.js.map +1 -0
- package/dist/components/sandbox/RuntimeMessageRouter.d.ts +65 -0
- package/dist/components/sandbox/RuntimeMessageRouter.d.ts.map +1 -0
- package/dist/components/sandbox/RuntimeMessageRouter.js +168 -0
- package/dist/components/sandbox/RuntimeMessageRouter.js.map +1 -0
- package/dist/components/sandbox/SandboxRuntimeProvider.d.ts +33 -0
- package/dist/components/sandbox/SandboxRuntimeProvider.d.ts.map +1 -0
- package/dist/components/sandbox/SandboxRuntimeProvider.js +2 -0
- package/dist/components/sandbox/SandboxRuntimeProvider.js.map +1 -0
- package/dist/dialogs/ApiKeyPromptDialog.d.ts.map +1 -1
- package/dist/dialogs/ApiKeyPromptDialog.js +2 -5
- package/dist/dialogs/ApiKeyPromptDialog.js.map +1 -1
- package/dist/dialogs/ModelSelector.js.map +1 -1
- package/dist/dialogs/PersistentStorageDialog.d.ts +17 -0
- package/dist/dialogs/PersistentStorageDialog.d.ts.map +1 -0
- package/dist/dialogs/PersistentStorageDialog.js +144 -0
- package/dist/dialogs/PersistentStorageDialog.js.map +1 -0
- package/dist/dialogs/SessionListDialog.d.ts +19 -0
- package/dist/dialogs/SessionListDialog.d.ts.map +1 -0
- package/dist/dialogs/SessionListDialog.js +152 -0
- package/dist/dialogs/SessionListDialog.js.map +1 -0
- package/dist/dialogs/SettingsDialog.d.ts.map +1 -1
- package/dist/dialogs/SettingsDialog.js +1 -0
- package/dist/dialogs/SettingsDialog.js.map +1 -1
- package/dist/index.d.ts +34 -16
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +32 -14
- package/dist/index.js.map +1 -1
- package/dist/prompts/prompts.d.ts +11 -0
- package/dist/prompts/prompts.d.ts.map +1 -0
- package/dist/prompts/prompts.js +272 -0
- package/dist/prompts/prompts.js.map +1 -0
- package/dist/storage/app-storage.d.ts +17 -12
- package/dist/storage/app-storage.d.ts.map +1 -1
- package/dist/storage/app-storage.js +13 -20
- package/dist/storage/app-storage.js.map +1 -1
- package/dist/storage/backends/indexeddb-storage-backend.d.ts +27 -0
- package/dist/storage/backends/indexeddb-storage-backend.d.ts.map +1 -0
- package/dist/storage/backends/indexeddb-storage-backend.js +166 -0
- package/dist/storage/backends/indexeddb-storage-backend.js.map +1 -0
- package/dist/storage/store.d.ts +23 -0
- package/dist/storage/store.d.ts.map +1 -0
- package/dist/storage/store.js +26 -0
- package/dist/storage/store.js.map +1 -0
- package/dist/storage/stores/provider-keys-store.d.ts +14 -0
- package/dist/storage/stores/provider-keys-store.d.ts.map +1 -0
- package/dist/storage/stores/provider-keys-store.js +27 -0
- package/dist/storage/stores/provider-keys-store.js.map +1 -0
- package/dist/storage/stores/sessions-store.d.ts +31 -0
- package/dist/storage/stores/sessions-store.d.ts.map +1 -0
- package/dist/storage/stores/sessions-store.js +113 -0
- package/dist/storage/stores/sessions-store.js.map +1 -0
- package/dist/storage/stores/settings-store.d.ts +14 -0
- package/dist/storage/stores/settings-store.d.ts.map +1 -0
- package/dist/storage/stores/settings-store.js +28 -0
- package/dist/storage/stores/settings-store.js.map +1 -0
- package/dist/storage/types.d.ts +156 -22
- package/dist/storage/types.d.ts.map +1 -1
- package/dist/tools/artifacts/ArtifactElement.d.ts +0 -1
- package/dist/tools/artifacts/ArtifactElement.d.ts.map +1 -1
- package/dist/tools/artifacts/ArtifactElement.js +0 -1
- package/dist/tools/artifacts/ArtifactElement.js.map +1 -1
- package/dist/tools/artifacts/ArtifactPill.d.ts +4 -0
- package/dist/tools/artifacts/ArtifactPill.d.ts.map +1 -0
- package/dist/tools/artifacts/ArtifactPill.js +22 -0
- package/dist/tools/artifacts/ArtifactPill.js.map +1 -0
- package/dist/tools/artifacts/Console.d.ts +18 -0
- package/dist/tools/artifacts/Console.d.ts.map +1 -0
- package/dist/tools/artifacts/Console.js +95 -0
- package/dist/tools/artifacts/Console.js.map +1 -0
- package/dist/tools/artifacts/DocxArtifact.d.ts +22 -0
- package/dist/tools/artifacts/DocxArtifact.d.ts.map +1 -0
- package/dist/tools/artifacts/DocxArtifact.js +208 -0
- package/dist/tools/artifacts/DocxArtifact.js.map +1 -0
- package/dist/tools/artifacts/ExcelArtifact.d.ts +24 -0
- package/dist/tools/artifacts/ExcelArtifact.d.ts.map +1 -0
- package/dist/tools/artifacts/ExcelArtifact.js +216 -0
- package/dist/tools/artifacts/ExcelArtifact.js.map +1 -0
- package/dist/tools/artifacts/GenericArtifact.d.ts +19 -0
- package/dist/tools/artifacts/GenericArtifact.d.ts.map +1 -0
- package/dist/tools/artifacts/GenericArtifact.js +117 -0
- package/dist/tools/artifacts/GenericArtifact.js.map +1 -0
- package/dist/tools/artifacts/HtmlArtifact.d.ts +8 -11
- package/dist/tools/artifacts/HtmlArtifact.d.ts.map +1 -1
- package/dist/tools/artifacts/HtmlArtifact.js +56 -88
- package/dist/tools/artifacts/HtmlArtifact.js.map +1 -1
- package/dist/tools/artifacts/ImageArtifact.d.ts +20 -0
- package/dist/tools/artifacts/ImageArtifact.d.ts.map +1 -0
- package/dist/tools/artifacts/ImageArtifact.js +120 -0
- package/dist/tools/artifacts/ImageArtifact.js.map +1 -0
- package/dist/tools/artifacts/MarkdownArtifact.d.ts +0 -1
- package/dist/tools/artifacts/MarkdownArtifact.d.ts.map +1 -1
- package/dist/tools/artifacts/MarkdownArtifact.js +0 -4
- package/dist/tools/artifacts/MarkdownArtifact.js.map +1 -1
- package/dist/tools/artifacts/PdfArtifact.d.ts +25 -0
- package/dist/tools/artifacts/PdfArtifact.d.ts.map +1 -0
- package/dist/tools/artifacts/PdfArtifact.js +184 -0
- package/dist/tools/artifacts/PdfArtifact.js.map +1 -0
- package/dist/tools/artifacts/SvgArtifact.d.ts +0 -1
- package/dist/tools/artifacts/SvgArtifact.d.ts.map +1 -1
- package/dist/tools/artifacts/SvgArtifact.js +0 -4
- package/dist/tools/artifacts/SvgArtifact.js.map +1 -1
- package/dist/tools/artifacts/TextArtifact.d.ts +0 -1
- package/dist/tools/artifacts/TextArtifact.d.ts.map +1 -1
- package/dist/tools/artifacts/TextArtifact.js +0 -4
- package/dist/tools/artifacts/TextArtifact.js.map +1 -1
- package/dist/tools/artifacts/artifacts-tool-renderer.d.ts +11 -0
- package/dist/tools/artifacts/artifacts-tool-renderer.d.ts.map +1 -0
- package/dist/tools/artifacts/artifacts-tool-renderer.js +262 -0
- package/dist/tools/artifacts/artifacts-tool-renderer.js.map +1 -0
- package/dist/tools/artifacts/artifacts.d.ts +10 -13
- package/dist/tools/artifacts/artifacts.d.ts.map +1 -1
- package/dist/tools/artifacts/artifacts.js +166 -344
- package/dist/tools/artifacts/artifacts.js.map +1 -1
- package/dist/tools/artifacts/index.d.ts +1 -0
- package/dist/tools/artifacts/index.d.ts.map +1 -1
- package/dist/tools/artifacts/index.js +1 -0
- package/dist/tools/artifacts/index.js.map +1 -1
- package/dist/tools/extract-document.d.ts +24 -0
- package/dist/tools/extract-document.d.ts.map +1 -0
- package/dist/tools/extract-document.js +193 -0
- package/dist/tools/extract-document.js.map +1 -0
- package/dist/tools/index.d.ts +9 -7
- package/dist/tools/index.d.ts.map +1 -1
- package/dist/tools/index.js +17 -13
- package/dist/tools/index.js.map +1 -1
- package/dist/tools/javascript-repl.d.ts +16 -15
- package/dist/tools/javascript-repl.d.ts.map +1 -1
- package/dist/tools/javascript-repl.js +101 -133
- package/dist/tools/javascript-repl.js.map +1 -1
- package/dist/tools/renderer-registry.d.ts +12 -0
- package/dist/tools/renderer-registry.d.ts.map +1 -1
- package/dist/tools/renderer-registry.js +78 -0
- package/dist/tools/renderer-registry.js.map +1 -1
- package/dist/tools/renderers/BashRenderer.d.ts +2 -4
- package/dist/tools/renderers/BashRenderer.d.ts.map +1 -1
- package/dist/tools/renderers/BashRenderer.js +30 -26
- package/dist/tools/renderers/BashRenderer.js.map +1 -1
- package/dist/tools/renderers/CalculateRenderer.d.ts +2 -4
- package/dist/tools/renderers/CalculateRenderer.d.ts.map +1 -1
- package/dist/tools/renderers/CalculateRenderer.js +32 -28
- package/dist/tools/renderers/CalculateRenderer.js.map +1 -1
- package/dist/tools/renderers/DefaultRenderer.d.ts +2 -4
- package/dist/tools/renderers/DefaultRenderer.d.ts.map +1 -1
- package/dist/tools/renderers/DefaultRenderer.js +78 -18
- package/dist/tools/renderers/DefaultRenderer.js.map +1 -1
- package/dist/tools/renderers/GetCurrentTimeRenderer.d.ts +2 -4
- package/dist/tools/renderers/GetCurrentTimeRenderer.d.ts.map +1 -1
- package/dist/tools/renderers/GetCurrentTimeRenderer.js +57 -21
- package/dist/tools/renderers/GetCurrentTimeRenderer.js.map +1 -1
- package/dist/tools/types.d.ts +5 -2
- package/dist/tools/types.d.ts.map +1 -1
- package/dist/utils/i18n.d.ts +424 -1
- package/dist/utils/i18n.d.ts.map +1 -1
- package/dist/utils/i18n.js +131 -7
- package/dist/utils/i18n.js.map +1 -1
- package/example/package.json +2 -1
- package/example/src/custom-messages.ts +112 -0
- package/example/src/main.ts +391 -38
- package/package.json +48 -43
- package/scripts/count-prompt-tokens.ts +88 -0
- package/src/ChatPanel.ts +93 -101
- package/src/{state/agent-session.ts → agent/agent.ts} +80 -55
- package/src/{state → agent}/transports/AppTransport.ts +6 -6
- package/src/{state → agent}/transports/ProviderTransport.ts +13 -7
- package/src/{state → agent}/transports/types.ts +8 -2
- package/src/components/AgentInterface.ts +32 -16
- package/src/components/ConsoleBlock.ts +5 -1
- package/src/components/ExpandableSection.ts +46 -0
- package/src/components/MessageEditor.ts +159 -5
- package/src/components/MessageList.ts +18 -3
- package/src/components/Messages.ts +48 -89
- package/src/components/ProviderKeyInput.ts +6 -5
- package/src/components/SandboxedIframe.ts +412 -321
- package/src/components/message-renderer-registry.ts +28 -0
- package/src/components/sandbox/ArtifactsRuntimeProvider.ts +219 -0
- package/src/components/sandbox/AttachmentsRuntimeProvider.ts +66 -0
- package/src/components/sandbox/ConsoleRuntimeProvider.ts +187 -0
- package/src/components/sandbox/FileDownloadRuntimeProvider.ts +110 -0
- package/src/components/sandbox/RuntimeMessageBridge.ts +82 -0
- package/src/components/sandbox/RuntimeMessageRouter.ts +216 -0
- package/src/components/sandbox/SandboxRuntimeProvider.ts +35 -0
- package/src/dialogs/ApiKeyPromptDialog.ts +2 -5
- package/src/dialogs/ModelSelector.ts +2 -2
- package/src/dialogs/PersistentStorageDialog.ts +141 -0
- package/src/dialogs/SessionListDialog.ts +148 -0
- package/src/dialogs/SettingsDialog.ts +1 -0
- package/src/index.ts +61 -20
- package/src/prompts/prompts.ts +282 -0
- package/src/storage/app-storage.ts +27 -24
- package/src/storage/backends/indexeddb-storage-backend.ts +193 -0
- package/src/storage/store.ts +33 -0
- package/src/storage/stores/provider-keys-store.ts +33 -0
- package/src/storage/stores/sessions-store.ts +130 -0
- package/src/storage/stores/settings-store.ts +34 -0
- package/src/storage/types.ts +182 -22
- package/src/tools/artifacts/ArtifactElement.ts +0 -1
- package/src/tools/artifacts/ArtifactPill.ts +25 -0
- package/src/tools/artifacts/Console.ts +93 -0
- package/src/tools/artifacts/DocxArtifact.ts +213 -0
- package/src/tools/artifacts/ExcelArtifact.ts +231 -0
- package/src/tools/artifacts/GenericArtifact.ts +117 -0
- package/src/tools/artifacts/HtmlArtifact.ts +64 -94
- package/src/tools/artifacts/ImageArtifact.ts +116 -0
- package/src/tools/artifacts/MarkdownArtifact.ts +0 -1
- package/src/tools/artifacts/PdfArtifact.ts +201 -0
- package/src/tools/artifacts/SvgArtifact.ts +0 -1
- package/src/tools/artifacts/TextArtifact.ts +0 -1
- package/src/tools/artifacts/artifacts-tool-renderer.ts +298 -0
- package/src/tools/artifacts/artifacts.ts +190 -366
- package/src/tools/artifacts/index.ts +1 -0
- package/src/tools/extract-document.ts +250 -0
- package/src/tools/index.ts +25 -14
- package/src/tools/javascript-repl.ts +138 -160
- package/src/tools/renderer-registry.ts +98 -0
- package/src/tools/renderers/BashRenderer.ts +33 -30
- package/src/tools/renderers/CalculateRenderer.ts +36 -31
- package/src/tools/renderers/DefaultRenderer.ts +84 -21
- package/src/tools/renderers/GetCurrentTimeRenderer.ts +68 -23
- package/src/tools/types.ts +10 -2
- package/src/utils/i18n.ts +203 -8
- package/dist/state/agent-session.d.ts.map +0 -1
- package/dist/state/agent-session.js.map +0 -1
- package/dist/state/transports/AppTransport.d.ts.map +0 -1
- package/dist/state/transports/ProviderTransport.d.ts.map +0 -1
- package/dist/state/transports/ProviderTransport.js.map +0 -1
- package/dist/state/transports/index.js.map +0 -1
- package/dist/state/transports/proxy-types.js.map +0 -1
- package/dist/state/transports/types.d.ts +0 -11
- package/dist/state/transports/types.d.ts.map +0 -1
- package/dist/storage/backends/chrome-storage-backend.d.ts +0 -18
- package/dist/storage/backends/chrome-storage-backend.d.ts.map +0 -1
- package/dist/storage/backends/chrome-storage-backend.js +0 -67
- package/dist/storage/backends/chrome-storage-backend.js.map +0 -1
- package/dist/storage/backends/indexeddb-backend.d.ts +0 -20
- package/dist/storage/backends/indexeddb-backend.d.ts.map +0 -1
- package/dist/storage/backends/indexeddb-backend.js +0 -89
- package/dist/storage/backends/indexeddb-backend.js.map +0 -1
- package/dist/storage/backends/local-storage-backend.d.ts +0 -18
- package/dist/storage/backends/local-storage-backend.d.ts.map +0 -1
- package/dist/storage/backends/local-storage-backend.js +0 -69
- package/dist/storage/backends/local-storage-backend.js.map +0 -1
- package/dist/storage/repositories/provider-keys-repository.d.ts +0 -34
- package/dist/storage/repositories/provider-keys-repository.d.ts.map +0 -1
- package/dist/storage/repositories/provider-keys-repository.js +0 -50
- package/dist/storage/repositories/provider-keys-repository.js.map +0 -1
- package/dist/storage/repositories/settings-repository.d.ts +0 -34
- package/dist/storage/repositories/settings-repository.d.ts.map +0 -1
- package/dist/storage/repositories/settings-repository.js +0 -46
- package/dist/storage/repositories/settings-repository.js.map +0 -1
- package/src/storage/backends/chrome-storage-backend.ts +0 -82
- package/src/storage/backends/indexeddb-backend.ts +0 -107
- package/src/storage/backends/local-storage-backend.ts +0 -74
- package/src/storage/repositories/provider-keys-repository.ts +0 -55
- package/src/storage/repositories/settings-repository.ts +0 -51
- /package/dist/{state → agent}/transports/index.d.ts +0 -0
- /package/dist/{state → agent}/transports/index.js +0 -0
- /package/dist/{state → agent}/transports/proxy-types.d.ts +0 -0
- /package/dist/{state → agent}/transports/proxy-types.js +0 -0
- /package/dist/{state → agent}/transports/types.js +0 -0
- /package/dist/{state → agent}/types.d.ts +0 -0
- /package/dist/{state → agent}/types.js +0 -0
- /package/src/{state → agent}/transports/index.ts +0 -0
- /package/src/{state → agent}/transports/proxy-types.ts +0 -0
- /package/src/{state → agent}/types.ts +0 -0
package/dist/utils/i18n.d.ts
CHANGED
|
@@ -40,6 +40,11 @@ declare module "@mariozechner/mini-lit" {
|
|
|
40
40
|
"Failed to load PDF": string;
|
|
41
41
|
"Failed to load document": string;
|
|
42
42
|
"Failed to load spreadsheet": string;
|
|
43
|
+
"Error loading PDF": string;
|
|
44
|
+
"Error loading document": string;
|
|
45
|
+
"Error loading spreadsheet": string;
|
|
46
|
+
"Preview not available for this file type.": string;
|
|
47
|
+
"Click the download button above to view it on your computer.": string;
|
|
43
48
|
"No content available": string;
|
|
44
49
|
"Failed to display text content": string;
|
|
45
50
|
"API keys are required to use AI models. Get your keys from the provider's website.": string;
|
|
@@ -57,12 +62,16 @@ declare module "@mariozechner/mini-lit" {
|
|
|
57
62
|
"No session set": string;
|
|
58
63
|
"Preparing tool parameters...": string;
|
|
59
64
|
"(no output)": string;
|
|
65
|
+
Input: string;
|
|
66
|
+
Output: string;
|
|
60
67
|
"Writing expression...": string;
|
|
68
|
+
"Waiting for expression...": string;
|
|
61
69
|
Calculating: string;
|
|
62
70
|
"Getting current time in": string;
|
|
63
71
|
"Getting current date and time": string;
|
|
72
|
+
"Waiting for command...": string;
|
|
64
73
|
"Writing command...": string;
|
|
65
|
-
"Running command
|
|
74
|
+
"Running command...": string;
|
|
66
75
|
"Command failed:": string;
|
|
67
76
|
"Enter Auth Token": string;
|
|
68
77
|
"Please enter your auth token.": string;
|
|
@@ -76,7 +85,31 @@ declare module "@mariozechner/mini-lit" {
|
|
|
76
85
|
"JavaScript code to execute": string;
|
|
77
86
|
"Writing JavaScript code...": string;
|
|
78
87
|
"Executing JavaScript": string;
|
|
88
|
+
"Preparing JavaScript...": string;
|
|
89
|
+
"Preparing command...": string;
|
|
90
|
+
"Preparing calculation...": string;
|
|
91
|
+
"Preparing tool...": string;
|
|
92
|
+
"Getting time...": string;
|
|
79
93
|
"Processing artifact...": string;
|
|
94
|
+
"Preparing artifact...": string;
|
|
95
|
+
"Processing artifact": string;
|
|
96
|
+
"Processed artifact": string;
|
|
97
|
+
"Creating artifact": string;
|
|
98
|
+
"Created artifact": string;
|
|
99
|
+
"Updating artifact": string;
|
|
100
|
+
"Updated artifact": string;
|
|
101
|
+
"Rewriting artifact": string;
|
|
102
|
+
"Rewrote artifact": string;
|
|
103
|
+
"Getting artifact": string;
|
|
104
|
+
"Got artifact": string;
|
|
105
|
+
"Deleting artifact": string;
|
|
106
|
+
"Deleted artifact": string;
|
|
107
|
+
"Getting logs": string;
|
|
108
|
+
"Got logs": string;
|
|
109
|
+
"An error occurred": string;
|
|
110
|
+
"Copy logs": string;
|
|
111
|
+
"Autoscroll enabled": string;
|
|
112
|
+
"Autoscroll disabled": string;
|
|
80
113
|
Processing: string;
|
|
81
114
|
Create: string;
|
|
82
115
|
Rewrite: string;
|
|
@@ -88,6 +121,7 @@ declare module "@mariozechner/mini-lit" {
|
|
|
88
121
|
Artifacts: string;
|
|
89
122
|
"Copy HTML": string;
|
|
90
123
|
"Download HTML": string;
|
|
124
|
+
"Reload HTML": string;
|
|
91
125
|
"Copy SVG": string;
|
|
92
126
|
"Download SVG": string;
|
|
93
127
|
"Copy Markdown": string;
|
|
@@ -105,7 +139,396 @@ declare module "@mariozechner/mini-lit" {
|
|
|
105
139
|
"API Key Required": string;
|
|
106
140
|
"Enter your API key for {provider}": string;
|
|
107
141
|
"The CORS proxy strips CORS headers from API responses, allowing browser-based apps to make direct calls to LLM providers without CORS restrictions. It forwards requests to providers while removing headers that would otherwise block cross-origin requests.": string;
|
|
142
|
+
Off: string;
|
|
143
|
+
Minimal: string;
|
|
144
|
+
Low: string;
|
|
145
|
+
Medium: string;
|
|
146
|
+
High: string;
|
|
147
|
+
"Storage Permission Required": string;
|
|
148
|
+
"This app needs persistent storage to save your conversations": string;
|
|
149
|
+
"Why is this needed?": string;
|
|
150
|
+
"Without persistent storage, your browser may delete saved conversations when it needs disk space. Granting this permission ensures your chat history is preserved.": string;
|
|
151
|
+
"What this means:": string;
|
|
152
|
+
"Your conversations will be saved locally in your browser": string;
|
|
153
|
+
"Data will not be deleted automatically to free up space": string;
|
|
154
|
+
"You can still manually clear data at any time": string;
|
|
155
|
+
"No data is sent to external servers": string;
|
|
156
|
+
"Continue Anyway": string;
|
|
157
|
+
"Requesting...": string;
|
|
158
|
+
"Grant Permission": string;
|
|
159
|
+
Sessions: string;
|
|
160
|
+
"Load a previous conversation": string;
|
|
161
|
+
"No sessions yet": string;
|
|
162
|
+
"Delete this session?": string;
|
|
163
|
+
Today: string;
|
|
164
|
+
Yesterday: string;
|
|
165
|
+
"{days} days ago": string;
|
|
166
|
+
messages: string;
|
|
167
|
+
tokens: string;
|
|
168
|
+
"Drop files here": string;
|
|
108
169
|
}
|
|
109
170
|
}
|
|
171
|
+
export declare const translations: {
|
|
172
|
+
en: {
|
|
173
|
+
Free: string;
|
|
174
|
+
"Input Required": string;
|
|
175
|
+
Cancel: string;
|
|
176
|
+
Confirm: string;
|
|
177
|
+
"Select Model": string;
|
|
178
|
+
"Search models...": string;
|
|
179
|
+
Format: string;
|
|
180
|
+
Thinking: string;
|
|
181
|
+
Vision: string;
|
|
182
|
+
You: string;
|
|
183
|
+
Assistant: string;
|
|
184
|
+
"Thinking...": string;
|
|
185
|
+
"Type your message...": string;
|
|
186
|
+
"API Keys Configuration": string;
|
|
187
|
+
"Configure API keys for LLM providers. Keys are stored locally in your browser.": string;
|
|
188
|
+
Configured: string;
|
|
189
|
+
"Not configured": string;
|
|
190
|
+
"\u2713 Valid": string;
|
|
191
|
+
"\u2717 Invalid": string;
|
|
192
|
+
"Testing...": string;
|
|
193
|
+
Update: string;
|
|
194
|
+
Test: string;
|
|
195
|
+
Remove: string;
|
|
196
|
+
Save: string;
|
|
197
|
+
"Update API key": string;
|
|
198
|
+
"Enter API key": string;
|
|
199
|
+
"Type a message...": string;
|
|
200
|
+
"Failed to fetch file": string;
|
|
201
|
+
"Invalid source type": string;
|
|
202
|
+
PDF: string;
|
|
203
|
+
Document: string;
|
|
204
|
+
Presentation: string;
|
|
205
|
+
Spreadsheet: string;
|
|
206
|
+
Text: string;
|
|
207
|
+
"Error loading file": string;
|
|
208
|
+
"No text content available": string;
|
|
209
|
+
"Failed to load PDF": string;
|
|
210
|
+
"Failed to load document": string;
|
|
211
|
+
"Failed to load spreadsheet": string;
|
|
212
|
+
"Error loading PDF": string;
|
|
213
|
+
"Error loading document": string;
|
|
214
|
+
"Error loading spreadsheet": string;
|
|
215
|
+
"Preview not available for this file type.": string;
|
|
216
|
+
"Click the download button above to view it on your computer.": string;
|
|
217
|
+
"No content available": string;
|
|
218
|
+
"Failed to display text content": string;
|
|
219
|
+
"API keys are required to use AI models. Get your keys from the provider's website.": string;
|
|
220
|
+
console: string;
|
|
221
|
+
"Copy output": string;
|
|
222
|
+
"Copied!": string;
|
|
223
|
+
"Error:": string;
|
|
224
|
+
"Request aborted": string;
|
|
225
|
+
Call: string;
|
|
226
|
+
Result: string;
|
|
227
|
+
"(no result)": string;
|
|
228
|
+
"Waiting for tool result\u2026": string;
|
|
229
|
+
"Call was aborted; no result.": string;
|
|
230
|
+
"No session available": string;
|
|
231
|
+
"No session set": string;
|
|
232
|
+
"Preparing tool parameters...": string;
|
|
233
|
+
"(no output)": string;
|
|
234
|
+
Input: string;
|
|
235
|
+
Output: string;
|
|
236
|
+
"Waiting for expression...": string;
|
|
237
|
+
"Writing expression...": string;
|
|
238
|
+
Calculating: string;
|
|
239
|
+
"Getting current time in": string;
|
|
240
|
+
"Getting current date and time": string;
|
|
241
|
+
"Waiting for command...": string;
|
|
242
|
+
"Writing command...": string;
|
|
243
|
+
"Running command...": string;
|
|
244
|
+
"Command failed": string;
|
|
245
|
+
"Enter Auth Token": string;
|
|
246
|
+
"Please enter your auth token.": string;
|
|
247
|
+
"Auth token is required for proxy transport": string;
|
|
248
|
+
"Execution aborted": string;
|
|
249
|
+
"Code parameter is required": string;
|
|
250
|
+
"Unknown error": string;
|
|
251
|
+
"Code executed successfully (no output)": string;
|
|
252
|
+
"Execution failed": string;
|
|
253
|
+
"JavaScript REPL": string;
|
|
254
|
+
"JavaScript code to execute": string;
|
|
255
|
+
"Writing JavaScript code...": string;
|
|
256
|
+
"Executing JavaScript": string;
|
|
257
|
+
"Preparing JavaScript...": string;
|
|
258
|
+
"Preparing command...": string;
|
|
259
|
+
"Preparing calculation...": string;
|
|
260
|
+
"Preparing tool...": string;
|
|
261
|
+
"Getting time...": string;
|
|
262
|
+
"Processing artifact...": string;
|
|
263
|
+
"Preparing artifact...": string;
|
|
264
|
+
"Processing artifact": string;
|
|
265
|
+
"Processed artifact": string;
|
|
266
|
+
"Creating artifact": string;
|
|
267
|
+
"Created artifact": string;
|
|
268
|
+
"Updating artifact": string;
|
|
269
|
+
"Updated artifact": string;
|
|
270
|
+
"Rewriting artifact": string;
|
|
271
|
+
"Rewrote artifact": string;
|
|
272
|
+
"Getting artifact": string;
|
|
273
|
+
"Got artifact": string;
|
|
274
|
+
"Deleting artifact": string;
|
|
275
|
+
"Deleted artifact": string;
|
|
276
|
+
"Getting logs": string;
|
|
277
|
+
"Got logs": string;
|
|
278
|
+
"An error occurred": string;
|
|
279
|
+
"Copy logs": string;
|
|
280
|
+
"Autoscroll enabled": string;
|
|
281
|
+
"Autoscroll disabled": string;
|
|
282
|
+
Processing: string;
|
|
283
|
+
Create: string;
|
|
284
|
+
Rewrite: string;
|
|
285
|
+
Get: string;
|
|
286
|
+
"Get logs": string;
|
|
287
|
+
"Show artifacts": string;
|
|
288
|
+
"Close artifacts": string;
|
|
289
|
+
Artifacts: string;
|
|
290
|
+
"Copy HTML": string;
|
|
291
|
+
"Download HTML": string;
|
|
292
|
+
"Reload HTML": string;
|
|
293
|
+
"Copy SVG": string;
|
|
294
|
+
"Download SVG": string;
|
|
295
|
+
"Copy Markdown": string;
|
|
296
|
+
"Download Markdown": string;
|
|
297
|
+
Download: string;
|
|
298
|
+
"No logs for {filename}": string;
|
|
299
|
+
"API Keys Settings": string;
|
|
300
|
+
Settings: string;
|
|
301
|
+
"API Keys": string;
|
|
302
|
+
Proxy: string;
|
|
303
|
+
"Use CORS Proxy": string;
|
|
304
|
+
"Proxy URL": string;
|
|
305
|
+
"Settings are stored locally in your browser": string;
|
|
306
|
+
Clear: string;
|
|
307
|
+
"API Key Required": string;
|
|
308
|
+
"Enter your API key for {provider}": string;
|
|
309
|
+
"The CORS proxy strips CORS headers from API responses, allowing browser-based apps to make direct calls to LLM providers without CORS restrictions. It forwards requests to providers while removing headers that would otherwise block cross-origin requests.": string;
|
|
310
|
+
Off: string;
|
|
311
|
+
Minimal: string;
|
|
312
|
+
Low: string;
|
|
313
|
+
Medium: string;
|
|
314
|
+
High: string;
|
|
315
|
+
"Storage Permission Required": string;
|
|
316
|
+
"This app needs persistent storage to save your conversations": string;
|
|
317
|
+
"Why is this needed?": string;
|
|
318
|
+
"Without persistent storage, your browser may delete saved conversations when it needs disk space. Granting this permission ensures your chat history is preserved.": string;
|
|
319
|
+
"What this means:": string;
|
|
320
|
+
"Your conversations will be saved locally in your browser": string;
|
|
321
|
+
"Data will not be deleted automatically to free up space": string;
|
|
322
|
+
"You can still manually clear data at any time": string;
|
|
323
|
+
"No data is sent to external servers": string;
|
|
324
|
+
"Continue Anyway": string;
|
|
325
|
+
"Requesting...": string;
|
|
326
|
+
"Grant Permission": string;
|
|
327
|
+
Sessions: string;
|
|
328
|
+
"Load a previous conversation": string;
|
|
329
|
+
"No sessions yet": string;
|
|
330
|
+
"Delete this session?": string;
|
|
331
|
+
Today: string;
|
|
332
|
+
Yesterday: string;
|
|
333
|
+
"{days} days ago": string;
|
|
334
|
+
messages: string;
|
|
335
|
+
tokens: string;
|
|
336
|
+
Delete: string;
|
|
337
|
+
"Drop files here": string;
|
|
338
|
+
"Command failed:": string;
|
|
339
|
+
"*": string;
|
|
340
|
+
Copy: string;
|
|
341
|
+
"Copy code": string;
|
|
342
|
+
Close: string;
|
|
343
|
+
Preview: string;
|
|
344
|
+
Code: string;
|
|
345
|
+
"Loading...": string;
|
|
346
|
+
"Select an option": string;
|
|
347
|
+
"Mode 1": string;
|
|
348
|
+
"Mode 2": string;
|
|
349
|
+
Required: string;
|
|
350
|
+
Optional: string;
|
|
351
|
+
};
|
|
352
|
+
de: {
|
|
353
|
+
Free: string;
|
|
354
|
+
"Input Required": string;
|
|
355
|
+
Cancel: string;
|
|
356
|
+
Confirm: string;
|
|
357
|
+
"Select Model": string;
|
|
358
|
+
"Search models...": string;
|
|
359
|
+
Format: string;
|
|
360
|
+
Thinking: string;
|
|
361
|
+
Vision: string;
|
|
362
|
+
You: string;
|
|
363
|
+
Assistant: string;
|
|
364
|
+
"Thinking...": string;
|
|
365
|
+
"Type your message...": string;
|
|
366
|
+
"API Keys Configuration": string;
|
|
367
|
+
"Configure API keys for LLM providers. Keys are stored locally in your browser.": string;
|
|
368
|
+
Configured: string;
|
|
369
|
+
"Not configured": string;
|
|
370
|
+
"\u2713 Valid": string;
|
|
371
|
+
"\u2717 Invalid": string;
|
|
372
|
+
"Testing...": string;
|
|
373
|
+
Update: string;
|
|
374
|
+
Test: string;
|
|
375
|
+
Remove: string;
|
|
376
|
+
Save: string;
|
|
377
|
+
"Update API key": string;
|
|
378
|
+
"Enter API key": string;
|
|
379
|
+
"Type a message...": string;
|
|
380
|
+
"Failed to fetch file": string;
|
|
381
|
+
"Invalid source type": string;
|
|
382
|
+
PDF: string;
|
|
383
|
+
Document: string;
|
|
384
|
+
Presentation: string;
|
|
385
|
+
Spreadsheet: string;
|
|
386
|
+
Text: string;
|
|
387
|
+
"Error loading file": string;
|
|
388
|
+
"No text content available": string;
|
|
389
|
+
"Failed to load PDF": string;
|
|
390
|
+
"Failed to load document": string;
|
|
391
|
+
"Failed to load spreadsheet": string;
|
|
392
|
+
"Error loading PDF": string;
|
|
393
|
+
"Error loading document": string;
|
|
394
|
+
"Error loading spreadsheet": string;
|
|
395
|
+
"Preview not available for this file type.": string;
|
|
396
|
+
"Click the download button above to view it on your computer.": string;
|
|
397
|
+
"No content available": string;
|
|
398
|
+
"Failed to display text content": string;
|
|
399
|
+
"API keys are required to use AI models. Get your keys from the provider's website.": string;
|
|
400
|
+
console: string;
|
|
401
|
+
"Copy output": string;
|
|
402
|
+
"Copied!": string;
|
|
403
|
+
"Error:": string;
|
|
404
|
+
"Request aborted": string;
|
|
405
|
+
Call: string;
|
|
406
|
+
Result: string;
|
|
407
|
+
"(no result)": string;
|
|
408
|
+
"Waiting for tool result\u2026": string;
|
|
409
|
+
"Call was aborted; no result.": string;
|
|
410
|
+
"No session available": string;
|
|
411
|
+
"No session set": string;
|
|
412
|
+
"Preparing tool parameters...": string;
|
|
413
|
+
"(no output)": string;
|
|
414
|
+
Input: string;
|
|
415
|
+
Output: string;
|
|
416
|
+
"Waiting for expression...": string;
|
|
417
|
+
"Writing expression...": string;
|
|
418
|
+
Calculating: string;
|
|
419
|
+
"Getting current time in": string;
|
|
420
|
+
"Getting current date and time": string;
|
|
421
|
+
"Waiting for command...": string;
|
|
422
|
+
"Writing command...": string;
|
|
423
|
+
"Running command...": string;
|
|
424
|
+
"Command failed": string;
|
|
425
|
+
"Enter Auth Token": string;
|
|
426
|
+
"Please enter your auth token.": string;
|
|
427
|
+
"Auth token is required for proxy transport": string;
|
|
428
|
+
"Execution aborted": string;
|
|
429
|
+
"Code parameter is required": string;
|
|
430
|
+
"Unknown error": string;
|
|
431
|
+
"Code executed successfully (no output)": string;
|
|
432
|
+
"Execution failed": string;
|
|
433
|
+
"JavaScript REPL": string;
|
|
434
|
+
"JavaScript code to execute": string;
|
|
435
|
+
"Writing JavaScript code...": string;
|
|
436
|
+
"Executing JavaScript": string;
|
|
437
|
+
"Preparing JavaScript...": string;
|
|
438
|
+
"Preparing command...": string;
|
|
439
|
+
"Preparing calculation...": string;
|
|
440
|
+
"Preparing tool...": string;
|
|
441
|
+
"Getting time...": string;
|
|
442
|
+
"Processing artifact...": string;
|
|
443
|
+
"Preparing artifact...": string;
|
|
444
|
+
"Processing artifact": string;
|
|
445
|
+
"Processed artifact": string;
|
|
446
|
+
"Creating artifact": string;
|
|
447
|
+
"Created artifact": string;
|
|
448
|
+
"Updating artifact": string;
|
|
449
|
+
"Updated artifact": string;
|
|
450
|
+
"Rewriting artifact": string;
|
|
451
|
+
"Rewrote artifact": string;
|
|
452
|
+
"Getting artifact": string;
|
|
453
|
+
"Got artifact": string;
|
|
454
|
+
"Deleting artifact": string;
|
|
455
|
+
"Deleted artifact": string;
|
|
456
|
+
"Getting logs": string;
|
|
457
|
+
"Got logs": string;
|
|
458
|
+
"An error occurred": string;
|
|
459
|
+
"Copy logs": string;
|
|
460
|
+
"Autoscroll enabled": string;
|
|
461
|
+
"Autoscroll disabled": string;
|
|
462
|
+
Processing: string;
|
|
463
|
+
Create: string;
|
|
464
|
+
Rewrite: string;
|
|
465
|
+
Get: string;
|
|
466
|
+
"Get logs": string;
|
|
467
|
+
"Show artifacts": string;
|
|
468
|
+
"Close artifacts": string;
|
|
469
|
+
Artifacts: string;
|
|
470
|
+
"Copy HTML": string;
|
|
471
|
+
"Download HTML": string;
|
|
472
|
+
"Reload HTML": string;
|
|
473
|
+
"Copy SVG": string;
|
|
474
|
+
"Download SVG": string;
|
|
475
|
+
"Copy Markdown": string;
|
|
476
|
+
"Download Markdown": string;
|
|
477
|
+
Download: string;
|
|
478
|
+
"No logs for {filename}": string;
|
|
479
|
+
"API Keys Settings": string;
|
|
480
|
+
Settings: string;
|
|
481
|
+
"API Keys": string;
|
|
482
|
+
Proxy: string;
|
|
483
|
+
"Use CORS Proxy": string;
|
|
484
|
+
"Proxy URL": string;
|
|
485
|
+
"Settings are stored locally in your browser": string;
|
|
486
|
+
Clear: string;
|
|
487
|
+
"API Key Required": string;
|
|
488
|
+
"Enter your API key for {provider}": string;
|
|
489
|
+
"The CORS proxy strips CORS headers from API responses, allowing browser-based apps to make direct calls to LLM providers without CORS restrictions. It forwards requests to providers while removing headers that would otherwise block cross-origin requests.": string;
|
|
490
|
+
Off: string;
|
|
491
|
+
Minimal: string;
|
|
492
|
+
Low: string;
|
|
493
|
+
Medium: string;
|
|
494
|
+
High: string;
|
|
495
|
+
"Storage Permission Required": string;
|
|
496
|
+
"This app needs persistent storage to save your conversations": string;
|
|
497
|
+
"Why is this needed?": string;
|
|
498
|
+
"Without persistent storage, your browser may delete saved conversations when it needs disk space. Granting this permission ensures your chat history is preserved.": string;
|
|
499
|
+
"What this means:": string;
|
|
500
|
+
"Your conversations will be saved locally in your browser": string;
|
|
501
|
+
"Data will not be deleted automatically to free up space": string;
|
|
502
|
+
"You can still manually clear data at any time": string;
|
|
503
|
+
"No data is sent to external servers": string;
|
|
504
|
+
"Continue Anyway": string;
|
|
505
|
+
"Requesting...": string;
|
|
506
|
+
"Grant Permission": string;
|
|
507
|
+
Sessions: string;
|
|
508
|
+
"Load a previous conversation": string;
|
|
509
|
+
"No sessions yet": string;
|
|
510
|
+
"Delete this session?": string;
|
|
511
|
+
Today: string;
|
|
512
|
+
Yesterday: string;
|
|
513
|
+
"{days} days ago": string;
|
|
514
|
+
messages: string;
|
|
515
|
+
tokens: string;
|
|
516
|
+
Delete: string;
|
|
517
|
+
"Drop files here": string;
|
|
518
|
+
"Command failed:": string;
|
|
519
|
+
"*": string;
|
|
520
|
+
Copy: string;
|
|
521
|
+
"Copy code": string;
|
|
522
|
+
Close: string;
|
|
523
|
+
Preview: string;
|
|
524
|
+
Code: string;
|
|
525
|
+
"Loading...": string;
|
|
526
|
+
"Select an option": string;
|
|
527
|
+
"Mode 1": string;
|
|
528
|
+
"Mode 2": string;
|
|
529
|
+
Required: string;
|
|
530
|
+
Optional: string;
|
|
531
|
+
};
|
|
532
|
+
};
|
|
110
533
|
export * from "@mariozechner/mini-lit/dist/i18n.js";
|
|
111
534
|
//# sourceMappingURL=i18n.d.ts.map
|
package/dist/utils/i18n.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"i18n.d.ts","sourceRoot":"","sources":["../../src/utils/i18n.ts"],"names":[],"mappings":"AAAA,OAAO,EAAiC,KAAK,uBAAuB,EAAmB,MAAM,wBAAwB,CAAC;AAEtH,OAAO,QAAQ,wBAAwB,CAAC;IACvC,UAAU,YAAa,SAAQ,uBAAuB;QACrD,IAAI,EAAE,MAAM,CAAC;QACb,gBAAgB,EAAE,MAAM,CAAC;QACzB,MAAM,EAAE,MAAM,CAAC;QACf,OAAO,EAAE,MAAM,CAAC;QAChB,cAAc,EAAE,MAAM,CAAC;QACvB,kBAAkB,EAAE,MAAM,CAAC;QAC3B,MAAM,EAAE,MAAM,CAAC;QACf,QAAQ,EAAE,MAAM,CAAC;QACjB,MAAM,EAAE,MAAM,CAAC;QACf,GAAG,EAAE,MAAM,CAAC;QACZ,SAAS,EAAE,MAAM,CAAC;QAClB,aAAa,EAAE,MAAM,CAAC;QACtB,sBAAsB,EAAE,MAAM,CAAC;QAC/B,wBAAwB,EAAE,MAAM,CAAC;QACjC,gFAAgF,EAAE,MAAM,CAAC;QACzF,UAAU,EAAE,MAAM,CAAC;QACnB,gBAAgB,EAAE,MAAM,CAAC;QACzB,SAAS,EAAE,MAAM,CAAC;QAClB,WAAW,EAAE,MAAM,CAAC;QACpB,YAAY,EAAE,MAAM,CAAC;QACrB,MAAM,EAAE,MAAM,CAAC;QACf,IAAI,EAAE,MAAM,CAAC;QACb,MAAM,EAAE,MAAM,CAAC;QACf,IAAI,EAAE,MAAM,CAAC;QACb,gBAAgB,EAAE,MAAM,CAAC;QACzB,eAAe,EAAE,MAAM,CAAC;QACxB,mBAAmB,EAAE,MAAM,CAAC;QAC5B,sBAAsB,EAAE,MAAM,CAAC;QAC/B,qBAAqB,EAAE,MAAM,CAAC;QAC9B,GAAG,EAAE,MAAM,CAAC;QACZ,QAAQ,EAAE,MAAM,CAAC;QACjB,YAAY,EAAE,MAAM,CAAC;QACrB,WAAW,EAAE,MAAM,CAAC;QACpB,IAAI,EAAE,MAAM,CAAC;QACb,oBAAoB,EAAE,MAAM,CAAC;QAC7B,2BAA2B,EAAE,MAAM,CAAC;QACpC,oBAAoB,EAAE,MAAM,CAAC;QAC7B,yBAAyB,EAAE,MAAM,CAAC;QAClC,4BAA4B,EAAE,MAAM,CAAC;QACrC,sBAAsB,EAAE,MAAM,CAAC;QAC/B,gCAAgC,EAAE,MAAM,CAAC;QACzC,oFAAoF,EAAE,MAAM,CAAC;QAC7F,OAAO,EAAE,MAAM,CAAC;QAChB,aAAa,EAAE,MAAM,CAAC;QACtB,SAAS,EAAE,MAAM,CAAC;QAClB,QAAQ,EAAE,MAAM,CAAC;QACjB,iBAAiB,EAAE,MAAM,CAAC;QAC1B,IAAI,EAAE,MAAM,CAAC;QACb,MAAM,EAAE,MAAM,CAAC;QACf,aAAa,EAAE,MAAM,CAAC;QACtB,0BAA0B,EAAE,MAAM,CAAC;QACnC,8BAA8B,EAAE,MAAM,CAAC;QACvC,sBAAsB,EAAE,MAAM,CAAC;QAC/B,gBAAgB,EAAE,MAAM,CAAC;QACzB,8BAA8B,EAAE,MAAM,CAAC;QACvC,aAAa,EAAE,MAAM,CAAC;QACtB,uBAAuB,EAAE,MAAM,CAAC;QAChC,WAAW,EAAE,MAAM,CAAC;QACpB,yBAAyB,EAAE,MAAM,CAAC;QAClC,+BAA+B,EAAE,MAAM,CAAC;QACxC,oBAAoB,EAAE,MAAM,CAAC;QAC7B,
|
|
1
|
+
{"version":3,"file":"i18n.d.ts","sourceRoot":"","sources":["../../src/utils/i18n.ts"],"names":[],"mappings":"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"}
|