├── .gitignore ├── .idea ├── .gitignore ├── codeStyles │ └── codeStyleConfig.xml ├── discord.xml ├── jsLibraryMappings.xml ├── localhost.iml ├── modules.xml ├── vcs.xml └── watcherTasks.xml ├── @spotify-internal ├── encore-foundation │ ├── desktop │ │ ├── desktop │ │ │ └── tokens.es6.js │ │ ├── index.js │ │ ├── mobile │ │ │ └── tokens.es6.js │ │ ├── themes │ │ │ └── themes.es6.js │ │ ├── tokens.es6.js │ │ └── web │ │ │ └── tokens.es6.js │ ├── index.js │ ├── mobile │ │ └── tokens.es6.js │ ├── themes │ │ └── themes.es6.js │ └── web │ │ ├── tokens.es6.js │ │ └── tokens.scss ├── encore-web │ ├── es │ │ ├── components │ │ │ ├── ButtonPrimary │ │ │ │ ├── Button.js │ │ │ │ ├── ButtonChildren.js │ │ │ │ ├── ButtonFocus.js │ │ │ │ ├── ButtonInner.js │ │ │ │ ├── IconWrapper.js │ │ │ │ └── index.js │ │ │ ├── ButtonSecondary │ │ │ │ ├── Button.js │ │ │ │ ├── ButtonChildren.js │ │ │ │ ├── IconWrapper.js │ │ │ │ └── index.js │ │ │ ├── FormToggle │ │ │ │ ├── Checkbox.js │ │ │ │ ├── Indicator.js │ │ │ │ ├── Label.js │ │ │ │ ├── Wrapper.js │ │ │ │ └── index.js │ │ │ ├── GlobalStyles │ │ │ │ └── index.js │ │ │ ├── Icon │ │ │ │ ├── Svg.js │ │ │ │ ├── deprecated-encore-web │ │ │ │ │ ├── IconCheckAltActive │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IconDownloadAltActive │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IconExclamationAlt │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IconHeartAltActive │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IconMicrophone │ │ │ │ │ │ └── index.js │ │ │ │ │ └── IconUserAltCircle │ │ │ │ │ │ └── index.js │ │ │ │ ├── icons │ │ │ │ │ ├── IconAddToQueue │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IconAlbum │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IconArrowRight │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IconArtist │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IconBlock │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IconBluetooth │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IconCheck │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IconCheckAlt │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IconCheckAltFill │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IconChevronRight │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IconCollection │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IconCollectionActive │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IconDeviceMobile │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IconDownloaded │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IconExclamationCircle │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IconGears │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IconHeart │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IconHeartActive │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IconHome │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IconHomeActive │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IconInformationAlt │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IconMic │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IconMicOff │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IconMore │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IconNowPlaying │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IconPause │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IconPlay │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IconPlaybackSpeed0Point5x │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IconPlaybackSpeed0Point8x │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IconPlaybackSpeed1Point2x │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IconPlaybackSpeed1Point5x │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IconPlaybackSpeed1Point8x │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IconPlaybackSpeed1x │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IconPlaybackSpeed2Point5x │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IconPlaybackSpeed2x │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IconPlaybackSpeed3Point5x │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IconPlaybackSpeed3x │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IconPlaylist │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IconPlusAlt │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IconPodcasts │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IconPublic │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IconRadio │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IconRepeat │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IconRepeatOnce │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IconSearch │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IconSearchActive │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IconShuffle │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IconSkipBack │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IconSkipBack15 │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IconSkipForward │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IconSkipForward15 │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IconTrack │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IconUserCircle │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IconVolume │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── IconVolumeOff │ │ │ │ │ │ └── index.js │ │ │ │ │ └── IconX │ │ │ │ │ │ └── index.js │ │ │ │ └── index.js │ │ │ ├── LogoSpotify │ │ │ │ ├── Svg.js │ │ │ │ └── index.js │ │ │ └── VisuallyHidden │ │ │ │ └── index.js │ │ ├── contexts │ │ │ ├── BrowserDefaultFocusStyleContext.js │ │ │ ├── EncoreContext.js │ │ │ └── KeyboardDetectionContext.js │ │ ├── styles │ │ │ ├── global-styles.js │ │ │ ├── index.js │ │ │ ├── mixins │ │ │ │ ├── baseline.js │ │ │ │ ├── buttons.js │ │ │ │ ├── focusBorders.js │ │ │ │ ├── forms.js │ │ │ │ ├── localization.js │ │ │ │ ├── type.js │ │ │ │ └── visuallyHidden.js │ │ │ ├── semantic-theme.js │ │ │ └── variables.js │ │ └── typeHelpers.js │ ├── index.js │ └── types │ │ └── src │ │ └── core │ │ └── components │ │ └── Icon │ │ ├── Svg.js │ │ └── Svg.ts ├── event-definitions │ └── src │ │ └── events │ │ ├── createUbiExpr2PageView.js │ │ ├── createUbiExpr2PageView.ts │ │ ├── createUbiExpr5ImpressionNonAuth.js │ │ ├── createUbiExpr5ImpressionNonAuth.ts │ │ ├── createUbiExpr6InteractionNonAuth.js │ │ ├── createUbiExpr6InteractionNonAuth.ts │ │ ├── createUbiProd1Impression.js │ │ ├── createUbiProd1Impression.ts │ │ ├── createUbiProd1Interaction.js │ │ └── createUbiProd1Interaction.ts ├── ubi-logger-js │ └── src │ │ ├── constants.js │ │ ├── constants.ts │ │ ├── eventConverters │ │ ├── ImpressionEventConverter.js │ │ ├── ImpressionEventConverter.ts │ │ ├── InteractionEventConverter.js │ │ └── InteractionEventConverter.ts │ │ ├── index.js │ │ ├── index.ts │ │ ├── loggers │ │ ├── PageViewLogger.js │ │ ├── PageViewLogger.ts │ │ ├── UBILogger.js │ │ └── UBILogger.ts │ │ ├── providers │ │ ├── PageInstanceIdProvider.js │ │ ├── PageInstanceIdProvider.ts │ │ ├── PlayContextUriProvider.js │ │ ├── PlayContextUriProvider.ts │ │ ├── PlaybackIdProvider.js │ │ └── PlaybackIdProvider.ts │ │ ├── ubi.js │ │ ├── ubi.ts │ │ └── utils │ │ ├── EventUtils.js │ │ └── EventUtils.ts ├── ubi-sdk-music-car-content-shelf-carthingos │ ├── CarContentShelfCarthingosEventFactory.js │ └── index.js ├── ubi-sdk-music-car-lets-drive-modal-carthingos │ ├── CarLetsDriveModalCarthingosEventFactory.js │ └── index.js ├── ubi-sdk-music-car-need-premium-modal-carthingos │ ├── CarNeedPremiumModalCarthingosEventFactory.js │ └── index.js ├── ubi-sdk-music-car-night-mode-carthingos │ ├── CarNightModeCarthingosEventFactory.js │ └── index.js ├── ubi-sdk-music-car-no-bluetooth-connection-carthingos │ ├── CarNoBluetoothConnectionCarthingosEventFactory.js │ └── index.js ├── ubi-sdk-music-car-non-critical-ota-modal-carthingos │ ├── CarNonCriticalOtaModalCarthingosEventFactory.js │ └── index.js ├── ubi-sdk-music-car-now-playing-view-carthingos │ ├── CarNowPlayingViewCarthingosEventFactory.js │ └── index.js ├── ubi-sdk-music-car-now-playing-view-other-media-carthingos │ ├── CarNowPlayingViewOtherMediaCarthingosEventFactory.js │ └── index.js ├── ubi-sdk-music-car-onboarding-learn-tactile-carthingos │ ├── CarOnboardingLearnTactileCarthingosEventFactory.js │ └── index.js ├── ubi-sdk-music-car-onboarding-learn-voice-carthingos │ ├── CarOnboardingLearnVoiceCarthingosEventFactory.js │ └── index.js ├── ubi-sdk-music-car-onboarding-start-carthingos │ ├── CarOnboardingStartCarthingosEventFactory.js │ └── index.js ├── ubi-sdk-music-car-phone-call-carthingos │ ├── CarPhoneCallCarthingosEventFactory.js │ └── index.js ├── ubi-sdk-music-car-pin-pairing-carthingos │ ├── CarPinPairingCarthingosEventFactory.js │ └── index.js ├── ubi-sdk-music-car-podcast-speed-view-carthingos │ ├── CarPodcastSpeedViewCarthingosEventFactory.js │ └── index.js ├── ubi-sdk-music-car-presets-carthingos │ ├── CarPresetsCarthingosEventFactory.js │ └── index.js ├── ubi-sdk-music-car-queue-carthingos │ ├── CarQueueCarthingosEventFactory.js │ └── index.js ├── ubi-sdk-music-car-settings-carthingos │ ├── CarSettingsCarthingosEventFactory.js │ └── index.js ├── ubi-sdk-music-car-settings-power-modal-carthingos │ ├── CarSettingsPowerModalCarthingosEventFactory.js │ └── index.js ├── ubi-sdk-music-car-setup-critical-ota-carthingos │ ├── CarSetupCriticalOtaCarthingosEventFactory.js │ └── index.js ├── ubi-sdk-music-car-track-view-carthingos │ ├── CarTrackViewCarthingosEventFactory.js │ └── index.js ├── ubi-sdk-music-car-voice-view-carthingos │ ├── CarVoiceViewCarthingosEventFactory.js │ └── index.js ├── ubi-types-js │ ├── index.js │ ├── index.ts │ └── src │ │ ├── pageIdentifiers.js │ │ ├── pageIdentifiers.ts │ │ ├── ubiTypes.js │ │ └── ubiTypes.ts └── uri │ ├── index.js │ ├── index.ts │ └── src │ ├── _internal │ ├── helpers.js │ ├── helpers.ts │ ├── parser.js │ ├── parser.ts │ ├── utils.js │ └── utils.ts │ ├── base62.js │ ├── base62.ts │ ├── enums │ ├── prefix.js │ ├── prefix.ts │ ├── uri_format.js │ ├── uri_format.ts │ ├── uri_particle.js │ ├── uri_particle.ts │ ├── uri_type.js │ └── uri_type.ts │ ├── factories.js │ ├── factories.ts │ ├── type_guards.js │ ├── type_guards.ts │ ├── uri.js │ ├── uri.ts │ ├── uri_typedefs.js │ └── uri_typedefs.ts ├── App.scss ├── App.tsx ├── Fonts.css ├── Main.tsx ├── README.md ├── Socket.ts ├── backtrace_uuid.js ├── bypass_premium.sh ├── component ├── AmbientBackdrop │ ├── AmbientBackdrop.module.scss │ └── AmbientBackdrop.tsx ├── AutoSizingText │ └── AutoSizingText.tsx ├── CarthingUIComponents │ ├── AppendEllipsis │ │ ├── AppendEllipsis.module.scss │ │ └── AppendEllipsis.tsx │ ├── Banner │ │ ├── Banner.module.scss │ │ ├── Banner.tsx │ │ ├── BannerButton.module.scss │ │ └── BannerButton.tsx │ ├── Button │ │ ├── Button.module.scss │ │ └── Button.tsx │ ├── ButtonGroup │ │ ├── ButtonGroup.module.scss │ │ └── ButtonGroup.tsx │ ├── Equaliser │ │ ├── Equaliser.module.scss │ │ └── Equaliser.tsx │ ├── Icons │ │ ├── IconAddAlt48.tsx │ │ ├── IconBlock.tsx │ │ ├── IconCheck32.tsx │ │ ├── IconCheckAlt.tsx │ │ ├── IconChevronRight48.tsx │ │ ├── IconGears64.tsx │ │ ├── IconHeart48.tsx │ │ ├── IconHeartActive48.tsx │ │ ├── IconHome32.tsx │ │ ├── IconHomeActive32.tsx │ │ ├── IconInfo32.tsx │ │ ├── IconInfo64.tsx │ │ ├── IconLibrary32.tsx │ │ ├── IconLibraryActive.tsx │ │ ├── IconMicOff.tsx │ │ ├── IconMicOff32.tsx │ │ ├── IconMicOff64.tsx │ │ ├── IconMicOn64.tsx │ │ ├── IconMobile64.tsx │ │ ├── IconMute32.tsx │ │ ├── IconOption64.tsx │ │ ├── IconOtherVoice.tsx │ │ ├── IconPause48.tsx │ │ ├── IconPhoneAnswer.tsx │ │ ├── IconPhoneDecline.tsx │ │ ├── IconPlay48.tsx │ │ ├── IconPlaybackSpeed0Point5X48.tsx │ │ ├── IconPlaybackSpeed0Point8X48.tsx │ │ ├── IconPlaybackSpeed1Point2X48.tsx │ │ ├── IconPlaybackSpeed1Point5X48.tsx │ │ ├── IconPlaybackSpeed1Point8X48.tsx │ │ ├── IconPlaybackSpeed1X48.tsx │ │ ├── IconPlaybackSpeed1point2x.tsx │ │ ├── IconPlaybackSpeed1point5x.tsx │ │ ├── IconPlaybackSpeed1x.tsx │ │ ├── IconPlaybackSpeed2Point5X48.tsx │ │ ├── IconPlaybackSpeed2X48.tsx │ │ ├── IconPlaybackSpeed3Point5X48.tsx │ │ ├── IconPlaybackSpeed3X48.tsx │ │ ├── IconPower64.tsx │ │ ├── IconPublic.tsx │ │ ├── IconRepeat.tsx │ │ ├── IconRepeat32.tsx │ │ ├── IconRepeatOne.tsx │ │ ├── IconRepeatOne32.tsx │ │ ├── IconSearch32.tsx │ │ ├── IconSearchActive.tsx │ │ ├── IconSeek15Back48.tsx │ │ ├── IconSeek15Foward48.tsx │ │ ├── IconShuffle.tsx │ │ ├── IconShuffle48.tsx │ │ ├── IconShuffleActive.tsx │ │ ├── IconShuffleActive48.tsx │ │ ├── IconSkipBack48.tsx │ │ ├── IconSkipForward48.tsx │ │ ├── IconTips64.tsx │ │ ├── IconVolume48.tsx │ │ ├── IconVolumeOff48.tsx │ │ └── IconWind32.tsx │ ├── Jellyfish │ │ └── Jellyfish.tsx │ ├── NowPlaying │ │ ├── NowPlaying.module.scss │ │ └── NowPlaying.tsx │ ├── Spinner │ │ ├── Spinner.module.scss │ │ └── Spinner.tsx │ ├── SpotifyLogo │ │ ├── SpotifyLogo.scss │ │ └── SpotifyLogo.tsx │ ├── SpotifySplash │ │ ├── SpotifySplash.module.scss │ │ └── SpotifySplash.tsx │ ├── Trailer │ │ ├── Trailer.module.scss │ │ └── Trailer.tsx │ ├── Type │ │ ├── Type.scss │ │ └── Type.tsx │ └── index.ts ├── CountUpTimer │ └── CountUpTimer.tsx ├── DelayedRender │ └── DelayedRender.tsx ├── DevOptions │ ├── DevOptions.module.scss │ └── DevOptions.tsx ├── LazyImage │ ├── LazyImage.module.scss │ ├── LazyImage.tsx │ └── Placeholder │ │ ├── Placeholder.module.scss │ │ └── Placeholder.tsx ├── Listening │ ├── Listening.module.scss │ └── Listening.tsx ├── Main.tsx ├── Modals │ ├── BluetoothPairing.tsx │ ├── LegacyModal.module.scss │ ├── LegacyModal.tsx │ ├── LetsDrive.tsx │ ├── LoginRequired.tsx │ ├── Modal.module.scss │ ├── Modal.tsx │ ├── ModalContent.module.scss │ ├── NoConnection.tsx │ ├── NoNetwork.module.scss │ ├── NoNetwork.tsx │ ├── NonSupportedType.module.scss │ ├── NonSupportedType.tsx │ ├── PremiumAccountRequired.tsx │ └── Standby.tsx ├── NightMode │ ├── NightModeController.ts │ ├── NightModeUbiLogger.ts │ └── NightModeUiState.ts ├── Npv │ ├── ControlButtons │ │ ├── Block.tsx │ │ ├── ControlButton.tsx │ │ ├── ControlButtonsUiState.ts │ │ ├── Controls.module.scss │ │ ├── Controls.tsx │ │ ├── LikeTrack.tsx │ │ ├── PlayPause.tsx │ │ ├── PodcastSpeed.tsx │ │ ├── PreviousOrNext.tsx │ │ ├── SaveEpisode.tsx │ │ ├── Seek.tsx │ │ ├── Shuffle.tsx │ │ └── Spacer.tsx │ ├── NoNetworkBanner │ │ └── NoNetworkBanner.tsx │ ├── Npv.module.scss │ ├── Npv.tsx │ ├── NpvController.ts │ ├── OtherMedia │ │ ├── BackToSpotify │ │ │ ├── BackToSpotify.module.scss │ │ │ └── BackToSpotify.tsx │ │ ├── OtherMedia.module.scss │ │ ├── OtherMedia.tsx │ │ ├── OtherMediaController.ts │ │ ├── OtherMediaUbiLogger.ts │ │ ├── OtherMediaUiState.ts │ │ └── Widget │ │ │ ├── Widget.module.scss │ │ │ └── Widget.tsx │ ├── PlayingInfo │ │ ├── Artwork.module.scss │ │ ├── Artwork.tsx │ │ ├── PlayingInfo.module.scss │ │ ├── PlayingInfo.tsx │ │ ├── PlayingInfoHeader.module.scss │ │ ├── PlayingInfoHeader.tsx │ │ ├── PlayingInfoTitles │ │ │ ├── PlayingInfoTitles.module.scss │ │ │ └── PlayingInfoTitles.tsx │ │ ├── PlayingInfoUiState.ts │ │ ├── StatusIcons.module.scss │ │ └── StatusIcons.tsx │ ├── PlayingInfoOrTip │ │ ├── PlayingInfoOrTip.module.scss │ │ └── PlayingInfoOrTip.tsx │ ├── PodcastSpeedOptions │ │ ├── PodcastSpeedItem.module.scss │ │ ├── PodcastSpeedItem.tsx │ │ ├── PodcastSpeedOptions.module.scss │ │ ├── PodcastSpeedOptions.tsx │ │ └── PodcastSpeedUiState.ts │ ├── Scrubbing │ │ ├── Scrubbing.module.scss │ │ ├── Scrubbing.tsx │ │ ├── ScrubbingBackdrop.module.scss │ │ ├── ScrubbingBackdrop.tsx │ │ ├── ScrubbingBar.module.scss │ │ ├── ScrubbingBar.tsx │ │ └── ScrubbingUiState.ts │ ├── SwipeHandler.ts │ ├── Tips │ │ ├── Tips.module.scss │ │ ├── Tips.tsx │ │ └── TipsUiState.ts │ ├── Volume │ │ ├── Volume.module.scss │ │ ├── Volume.tsx │ │ ├── VolumeBar.module.scss │ │ ├── VolumeBar.tsx │ │ └── VolumeUiState.ts │ └── WindAlertBanner │ │ ├── AirVentInterferenceController.ts │ │ ├── WindAlertBanner.tsx │ │ └── WindAlertBannerUiState.ts ├── Onboarding │ ├── BackPressBanner.module.scss │ ├── BackPressBanner.tsx │ ├── DialPressPulse.module.scss │ ├── DialPressPulse.tsx │ ├── DialTurnDots.module.scss │ ├── DialTurnDots.tsx │ ├── LearnTactile.module.scss │ ├── LearnTactile.tsx │ ├── LearnVoice.tsx │ ├── LearnVoiceStep.module.scss │ ├── LearnVoiceStep.tsx │ ├── NoInteractionModal.module.scss │ ├── NoInteractionModal.tsx │ ├── Onboarding.module.scss │ ├── Onboarding.tsx │ ├── OnboardingUbiLogger.ts │ ├── SkipButton.module.scss │ ├── SkipButton.tsx │ ├── Start.module.scss │ ├── Start.tsx │ └── tts │ │ └── Tactile.ts ├── OtaUpdating │ ├── OtaUpdating.module.scss │ └── OtaUpdating.tsx ├── Overlays │ ├── Overlay.tsx │ ├── OverlayController.ts │ ├── OverlayUiState.ts │ ├── Overlays.module.scss │ └── Overlays.tsx ├── PhoneCall │ ├── AnswerButton.module.scss │ ├── AnswerButton.tsx │ ├── DeclineButton.module.scss │ ├── DeclineButton.tsx │ ├── PhoneCall.module.scss │ ├── PhoneCall.tsx │ ├── PhoneCallController.ts │ ├── PhoneCallTimer.module.scss │ ├── PhoneCallTimer.tsx │ └── PhoneCallUiState.ts ├── Presets │ ├── PresetCard │ │ ├── PresetCard.module.scss │ │ ├── PresetCard.tsx │ │ ├── PresetContent.module.scss │ │ ├── PresetContent.tsx │ │ ├── PresetPlaceholder.module.scss │ │ ├── PresetPlaceholder.tsx │ │ ├── PresetUnavailable.module.scss │ │ └── PresetUnavailable.tsx │ ├── PresetIndicator │ │ ├── PresetNumberIndicator.module.scss │ │ └── PresetNumberIndicator.tsx │ ├── Presets.module.scss │ ├── Presets.tsx │ ├── PresetsController.ts │ ├── PresetsUiState.ts │ ├── SavingPresetFailed.module.scss │ └── SavingPresetFailed.tsx ├── Promo │ ├── Promo.module.scss │ ├── Promo.tsx │ └── PromoController.ts ├── Queue │ ├── Queue.module.scss │ ├── Queue.tsx │ ├── QueueEmptyState │ │ ├── EmptyQueueState.module.scss │ │ └── EmptyQueueState.tsx │ ├── QueueHeader │ │ ├── QueueHeader.module.scss │ │ └── QueueHeader.tsx │ ├── QueueListItem │ │ ├── QueueListItem.module.scss │ │ └── QueueListItem.tsx │ ├── QueueSwiper │ │ ├── QueueSwiper.module.scss │ │ └── QueueSwiper.tsx │ └── QueueUiState.ts ├── RootErrorBoundary │ └── RootErrorBoundary.tsx ├── Settings │ ├── AirVentInterference │ │ ├── AirVentInterference.module.scss │ │ ├── AirVentInterference.tsx │ │ └── AirVentInterferenceUiState.ts │ ├── DisplayAndBrightness │ │ ├── DisplayAndBrightness.module.scss │ │ ├── DisplayAndBrightness.tsx │ │ └── DisplayAndBrightnessUiState.ts │ ├── FactoryReset │ │ ├── FactoryReset.module.scss │ │ └── FactoryReset.tsx │ ├── Licenses │ │ ├── Licenses.module.scss │ │ └── Licenses.tsx │ ├── MainMenu │ │ ├── MainMenu.module.scss │ │ ├── MainMenu.tsx │ │ ├── MainMenuItem.module.scss │ │ └── MainMenuItem.tsx │ ├── PhoneCalls │ │ ├── PhoneCalls.module.scss │ │ ├── PhoneCalls.tsx │ │ └── PhoneCallsUiState.ts │ ├── PhoneConnection │ │ ├── PhoneConnection.module.scss │ │ ├── PhoneConnection.tsx │ │ ├── PhoneConnectionItem.tsx │ │ ├── PhoneConnectionModal.tsx │ │ ├── PhoneForgetConfirm.tsx │ │ └── contextmenu │ │ │ ├── PhoneConnectionContextMenu.module.scss │ │ │ ├── PhoneConnectionContextMenu.tsx │ │ │ ├── PhoneConnectionContextMenuItem.tsx │ │ │ └── PhoneConnectionContextMenuUiState.ts │ ├── PowerTutorial │ │ ├── PowerTutorial.module.scss │ │ └── PowerTutorial.tsx │ ├── RestartConfirm │ │ ├── RestartConfirm.module.scss │ │ └── RestartConfirm.tsx │ ├── Settings.module.scss │ ├── Settings.tsx │ ├── SettingsUbiLogger.ts │ ├── Submenu │ │ ├── Submenu.module.scss │ │ ├── Submenu.tsx │ │ ├── SubmenuHeader.module.scss │ │ ├── SubmenuHeader.tsx │ │ ├── SubmenuItem.module.scss │ │ ├── SubmenuItem.tsx │ │ └── SubmenuUiState.ts │ ├── TipsOnDemand │ │ ├── TipsOnDemand.module.scss │ │ ├── TipsOnDemand.tsx │ │ └── TipsOnDemandUiState.ts │ └── UnavailableSettingBanner │ │ ├── UnavailableSettingBanner.tsx │ │ └── UnavailableSettingsBannerUiState.ts ├── Setup │ ├── BTPairing.module.scss │ ├── BTPairing.tsx │ ├── Connected.module.scss │ ├── Connected.tsx │ ├── Failed.module.scss │ ├── Failed.tsx │ ├── Setup.tsx │ ├── SetupHelp.module.scss │ ├── SetupHelp.tsx │ ├── StartSetup.module.scss │ ├── StartSetup.tsx │ ├── Updating.module.scss │ ├── Updating.tsx │ ├── Waiting.module.scss │ ├── Waiting.tsx │ ├── Welcome.module.scss │ └── Welcome.tsx ├── Shelf │ ├── Shelf.scss │ ├── Shelf.tsx │ ├── ShelfController.ts │ ├── ShelfHeader │ │ ├── ShelfHeader.module.scss │ │ ├── ShelfHeader.tsx │ │ ├── ShelfHeaderItem.module.scss │ │ ├── ShelfHeaderItem.tsx │ │ └── ShelfHeaderUiState.ts │ ├── ShelfItem │ │ ├── ContextItem.tsx │ │ ├── DefaultVoiceItem.tsx │ │ ├── InlineTipItem.module.scss │ │ ├── InlineTipItem.tsx │ │ ├── MoreButton.module.scss │ │ ├── MoreItem.tsx │ │ ├── ShelfSwiperItem.module.scss │ │ ├── ShelfSwiperItem.tsx │ │ └── ShelfSwiperItemUiState.ts │ ├── ShelfSwiper │ │ ├── ShelfSwiper.module.scss │ │ ├── ShelfSwiper.tsx │ │ └── ShelfSwiperUiState.ts │ └── VoiceMutedbanner │ │ ├── VoiceMuteBannerUiState.ts │ │ └── VoiceMutedBanner.tsx ├── SwipeDownHandle │ ├── SwipeDownHandle.module.scss │ ├── SwipeDownHandle.tsx │ └── SwipeDownHandleUiState.ts ├── Tracklist │ ├── ActionConfirmation │ │ └── QueueConfirmationBanner.tsx │ ├── EmptyTracklistState.tsx │ ├── ProgressBar.module.scss │ ├── ProgressBar.tsx │ ├── Tracklist.module.scss │ ├── Tracklist.tsx │ ├── TracklistHeader.module.scss │ ├── TracklistHeader.tsx │ ├── TracklistHeaderActions.module.scss │ ├── TracklistHeaderActions.tsx │ ├── TracklistHeaderDetails.module.scss │ ├── TracklistHeaderDetails.tsx │ ├── TracklistItem.module.scss │ ├── TracklistItem.tsx │ ├── TracklistSwiper.tsx │ └── TracklistUiState.ts ├── Views │ ├── Views.module.scss │ └── Views.tsx └── VoiceConfirmation │ ├── VoiceConfirmation.module.scss │ ├── VoiceConfirmation.tsx │ ├── VoiceConfirmationActions.ts │ └── VoiceConfirmationIntents.ts ├── context └── store.tsx ├── eventhandler ├── BackButtonHandler.ts ├── ContentShelfUbiLogger.ts ├── DialHandler.ts ├── DisconnectedLogger.ts ├── ErrorHandler.ts ├── ErrorHandlerFilters.ts ├── HardwareEventHandler.ts ├── ModalUbiLogger.ts ├── NpvUbiLogger.ts ├── PhoneCallUbiLogger.ts ├── PodcastSpeedOptionsUbiLogger.ts ├── PresetButtonsHandler.ts ├── PresetsUbiLogger.ts ├── QueueUbiLogger.ts ├── SettingsButtonHandler.ts ├── TrackListUbiLogger.ts ├── UbiLogger.ts ├── VoiceUbiLogger.ts └── index.ts ├── fonts ├── CircularSpUIv3T-Black.woff2 ├── CircularSpUIv3T-Bold.woff2 └── CircularSpUIv3T-Book.woff2 ├── global.d.ts ├── helpers ├── Backtrace.ts ├── CallbackHandler.ts ├── ColorExtractor.ts ├── ContextTitleExtractor.ts ├── FeatureIdentifiers.ts ├── HardwareEvents.ts ├── LongPressHandler.ts ├── MockHardwareEvents.ts ├── Pagination.ts ├── PointerListeners.ts ├── RequestLogger.ts ├── Retry.ts ├── SpotifyUriUtil.ts ├── TextUtil.ts ├── TimeUtils.ts └── contentIdExtractor.ts ├── hocs └── withStore.tsx ├── hooks └── useSwiperDial.tsx ├── index.html ├── index.tsx ├── middleware ├── InterappActions.ts ├── InterappError.ts ├── MiddlewareActions.ts ├── MiddlewareRequest.ts ├── MiddlewareStorage.ts ├── Queries.ts └── SeedableStorageInterface.ts ├── mods ├── menu.tsx └── muteAds.ts ├── package.json ├── public ├── images │ ├── appstart.png │ ├── bluetooth-icon.svg │ ├── explicit.svg │ ├── menu-dots.svg │ ├── mobile-signal.svg │ ├── more-48.svg │ ├── no-connection.svg │ ├── radio-rings-bg.svg │ ├── round-corners.svg │ └── setup-qr.svg ├── license │ ├── mw-license.txt │ ├── os-license.txt │ └── ui-license.txt └── static │ ├── dino.html │ ├── js │ └── main.js.LICENSE.txt │ └── media │ └── other-media.83237a6ee7e62a4fb53b.png ├── push.sh ├── src ├── InView.tsx ├── observe.ts └── useInView.tsx ├── store ├── AndroidPhoneCallStore.ts ├── BluetoothStore.ts ├── ChildItemStore.ts ├── DevOptionsStore.ts ├── HardwareStore.ts ├── HomeItemsStore.ts ├── ImageStore.ts ├── IphonePhoneCallStore.ts ├── NpvStore.ts ├── OnboardingStore.ts ├── OtaStore.ts ├── PermissionStore.ts ├── PhoneConnectionStore.ts ├── PlayerStore.ts ├── PodcastSpeedStore.ts ├── PodcastStore.ts ├── PresetsDataStore.ts ├── QueueStore.ts ├── RadioStore.ts ├── RemoteConfigStore.ts ├── RemoteControlStore.ts ├── RootStore.ts ├── SavedStore.ts ├── SessionStateStore.ts ├── SettingsStore.ts ├── SetupStore.ts ├── ShelfStore.ts ├── TimerStore.ts ├── TipsStore.ts ├── TracklistStore.ts ├── VersionStatusStore.ts ├── ViewStore.ts ├── VoiceStore.ts ├── VolumeStore.ts └── WindLevelStore.ts ├── style ├── Variables.js └── variables.module.scss ├── system └── StorageMigration.ts ├── tsconfig.json ├── tsconfig.node.json ├── types └── messages │ ├── index.ts │ └── voice.ts ├── vite.config.ts └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/discord.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/.idea/discord.xml -------------------------------------------------------------------------------- /.idea/jsLibraryMappings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/.idea/jsLibraryMappings.xml -------------------------------------------------------------------------------- /.idea/localhost.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/.idea/localhost.iml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/watcherTasks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/.idea/watcherTasks.xml -------------------------------------------------------------------------------- /@spotify-internal/encore-foundation/desktop/desktop/tokens.es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-foundation/desktop/desktop/tokens.es6.js -------------------------------------------------------------------------------- /@spotify-internal/encore-foundation/desktop/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-foundation/desktop/index.js -------------------------------------------------------------------------------- /@spotify-internal/encore-foundation/desktop/mobile/tokens.es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-foundation/desktop/mobile/tokens.es6.js -------------------------------------------------------------------------------- /@spotify-internal/encore-foundation/desktop/themes/themes.es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-foundation/desktop/themes/themes.es6.js -------------------------------------------------------------------------------- /@spotify-internal/encore-foundation/desktop/tokens.es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-foundation/desktop/tokens.es6.js -------------------------------------------------------------------------------- /@spotify-internal/encore-foundation/desktop/web/tokens.es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-foundation/desktop/web/tokens.es6.js -------------------------------------------------------------------------------- /@spotify-internal/encore-foundation/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-foundation/index.js -------------------------------------------------------------------------------- /@spotify-internal/encore-foundation/mobile/tokens.es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-foundation/mobile/tokens.es6.js -------------------------------------------------------------------------------- /@spotify-internal/encore-foundation/themes/themes.es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-foundation/themes/themes.es6.js -------------------------------------------------------------------------------- /@spotify-internal/encore-foundation/web/tokens.es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-foundation/web/tokens.es6.js -------------------------------------------------------------------------------- /@spotify-internal/encore-foundation/web/tokens.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-foundation/web/tokens.scss -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/ButtonPrimary/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/ButtonPrimary/Button.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/ButtonPrimary/ButtonChildren.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/ButtonPrimary/ButtonChildren.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/ButtonPrimary/ButtonFocus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/ButtonPrimary/ButtonFocus.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/ButtonPrimary/ButtonInner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/ButtonPrimary/ButtonInner.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/ButtonPrimary/IconWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/ButtonPrimary/IconWrapper.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/ButtonPrimary/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/ButtonPrimary/index.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/ButtonSecondary/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/ButtonSecondary/Button.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/ButtonSecondary/ButtonChildren.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/ButtonSecondary/ButtonChildren.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/ButtonSecondary/IconWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/ButtonSecondary/IconWrapper.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/ButtonSecondary/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/ButtonSecondary/index.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/FormToggle/Checkbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/FormToggle/Checkbox.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/FormToggle/Indicator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/FormToggle/Indicator.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/FormToggle/Label.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/FormToggle/Label.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/FormToggle/Wrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/FormToggle/Wrapper.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/FormToggle/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/FormToggle/index.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/GlobalStyles/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/GlobalStyles/index.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/Icon/Svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/Icon/Svg.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/Icon/deprecated-encore-web/IconCheckAltActive/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/Icon/deprecated-encore-web/IconCheckAltActive/index.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/Icon/deprecated-encore-web/IconDownloadAltActive/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/Icon/deprecated-encore-web/IconDownloadAltActive/index.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/Icon/deprecated-encore-web/IconExclamationAlt/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/Icon/deprecated-encore-web/IconExclamationAlt/index.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/Icon/deprecated-encore-web/IconHeartAltActive/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/Icon/deprecated-encore-web/IconHeartAltActive/index.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/Icon/deprecated-encore-web/IconMicrophone/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/Icon/deprecated-encore-web/IconMicrophone/index.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/Icon/deprecated-encore-web/IconUserAltCircle/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/Icon/deprecated-encore-web/IconUserAltCircle/index.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/Icon/icons/IconAddToQueue/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/Icon/icons/IconAddToQueue/index.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/Icon/icons/IconAlbum/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/Icon/icons/IconAlbum/index.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/Icon/icons/IconArrowRight/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/Icon/icons/IconArrowRight/index.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/Icon/icons/IconArtist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/Icon/icons/IconArtist/index.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/Icon/icons/IconBlock/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/Icon/icons/IconBlock/index.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/Icon/icons/IconBluetooth/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/Icon/icons/IconBluetooth/index.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/Icon/icons/IconCheck/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/Icon/icons/IconCheck/index.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/Icon/icons/IconCheckAlt/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/Icon/icons/IconCheckAlt/index.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/Icon/icons/IconCheckAltFill/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/Icon/icons/IconCheckAltFill/index.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/Icon/icons/IconChevronRight/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/Icon/icons/IconChevronRight/index.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/Icon/icons/IconCollection/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/Icon/icons/IconCollection/index.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/Icon/icons/IconCollectionActive/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/Icon/icons/IconCollectionActive/index.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/Icon/icons/IconDeviceMobile/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/Icon/icons/IconDeviceMobile/index.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/Icon/icons/IconDownloaded/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/Icon/icons/IconDownloaded/index.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/Icon/icons/IconExclamationCircle/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/Icon/icons/IconExclamationCircle/index.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/Icon/icons/IconGears/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/Icon/icons/IconGears/index.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/Icon/icons/IconHeart/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/Icon/icons/IconHeart/index.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/Icon/icons/IconHeartActive/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/Icon/icons/IconHeartActive/index.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/Icon/icons/IconHome/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/Icon/icons/IconHome/index.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/Icon/icons/IconHomeActive/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/Icon/icons/IconHomeActive/index.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/Icon/icons/IconInformationAlt/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/Icon/icons/IconInformationAlt/index.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/Icon/icons/IconMic/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/Icon/icons/IconMic/index.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/Icon/icons/IconMicOff/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/Icon/icons/IconMicOff/index.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/Icon/icons/IconMore/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/Icon/icons/IconMore/index.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/Icon/icons/IconNowPlaying/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/Icon/icons/IconNowPlaying/index.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/Icon/icons/IconPause/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/Icon/icons/IconPause/index.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/Icon/icons/IconPlay/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/Icon/icons/IconPlay/index.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/Icon/icons/IconPlaybackSpeed0Point5x/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/Icon/icons/IconPlaybackSpeed0Point5x/index.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/Icon/icons/IconPlaybackSpeed0Point8x/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/Icon/icons/IconPlaybackSpeed0Point8x/index.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/Icon/icons/IconPlaybackSpeed1Point2x/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/Icon/icons/IconPlaybackSpeed1Point2x/index.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/Icon/icons/IconPlaybackSpeed1Point5x/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/Icon/icons/IconPlaybackSpeed1Point5x/index.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/Icon/icons/IconPlaybackSpeed1Point8x/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/Icon/icons/IconPlaybackSpeed1Point8x/index.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/Icon/icons/IconPlaybackSpeed1x/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/Icon/icons/IconPlaybackSpeed1x/index.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/Icon/icons/IconPlaybackSpeed2Point5x/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/Icon/icons/IconPlaybackSpeed2Point5x/index.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/Icon/icons/IconPlaybackSpeed2x/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/Icon/icons/IconPlaybackSpeed2x/index.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/Icon/icons/IconPlaybackSpeed3Point5x/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/Icon/icons/IconPlaybackSpeed3Point5x/index.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/Icon/icons/IconPlaybackSpeed3x/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/Icon/icons/IconPlaybackSpeed3x/index.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/Icon/icons/IconPlaylist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/Icon/icons/IconPlaylist/index.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/Icon/icons/IconPlusAlt/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/Icon/icons/IconPlusAlt/index.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/Icon/icons/IconPodcasts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/Icon/icons/IconPodcasts/index.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/Icon/icons/IconPublic/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/Icon/icons/IconPublic/index.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/Icon/icons/IconRadio/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/Icon/icons/IconRadio/index.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/Icon/icons/IconRepeat/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/Icon/icons/IconRepeat/index.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/Icon/icons/IconRepeatOnce/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/Icon/icons/IconRepeatOnce/index.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/Icon/icons/IconSearch/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/Icon/icons/IconSearch/index.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/Icon/icons/IconSearchActive/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/Icon/icons/IconSearchActive/index.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/Icon/icons/IconShuffle/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/Icon/icons/IconShuffle/index.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/Icon/icons/IconSkipBack/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/Icon/icons/IconSkipBack/index.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/Icon/icons/IconSkipBack15/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/Icon/icons/IconSkipBack15/index.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/Icon/icons/IconSkipForward/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/Icon/icons/IconSkipForward/index.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/Icon/icons/IconSkipForward15/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/Icon/icons/IconSkipForward15/index.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/Icon/icons/IconTrack/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/Icon/icons/IconTrack/index.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/Icon/icons/IconUserCircle/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/Icon/icons/IconUserCircle/index.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/Icon/icons/IconVolume/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/Icon/icons/IconVolume/index.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/Icon/icons/IconVolumeOff/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/Icon/icons/IconVolumeOff/index.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/Icon/icons/IconX/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/Icon/icons/IconX/index.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/Icon/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/Icon/index.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/LogoSpotify/Svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/LogoSpotify/Svg.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/LogoSpotify/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/LogoSpotify/index.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/components/VisuallyHidden/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/components/VisuallyHidden/index.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/contexts/BrowserDefaultFocusStyleContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/contexts/BrowserDefaultFocusStyleContext.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/contexts/EncoreContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/contexts/EncoreContext.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/contexts/KeyboardDetectionContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/contexts/KeyboardDetectionContext.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/styles/global-styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/styles/global-styles.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/styles/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/styles/index.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/styles/mixins/baseline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/styles/mixins/baseline.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/styles/mixins/buttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/styles/mixins/buttons.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/styles/mixins/focusBorders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/styles/mixins/focusBorders.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/styles/mixins/forms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/styles/mixins/forms.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/styles/mixins/localization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/styles/mixins/localization.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/styles/mixins/type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/styles/mixins/type.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/styles/mixins/visuallyHidden.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/styles/mixins/visuallyHidden.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/styles/semantic-theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/styles/semantic-theme.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/styles/variables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/styles/variables.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/es/typeHelpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/es/typeHelpers.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/encore-web/index.js -------------------------------------------------------------------------------- /@spotify-internal/encore-web/types/src/core/components/Icon/Svg.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /@spotify-internal/encore-web/types/src/core/components/Icon/Svg.ts: -------------------------------------------------------------------------------- 1 | export type IconSize = number; -------------------------------------------------------------------------------- /@spotify-internal/event-definitions/src/events/createUbiExpr2PageView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/event-definitions/src/events/createUbiExpr2PageView.js -------------------------------------------------------------------------------- /@spotify-internal/event-definitions/src/events/createUbiExpr2PageView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/event-definitions/src/events/createUbiExpr2PageView.ts -------------------------------------------------------------------------------- /@spotify-internal/event-definitions/src/events/createUbiExpr5ImpressionNonAuth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/event-definitions/src/events/createUbiExpr5ImpressionNonAuth.js -------------------------------------------------------------------------------- /@spotify-internal/event-definitions/src/events/createUbiExpr5ImpressionNonAuth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/event-definitions/src/events/createUbiExpr5ImpressionNonAuth.ts -------------------------------------------------------------------------------- /@spotify-internal/event-definitions/src/events/createUbiExpr6InteractionNonAuth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/event-definitions/src/events/createUbiExpr6InteractionNonAuth.js -------------------------------------------------------------------------------- /@spotify-internal/event-definitions/src/events/createUbiExpr6InteractionNonAuth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/event-definitions/src/events/createUbiExpr6InteractionNonAuth.ts -------------------------------------------------------------------------------- /@spotify-internal/event-definitions/src/events/createUbiProd1Impression.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/event-definitions/src/events/createUbiProd1Impression.js -------------------------------------------------------------------------------- /@spotify-internal/event-definitions/src/events/createUbiProd1Impression.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/event-definitions/src/events/createUbiProd1Impression.ts -------------------------------------------------------------------------------- /@spotify-internal/event-definitions/src/events/createUbiProd1Interaction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/event-definitions/src/events/createUbiProd1Interaction.js -------------------------------------------------------------------------------- /@spotify-internal/event-definitions/src/events/createUbiProd1Interaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/event-definitions/src/events/createUbiProd1Interaction.ts -------------------------------------------------------------------------------- /@spotify-internal/ubi-logger-js/src/constants.js: -------------------------------------------------------------------------------- 1 | export const EMPTY_STRING = ''; 2 | -------------------------------------------------------------------------------- /@spotify-internal/ubi-logger-js/src/constants.ts: -------------------------------------------------------------------------------- 1 | export const EMPTY_STRING = ''; 2 | -------------------------------------------------------------------------------- /@spotify-internal/ubi-logger-js/src/eventConverters/ImpressionEventConverter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/ubi-logger-js/src/eventConverters/ImpressionEventConverter.js -------------------------------------------------------------------------------- /@spotify-internal/ubi-logger-js/src/eventConverters/ImpressionEventConverter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/ubi-logger-js/src/eventConverters/ImpressionEventConverter.ts -------------------------------------------------------------------------------- /@spotify-internal/ubi-logger-js/src/eventConverters/InteractionEventConverter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/ubi-logger-js/src/eventConverters/InteractionEventConverter.js -------------------------------------------------------------------------------- /@spotify-internal/ubi-logger-js/src/eventConverters/InteractionEventConverter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/ubi-logger-js/src/eventConverters/InteractionEventConverter.ts -------------------------------------------------------------------------------- /@spotify-internal/ubi-logger-js/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/ubi-logger-js/src/index.js -------------------------------------------------------------------------------- /@spotify-internal/ubi-logger-js/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/ubi-logger-js/src/index.ts -------------------------------------------------------------------------------- /@spotify-internal/ubi-logger-js/src/loggers/PageViewLogger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/ubi-logger-js/src/loggers/PageViewLogger.js -------------------------------------------------------------------------------- /@spotify-internal/ubi-logger-js/src/loggers/PageViewLogger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/ubi-logger-js/src/loggers/PageViewLogger.ts -------------------------------------------------------------------------------- /@spotify-internal/ubi-logger-js/src/loggers/UBILogger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/ubi-logger-js/src/loggers/UBILogger.js -------------------------------------------------------------------------------- /@spotify-internal/ubi-logger-js/src/loggers/UBILogger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/ubi-logger-js/src/loggers/UBILogger.ts -------------------------------------------------------------------------------- /@spotify-internal/ubi-logger-js/src/providers/PageInstanceIdProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/ubi-logger-js/src/providers/PageInstanceIdProvider.js -------------------------------------------------------------------------------- /@spotify-internal/ubi-logger-js/src/providers/PageInstanceIdProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/ubi-logger-js/src/providers/PageInstanceIdProvider.ts -------------------------------------------------------------------------------- /@spotify-internal/ubi-logger-js/src/providers/PlayContextUriProvider.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /@spotify-internal/ubi-logger-js/src/providers/PlayContextUriProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/ubi-logger-js/src/providers/PlayContextUriProvider.ts -------------------------------------------------------------------------------- /@spotify-internal/ubi-logger-js/src/providers/PlaybackIdProvider.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /@spotify-internal/ubi-logger-js/src/providers/PlaybackIdProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/ubi-logger-js/src/providers/PlaybackIdProvider.ts -------------------------------------------------------------------------------- /@spotify-internal/ubi-logger-js/src/ubi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/ubi-logger-js/src/ubi.js -------------------------------------------------------------------------------- /@spotify-internal/ubi-logger-js/src/ubi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/ubi-logger-js/src/ubi.ts -------------------------------------------------------------------------------- /@spotify-internal/ubi-logger-js/src/utils/EventUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/ubi-logger-js/src/utils/EventUtils.js -------------------------------------------------------------------------------- /@spotify-internal/ubi-logger-js/src/utils/EventUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/ubi-logger-js/src/utils/EventUtils.ts -------------------------------------------------------------------------------- /@spotify-internal/ubi-sdk-music-car-content-shelf-carthingos/CarContentShelfCarthingosEventFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/ubi-sdk-music-car-content-shelf-carthingos/CarContentShelfCarthingosEventFactory.js -------------------------------------------------------------------------------- /@spotify-internal/ubi-sdk-music-car-content-shelf-carthingos/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/ubi-sdk-music-car-content-shelf-carthingos/index.js -------------------------------------------------------------------------------- /@spotify-internal/ubi-sdk-music-car-lets-drive-modal-carthingos/CarLetsDriveModalCarthingosEventFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/ubi-sdk-music-car-lets-drive-modal-carthingos/CarLetsDriveModalCarthingosEventFactory.js -------------------------------------------------------------------------------- /@spotify-internal/ubi-sdk-music-car-lets-drive-modal-carthingos/index.js: -------------------------------------------------------------------------------- 1 | export * from "./CarLetsDriveModalCarthingosEventFactory.js"; 2 | -------------------------------------------------------------------------------- /@spotify-internal/ubi-sdk-music-car-need-premium-modal-carthingos/CarNeedPremiumModalCarthingosEventFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/ubi-sdk-music-car-need-premium-modal-carthingos/CarNeedPremiumModalCarthingosEventFactory.js -------------------------------------------------------------------------------- /@spotify-internal/ubi-sdk-music-car-need-premium-modal-carthingos/index.js: -------------------------------------------------------------------------------- 1 | export * from "./CarNeedPremiumModalCarthingosEventFactory.js"; 2 | -------------------------------------------------------------------------------- /@spotify-internal/ubi-sdk-music-car-night-mode-carthingos/CarNightModeCarthingosEventFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/ubi-sdk-music-car-night-mode-carthingos/CarNightModeCarthingosEventFactory.js -------------------------------------------------------------------------------- /@spotify-internal/ubi-sdk-music-car-night-mode-carthingos/index.js: -------------------------------------------------------------------------------- 1 | export * from "./CarNightModeCarthingosEventFactory.js"; 2 | -------------------------------------------------------------------------------- /@spotify-internal/ubi-sdk-music-car-no-bluetooth-connection-carthingos/CarNoBluetoothConnectionCarthingosEventFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/ubi-sdk-music-car-no-bluetooth-connection-carthingos/CarNoBluetoothConnectionCarthingosEventFactory.js -------------------------------------------------------------------------------- /@spotify-internal/ubi-sdk-music-car-no-bluetooth-connection-carthingos/index.js: -------------------------------------------------------------------------------- 1 | export * from "./CarNoBluetoothConnectionCarthingosEventFactory.js"; 2 | -------------------------------------------------------------------------------- /@spotify-internal/ubi-sdk-music-car-non-critical-ota-modal-carthingos/CarNonCriticalOtaModalCarthingosEventFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/ubi-sdk-music-car-non-critical-ota-modal-carthingos/CarNonCriticalOtaModalCarthingosEventFactory.js -------------------------------------------------------------------------------- /@spotify-internal/ubi-sdk-music-car-non-critical-ota-modal-carthingos/index.js: -------------------------------------------------------------------------------- 1 | export * from "./CarNonCriticalOtaModalCarthingosEventFactory.js"; 2 | -------------------------------------------------------------------------------- /@spotify-internal/ubi-sdk-music-car-now-playing-view-carthingos/CarNowPlayingViewCarthingosEventFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/ubi-sdk-music-car-now-playing-view-carthingos/CarNowPlayingViewCarthingosEventFactory.js -------------------------------------------------------------------------------- /@spotify-internal/ubi-sdk-music-car-now-playing-view-carthingos/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/ubi-sdk-music-car-now-playing-view-carthingos/index.js -------------------------------------------------------------------------------- /@spotify-internal/ubi-sdk-music-car-now-playing-view-other-media-carthingos/CarNowPlayingViewOtherMediaCarthingosEventFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/ubi-sdk-music-car-now-playing-view-other-media-carthingos/CarNowPlayingViewOtherMediaCarthingosEventFactory.js -------------------------------------------------------------------------------- /@spotify-internal/ubi-sdk-music-car-now-playing-view-other-media-carthingos/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/ubi-sdk-music-car-now-playing-view-other-media-carthingos/index.js -------------------------------------------------------------------------------- /@spotify-internal/ubi-sdk-music-car-onboarding-learn-tactile-carthingos/CarOnboardingLearnTactileCarthingosEventFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/ubi-sdk-music-car-onboarding-learn-tactile-carthingos/CarOnboardingLearnTactileCarthingosEventFactory.js -------------------------------------------------------------------------------- /@spotify-internal/ubi-sdk-music-car-onboarding-learn-tactile-carthingos/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/ubi-sdk-music-car-onboarding-learn-tactile-carthingos/index.js -------------------------------------------------------------------------------- /@spotify-internal/ubi-sdk-music-car-onboarding-learn-voice-carthingos/CarOnboardingLearnVoiceCarthingosEventFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/ubi-sdk-music-car-onboarding-learn-voice-carthingos/CarOnboardingLearnVoiceCarthingosEventFactory.js -------------------------------------------------------------------------------- /@spotify-internal/ubi-sdk-music-car-onboarding-learn-voice-carthingos/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/ubi-sdk-music-car-onboarding-learn-voice-carthingos/index.js -------------------------------------------------------------------------------- /@spotify-internal/ubi-sdk-music-car-onboarding-start-carthingos/CarOnboardingStartCarthingosEventFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/ubi-sdk-music-car-onboarding-start-carthingos/CarOnboardingStartCarthingosEventFactory.js -------------------------------------------------------------------------------- /@spotify-internal/ubi-sdk-music-car-onboarding-start-carthingos/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/ubi-sdk-music-car-onboarding-start-carthingos/index.js -------------------------------------------------------------------------------- /@spotify-internal/ubi-sdk-music-car-phone-call-carthingos/CarPhoneCallCarthingosEventFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/ubi-sdk-music-car-phone-call-carthingos/CarPhoneCallCarthingosEventFactory.js -------------------------------------------------------------------------------- /@spotify-internal/ubi-sdk-music-car-phone-call-carthingos/index.js: -------------------------------------------------------------------------------- 1 | export * from "./CarPhoneCallCarthingosEventFactory.js"; 2 | -------------------------------------------------------------------------------- /@spotify-internal/ubi-sdk-music-car-pin-pairing-carthingos/CarPinPairingCarthingosEventFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/ubi-sdk-music-car-pin-pairing-carthingos/CarPinPairingCarthingosEventFactory.js -------------------------------------------------------------------------------- /@spotify-internal/ubi-sdk-music-car-pin-pairing-carthingos/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/ubi-sdk-music-car-pin-pairing-carthingos/index.js -------------------------------------------------------------------------------- /@spotify-internal/ubi-sdk-music-car-podcast-speed-view-carthingos/CarPodcastSpeedViewCarthingosEventFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/ubi-sdk-music-car-podcast-speed-view-carthingos/CarPodcastSpeedViewCarthingosEventFactory.js -------------------------------------------------------------------------------- /@spotify-internal/ubi-sdk-music-car-podcast-speed-view-carthingos/index.js: -------------------------------------------------------------------------------- 1 | export * from "./CarPodcastSpeedViewCarthingosEventFactory.js"; 2 | -------------------------------------------------------------------------------- /@spotify-internal/ubi-sdk-music-car-presets-carthingos/CarPresetsCarthingosEventFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/ubi-sdk-music-car-presets-carthingos/CarPresetsCarthingosEventFactory.js -------------------------------------------------------------------------------- /@spotify-internal/ubi-sdk-music-car-presets-carthingos/index.js: -------------------------------------------------------------------------------- 1 | export * from "./CarPresetsCarthingosEventFactory.js"; 2 | -------------------------------------------------------------------------------- /@spotify-internal/ubi-sdk-music-car-queue-carthingos/CarQueueCarthingosEventFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/ubi-sdk-music-car-queue-carthingos/CarQueueCarthingosEventFactory.js -------------------------------------------------------------------------------- /@spotify-internal/ubi-sdk-music-car-queue-carthingos/index.js: -------------------------------------------------------------------------------- 1 | export * from "./CarQueueCarthingosEventFactory.js"; 2 | -------------------------------------------------------------------------------- /@spotify-internal/ubi-sdk-music-car-settings-carthingos/CarSettingsCarthingosEventFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/ubi-sdk-music-car-settings-carthingos/CarSettingsCarthingosEventFactory.js -------------------------------------------------------------------------------- /@spotify-internal/ubi-sdk-music-car-settings-carthingos/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/ubi-sdk-music-car-settings-carthingos/index.js -------------------------------------------------------------------------------- /@spotify-internal/ubi-sdk-music-car-settings-power-modal-carthingos/CarSettingsPowerModalCarthingosEventFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/ubi-sdk-music-car-settings-power-modal-carthingos/CarSettingsPowerModalCarthingosEventFactory.js -------------------------------------------------------------------------------- /@spotify-internal/ubi-sdk-music-car-settings-power-modal-carthingos/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/ubi-sdk-music-car-settings-power-modal-carthingos/index.js -------------------------------------------------------------------------------- /@spotify-internal/ubi-sdk-music-car-setup-critical-ota-carthingos/CarSetupCriticalOtaCarthingosEventFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/ubi-sdk-music-car-setup-critical-ota-carthingos/CarSetupCriticalOtaCarthingosEventFactory.js -------------------------------------------------------------------------------- /@spotify-internal/ubi-sdk-music-car-setup-critical-ota-carthingos/index.js: -------------------------------------------------------------------------------- 1 | export * from "./CarSetupCriticalOtaCarthingosEventFactory.js"; 2 | -------------------------------------------------------------------------------- /@spotify-internal/ubi-sdk-music-car-track-view-carthingos/CarTrackViewCarthingosEventFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/ubi-sdk-music-car-track-view-carthingos/CarTrackViewCarthingosEventFactory.js -------------------------------------------------------------------------------- /@spotify-internal/ubi-sdk-music-car-track-view-carthingos/index.js: -------------------------------------------------------------------------------- 1 | export * from "./CarTrackViewCarthingosEventFactory.js"; 2 | -------------------------------------------------------------------------------- /@spotify-internal/ubi-sdk-music-car-voice-view-carthingos/CarVoiceViewCarthingosEventFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/ubi-sdk-music-car-voice-view-carthingos/CarVoiceViewCarthingosEventFactory.js -------------------------------------------------------------------------------- /@spotify-internal/ubi-sdk-music-car-voice-view-carthingos/index.js: -------------------------------------------------------------------------------- 1 | export * from "./CarVoiceViewCarthingosEventFactory.js"; 2 | -------------------------------------------------------------------------------- /@spotify-internal/ubi-types-js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/ubi-types-js/index.js -------------------------------------------------------------------------------- /@spotify-internal/ubi-types-js/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/ubi-types-js/index.ts -------------------------------------------------------------------------------- /@spotify-internal/ubi-types-js/src/pageIdentifiers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/ubi-types-js/src/pageIdentifiers.js -------------------------------------------------------------------------------- /@spotify-internal/ubi-types-js/src/pageIdentifiers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/ubi-types-js/src/pageIdentifiers.ts -------------------------------------------------------------------------------- /@spotify-internal/ubi-types-js/src/ubiTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/ubi-types-js/src/ubiTypes.js -------------------------------------------------------------------------------- /@spotify-internal/ubi-types-js/src/ubiTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/ubi-types-js/src/ubiTypes.ts -------------------------------------------------------------------------------- /@spotify-internal/uri/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/uri/index.js -------------------------------------------------------------------------------- /@spotify-internal/uri/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/uri/index.ts -------------------------------------------------------------------------------- /@spotify-internal/uri/src/_internal/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/uri/src/_internal/helpers.js -------------------------------------------------------------------------------- /@spotify-internal/uri/src/_internal/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/uri/src/_internal/helpers.ts -------------------------------------------------------------------------------- /@spotify-internal/uri/src/_internal/parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/uri/src/_internal/parser.js -------------------------------------------------------------------------------- /@spotify-internal/uri/src/_internal/parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/uri/src/_internal/parser.ts -------------------------------------------------------------------------------- /@spotify-internal/uri/src/_internal/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/uri/src/_internal/utils.js -------------------------------------------------------------------------------- /@spotify-internal/uri/src/_internal/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/uri/src/_internal/utils.ts -------------------------------------------------------------------------------- /@spotify-internal/uri/src/base62.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/uri/src/base62.js -------------------------------------------------------------------------------- /@spotify-internal/uri/src/base62.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/uri/src/base62.ts -------------------------------------------------------------------------------- /@spotify-internal/uri/src/enums/prefix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/uri/src/enums/prefix.js -------------------------------------------------------------------------------- /@spotify-internal/uri/src/enums/prefix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/uri/src/enums/prefix.ts -------------------------------------------------------------------------------- /@spotify-internal/uri/src/enums/uri_format.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/uri/src/enums/uri_format.js -------------------------------------------------------------------------------- /@spotify-internal/uri/src/enums/uri_format.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/uri/src/enums/uri_format.ts -------------------------------------------------------------------------------- /@spotify-internal/uri/src/enums/uri_particle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/uri/src/enums/uri_particle.js -------------------------------------------------------------------------------- /@spotify-internal/uri/src/enums/uri_particle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/uri/src/enums/uri_particle.ts -------------------------------------------------------------------------------- /@spotify-internal/uri/src/enums/uri_type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/uri/src/enums/uri_type.js -------------------------------------------------------------------------------- /@spotify-internal/uri/src/enums/uri_type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/uri/src/enums/uri_type.ts -------------------------------------------------------------------------------- /@spotify-internal/uri/src/factories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/uri/src/factories.js -------------------------------------------------------------------------------- /@spotify-internal/uri/src/factories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/uri/src/factories.ts -------------------------------------------------------------------------------- /@spotify-internal/uri/src/type_guards.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/uri/src/type_guards.js -------------------------------------------------------------------------------- /@spotify-internal/uri/src/type_guards.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/uri/src/type_guards.ts -------------------------------------------------------------------------------- /@spotify-internal/uri/src/uri.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/uri/src/uri.js -------------------------------------------------------------------------------- /@spotify-internal/uri/src/uri.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/uri/src/uri.ts -------------------------------------------------------------------------------- /@spotify-internal/uri/src/uri_typedefs.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /@spotify-internal/uri/src/uri_typedefs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/@spotify-internal/uri/src/uri_typedefs.ts -------------------------------------------------------------------------------- /App.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/App.scss -------------------------------------------------------------------------------- /App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/App.tsx -------------------------------------------------------------------------------- /Fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/Fonts.css -------------------------------------------------------------------------------- /Main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/Main.tsx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/README.md -------------------------------------------------------------------------------- /Socket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/Socket.ts -------------------------------------------------------------------------------- /backtrace_uuid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/backtrace_uuid.js -------------------------------------------------------------------------------- /bypass_premium.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/bypass_premium.sh -------------------------------------------------------------------------------- /component/AmbientBackdrop/AmbientBackdrop.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/AmbientBackdrop/AmbientBackdrop.module.scss -------------------------------------------------------------------------------- /component/AmbientBackdrop/AmbientBackdrop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/AmbientBackdrop/AmbientBackdrop.tsx -------------------------------------------------------------------------------- /component/AutoSizingText/AutoSizingText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/AutoSizingText/AutoSizingText.tsx -------------------------------------------------------------------------------- /component/CarthingUIComponents/AppendEllipsis/AppendEllipsis.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/AppendEllipsis/AppendEllipsis.module.scss -------------------------------------------------------------------------------- /component/CarthingUIComponents/AppendEllipsis/AppendEllipsis.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/AppendEllipsis/AppendEllipsis.tsx -------------------------------------------------------------------------------- /component/CarthingUIComponents/Banner/Banner.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/Banner/Banner.module.scss -------------------------------------------------------------------------------- /component/CarthingUIComponents/Banner/Banner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/Banner/Banner.tsx -------------------------------------------------------------------------------- /component/CarthingUIComponents/Banner/BannerButton.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/Banner/BannerButton.module.scss -------------------------------------------------------------------------------- /component/CarthingUIComponents/Banner/BannerButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/Banner/BannerButton.tsx -------------------------------------------------------------------------------- /component/CarthingUIComponents/Button/Button.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/Button/Button.module.scss -------------------------------------------------------------------------------- /component/CarthingUIComponents/Button/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/Button/Button.tsx -------------------------------------------------------------------------------- /component/CarthingUIComponents/ButtonGroup/ButtonGroup.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/ButtonGroup/ButtonGroup.module.scss -------------------------------------------------------------------------------- /component/CarthingUIComponents/ButtonGroup/ButtonGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/ButtonGroup/ButtonGroup.tsx -------------------------------------------------------------------------------- /component/CarthingUIComponents/Equaliser/Equaliser.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/Equaliser/Equaliser.module.scss -------------------------------------------------------------------------------- /component/CarthingUIComponents/Equaliser/Equaliser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/Equaliser/Equaliser.tsx -------------------------------------------------------------------------------- /component/CarthingUIComponents/Icons/IconAddAlt48.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/Icons/IconAddAlt48.tsx -------------------------------------------------------------------------------- /component/CarthingUIComponents/Icons/IconBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/Icons/IconBlock.tsx -------------------------------------------------------------------------------- /component/CarthingUIComponents/Icons/IconCheck32.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/Icons/IconCheck32.tsx -------------------------------------------------------------------------------- /component/CarthingUIComponents/Icons/IconCheckAlt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/Icons/IconCheckAlt.tsx -------------------------------------------------------------------------------- /component/CarthingUIComponents/Icons/IconChevronRight48.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/Icons/IconChevronRight48.tsx -------------------------------------------------------------------------------- /component/CarthingUIComponents/Icons/IconGears64.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/Icons/IconGears64.tsx -------------------------------------------------------------------------------- /component/CarthingUIComponents/Icons/IconHeart48.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/Icons/IconHeart48.tsx -------------------------------------------------------------------------------- /component/CarthingUIComponents/Icons/IconHeartActive48.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/Icons/IconHeartActive48.tsx -------------------------------------------------------------------------------- /component/CarthingUIComponents/Icons/IconHome32.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/Icons/IconHome32.tsx -------------------------------------------------------------------------------- /component/CarthingUIComponents/Icons/IconHomeActive32.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/Icons/IconHomeActive32.tsx -------------------------------------------------------------------------------- /component/CarthingUIComponents/Icons/IconInfo32.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/Icons/IconInfo32.tsx -------------------------------------------------------------------------------- /component/CarthingUIComponents/Icons/IconInfo64.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/Icons/IconInfo64.tsx -------------------------------------------------------------------------------- /component/CarthingUIComponents/Icons/IconLibrary32.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/Icons/IconLibrary32.tsx -------------------------------------------------------------------------------- /component/CarthingUIComponents/Icons/IconLibraryActive.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/Icons/IconLibraryActive.tsx -------------------------------------------------------------------------------- /component/CarthingUIComponents/Icons/IconMicOff.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/Icons/IconMicOff.tsx -------------------------------------------------------------------------------- /component/CarthingUIComponents/Icons/IconMicOff32.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/Icons/IconMicOff32.tsx -------------------------------------------------------------------------------- /component/CarthingUIComponents/Icons/IconMicOff64.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/Icons/IconMicOff64.tsx -------------------------------------------------------------------------------- /component/CarthingUIComponents/Icons/IconMicOn64.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/Icons/IconMicOn64.tsx -------------------------------------------------------------------------------- /component/CarthingUIComponents/Icons/IconMobile64.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/Icons/IconMobile64.tsx -------------------------------------------------------------------------------- /component/CarthingUIComponents/Icons/IconMute32.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/Icons/IconMute32.tsx -------------------------------------------------------------------------------- /component/CarthingUIComponents/Icons/IconOption64.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/Icons/IconOption64.tsx -------------------------------------------------------------------------------- /component/CarthingUIComponents/Icons/IconOtherVoice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/Icons/IconOtherVoice.tsx -------------------------------------------------------------------------------- /component/CarthingUIComponents/Icons/IconPause48.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/Icons/IconPause48.tsx -------------------------------------------------------------------------------- /component/CarthingUIComponents/Icons/IconPhoneAnswer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/Icons/IconPhoneAnswer.tsx -------------------------------------------------------------------------------- /component/CarthingUIComponents/Icons/IconPhoneDecline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/Icons/IconPhoneDecline.tsx -------------------------------------------------------------------------------- /component/CarthingUIComponents/Icons/IconPlay48.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/Icons/IconPlay48.tsx -------------------------------------------------------------------------------- /component/CarthingUIComponents/Icons/IconPlaybackSpeed0Point5X48.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/Icons/IconPlaybackSpeed0Point5X48.tsx -------------------------------------------------------------------------------- /component/CarthingUIComponents/Icons/IconPlaybackSpeed0Point8X48.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/Icons/IconPlaybackSpeed0Point8X48.tsx -------------------------------------------------------------------------------- /component/CarthingUIComponents/Icons/IconPlaybackSpeed1Point2X48.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/Icons/IconPlaybackSpeed1Point2X48.tsx -------------------------------------------------------------------------------- /component/CarthingUIComponents/Icons/IconPlaybackSpeed1Point5X48.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/Icons/IconPlaybackSpeed1Point5X48.tsx -------------------------------------------------------------------------------- /component/CarthingUIComponents/Icons/IconPlaybackSpeed1Point8X48.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/Icons/IconPlaybackSpeed1Point8X48.tsx -------------------------------------------------------------------------------- /component/CarthingUIComponents/Icons/IconPlaybackSpeed1X48.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/Icons/IconPlaybackSpeed1X48.tsx -------------------------------------------------------------------------------- /component/CarthingUIComponents/Icons/IconPlaybackSpeed1point2x.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/Icons/IconPlaybackSpeed1point2x.tsx -------------------------------------------------------------------------------- /component/CarthingUIComponents/Icons/IconPlaybackSpeed1point5x.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/Icons/IconPlaybackSpeed1point5x.tsx -------------------------------------------------------------------------------- /component/CarthingUIComponents/Icons/IconPlaybackSpeed1x.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/Icons/IconPlaybackSpeed1x.tsx -------------------------------------------------------------------------------- /component/CarthingUIComponents/Icons/IconPlaybackSpeed2Point5X48.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/Icons/IconPlaybackSpeed2Point5X48.tsx -------------------------------------------------------------------------------- /component/CarthingUIComponents/Icons/IconPlaybackSpeed2X48.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/Icons/IconPlaybackSpeed2X48.tsx -------------------------------------------------------------------------------- /component/CarthingUIComponents/Icons/IconPlaybackSpeed3Point5X48.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/Icons/IconPlaybackSpeed3Point5X48.tsx -------------------------------------------------------------------------------- /component/CarthingUIComponents/Icons/IconPlaybackSpeed3X48.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/Icons/IconPlaybackSpeed3X48.tsx -------------------------------------------------------------------------------- /component/CarthingUIComponents/Icons/IconPower64.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/Icons/IconPower64.tsx -------------------------------------------------------------------------------- /component/CarthingUIComponents/Icons/IconPublic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/Icons/IconPublic.tsx -------------------------------------------------------------------------------- /component/CarthingUIComponents/Icons/IconRepeat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/Icons/IconRepeat.tsx -------------------------------------------------------------------------------- /component/CarthingUIComponents/Icons/IconRepeat32.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/Icons/IconRepeat32.tsx -------------------------------------------------------------------------------- /component/CarthingUIComponents/Icons/IconRepeatOne.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/Icons/IconRepeatOne.tsx -------------------------------------------------------------------------------- /component/CarthingUIComponents/Icons/IconRepeatOne32.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/Icons/IconRepeatOne32.tsx -------------------------------------------------------------------------------- /component/CarthingUIComponents/Icons/IconSearch32.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/Icons/IconSearch32.tsx -------------------------------------------------------------------------------- /component/CarthingUIComponents/Icons/IconSearchActive.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/Icons/IconSearchActive.tsx -------------------------------------------------------------------------------- /component/CarthingUIComponents/Icons/IconSeek15Back48.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/Icons/IconSeek15Back48.tsx -------------------------------------------------------------------------------- /component/CarthingUIComponents/Icons/IconSeek15Foward48.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/Icons/IconSeek15Foward48.tsx -------------------------------------------------------------------------------- /component/CarthingUIComponents/Icons/IconShuffle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/Icons/IconShuffle.tsx -------------------------------------------------------------------------------- /component/CarthingUIComponents/Icons/IconShuffle48.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/Icons/IconShuffle48.tsx -------------------------------------------------------------------------------- /component/CarthingUIComponents/Icons/IconShuffleActive.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/Icons/IconShuffleActive.tsx -------------------------------------------------------------------------------- /component/CarthingUIComponents/Icons/IconShuffleActive48.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/Icons/IconShuffleActive48.tsx -------------------------------------------------------------------------------- /component/CarthingUIComponents/Icons/IconSkipBack48.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/Icons/IconSkipBack48.tsx -------------------------------------------------------------------------------- /component/CarthingUIComponents/Icons/IconSkipForward48.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/Icons/IconSkipForward48.tsx -------------------------------------------------------------------------------- /component/CarthingUIComponents/Icons/IconTips64.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/Icons/IconTips64.tsx -------------------------------------------------------------------------------- /component/CarthingUIComponents/Icons/IconVolume48.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/Icons/IconVolume48.tsx -------------------------------------------------------------------------------- /component/CarthingUIComponents/Icons/IconVolumeOff48.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/Icons/IconVolumeOff48.tsx -------------------------------------------------------------------------------- /component/CarthingUIComponents/Icons/IconWind32.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/Icons/IconWind32.tsx -------------------------------------------------------------------------------- /component/CarthingUIComponents/Jellyfish/Jellyfish.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/Jellyfish/Jellyfish.tsx -------------------------------------------------------------------------------- /component/CarthingUIComponents/NowPlaying/NowPlaying.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/NowPlaying/NowPlaying.module.scss -------------------------------------------------------------------------------- /component/CarthingUIComponents/NowPlaying/NowPlaying.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/NowPlaying/NowPlaying.tsx -------------------------------------------------------------------------------- /component/CarthingUIComponents/Spinner/Spinner.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/Spinner/Spinner.module.scss -------------------------------------------------------------------------------- /component/CarthingUIComponents/Spinner/Spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/Spinner/Spinner.tsx -------------------------------------------------------------------------------- /component/CarthingUIComponents/SpotifyLogo/SpotifyLogo.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/SpotifyLogo/SpotifyLogo.scss -------------------------------------------------------------------------------- /component/CarthingUIComponents/SpotifyLogo/SpotifyLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/SpotifyLogo/SpotifyLogo.tsx -------------------------------------------------------------------------------- /component/CarthingUIComponents/SpotifySplash/SpotifySplash.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/SpotifySplash/SpotifySplash.module.scss -------------------------------------------------------------------------------- /component/CarthingUIComponents/SpotifySplash/SpotifySplash.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/SpotifySplash/SpotifySplash.tsx -------------------------------------------------------------------------------- /component/CarthingUIComponents/Trailer/Trailer.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/Trailer/Trailer.module.scss -------------------------------------------------------------------------------- /component/CarthingUIComponents/Trailer/Trailer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/Trailer/Trailer.tsx -------------------------------------------------------------------------------- /component/CarthingUIComponents/Type/Type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/Type/Type.scss -------------------------------------------------------------------------------- /component/CarthingUIComponents/Type/Type.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/Type/Type.tsx -------------------------------------------------------------------------------- /component/CarthingUIComponents/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CarthingUIComponents/index.ts -------------------------------------------------------------------------------- /component/CountUpTimer/CountUpTimer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/CountUpTimer/CountUpTimer.tsx -------------------------------------------------------------------------------- /component/DelayedRender/DelayedRender.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/DelayedRender/DelayedRender.tsx -------------------------------------------------------------------------------- /component/DevOptions/DevOptions.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/DevOptions/DevOptions.module.scss -------------------------------------------------------------------------------- /component/DevOptions/DevOptions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/DevOptions/DevOptions.tsx -------------------------------------------------------------------------------- /component/LazyImage/LazyImage.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/LazyImage/LazyImage.module.scss -------------------------------------------------------------------------------- /component/LazyImage/LazyImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/LazyImage/LazyImage.tsx -------------------------------------------------------------------------------- /component/LazyImage/Placeholder/Placeholder.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/LazyImage/Placeholder/Placeholder.module.scss -------------------------------------------------------------------------------- /component/LazyImage/Placeholder/Placeholder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/LazyImage/Placeholder/Placeholder.tsx -------------------------------------------------------------------------------- /component/Listening/Listening.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Listening/Listening.module.scss -------------------------------------------------------------------------------- /component/Listening/Listening.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Listening/Listening.tsx -------------------------------------------------------------------------------- /component/Main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Main.tsx -------------------------------------------------------------------------------- /component/Modals/BluetoothPairing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Modals/BluetoothPairing.tsx -------------------------------------------------------------------------------- /component/Modals/LegacyModal.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Modals/LegacyModal.module.scss -------------------------------------------------------------------------------- /component/Modals/LegacyModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Modals/LegacyModal.tsx -------------------------------------------------------------------------------- /component/Modals/LetsDrive.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Modals/LetsDrive.tsx -------------------------------------------------------------------------------- /component/Modals/LoginRequired.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Modals/LoginRequired.tsx -------------------------------------------------------------------------------- /component/Modals/Modal.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Modals/Modal.module.scss -------------------------------------------------------------------------------- /component/Modals/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Modals/Modal.tsx -------------------------------------------------------------------------------- /component/Modals/ModalContent.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Modals/ModalContent.module.scss -------------------------------------------------------------------------------- /component/Modals/NoConnection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Modals/NoConnection.tsx -------------------------------------------------------------------------------- /component/Modals/NoNetwork.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Modals/NoNetwork.module.scss -------------------------------------------------------------------------------- /component/Modals/NoNetwork.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Modals/NoNetwork.tsx -------------------------------------------------------------------------------- /component/Modals/NonSupportedType.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Modals/NonSupportedType.module.scss -------------------------------------------------------------------------------- /component/Modals/NonSupportedType.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Modals/NonSupportedType.tsx -------------------------------------------------------------------------------- /component/Modals/PremiumAccountRequired.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Modals/PremiumAccountRequired.tsx -------------------------------------------------------------------------------- /component/Modals/Standby.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Modals/Standby.tsx -------------------------------------------------------------------------------- /component/NightMode/NightModeController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/NightMode/NightModeController.ts -------------------------------------------------------------------------------- /component/NightMode/NightModeUbiLogger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/NightMode/NightModeUbiLogger.ts -------------------------------------------------------------------------------- /component/NightMode/NightModeUiState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/NightMode/NightModeUiState.ts -------------------------------------------------------------------------------- /component/Npv/ControlButtons/Block.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Npv/ControlButtons/Block.tsx -------------------------------------------------------------------------------- /component/Npv/ControlButtons/ControlButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Npv/ControlButtons/ControlButton.tsx -------------------------------------------------------------------------------- /component/Npv/ControlButtons/ControlButtonsUiState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Npv/ControlButtons/ControlButtonsUiState.ts -------------------------------------------------------------------------------- /component/Npv/ControlButtons/Controls.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Npv/ControlButtons/Controls.module.scss -------------------------------------------------------------------------------- /component/Npv/ControlButtons/Controls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Npv/ControlButtons/Controls.tsx -------------------------------------------------------------------------------- /component/Npv/ControlButtons/LikeTrack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Npv/ControlButtons/LikeTrack.tsx -------------------------------------------------------------------------------- /component/Npv/ControlButtons/PlayPause.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Npv/ControlButtons/PlayPause.tsx -------------------------------------------------------------------------------- /component/Npv/ControlButtons/PodcastSpeed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Npv/ControlButtons/PodcastSpeed.tsx -------------------------------------------------------------------------------- /component/Npv/ControlButtons/PreviousOrNext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Npv/ControlButtons/PreviousOrNext.tsx -------------------------------------------------------------------------------- /component/Npv/ControlButtons/SaveEpisode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Npv/ControlButtons/SaveEpisode.tsx -------------------------------------------------------------------------------- /component/Npv/ControlButtons/Seek.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Npv/ControlButtons/Seek.tsx -------------------------------------------------------------------------------- /component/Npv/ControlButtons/Shuffle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Npv/ControlButtons/Shuffle.tsx -------------------------------------------------------------------------------- /component/Npv/ControlButtons/Spacer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Npv/ControlButtons/Spacer.tsx -------------------------------------------------------------------------------- /component/Npv/NoNetworkBanner/NoNetworkBanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Npv/NoNetworkBanner/NoNetworkBanner.tsx -------------------------------------------------------------------------------- /component/Npv/Npv.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Npv/Npv.module.scss -------------------------------------------------------------------------------- /component/Npv/Npv.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Npv/Npv.tsx -------------------------------------------------------------------------------- /component/Npv/NpvController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Npv/NpvController.ts -------------------------------------------------------------------------------- /component/Npv/OtherMedia/BackToSpotify/BackToSpotify.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Npv/OtherMedia/BackToSpotify/BackToSpotify.module.scss -------------------------------------------------------------------------------- /component/Npv/OtherMedia/BackToSpotify/BackToSpotify.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Npv/OtherMedia/BackToSpotify/BackToSpotify.tsx -------------------------------------------------------------------------------- /component/Npv/OtherMedia/OtherMedia.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Npv/OtherMedia/OtherMedia.module.scss -------------------------------------------------------------------------------- /component/Npv/OtherMedia/OtherMedia.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Npv/OtherMedia/OtherMedia.tsx -------------------------------------------------------------------------------- /component/Npv/OtherMedia/OtherMediaController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Npv/OtherMedia/OtherMediaController.ts -------------------------------------------------------------------------------- /component/Npv/OtherMedia/OtherMediaUbiLogger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Npv/OtherMedia/OtherMediaUbiLogger.ts -------------------------------------------------------------------------------- /component/Npv/OtherMedia/OtherMediaUiState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Npv/OtherMedia/OtherMediaUiState.ts -------------------------------------------------------------------------------- /component/Npv/OtherMedia/Widget/Widget.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Npv/OtherMedia/Widget/Widget.module.scss -------------------------------------------------------------------------------- /component/Npv/OtherMedia/Widget/Widget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Npv/OtherMedia/Widget/Widget.tsx -------------------------------------------------------------------------------- /component/Npv/PlayingInfo/Artwork.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Npv/PlayingInfo/Artwork.module.scss -------------------------------------------------------------------------------- /component/Npv/PlayingInfo/Artwork.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Npv/PlayingInfo/Artwork.tsx -------------------------------------------------------------------------------- /component/Npv/PlayingInfo/PlayingInfo.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Npv/PlayingInfo/PlayingInfo.module.scss -------------------------------------------------------------------------------- /component/Npv/PlayingInfo/PlayingInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Npv/PlayingInfo/PlayingInfo.tsx -------------------------------------------------------------------------------- /component/Npv/PlayingInfo/PlayingInfoHeader.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Npv/PlayingInfo/PlayingInfoHeader.module.scss -------------------------------------------------------------------------------- /component/Npv/PlayingInfo/PlayingInfoHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Npv/PlayingInfo/PlayingInfoHeader.tsx -------------------------------------------------------------------------------- /component/Npv/PlayingInfo/PlayingInfoTitles/PlayingInfoTitles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Npv/PlayingInfo/PlayingInfoTitles/PlayingInfoTitles.module.scss -------------------------------------------------------------------------------- /component/Npv/PlayingInfo/PlayingInfoTitles/PlayingInfoTitles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Npv/PlayingInfo/PlayingInfoTitles/PlayingInfoTitles.tsx -------------------------------------------------------------------------------- /component/Npv/PlayingInfo/PlayingInfoUiState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Npv/PlayingInfo/PlayingInfoUiState.ts -------------------------------------------------------------------------------- /component/Npv/PlayingInfo/StatusIcons.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Npv/PlayingInfo/StatusIcons.module.scss -------------------------------------------------------------------------------- /component/Npv/PlayingInfo/StatusIcons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Npv/PlayingInfo/StatusIcons.tsx -------------------------------------------------------------------------------- /component/Npv/PlayingInfoOrTip/PlayingInfoOrTip.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Npv/PlayingInfoOrTip/PlayingInfoOrTip.module.scss -------------------------------------------------------------------------------- /component/Npv/PlayingInfoOrTip/PlayingInfoOrTip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Npv/PlayingInfoOrTip/PlayingInfoOrTip.tsx -------------------------------------------------------------------------------- /component/Npv/PodcastSpeedOptions/PodcastSpeedItem.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Npv/PodcastSpeedOptions/PodcastSpeedItem.module.scss -------------------------------------------------------------------------------- /component/Npv/PodcastSpeedOptions/PodcastSpeedItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Npv/PodcastSpeedOptions/PodcastSpeedItem.tsx -------------------------------------------------------------------------------- /component/Npv/PodcastSpeedOptions/PodcastSpeedOptions.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Npv/PodcastSpeedOptions/PodcastSpeedOptions.module.scss -------------------------------------------------------------------------------- /component/Npv/PodcastSpeedOptions/PodcastSpeedOptions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Npv/PodcastSpeedOptions/PodcastSpeedOptions.tsx -------------------------------------------------------------------------------- /component/Npv/PodcastSpeedOptions/PodcastSpeedUiState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Npv/PodcastSpeedOptions/PodcastSpeedUiState.ts -------------------------------------------------------------------------------- /component/Npv/Scrubbing/Scrubbing.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Npv/Scrubbing/Scrubbing.module.scss -------------------------------------------------------------------------------- /component/Npv/Scrubbing/Scrubbing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Npv/Scrubbing/Scrubbing.tsx -------------------------------------------------------------------------------- /component/Npv/Scrubbing/ScrubbingBackdrop.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Npv/Scrubbing/ScrubbingBackdrop.module.scss -------------------------------------------------------------------------------- /component/Npv/Scrubbing/ScrubbingBackdrop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Npv/Scrubbing/ScrubbingBackdrop.tsx -------------------------------------------------------------------------------- /component/Npv/Scrubbing/ScrubbingBar.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Npv/Scrubbing/ScrubbingBar.module.scss -------------------------------------------------------------------------------- /component/Npv/Scrubbing/ScrubbingBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Npv/Scrubbing/ScrubbingBar.tsx -------------------------------------------------------------------------------- /component/Npv/Scrubbing/ScrubbingUiState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Npv/Scrubbing/ScrubbingUiState.ts -------------------------------------------------------------------------------- /component/Npv/SwipeHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Npv/SwipeHandler.ts -------------------------------------------------------------------------------- /component/Npv/Tips/Tips.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Npv/Tips/Tips.module.scss -------------------------------------------------------------------------------- /component/Npv/Tips/Tips.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Npv/Tips/Tips.tsx -------------------------------------------------------------------------------- /component/Npv/Tips/TipsUiState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Npv/Tips/TipsUiState.ts -------------------------------------------------------------------------------- /component/Npv/Volume/Volume.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Npv/Volume/Volume.module.scss -------------------------------------------------------------------------------- /component/Npv/Volume/Volume.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Npv/Volume/Volume.tsx -------------------------------------------------------------------------------- /component/Npv/Volume/VolumeBar.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Npv/Volume/VolumeBar.module.scss -------------------------------------------------------------------------------- /component/Npv/Volume/VolumeBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Npv/Volume/VolumeBar.tsx -------------------------------------------------------------------------------- /component/Npv/Volume/VolumeUiState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Npv/Volume/VolumeUiState.ts -------------------------------------------------------------------------------- /component/Npv/WindAlertBanner/AirVentInterferenceController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Npv/WindAlertBanner/AirVentInterferenceController.ts -------------------------------------------------------------------------------- /component/Npv/WindAlertBanner/WindAlertBanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Npv/WindAlertBanner/WindAlertBanner.tsx -------------------------------------------------------------------------------- /component/Npv/WindAlertBanner/WindAlertBannerUiState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Npv/WindAlertBanner/WindAlertBannerUiState.ts -------------------------------------------------------------------------------- /component/Onboarding/BackPressBanner.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Onboarding/BackPressBanner.module.scss -------------------------------------------------------------------------------- /component/Onboarding/BackPressBanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Onboarding/BackPressBanner.tsx -------------------------------------------------------------------------------- /component/Onboarding/DialPressPulse.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Onboarding/DialPressPulse.module.scss -------------------------------------------------------------------------------- /component/Onboarding/DialPressPulse.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Onboarding/DialPressPulse.tsx -------------------------------------------------------------------------------- /component/Onboarding/DialTurnDots.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Onboarding/DialTurnDots.module.scss -------------------------------------------------------------------------------- /component/Onboarding/DialTurnDots.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Onboarding/DialTurnDots.tsx -------------------------------------------------------------------------------- /component/Onboarding/LearnTactile.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Onboarding/LearnTactile.module.scss -------------------------------------------------------------------------------- /component/Onboarding/LearnTactile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Onboarding/LearnTactile.tsx -------------------------------------------------------------------------------- /component/Onboarding/LearnVoice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Onboarding/LearnVoice.tsx -------------------------------------------------------------------------------- /component/Onboarding/LearnVoiceStep.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Onboarding/LearnVoiceStep.module.scss -------------------------------------------------------------------------------- /component/Onboarding/LearnVoiceStep.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Onboarding/LearnVoiceStep.tsx -------------------------------------------------------------------------------- /component/Onboarding/NoInteractionModal.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Onboarding/NoInteractionModal.module.scss -------------------------------------------------------------------------------- /component/Onboarding/NoInteractionModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Onboarding/NoInteractionModal.tsx -------------------------------------------------------------------------------- /component/Onboarding/Onboarding.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Onboarding/Onboarding.module.scss -------------------------------------------------------------------------------- /component/Onboarding/Onboarding.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Onboarding/Onboarding.tsx -------------------------------------------------------------------------------- /component/Onboarding/OnboardingUbiLogger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Onboarding/OnboardingUbiLogger.ts -------------------------------------------------------------------------------- /component/Onboarding/SkipButton.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Onboarding/SkipButton.module.scss -------------------------------------------------------------------------------- /component/Onboarding/SkipButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Onboarding/SkipButton.tsx -------------------------------------------------------------------------------- /component/Onboarding/Start.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Onboarding/Start.module.scss -------------------------------------------------------------------------------- /component/Onboarding/Start.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Onboarding/Start.tsx -------------------------------------------------------------------------------- /component/Onboarding/tts/Tactile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Onboarding/tts/Tactile.ts -------------------------------------------------------------------------------- /component/OtaUpdating/OtaUpdating.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/OtaUpdating/OtaUpdating.module.scss -------------------------------------------------------------------------------- /component/OtaUpdating/OtaUpdating.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/OtaUpdating/OtaUpdating.tsx -------------------------------------------------------------------------------- /component/Overlays/Overlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Overlays/Overlay.tsx -------------------------------------------------------------------------------- /component/Overlays/OverlayController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Overlays/OverlayController.ts -------------------------------------------------------------------------------- /component/Overlays/OverlayUiState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Overlays/OverlayUiState.ts -------------------------------------------------------------------------------- /component/Overlays/Overlays.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Overlays/Overlays.module.scss -------------------------------------------------------------------------------- /component/Overlays/Overlays.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Overlays/Overlays.tsx -------------------------------------------------------------------------------- /component/PhoneCall/AnswerButton.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/PhoneCall/AnswerButton.module.scss -------------------------------------------------------------------------------- /component/PhoneCall/AnswerButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/PhoneCall/AnswerButton.tsx -------------------------------------------------------------------------------- /component/PhoneCall/DeclineButton.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/PhoneCall/DeclineButton.module.scss -------------------------------------------------------------------------------- /component/PhoneCall/DeclineButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/PhoneCall/DeclineButton.tsx -------------------------------------------------------------------------------- /component/PhoneCall/PhoneCall.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/PhoneCall/PhoneCall.module.scss -------------------------------------------------------------------------------- /component/PhoneCall/PhoneCall.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/PhoneCall/PhoneCall.tsx -------------------------------------------------------------------------------- /component/PhoneCall/PhoneCallController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/PhoneCall/PhoneCallController.ts -------------------------------------------------------------------------------- /component/PhoneCall/PhoneCallTimer.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/PhoneCall/PhoneCallTimer.module.scss -------------------------------------------------------------------------------- /component/PhoneCall/PhoneCallTimer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/PhoneCall/PhoneCallTimer.tsx -------------------------------------------------------------------------------- /component/PhoneCall/PhoneCallUiState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/PhoneCall/PhoneCallUiState.ts -------------------------------------------------------------------------------- /component/Presets/PresetCard/PresetCard.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Presets/PresetCard/PresetCard.module.scss -------------------------------------------------------------------------------- /component/Presets/PresetCard/PresetCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Presets/PresetCard/PresetCard.tsx -------------------------------------------------------------------------------- /component/Presets/PresetCard/PresetContent.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Presets/PresetCard/PresetContent.module.scss -------------------------------------------------------------------------------- /component/Presets/PresetCard/PresetContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Presets/PresetCard/PresetContent.tsx -------------------------------------------------------------------------------- /component/Presets/PresetCard/PresetPlaceholder.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Presets/PresetCard/PresetPlaceholder.module.scss -------------------------------------------------------------------------------- /component/Presets/PresetCard/PresetPlaceholder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Presets/PresetCard/PresetPlaceholder.tsx -------------------------------------------------------------------------------- /component/Presets/PresetCard/PresetUnavailable.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Presets/PresetCard/PresetUnavailable.module.scss -------------------------------------------------------------------------------- /component/Presets/PresetCard/PresetUnavailable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Presets/PresetCard/PresetUnavailable.tsx -------------------------------------------------------------------------------- /component/Presets/PresetIndicator/PresetNumberIndicator.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Presets/PresetIndicator/PresetNumberIndicator.module.scss -------------------------------------------------------------------------------- /component/Presets/PresetIndicator/PresetNumberIndicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Presets/PresetIndicator/PresetNumberIndicator.tsx -------------------------------------------------------------------------------- /component/Presets/Presets.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Presets/Presets.module.scss -------------------------------------------------------------------------------- /component/Presets/Presets.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Presets/Presets.tsx -------------------------------------------------------------------------------- /component/Presets/PresetsController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Presets/PresetsController.ts -------------------------------------------------------------------------------- /component/Presets/PresetsUiState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Presets/PresetsUiState.ts -------------------------------------------------------------------------------- /component/Presets/SavingPresetFailed.module.scss: -------------------------------------------------------------------------------- 1 | .icon { 2 | margin-bottom: 10px; 3 | } 4 | -------------------------------------------------------------------------------- /component/Presets/SavingPresetFailed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Presets/SavingPresetFailed.tsx -------------------------------------------------------------------------------- /component/Promo/Promo.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Promo/Promo.module.scss -------------------------------------------------------------------------------- /component/Promo/Promo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Promo/Promo.tsx -------------------------------------------------------------------------------- /component/Promo/PromoController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Promo/PromoController.ts -------------------------------------------------------------------------------- /component/Queue/Queue.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Queue/Queue.module.scss -------------------------------------------------------------------------------- /component/Queue/Queue.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Queue/Queue.tsx -------------------------------------------------------------------------------- /component/Queue/QueueEmptyState/EmptyQueueState.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Queue/QueueEmptyState/EmptyQueueState.module.scss -------------------------------------------------------------------------------- /component/Queue/QueueEmptyState/EmptyQueueState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Queue/QueueEmptyState/EmptyQueueState.tsx -------------------------------------------------------------------------------- /component/Queue/QueueHeader/QueueHeader.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Queue/QueueHeader/QueueHeader.module.scss -------------------------------------------------------------------------------- /component/Queue/QueueHeader/QueueHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Queue/QueueHeader/QueueHeader.tsx -------------------------------------------------------------------------------- /component/Queue/QueueListItem/QueueListItem.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Queue/QueueListItem/QueueListItem.module.scss -------------------------------------------------------------------------------- /component/Queue/QueueListItem/QueueListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Queue/QueueListItem/QueueListItem.tsx -------------------------------------------------------------------------------- /component/Queue/QueueSwiper/QueueSwiper.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Queue/QueueSwiper/QueueSwiper.module.scss -------------------------------------------------------------------------------- /component/Queue/QueueSwiper/QueueSwiper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Queue/QueueSwiper/QueueSwiper.tsx -------------------------------------------------------------------------------- /component/Queue/QueueUiState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Queue/QueueUiState.ts -------------------------------------------------------------------------------- /component/RootErrorBoundary/RootErrorBoundary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/RootErrorBoundary/RootErrorBoundary.tsx -------------------------------------------------------------------------------- /component/Settings/AirVentInterference/AirVentInterference.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Settings/AirVentInterference/AirVentInterference.module.scss -------------------------------------------------------------------------------- /component/Settings/AirVentInterference/AirVentInterference.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Settings/AirVentInterference/AirVentInterference.tsx -------------------------------------------------------------------------------- /component/Settings/AirVentInterference/AirVentInterferenceUiState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Settings/AirVentInterference/AirVentInterferenceUiState.ts -------------------------------------------------------------------------------- /component/Settings/DisplayAndBrightness/DisplayAndBrightness.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Settings/DisplayAndBrightness/DisplayAndBrightness.module.scss -------------------------------------------------------------------------------- /component/Settings/DisplayAndBrightness/DisplayAndBrightness.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Settings/DisplayAndBrightness/DisplayAndBrightness.tsx -------------------------------------------------------------------------------- /component/Settings/DisplayAndBrightness/DisplayAndBrightnessUiState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Settings/DisplayAndBrightness/DisplayAndBrightnessUiState.ts -------------------------------------------------------------------------------- /component/Settings/FactoryReset/FactoryReset.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Settings/FactoryReset/FactoryReset.module.scss -------------------------------------------------------------------------------- /component/Settings/FactoryReset/FactoryReset.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Settings/FactoryReset/FactoryReset.tsx -------------------------------------------------------------------------------- /component/Settings/Licenses/Licenses.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Settings/Licenses/Licenses.module.scss -------------------------------------------------------------------------------- /component/Settings/Licenses/Licenses.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Settings/Licenses/Licenses.tsx -------------------------------------------------------------------------------- /component/Settings/MainMenu/MainMenu.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Settings/MainMenu/MainMenu.module.scss -------------------------------------------------------------------------------- /component/Settings/MainMenu/MainMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Settings/MainMenu/MainMenu.tsx -------------------------------------------------------------------------------- /component/Settings/MainMenu/MainMenuItem.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Settings/MainMenu/MainMenuItem.module.scss -------------------------------------------------------------------------------- /component/Settings/MainMenu/MainMenuItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Settings/MainMenu/MainMenuItem.tsx -------------------------------------------------------------------------------- /component/Settings/PhoneCalls/PhoneCalls.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Settings/PhoneCalls/PhoneCalls.module.scss -------------------------------------------------------------------------------- /component/Settings/PhoneCalls/PhoneCalls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Settings/PhoneCalls/PhoneCalls.tsx -------------------------------------------------------------------------------- /component/Settings/PhoneCalls/PhoneCallsUiState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Settings/PhoneCalls/PhoneCallsUiState.ts -------------------------------------------------------------------------------- /component/Settings/PhoneConnection/PhoneConnection.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Settings/PhoneConnection/PhoneConnection.module.scss -------------------------------------------------------------------------------- /component/Settings/PhoneConnection/PhoneConnection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Settings/PhoneConnection/PhoneConnection.tsx -------------------------------------------------------------------------------- /component/Settings/PhoneConnection/PhoneConnectionItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Settings/PhoneConnection/PhoneConnectionItem.tsx -------------------------------------------------------------------------------- /component/Settings/PhoneConnection/PhoneConnectionModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Settings/PhoneConnection/PhoneConnectionModal.tsx -------------------------------------------------------------------------------- /component/Settings/PhoneConnection/PhoneForgetConfirm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Settings/PhoneConnection/PhoneForgetConfirm.tsx -------------------------------------------------------------------------------- /component/Settings/PhoneConnection/contextmenu/PhoneConnectionContextMenu.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Settings/PhoneConnection/contextmenu/PhoneConnectionContextMenu.module.scss -------------------------------------------------------------------------------- /component/Settings/PhoneConnection/contextmenu/PhoneConnectionContextMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Settings/PhoneConnection/contextmenu/PhoneConnectionContextMenu.tsx -------------------------------------------------------------------------------- /component/Settings/PhoneConnection/contextmenu/PhoneConnectionContextMenuItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Settings/PhoneConnection/contextmenu/PhoneConnectionContextMenuItem.tsx -------------------------------------------------------------------------------- /component/Settings/PhoneConnection/contextmenu/PhoneConnectionContextMenuUiState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Settings/PhoneConnection/contextmenu/PhoneConnectionContextMenuUiState.ts -------------------------------------------------------------------------------- /component/Settings/PowerTutorial/PowerTutorial.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Settings/PowerTutorial/PowerTutorial.module.scss -------------------------------------------------------------------------------- /component/Settings/PowerTutorial/PowerTutorial.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Settings/PowerTutorial/PowerTutorial.tsx -------------------------------------------------------------------------------- /component/Settings/RestartConfirm/RestartConfirm.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Settings/RestartConfirm/RestartConfirm.module.scss -------------------------------------------------------------------------------- /component/Settings/RestartConfirm/RestartConfirm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Settings/RestartConfirm/RestartConfirm.tsx -------------------------------------------------------------------------------- /component/Settings/Settings.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Settings/Settings.module.scss -------------------------------------------------------------------------------- /component/Settings/Settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Settings/Settings.tsx -------------------------------------------------------------------------------- /component/Settings/SettingsUbiLogger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Settings/SettingsUbiLogger.ts -------------------------------------------------------------------------------- /component/Settings/Submenu/Submenu.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Settings/Submenu/Submenu.module.scss -------------------------------------------------------------------------------- /component/Settings/Submenu/Submenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Settings/Submenu/Submenu.tsx -------------------------------------------------------------------------------- /component/Settings/Submenu/SubmenuHeader.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Settings/Submenu/SubmenuHeader.module.scss -------------------------------------------------------------------------------- /component/Settings/Submenu/SubmenuHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Settings/Submenu/SubmenuHeader.tsx -------------------------------------------------------------------------------- /component/Settings/Submenu/SubmenuItem.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Settings/Submenu/SubmenuItem.module.scss -------------------------------------------------------------------------------- /component/Settings/Submenu/SubmenuItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Settings/Submenu/SubmenuItem.tsx -------------------------------------------------------------------------------- /component/Settings/Submenu/SubmenuUiState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Settings/Submenu/SubmenuUiState.ts -------------------------------------------------------------------------------- /component/Settings/TipsOnDemand/TipsOnDemand.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Settings/TipsOnDemand/TipsOnDemand.module.scss -------------------------------------------------------------------------------- /component/Settings/TipsOnDemand/TipsOnDemand.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Settings/TipsOnDemand/TipsOnDemand.tsx -------------------------------------------------------------------------------- /component/Settings/TipsOnDemand/TipsOnDemandUiState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Settings/TipsOnDemand/TipsOnDemandUiState.ts -------------------------------------------------------------------------------- /component/Settings/UnavailableSettingBanner/UnavailableSettingBanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Settings/UnavailableSettingBanner/UnavailableSettingBanner.tsx -------------------------------------------------------------------------------- /component/Settings/UnavailableSettingBanner/UnavailableSettingsBannerUiState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Settings/UnavailableSettingBanner/UnavailableSettingsBannerUiState.ts -------------------------------------------------------------------------------- /component/Setup/BTPairing.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Setup/BTPairing.module.scss -------------------------------------------------------------------------------- /component/Setup/BTPairing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Setup/BTPairing.tsx -------------------------------------------------------------------------------- /component/Setup/Connected.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Setup/Connected.module.scss -------------------------------------------------------------------------------- /component/Setup/Connected.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Setup/Connected.tsx -------------------------------------------------------------------------------- /component/Setup/Failed.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Setup/Failed.module.scss -------------------------------------------------------------------------------- /component/Setup/Failed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Setup/Failed.tsx -------------------------------------------------------------------------------- /component/Setup/Setup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Setup/Setup.tsx -------------------------------------------------------------------------------- /component/Setup/SetupHelp.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Setup/SetupHelp.module.scss -------------------------------------------------------------------------------- /component/Setup/SetupHelp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Setup/SetupHelp.tsx -------------------------------------------------------------------------------- /component/Setup/StartSetup.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Setup/StartSetup.module.scss -------------------------------------------------------------------------------- /component/Setup/StartSetup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Setup/StartSetup.tsx -------------------------------------------------------------------------------- /component/Setup/Updating.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Setup/Updating.module.scss -------------------------------------------------------------------------------- /component/Setup/Updating.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Setup/Updating.tsx -------------------------------------------------------------------------------- /component/Setup/Waiting.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Setup/Waiting.module.scss -------------------------------------------------------------------------------- /component/Setup/Waiting.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Setup/Waiting.tsx -------------------------------------------------------------------------------- /component/Setup/Welcome.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Setup/Welcome.module.scss -------------------------------------------------------------------------------- /component/Setup/Welcome.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Setup/Welcome.tsx -------------------------------------------------------------------------------- /component/Shelf/Shelf.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Shelf/Shelf.scss -------------------------------------------------------------------------------- /component/Shelf/Shelf.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Shelf/Shelf.tsx -------------------------------------------------------------------------------- /component/Shelf/ShelfController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Shelf/ShelfController.ts -------------------------------------------------------------------------------- /component/Shelf/ShelfHeader/ShelfHeader.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Shelf/ShelfHeader/ShelfHeader.module.scss -------------------------------------------------------------------------------- /component/Shelf/ShelfHeader/ShelfHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Shelf/ShelfHeader/ShelfHeader.tsx -------------------------------------------------------------------------------- /component/Shelf/ShelfHeader/ShelfHeaderItem.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Shelf/ShelfHeader/ShelfHeaderItem.module.scss -------------------------------------------------------------------------------- /component/Shelf/ShelfHeader/ShelfHeaderItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Shelf/ShelfHeader/ShelfHeaderItem.tsx -------------------------------------------------------------------------------- /component/Shelf/ShelfHeader/ShelfHeaderUiState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Shelf/ShelfHeader/ShelfHeaderUiState.ts -------------------------------------------------------------------------------- /component/Shelf/ShelfItem/ContextItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Shelf/ShelfItem/ContextItem.tsx -------------------------------------------------------------------------------- /component/Shelf/ShelfItem/DefaultVoiceItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Shelf/ShelfItem/DefaultVoiceItem.tsx -------------------------------------------------------------------------------- /component/Shelf/ShelfItem/InlineTipItem.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Shelf/ShelfItem/InlineTipItem.module.scss -------------------------------------------------------------------------------- /component/Shelf/ShelfItem/InlineTipItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Shelf/ShelfItem/InlineTipItem.tsx -------------------------------------------------------------------------------- /component/Shelf/ShelfItem/MoreButton.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Shelf/ShelfItem/MoreButton.module.scss -------------------------------------------------------------------------------- /component/Shelf/ShelfItem/MoreItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Shelf/ShelfItem/MoreItem.tsx -------------------------------------------------------------------------------- /component/Shelf/ShelfItem/ShelfSwiperItem.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Shelf/ShelfItem/ShelfSwiperItem.module.scss -------------------------------------------------------------------------------- /component/Shelf/ShelfItem/ShelfSwiperItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Shelf/ShelfItem/ShelfSwiperItem.tsx -------------------------------------------------------------------------------- /component/Shelf/ShelfItem/ShelfSwiperItemUiState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Shelf/ShelfItem/ShelfSwiperItemUiState.ts -------------------------------------------------------------------------------- /component/Shelf/ShelfSwiper/ShelfSwiper.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Shelf/ShelfSwiper/ShelfSwiper.module.scss -------------------------------------------------------------------------------- /component/Shelf/ShelfSwiper/ShelfSwiper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Shelf/ShelfSwiper/ShelfSwiper.tsx -------------------------------------------------------------------------------- /component/Shelf/ShelfSwiper/ShelfSwiperUiState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Shelf/ShelfSwiper/ShelfSwiperUiState.ts -------------------------------------------------------------------------------- /component/Shelf/VoiceMutedbanner/VoiceMuteBannerUiState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Shelf/VoiceMutedbanner/VoiceMuteBannerUiState.ts -------------------------------------------------------------------------------- /component/Shelf/VoiceMutedbanner/VoiceMutedBanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Shelf/VoiceMutedbanner/VoiceMutedBanner.tsx -------------------------------------------------------------------------------- /component/SwipeDownHandle/SwipeDownHandle.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/SwipeDownHandle/SwipeDownHandle.module.scss -------------------------------------------------------------------------------- /component/SwipeDownHandle/SwipeDownHandle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/SwipeDownHandle/SwipeDownHandle.tsx -------------------------------------------------------------------------------- /component/SwipeDownHandle/SwipeDownHandleUiState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/SwipeDownHandle/SwipeDownHandleUiState.ts -------------------------------------------------------------------------------- /component/Tracklist/ActionConfirmation/QueueConfirmationBanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Tracklist/ActionConfirmation/QueueConfirmationBanner.tsx -------------------------------------------------------------------------------- /component/Tracklist/EmptyTracklistState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Tracklist/EmptyTracklistState.tsx -------------------------------------------------------------------------------- /component/Tracklist/ProgressBar.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Tracklist/ProgressBar.module.scss -------------------------------------------------------------------------------- /component/Tracklist/ProgressBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Tracklist/ProgressBar.tsx -------------------------------------------------------------------------------- /component/Tracklist/Tracklist.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Tracklist/Tracklist.module.scss -------------------------------------------------------------------------------- /component/Tracklist/Tracklist.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Tracklist/Tracklist.tsx -------------------------------------------------------------------------------- /component/Tracklist/TracklistHeader.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Tracklist/TracklistHeader.module.scss -------------------------------------------------------------------------------- /component/Tracklist/TracklistHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Tracklist/TracklistHeader.tsx -------------------------------------------------------------------------------- /component/Tracklist/TracklistHeaderActions.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Tracklist/TracklistHeaderActions.module.scss -------------------------------------------------------------------------------- /component/Tracklist/TracklistHeaderActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Tracklist/TracklistHeaderActions.tsx -------------------------------------------------------------------------------- /component/Tracklist/TracklistHeaderDetails.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Tracklist/TracklistHeaderDetails.module.scss -------------------------------------------------------------------------------- /component/Tracklist/TracklistHeaderDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Tracklist/TracklistHeaderDetails.tsx -------------------------------------------------------------------------------- /component/Tracklist/TracklistItem.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Tracklist/TracklistItem.module.scss -------------------------------------------------------------------------------- /component/Tracklist/TracklistItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Tracklist/TracklistItem.tsx -------------------------------------------------------------------------------- /component/Tracklist/TracklistSwiper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Tracklist/TracklistSwiper.tsx -------------------------------------------------------------------------------- /component/Tracklist/TracklistUiState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Tracklist/TracklistUiState.ts -------------------------------------------------------------------------------- /component/Views/Views.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Views/Views.module.scss -------------------------------------------------------------------------------- /component/Views/Views.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/Views/Views.tsx -------------------------------------------------------------------------------- /component/VoiceConfirmation/VoiceConfirmation.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/VoiceConfirmation/VoiceConfirmation.module.scss -------------------------------------------------------------------------------- /component/VoiceConfirmation/VoiceConfirmation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/VoiceConfirmation/VoiceConfirmation.tsx -------------------------------------------------------------------------------- /component/VoiceConfirmation/VoiceConfirmationActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/VoiceConfirmation/VoiceConfirmationActions.ts -------------------------------------------------------------------------------- /component/VoiceConfirmation/VoiceConfirmationIntents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/component/VoiceConfirmation/VoiceConfirmationIntents.ts -------------------------------------------------------------------------------- /context/store.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/context/store.tsx -------------------------------------------------------------------------------- /eventhandler/BackButtonHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/eventhandler/BackButtonHandler.ts -------------------------------------------------------------------------------- /eventhandler/ContentShelfUbiLogger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/eventhandler/ContentShelfUbiLogger.ts -------------------------------------------------------------------------------- /eventhandler/DialHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/eventhandler/DialHandler.ts -------------------------------------------------------------------------------- /eventhandler/DisconnectedLogger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/eventhandler/DisconnectedLogger.ts -------------------------------------------------------------------------------- /eventhandler/ErrorHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/eventhandler/ErrorHandler.ts -------------------------------------------------------------------------------- /eventhandler/ErrorHandlerFilters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/eventhandler/ErrorHandlerFilters.ts -------------------------------------------------------------------------------- /eventhandler/HardwareEventHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/eventhandler/HardwareEventHandler.ts -------------------------------------------------------------------------------- /eventhandler/ModalUbiLogger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/eventhandler/ModalUbiLogger.ts -------------------------------------------------------------------------------- /eventhandler/NpvUbiLogger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/eventhandler/NpvUbiLogger.ts -------------------------------------------------------------------------------- /eventhandler/PhoneCallUbiLogger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/eventhandler/PhoneCallUbiLogger.ts -------------------------------------------------------------------------------- /eventhandler/PodcastSpeedOptionsUbiLogger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/eventhandler/PodcastSpeedOptionsUbiLogger.ts -------------------------------------------------------------------------------- /eventhandler/PresetButtonsHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/eventhandler/PresetButtonsHandler.ts -------------------------------------------------------------------------------- /eventhandler/PresetsUbiLogger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/eventhandler/PresetsUbiLogger.ts -------------------------------------------------------------------------------- /eventhandler/QueueUbiLogger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/eventhandler/QueueUbiLogger.ts -------------------------------------------------------------------------------- /eventhandler/SettingsButtonHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/eventhandler/SettingsButtonHandler.ts -------------------------------------------------------------------------------- /eventhandler/TrackListUbiLogger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/eventhandler/TrackListUbiLogger.ts -------------------------------------------------------------------------------- /eventhandler/UbiLogger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/eventhandler/UbiLogger.ts -------------------------------------------------------------------------------- /eventhandler/VoiceUbiLogger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/eventhandler/VoiceUbiLogger.ts -------------------------------------------------------------------------------- /eventhandler/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/eventhandler/index.ts -------------------------------------------------------------------------------- /fonts/CircularSpUIv3T-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/fonts/CircularSpUIv3T-Black.woff2 -------------------------------------------------------------------------------- /fonts/CircularSpUIv3T-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/fonts/CircularSpUIv3T-Bold.woff2 -------------------------------------------------------------------------------- /fonts/CircularSpUIv3T-Book.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/fonts/CircularSpUIv3T-Book.woff2 -------------------------------------------------------------------------------- /global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/global.d.ts -------------------------------------------------------------------------------- /helpers/Backtrace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/helpers/Backtrace.ts -------------------------------------------------------------------------------- /helpers/CallbackHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/helpers/CallbackHandler.ts -------------------------------------------------------------------------------- /helpers/ColorExtractor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/helpers/ColorExtractor.ts -------------------------------------------------------------------------------- /helpers/ContextTitleExtractor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/helpers/ContextTitleExtractor.ts -------------------------------------------------------------------------------- /helpers/FeatureIdentifiers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/helpers/FeatureIdentifiers.ts -------------------------------------------------------------------------------- /helpers/HardwareEvents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/helpers/HardwareEvents.ts -------------------------------------------------------------------------------- /helpers/LongPressHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/helpers/LongPressHandler.ts -------------------------------------------------------------------------------- /helpers/MockHardwareEvents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/helpers/MockHardwareEvents.ts -------------------------------------------------------------------------------- /helpers/Pagination.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/helpers/Pagination.ts -------------------------------------------------------------------------------- /helpers/PointerListeners.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/helpers/PointerListeners.ts -------------------------------------------------------------------------------- /helpers/RequestLogger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/helpers/RequestLogger.ts -------------------------------------------------------------------------------- /helpers/Retry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/helpers/Retry.ts -------------------------------------------------------------------------------- /helpers/SpotifyUriUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/helpers/SpotifyUriUtil.ts -------------------------------------------------------------------------------- /helpers/TextUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/helpers/TextUtil.ts -------------------------------------------------------------------------------- /helpers/TimeUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/helpers/TimeUtils.ts -------------------------------------------------------------------------------- /helpers/contentIdExtractor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/helpers/contentIdExtractor.ts -------------------------------------------------------------------------------- /hocs/withStore.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/hocs/withStore.tsx -------------------------------------------------------------------------------- /hooks/useSwiperDial.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/hooks/useSwiperDial.tsx -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/index.html -------------------------------------------------------------------------------- /index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/index.tsx -------------------------------------------------------------------------------- /middleware/InterappActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/middleware/InterappActions.ts -------------------------------------------------------------------------------- /middleware/InterappError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/middleware/InterappError.ts -------------------------------------------------------------------------------- /middleware/MiddlewareActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/middleware/MiddlewareActions.ts -------------------------------------------------------------------------------- /middleware/MiddlewareRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/middleware/MiddlewareRequest.ts -------------------------------------------------------------------------------- /middleware/MiddlewareStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/middleware/MiddlewareStorage.ts -------------------------------------------------------------------------------- /middleware/Queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/middleware/Queries.ts -------------------------------------------------------------------------------- /middleware/SeedableStorageInterface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/middleware/SeedableStorageInterface.ts -------------------------------------------------------------------------------- /mods/menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/mods/menu.tsx -------------------------------------------------------------------------------- /mods/muteAds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/mods/muteAds.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/package.json -------------------------------------------------------------------------------- /public/images/appstart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/public/images/appstart.png -------------------------------------------------------------------------------- /public/images/bluetooth-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/public/images/bluetooth-icon.svg -------------------------------------------------------------------------------- /public/images/explicit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/public/images/explicit.svg -------------------------------------------------------------------------------- /public/images/menu-dots.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/public/images/menu-dots.svg -------------------------------------------------------------------------------- /public/images/mobile-signal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/public/images/mobile-signal.svg -------------------------------------------------------------------------------- /public/images/more-48.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/public/images/more-48.svg -------------------------------------------------------------------------------- /public/images/no-connection.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/public/images/no-connection.svg -------------------------------------------------------------------------------- /public/images/radio-rings-bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/public/images/radio-rings-bg.svg -------------------------------------------------------------------------------- /public/images/round-corners.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/public/images/round-corners.svg -------------------------------------------------------------------------------- /public/images/setup-qr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/public/images/setup-qr.svg -------------------------------------------------------------------------------- /public/license/mw-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/public/license/mw-license.txt -------------------------------------------------------------------------------- /public/license/os-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/public/license/os-license.txt -------------------------------------------------------------------------------- /public/license/ui-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/public/license/ui-license.txt -------------------------------------------------------------------------------- /public/static/dino.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/public/static/dino.html -------------------------------------------------------------------------------- /public/static/js/main.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/public/static/js/main.js.LICENSE.txt -------------------------------------------------------------------------------- /public/static/media/other-media.83237a6ee7e62a4fb53b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/public/static/media/other-media.83237a6ee7e62a4fb53b.png -------------------------------------------------------------------------------- /push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/push.sh -------------------------------------------------------------------------------- /src/InView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/src/InView.tsx -------------------------------------------------------------------------------- /src/observe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/src/observe.ts -------------------------------------------------------------------------------- /src/useInView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/src/useInView.tsx -------------------------------------------------------------------------------- /store/AndroidPhoneCallStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/store/AndroidPhoneCallStore.ts -------------------------------------------------------------------------------- /store/BluetoothStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/store/BluetoothStore.ts -------------------------------------------------------------------------------- /store/ChildItemStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/store/ChildItemStore.ts -------------------------------------------------------------------------------- /store/DevOptionsStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/store/DevOptionsStore.ts -------------------------------------------------------------------------------- /store/HardwareStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/store/HardwareStore.ts -------------------------------------------------------------------------------- /store/HomeItemsStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/store/HomeItemsStore.ts -------------------------------------------------------------------------------- /store/ImageStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/store/ImageStore.ts -------------------------------------------------------------------------------- /store/IphonePhoneCallStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/store/IphonePhoneCallStore.ts -------------------------------------------------------------------------------- /store/NpvStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/store/NpvStore.ts -------------------------------------------------------------------------------- /store/OnboardingStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/store/OnboardingStore.ts -------------------------------------------------------------------------------- /store/OtaStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/store/OtaStore.ts -------------------------------------------------------------------------------- /store/PermissionStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/store/PermissionStore.ts -------------------------------------------------------------------------------- /store/PhoneConnectionStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/store/PhoneConnectionStore.ts -------------------------------------------------------------------------------- /store/PlayerStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/store/PlayerStore.ts -------------------------------------------------------------------------------- /store/PodcastSpeedStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/store/PodcastSpeedStore.ts -------------------------------------------------------------------------------- /store/PodcastStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/store/PodcastStore.ts -------------------------------------------------------------------------------- /store/PresetsDataStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/store/PresetsDataStore.ts -------------------------------------------------------------------------------- /store/QueueStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/store/QueueStore.ts -------------------------------------------------------------------------------- /store/RadioStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/store/RadioStore.ts -------------------------------------------------------------------------------- /store/RemoteConfigStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/store/RemoteConfigStore.ts -------------------------------------------------------------------------------- /store/RemoteControlStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/store/RemoteControlStore.ts -------------------------------------------------------------------------------- /store/RootStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/store/RootStore.ts -------------------------------------------------------------------------------- /store/SavedStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/store/SavedStore.ts -------------------------------------------------------------------------------- /store/SessionStateStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/store/SessionStateStore.ts -------------------------------------------------------------------------------- /store/SettingsStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/store/SettingsStore.ts -------------------------------------------------------------------------------- /store/SetupStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/store/SetupStore.ts -------------------------------------------------------------------------------- /store/ShelfStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/store/ShelfStore.ts -------------------------------------------------------------------------------- /store/TimerStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/store/TimerStore.ts -------------------------------------------------------------------------------- /store/TipsStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/store/TipsStore.ts -------------------------------------------------------------------------------- /store/TracklistStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/store/TracklistStore.ts -------------------------------------------------------------------------------- /store/VersionStatusStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/store/VersionStatusStore.ts -------------------------------------------------------------------------------- /store/ViewStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/store/ViewStore.ts -------------------------------------------------------------------------------- /store/VoiceStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/store/VoiceStore.ts -------------------------------------------------------------------------------- /store/VolumeStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/store/VolumeStore.ts -------------------------------------------------------------------------------- /store/WindLevelStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/store/WindLevelStore.ts -------------------------------------------------------------------------------- /style/Variables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/style/Variables.js -------------------------------------------------------------------------------- /style/variables.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/style/variables.module.scss -------------------------------------------------------------------------------- /system/StorageMigration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/system/StorageMigration.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /types/messages/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./voice"; -------------------------------------------------------------------------------- /types/messages/voice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/types/messages/voice.ts -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/vite.config.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merlin04/superbird-webapp/HEAD/yarn.lock --------------------------------------------------------------------------------