@elizaos/app-core 2.0.0-alpha.73 → 2.0.0-alpha.75
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/App.d.ts +5 -0
- package/App.d.ts.map +1 -0
- package/App.js +220 -0
- package/actions/character.d.ts +39 -0
- package/actions/character.d.ts.map +1 -0
- package/actions/character.js +247 -0
- package/actions/chat-helpers.d.ts +47 -0
- package/actions/chat-helpers.d.ts.map +1 -0
- package/actions/chat-helpers.js +79 -0
- package/actions/cloud.d.ts +17 -0
- package/actions/cloud.d.ts.map +1 -0
- package/actions/cloud.js +43 -0
- package/actions/index.d.ts +12 -0
- package/actions/index.d.ts.map +1 -0
- package/actions/index.js +11 -0
- package/actions/lifecycle.d.ts +43 -0
- package/actions/lifecycle.d.ts.map +1 -0
- package/actions/lifecycle.js +118 -0
- package/actions/onboarding.d.ts +12 -0
- package/actions/onboarding.d.ts.map +1 -0
- package/actions/onboarding.js +26 -0
- package/actions/triggers.d.ts +23 -0
- package/actions/triggers.d.ts.map +1 -0
- package/actions/triggers.js +148 -0
- package/api/client.d.ts +2736 -0
- package/api/client.d.ts.map +1 -0
- package/api/client.js +2492 -0
- package/api/index.d.ts +2 -0
- package/api/index.d.ts.map +1 -0
- package/autonomy/index.d.ts +48 -0
- package/autonomy/index.d.ts.map +1 -0
- package/autonomy/index.js +330 -0
- package/bridge/capacitor-bridge.d.ts +153 -0
- package/bridge/capacitor-bridge.d.ts.map +1 -0
- package/bridge/capacitor-bridge.js +193 -0
- package/bridge/electrobun-rpc.d.ts +28 -0
- package/bridge/electrobun-rpc.d.ts.map +1 -0
- package/bridge/electrobun-rpc.js +35 -0
- package/bridge/electrobun-runtime.d.ts +3 -0
- package/bridge/electrobun-runtime.d.ts.map +1 -0
- package/bridge/electrobun-runtime.js +17 -0
- package/bridge/index.d.ts +6 -0
- package/bridge/index.d.ts.map +1 -0
- package/bridge/native-plugins.d.ts +82 -0
- package/bridge/native-plugins.d.ts.map +1 -0
- package/bridge/native-plugins.js +39 -0
- package/bridge/plugin-bridge.d.ts +116 -0
- package/bridge/plugin-bridge.d.ts.map +1 -0
- package/bridge/plugin-bridge.js +203 -0
- package/bridge/storage-bridge.d.ts +39 -0
- package/bridge/storage-bridge.d.ts.map +1 -0
- package/bridge/storage-bridge.js +135 -0
- package/chat/index.d.ts +57 -0
- package/chat/index.d.ts.map +1 -0
- package/chat/index.js +160 -0
- package/coding/index.d.ts +25 -0
- package/coding/index.d.ts.map +1 -0
- package/coding/index.js +25 -0
- package/components/AdvancedPageView.d.ts +17 -0
- package/components/AdvancedPageView.d.ts.map +1 -0
- package/components/AdvancedPageView.js +146 -0
- package/components/AgentActivityBox.d.ts +7 -0
- package/components/AgentActivityBox.d.ts.map +1 -0
- package/components/AgentActivityBox.js +25 -0
- package/components/ApiKeyConfig.d.ts +26 -0
- package/components/ApiKeyConfig.d.ts.map +1 -0
- package/components/ApiKeyConfig.js +119 -0
- package/components/AppsPageView.d.ts +7 -0
- package/components/AppsPageView.d.ts.map +1 -0
- package/components/AppsPageView.js +31 -0
- package/components/AppsView.d.ts +8 -0
- package/components/AppsView.d.ts.map +1 -0
- package/components/AppsView.js +149 -0
- package/components/AvatarLoader.d.ts +13 -0
- package/components/AvatarLoader.d.ts.map +1 -0
- package/components/AvatarLoader.js +53 -0
- package/components/AvatarSelector.d.ts +23 -0
- package/components/AvatarSelector.d.ts.map +1 -0
- package/components/AvatarSelector.js +105 -0
- package/components/BscTradePanel.d.ts +22 -0
- package/components/BscTradePanel.d.ts.map +1 -0
- package/components/BscTradePanel.js +221 -0
- package/components/BugReportModal.d.ts +2 -0
- package/components/BugReportModal.d.ts.map +1 -0
- package/components/BugReportModal.js +219 -0
- package/components/CharacterRoster.d.ts +31 -0
- package/components/CharacterRoster.d.ts.map +1 -0
- package/components/CharacterRoster.js +41 -0
- package/components/CharacterView.d.ts +8 -0
- package/components/CharacterView.d.ts.map +1 -0
- package/components/CharacterView.js +685 -0
- package/components/ChatAvatar.d.ts +8 -0
- package/components/ChatAvatar.d.ts.map +1 -0
- package/components/ChatAvatar.js +89 -0
- package/components/ChatComposer.d.ts +37 -0
- package/components/ChatComposer.d.ts.map +1 -0
- package/components/ChatComposer.js +136 -0
- package/components/ChatMessage.d.ts +24 -0
- package/components/ChatMessage.d.ts.map +1 -0
- package/components/ChatMessage.js +167 -0
- package/components/ChatModalView.d.ts +10 -0
- package/components/ChatModalView.d.ts.map +1 -0
- package/components/ChatModalView.js +57 -0
- package/components/ChatView.d.ts +14 -0
- package/components/ChatView.d.ts.map +1 -0
- package/components/ChatView.js +526 -0
- package/components/CloudOnboarding.d.ts +7 -0
- package/components/CloudOnboarding.d.ts.map +1 -0
- package/components/CloudOnboarding.js +22 -0
- package/components/CloudSourceControls.d.ts +13 -0
- package/components/CloudSourceControls.d.ts.map +1 -0
- package/components/CloudSourceControls.js +16 -0
- package/components/CodingAgentSettingsSection.d.ts +2 -0
- package/components/CodingAgentSettingsSection.d.ts.map +1 -0
- package/components/CodingAgentSettingsSection.js +270 -0
- package/components/CommandPalette.d.ts +2 -0
- package/components/CommandPalette.d.ts.map +1 -0
- package/components/CommandPalette.js +181 -0
- package/components/CompanionSceneHost.d.ts +14 -0
- package/components/CompanionSceneHost.d.ts.map +1 -0
- package/components/CompanionSceneHost.js +360 -0
- package/components/CompanionShell.d.ts +17 -0
- package/components/CompanionShell.d.ts.map +1 -0
- package/components/CompanionShell.js +15 -0
- package/components/CompanionView.d.ts +2 -0
- package/components/CompanionView.d.ts.map +1 -0
- package/components/CompanionView.js +22 -0
- package/components/ConfigPageView.d.ts +11 -0
- package/components/ConfigPageView.d.ts.map +1 -0
- package/components/ConfigPageView.js +303 -0
- package/components/ConfigSaveFooter.d.ts +8 -0
- package/components/ConfigSaveFooter.d.ts.map +1 -0
- package/components/ConfigSaveFooter.js +10 -0
- package/components/ConfirmModal.d.ts +61 -0
- package/components/ConfirmModal.d.ts.map +1 -0
- package/components/ConfirmModal.js +164 -0
- package/components/ConnectionFailedBanner.d.ts +6 -0
- package/components/ConnectionFailedBanner.d.ts.map +1 -0
- package/components/ConnectionFailedBanner.js +22 -0
- package/components/ConnectorsPageView.d.ts +7 -0
- package/components/ConnectorsPageView.d.ts.map +1 -0
- package/components/ConnectorsPageView.js +8 -0
- package/components/ConversationsSidebar.d.ts +9 -0
- package/components/ConversationsSidebar.d.ts.map +1 -0
- package/components/ConversationsSidebar.js +116 -0
- package/components/CustomActionEditor.d.ts +10 -0
- package/components/CustomActionEditor.d.ts.map +1 -0
- package/components/CustomActionEditor.js +578 -0
- package/components/CustomActionsPanel.d.ts +9 -0
- package/components/CustomActionsPanel.d.ts.map +1 -0
- package/components/CustomActionsPanel.js +107 -0
- package/components/CustomActionsView.d.ts +2 -0
- package/components/CustomActionsView.d.ts.map +1 -0
- package/components/CustomActionsView.js +134 -0
- package/components/DatabasePageView.d.ts +5 -0
- package/components/DatabasePageView.d.ts.map +1 -0
- package/components/DatabasePageView.js +28 -0
- package/components/DatabaseView.d.ts +9 -0
- package/components/DatabaseView.d.ts.map +1 -0
- package/components/DatabaseView.js +311 -0
- package/components/ElizaCloudDashboard.d.ts +2 -0
- package/components/ElizaCloudDashboard.d.ts.map +1 -0
- package/components/ElizaCloudDashboard.js +657 -0
- package/components/EmotePicker.d.ts +2 -0
- package/components/EmotePicker.d.ts.map +1 -0
- package/components/EmotePicker.js +343 -0
- package/components/ErrorBoundary.d.ts +22 -0
- package/components/ErrorBoundary.d.ts.map +1 -0
- package/components/ErrorBoundary.js +31 -0
- package/components/FineTuningView.d.ts +2 -0
- package/components/FineTuningView.d.ts.map +1 -0
- package/components/FineTuningView.js +433 -0
- package/components/FlaminaGuide.d.ts +10 -0
- package/components/FlaminaGuide.d.ts.map +1 -0
- package/components/FlaminaGuide.js +64 -0
- package/components/GameView.d.ts +11 -0
- package/components/GameView.d.ts.map +1 -0
- package/components/GameView.js +294 -0
- package/components/GameViewOverlay.d.ts +8 -0
- package/components/GameViewOverlay.d.ts.map +1 -0
- package/components/GameViewOverlay.js +70 -0
- package/components/GlobalEmoteOverlay.d.ts +2 -0
- package/components/GlobalEmoteOverlay.d.ts.map +1 -0
- package/components/GlobalEmoteOverlay.js +112 -0
- package/components/Header.d.ts +9 -0
- package/components/Header.d.ts.map +1 -0
- package/components/Header.js +123 -0
- package/components/HeartbeatsView.d.ts +2 -0
- package/components/HeartbeatsView.d.ts.map +1 -0
- package/components/HeartbeatsView.js +378 -0
- package/components/InventoryView.d.ts +10 -0
- package/components/InventoryView.d.ts.map +1 -0
- package/components/InventoryView.js +176 -0
- package/components/KnowledgeView.d.ts +20 -0
- package/components/KnowledgeView.d.ts.map +1 -0
- package/components/KnowledgeView.js +480 -0
- package/components/LanguageDropdown.d.ts +30 -0
- package/components/LanguageDropdown.d.ts.map +1 -0
- package/components/LanguageDropdown.js +99 -0
- package/components/LifoMonitorPanel.d.ts +21 -0
- package/components/LifoMonitorPanel.d.ts.map +1 -0
- package/components/LifoMonitorPanel.js +24 -0
- package/components/LifoSandboxView.d.ts +5 -0
- package/components/LifoSandboxView.d.ts.map +1 -0
- package/components/LifoSandboxView.js +333 -0
- package/components/LoadingScreen.d.ts +13 -0
- package/components/LoadingScreen.d.ts.map +1 -0
- package/components/LoadingScreen.js +70 -0
- package/components/LogsPageView.d.ts +2 -0
- package/components/LogsPageView.d.ts.map +1 -0
- package/components/LogsPageView.js +7 -0
- package/components/LogsView.d.ts +5 -0
- package/components/LogsView.d.ts.map +1 -0
- package/components/LogsView.js +71 -0
- package/components/MediaGalleryView.d.ts +9 -0
- package/components/MediaGalleryView.d.ts.map +1 -0
- package/components/MediaGalleryView.js +236 -0
- package/components/MediaSettingsSection.d.ts +11 -0
- package/components/MediaSettingsSection.d.ts.map +1 -0
- package/components/MediaSettingsSection.js +329 -0
- package/components/MessageContent.d.ts +51 -0
- package/components/MessageContent.d.ts.map +1 -0
- package/components/MessageContent.js +553 -0
- package/components/OnboardingWizard.d.ts +2 -0
- package/components/OnboardingWizard.d.ts.map +1 -0
- package/components/OnboardingWizard.js +96 -0
- package/components/PairingView.d.ts +5 -0
- package/components/PairingView.d.ts.map +1 -0
- package/components/PairingView.js +29 -0
- package/components/PermissionsSection.d.ts +20 -0
- package/components/PermissionsSection.d.ts.map +1 -0
- package/components/PermissionsSection.js +573 -0
- package/components/PluginsPageView.d.ts +5 -0
- package/components/PluginsPageView.d.ts.map +1 -0
- package/components/PluginsPageView.js +8 -0
- package/components/PluginsView.d.ts +21 -0
- package/components/PluginsView.d.ts.map +1 -0
- package/components/PluginsView.js +1534 -0
- package/components/ProviderSwitcher.d.ts +42 -0
- package/components/ProviderSwitcher.d.ts.map +1 -0
- package/components/ProviderSwitcher.js +493 -0
- package/components/RestartBanner.d.ts +2 -0
- package/components/RestartBanner.d.ts.map +1 -0
- package/components/RestartBanner.js +36 -0
- package/components/RuntimeView.d.ts +10 -0
- package/components/RuntimeView.d.ts.map +1 -0
- package/components/RuntimeView.js +165 -0
- package/components/SaveCommandModal.d.ts +12 -0
- package/components/SaveCommandModal.d.ts.map +1 -0
- package/components/SaveCommandModal.js +84 -0
- package/components/SecretsView.d.ts +9 -0
- package/components/SecretsView.d.ts.map +1 -0
- package/components/SecretsView.js +249 -0
- package/components/SettingsView.d.ts +9 -0
- package/components/SettingsView.d.ts.map +1 -0
- package/components/SettingsView.js +230 -0
- package/components/ShellOverlays.d.ts +8 -0
- package/components/ShellOverlays.d.ts.map +1 -0
- package/components/ShellOverlays.js +10 -0
- package/components/ShortcutsOverlay.d.ts +2 -0
- package/components/ShortcutsOverlay.d.ts.map +1 -0
- package/components/ShortcutsOverlay.js +79 -0
- package/components/SkillsView.d.ts +11 -0
- package/components/SkillsView.d.ts.map +1 -0
- package/components/SkillsView.js +358 -0
- package/components/StartupFailureView.d.ts +8 -0
- package/components/StartupFailureView.d.ts.map +1 -0
- package/components/StartupFailureView.js +16 -0
- package/components/StreamView.d.ts +16 -0
- package/components/StreamView.d.ts.map +1 -0
- package/components/StreamView.js +300 -0
- package/components/StripeEmbeddedCheckout.d.ts +24 -0
- package/components/StripeEmbeddedCheckout.d.ts.map +1 -0
- package/components/StripeEmbeddedCheckout.js +101 -0
- package/components/SubscriptionStatus.d.ts +23 -0
- package/components/SubscriptionStatus.d.ts.map +1 -0
- package/components/SubscriptionStatus.js +301 -0
- package/components/SystemWarningBanner.d.ts +6 -0
- package/components/SystemWarningBanner.d.ts.map +1 -0
- package/components/SystemWarningBanner.js +46 -0
- package/components/ThemeToggle.d.ts +21 -0
- package/components/ThemeToggle.d.ts.map +1 -0
- package/components/ThemeToggle.js +24 -0
- package/components/TrajectoriesView.d.ts +12 -0
- package/components/TrajectoriesView.d.ts.map +1 -0
- package/components/TrajectoriesView.js +183 -0
- package/components/TrajectoryDetailView.d.ts +13 -0
- package/components/TrajectoryDetailView.d.ts.map +1 -0
- package/components/TrajectoryDetailView.js +112 -0
- package/components/TriggersView.d.ts +2 -0
- package/components/TriggersView.d.ts.map +1 -0
- package/components/VectorBrowserView.d.ts +10 -0
- package/components/VectorBrowserView.d.ts.map +1 -0
- package/components/VectorBrowserView.js +997 -0
- package/components/VoiceConfigView.d.ts +11 -0
- package/components/VoiceConfigView.d.ts.map +1 -0
- package/components/VoiceConfigView.js +329 -0
- package/components/VrmStage.d.ts +28 -0
- package/components/VrmStage.d.ts.map +1 -0
- package/components/VrmStage.js +178 -0
- package/components/WhatsAppQrOverlay.d.ts +8 -0
- package/components/WhatsAppQrOverlay.d.ts.map +1 -0
- package/components/WhatsAppQrOverlay.js +63 -0
- package/components/apps/AppDetailPane.d.ts +15 -0
- package/components/apps/AppDetailPane.d.ts.map +1 -0
- package/components/apps/AppDetailPane.js +13 -0
- package/components/apps/AppsCatalogGrid.d.ts +20 -0
- package/components/apps/AppsCatalogGrid.d.ts.map +1 -0
- package/components/apps/AppsCatalogGrid.js +18 -0
- package/components/apps/extensions/registry.d.ts +4 -0
- package/components/apps/extensions/registry.d.ts.map +1 -0
- package/components/apps/extensions/registry.js +7 -0
- package/components/apps/extensions/types.d.ts +7 -0
- package/components/apps/extensions/types.d.ts.map +1 -0
- package/components/apps/extensions/types.js +1 -0
- package/components/apps/helpers.d.ts +7 -0
- package/components/apps/helpers.d.ts.map +1 -0
- package/components/apps/helpers.js +44 -0
- package/components/avatar/VrmAnimationLoader.d.ts +30 -0
- package/components/avatar/VrmAnimationLoader.d.ts.map +1 -0
- package/components/avatar/VrmAnimationLoader.js +99 -0
- package/components/avatar/VrmBlinkController.d.ts +37 -0
- package/components/avatar/VrmBlinkController.d.ts.map +1 -0
- package/components/avatar/VrmBlinkController.js +98 -0
- package/components/avatar/VrmCameraManager.d.ts +57 -0
- package/components/avatar/VrmCameraManager.d.ts.map +1 -0
- package/components/avatar/VrmCameraManager.js +277 -0
- package/components/avatar/VrmEngine.d.ts +246 -0
- package/components/avatar/VrmEngine.d.ts.map +1 -0
- package/components/avatar/VrmEngine.js +2076 -0
- package/components/avatar/VrmFootShadow.d.ts +18 -0
- package/components/avatar/VrmFootShadow.d.ts.map +1 -0
- package/components/avatar/VrmFootShadow.js +83 -0
- package/components/avatar/VrmViewer.d.ts +60 -0
- package/components/avatar/VrmViewer.d.ts.map +1 -0
- package/components/avatar/VrmViewer.js +396 -0
- package/components/avatar/mixamoVRMRigMap.d.ts +3 -0
- package/components/avatar/mixamoVRMRigMap.d.ts.map +1 -0
- package/components/avatar/mixamoVRMRigMap.js +56 -0
- package/components/avatar/retargetMixamoFbxToVrm.d.ts +9 -0
- package/components/avatar/retargetMixamoFbxToVrm.d.ts.map +1 -0
- package/components/avatar/retargetMixamoFbxToVrm.js +88 -0
- package/components/avatar/retargetMixamoGltfToVrm.d.ts +11 -0
- package/components/avatar/retargetMixamoGltfToVrm.d.ts.map +1 -0
- package/components/avatar/retargetMixamoGltfToVrm.js +80 -0
- package/components/chainConfig.d.ts +89 -0
- package/components/chainConfig.d.ts.map +1 -0
- package/components/chainConfig.js +287 -0
- package/components/companion/CompanionHeader.d.ts +15 -0
- package/components/companion/CompanionHeader.d.ts.map +1 -0
- package/components/companion/CompanionHeader.js +7 -0
- package/components/companion/CompanionSceneHost.d.ts +2 -0
- package/components/companion/CompanionSceneHost.d.ts.map +1 -0
- package/components/companion/CompanionSceneHost.js +1 -0
- package/components/companion/VrmStage.d.ts +3 -0
- package/components/companion/VrmStage.d.ts.map +1 -0
- package/components/companion/VrmStage.js +1 -0
- package/components/companion/index.d.ts +18 -0
- package/components/companion/index.d.ts.map +1 -0
- package/components/companion/index.js +17 -0
- package/components/companion/walletUtils.d.ts +95 -0
- package/components/companion/walletUtils.d.ts.map +1 -0
- package/components/companion/walletUtils.js +167 -0
- package/components/companion-shell-styles.d.ts +38 -0
- package/components/companion-shell-styles.d.ts.map +1 -0
- package/components/companion-shell-styles.js +248 -0
- package/components/confirm-delete-control.d.ts +16 -0
- package/components/confirm-delete-control.d.ts.map +1 -0
- package/components/confirm-delete-control.js +12 -0
- package/components/conversations/ConversationListItem.d.ts +31 -0
- package/components/conversations/ConversationListItem.d.ts.map +1 -0
- package/components/conversations/ConversationListItem.js +52 -0
- package/components/conversations/conversation-utils.d.ts +9 -0
- package/components/conversations/conversation-utils.d.ts.map +1 -0
- package/components/conversations/conversation-utils.js +138 -0
- package/components/format.d.ts +54 -0
- package/components/format.d.ts.map +1 -0
- package/components/format.js +82 -0
- package/components/index.d.ts +96 -0
- package/components/index.d.ts.map +1 -0
- package/components/index.js +95 -0
- package/components/inventory/CopyableAddress.d.ts +8 -0
- package/components/inventory/CopyableAddress.d.ts.map +1 -0
- package/components/inventory/CopyableAddress.js +18 -0
- package/components/inventory/InventoryToolbar.d.ts +25 -0
- package/components/inventory/InventoryToolbar.d.ts.map +1 -0
- package/components/inventory/InventoryToolbar.js +28 -0
- package/components/inventory/NftGrid.d.ts +13 -0
- package/components/inventory/NftGrid.d.ts.map +1 -0
- package/components/inventory/NftGrid.js +29 -0
- package/components/inventory/TokenLogo.d.ts +12 -0
- package/components/inventory/TokenLogo.d.ts.map +1 -0
- package/components/inventory/TokenLogo.js +33 -0
- package/components/inventory/TokensTable.d.ts +24 -0
- package/components/inventory/TokensTable.d.ts.map +1 -0
- package/components/inventory/TokensTable.js +26 -0
- package/components/inventory/constants.d.ts +52 -0
- package/components/inventory/constants.d.ts.map +1 -0
- package/components/inventory/constants.js +121 -0
- package/components/inventory/index.d.ts +9 -0
- package/components/inventory/index.d.ts.map +1 -0
- package/components/inventory/index.js +8 -0
- package/components/inventory/media-url.d.ts +6 -0
- package/components/inventory/media-url.d.ts.map +1 -0
- package/components/inventory/media-url.js +28 -0
- package/components/inventory/useInventoryData.d.ts +53 -0
- package/components/inventory/useInventoryData.d.ts.map +1 -0
- package/components/inventory/useInventoryData.js +332 -0
- package/components/knowledge-upload-image.d.ts +27 -0
- package/components/knowledge-upload-image.d.ts.map +1 -0
- package/components/knowledge-upload-image.js +146 -0
- package/components/labels.d.ts +6 -0
- package/components/labels.d.ts.map +1 -0
- package/components/labels.js +40 -0
- package/components/onboarding/ActivateStep.d.ts +2 -0
- package/components/onboarding/ActivateStep.d.ts.map +1 -0
- package/components/onboarding/ActivateStep.js +10 -0
- package/components/onboarding/ConnectionStep.d.ts +2 -0
- package/components/onboarding/ConnectionStep.d.ts.map +1 -0
- package/components/onboarding/ConnectionStep.js +609 -0
- package/components/onboarding/IdentityStep.d.ts +2 -0
- package/components/onboarding/IdentityStep.d.ts.map +1 -0
- package/components/onboarding/IdentityStep.js +102 -0
- package/components/onboarding/OnboardingPanel.d.ts +9 -0
- package/components/onboarding/OnboardingPanel.d.ts.map +1 -0
- package/components/onboarding/OnboardingPanel.js +24 -0
- package/components/onboarding/OnboardingStepNav.d.ts +2 -0
- package/components/onboarding/OnboardingStepNav.d.ts.map +1 -0
- package/components/onboarding/OnboardingStepNav.js +23 -0
- package/components/onboarding/PermissionsStep.d.ts +2 -0
- package/components/onboarding/PermissionsStep.d.ts.map +1 -0
- package/components/onboarding/PermissionsStep.js +7 -0
- package/components/onboarding/RpcStep.d.ts +2 -0
- package/components/onboarding/RpcStep.d.ts.map +1 -0
- package/components/onboarding/RpcStep.js +125 -0
- package/components/permissions/PermissionIcon.d.ts +4 -0
- package/components/permissions/PermissionIcon.d.ts.map +1 -0
- package/components/permissions/PermissionIcon.js +12 -0
- package/components/permissions/StreamingPermissions.d.ts +20 -0
- package/components/permissions/StreamingPermissions.d.ts.map +1 -0
- package/components/permissions/StreamingPermissions.js +177 -0
- package/components/plugins/showcase-data.d.ts +7 -0
- package/components/plugins/showcase-data.d.ts.map +1 -0
- package/components/plugins/showcase-data.js +464 -0
- package/components/shared/ShellHeaderControls.d.ts +27 -0
- package/components/shared/ShellHeaderControls.d.ts.map +1 -0
- package/components/shared/ShellHeaderControls.js +60 -0
- package/components/shared-companion-scene-context.d.ts +3 -0
- package/components/shared-companion-scene-context.d.ts.map +1 -0
- package/components/shared-companion-scene-context.js +13 -0
- package/components/skeletons.d.ts +17 -0
- package/components/skeletons.d.ts.map +1 -0
- package/components/skeletons.js +22 -0
- package/components/stream/ActivityFeed.d.ts +5 -0
- package/components/stream/ActivityFeed.d.ts.map +1 -0
- package/components/stream/ActivityFeed.js +57 -0
- package/components/stream/AvatarPip.d.ts +5 -0
- package/components/stream/AvatarPip.d.ts.map +1 -0
- package/components/stream/AvatarPip.js +6 -0
- package/components/stream/ChatContent.d.ts +6 -0
- package/components/stream/ChatContent.d.ts.map +1 -0
- package/components/stream/ChatContent.js +69 -0
- package/components/stream/ChatTicker.d.ts +5 -0
- package/components/stream/ChatTicker.d.ts.map +1 -0
- package/components/stream/ChatTicker.js +34 -0
- package/components/stream/IdleContent.d.ts +5 -0
- package/components/stream/IdleContent.d.ts.map +1 -0
- package/components/stream/IdleContent.js +17 -0
- package/components/stream/StatusBar.d.ts +36 -0
- package/components/stream/StatusBar.d.ts.map +1 -0
- package/components/stream/StatusBar.js +140 -0
- package/components/stream/StreamSettings.d.ts +33 -0
- package/components/stream/StreamSettings.d.ts.map +1 -0
- package/components/stream/StreamSettings.js +99 -0
- package/components/stream/StreamTerminal.d.ts +2 -0
- package/components/stream/StreamTerminal.d.ts.map +1 -0
- package/components/stream/StreamTerminal.js +52 -0
- package/components/stream/StreamVoiceConfig.d.ts +10 -0
- package/components/stream/StreamVoiceConfig.d.ts.map +1 -0
- package/components/stream/StreamVoiceConfig.js +88 -0
- package/components/stream/helpers.d.ts +32 -0
- package/components/stream/helpers.d.ts.map +1 -0
- package/components/stream/helpers.js +110 -0
- package/components/stream/overlays/OverlayLayer.d.ts +20 -0
- package/components/stream/overlays/OverlayLayer.d.ts.map +1 -0
- package/components/stream/overlays/OverlayLayer.js +24 -0
- package/components/stream/overlays/built-in/ActionTickerWidget.d.ts +8 -0
- package/components/stream/overlays/built-in/ActionTickerWidget.d.ts.map +1 -0
- package/components/stream/overlays/built-in/ActionTickerWidget.js +44 -0
- package/components/stream/overlays/built-in/AlertPopupWidget.d.ts +7 -0
- package/components/stream/overlays/built-in/AlertPopupWidget.d.ts.map +1 -0
- package/components/stream/overlays/built-in/AlertPopupWidget.js +62 -0
- package/components/stream/overlays/built-in/BrandingWidget.d.ts +7 -0
- package/components/stream/overlays/built-in/BrandingWidget.d.ts.map +1 -0
- package/components/stream/overlays/built-in/BrandingWidget.js +36 -0
- package/components/stream/overlays/built-in/CustomHtmlWidget.d.ts +26 -0
- package/components/stream/overlays/built-in/CustomHtmlWidget.d.ts.map +1 -0
- package/components/stream/overlays/built-in/CustomHtmlWidget.js +78 -0
- package/components/stream/overlays/built-in/PeonGlassWidget.d.ts +11 -0
- package/components/stream/overlays/built-in/PeonGlassWidget.d.ts.map +1 -0
- package/components/stream/overlays/built-in/PeonGlassWidget.js +188 -0
- package/components/stream/overlays/built-in/PeonHudWidget.d.ts +10 -0
- package/components/stream/overlays/built-in/PeonHudWidget.d.ts.map +1 -0
- package/components/stream/overlays/built-in/PeonHudWidget.js +168 -0
- package/components/stream/overlays/built-in/PeonSakuraWidget.d.ts +11 -0
- package/components/stream/overlays/built-in/PeonSakuraWidget.d.ts.map +1 -0
- package/components/stream/overlays/built-in/PeonSakuraWidget.js +213 -0
- package/components/stream/overlays/built-in/ThoughtBubbleWidget.d.ts +8 -0
- package/components/stream/overlays/built-in/ThoughtBubbleWidget.d.ts.map +1 -0
- package/components/stream/overlays/built-in/ThoughtBubbleWidget.js +59 -0
- package/components/stream/overlays/built-in/ViewerCountWidget.d.ts +7 -0
- package/components/stream/overlays/built-in/ViewerCountWidget.d.ts.map +1 -0
- package/components/stream/overlays/built-in/ViewerCountWidget.js +34 -0
- package/components/stream/overlays/built-in/index.d.ts +13 -0
- package/components/stream/overlays/built-in/index.d.ts.map +1 -0
- package/components/stream/overlays/built-in/index.js +12 -0
- package/components/stream/overlays/registry.d.ts +11 -0
- package/components/stream/overlays/registry.d.ts.map +1 -0
- package/components/stream/overlays/registry.js +16 -0
- package/components/stream/overlays/types.d.ts +67 -0
- package/components/stream/overlays/types.d.ts.map +1 -0
- package/components/stream/overlays/types.js +7 -0
- package/components/stream/overlays/useOverlayLayout.d.ts +27 -0
- package/components/stream/overlays/useOverlayLayout.d.ts.map +1 -0
- package/components/stream/overlays/useOverlayLayout.js +162 -0
- package/components/trajectory-format.d.ts +6 -0
- package/components/trajectory-format.d.ts.map +1 -0
- package/components/trajectory-format.js +43 -0
- package/components/ui-badges.d.ts +23 -0
- package/components/ui-badges.d.ts.map +1 -0
- package/components/ui-badges.js +38 -0
- package/components/ui-switch.d.ts +14 -0
- package/components/ui-switch.d.ts.map +1 -0
- package/components/ui-switch.js +15 -0
- package/components/vector-browser-three.d.ts +4 -0
- package/components/vector-browser-three.d.ts.map +1 -0
- package/components/vector-browser-three.js +21 -0
- package/config/branding.d.ts +49 -0
- package/config/branding.d.ts.map +1 -0
- package/config/branding.js +16 -0
- package/config/config-catalog.d.ts +376 -0
- package/config/config-catalog.d.ts.map +1 -0
- package/config/config-catalog.js +724 -0
- package/config/config-field.d.ts +68 -0
- package/config/config-field.d.ts.map +1 -0
- package/config/config-field.js +840 -0
- package/config/config-renderer.d.ts +176 -0
- package/config/config-renderer.d.ts.map +1 -0
- package/config/config-renderer.js +405 -0
- package/config/index.d.ts +6 -0
- package/config/index.d.ts.map +1 -0
- package/config/index.js +5 -0
- package/config/ui-renderer.d.ts +26 -0
- package/config/ui-renderer.d.ts.map +1 -0
- package/config/ui-renderer.js +815 -0
- package/config/ui-spec.d.ts +164 -0
- package/config/ui-spec.d.ts.map +1 -0
- package/config/ui-spec.js +13 -0
- package/events/index.d.ts +47 -0
- package/events/index.d.ts.map +1 -0
- package/events/index.js +43 -0
- package/hooks/index.d.ts +15 -0
- package/hooks/index.d.ts.map +1 -0
- package/hooks/useBugReport.d.ts +14 -0
- package/hooks/useBugReport.d.ts.map +1 -0
- package/hooks/useBugReport.js +18 -0
- package/hooks/useCanvasWindow.d.ts +38 -0
- package/hooks/useCanvasWindow.d.ts.map +1 -0
- package/hooks/useCanvasWindow.js +273 -0
- package/hooks/useChatAvatarVoice.d.ts +10 -0
- package/hooks/useChatAvatarVoice.d.ts.map +1 -0
- package/hooks/useChatAvatarVoice.js +71 -0
- package/hooks/useClickOutside.d.ts +6 -0
- package/hooks/useClickOutside.d.ts.map +1 -0
- package/hooks/useClickOutside.js +25 -0
- package/hooks/useContextMenu.d.ts +17 -0
- package/hooks/useContextMenu.d.ts.map +1 -0
- package/hooks/useContextMenu.js +100 -0
- package/hooks/useKeyboardShortcuts.d.ts +17 -0
- package/hooks/useKeyboardShortcuts.d.ts.map +1 -0
- package/hooks/useKeyboardShortcuts.js +67 -0
- package/hooks/useLifoSync.d.ts +18 -0
- package/hooks/useLifoSync.d.ts.map +1 -0
- package/hooks/useLifoSync.js +113 -0
- package/hooks/useMemoryMonitor.d.ts +87 -0
- package/hooks/useMemoryMonitor.d.ts.map +1 -0
- package/hooks/useMemoryMonitor.js +209 -0
- package/hooks/useRenderGuard.d.ts +17 -0
- package/hooks/useRenderGuard.d.ts.map +1 -0
- package/hooks/useRenderGuard.js +36 -0
- package/hooks/useRetakeCapture.d.ts +12 -0
- package/hooks/useRetakeCapture.d.ts.map +1 -0
- package/hooks/useRetakeCapture.js +60 -0
- package/hooks/useStreamPopoutNavigation.d.ts +3 -0
- package/hooks/useStreamPopoutNavigation.d.ts.map +1 -0
- package/hooks/useStreamPopoutNavigation.js +17 -0
- package/hooks/useTimeout.d.ts +11 -0
- package/hooks/useTimeout.d.ts.map +1 -0
- package/hooks/useTimeout.js +32 -0
- package/hooks/useVoiceChat.d.ts +94 -0
- package/hooks/useVoiceChat.d.ts.map +1 -0
- package/hooks/useVoiceChat.js +1074 -0
- package/hooks/useWhatsAppPairing.d.ts +11 -0
- package/hooks/useWhatsAppPairing.d.ts.map +1 -0
- package/hooks/useWhatsAppPairing.js +95 -0
- package/i18n/index.d.ts +7 -0
- package/i18n/index.d.ts.map +1 -0
- package/i18n/index.js +53 -0
- package/i18n/locales/en.json +1239 -0
- package/i18n/locales/es.json +1236 -0
- package/i18n/locales/ko.json +1236 -0
- package/i18n/locales/pt.json +1236 -0
- package/i18n/locales/zh-CN.json +1236 -0
- package/i18n/messages.d.ts +6 -0
- package/i18n/messages.d.ts.map +1 -0
- package/i18n/messages.js +14 -0
- package/index.d.ts +5 -0
- package/index.d.ts.map +1 -0
- package/navigation/index.d.ts +27 -0
- package/navigation/index.d.ts.map +1 -0
- package/navigation/index.js +232 -0
- package/onboarding-config.d.ts +25 -0
- package/onboarding-config.d.ts.map +1 -0
- package/onboarding-config.js +76 -0
- package/package.json +143 -53
- package/platform/browser-launch.d.ts +2 -0
- package/platform/browser-launch.d.ts.map +1 -0
- package/platform/browser-launch.js +109 -0
- package/platform/index.d.ts +14 -0
- package/platform/index.d.ts.map +1 -0
- package/platform/index.js +24 -0
- package/platform/init.d.ts +40 -0
- package/platform/init.d.ts.map +1 -0
- package/platform/init.js +160 -0
- package/platform/lifo.d.ts +51 -0
- package/platform/lifo.d.ts.map +1 -0
- package/platform/lifo.js +138 -0
- package/providers/index.d.ts +19 -0
- package/providers/index.d.ts.map +1 -0
- package/providers/index.js +80 -0
- package/shell-params.d.ts +12 -0
- package/shell-params.d.ts.map +1 -0
- package/shell-params.js +19 -0
- package/state/AppContext.d.ts +12 -0
- package/state/AppContext.d.ts.map +1 -0
- package/state/AppContext.js +5060 -0
- package/state/index.d.ts +7 -0
- package/state/index.d.ts.map +1 -0
- package/state/internal.d.ts +7 -0
- package/state/internal.d.ts.map +1 -0
- package/state/internal.js +6 -0
- package/state/onboarding-resume.d.ts +11 -0
- package/state/onboarding-resume.d.ts.map +1 -0
- package/state/onboarding-resume.js +189 -0
- package/state/parsers.d.ts +26 -0
- package/state/parsers.d.ts.map +1 -0
- package/state/parsers.js +255 -0
- package/state/persistence.d.ts +59 -0
- package/state/persistence.d.ts.map +1 -0
- package/state/persistence.js +326 -0
- package/state/shell-routing.d.ts +12 -0
- package/state/shell-routing.d.ts.map +1 -0
- package/state/shell-routing.js +25 -0
- package/state/types.d.ts +421 -0
- package/state/types.d.ts.map +1 -0
- package/state/types.js +75 -0
- package/state/ui-preferences.d.ts +3 -0
- package/state/ui-preferences.d.ts.map +1 -0
- package/state/ui-preferences.js +1 -0
- package/state/useApp.d.ts +4 -0
- package/state/useApp.d.ts.map +1 -0
- package/state/useApp.js +22 -0
- package/state/vrm.d.ts +30 -0
- package/state/vrm.d.ts.map +1 -0
- package/state/vrm.js +82 -0
- package/styles/anime.css +6321 -0
- package/styles/onboarding-game.css +1092 -0
- package/types/index.d.ts +657 -0
- package/types/index.d.ts.map +1 -0
- package/types/index.js +1 -0
- package/utils/asset-url.d.ts +26 -0
- package/utils/asset-url.d.ts.map +1 -0
- package/utils/asset-url.js +99 -0
- package/utils/assistant-text.d.ts +2 -0
- package/utils/assistant-text.d.ts.map +1 -0
- package/utils/assistant-text.js +161 -0
- package/utils/clipboard.d.ts +2 -0
- package/utils/clipboard.d.ts.map +1 -0
- package/utils/clipboard.js +38 -0
- package/utils/desktop-dialogs.d.ts +19 -0
- package/utils/desktop-dialogs.d.ts.map +1 -0
- package/utils/desktop-dialogs.js +50 -0
- package/utils/eliza-globals.d.ts +11 -0
- package/utils/eliza-globals.d.ts.map +1 -0
- package/utils/eliza-globals.js +33 -0
- package/utils/index.d.ts +8 -0
- package/utils/index.d.ts.map +1 -0
- package/utils/number-parsing.d.ts +44 -0
- package/utils/number-parsing.d.ts.map +1 -0
- package/utils/number-parsing.js +56 -0
- package/utils/openExternalUrl.d.ts +2 -0
- package/utils/openExternalUrl.d.ts.map +1 -0
- package/utils/openExternalUrl.js +17 -0
- package/utils/spoken-text.d.ts +2 -0
- package/utils/spoken-text.d.ts.map +1 -0
- package/utils/spoken-text.js +56 -0
- package/utils/streaming-text.d.ts +3 -0
- package/utils/streaming-text.d.ts.map +1 -0
- package/utils/streaming-text.js +87 -0
- package/voice/index.d.ts +2 -0
- package/voice/index.d.ts.map +1 -0
- package/voice/types.d.ts +25 -0
- package/voice/types.d.ts.map +1 -0
- package/voice/types.js +166 -0
- package/wallet-rpc.d.ts +8 -0
- package/wallet-rpc.d.ts.map +1 -0
- package/wallet-rpc.js +131 -0
- package/.turbo/turbo-build.log +0 -5
- package/src/App.tsx +0 -504
- package/src/actions/character.test.ts +0 -139
- package/src/actions/character.ts +0 -334
- package/src/actions/chat-helpers.ts +0 -100
- package/src/actions/cloud.ts +0 -59
- package/src/actions/index.ts +0 -12
- package/src/actions/lifecycle.ts +0 -175
- package/src/actions/onboarding.ts +0 -38
- package/src/actions/triggers.ts +0 -190
- package/src/ambient.d.ts +0 -33
- package/src/api/client.ts +0 -5659
- package/src/autonomy/index.ts +0 -477
- package/src/bridge/capacitor-bridge.ts +0 -295
- package/src/bridge/electrobun-rpc.ts +0 -78
- package/src/bridge/electrobun-runtime.ts +0 -28
- package/src/bridge/native-plugins.ts +0 -138
- package/src/bridge/plugin-bridge.ts +0 -352
- package/src/bridge/storage-bridge.ts +0 -162
- package/src/chat/index.ts +0 -250
- package/src/coding/index.ts +0 -43
- package/src/components/AdvancedPageView.tsx +0 -382
- package/src/components/AgentActivityBox.tsx +0 -49
- package/src/components/ApiKeyConfig.tsx +0 -222
- package/src/components/AppsPageView.tsx +0 -52
- package/src/components/AppsView.tsx +0 -293
- package/src/components/AvatarLoader.tsx +0 -104
- package/src/components/AvatarSelector.tsx +0 -223
- package/src/components/BscTradePanel.tsx +0 -549
- package/src/components/BugReportModal.tsx +0 -499
- package/src/components/CharacterRoster.tsx +0 -143
- package/src/components/CharacterView.tsx +0 -1575
- package/src/components/ChatAvatar.test.ts +0 -97
- package/src/components/ChatAvatar.tsx +0 -147
- package/src/components/ChatComposer.tsx +0 -330
- package/src/components/ChatMessage.tsx +0 -448
- package/src/components/ChatModalView.test.tsx +0 -118
- package/src/components/ChatModalView.tsx +0 -125
- package/src/components/ChatView.tsx +0 -992
- package/src/components/CloudOnboarding.tsx +0 -81
- package/src/components/CloudSourceControls.tsx +0 -85
- package/src/components/CodingAgentSettingsSection.tsx +0 -537
- package/src/components/CommandPalette.tsx +0 -284
- package/src/components/CompanionSceneHost.tsx +0 -517
- package/src/components/CompanionShell.tsx +0 -31
- package/src/components/CompanionView.tsx +0 -110
- package/src/components/ConfigPageView.tsx +0 -763
- package/src/components/ConfigSaveFooter.tsx +0 -41
- package/src/components/ConfirmModal.tsx +0 -379
- package/src/components/ConnectionFailedBanner.tsx +0 -91
- package/src/components/ConnectorsPageView.tsx +0 -13
- package/src/components/ConversationsSidebar.tsx +0 -279
- package/src/components/CustomActionEditor.tsx +0 -1127
- package/src/components/CustomActionsPanel.tsx +0 -288
- package/src/components/CustomActionsView.tsx +0 -325
- package/src/components/DatabasePageView.tsx +0 -55
- package/src/components/DatabaseView.tsx +0 -814
- package/src/components/ElizaCloudDashboard.tsx +0 -1696
- package/src/components/EmotePicker.tsx +0 -529
- package/src/components/ErrorBoundary.tsx +0 -76
- package/src/components/FineTuningView.tsx +0 -1080
- package/src/components/FlaminaGuide.test.tsx +0 -61
- package/src/components/FlaminaGuide.tsx +0 -212
- package/src/components/GameView.tsx +0 -551
- package/src/components/GameViewOverlay.tsx +0 -133
- package/src/components/GlobalEmoteOverlay.tsx +0 -152
- package/src/components/Header.test.tsx +0 -413
- package/src/components/Header.tsx +0 -400
- package/src/components/HeartbeatsView.tsx +0 -1003
- package/src/components/InventoryView.tsx +0 -393
- package/src/components/KnowledgeView.tsx +0 -1128
- package/src/components/LanguageDropdown.tsx +0 -192
- package/src/components/LifoMonitorPanel.tsx +0 -196
- package/src/components/LifoSandboxView.tsx +0 -499
- package/src/components/LoadingScreen.tsx +0 -112
- package/src/components/LogsPageView.tsx +0 -17
- package/src/components/LogsView.tsx +0 -239
- package/src/components/MediaGalleryView.tsx +0 -431
- package/src/components/MediaSettingsSection.tsx +0 -893
- package/src/components/MessageContent.tsx +0 -815
- package/src/components/MiladyBar.tsx +0 -103
- package/src/components/MiladyBarSettings.tsx +0 -872
- package/src/components/OnboardingWizard.test.tsx +0 -104
- package/src/components/OnboardingWizard.tsx +0 -249
- package/src/components/PairingView.tsx +0 -109
- package/src/components/PermissionsSection.tsx +0 -1184
- package/src/components/PluginsPageView.tsx +0 -9
- package/src/components/PluginsView.tsx +0 -3129
- package/src/components/ProviderSwitcher.tsx +0 -903
- package/src/components/RestartBanner.tsx +0 -76
- package/src/components/RuntimeView.tsx +0 -460
- package/src/components/SaveCommandModal.tsx +0 -211
- package/src/components/SecretsView.tsx +0 -569
- package/src/components/SecurityPageView.tsx +0 -242
- package/src/components/SettingsView.tsx +0 -825
- package/src/components/ShellOverlays.tsx +0 -41
- package/src/components/ShortcutsOverlay.tsx +0 -155
- package/src/components/SkillsView.tsx +0 -1435
- package/src/components/StartupFailureView.tsx +0 -63
- package/src/components/StreamView.tsx +0 -481
- package/src/components/StripeEmbeddedCheckout.tsx +0 -155
- package/src/components/SubscriptionStatus.tsx +0 -640
- package/src/components/SystemWarningBanner.tsx +0 -71
- package/src/components/ThemeToggle.tsx +0 -103
- package/src/components/TrajectoriesView.tsx +0 -526
- package/src/components/TrajectoryDetailView.tsx +0 -426
- package/src/components/VectorBrowserView.tsx +0 -1633
- package/src/components/VoiceConfigView.tsx +0 -674
- package/src/components/VrmStage.test.ts +0 -176
- package/src/components/VrmStage.tsx +0 -309
- package/src/components/WhatsAppQrOverlay.tsx +0 -230
- package/src/components/__tests__/chainConfig.test.ts +0 -220
- package/src/components/apps/AppDetailPane.tsx +0 -242
- package/src/components/apps/AppsCatalogGrid.tsx +0 -137
- package/src/components/apps/extensions/registry.ts +0 -13
- package/src/components/apps/extensions/types.ts +0 -9
- package/src/components/apps/helpers.ts +0 -43
- package/src/components/avatar/VrmAnimationLoader.test.ts +0 -164
- package/src/components/avatar/VrmAnimationLoader.ts +0 -151
- package/src/components/avatar/VrmBlinkController.ts +0 -118
- package/src/components/avatar/VrmCameraManager.ts +0 -407
- package/src/components/avatar/VrmEngine.ts +0 -2767
- package/src/components/avatar/VrmFootShadow.ts +0 -96
- package/src/components/avatar/VrmViewer.tsx +0 -421
- package/src/components/avatar/__tests__/VrmCameraManager.test.ts +0 -168
- package/src/components/avatar/__tests__/VrmEngine.test.ts +0 -1574
- package/src/components/avatar/mixamoVRMRigMap.ts +0 -62
- package/src/components/avatar/retargetMixamoFbxToVrm.ts +0 -144
- package/src/components/avatar/retargetMixamoGltfToVrm.ts +0 -119
- package/src/components/chainConfig.ts +0 -400
- package/src/components/companion/CompanionHeader.tsx +0 -50
- package/src/components/companion/CompanionSceneHost.tsx +0 -5
- package/src/components/companion/VrmStage.tsx +0 -2
- package/src/components/companion/__tests__/walletUtils.test.ts +0 -742
- package/src/components/companion/index.ts +0 -18
- package/src/components/companion/walletUtils.ts +0 -290
- package/src/components/companion-shell-styles.test.ts +0 -142
- package/src/components/companion-shell-styles.ts +0 -270
- package/src/components/confirm-delete-control.tsx +0 -69
- package/src/components/conversations/ConversationListItem.tsx +0 -185
- package/src/components/conversations/conversation-utils.ts +0 -151
- package/src/components/format.ts +0 -131
- package/src/components/index.ts +0 -96
- package/src/components/inventory/CopyableAddress.tsx +0 -41
- package/src/components/inventory/InventoryToolbar.tsx +0 -142
- package/src/components/inventory/NftGrid.tsx +0 -99
- package/src/components/inventory/TokenLogo.tsx +0 -71
- package/src/components/inventory/TokensTable.tsx +0 -216
- package/src/components/inventory/constants.ts +0 -170
- package/src/components/inventory/index.ts +0 -29
- package/src/components/inventory/media-url.test.ts +0 -38
- package/src/components/inventory/media-url.ts +0 -36
- package/src/components/inventory/useInventoryData.ts +0 -460
- package/src/components/knowledge-upload-image.ts +0 -215
- package/src/components/labels.ts +0 -46
- package/src/components/milady-bar/CloudCreditsChip.tsx +0 -61
- package/src/components/milady-bar/ProviderDropdown.tsx +0 -166
- package/src/components/milady-bar/WalletSummary.tsx +0 -61
- package/src/components/milady-bar/index.ts +0 -3
- package/src/components/onboarding/ActivateStep.tsx +0 -34
- package/src/components/onboarding/ConnectionStep.tsx +0 -1591
- package/src/components/onboarding/IdentityStep.tsx +0 -251
- package/src/components/onboarding/OnboardingPanel.tsx +0 -39
- package/src/components/onboarding/OnboardingStepNav.tsx +0 -41
- package/src/components/onboarding/PermissionsStep.tsx +0 -20
- package/src/components/onboarding/RpcStep.tsx +0 -402
- package/src/components/permissions/PermissionIcon.tsx +0 -25
- package/src/components/permissions/StreamingPermissions.tsx +0 -413
- package/src/components/plugins/showcase-data.ts +0 -481
- package/src/components/shared/ShellHeaderControls.tsx +0 -198
- package/src/components/shared-companion-scene-context.ts +0 -15
- package/src/components/skeletons.tsx +0 -88
- package/src/components/stream/ActivityFeed.tsx +0 -113
- package/src/components/stream/AvatarPip.tsx +0 -10
- package/src/components/stream/ChatContent.tsx +0 -126
- package/src/components/stream/ChatTicker.tsx +0 -55
- package/src/components/stream/IdleContent.tsx +0 -73
- package/src/components/stream/StatusBar.tsx +0 -463
- package/src/components/stream/StreamSettings.tsx +0 -506
- package/src/components/stream/StreamTerminal.tsx +0 -94
- package/src/components/stream/StreamVoiceConfig.tsx +0 -160
- package/src/components/stream/helpers.ts +0 -134
- package/src/components/stream/overlays/OverlayLayer.tsx +0 -75
- package/src/components/stream/overlays/built-in/ActionTickerWidget.tsx +0 -64
- package/src/components/stream/overlays/built-in/AlertPopupWidget.tsx +0 -87
- package/src/components/stream/overlays/built-in/BrandingWidget.tsx +0 -51
- package/src/components/stream/overlays/built-in/CustomHtmlWidget.tsx +0 -105
- package/src/components/stream/overlays/built-in/PeonGlassWidget.tsx +0 -265
- package/src/components/stream/overlays/built-in/PeonHudWidget.tsx +0 -247
- package/src/components/stream/overlays/built-in/PeonSakuraWidget.tsx +0 -278
- package/src/components/stream/overlays/built-in/ThoughtBubbleWidget.tsx +0 -77
- package/src/components/stream/overlays/built-in/ViewerCountWidget.tsx +0 -46
- package/src/components/stream/overlays/built-in/index.ts +0 -13
- package/src/components/stream/overlays/registry.ts +0 -22
- package/src/components/stream/overlays/types.ts +0 -90
- package/src/components/stream/overlays/useOverlayLayout.ts +0 -218
- package/src/components/trajectory-format.ts +0 -50
- package/src/components/ui-badges.tsx +0 -109
- package/src/components/ui-switch.tsx +0 -57
- package/src/components/vector-browser-three.ts +0 -29
- package/src/config/branding.ts +0 -67
- package/src/config/config-catalog.ts +0 -1092
- package/src/config/config-field.tsx +0 -1924
- package/src/config/config-renderer.tsx +0 -734
- package/src/config/index.ts +0 -12
- package/src/config/ui-renderer.tsx +0 -1751
- package/src/config/ui-spec.ts +0 -256
- package/src/events/index.ts +0 -96
- package/src/hooks/useBugReport.tsx +0 -43
- package/src/hooks/useCanvasWindow.ts +0 -372
- package/src/hooks/useChatAvatarVoice.ts +0 -111
- package/src/hooks/useClickOutside.ts +0 -31
- package/src/hooks/useContextMenu.ts +0 -127
- package/src/hooks/useKeyboardShortcuts.ts +0 -86
- package/src/hooks/useLifoSync.ts +0 -143
- package/src/hooks/useMemoryMonitor.ts +0 -334
- package/src/hooks/useMiladyBar.ts +0 -594
- package/src/hooks/useRenderGuard.ts +0 -43
- package/src/hooks/useRetakeCapture.ts +0 -68
- package/src/hooks/useStreamPopoutNavigation.ts +0 -27
- package/src/hooks/useTimeout.ts +0 -37
- package/src/hooks/useVoiceChat.ts +0 -1442
- package/src/hooks/useWhatsAppPairing.ts +0 -123
- package/src/i18n/index.ts +0 -76
- package/src/i18n/locales/en.json +0 -1195
- package/src/i18n/locales/es.json +0 -1195
- package/src/i18n/locales/ko.json +0 -1195
- package/src/i18n/locales/pt.json +0 -1195
- package/src/i18n/locales/zh-CN.json +0 -1195
- package/src/i18n/messages.ts +0 -21
- package/src/navigation/index.ts +0 -286
- package/src/navigation.test.ts +0 -189
- package/src/onboarding-config.test.ts +0 -104
- package/src/onboarding-config.ts +0 -122
- package/src/platform/browser-launch.test.ts +0 -94
- package/src/platform/browser-launch.ts +0 -149
- package/src/platform/index.ts +0 -58
- package/src/platform/init.ts +0 -238
- package/src/platform/lifo.ts +0 -225
- package/src/providers/index.ts +0 -108
- package/src/shell-params.test.ts +0 -48
- package/src/shell-params.ts +0 -36
- package/src/state/AppContext.tsx +0 -6415
- package/src/state/internal.ts +0 -91
- package/src/state/onboarding-resume.test.ts +0 -135
- package/src/state/onboarding-resume.ts +0 -263
- package/src/state/parsers.test.ts +0 -124
- package/src/state/parsers.ts +0 -309
- package/src/state/persistence.ts +0 -379
- package/src/state/shell-routing.ts +0 -39
- package/src/state/types.ts +0 -724
- package/src/state/ui-preferences.ts +0 -3
- package/src/state/useApp.ts +0 -23
- package/src/state/vrm.ts +0 -108
- package/src/styles/anime.css +0 -6324
- package/src/styles/onboarding-game.css +0 -976
- package/src/types/index.ts +0 -715
- package/src/types/react-test-renderer.d.ts +0 -45
- package/src/utils/asset-url.ts +0 -110
- package/src/utils/assistant-text.ts +0 -172
- package/src/utils/clipboard.ts +0 -41
- package/src/utils/desktop-dialogs.ts +0 -80
- package/src/utils/eliza-globals.ts +0 -44
- package/src/utils/number-parsing.ts +0 -125
- package/src/utils/openExternalUrl.ts +0 -20
- package/src/utils/spoken-text.ts +0 -65
- package/src/utils/streaming-text.ts +0 -120
- package/src/voice/types.ts +0 -197
- package/src/wallet-rpc.ts +0 -176
- package/test/app/AppContext.pty-sessions.test.tsx +0 -143
- package/test/app/MessageContent.test.tsx +0 -366
- package/test/app/PermissionsOnboarding.test.tsx +0 -358
- package/test/app/PermissionsSection.test.tsx +0 -575
- package/test/app/advanced-trajectory-fine-tuning.e2e.test.ts +0 -396
- package/test/app/agent-activity-box.test.tsx +0 -132
- package/test/app/agent-transfer-lock.test.ts +0 -279
- package/test/app/api-client-electrobun-fallback.test.ts +0 -139
- package/test/app/api-client-electron-fallback.test.ts +0 -139
- package/test/app/api-client-timeout.test.ts +0 -75
- package/test/app/api-client-ws.test.ts +0 -98
- package/test/app/api-client.ws-max-reconnect.test.ts +0 -139
- package/test/app/api-client.ws-reconnect.test.ts +0 -157
- package/test/app/app-context-autonomy-events.test.ts +0 -559
- package/test/app/apps-page-view.test.ts +0 -114
- package/test/app/apps-view.test.ts +0 -768
- package/test/app/autonomous-workflows.e2e.test.ts +0 -765
- package/test/app/autonomy-events.test.ts +0 -150
- package/test/app/avatar-selector.test.tsx +0 -52
- package/test/app/bsc-trade-panel.test.tsx +0 -134
- package/test/app/bug-report-modal.test.tsx +0 -353
- package/test/app/character-action-bar-visibility.test.ts +0 -70
- package/test/app/character-customization.e2e.test.ts +0 -1384
- package/test/app/character-save-journey.test.ts +0 -1245
- package/test/app/chat-advanced-features.e2e.test.ts +0 -706
- package/test/app/chat-composer.test.tsx +0 -181
- package/test/app/chat-journey.test.ts +0 -1075
- package/test/app/chat-language-header.test.ts +0 -64
- package/test/app/chat-message.test.tsx +0 -222
- package/test/app/chat-modal-view.test.tsx +0 -191
- package/test/app/chat-routine-filter.test.ts +0 -96
- package/test/app/chat-send-lock.test.ts +0 -1465
- package/test/app/chat-stream-api-client.test.tsx +0 -390
- package/test/app/chat-view-game-modal.test.tsx +0 -661
- package/test/app/chat-view.test.tsx +0 -877
- package/test/app/cloud-api.e2e.test.ts +0 -258
- package/test/app/cloud-login-flow.e2e.test.ts +0 -494
- package/test/app/cloud-login-lock.test.ts +0 -416
- package/test/app/command-palette.test.tsx +0 -184
- package/test/app/command-registry.test.ts +0 -75
- package/test/app/companion-greeting-wave.test.tsx +0 -431
- package/test/app/companion-scene-host.test.tsx +0 -85
- package/test/app/companion-stale-conversation.test.tsx +0 -447
- package/test/app/companion-view.test.tsx +0 -690
- package/test/app/confirm-delete-control.test.ts +0 -79
- package/test/app/confirm-modal.test.tsx +0 -219
- package/test/app/connection-mode-persistence.test.ts +0 -411
- package/test/app/connectors-ui.e2e.test.ts +0 -508
- package/test/app/conversations-sidebar-game-modal.test.tsx +0 -265
- package/test/app/conversations-sidebar.test.tsx +0 -185
- package/test/app/custom-actions-smoke.test.ts +0 -387
- package/test/app/custom-avatar-api-client.test.ts +0 -207
- package/test/app/desktop-utils.test.ts +0 -145
- package/test/app/electrobun-rpc-bridge.test.ts +0 -83
- package/test/app/events.test.ts +0 -88
- package/test/app/export-import-flows.e2e.test.ts +0 -700
- package/test/app/fine-tuning-view.test.ts +0 -471
- package/test/app/game-view-auth-session.test.tsx +0 -187
- package/test/app/game-view.test.ts +0 -444
- package/test/app/global-emote-overlay.test.tsx +0 -106
- package/test/app/header-status.test.tsx +0 -149
- package/test/app/i18n.test.ts +0 -152
- package/test/app/inventory-bsc-view.test.ts +0 -940
- package/test/app/knowledge-ui.e2e.test.ts +0 -762
- package/test/app/knowledge-upload-helpers.test.ts +0 -124
- package/test/app/lifecycle-lock.test.ts +0 -267
- package/test/app/lifo-popout-utils.test.ts +0 -208
- package/test/app/lifo-safe-endpoint.test.ts +0 -34
- package/test/app/loading-screen.test.tsx +0 -45
- package/test/app/memory-monitor.test.ts +0 -331
- package/test/app/milady-bar-regression.test.tsx +0 -519
- package/test/app/milady-bar-settings.test.tsx +0 -1056
- package/test/app/milady-bar.test.tsx +0 -583
- package/test/app/navigation.test.tsx +0 -22
- package/test/app/onboarding-e2e-journey.test.ts +0 -1409
- package/test/app/onboarding-finish-lock.test.ts +0 -676
- package/test/app/onboarding-language.test.tsx +0 -160
- package/test/app/onboarding-steps.test.tsx +0 -375
- package/test/app/open-external-url.test.ts +0 -65
- package/test/app/pages-navigation-smoke.e2e.test.ts +0 -646
- package/test/app/pairing-lock.test.ts +0 -260
- package/test/app/pairing-view.test.tsx +0 -74
- package/test/app/permissions-section.test.ts +0 -432
- package/test/app/plugin-bridge.test.ts +0 -109
- package/test/app/plugins-ui.e2e.test.ts +0 -605
- package/test/app/plugins-view-game-modal.test.tsx +0 -686
- package/test/app/plugins-view-toggle-restart.test.ts +0 -129
- package/test/app/provider-dropdown-default.test.tsx +0 -300
- package/test/app/restart-banner.test.tsx +0 -205
- package/test/app/retake-capture.test.ts +0 -84
- package/test/app/sandbox-api-client.test.ts +0 -108
- package/test/app/save-command-modal.test.tsx +0 -109
- package/test/app/secrets-view.test.tsx +0 -92
- package/test/app/settings-control-styles.test.tsx +0 -142
- package/test/app/settings-reset.e2e.test.ts +0 -726
- package/test/app/settings-sections.e2e.test.ts +0 -614
- package/test/app/shared-format.test.ts +0 -44
- package/test/app/shared-switch.test.ts +0 -69
- package/test/app/shell-mode-switching.e2e.test.ts +0 -841
- package/test/app/shell-mode-tab-memory.test.tsx +0 -58
- package/test/app/shell-overlays.test.tsx +0 -50
- package/test/app/shortcuts-overlay.test.tsx +0 -111
- package/test/app/sse-interruption.test.ts +0 -122
- package/test/app/startup-asset-missing.e2e.test.ts +0 -126
- package/test/app/startup-backend-missing.e2e.test.ts +0 -126
- package/test/app/startup-chat.e2e.test.ts +0 -323
- package/test/app/startup-conversation-restore.test.tsx +0 -381
- package/test/app/startup-failure-view.test.tsx +0 -103
- package/test/app/startup-onboarding.e2e.test.ts +0 -712
- package/test/app/startup-timeout.test.tsx +0 -80
- package/test/app/startup-token-401.e2e.test.ts +0 -103
- package/test/app/stream-helpers.test.ts +0 -46
- package/test/app/stream-popout-navigation.test.tsx +0 -41
- package/test/app/stream-status-bar.test.tsx +0 -89
- package/test/app/theme-toggle.test.tsx +0 -40
- package/test/app/training-api-client.test.ts +0 -128
- package/test/app/trajectories-view.test.tsx +0 -220
- package/test/app/triggers-api-client.test.ts +0 -77
- package/test/app/triggers-navigation.test.ts +0 -113
- package/test/app/triggers-view.e2e.test.ts +0 -675
- package/test/app/update-channel-lock.test.ts +0 -259
- package/test/app/vector-browser.async-cleanup.test.tsx +0 -367
- package/test/app/vector-browser.e2e.test.ts +0 -653
- package/test/app/vrm-stage.test.tsx +0 -351
- package/test/app/vrm-viewer.test.tsx +0 -298
- package/test/app/wallet-api-save-lock.test.ts +0 -299
- package/test/app/wallet-hooks.test.ts +0 -405
- package/test/app/wallet-ui-flows.e2e.test.ts +0 -556
- package/test/avatar/asset-url.test.ts +0 -90
- package/test/avatar/avatar-selector.test.ts +0 -173
- package/test/avatar/mixamo-vrm-rig-map.test.ts +0 -111
- package/test/avatar/voice-chat-streaming-text.test.ts +0 -96
- package/test/avatar/voice-chat.test.ts +0 -391
- package/test/browser-extension/README.md +0 -138
- package/test/browser-extension/test-harness.ts +0 -499
- package/test/capacitor-plugins.e2e.test.ts +0 -168
- package/test/test-types.ts +0 -5
- package/test/ui/command-palette-commands.test.ts +0 -57
- package/test/ui/ui-renderer.test.ts +0 -39
- package/test/utils/assistant-text.test.ts +0 -68
- package/test/utils/eliza-globals.test.ts +0 -59
- package/test/utils/package-exports.test.ts +0 -70
- package/test/utils/streaming-text.test.ts +0 -89
- package/tsconfig.build.json +0 -19
- package/tsconfig.json +0 -20
- package/tsconfig.typecheck.json +0 -12
- /package/{src/api/index.ts → api/index.js} +0 -0
- /package/{src/bridge/index.ts → bridge/index.js} +0 -0
- /package/{src/components/TriggersView.tsx → components/TriggersView.js} +0 -0
- /package/{src/hooks/index.ts → hooks/index.js} +0 -0
- /package/{src/index.ts → index.js} +0 -0
- /package/{src/state/index.ts → state/index.js} +0 -0
- /package/{src/styles → styles}/base.css +0 -0
- /package/{src/styles → styles}/styles.css +0 -0
- /package/{src/styles → styles}/xterm.css +0 -0
- /package/{src/utils/index.ts → utils/index.js} +0 -0
- /package/{src/voice/index.ts → voice/index.js} +0 -0
|
@@ -0,0 +1,1092 @@
|
|
|
1
|
+
/* === Onboarding Game Screen === */
|
|
2
|
+
|
|
3
|
+
.onboarding-screen {
|
|
4
|
+
width: 100vw;
|
|
5
|
+
height: 100vh;
|
|
6
|
+
background: transparent;
|
|
7
|
+
--text: rgba(240, 238, 250, 0.94);
|
|
8
|
+
--muted: rgba(240, 238, 250, 0.66);
|
|
9
|
+
--border: rgba(255, 255, 255, 0.14);
|
|
10
|
+
--card: rgba(10, 14, 20, 0.28);
|
|
11
|
+
--ok: rgba(240, 185, 11, 0.92);
|
|
12
|
+
--ok-muted: rgba(240, 185, 11, 0.34);
|
|
13
|
+
--ok-subtle: rgba(240, 185, 11, 0.12);
|
|
14
|
+
--accent: rgba(240, 185, 11, 0.94);
|
|
15
|
+
--accent-foreground: rgba(240, 238, 250, 0.94);
|
|
16
|
+
--danger: rgb(248, 113, 113);
|
|
17
|
+
position: relative;
|
|
18
|
+
overflow: hidden;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
/* Background image layer */
|
|
22
|
+
.onboarding-bg {
|
|
23
|
+
position: absolute;
|
|
24
|
+
inset: -20px;
|
|
25
|
+
background-size: cover;
|
|
26
|
+
background-position: center;
|
|
27
|
+
filter: blur(6px);
|
|
28
|
+
z-index: 0;
|
|
29
|
+
animation: onboarding-bg-drift 30s ease-in-out infinite alternate;
|
|
30
|
+
}
|
|
31
|
+
.onboarding-bg-overlay {
|
|
32
|
+
position: absolute;
|
|
33
|
+
inset: 0;
|
|
34
|
+
background: none;
|
|
35
|
+
z-index: 1;
|
|
36
|
+
pointer-events: none;
|
|
37
|
+
}
|
|
38
|
+
@keyframes onboarding-bg-drift {
|
|
39
|
+
0% {
|
|
40
|
+
transform: scale(1.08) translate(0, 0);
|
|
41
|
+
}
|
|
42
|
+
50% {
|
|
43
|
+
transform: scale(1.1) translate(-8px, 4px);
|
|
44
|
+
}
|
|
45
|
+
100% {
|
|
46
|
+
transform: scale(1.08) translate(4px, -3px);
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
/* Corner decorations */
|
|
51
|
+
.onboarding-corner {
|
|
52
|
+
position: absolute;
|
|
53
|
+
width: 36px;
|
|
54
|
+
height: 36px;
|
|
55
|
+
pointer-events: none;
|
|
56
|
+
z-index: 30;
|
|
57
|
+
animation: onboarding-corner-breathe 4s ease-in-out infinite;
|
|
58
|
+
}
|
|
59
|
+
.onboarding-corner--tl {
|
|
60
|
+
top: 20px;
|
|
61
|
+
left: 20px;
|
|
62
|
+
}
|
|
63
|
+
.onboarding-corner--tr {
|
|
64
|
+
top: 20px;
|
|
65
|
+
right: 20px;
|
|
66
|
+
transform: scaleX(-1);
|
|
67
|
+
animation-delay: 1s;
|
|
68
|
+
}
|
|
69
|
+
.onboarding-corner--bl {
|
|
70
|
+
bottom: 20px;
|
|
71
|
+
left: 20px;
|
|
72
|
+
transform: scaleY(-1);
|
|
73
|
+
animation-delay: 2s;
|
|
74
|
+
}
|
|
75
|
+
.onboarding-corner--br {
|
|
76
|
+
bottom: 20px;
|
|
77
|
+
right: 20px;
|
|
78
|
+
transform: scale(-1);
|
|
79
|
+
animation-delay: 3s;
|
|
80
|
+
}
|
|
81
|
+
@keyframes onboarding-corner-breathe {
|
|
82
|
+
0%,
|
|
83
|
+
100% {
|
|
84
|
+
opacity: 0.6;
|
|
85
|
+
}
|
|
86
|
+
50% {
|
|
87
|
+
opacity: 1;
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
/* === UI OVERLAY — positions step nav and content panel over the VRM === */
|
|
92
|
+
.onboarding-ui-overlay {
|
|
93
|
+
position: absolute;
|
|
94
|
+
inset: 0;
|
|
95
|
+
z-index: 20;
|
|
96
|
+
display: flex;
|
|
97
|
+
justify-content: space-between;
|
|
98
|
+
pointer-events: none;
|
|
99
|
+
}
|
|
100
|
+
.onboarding-ui-overlay > * {
|
|
101
|
+
pointer-events: auto;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
/* === LEFT PANEL — Step Navigation === */
|
|
105
|
+
.onboarding-left {
|
|
106
|
+
display: flex;
|
|
107
|
+
flex-direction: column;
|
|
108
|
+
justify-content: center;
|
|
109
|
+
padding: 60px 0 60px 90px;
|
|
110
|
+
position: relative;
|
|
111
|
+
z-index: 10;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
.onboarding-step-list {
|
|
115
|
+
display: flex;
|
|
116
|
+
flex-direction: column;
|
|
117
|
+
position: relative;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
/* Vertical connecting line — hidden, replaced by progress-only line */
|
|
121
|
+
.onboarding-step-list::before {
|
|
122
|
+
display: none;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
/* Progress fill line — only connects completed + active dots */
|
|
126
|
+
.onboarding-step-list::after {
|
|
127
|
+
content: "";
|
|
128
|
+
position: absolute;
|
|
129
|
+
left: 6px;
|
|
130
|
+
top: 14px;
|
|
131
|
+
width: 1px;
|
|
132
|
+
height: 0;
|
|
133
|
+
background: linear-gradient(
|
|
134
|
+
180deg,
|
|
135
|
+
rgba(240, 185, 11, 0.4),
|
|
136
|
+
rgba(240, 185, 11, 0.12)
|
|
137
|
+
);
|
|
138
|
+
transition: height 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
|
|
139
|
+
z-index: 0;
|
|
140
|
+
}
|
|
141
|
+
.onboarding-step-list.step-0::after {
|
|
142
|
+
height: 0;
|
|
143
|
+
}
|
|
144
|
+
.onboarding-step-list.step-1::after {
|
|
145
|
+
height: calc((100% - 28px) * 1 / 5);
|
|
146
|
+
}
|
|
147
|
+
.onboarding-step-list.step-2::after {
|
|
148
|
+
height: calc((100% - 28px) * 2 / 5);
|
|
149
|
+
}
|
|
150
|
+
.onboarding-step-list.step-3::after {
|
|
151
|
+
height: calc((100% - 28px) * 3 / 5);
|
|
152
|
+
}
|
|
153
|
+
.onboarding-step-list.step-4::after {
|
|
154
|
+
height: calc((100% - 28px) * 4 / 5);
|
|
155
|
+
}
|
|
156
|
+
.onboarding-step-list.step-5::after {
|
|
157
|
+
height: calc((100% - 28px) * 5 / 5);
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.onboarding-step-item {
|
|
161
|
+
display: flex;
|
|
162
|
+
align-items: center;
|
|
163
|
+
gap: 20px;
|
|
164
|
+
padding: 19px 0;
|
|
165
|
+
position: relative;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
.onboarding-step-dot {
|
|
169
|
+
width: 14px;
|
|
170
|
+
height: 14px;
|
|
171
|
+
border: 1px solid rgba(255, 255, 255, 0.12);
|
|
172
|
+
transform: rotate(45deg);
|
|
173
|
+
flex-shrink: 0;
|
|
174
|
+
position: relative;
|
|
175
|
+
z-index: 2;
|
|
176
|
+
background: #0c0e14;
|
|
177
|
+
transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
.onboarding-step-item--done .onboarding-step-dot {
|
|
181
|
+
background: rgba(240, 185, 11, 0.35);
|
|
182
|
+
border-color: rgba(240, 185, 11, 0.5);
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
.onboarding-step-item--active .onboarding-step-dot {
|
|
186
|
+
background: #f0b90b;
|
|
187
|
+
border-color: var(--text);
|
|
188
|
+
box-shadow: 0 0 12px rgba(240, 185, 11, 0.5);
|
|
189
|
+
animation: onboarding-dot-pulse 2s ease-in-out infinite;
|
|
190
|
+
}
|
|
191
|
+
@keyframes onboarding-dot-pulse {
|
|
192
|
+
0%,
|
|
193
|
+
100% {
|
|
194
|
+
box-shadow: 0 0 12px rgba(240, 185, 11, 0.5);
|
|
195
|
+
transform: rotate(45deg) scale(1);
|
|
196
|
+
}
|
|
197
|
+
50% {
|
|
198
|
+
box-shadow: 0 0 20px rgba(240, 185, 11, 0.7);
|
|
199
|
+
transform: rotate(45deg) scale(1.15);
|
|
200
|
+
}
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
.onboarding-step-info {
|
|
204
|
+
display: flex;
|
|
205
|
+
flex-direction: column;
|
|
206
|
+
gap: 2px;
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
.onboarding-step-name {
|
|
210
|
+
font-size: 15px;
|
|
211
|
+
letter-spacing: 0.08em;
|
|
212
|
+
color: rgba(240, 238, 250, 0.58);
|
|
213
|
+
font-weight: 500;
|
|
214
|
+
text-shadow: 0 2px 10px rgba(3, 5, 10, 0.65);
|
|
215
|
+
transition: all 0.5s;
|
|
216
|
+
}
|
|
217
|
+
.onboarding-step-item--done .onboarding-step-name {
|
|
218
|
+
color: rgba(240, 238, 250, 0.72);
|
|
219
|
+
}
|
|
220
|
+
.onboarding-step-item--active .onboarding-step-name {
|
|
221
|
+
color: rgba(240, 238, 250, 0.92);
|
|
222
|
+
font-weight: 600;
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
.onboarding-step-sub {
|
|
226
|
+
font-size: 13px;
|
|
227
|
+
color: rgba(240, 238, 250, 0.38);
|
|
228
|
+
letter-spacing: 0.05em;
|
|
229
|
+
text-shadow: 0 2px 10px rgba(3, 5, 10, 0.55);
|
|
230
|
+
transition: all 0.5s;
|
|
231
|
+
}
|
|
232
|
+
.onboarding-step-item--active .onboarding-step-sub {
|
|
233
|
+
color: rgba(240, 185, 11, 0.8);
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
/* === RIGHT PANEL — Content === */
|
|
237
|
+
.onboarding-right {
|
|
238
|
+
display: flex;
|
|
239
|
+
flex-direction: column;
|
|
240
|
+
justify-content: center;
|
|
241
|
+
padding: 40px 56px 40px 0;
|
|
242
|
+
position: relative;
|
|
243
|
+
z-index: 10;
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
/* Glassmorphism panel */
|
|
247
|
+
.onboarding-panel {
|
|
248
|
+
background: rgba(10, 14, 20, 0.16);
|
|
249
|
+
backdrop-filter: blur(40px) saturate(1.4);
|
|
250
|
+
-webkit-backdrop-filter: blur(40px) saturate(1.4);
|
|
251
|
+
border: 1px solid rgba(255, 255, 255, 0.18);
|
|
252
|
+
border-radius: 10px;
|
|
253
|
+
padding: 36px 32px;
|
|
254
|
+
display: flex;
|
|
255
|
+
flex-direction: column;
|
|
256
|
+
gap: 0;
|
|
257
|
+
box-shadow:
|
|
258
|
+
0 8px 32px rgba(0, 0, 0, 0.25),
|
|
259
|
+
inset 0 1px 0 rgba(255, 255, 255, 0.08);
|
|
260
|
+
animation: onboarding-panel-enter 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
|
|
261
|
+
both;
|
|
262
|
+
max-height: calc(100vh - 80px);
|
|
263
|
+
overflow-y: auto;
|
|
264
|
+
overflow-x: hidden;
|
|
265
|
+
}
|
|
266
|
+
.onboarding-panel::-webkit-scrollbar {
|
|
267
|
+
width: 4px;
|
|
268
|
+
}
|
|
269
|
+
.onboarding-panel::-webkit-scrollbar-track {
|
|
270
|
+
background: transparent;
|
|
271
|
+
}
|
|
272
|
+
.onboarding-panel::-webkit-scrollbar-thumb {
|
|
273
|
+
background: rgba(255, 255, 255, 0.1);
|
|
274
|
+
border-radius: 2px;
|
|
275
|
+
}
|
|
276
|
+
@keyframes onboarding-panel-enter {
|
|
277
|
+
from {
|
|
278
|
+
opacity: 0;
|
|
279
|
+
transform: translateX(30px);
|
|
280
|
+
}
|
|
281
|
+
to {
|
|
282
|
+
opacity: 1;
|
|
283
|
+
transform: translateX(0);
|
|
284
|
+
}
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
/* Staggered children animation */
|
|
288
|
+
.onboarding-panel > * {
|
|
289
|
+
animation: onboarding-content-fade-in 0.5s ease both;
|
|
290
|
+
}
|
|
291
|
+
.onboarding-panel > *:nth-child(1) {
|
|
292
|
+
animation-delay: 0.15s;
|
|
293
|
+
}
|
|
294
|
+
.onboarding-panel > *:nth-child(2) {
|
|
295
|
+
animation-delay: 0.25s;
|
|
296
|
+
}
|
|
297
|
+
.onboarding-panel > *:nth-child(3) {
|
|
298
|
+
animation-delay: 0.35s;
|
|
299
|
+
}
|
|
300
|
+
.onboarding-panel > *:nth-child(4) {
|
|
301
|
+
animation-delay: 0.45s;
|
|
302
|
+
}
|
|
303
|
+
.onboarding-panel > *:nth-child(5) {
|
|
304
|
+
animation-delay: 0.55s;
|
|
305
|
+
}
|
|
306
|
+
.onboarding-panel > *:nth-child(6) {
|
|
307
|
+
animation-delay: 0.65s;
|
|
308
|
+
}
|
|
309
|
+
.onboarding-panel > *:nth-child(7) {
|
|
310
|
+
animation-delay: 0.75s;
|
|
311
|
+
}
|
|
312
|
+
@keyframes onboarding-content-fade-in {
|
|
313
|
+
from {
|
|
314
|
+
opacity: 0;
|
|
315
|
+
transform: translateY(10px);
|
|
316
|
+
}
|
|
317
|
+
to {
|
|
318
|
+
opacity: 1;
|
|
319
|
+
transform: translateY(0);
|
|
320
|
+
}
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
/* Diamond ornament divider */
|
|
324
|
+
.onboarding-divider {
|
|
325
|
+
display: flex;
|
|
326
|
+
align-items: center;
|
|
327
|
+
gap: 12px;
|
|
328
|
+
margin: 16px 0;
|
|
329
|
+
}
|
|
330
|
+
.onboarding-divider::before,
|
|
331
|
+
.onboarding-divider::after {
|
|
332
|
+
content: "";
|
|
333
|
+
flex: 1;
|
|
334
|
+
height: 1px;
|
|
335
|
+
background: linear-gradient(
|
|
336
|
+
90deg,
|
|
337
|
+
transparent,
|
|
338
|
+
rgba(255, 255, 255, 0.15),
|
|
339
|
+
transparent
|
|
340
|
+
);
|
|
341
|
+
}
|
|
342
|
+
.onboarding-divider-diamond {
|
|
343
|
+
width: 6px;
|
|
344
|
+
height: 6px;
|
|
345
|
+
background: rgba(240, 185, 11, 0.4);
|
|
346
|
+
transform: rotate(45deg);
|
|
347
|
+
flex-shrink: 0;
|
|
348
|
+
}
|
|
349
|
+
|
|
350
|
+
/* Section title (uppercase label) */
|
|
351
|
+
.onboarding-section-title {
|
|
352
|
+
font-size: 12px;
|
|
353
|
+
letter-spacing: 0.3em;
|
|
354
|
+
text-transform: uppercase;
|
|
355
|
+
color: rgba(240, 238, 250, 0.62);
|
|
356
|
+
font-weight: 600;
|
|
357
|
+
text-align: center;
|
|
358
|
+
text-shadow: 0 2px 10px rgba(3, 5, 10, 0.55);
|
|
359
|
+
margin-bottom: 0;
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
/* Question text */
|
|
363
|
+
.onboarding-question {
|
|
364
|
+
font-size: 20px;
|
|
365
|
+
font-weight: 300;
|
|
366
|
+
line-height: 1.4;
|
|
367
|
+
color: rgba(240, 238, 250, 0.95);
|
|
368
|
+
text-align: center;
|
|
369
|
+
text-shadow: 0 2px 10px rgba(3, 5, 10, 0.55);
|
|
370
|
+
margin-bottom: 18px;
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
/* Game-style text input */
|
|
374
|
+
.onboarding-input {
|
|
375
|
+
width: 100%;
|
|
376
|
+
padding: 16px 20px;
|
|
377
|
+
background: rgba(10, 14, 20, 0.24);
|
|
378
|
+
border: 1px solid rgba(255, 255, 255, 0.16);
|
|
379
|
+
border-radius: 6px;
|
|
380
|
+
color: rgba(240, 238, 250, 0.92);
|
|
381
|
+
font-size: 16px;
|
|
382
|
+
font-family: inherit;
|
|
383
|
+
outline: none;
|
|
384
|
+
letter-spacing: 0.03em;
|
|
385
|
+
text-align: center;
|
|
386
|
+
transition:
|
|
387
|
+
border-color 0.3s,
|
|
388
|
+
box-shadow 0.3s;
|
|
389
|
+
}
|
|
390
|
+
.onboarding-input:focus {
|
|
391
|
+
border-color: rgba(240, 185, 11, 0.4);
|
|
392
|
+
box-shadow: 0 0 12px rgba(240, 185, 11, 0.08);
|
|
393
|
+
}
|
|
394
|
+
.onboarding-input::placeholder {
|
|
395
|
+
color: rgba(240, 238, 250, 0.4);
|
|
396
|
+
}
|
|
397
|
+
|
|
398
|
+
/* Description text */
|
|
399
|
+
.onboarding-desc {
|
|
400
|
+
font-size: 14px;
|
|
401
|
+
color: rgba(240, 238, 250, 0.62);
|
|
402
|
+
text-align: center;
|
|
403
|
+
line-height: 1.6;
|
|
404
|
+
text-shadow: 0 2px 10px rgba(3, 5, 10, 0.45);
|
|
405
|
+
margin-top: 12px;
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
/* Pill buttons (language selection) */
|
|
409
|
+
.onboarding-pill-row {
|
|
410
|
+
display: flex;
|
|
411
|
+
flex-wrap: wrap;
|
|
412
|
+
gap: 10px;
|
|
413
|
+
justify-content: center;
|
|
414
|
+
margin-bottom: 16px;
|
|
415
|
+
}
|
|
416
|
+
.onboarding-pill {
|
|
417
|
+
padding: 10px 22px;
|
|
418
|
+
background: rgba(255, 255, 255, 0.04);
|
|
419
|
+
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
420
|
+
border-radius: 100px;
|
|
421
|
+
color: rgba(240, 238, 250, 0.6);
|
|
422
|
+
font-size: 14px;
|
|
423
|
+
font-family: inherit;
|
|
424
|
+
cursor: pointer;
|
|
425
|
+
transition: all 0.3s;
|
|
426
|
+
}
|
|
427
|
+
.onboarding-pill:hover {
|
|
428
|
+
background: rgba(255, 255, 255, 0.08);
|
|
429
|
+
border-color: rgba(255, 255, 255, 0.2);
|
|
430
|
+
color: rgba(240, 238, 250, 0.85);
|
|
431
|
+
}
|
|
432
|
+
.onboarding-pill--selected {
|
|
433
|
+
background: rgba(240, 185, 11, 0.12);
|
|
434
|
+
border-color: rgba(240, 185, 11, 0.4);
|
|
435
|
+
color: var(--text);
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
/* Permission items */
|
|
439
|
+
.onboarding-permission-list {
|
|
440
|
+
display: flex;
|
|
441
|
+
flex-direction: column;
|
|
442
|
+
gap: 8px;
|
|
443
|
+
margin-bottom: 16px;
|
|
444
|
+
}
|
|
445
|
+
.onboarding-permission-item {
|
|
446
|
+
display: flex;
|
|
447
|
+
justify-content: space-between;
|
|
448
|
+
align-items: center;
|
|
449
|
+
padding: 12px 16px;
|
|
450
|
+
background: rgba(255, 255, 255, 0.03);
|
|
451
|
+
border: 1px solid rgba(255, 255, 255, 0.06);
|
|
452
|
+
border-radius: 6px;
|
|
453
|
+
transition: all 0.3s;
|
|
454
|
+
}
|
|
455
|
+
.onboarding-permission-item--granted {
|
|
456
|
+
border-color: rgba(240, 185, 11, 0.2);
|
|
457
|
+
background: rgba(240, 185, 11, 0.04);
|
|
458
|
+
}
|
|
459
|
+
.onboarding-permission-name {
|
|
460
|
+
font-size: 14px;
|
|
461
|
+
color: rgba(240, 238, 250, 0.7);
|
|
462
|
+
letter-spacing: 0.02em;
|
|
463
|
+
}
|
|
464
|
+
.onboarding-permission-status {
|
|
465
|
+
font-size: 12px;
|
|
466
|
+
color: rgba(240, 238, 250, 0.3);
|
|
467
|
+
}
|
|
468
|
+
.onboarding-permission-item--granted .onboarding-permission-status {
|
|
469
|
+
color: rgba(240, 185, 11, 0.7);
|
|
470
|
+
}
|
|
471
|
+
|
|
472
|
+
/* Provider cards (connection step) */
|
|
473
|
+
.onboarding-provider-grid {
|
|
474
|
+
display: flex;
|
|
475
|
+
flex-direction: column;
|
|
476
|
+
gap: 6px;
|
|
477
|
+
margin-bottom: 16px;
|
|
478
|
+
}
|
|
479
|
+
.onboarding-provider-card {
|
|
480
|
+
display: flex;
|
|
481
|
+
align-items: center;
|
|
482
|
+
justify-content: space-between;
|
|
483
|
+
gap: 8px;
|
|
484
|
+
padding: 10px;
|
|
485
|
+
min-height: 52px;
|
|
486
|
+
background: rgba(10, 14, 20, 0.24);
|
|
487
|
+
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
488
|
+
border-radius: 8px;
|
|
489
|
+
cursor: pointer;
|
|
490
|
+
transition: all 0.3s;
|
|
491
|
+
text-align: left;
|
|
492
|
+
backdrop-filter: blur(18px) saturate(1.2);
|
|
493
|
+
-webkit-backdrop-filter: blur(18px) saturate(1.2);
|
|
494
|
+
}
|
|
495
|
+
.onboarding-provider-card:hover {
|
|
496
|
+
background: rgba(10, 14, 20, 0.34);
|
|
497
|
+
border-color: rgba(255, 255, 255, 0.16);
|
|
498
|
+
}
|
|
499
|
+
.onboarding-provider-card--selected {
|
|
500
|
+
background: rgba(240, 185, 11, 0.12);
|
|
501
|
+
border-color: rgba(240, 185, 11, 0.34);
|
|
502
|
+
}
|
|
503
|
+
.onboarding-provider-icon {
|
|
504
|
+
width: 24px;
|
|
505
|
+
height: 24px;
|
|
506
|
+
border-radius: 6px;
|
|
507
|
+
object-fit: contain;
|
|
508
|
+
flex-shrink: 0;
|
|
509
|
+
}
|
|
510
|
+
.onboarding-provider-name {
|
|
511
|
+
font-size: 12px;
|
|
512
|
+
color: rgba(240, 238, 250, 0.88);
|
|
513
|
+
line-height: 1.3;
|
|
514
|
+
text-shadow: 0 1px 8px rgba(3, 5, 10, 0.6);
|
|
515
|
+
}
|
|
516
|
+
.onboarding-provider-desc {
|
|
517
|
+
font-size: 10px;
|
|
518
|
+
color: rgba(240, 238, 250, 0.58);
|
|
519
|
+
line-height: 1.3;
|
|
520
|
+
display: -webkit-box;
|
|
521
|
+
-webkit-line-clamp: 1;
|
|
522
|
+
-webkit-box-orient: vertical;
|
|
523
|
+
overflow: hidden;
|
|
524
|
+
text-shadow: 0 1px 8px rgba(3, 5, 10, 0.5);
|
|
525
|
+
}
|
|
526
|
+
.onboarding-provider-card--recommended {
|
|
527
|
+
border-color: rgba(240, 185, 11, 0.24);
|
|
528
|
+
background: rgba(240, 185, 11, 0.1);
|
|
529
|
+
}
|
|
530
|
+
.onboarding-provider-card--recommended:hover {
|
|
531
|
+
border-color: rgba(240, 185, 11, 0.4);
|
|
532
|
+
background: rgba(240, 185, 11, 0.14);
|
|
533
|
+
}
|
|
534
|
+
.onboarding-provider-badge {
|
|
535
|
+
font-size: 9px;
|
|
536
|
+
letter-spacing: 0.08em;
|
|
537
|
+
text-transform: uppercase;
|
|
538
|
+
color: rgba(240, 238, 250, 0.94);
|
|
539
|
+
background: rgba(240, 185, 11, 0.18);
|
|
540
|
+
padding: 2px 8px;
|
|
541
|
+
border-radius: 100px;
|
|
542
|
+
font-weight: 600;
|
|
543
|
+
margin-left: auto;
|
|
544
|
+
flex-shrink: 0;
|
|
545
|
+
white-space: nowrap;
|
|
546
|
+
text-shadow: 0 1px 6px rgba(3, 5, 10, 0.45);
|
|
547
|
+
}
|
|
548
|
+
|
|
549
|
+
.onboarding-provider-card--detected {
|
|
550
|
+
border-color: rgba(34, 197, 94, 0.24);
|
|
551
|
+
background: rgba(34, 197, 94, 0.08);
|
|
552
|
+
}
|
|
553
|
+
.onboarding-provider-card--detected:hover {
|
|
554
|
+
border-color: rgba(34, 197, 94, 0.4);
|
|
555
|
+
background: rgba(34, 197, 94, 0.12);
|
|
556
|
+
}
|
|
557
|
+
.onboarding-provider-badge--detected {
|
|
558
|
+
background: rgba(34, 197, 94, 0.2);
|
|
559
|
+
color: rgba(34, 197, 94, 0.94);
|
|
560
|
+
}
|
|
561
|
+
|
|
562
|
+
/* Panel footer */
|
|
563
|
+
.onboarding-panel-footer {
|
|
564
|
+
display: flex;
|
|
565
|
+
justify-content: space-between;
|
|
566
|
+
align-items: center;
|
|
567
|
+
gap: 24px;
|
|
568
|
+
margin-top: 18px;
|
|
569
|
+
padding-top: 14px;
|
|
570
|
+
border-top: 1px solid rgba(255, 255, 255, 0.08);
|
|
571
|
+
}
|
|
572
|
+
|
|
573
|
+
/* Back link */
|
|
574
|
+
.onboarding-back-link {
|
|
575
|
+
font-size: 10px;
|
|
576
|
+
color: rgba(240, 238, 250, 0.62);
|
|
577
|
+
letter-spacing: 0.15em;
|
|
578
|
+
text-transform: uppercase;
|
|
579
|
+
cursor: pointer;
|
|
580
|
+
text-decoration: none;
|
|
581
|
+
background: none;
|
|
582
|
+
border: none;
|
|
583
|
+
font-family: inherit;
|
|
584
|
+
transition: color 0.3s;
|
|
585
|
+
padding: 0;
|
|
586
|
+
text-shadow: 0 1px 8px rgba(3, 5, 10, 0.45);
|
|
587
|
+
}
|
|
588
|
+
.onboarding-back-link:hover {
|
|
589
|
+
color: rgba(240, 238, 250, 0.9);
|
|
590
|
+
}
|
|
591
|
+
|
|
592
|
+
/* Confirm/CTA button */
|
|
593
|
+
.onboarding-confirm-btn {
|
|
594
|
+
display: inline-flex;
|
|
595
|
+
align-items: center;
|
|
596
|
+
gap: 8px;
|
|
597
|
+
padding: 12px 32px;
|
|
598
|
+
background: rgba(240, 185, 11, 0.18);
|
|
599
|
+
border: 1px solid rgba(240, 185, 11, 0.35);
|
|
600
|
+
border-radius: 6px;
|
|
601
|
+
color: rgba(240, 238, 250, 0.94);
|
|
602
|
+
text-shadow: 0 1px 6px rgba(3, 5, 10, 0.55);
|
|
603
|
+
font-size: 11px;
|
|
604
|
+
font-weight: 600;
|
|
605
|
+
letter-spacing: 0.18em;
|
|
606
|
+
text-transform: uppercase;
|
|
607
|
+
cursor: pointer;
|
|
608
|
+
transition: all 0.3s;
|
|
609
|
+
font-family: inherit;
|
|
610
|
+
position: relative;
|
|
611
|
+
overflow: hidden;
|
|
612
|
+
}
|
|
613
|
+
.onboarding-confirm-btn:hover {
|
|
614
|
+
background: rgba(240, 185, 11, 0.28);
|
|
615
|
+
border-color: rgba(240, 185, 11, 0.6);
|
|
616
|
+
}
|
|
617
|
+
.onboarding-confirm-btn:disabled {
|
|
618
|
+
opacity: 0.4;
|
|
619
|
+
cursor: not-allowed;
|
|
620
|
+
}
|
|
621
|
+
/* Ripple effect */
|
|
622
|
+
.onboarding-confirm-btn .onboarding-ripple {
|
|
623
|
+
position: absolute;
|
|
624
|
+
border-radius: 50%;
|
|
625
|
+
background: rgba(240, 185, 11, 0.3);
|
|
626
|
+
transform: scale(0);
|
|
627
|
+
animation: onboarding-ripple-expand 0.6s ease-out forwards;
|
|
628
|
+
pointer-events: none;
|
|
629
|
+
}
|
|
630
|
+
@keyframes onboarding-ripple-expand {
|
|
631
|
+
to {
|
|
632
|
+
transform: scale(4);
|
|
633
|
+
opacity: 0;
|
|
634
|
+
}
|
|
635
|
+
}
|
|
636
|
+
|
|
637
|
+
/* Identity typewriter cursor */
|
|
638
|
+
@keyframes onboarding-cursor-blink {
|
|
639
|
+
0%,
|
|
640
|
+
100% {
|
|
641
|
+
opacity: 1;
|
|
642
|
+
}
|
|
643
|
+
50% {
|
|
644
|
+
opacity: 0;
|
|
645
|
+
}
|
|
646
|
+
}
|
|
647
|
+
|
|
648
|
+
/* === Permissions section overrides — hide duplicate title === */
|
|
649
|
+
.onboarding-panel .text-center.mb-6 {
|
|
650
|
+
display: none;
|
|
651
|
+
}
|
|
652
|
+
|
|
653
|
+
/* === Permissions section overrides === */
|
|
654
|
+
.onboarding-panel {
|
|
655
|
+
--card: rgba(10, 14, 20, 0.28);
|
|
656
|
+
--border: rgba(255, 255, 255, 0.14);
|
|
657
|
+
--muted: rgba(240, 238, 250, 0.66);
|
|
658
|
+
--ok: rgba(240, 185, 11, 0.92);
|
|
659
|
+
--accent: rgba(240, 185, 11, 0.94);
|
|
660
|
+
--accent-foreground: rgba(240, 238, 250, 0.94);
|
|
661
|
+
--danger: rgb(248, 113, 113);
|
|
662
|
+
color: rgba(240, 238, 250, 0.92);
|
|
663
|
+
}
|
|
664
|
+
.onboarding-panel .text-xl {
|
|
665
|
+
font-size: 16px;
|
|
666
|
+
font-weight: 500;
|
|
667
|
+
letter-spacing: 0.02em;
|
|
668
|
+
}
|
|
669
|
+
.onboarding-panel .text-sm {
|
|
670
|
+
font-size: 12px;
|
|
671
|
+
}
|
|
672
|
+
.onboarding-panel [class*="border-\\[var\\(--ok\\)\\]"] {
|
|
673
|
+
border-color: rgba(240, 185, 11, 0.3);
|
|
674
|
+
}
|
|
675
|
+
.onboarding-panel [class*="bg-\\[var\\(--ok\\)\\]"] {
|
|
676
|
+
background-color: rgba(240, 185, 11, 0.06);
|
|
677
|
+
}
|
|
678
|
+
.onboarding-panel [class*="bg-\\[var\\(--card\\)\\]"] {
|
|
679
|
+
background-color: rgba(255, 255, 255, 0.04);
|
|
680
|
+
}
|
|
681
|
+
/* Override Tailwind utilities on PermissionsSection using doubled selectors for specificity */
|
|
682
|
+
/* Make permission card borders translucent */
|
|
683
|
+
.onboarding-panel.onboarding-panel .flex.items-center.gap-4.p-4.border {
|
|
684
|
+
background: rgba(10, 14, 20, 0.26);
|
|
685
|
+
border-color: rgba(255, 255, 255, 0.12);
|
|
686
|
+
border-radius: 8px;
|
|
687
|
+
}
|
|
688
|
+
.onboarding-panel.onboarding-panel
|
|
689
|
+
.flex.items-center.gap-4.p-4.border:has(.text-\[var\(--ok\)\]) {
|
|
690
|
+
background: rgba(240, 185, 11, 0.12);
|
|
691
|
+
border-color: rgba(240, 185, 11, 0.32);
|
|
692
|
+
}
|
|
693
|
+
/* Style buttons within permissions to match game theme */
|
|
694
|
+
.onboarding-panel.onboarding-panel button[class*="bg-accent"] {
|
|
695
|
+
background: rgba(240, 185, 11, 0.1);
|
|
696
|
+
border: 1px solid rgba(240, 185, 11, 0.35);
|
|
697
|
+
color: rgba(240, 238, 250, 0.94);
|
|
698
|
+
border-radius: 6px;
|
|
699
|
+
letter-spacing: 0.1em;
|
|
700
|
+
text-transform: uppercase;
|
|
701
|
+
font-weight: 600;
|
|
702
|
+
}
|
|
703
|
+
.onboarding-panel.onboarding-panel button[class*="bg-accent"]:hover {
|
|
704
|
+
background: rgba(240, 185, 11, 0.18);
|
|
705
|
+
}
|
|
706
|
+
/* Outline/skip buttons */
|
|
707
|
+
.onboarding-panel.onboarding-panel button[class*="opacity-70"] {
|
|
708
|
+
background: transparent;
|
|
709
|
+
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
710
|
+
color: rgba(240, 238, 250, 0.4);
|
|
711
|
+
border-radius: 6px;
|
|
712
|
+
letter-spacing: 0.1em;
|
|
713
|
+
text-transform: uppercase;
|
|
714
|
+
}
|
|
715
|
+
/* Permission grant/settings buttons */
|
|
716
|
+
.onboarding-panel.onboarding-panel .flex.gap-2 button {
|
|
717
|
+
background: rgba(240, 185, 11, 0.08);
|
|
718
|
+
border: 1px solid rgba(240, 185, 11, 0.3);
|
|
719
|
+
color: rgba(240, 238, 250, 0.94);
|
|
720
|
+
border-radius: 6px;
|
|
721
|
+
font-weight: 600;
|
|
722
|
+
letter-spacing: 0.05em;
|
|
723
|
+
}
|
|
724
|
+
|
|
725
|
+
/* === IDENTITY STEP — Overwatch-style bottom character select === */
|
|
726
|
+
|
|
727
|
+
/* Full-screen overlay container for identity step — no glass panel */
|
|
728
|
+
.ob-identity-overlay {
|
|
729
|
+
flex: 1;
|
|
730
|
+
display: flex;
|
|
731
|
+
align-items: flex-end;
|
|
732
|
+
justify-content: center;
|
|
733
|
+
padding-bottom: 0;
|
|
734
|
+
pointer-events: auto;
|
|
735
|
+
}
|
|
736
|
+
|
|
737
|
+
/* Root identity layout — stacks info, roster, actions at the bottom */
|
|
738
|
+
.ob-identity {
|
|
739
|
+
display: flex;
|
|
740
|
+
flex-direction: column;
|
|
741
|
+
align-items: center;
|
|
742
|
+
gap: 12px;
|
|
743
|
+
width: 100%;
|
|
744
|
+
animation: onboarding-content-fade-in 0.6s ease both;
|
|
745
|
+
}
|
|
746
|
+
|
|
747
|
+
/* Selected character info */
|
|
748
|
+
.ob-identity-info {
|
|
749
|
+
text-align: center;
|
|
750
|
+
animation: onboarding-content-fade-in 0.5s ease 0.1s both;
|
|
751
|
+
}
|
|
752
|
+
|
|
753
|
+
.ob-identity-name {
|
|
754
|
+
font-size: 28px;
|
|
755
|
+
font-weight: 700;
|
|
756
|
+
letter-spacing: 0.12em;
|
|
757
|
+
text-transform: uppercase;
|
|
758
|
+
color: rgba(240, 238, 250, 0.95);
|
|
759
|
+
text-shadow:
|
|
760
|
+
0 0 30px rgba(240, 185, 11, 0.3),
|
|
761
|
+
0 2px 12px rgba(3, 5, 10, 0.65);
|
|
762
|
+
transition: all 0.3s ease;
|
|
763
|
+
}
|
|
764
|
+
|
|
765
|
+
.ob-identity-catchphrase {
|
|
766
|
+
font-size: 14px;
|
|
767
|
+
font-style: italic;
|
|
768
|
+
color: rgba(240, 185, 11, 0.7);
|
|
769
|
+
letter-spacing: 0.05em;
|
|
770
|
+
margin-top: 2px;
|
|
771
|
+
text-shadow: 0 2px 10px rgba(3, 5, 10, 0.55);
|
|
772
|
+
}
|
|
773
|
+
|
|
774
|
+
.ob-identity-hint {
|
|
775
|
+
font-size: 12px;
|
|
776
|
+
color: rgba(240, 238, 250, 0.45);
|
|
777
|
+
margin-top: 8px;
|
|
778
|
+
letter-spacing: 0.04em;
|
|
779
|
+
}
|
|
780
|
+
|
|
781
|
+
/* ── Roster bar — horizontal row pinned to bottom ── */
|
|
782
|
+
.ob-identity-roster {
|
|
783
|
+
display: flex;
|
|
784
|
+
flex-wrap: nowrap;
|
|
785
|
+
align-items: flex-end;
|
|
786
|
+
justify-content: center;
|
|
787
|
+
gap: 0;
|
|
788
|
+
width: 100%;
|
|
789
|
+
max-width: 900px;
|
|
790
|
+
padding: 0 0.5rem;
|
|
791
|
+
animation: ob-roster-slide-up 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s both;
|
|
792
|
+
}
|
|
793
|
+
|
|
794
|
+
@keyframes ob-roster-slide-up {
|
|
795
|
+
from {
|
|
796
|
+
opacity: 0;
|
|
797
|
+
transform: translateY(40px);
|
|
798
|
+
}
|
|
799
|
+
to {
|
|
800
|
+
opacity: 1;
|
|
801
|
+
transform: translateY(0);
|
|
802
|
+
}
|
|
803
|
+
}
|
|
804
|
+
|
|
805
|
+
/* Individual character card */
|
|
806
|
+
.ob-identity-card {
|
|
807
|
+
position: relative;
|
|
808
|
+
flex: 1 1 0;
|
|
809
|
+
min-width: 0;
|
|
810
|
+
text-align: center;
|
|
811
|
+
transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
|
|
812
|
+
cursor: pointer;
|
|
813
|
+
border: none;
|
|
814
|
+
background: none;
|
|
815
|
+
padding: 0;
|
|
816
|
+
margin: 0 -6px;
|
|
817
|
+
opacity: 0.5;
|
|
818
|
+
transform: translateY(12px);
|
|
819
|
+
filter: brightness(0.7);
|
|
820
|
+
}
|
|
821
|
+
|
|
822
|
+
.ob-identity-card:hover {
|
|
823
|
+
opacity: 0.85;
|
|
824
|
+
transform: translateY(4px);
|
|
825
|
+
filter: brightness(0.9);
|
|
826
|
+
z-index: 5;
|
|
827
|
+
}
|
|
828
|
+
|
|
829
|
+
.ob-identity-card--active {
|
|
830
|
+
opacity: 1;
|
|
831
|
+
z-index: 10;
|
|
832
|
+
transform: translateY(-8px);
|
|
833
|
+
filter: brightness(1);
|
|
834
|
+
}
|
|
835
|
+
|
|
836
|
+
.ob-identity-card--active:hover {
|
|
837
|
+
transform: translateY(-8px);
|
|
838
|
+
filter: brightness(1);
|
|
839
|
+
}
|
|
840
|
+
|
|
841
|
+
/* Frame border */
|
|
842
|
+
.ob-identity-card-frame {
|
|
843
|
+
position: relative;
|
|
844
|
+
aspect-ratio: 14 / 18;
|
|
845
|
+
width: 100%;
|
|
846
|
+
padding: 2px;
|
|
847
|
+
transition: all 0.25s;
|
|
848
|
+
background: rgba(255, 255, 255, 0.08);
|
|
849
|
+
}
|
|
850
|
+
|
|
851
|
+
.ob-identity-card-frame--active {
|
|
852
|
+
background: linear-gradient(180deg, rgba(240, 185, 11, 0.9), rgba(240, 185, 11, 0.5));
|
|
853
|
+
box-shadow:
|
|
854
|
+
0 0 24px rgba(240, 185, 11, 0.35),
|
|
855
|
+
0 4px 16px rgba(0, 0, 0, 0.3);
|
|
856
|
+
}
|
|
857
|
+
|
|
858
|
+
/* Inner image container */
|
|
859
|
+
.ob-identity-card-inner {
|
|
860
|
+
position: relative;
|
|
861
|
+
height: 100%;
|
|
862
|
+
width: 100%;
|
|
863
|
+
overflow: hidden;
|
|
864
|
+
background: rgba(10, 14, 20, 0.5);
|
|
865
|
+
}
|
|
866
|
+
|
|
867
|
+
.ob-identity-card-img {
|
|
868
|
+
height: 100%;
|
|
869
|
+
width: 100%;
|
|
870
|
+
object-fit: cover;
|
|
871
|
+
object-position: center top;
|
|
872
|
+
transition: transform 0.25s ease-out;
|
|
873
|
+
}
|
|
874
|
+
|
|
875
|
+
.ob-identity-card-img--active {
|
|
876
|
+
transform: scale(1.06);
|
|
877
|
+
}
|
|
878
|
+
|
|
879
|
+
/* Name label at bottom of card */
|
|
880
|
+
.ob-identity-card-label {
|
|
881
|
+
position: absolute;
|
|
882
|
+
inset-inline: 0;
|
|
883
|
+
bottom: 0;
|
|
884
|
+
}
|
|
885
|
+
|
|
886
|
+
.ob-identity-card-name {
|
|
887
|
+
padding: 3px 6px;
|
|
888
|
+
font-size: clamp(8px, 1.2vw, 11px);
|
|
889
|
+
font-weight: 600;
|
|
890
|
+
letter-spacing: 0.06em;
|
|
891
|
+
color: rgba(255, 255, 255, 0.8);
|
|
892
|
+
background: rgba(0, 0, 0, 0.55);
|
|
893
|
+
white-space: nowrap;
|
|
894
|
+
overflow: hidden;
|
|
895
|
+
text-overflow: ellipsis;
|
|
896
|
+
text-transform: uppercase;
|
|
897
|
+
}
|
|
898
|
+
|
|
899
|
+
.ob-identity-card-name--active {
|
|
900
|
+
background: rgba(0, 0, 0, 0.75);
|
|
901
|
+
color: rgba(240, 185, 11, 0.95);
|
|
902
|
+
box-shadow: inset 0 1px 0 rgba(240, 185, 11, 0.15);
|
|
903
|
+
}
|
|
904
|
+
|
|
905
|
+
/* ── Actions row ── */
|
|
906
|
+
.ob-identity-actions {
|
|
907
|
+
display: flex;
|
|
908
|
+
flex-direction: column;
|
|
909
|
+
align-items: center;
|
|
910
|
+
gap: 8px;
|
|
911
|
+
padding-bottom: 24px;
|
|
912
|
+
animation: onboarding-content-fade-in 0.5s ease 0.3s both;
|
|
913
|
+
}
|
|
914
|
+
|
|
915
|
+
.ob-identity-restore {
|
|
916
|
+
background: transparent;
|
|
917
|
+
border: none;
|
|
918
|
+
color: rgba(240, 238, 250, 0.35);
|
|
919
|
+
font-size: 11px;
|
|
920
|
+
cursor: pointer;
|
|
921
|
+
text-decoration: underline;
|
|
922
|
+
font-family: inherit;
|
|
923
|
+
padding: 4px 8px;
|
|
924
|
+
transition: color 0.3s;
|
|
925
|
+
}
|
|
926
|
+
|
|
927
|
+
.ob-identity-restore:hover {
|
|
928
|
+
color: rgba(240, 238, 250, 0.65);
|
|
929
|
+
}
|
|
930
|
+
|
|
931
|
+
/* === RESPONSIVE === */
|
|
932
|
+
@media (max-width: 768px) {
|
|
933
|
+
.onboarding-ui-overlay {
|
|
934
|
+
flex-direction: column;
|
|
935
|
+
}
|
|
936
|
+
.onboarding-left {
|
|
937
|
+
flex-direction: row;
|
|
938
|
+
justify-content: center;
|
|
939
|
+
padding: 16px;
|
|
940
|
+
}
|
|
941
|
+
.onboarding-step-list {
|
|
942
|
+
flex-direction: row;
|
|
943
|
+
gap: 16px;
|
|
944
|
+
}
|
|
945
|
+
.onboarding-step-list::before {
|
|
946
|
+
display: none;
|
|
947
|
+
}
|
|
948
|
+
.onboarding-step-list::after {
|
|
949
|
+
display: none;
|
|
950
|
+
}
|
|
951
|
+
.onboarding-step-name {
|
|
952
|
+
display: none;
|
|
953
|
+
}
|
|
954
|
+
.onboarding-step-sub {
|
|
955
|
+
display: none;
|
|
956
|
+
}
|
|
957
|
+
.onboarding-right {
|
|
958
|
+
padding: 16px;
|
|
959
|
+
}
|
|
960
|
+
|
|
961
|
+
/* Identity bottom bar responsive */
|
|
962
|
+
.ob-identity-roster {
|
|
963
|
+
padding: 0 0.25rem;
|
|
964
|
+
max-width: 100%;
|
|
965
|
+
}
|
|
966
|
+
|
|
967
|
+
.ob-identity-card {
|
|
968
|
+
margin: 0 -8px;
|
|
969
|
+
}
|
|
970
|
+
|
|
971
|
+
.ob-identity-name {
|
|
972
|
+
font-size: 20px;
|
|
973
|
+
}
|
|
974
|
+
|
|
975
|
+
.ob-identity-actions {
|
|
976
|
+
padding-bottom: 16px;
|
|
977
|
+
}
|
|
978
|
+
}
|
|
979
|
+
|
|
980
|
+
/* ═══════════════════════════════════════════════════════════════════════ */
|
|
981
|
+
/* Character Editor roster (ce-roster) — used in CharacterView */
|
|
982
|
+
/* ═══════════════════════════════════════════════════════════════════════ */
|
|
983
|
+
|
|
984
|
+
.ce-roster {
|
|
985
|
+
display: flex;
|
|
986
|
+
flex-wrap: nowrap;
|
|
987
|
+
align-items: flex-end;
|
|
988
|
+
justify-content: center;
|
|
989
|
+
gap: 0;
|
|
990
|
+
width: 100%;
|
|
991
|
+
max-width: 900px;
|
|
992
|
+
margin: 0 auto;
|
|
993
|
+
padding: 0 0.5rem;
|
|
994
|
+
}
|
|
995
|
+
|
|
996
|
+
.ce-roster-card {
|
|
997
|
+
position: relative;
|
|
998
|
+
flex: 1 1 0;
|
|
999
|
+
min-width: 0;
|
|
1000
|
+
text-align: center;
|
|
1001
|
+
transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
|
|
1002
|
+
cursor: pointer;
|
|
1003
|
+
border: none;
|
|
1004
|
+
background: none;
|
|
1005
|
+
padding: 0;
|
|
1006
|
+
margin: 0 -6px;
|
|
1007
|
+
opacity: 0.55;
|
|
1008
|
+
filter: brightness(0.75);
|
|
1009
|
+
}
|
|
1010
|
+
|
|
1011
|
+
.ce-roster-card:hover {
|
|
1012
|
+
opacity: 0.9;
|
|
1013
|
+
filter: brightness(0.95);
|
|
1014
|
+
z-index: 5;
|
|
1015
|
+
}
|
|
1016
|
+
|
|
1017
|
+
.ce-roster-card--active {
|
|
1018
|
+
opacity: 1;
|
|
1019
|
+
z-index: 10;
|
|
1020
|
+
filter: brightness(1);
|
|
1021
|
+
}
|
|
1022
|
+
|
|
1023
|
+
.ce-roster-card-frame {
|
|
1024
|
+
position: relative;
|
|
1025
|
+
aspect-ratio: 14 / 18;
|
|
1026
|
+
width: 100%;
|
|
1027
|
+
padding: 2px;
|
|
1028
|
+
transition: all 0.25s;
|
|
1029
|
+
background: rgba(255, 255, 255, 0.08);
|
|
1030
|
+
}
|
|
1031
|
+
|
|
1032
|
+
.ce-roster-card-frame--active {
|
|
1033
|
+
background: linear-gradient(180deg, rgba(240, 185, 11, 0.9), rgba(240, 185, 11, 0.5));
|
|
1034
|
+
box-shadow:
|
|
1035
|
+
0 0 24px rgba(240, 185, 11, 0.35),
|
|
1036
|
+
0 4px 16px rgba(0, 0, 0, 0.3);
|
|
1037
|
+
}
|
|
1038
|
+
|
|
1039
|
+
.ce-roster-card-inner {
|
|
1040
|
+
position: relative;
|
|
1041
|
+
height: 100%;
|
|
1042
|
+
width: 100%;
|
|
1043
|
+
overflow: hidden;
|
|
1044
|
+
background: rgba(10, 14, 20, 0.5);
|
|
1045
|
+
}
|
|
1046
|
+
|
|
1047
|
+
.ce-roster-card-img {
|
|
1048
|
+
height: 100%;
|
|
1049
|
+
width: 100%;
|
|
1050
|
+
object-fit: cover;
|
|
1051
|
+
object-position: center top;
|
|
1052
|
+
transition: transform 0.25s ease-out;
|
|
1053
|
+
}
|
|
1054
|
+
|
|
1055
|
+
.ce-roster-card-img--active {
|
|
1056
|
+
transform: scale(1.06);
|
|
1057
|
+
}
|
|
1058
|
+
|
|
1059
|
+
.ce-roster-card-label {
|
|
1060
|
+
position: absolute;
|
|
1061
|
+
inset-inline: 0;
|
|
1062
|
+
bottom: 0;
|
|
1063
|
+
}
|
|
1064
|
+
|
|
1065
|
+
.ce-roster-card-name {
|
|
1066
|
+
padding: 3px 6px;
|
|
1067
|
+
font-size: clamp(8px, 1.2vw, 11px);
|
|
1068
|
+
font-weight: 600;
|
|
1069
|
+
letter-spacing: 0.06em;
|
|
1070
|
+
color: rgba(255, 255, 255, 0.8);
|
|
1071
|
+
background: rgba(0, 0, 0, 0.55);
|
|
1072
|
+
white-space: nowrap;
|
|
1073
|
+
overflow: hidden;
|
|
1074
|
+
text-overflow: ellipsis;
|
|
1075
|
+
text-transform: uppercase;
|
|
1076
|
+
}
|
|
1077
|
+
|
|
1078
|
+
.ce-roster-card-name--active {
|
|
1079
|
+
background: rgba(0, 0, 0, 0.75);
|
|
1080
|
+
color: rgba(240, 185, 11, 0.95);
|
|
1081
|
+
box-shadow: inset 0 1px 0 rgba(240, 185, 11, 0.15);
|
|
1082
|
+
}
|
|
1083
|
+
|
|
1084
|
+
@media (max-width: 768px) {
|
|
1085
|
+
.ce-roster {
|
|
1086
|
+
padding: 0 0.25rem;
|
|
1087
|
+
}
|
|
1088
|
+
|
|
1089
|
+
.ce-roster-card {
|
|
1090
|
+
margin: 0 -8px;
|
|
1091
|
+
}
|
|
1092
|
+
}
|