@lumiastream/ui 0.7.6 → 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/utils/chatMedia.js
CHANGED
|
@@ -538,8 +538,6 @@ var resolvePlatformChatterProfileUrl = ({ platform, username, displayname, userI
|
|
|
538
538
|
return normalizedUsername ? `https://kick.com/${encodeURIComponent(normalizedUsername)}` : null;
|
|
539
539
|
case "discord":
|
|
540
540
|
return normalizedUserId ? `https://discord.com/users/${encodeURIComponent(normalizedUserId)}` : null;
|
|
541
|
-
case "trovo":
|
|
542
|
-
return normalizedUsername ? `https://trovo.live/${encodeURIComponent(normalizedUsername)}` : null;
|
|
543
541
|
default:
|
|
544
542
|
return null;
|
|
545
543
|
}
|
package/dist/utils.js
CHANGED
|
@@ -158,7 +158,6 @@ var globalOptions = {
|
|
|
158
158
|
callCommand: "readonly",
|
|
159
159
|
callTwitchPoint: "readonly",
|
|
160
160
|
callTwitchExtension: "readonly",
|
|
161
|
-
callTrovoSpell: "readonly",
|
|
162
161
|
readFile: "readonly",
|
|
163
162
|
writeFile: "readonly",
|
|
164
163
|
hexToRgb: "readonly",
|
|
@@ -755,8 +754,6 @@ var resolvePlatformChatterProfileUrl = ({ platform, username, displayname, userI
|
|
|
755
754
|
return normalizedUsername ? `https://kick.com/${encodeURIComponent(normalizedUsername)}` : null;
|
|
756
755
|
case "discord":
|
|
757
756
|
return normalizedUserId ? `https://discord.com/users/${encodeURIComponent(normalizedUserId)}` : null;
|
|
758
|
-
case "trovo":
|
|
759
|
-
return normalizedUsername ? `https://trovo.live/${encodeURIComponent(normalizedUsername)}` : null;
|
|
760
757
|
default:
|
|
761
758
|
return null;
|
|
762
759
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lumiastream/ui",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.8.0",
|
|
4
4
|
"author": "Lumia Stream",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"description": "Lumia UI Kit",
|
|
@@ -61,6 +61,10 @@
|
|
|
61
61
|
"types": "./dist/LSSliderInput.d.ts",
|
|
62
62
|
"import": "./dist/LSSliderInput.js"
|
|
63
63
|
},
|
|
64
|
+
"./LSSwitch": {
|
|
65
|
+
"types": "./dist/LSSwitch.d.ts",
|
|
66
|
+
"import": "./dist/LSSwitch.js"
|
|
67
|
+
},
|
|
64
68
|
"./LSTextField": {
|
|
65
69
|
"types": "./dist/LSTextField.d.ts",
|
|
66
70
|
"import": "./dist/LSTextField.js"
|
|
@@ -69,6 +73,66 @@
|
|
|
69
73
|
"types": "./dist/LSVariableInputField.d.ts",
|
|
70
74
|
"import": "./dist/LSVariableInputField.js"
|
|
71
75
|
},
|
|
76
|
+
"./ChatMessageItem": {
|
|
77
|
+
"types": "./dist/ChatMessageItem.d.ts",
|
|
78
|
+
"import": "./dist/ChatMessageItem.js"
|
|
79
|
+
},
|
|
80
|
+
"./ChatboxPanel": {
|
|
81
|
+
"types": "./dist/ChatboxPanel.d.ts",
|
|
82
|
+
"import": "./dist/ChatboxPanel.js"
|
|
83
|
+
},
|
|
84
|
+
"./ModalChrome": {
|
|
85
|
+
"types": "./dist/ModalChrome.d.ts",
|
|
86
|
+
"import": "./dist/ModalChrome.js"
|
|
87
|
+
},
|
|
88
|
+
"./WidgetChrome": {
|
|
89
|
+
"types": "./dist/WidgetChrome.d.ts",
|
|
90
|
+
"import": "./dist/WidgetChrome.js"
|
|
91
|
+
},
|
|
92
|
+
"./EventListItem": {
|
|
93
|
+
"types": "./dist/EventListItem.d.ts",
|
|
94
|
+
"import": "./dist/EventListItem.js"
|
|
95
|
+
},
|
|
96
|
+
"./EventList": {
|
|
97
|
+
"types": "./dist/EventList.d.ts",
|
|
98
|
+
"import": "./dist/EventList.js"
|
|
99
|
+
},
|
|
100
|
+
"./StreamStatusPanel": {
|
|
101
|
+
"types": "./dist/StreamStatusPanel.d.ts",
|
|
102
|
+
"import": "./dist/StreamStatusPanel.js"
|
|
103
|
+
},
|
|
104
|
+
"./ViewersList": {
|
|
105
|
+
"types": "./dist/ViewersList.d.ts",
|
|
106
|
+
"import": "./dist/ViewersList.js"
|
|
107
|
+
},
|
|
108
|
+
"./ShortcutDockGrid": {
|
|
109
|
+
"types": "./dist/ShortcutDockGrid.d.ts",
|
|
110
|
+
"import": "./dist/ShortcutDockGrid.js"
|
|
111
|
+
},
|
|
112
|
+
"./GoalsList": {
|
|
113
|
+
"types": "./dist/GoalsList.d.ts",
|
|
114
|
+
"import": "./dist/GoalsList.js"
|
|
115
|
+
},
|
|
116
|
+
"./PlatformIcon": {
|
|
117
|
+
"types": "./dist/PlatformIcon.d.ts",
|
|
118
|
+
"import": "./dist/PlatformIcon.js"
|
|
119
|
+
},
|
|
120
|
+
"./ModQueueItem": {
|
|
121
|
+
"types": "./dist/ModQueueItem.d.ts",
|
|
122
|
+
"import": "./dist/ModQueueItem.js"
|
|
123
|
+
},
|
|
124
|
+
"./ModQueueList": {
|
|
125
|
+
"types": "./dist/ModQueueList.d.ts",
|
|
126
|
+
"import": "./dist/ModQueueList.js"
|
|
127
|
+
},
|
|
128
|
+
"./ModActivityLog": {
|
|
129
|
+
"types": "./dist/ModActivityLog.d.ts",
|
|
130
|
+
"import": "./dist/ModActivityLog.js"
|
|
131
|
+
},
|
|
132
|
+
"./SongRequestList": {
|
|
133
|
+
"types": "./dist/SongRequestList.d.ts",
|
|
134
|
+
"import": "./dist/SongRequestList.js"
|
|
135
|
+
},
|
|
72
136
|
"./utils": {
|
|
73
137
|
"types": "./dist/utils.d.ts",
|
|
74
138
|
"import": "./dist/utils.js"
|
|
@@ -128,8 +192,8 @@
|
|
|
128
192
|
"vitest": "^4.1.6"
|
|
129
193
|
},
|
|
130
194
|
"dependencies": {
|
|
131
|
-
"@lumiastream/lumia-translations": "1.
|
|
132
|
-
"@lumiastream/lumia-types": "3.
|
|
195
|
+
"@lumiastream/lumia-translations": "1.17.7",
|
|
196
|
+
"@lumiastream/lumia-types": "3.8.0",
|
|
133
197
|
"classnames": "^2.5.1",
|
|
134
198
|
"globals": "^17.4.0",
|
|
135
199
|
"nanoid": "^5.1.11",
|