@fanvue/ui 3.15.0 → 3.16.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/cjs/components/AudioRecordButton/AudioRecordButton.cjs +54 -0
- package/dist/cjs/components/AudioRecordButton/AudioRecordButton.cjs.map +1 -0
- package/dist/cjs/components/AudioUpload/AudioUpload.cjs +5 -5
- package/dist/cjs/components/AudioUpload/AudioUpload.cjs.map +1 -1
- package/dist/cjs/components/ChatInput/ChatInput.cjs +6 -11
- package/dist/cjs/components/ChatInput/ChatInput.cjs.map +1 -1
- package/dist/cjs/components/ChatMessage/ChatMessage.cjs +228 -0
- package/dist/cjs/components/ChatMessage/ChatMessage.cjs.map +1 -0
- package/dist/cjs/components/DropdownMenu/DropdownMenu.cjs +160 -71
- package/dist/cjs/components/DropdownMenu/DropdownMenu.cjs.map +1 -1
- package/dist/cjs/components/Icons/DenseGridViewIcon.cjs +52 -0
- package/dist/cjs/components/Icons/DenseGridViewIcon.cjs.map +1 -0
- package/dist/cjs/components/MediaStatusIndicator/MediaStatusIndicator.cjs +66 -0
- package/dist/cjs/components/MediaStatusIndicator/MediaStatusIndicator.cjs.map +1 -0
- package/dist/cjs/components/Select/Select.cjs +61 -17
- package/dist/cjs/components/Select/Select.cjs.map +1 -1
- package/dist/cjs/components/SubscribeButton/SubscribeButton.cjs +53 -0
- package/dist/cjs/components/SubscribeButton/SubscribeButton.cjs.map +1 -0
- package/dist/cjs/index.cjs +10 -0
- package/dist/cjs/index.cjs.map +1 -1
- package/dist/components/AudioRecordButton/AudioRecordButton.mjs +37 -0
- package/dist/components/AudioRecordButton/AudioRecordButton.mjs.map +1 -0
- package/dist/components/AudioUpload/AudioUpload.mjs +5 -5
- package/dist/components/AudioUpload/AudioUpload.mjs.map +1 -1
- package/dist/components/ChatInput/ChatInput.mjs +6 -11
- package/dist/components/ChatInput/ChatInput.mjs.map +1 -1
- package/dist/components/ChatMessage/ChatMessage.mjs +211 -0
- package/dist/components/ChatMessage/ChatMessage.mjs.map +1 -0
- package/dist/components/DropdownMenu/DropdownMenu.mjs +161 -72
- package/dist/components/DropdownMenu/DropdownMenu.mjs.map +1 -1
- package/dist/components/Icons/DenseGridViewIcon.mjs +35 -0
- package/dist/components/Icons/DenseGridViewIcon.mjs.map +1 -0
- package/dist/components/MediaStatusIndicator/MediaStatusIndicator.mjs +49 -0
- package/dist/components/MediaStatusIndicator/MediaStatusIndicator.mjs.map +1 -0
- package/dist/components/Select/Select.mjs +61 -17
- package/dist/components/Select/Select.mjs.map +1 -1
- package/dist/components/SubscribeButton/SubscribeButton.mjs +36 -0
- package/dist/components/SubscribeButton/SubscribeButton.mjs.map +1 -0
- package/dist/index.d.ts +245 -4
- package/dist/index.mjs +10 -0
- package/dist/index.mjs.map +1 -1
- package/dist/styles/theme.css +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -6,6 +6,7 @@ import { AccordionItem } from "./components/Accordion/AccordionItem.mjs";
|
|
|
6
6
|
import { AccordionTrigger } from "./components/Accordion/AccordionTrigger.mjs";
|
|
7
7
|
import { Alert } from "./components/Alert/Alert.mjs";
|
|
8
8
|
import { AudioPlayer } from "./components/AudioPlayer/AudioPlayer.mjs";
|
|
9
|
+
import { AudioRecordButton } from "./components/AudioRecordButton/AudioRecordButton.mjs";
|
|
9
10
|
import { AudioUpload } from "./components/AudioUpload/AudioUpload.mjs";
|
|
10
11
|
import { useAudioRecorder } from "./components/AudioUpload/useAudioRecorder.mjs";
|
|
11
12
|
import { Autocomplete } from "./components/Autocomplete/Autocomplete.mjs";
|
|
@@ -18,6 +19,7 @@ import { Breadcrumb, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbP
|
|
|
18
19
|
import { Button } from "./components/Button/Button.mjs";
|
|
19
20
|
import { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle } from "./components/Card/Card.mjs";
|
|
20
21
|
import { ChatInput } from "./components/ChatInput/ChatInput.mjs";
|
|
22
|
+
import { ChatMessage } from "./components/ChatMessage/ChatMessage.mjs";
|
|
21
23
|
import { Checkbox } from "./components/Checkbox/Checkbox.mjs";
|
|
22
24
|
import { Chip } from "./components/Chip/Chip.mjs";
|
|
23
25
|
import { Count } from "./components/Count/Count.mjs";
|
|
@@ -77,6 +79,7 @@ import { CopyIcon } from "./components/Icons/CopyIcon.mjs";
|
|
|
77
79
|
import { CrossCircleIcon } from "./components/Icons/CrossCircleIcon.mjs";
|
|
78
80
|
import { CrossIcon } from "./components/Icons/CrossIcon.mjs";
|
|
79
81
|
import { CrownIcon } from "./components/Icons/CrownIcon.mjs";
|
|
82
|
+
import { DenseGridViewIcon } from "./components/Icons/DenseGridViewIcon.mjs";
|
|
80
83
|
import { DiamondIcon } from "./components/Icons/DiamondIcon.mjs";
|
|
81
84
|
import { DiscordIcon } from "./components/Icons/DiscordIcon.mjs";
|
|
82
85
|
import { DiscountIcon } from "./components/Icons/DiscountIcon.mjs";
|
|
@@ -204,6 +207,7 @@ import { InlineEdit } from "./components/InlineEdit/InlineEdit.mjs";
|
|
|
204
207
|
import { Link } from "./components/Link/Link.mjs";
|
|
205
208
|
import { Loader } from "./components/Loader/Loader.mjs";
|
|
206
209
|
import { Logo } from "./components/Logo/Logo.mjs";
|
|
210
|
+
import { MediaStatusIndicator } from "./components/MediaStatusIndicator/MediaStatusIndicator.mjs";
|
|
207
211
|
import { MobileStepper } from "./components/MobileStepper/MobileStepper.mjs";
|
|
208
212
|
import { OnlineBlinkingIcon } from "./components/OnlineBlinkingIcon/OnlineBlinkingIcon.mjs";
|
|
209
213
|
import { PageSelector } from "./components/PageSelector/PageSelector.mjs";
|
|
@@ -227,6 +231,7 @@ import { Slider } from "./components/Slider/Slider.mjs";
|
|
|
227
231
|
import { Snackbar } from "./components/Snackbar/Snackbar.mjs";
|
|
228
232
|
import { Stepper } from "./components/Stepper/Stepper.mjs";
|
|
229
233
|
import { StepperStep } from "./components/Stepper/StepperStep.mjs";
|
|
234
|
+
import { SubscribeButton } from "./components/SubscribeButton/SubscribeButton.mjs";
|
|
230
235
|
import { Switch } from "./components/Switch/Switch.mjs";
|
|
231
236
|
import { SwitchField } from "./components/SwitchField/SwitchField.mjs";
|
|
232
237
|
import { SwitchToggle } from "./components/SwitchToggle/SwitchToggle.mjs";
|
|
@@ -267,6 +272,7 @@ export {
|
|
|
267
272
|
ArrowUpRightIcon,
|
|
268
273
|
AtSignIcon,
|
|
269
274
|
AudioPlayer,
|
|
275
|
+
AudioRecordButton,
|
|
270
276
|
AudioUpload,
|
|
271
277
|
AutoMessageIcon,
|
|
272
278
|
Autocomplete,
|
|
@@ -302,6 +308,7 @@ export {
|
|
|
302
308
|
CardTitle,
|
|
303
309
|
ChartIcon,
|
|
304
310
|
ChatInput,
|
|
311
|
+
ChatMessage,
|
|
305
312
|
CheckBoxOffIcon,
|
|
306
313
|
CheckBoxOnIcon,
|
|
307
314
|
CheckCircleIcon,
|
|
@@ -328,6 +335,7 @@ export {
|
|
|
328
335
|
CrossIcon,
|
|
329
336
|
CrownIcon,
|
|
330
337
|
CyclingText,
|
|
338
|
+
DenseGridViewIcon,
|
|
331
339
|
Dialog,
|
|
332
340
|
DialogBody,
|
|
333
341
|
DialogClose,
|
|
@@ -418,6 +426,7 @@ export {
|
|
|
418
426
|
LogoutIcon,
|
|
419
427
|
LoveIcon,
|
|
420
428
|
MassMessageIcon,
|
|
429
|
+
MediaStatusIndicator,
|
|
421
430
|
MegaphoneIcon,
|
|
422
431
|
MenuCloseIcon,
|
|
423
432
|
MenuIcon,
|
|
@@ -482,6 +491,7 @@ export {
|
|
|
482
491
|
Stepper,
|
|
483
492
|
StepperStep,
|
|
484
493
|
StopIcon,
|
|
494
|
+
SubscribeButton,
|
|
485
495
|
SuccessIcon,
|
|
486
496
|
SunIcon,
|
|
487
497
|
Support2Icon,
|
package/dist/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
package/dist/styles/theme.css
CHANGED
|
@@ -637,7 +637,7 @@
|
|
|
637
637
|
|
|
638
638
|
.dark {
|
|
639
639
|
--color-neutral-alphas-50: var(--primitives-color-whitealpha-100);
|
|
640
|
-
--color-neutral-alphas-100:
|
|
640
|
+
--color-neutral-alphas-100: #ffffff26;
|
|
641
641
|
--color-neutral-alphas-150: #ffffffcc;
|
|
642
642
|
--color-neutral-alphas-200: var(--primitives-color-whitealpha-200);
|
|
643
643
|
--color-neutral-alphas-300: var(--primitives-color-whitealpha-300);
|