@lumiastream/ui 0.7.7 → 0.8.1

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.
Files changed (56) hide show
  1. package/dist/ChatMessageItem.d.ts +45 -0
  2. package/dist/ChatMessageItem.js +432 -0
  3. package/dist/ChatboxPanel.d.ts +54 -0
  4. package/dist/ChatboxPanel.js +635 -0
  5. package/dist/EventList.d.ts +77 -0
  6. package/dist/EventList.js +284 -0
  7. package/dist/EventListItem.d.ts +28 -0
  8. package/dist/EventListItem.js +139 -0
  9. package/dist/GoalsList.d.ts +28 -0
  10. package/dist/GoalsList.js +84 -0
  11. package/dist/LSButton.d.ts +5 -13
  12. package/dist/LSButton.js +4 -2
  13. package/dist/LSCheckbox.js +2 -2
  14. package/dist/LSColorPicker.js +20 -9
  15. package/dist/LSDatePicker.js +19 -8
  16. package/dist/LSFontPicker.js +2 -2
  17. package/dist/LSInput.d.ts +8 -1
  18. package/dist/LSInput.js +19 -8
  19. package/dist/LSMultiSelect.js +37 -22
  20. package/dist/LSRadio.js +1 -1
  21. package/dist/LSSelect.d.ts +5 -1
  22. package/dist/LSSelect.js +39 -22
  23. package/dist/LSSliderInput.js +19 -8
  24. package/dist/LSSwitch.d.ts +24 -0
  25. package/dist/LSSwitch.js +51 -0
  26. package/dist/LSTextField.js +1 -1
  27. package/dist/LSVariableInputField.d.ts +6 -0
  28. package/dist/LSVariableInputField.js +400 -88
  29. package/dist/ModActivityLog.d.ts +26 -0
  30. package/dist/ModActivityLog.js +58 -0
  31. package/dist/ModQueueItem.d.ts +21 -0
  32. package/dist/ModQueueItem.js +101 -0
  33. package/dist/ModQueueList.d.ts +40 -0
  34. package/dist/ModQueueList.js +361 -0
  35. package/dist/ModalChrome.d.ts +87 -0
  36. package/dist/ModalChrome.js +265 -0
  37. package/dist/PlatformIcon.d.ts +19 -0
  38. package/dist/PlatformIcon.js +86 -0
  39. package/dist/ShortcutDockGrid.d.ts +41 -0
  40. package/dist/ShortcutDockGrid.js +121 -0
  41. package/dist/SongRequestList.d.ts +40 -0
  42. package/dist/SongRequestList.js +313 -0
  43. package/dist/StreamStatusPanel.d.ts +45 -0
  44. package/dist/StreamStatusPanel.js +190 -0
  45. package/dist/ViewersList.d.ts +40 -0
  46. package/dist/ViewersList.js +167 -0
  47. package/dist/WidgetChrome.d.ts +30 -0
  48. package/dist/WidgetChrome.js +48 -0
  49. package/dist/components.d.ts +18 -0
  50. package/dist/components.js +2249 -151
  51. package/dist/index.d.ts +18 -0
  52. package/dist/index.js +2685 -590
  53. package/dist/se-import.js +2643 -571
  54. package/dist/utils/chatMedia.js +0 -2
  55. package/dist/utils.js +0 -3
  56. package/package.json +67 -3
@@ -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.7.7",
3
+ "version": "0.8.1",
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.16.8",
132
- "@lumiastream/lumia-types": "3.7.0",
195
+ "@lumiastream/lumia-translations": "1.17.7",
196
+ "@lumiastream/lumia-types": "3.8.2",
133
197
  "classnames": "^2.5.1",
134
198
  "globals": "^17.4.0",
135
199
  "nanoid": "^5.1.11",