@lumiastream/ui 0.8.4 → 0.8.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/ChatMessageItem.js +1 -1
- package/dist/ChatboxPanel.js +1 -1
- package/dist/EventList.d.ts +1 -4
- package/dist/EventList.js +35 -84
- package/dist/EventListItem.d.ts +1 -2
- package/dist/EventListItem.js +1 -10
- package/dist/GoalsList.js +1 -1
- package/dist/LSButton.js +1 -1
- package/dist/LSCheckbox.js +1 -1
- package/dist/LSColorPicker.js +1 -1
- package/dist/LSDatePicker.js +1 -1
- package/dist/LSFontPicker.js +1 -1
- package/dist/LSInput.js +1 -1
- package/dist/LSMultiSelect.js +1 -1
- package/dist/LSRadio.js +1 -1
- package/dist/LSSelect.js +1 -1
- package/dist/LSSliderInput.js +1 -1
- package/dist/LSSwitch.js +1 -1
- package/dist/LSTextField.js +1 -1
- package/dist/LSVariableInputField.js +4 -15
- package/dist/ModActivityLog.js +1 -1
- package/dist/ModQueueItem.js +1 -1
- package/dist/ModQueueList.js +1 -1
- package/dist/ModalChrome.js +1 -1
- package/dist/PlatformIcon.js +1 -1
- package/dist/ShortcutDockGrid.js +1 -1
- package/dist/SongRequestList.js +1 -1
- package/dist/StreamStatusPanel.d.ts +1 -4
- package/dist/StreamStatusPanel.js +28 -41
- package/dist/ViewersList.js +1 -1
- package/dist/WidgetChrome.js +1 -1
- package/dist/components.js +81 -154
- package/dist/index.d.ts +1 -1
- package/dist/index.js +222 -201
- package/dist/se-import.js +127 -200
- package/dist/utils/chatMedia.js +4 -0
- package/dist/utils.d.ts +10 -1
- package/dist/utils.js +94 -0
- package/package.json +3 -4
package/dist/index.d.ts
CHANGED
|
@@ -26,7 +26,7 @@ export { ModQueueItem, ModQueueItemProps } from './ModQueueItem.js';
|
|
|
26
26
|
export { ModQueueList, ModQueueListProps, ModQueuePanelItem } from './ModQueueList.js';
|
|
27
27
|
export { ModActivityLog, ModActivityLogProps, ModLogEntry } from './ModActivityLog.js';
|
|
28
28
|
export { SongRequestList, SongRequestListProps, SongRequestNowPlaying, SongRequestQueueItem } from './SongRequestList.js';
|
|
29
|
-
export { codeMirrorlinterOptions, variableCompletionOptions } from './utils.js';
|
|
29
|
+
export { PING_NOTES, PingNote, codeMirrorlinterOptions, playEventPing, variableCompletionOptions } from './utils.js';
|
|
30
30
|
export { BuildChatMessageContentOptions, ChatMessageContentItem, ChatMessageEmoteStore, ChatMessageToken, ChatMessageTokenizationOptions, ChatboxMediaPreview, ChatboxMediaPreviewKind, ChatterProfileResolver, ChatterProfileResolverPayload, ChatterProfileUrlInput, MEDIA_PREVIEW_USER_LEVEL_VALUES, MediaPreviewRoleSettings, MediaPreviewRoleSettingsInput, MediaPreviewUserLevel, MessageLinkPart, ResolveChatterProfileUrlWithResolversInput, buildChatMessageContent, getMediaPreviewFromUrl, getNormalizedUserLevels, isMediaPreviewAllowedForUser, normalizeHttpUrl, normalizeMediaPreviewUserLevels, parseMessageLinks, resolveChatterProfileUrlWithResolvers, resolveMediaPreviewRoleSettings, resolveMediaPreviewSetting, resolvePlatformChatterProfileUrl, tokenizeChatMessage } from './utils/chatMedia.js';
|
|
31
31
|
export { AIGeneratedCustomOverlay, AssetMirrorProgress, ElementAlertKind, ElementImportResult, ElementSceneKind, ElementStateClass, FLAG_OFF_REASONS, FetchOrProxyResult, FetchWithProxyOptions, ImportCoverage, ImportResult, ImportSEBootstrapOptions, JWT_DASHBOARD_URL, JwtInstructionStep, MarketplacePicker, MarketplacePickerProps, ModuleType, OverlayLayerBounds, OverlayLayerState, OverlayLayerType, OverlayModuleAlertState, OverlayModuleState, OverlaySettings, OverlayState, ProxyFetchFn, ReviewItem, SEAccountClaims, SEAuthDiagnostic, SEAuthError, SEAuthErrorCode, SEAuthMode, SEAuthProbeResult, SEBootstrapResponse, SEChannelSummary, SEClient, SECustomEmbedProps, SECustomWidgetSnapshot, SEElementAnimation, SEElementCompositeField, SEElementConfigData, SEElementConfigState, SEElementConfigVersion, SEElementMediaItem, SEElementResponse, SEElementShareParts, SEElementStyle, SEElementTextItem, SEElementTrigger, SEElementWidgetInstance, SEExistingAsset, SEImportBindings, SEImportWizard, SEImportWizardProps, SEOverlaySummary, SESaveOverlayBody, SEUploadAssetResult, SEUsersCurrentResponse, SEWidget, SE_WIDGET_TO_MARKETPLACE_CANDIDATES, TransplantedUnit, applyReviewAction, buildAIPromptForSEWidget, buildBootstrapUrl, classifyConfigState, decodeJwtPayload, diagnoseSEAuth, extractSEOverlayId, extractSEPreviewParts, extractTriggerVars, fetchElementWidgetInstanceForClient, fetchElementWidgetInstancePublic, fetchSEBootstrap, fetchSEFiltersRaw, fetchSEOverlays, fetchUsableChannels, fetchWithProxyFallback, filenameFromURL, findSEAssetURLs, getAILandingBounds, getJwtInstructionSteps, getMarketplaceCandidates, hasMarketplaceCandidates, importElementOverlay, importSEBootstrap, isSEBootstrap, isSEElementResponse, isWidgetFlaggedOff, listTransplantableLayers, looksLikeCorsError, mirrorOneAsset, parseElementConfigData, parseElementShareUrl, readElementProvider, rewriteAssetURLs, streamElementsCopyJwt, substituteElementTokens, substituteSeTokens, transplantLayer } from './se-import.js';
|
|
32
32
|
import 'react/jsx-runtime';
|