@lumiastream/ui 0.7.7 → 0.8.0
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.d.ts +45 -0
- package/dist/ChatMessageItem.js +432 -0
- package/dist/ChatboxPanel.d.ts +54 -0
- package/dist/ChatboxPanel.js +635 -0
- package/dist/EventList.d.ts +77 -0
- package/dist/EventList.js +284 -0
- package/dist/EventListItem.d.ts +28 -0
- package/dist/EventListItem.js +139 -0
- package/dist/GoalsList.d.ts +28 -0
- package/dist/GoalsList.js +84 -0
- package/dist/LSButton.d.ts +5 -13
- package/dist/LSButton.js +4 -2
- package/dist/LSCheckbox.js +2 -2
- package/dist/LSColorPicker.js +20 -9
- package/dist/LSDatePicker.js +19 -8
- package/dist/LSFontPicker.js +2 -2
- package/dist/LSInput.d.ts +8 -1
- package/dist/LSInput.js +19 -8
- package/dist/LSMultiSelect.js +37 -22
- package/dist/LSRadio.js +1 -1
- package/dist/LSSelect.d.ts +5 -1
- package/dist/LSSelect.js +39 -22
- package/dist/LSSliderInput.js +19 -8
- package/dist/LSSwitch.d.ts +24 -0
- package/dist/LSSwitch.js +51 -0
- package/dist/LSTextField.js +1 -1
- package/dist/LSVariableInputField.js +19 -8
- package/dist/ModActivityLog.d.ts +26 -0
- package/dist/ModActivityLog.js +58 -0
- package/dist/ModQueueItem.d.ts +21 -0
- package/dist/ModQueueItem.js +101 -0
- package/dist/ModQueueList.d.ts +40 -0
- package/dist/ModQueueList.js +361 -0
- package/dist/ModalChrome.d.ts +87 -0
- package/dist/ModalChrome.js +265 -0
- package/dist/PlatformIcon.d.ts +19 -0
- package/dist/PlatformIcon.js +86 -0
- package/dist/ShortcutDockGrid.d.ts +41 -0
- package/dist/ShortcutDockGrid.js +121 -0
- package/dist/SongRequestList.d.ts +40 -0
- package/dist/SongRequestList.js +313 -0
- package/dist/StreamStatusPanel.d.ts +45 -0
- package/dist/StreamStatusPanel.js +190 -0
- package/dist/ViewersList.d.ts +40 -0
- package/dist/ViewersList.js +167 -0
- package/dist/WidgetChrome.d.ts +30 -0
- package/dist/WidgetChrome.js +48 -0
- package/dist/components.d.ts +18 -0
- package/dist/components.js +1902 -107
- package/dist/index.d.ts +18 -0
- package/dist/index.js +2234 -442
- package/dist/se-import.js +2192 -423
- package/dist/utils/chatMedia.js +0 -2
- package/dist/utils.js +0 -3
- package/package.json +67 -3
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export { LSButton, LSButtonProps } from './LSButton.js';
|
|
2
2
|
export { LSInput, LSInputProps } from './LSInput.js';
|
|
3
3
|
export { LSSliderInput, LSSliderInputProps } from './LSSliderInput.js';
|
|
4
|
+
export { LSSwitch, LSSwitchProps } from './LSSwitch.js';
|
|
4
5
|
export { LSSelect } from './LSSelect.js';
|
|
5
6
|
export { LSCheckbox, LSCheckboxField } from './LSCheckbox.js';
|
|
6
7
|
export { LSColorPicker, LSColorPickerProps } from './LSColorPicker.js';
|
|
@@ -10,6 +11,21 @@ export { LSMultiSelect } from './LSMultiSelect.js';
|
|
|
10
11
|
export { LSRadio, LSRadioGroup } from './LSRadio.js';
|
|
11
12
|
export { LSTextField, LSTextFieldProps } from './LSTextField.js';
|
|
12
13
|
export { IVariables, LSVariableInputContextValue, LSVariableInputField, LSVariableInputFieldProps, LSVariableInputProvider } from './LSVariableInputField.js';
|
|
14
|
+
export { ChatMessageItem, ChatMessageItemProps, ChatModAction, ChatModActionLabels } from './ChatMessageItem.js';
|
|
15
|
+
export { PLATFORM_ICON_URLS, PlatformIcon, PlatformIconProps, getPlatformIconUrl } from './PlatformIcon.js';
|
|
16
|
+
export { ChatboxChatAs, ChatboxPanel, ChatboxPanelProps, ChatboxPlatformOption, useAutoScroll } from './ChatboxPanel.js';
|
|
17
|
+
export { DialogChrome, DialogChromeProps, ModalChrome, ModalChromeProps, PanelChrome, PanelChromeProps } from './ModalChrome.js';
|
|
18
|
+
export { WidgetChrome, WidgetChromeButton, WidgetChromeButtonProps, WidgetChromeProps } from './WidgetChrome.js';
|
|
19
|
+
export { EventListItem, EventListItemProps } from './EventListItem.js';
|
|
20
|
+
export { EVENT_TYPE_FALLBACK_ICON, EVENT_TYPE_ICONS, EventList, EventListPanelItem, EventListProps, EventTypeIcon, EventTypeIconKey, EventTypeIconProps } from './EventList.js';
|
|
21
|
+
export { StreamStatusPanel, StreamStatusPanelProps, StreamStatusPlatform, StreamStatusStat, formatStatValue } from './StreamStatusPanel.js';
|
|
22
|
+
export { ViewersList, ViewersListGroup, ViewersListProps, ViewersListViewer } from './ViewersList.js';
|
|
23
|
+
export { ShortcutDockButton, ShortcutDockGrid, ShortcutDockGridProps } from './ShortcutDockGrid.js';
|
|
24
|
+
export { GoalsList, GoalsListItem, GoalsListProps } from './GoalsList.js';
|
|
25
|
+
export { ModQueueItem, ModQueueItemProps } from './ModQueueItem.js';
|
|
26
|
+
export { ModQueueList, ModQueueListProps, ModQueuePanelItem } from './ModQueueList.js';
|
|
27
|
+
export { ModActivityLog, ModActivityLogProps, ModLogEntry } from './ModActivityLog.js';
|
|
28
|
+
export { SongRequestList, SongRequestListProps, SongRequestNowPlaying, SongRequestQueueItem } from './SongRequestList.js';
|
|
13
29
|
export { codeMirrorlinterOptions, variableCompletionOptions } from './utils.js';
|
|
14
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';
|
|
15
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';
|
|
@@ -18,6 +34,8 @@ import '@mui/material/Button';
|
|
|
18
34
|
import 'react';
|
|
19
35
|
import '@mui/material/TextField';
|
|
20
36
|
import '@mui/material/Select';
|
|
37
|
+
import '@mui/material/MenuItem';
|
|
38
|
+
import '@mui/material/ListSubheader';
|
|
21
39
|
import '@mui/material/Checkbox';
|
|
22
40
|
import 'react-hook-form';
|
|
23
41
|
import '@mui/material/Radio';
|