@100mslive/roomkit-react 0.2.3 → 0.2.4-alpha.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.
Files changed (84) hide show
  1. package/dist/{HLSView-2BP4GO3Q.js → HLSView-5I6UAYPZ.js} +6 -6
  2. package/dist/HLSView-5I6UAYPZ.js.map +7 -0
  3. package/dist/Prebuilt/common/constants.d.ts +1 -0
  4. package/dist/Prebuilt/components/Connection/TileConnection.d.ts +2 -3
  5. package/dist/Prebuilt/components/InsetTile.d.ts +3 -1
  6. package/dist/Prebuilt/components/LayoutModeSelector.d.ts +2 -0
  7. package/dist/Prebuilt/components/MoreSettings/ChangeNameContent.d.ts +10 -0
  8. package/dist/Prebuilt/components/MoreSettings/ChangeNameModal.d.ts +5 -0
  9. package/dist/Prebuilt/components/Polls/CreatePollQuiz/PollsQuizMenu.d.ts +2 -0
  10. package/dist/Prebuilt/components/Polls/CreateQuestions/SavedQuestion.d.ts +1 -2
  11. package/dist/Prebuilt/components/Polls/common/StatusIndicator.d.ts +4 -3
  12. package/dist/Prebuilt/components/Polls/common/constants.d.ts +5 -0
  13. package/dist/Prebuilt/components/ScreenshareDisplay.d.ts +2 -0
  14. package/dist/Prebuilt/components/ScreenshareTile.d.ts +7 -0
  15. package/dist/Prebuilt/components/SecondaryTiles.d.ts +1 -1
  16. package/dist/Prebuilt/components/Settings/LayoutSettings.d.ts +11 -0
  17. package/dist/Prebuilt/components/Settings/NotificationSettings.d.ts +2 -0
  18. package/dist/Prebuilt/components/Settings/SwitchWithLabel.d.ts +10 -0
  19. package/dist/Prebuilt/components/Settings/common.d.ts +878 -0
  20. package/dist/Prebuilt/components/TileMenu/TileMenu.d.ts +14 -0
  21. package/dist/Prebuilt/components/TileMenu/TileMenuContent.d.ts +7 -7
  22. package/dist/Prebuilt/components/VideoLayouts/ProminenceLayout.d.ts +4 -2
  23. package/dist/Prebuilt/components/VideoLayouts/interface.d.ts +1 -0
  24. package/dist/Prebuilt/components/VideoTile.d.ts +19 -0
  25. package/dist/Prebuilt/components/hooks/useDropdownList.d.ts +4 -0
  26. package/dist/{chunk-G25T3EBJ.js → chunk-OGCNZHHH.js} +1328 -1097
  27. package/dist/chunk-OGCNZHHH.js.map +7 -0
  28. package/dist/index.cjs.js +1826 -1575
  29. package/dist/index.cjs.js.map +4 -4
  30. package/dist/index.js +1 -1
  31. package/dist/meta.cjs.json +458 -293
  32. package/dist/meta.esbuild.json +470 -305
  33. package/package.json +6 -6
  34. package/src/Pagination/StyledPagination.tsx +1 -0
  35. package/src/Popover/index.tsx +8 -1
  36. package/src/Prebuilt/common/constants.ts +1 -0
  37. package/src/Prebuilt/components/AppData/AppData.tsx +2 -0
  38. package/src/Prebuilt/components/AppData/useUISettings.js +1 -1
  39. package/src/Prebuilt/components/Connection/TileConnection.tsx +13 -6
  40. package/src/Prebuilt/components/HlsStatsOverlay.jsx +2 -2
  41. package/src/Prebuilt/components/InsetTile.tsx +13 -6
  42. package/src/Prebuilt/components/LayoutModeSelector.tsx +106 -0
  43. package/src/Prebuilt/components/MoreSettings/{ChangeNameContent.jsx → ChangeNameContent.tsx} +10 -2
  44. package/src/Prebuilt/components/MoreSettings/{ChangeNameModal.jsx → ChangeNameModal.tsx} +14 -5
  45. package/src/Prebuilt/components/MoreSettings/SplitComponents/DesktopOptions.tsx +2 -2
  46. package/src/Prebuilt/components/MoreSettings/SplitComponents/MwebOptions.tsx +2 -2
  47. package/src/Prebuilt/components/Notifications/Notifications.tsx +0 -1
  48. package/src/Prebuilt/components/Playlist/VideoPlayer.jsx +1 -1
  49. package/src/Prebuilt/components/Polls/CreatePollQuiz/{PollsQuizMenu.jsx → PollsQuizMenu.tsx} +54 -26
  50. package/src/Prebuilt/components/Polls/CreateQuestions/CreateQuestions.jsx +21 -31
  51. package/src/Prebuilt/components/Polls/CreateQuestions/SavedQuestion.tsx +3 -17
  52. package/src/Prebuilt/components/Polls/Voting/LeaderboardSummary.tsx +1 -1
  53. package/src/Prebuilt/components/Polls/Voting/QuestionCard.jsx +1 -10
  54. package/src/Prebuilt/components/Polls/Voting/Voting.tsx +1 -3
  55. package/src/Prebuilt/components/Polls/common/StatusIndicator.tsx +12 -3
  56. package/src/Prebuilt/components/Polls/common/constants.ts +5 -0
  57. package/src/Prebuilt/components/Preview/PreviewForm.tsx +2 -2
  58. package/src/Prebuilt/components/PreviousRoleInMetadata.tsx +1 -1
  59. package/src/Prebuilt/components/{ScreenshareTile.jsx → ScreenshareTile.tsx} +39 -6
  60. package/src/Prebuilt/components/SecondaryTiles.tsx +36 -4
  61. package/src/Prebuilt/components/Settings/DeviceSettings.jsx +1 -1
  62. package/src/Prebuilt/components/Settings/{LayoutSettings.jsx → LayoutSettings.tsx} +58 -14
  63. package/src/Prebuilt/components/Settings/{NotificationSettings.jsx → NotificationSettings.tsx} +14 -3
  64. package/src/Prebuilt/components/Settings/SettingsModal.jsx +32 -6
  65. package/src/Prebuilt/components/Settings/{SwitchWithLabel.jsx → SwitchWithLabel.tsx} +15 -1
  66. package/src/Prebuilt/components/Settings/common.ts +16 -0
  67. package/src/Prebuilt/components/TileMenu/{TileMenu.jsx → TileMenu.tsx} +12 -4
  68. package/src/Prebuilt/components/TileMenu/TileMenuContent.tsx +12 -10
  69. package/src/Prebuilt/components/VideoLayouts/ProminenceLayout.tsx +29 -14
  70. package/src/Prebuilt/components/VideoLayouts/RoleProminence.tsx +12 -2
  71. package/src/Prebuilt/components/VideoLayouts/ScreenshareLayout.tsx +20 -5
  72. package/src/Prebuilt/components/VideoLayouts/interface.ts +1 -0
  73. package/src/Prebuilt/components/{VideoTile.jsx → VideoTile.tsx} +57 -44
  74. package/src/Prebuilt/components/VirtualBackground/VBPicker.tsx +2 -2
  75. package/src/Prebuilt/components/hooks/{useDropdownList.jsx → useDropdownList.ts} +2 -1
  76. package/src/Prebuilt/components/pdfAnnotator/shareScreenOptions.jsx +1 -1
  77. package/src/Prebuilt/layouts/HLSView.jsx +2 -2
  78. package/src/Prebuilt/layouts/SidePane.tsx +8 -4
  79. package/src/Prebuilt/layouts/VideoStreamingSection.tsx +1 -1
  80. package/src/VideoTile/StyledVideoTile.tsx +4 -4
  81. package/dist/HLSView-2BP4GO3Q.js.map +0 -7
  82. package/dist/chunk-G25T3EBJ.js.map +0 -7
  83. package/src/Prebuilt/components/Settings/common.js +0 -41
  84. /package/src/Prebuilt/components/{ScreenshareDisplay.jsx → ScreenshareDisplay.tsx} +0 -0
@@ -26,7 +26,7 @@
26
26
  "format": "esm"
27
27
  },
28
28
  "src/Prebuilt/common/constants.ts": {
29
- "bytes": 4276,
29
+ "bytes": 4304,
30
30
  "imports": [
31
31
  {
32
32
  "path": "@100mslive/react-sdk",
@@ -910,7 +910,7 @@
910
910
  "format": "esm"
911
911
  },
912
912
  "src/VideoTile/StyledVideoTile.tsx": {
913
- "bytes": 3003,
913
+ "bytes": 2968,
914
914
  "imports": [
915
915
  {
916
916
  "path": "src/Layout/index.tsx",
@@ -1005,7 +1005,7 @@
1005
1005
  "format": "esm"
1006
1006
  },
1007
1007
  "src/Pagination/StyledPagination.tsx": {
1008
- "bytes": 1187,
1008
+ "bytes": 1205,
1009
1009
  "imports": [
1010
1010
  {
1011
1011
  "path": "src/Theme/index.tsx",
@@ -1265,7 +1265,7 @@
1265
1265
  "format": "esm"
1266
1266
  },
1267
1267
  "src/Popover/index.tsx": {
1268
- "bytes": 626,
1268
+ "bytes": 750,
1269
1269
  "imports": [
1270
1270
  {
1271
1271
  "path": "@radix-ui/react-popover",
@@ -1908,6 +1908,37 @@
1908
1908
  ],
1909
1909
  "format": "esm"
1910
1910
  },
1911
+ "src/Prebuilt/components/Settings/SwitchWithLabel.tsx": {
1912
+ "bytes": 1102,
1913
+ "imports": [
1914
+ {
1915
+ "path": "react",
1916
+ "kind": "import-statement",
1917
+ "external": true
1918
+ },
1919
+ {
1920
+ "path": "src/Label/index.ts",
1921
+ "kind": "import-statement",
1922
+ "original": "../../../Label"
1923
+ },
1924
+ {
1925
+ "path": "src/Layout/index.tsx",
1926
+ "kind": "import-statement",
1927
+ "original": "../../../Layout"
1928
+ },
1929
+ {
1930
+ "path": "src/Switch/index.ts",
1931
+ "kind": "import-statement",
1932
+ "original": "../../../Switch"
1933
+ },
1934
+ {
1935
+ "path": "<define:process.env>",
1936
+ "kind": "import-statement",
1937
+ "external": true
1938
+ }
1939
+ ],
1940
+ "format": "esm"
1941
+ },
1911
1942
  "src/Prebuilt/components/hooks/useUserPreferences.jsx": {
1912
1943
  "bytes": 737,
1913
1944
  "imports": [
@@ -1930,7 +1961,7 @@
1930
1961
  "format": "esm"
1931
1962
  },
1932
1963
  "src/Prebuilt/components/AppData/useUISettings.js": {
1933
- "bytes": 6099,
1964
+ "bytes": 6029,
1934
1965
  "imports": [
1935
1966
  {
1936
1967
  "path": "react",
@@ -1965,6 +1996,78 @@
1965
1996
  ],
1966
1997
  "format": "esm"
1967
1998
  },
1999
+ "src/Prebuilt/components/Settings/common.ts": {
2000
+ "bytes": 269,
2001
+ "imports": [
2002
+ {
2003
+ "path": "src/index.ts",
2004
+ "kind": "import-statement",
2005
+ "original": "../../.."
2006
+ },
2007
+ {
2008
+ "path": "<define:process.env>",
2009
+ "kind": "import-statement",
2010
+ "external": true
2011
+ }
2012
+ ],
2013
+ "format": "esm"
2014
+ },
2015
+ "src/Prebuilt/components/Settings/LayoutSettings.tsx": {
2016
+ "bytes": 3849,
2017
+ "imports": [
2018
+ {
2019
+ "path": "react",
2020
+ "kind": "import-statement",
2021
+ "external": true
2022
+ },
2023
+ {
2024
+ "path": "@100mslive/react-sdk",
2025
+ "kind": "import-statement",
2026
+ "external": true
2027
+ },
2028
+ {
2029
+ "path": "@100mslive/react-icons",
2030
+ "kind": "import-statement",
2031
+ "external": true
2032
+ },
2033
+ {
2034
+ "path": "src/index.ts",
2035
+ "kind": "import-statement",
2036
+ "original": "../../.."
2037
+ },
2038
+ {
2039
+ "path": "src/Prebuilt/components/Settings/SwitchWithLabel.tsx",
2040
+ "kind": "import-statement",
2041
+ "original": "./SwitchWithLabel"
2042
+ },
2043
+ {
2044
+ "path": "src/Prebuilt/components/AppData/useUISettings.js",
2045
+ "kind": "import-statement",
2046
+ "original": "../AppData/useUISettings"
2047
+ },
2048
+ {
2049
+ "path": "src/Prebuilt/components/Settings/common.ts",
2050
+ "kind": "import-statement",
2051
+ "original": "./common"
2052
+ },
2053
+ {
2054
+ "path": "src/Prebuilt/common/constants.ts",
2055
+ "kind": "import-statement",
2056
+ "original": "../../common/constants"
2057
+ },
2058
+ {
2059
+ "path": "<define:process.env>",
2060
+ "kind": "import-statement",
2061
+ "external": true
2062
+ },
2063
+ {
2064
+ "path": "<runtime>",
2065
+ "kind": "import-statement",
2066
+ "external": true
2067
+ }
2068
+ ],
2069
+ "format": "esm"
2070
+ },
1968
2071
  "src/Prebuilt/components/AppData/useSidepane.js": {
1969
2072
  "bytes": 2509,
1970
2073
  "imports": [
@@ -1997,7 +2100,7 @@
1997
2100
  "format": "esm"
1998
2101
  },
1999
2102
  "src/Prebuilt/components/AppData/AppData.tsx": {
2000
- "bytes": 4832,
2103
+ "bytes": 4939,
2001
2104
  "imports": [
2002
2105
  {
2003
2106
  "path": "react",
@@ -2009,6 +2112,11 @@
2009
2112
  "kind": "import-statement",
2010
2113
  "external": true
2011
2114
  },
2115
+ {
2116
+ "path": "src/Prebuilt/components/Settings/LayoutSettings.tsx",
2117
+ "kind": "import-statement",
2118
+ "original": "../Settings/LayoutSettings"
2119
+ },
2012
2120
  {
2013
2121
  "path": "src/Prebuilt/components/hooks/useUserPreferences.jsx",
2014
2122
  "kind": "import-statement",
@@ -2308,8 +2416,8 @@
2308
2416
  ],
2309
2417
  "format": "esm"
2310
2418
  },
2311
- "src/Prebuilt/components/hooks/useDropdownList.jsx": {
2312
- "bytes": 747,
2419
+ "src/Prebuilt/components/hooks/useDropdownList.ts": {
2420
+ "bytes": 811,
2313
2421
  "imports": [
2314
2422
  {
2315
2423
  "path": "react",
@@ -2398,7 +2506,7 @@
2398
2506
  "original": "../IconButton"
2399
2507
  },
2400
2508
  {
2401
- "path": "src/Prebuilt/components/hooks/useDropdownList.jsx",
2509
+ "path": "src/Prebuilt/components/hooks/useDropdownList.ts",
2402
2510
  "kind": "import-statement",
2403
2511
  "original": "./hooks/useDropdownList"
2404
2512
  },
@@ -2623,7 +2731,7 @@
2623
2731
  "original": "./LeaveSessionContent"
2624
2732
  },
2625
2733
  {
2626
- "path": "src/Prebuilt/components/hooks/useDropdownList.jsx",
2734
+ "path": "src/Prebuilt/components/hooks/useDropdownList.ts",
2627
2735
  "kind": "import-statement",
2628
2736
  "original": "../hooks/useDropdownList"
2629
2737
  },
@@ -2761,7 +2869,7 @@
2761
2869
  "original": "./LeaveSessionContent"
2762
2870
  },
2763
2871
  {
2764
- "path": "src/Prebuilt/components/hooks/useDropdownList.jsx",
2872
+ "path": "src/Prebuilt/components/hooks/useDropdownList.ts",
2765
2873
  "kind": "import-statement",
2766
2874
  "original": "../hooks/useDropdownList"
2767
2875
  },
@@ -3244,7 +3352,7 @@
3244
3352
  "format": "esm"
3245
3353
  },
3246
3354
  "src/Prebuilt/components/Settings/DeviceSettings.jsx": {
3247
- "bytes": 7183,
3355
+ "bytes": 7180,
3248
3356
  "imports": [
3249
3357
  {
3250
3358
  "path": "react",
@@ -3292,86 +3400,9 @@
3292
3400
  "original": "../hooks/useDropdownSelection"
3293
3401
  },
3294
3402
  {
3295
- "path": "src/Prebuilt/components/Settings/common.js",
3403
+ "path": "src/Prebuilt/components/Settings/common.ts",
3296
3404
  "kind": "import-statement",
3297
- "original": "./common.js"
3298
- },
3299
- {
3300
- "path": "src/Prebuilt/common/constants.ts",
3301
- "kind": "import-statement",
3302
- "original": "../../common/constants"
3303
- },
3304
- {
3305
- "path": "<define:process.env>",
3306
- "kind": "import-statement",
3307
- "external": true
3308
- }
3309
- ],
3310
- "format": "esm"
3311
- },
3312
- "src/Prebuilt/components/Settings/SwitchWithLabel.jsx": {
3313
- "bytes": 951,
3314
- "imports": [
3315
- {
3316
- "path": "react",
3317
- "kind": "import-statement",
3318
- "external": true
3319
- },
3320
- {
3321
- "path": "src/Label/index.ts",
3322
- "kind": "import-statement",
3323
- "original": "../../../Label"
3324
- },
3325
- {
3326
- "path": "src/Layout/index.tsx",
3327
- "kind": "import-statement",
3328
- "original": "../../../Layout"
3329
- },
3330
- {
3331
- "path": "src/Switch/index.ts",
3332
- "kind": "import-statement",
3333
- "original": "../../../Switch"
3334
- },
3335
- {
3336
- "path": "<define:process.env>",
3337
- "kind": "import-statement",
3338
- "external": true
3339
- }
3340
- ],
3341
- "format": "esm"
3342
- },
3343
- "src/Prebuilt/components/Settings/LayoutSettings.jsx": {
3344
- "bytes": 2270,
3345
- "imports": [
3346
- {
3347
- "path": "react",
3348
- "kind": "import-statement",
3349
- "external": true
3350
- },
3351
- {
3352
- "path": "@100mslive/react-sdk",
3353
- "kind": "import-statement",
3354
- "external": true
3355
- },
3356
- {
3357
- "path": "src/index.ts",
3358
- "kind": "import-statement",
3359
- "original": "../../../"
3360
- },
3361
- {
3362
- "path": "src/Prebuilt/components/Settings/SwitchWithLabel.jsx",
3363
- "kind": "import-statement",
3364
- "original": "./SwitchWithLabel"
3365
- },
3366
- {
3367
- "path": "src/Prebuilt/components/AppData/useUISettings.js",
3368
- "kind": "import-statement",
3369
- "original": "../AppData/useUISettings"
3370
- },
3371
- {
3372
- "path": "src/Prebuilt/components/Settings/common.js",
3373
- "kind": "import-statement",
3374
- "original": "./common.js"
3405
+ "original": "./common"
3375
3406
  },
3376
3407
  {
3377
3408
  "path": "src/Prebuilt/common/constants.ts",
@@ -3382,17 +3413,12 @@
3382
3413
  "path": "<define:process.env>",
3383
3414
  "kind": "import-statement",
3384
3415
  "external": true
3385
- },
3386
- {
3387
- "path": "<runtime>",
3388
- "kind": "import-statement",
3389
- "external": true
3390
3416
  }
3391
3417
  ],
3392
3418
  "format": "esm"
3393
3419
  },
3394
- "src/Prebuilt/components/Settings/NotificationSettings.jsx": {
3395
- "bytes": 1741,
3420
+ "src/Prebuilt/components/Settings/NotificationSettings.tsx": {
3421
+ "bytes": 1860,
3396
3422
  "imports": [
3397
3423
  {
3398
3424
  "path": "react",
@@ -3407,10 +3433,10 @@
3407
3433
  {
3408
3434
  "path": "src/index.ts",
3409
3435
  "kind": "import-statement",
3410
- "original": "../../../"
3436
+ "original": "../../.."
3411
3437
  },
3412
3438
  {
3413
- "path": "src/Prebuilt/components/Settings/SwitchWithLabel.jsx",
3439
+ "path": "src/Prebuilt/components/Settings/SwitchWithLabel.tsx",
3414
3440
  "kind": "import-statement",
3415
3441
  "original": "./SwitchWithLabel"
3416
3442
  },
@@ -3420,9 +3446,9 @@
3420
3446
  "original": "../AppData/useUISettings"
3421
3447
  },
3422
3448
  {
3423
- "path": "src/Prebuilt/components/Settings/common.js",
3449
+ "path": "src/Prebuilt/components/Settings/common.ts",
3424
3450
  "kind": "import-statement",
3425
- "original": "./common.js"
3451
+ "original": "./common"
3426
3452
  },
3427
3453
  {
3428
3454
  "path": "src/Prebuilt/common/constants.ts",
@@ -3437,44 +3463,8 @@
3437
3463
  ],
3438
3464
  "format": "esm"
3439
3465
  },
3440
- "src/Prebuilt/components/Settings/common.js": {
3441
- "bytes": 935,
3442
- "imports": [
3443
- {
3444
- "path": "@100mslive/react-icons",
3445
- "kind": "import-statement",
3446
- "external": true
3447
- },
3448
- {
3449
- "path": "src/index.ts",
3450
- "kind": "import-statement",
3451
- "original": "../../.."
3452
- },
3453
- {
3454
- "path": "src/Prebuilt/components/Settings/DeviceSettings.jsx",
3455
- "kind": "import-statement",
3456
- "original": "../Settings/DeviceSettings"
3457
- },
3458
- {
3459
- "path": "src/Prebuilt/components/Settings/LayoutSettings.jsx",
3460
- "kind": "import-statement",
3461
- "original": "../Settings/LayoutSettings"
3462
- },
3463
- {
3464
- "path": "src/Prebuilt/components/Settings/NotificationSettings.jsx",
3465
- "kind": "import-statement",
3466
- "original": "../Settings/NotificationSettings"
3467
- },
3468
- {
3469
- "path": "<define:process.env>",
3470
- "kind": "import-statement",
3471
- "external": true
3472
- }
3473
- ],
3474
- "format": "esm"
3475
- },
3476
3466
  "src/Prebuilt/components/Settings/SettingsModal.jsx": {
3477
- "bytes": 8869,
3467
+ "bytes": 9473,
3478
3468
  "imports": [
3479
3469
  {
3480
3470
  "path": "react",
@@ -3532,9 +3522,24 @@
3532
3522
  "original": "../../../Theme"
3533
3523
  },
3534
3524
  {
3535
- "path": "src/Prebuilt/components/Settings/common.js",
3525
+ "path": "src/Prebuilt/components/Settings/DeviceSettings.jsx",
3526
+ "kind": "import-statement",
3527
+ "original": "./DeviceSettings"
3528
+ },
3529
+ {
3530
+ "path": "src/Prebuilt/components/Settings/LayoutSettings.tsx",
3531
+ "kind": "import-statement",
3532
+ "original": "./LayoutSettings"
3533
+ },
3534
+ {
3535
+ "path": "src/Prebuilt/components/Settings/NotificationSettings.tsx",
3536
3536
  "kind": "import-statement",
3537
- "original": "./common.js"
3537
+ "original": "./NotificationSettings"
3538
+ },
3539
+ {
3540
+ "path": "src/Prebuilt/components/Settings/common.ts",
3541
+ "kind": "import-statement",
3542
+ "original": "./common"
3538
3543
  },
3539
3544
  {
3540
3545
  "path": "<define:process.env>",
@@ -4040,7 +4045,7 @@
4040
4045
  "format": "esm"
4041
4046
  },
4042
4047
  "src/Prebuilt/components/MoreSettings/SplitComponents/DesktopOptions.tsx": {
4043
- "bytes": 7910,
4048
+ "bytes": 7916,
4044
4049
  "imports": [
4045
4050
  {
4046
4051
  "path": "react",
@@ -4123,7 +4128,7 @@
4123
4128
  "original": "../MuteAllModal"
4124
4129
  },
4125
4130
  {
4126
- "path": "src/Prebuilt/components/hooks/useDropdownList.jsx",
4131
+ "path": "src/Prebuilt/components/hooks/useDropdownList.ts",
4127
4132
  "kind": "import-statement",
4128
4133
  "original": "../../hooks/useDropdownList"
4129
4134
  },
@@ -4498,7 +4503,7 @@
4498
4503
  "format": "cjs"
4499
4504
  },
4500
4505
  "../hms-video-store/dist/index.js": {
4501
- "bytes": 321724,
4506
+ "bytes": 322541,
4502
4507
  "imports": [
4503
4508
  {
4504
4509
  "path": "../../node_modules/reselect/es/index.js",
@@ -4869,8 +4874,8 @@
4869
4874
  ],
4870
4875
  "format": "esm"
4871
4876
  },
4872
- "src/Prebuilt/components/MoreSettings/ChangeNameContent.jsx": {
4873
- "bytes": 2933,
4877
+ "src/Prebuilt/components/MoreSettings/ChangeNameContent.tsx": {
4878
+ "bytes": 3152,
4874
4879
  "imports": [
4875
4880
  {
4876
4881
  "path": "react",
@@ -4915,8 +4920,8 @@
4915
4920
  ],
4916
4921
  "format": "esm"
4917
4922
  },
4918
- "src/Prebuilt/components/MoreSettings/ChangeNameModal.jsx": {
4919
- "bytes": 2129,
4923
+ "src/Prebuilt/components/MoreSettings/ChangeNameModal.tsx": {
4924
+ "bytes": 2330,
4920
4925
  "imports": [
4921
4926
  {
4922
4927
  "path": "react",
@@ -4936,7 +4941,7 @@
4936
4941
  {
4937
4942
  "path": "src/index.ts",
4938
4943
  "kind": "import-statement",
4939
- "original": "../../../"
4944
+ "original": "../../.."
4940
4945
  },
4941
4946
  {
4942
4947
  "path": "src/Sheet/index.ts",
@@ -4949,7 +4954,7 @@
4949
4954
  "original": "../Toast/ToastManager"
4950
4955
  },
4951
4956
  {
4952
- "path": "src/Prebuilt/components/MoreSettings/ChangeNameContent.jsx",
4957
+ "path": "src/Prebuilt/components/MoreSettings/ChangeNameContent.tsx",
4953
4958
  "kind": "import-statement",
4954
4959
  "original": "./ChangeNameContent"
4955
4960
  },
@@ -4998,7 +5003,7 @@
4998
5003
  "format": "esm"
4999
5004
  },
5000
5005
  "src/Prebuilt/components/MoreSettings/SplitComponents/MwebOptions.tsx": {
5001
- "bytes": 11775,
5006
+ "bytes": 11781,
5002
5007
  "imports": [
5003
5008
  {
5004
5009
  "path": "react",
@@ -5066,7 +5071,7 @@
5066
5071
  "original": "../ActionTile"
5067
5072
  },
5068
5073
  {
5069
- "path": "src/Prebuilt/components/MoreSettings/ChangeNameModal.jsx",
5074
+ "path": "src/Prebuilt/components/MoreSettings/ChangeNameModal.tsx",
5070
5075
  "kind": "import-statement",
5071
5076
  "original": "../ChangeNameModal"
5072
5077
  },
@@ -5086,7 +5091,7 @@
5086
5091
  "original": "../../AppData/useUISettings"
5087
5092
  },
5088
5093
  {
5089
- "path": "src/Prebuilt/components/hooks/useDropdownList.jsx",
5094
+ "path": "src/Prebuilt/components/hooks/useDropdownList.ts",
5090
5095
  "kind": "import-statement",
5091
5096
  "original": "../../hooks/useDropdownList"
5092
5097
  },
@@ -5410,7 +5415,7 @@
5410
5415
  "format": "esm"
5411
5416
  },
5412
5417
  "src/Prebuilt/components/pdfAnnotator/shareScreenOptions.jsx": {
5413
- "bytes": 6576,
5418
+ "bytes": 6568,
5414
5419
  "imports": [
5415
5420
  {
5416
5421
  "path": "react",
@@ -6219,19 +6224,40 @@
6219
6224
  ],
6220
6225
  "format": "esm"
6221
6226
  },
6227
+ "src/Prebuilt/components/Polls/common/constants.ts": {
6228
+ "bytes": 81,
6229
+ "imports": [
6230
+ {
6231
+ "path": "<define:process.env>",
6232
+ "kind": "import-statement",
6233
+ "external": true
6234
+ }
6235
+ ],
6236
+ "format": "esm"
6237
+ },
6222
6238
  "src/Prebuilt/components/Polls/common/StatusIndicator.tsx": {
6223
- "bytes": 605,
6239
+ "bytes": 895,
6224
6240
  "imports": [
6225
6241
  {
6226
6242
  "path": "react",
6227
6243
  "kind": "import-statement",
6228
6244
  "external": true
6229
6245
  },
6246
+ {
6247
+ "path": "@100mslive/react-sdk",
6248
+ "kind": "import-statement",
6249
+ "external": true
6250
+ },
6230
6251
  {
6231
6252
  "path": "src/index.ts",
6232
6253
  "kind": "import-statement",
6233
6254
  "original": "../../../../"
6234
6255
  },
6256
+ {
6257
+ "path": "src/Prebuilt/components/Polls/common/constants.ts",
6258
+ "kind": "import-statement",
6259
+ "original": "./constants"
6260
+ },
6235
6261
  {
6236
6262
  "path": "<define:process.env>",
6237
6263
  "kind": "import-statement",
@@ -6240,8 +6266,8 @@
6240
6266
  ],
6241
6267
  "format": "esm"
6242
6268
  },
6243
- "src/Prebuilt/components/Polls/CreatePollQuiz/PollsQuizMenu.jsx": {
6244
- "bytes": 7668,
6269
+ "src/Prebuilt/components/Polls/CreatePollQuiz/PollsQuizMenu.tsx": {
6270
+ "bytes": 8071,
6245
6271
  "imports": [
6246
6272
  {
6247
6273
  "path": "react",
@@ -6261,7 +6287,7 @@
6261
6287
  {
6262
6288
  "path": "src/index.ts",
6263
6289
  "kind": "import-statement",
6264
- "original": "../../../../"
6290
+ "original": "../../../.."
6265
6291
  },
6266
6292
  {
6267
6293
  "path": "src/Prebuilt/components/Streaming/Common.jsx",
@@ -6610,7 +6636,7 @@
6610
6636
  "format": "esm"
6611
6637
  },
6612
6638
  "src/Prebuilt/components/Polls/CreateQuestions/SavedQuestion.tsx": {
6613
- "bytes": 2317,
6639
+ "bytes": 1727,
6614
6640
  "imports": [
6615
6641
  {
6616
6642
  "path": "react",
@@ -6632,16 +6658,6 @@
6632
6658
  "kind": "import-statement",
6633
6659
  "original": "../../../../"
6634
6660
  },
6635
- {
6636
- "path": "src/Prebuilt/IconButton.jsx",
6637
- "kind": "import-statement",
6638
- "original": "../../../IconButton"
6639
- },
6640
- {
6641
- "path": "src/Prebuilt/components/Polls/CreateQuestions/DeleteQuestionModal.tsx",
6642
- "kind": "import-statement",
6643
- "original": "./DeleteQuestionModal"
6644
- },
6645
6661
  {
6646
6662
  "path": "src/Prebuilt/common/constants.ts",
6647
6663
  "kind": "import-statement",
@@ -6656,7 +6672,7 @@
6656
6672
  "format": "esm"
6657
6673
  },
6658
6674
  "src/Prebuilt/components/Polls/CreateQuestions/CreateQuestions.jsx": {
6659
- "bytes": 5120,
6675
+ "bytes": 5091,
6660
6676
  "imports": [
6661
6677
  {
6662
6678
  "path": "react",
@@ -6872,7 +6888,7 @@
6872
6888
  "format": "esm"
6873
6889
  },
6874
6890
  "src/Prebuilt/components/Polls/Voting/LeaderboardSummary.tsx": {
6875
- "bytes": 4084,
6891
+ "bytes": 4089,
6876
6892
  "imports": [
6877
6893
  {
6878
6894
  "path": "react",
@@ -6948,7 +6964,7 @@
6948
6964
  "format": "esm"
6949
6965
  },
6950
6966
  "src/Prebuilt/components/Polls/Voting/QuestionCard.jsx": {
6951
- "bytes": 6905,
6967
+ "bytes": 6844,
6952
6968
  "imports": [
6953
6969
  {
6954
6970
  "path": "react",
@@ -7066,7 +7082,7 @@
7066
7082
  "format": "esm"
7067
7083
  },
7068
7084
  "src/Prebuilt/components/Polls/Voting/Voting.tsx": {
7069
- "bytes": 3340,
7085
+ "bytes": 3300,
7070
7086
  "imports": [
7071
7087
  {
7072
7088
  "path": "react",
@@ -7135,7 +7151,7 @@
7135
7151
  "external": true
7136
7152
  },
7137
7153
  {
7138
- "path": "src/Prebuilt/components/Polls/CreatePollQuiz/PollsQuizMenu.jsx",
7154
+ "path": "src/Prebuilt/components/Polls/CreatePollQuiz/PollsQuizMenu.tsx",
7139
7155
  "kind": "import-statement",
7140
7156
  "original": "./CreatePollQuiz/PollsQuizMenu"
7141
7157
  },
@@ -8332,13 +8348,18 @@
8332
8348
  "format": "esm"
8333
8349
  },
8334
8350
  "src/Prebuilt/components/Connection/TileConnection.tsx": {
8335
- "bytes": 1648,
8351
+ "bytes": 2166,
8336
8352
  "imports": [
8337
8353
  {
8338
8354
  "path": "react",
8339
8355
  "kind": "import-statement",
8340
8356
  "external": true
8341
8357
  },
8358
+ {
8359
+ "path": "@100mslive/react-sdk",
8360
+ "kind": "import-statement",
8361
+ "external": true
8362
+ },
8342
8363
  {
8343
8364
  "path": "@100mslive/react-icons",
8344
8365
  "kind": "import-statement",
@@ -8354,6 +8375,11 @@
8354
8375
  "kind": "import-statement",
8355
8376
  "original": "./ConnectionIndicator"
8356
8377
  },
8378
+ {
8379
+ "path": "src/Prebuilt/common/constants.ts",
8380
+ "kind": "import-statement",
8381
+ "original": "../../common/constants"
8382
+ },
8357
8383
  {
8358
8384
  "path": "<define:process.env>",
8359
8385
  "kind": "import-statement",
@@ -8379,7 +8405,7 @@
8379
8405
  "format": "esm"
8380
8406
  },
8381
8407
  "src/Prebuilt/components/TileMenu/TileMenuContent.tsx": {
8382
- "bytes": 11476,
8408
+ "bytes": 11503,
8383
8409
  "imports": [
8384
8410
  {
8385
8411
  "path": "react",
@@ -8469,8 +8495,8 @@
8469
8495
  ],
8470
8496
  "format": "esm"
8471
8497
  },
8472
- "src/Prebuilt/components/TileMenu/TileMenu.jsx": {
8473
- "bytes": 4631,
8498
+ "src/Prebuilt/components/TileMenu/TileMenu.tsx": {
8499
+ "bytes": 4835,
8474
8500
  "imports": [
8475
8501
  {
8476
8502
  "path": "react",
@@ -8518,7 +8544,7 @@
8518
8544
  "original": "../../../TileMenu"
8519
8545
  },
8520
8546
  {
8521
- "path": "src/Prebuilt/components/MoreSettings/ChangeNameModal.jsx",
8547
+ "path": "src/Prebuilt/components/MoreSettings/ChangeNameModal.tsx",
8522
8548
  "kind": "import-statement",
8523
8549
  "original": "../MoreSettings/ChangeNameModal"
8524
8550
  },
@@ -8528,7 +8554,7 @@
8528
8554
  "original": "./TileMenuContent"
8529
8555
  },
8530
8556
  {
8531
- "path": "src/Prebuilt/components/hooks/useDropdownList.jsx",
8557
+ "path": "src/Prebuilt/components/hooks/useDropdownList.ts",
8532
8558
  "kind": "import-statement",
8533
8559
  "original": "../hooks/useDropdownList"
8534
8560
  },
@@ -8566,8 +8592,8 @@
8566
8592
  ],
8567
8593
  "format": "esm"
8568
8594
  },
8569
- "src/Prebuilt/components/VideoTile.jsx": {
8570
- "bytes": 6701,
8595
+ "src/Prebuilt/components/VideoTile.tsx": {
8596
+ "bytes": 7106,
8571
8597
  "imports": [
8572
8598
  {
8573
8599
  "path": "react",
@@ -8595,7 +8621,7 @@
8595
8621
  "original": "./Connection/TileConnection"
8596
8622
  },
8597
8623
  {
8598
- "path": "src/Prebuilt/components/TileMenu/TileMenu.jsx",
8624
+ "path": "src/Prebuilt/components/TileMenu/TileMenu.tsx",
8599
8625
  "kind": "import-statement",
8600
8626
  "original": "./TileMenu/TileMenu"
8601
8627
  },
@@ -8614,6 +8640,11 @@
8614
8640
  "kind": "import-statement",
8615
8641
  "original": "../../Stats"
8616
8642
  },
8643
+ {
8644
+ "path": "../../Theme",
8645
+ "kind": "import-statement",
8646
+ "external": true
8647
+ },
8617
8648
  {
8618
8649
  "path": "src/Video/index.tsx",
8619
8650
  "kind": "import-statement",
@@ -8848,7 +8879,7 @@
8848
8879
  "format": "esm"
8849
8880
  },
8850
8881
  "src/Prebuilt/layouts/SidePane.tsx": {
8851
- "bytes": 4654,
8882
+ "bytes": 4995,
8852
8883
  "imports": [
8853
8884
  {
8854
8885
  "path": "react",
@@ -8870,6 +8901,11 @@
8870
8901
  "kind": "import-statement",
8871
8902
  "original": "../components/Polls/Polls"
8872
8903
  },
8904
+ {
8905
+ "path": "src/Prebuilt/components/Settings/LayoutSettings.tsx",
8906
+ "kind": "import-statement",
8907
+ "original": "../components/Settings/LayoutSettings"
8908
+ },
8873
8909
  {
8874
8910
  "path": "src/Prebuilt/components/SidePaneTabs.tsx",
8875
8911
  "kind": "import-statement",
@@ -8881,7 +8917,7 @@
8881
8917
  "external": true
8882
8918
  },
8883
8919
  {
8884
- "path": "src/Prebuilt/components/VideoTile.jsx",
8920
+ "path": "src/Prebuilt/components/VideoTile.tsx",
8885
8921
  "kind": "import-statement",
8886
8922
  "original": "../components/VideoTile"
8887
8923
  },
@@ -8905,6 +8941,11 @@
8905
8941
  "kind": "import-statement",
8906
8942
  "original": "../components/AppData/useSidepane"
8907
8943
  },
8944
+ {
8945
+ "path": "src/Prebuilt/components/AppData/useUISettings.js",
8946
+ "kind": "import-statement",
8947
+ "original": "../components/AppData/useUISettings"
8948
+ },
8908
8949
  {
8909
8950
  "path": "src/Prebuilt/provider/roomLayoutProvider/hooks/useRoomLayoutScreen.ts",
8910
8951
  "kind": "import-statement",
@@ -9047,7 +9088,7 @@
9047
9088
  "format": "esm"
9048
9089
  },
9049
9090
  "src/Prebuilt/components/Preview/PreviewForm.tsx": {
9050
- "bytes": 2841,
9091
+ "bytes": 2843,
9051
9092
  "imports": [
9052
9093
  {
9053
9094
  "path": "react",
@@ -9327,7 +9368,7 @@
9327
9368
  "format": "esm"
9328
9369
  },
9329
9370
  "src/Prebuilt/components/InsetTile.tsx": {
9330
- "bytes": 4247,
9371
+ "bytes": 4348,
9331
9372
  "imports": [
9332
9373
  {
9333
9374
  "path": "react",
@@ -9380,7 +9421,7 @@
9380
9421
  "original": "./AudioVideoToggle"
9381
9422
  },
9382
9423
  {
9383
- "path": "src/Prebuilt/components/VideoTile.jsx",
9424
+ "path": "src/Prebuilt/components/VideoTile.tsx",
9384
9425
  "kind": "import-statement",
9385
9426
  "original": "./VideoTile"
9386
9427
  },
@@ -9457,7 +9498,7 @@
9457
9498
  "original": "../../../Layout"
9458
9499
  },
9459
9500
  {
9460
- "path": "src/Prebuilt/components/VideoTile.jsx",
9501
+ "path": "src/Prebuilt/components/VideoTile.tsx",
9461
9502
  "kind": "import-statement",
9462
9503
  "original": "../VideoTile"
9463
9504
  },
@@ -9582,7 +9623,7 @@
9582
9623
  "format": "esm"
9583
9624
  },
9584
9625
  "src/Prebuilt/components/VideoLayouts/ProminenceLayout.tsx": {
9585
- "bytes": 2085,
9626
+ "bytes": 2457,
9586
9627
  "imports": [
9587
9628
  {
9588
9629
  "path": "react",
@@ -9605,7 +9646,7 @@
9605
9646
  "external": true
9606
9647
  },
9607
9648
  {
9608
- "path": "src/Prebuilt/components/VideoTile.jsx",
9649
+ "path": "src/Prebuilt/components/VideoTile.tsx",
9609
9650
  "kind": "import-statement",
9610
9651
  "original": "../VideoTile"
9611
9652
  },
@@ -9628,7 +9669,7 @@
9628
9669
  "format": "esm"
9629
9670
  },
9630
9671
  "src/Prebuilt/components/SecondaryTiles.tsx": {
9631
- "bytes": 1217,
9672
+ "bytes": 2609,
9632
9673
  "imports": [
9633
9674
  {
9634
9675
  "path": "react",
@@ -9640,6 +9681,11 @@
9640
9681
  "kind": "import-statement",
9641
9682
  "external": true
9642
9683
  },
9684
+ {
9685
+ "path": "@100mslive/react-sdk",
9686
+ "kind": "import-statement",
9687
+ "external": true
9688
+ },
9643
9689
  {
9644
9690
  "path": "./VideoLayouts/interface",
9645
9691
  "kind": "import-statement",
@@ -9665,6 +9711,11 @@
9665
9711
  "kind": "import-statement",
9666
9712
  "original": "./hooks/useTileLayout"
9667
9713
  },
9714
+ {
9715
+ "path": "src/Prebuilt/common/constants.ts",
9716
+ "kind": "import-statement",
9717
+ "original": "../common/constants"
9718
+ },
9668
9719
  {
9669
9720
  "path": "<define:process.env>",
9670
9721
  "kind": "import-statement",
@@ -9700,7 +9751,7 @@
9700
9751
  "format": "esm"
9701
9752
  },
9702
9753
  "src/Prebuilt/components/VideoLayouts/RoleProminence.tsx": {
9703
- "bytes": 1904,
9754
+ "bytes": 2339,
9704
9755
  "imports": [
9705
9756
  {
9706
9757
  "path": "react",
@@ -9727,6 +9778,11 @@
9727
9778
  "kind": "import-statement",
9728
9779
  "original": "../SecondaryTiles"
9729
9780
  },
9781
+ {
9782
+ "path": "src/Prebuilt/components/Settings/LayoutSettings.tsx",
9783
+ "kind": "import-statement",
9784
+ "original": "../Settings/LayoutSettings"
9785
+ },
9730
9786
  {
9731
9787
  "path": "src/Prebuilt/components/VideoLayouts/Grid.tsx",
9732
9788
  "kind": "import-statement",
@@ -9742,6 +9798,11 @@
9742
9798
  "kind": "import-statement",
9743
9799
  "original": "./ProminenceLayout"
9744
9800
  },
9801
+ {
9802
+ "path": "src/Prebuilt/components/AppData/useUISettings.js",
9803
+ "kind": "import-statement",
9804
+ "original": "../AppData/useUISettings"
9805
+ },
9745
9806
  {
9746
9807
  "path": "src/Prebuilt/components/hooks/useRoleProminencePeers.tsx",
9747
9808
  "kind": "import-statement",
@@ -9752,6 +9813,11 @@
9752
9813
  "kind": "import-statement",
9753
9814
  "original": "../hooks/useTileLayout"
9754
9815
  },
9816
+ {
9817
+ "path": "src/Prebuilt/common/constants.ts",
9818
+ "kind": "import-statement",
9819
+ "original": "../../common/constants"
9820
+ },
9755
9821
  {
9756
9822
  "path": "<define:process.env>",
9757
9823
  "kind": "import-statement",
@@ -9760,7 +9826,58 @@
9760
9826
  ],
9761
9827
  "format": "esm"
9762
9828
  },
9763
- "src/Prebuilt/components/ScreenshareDisplay.jsx": {
9829
+ "src/Prebuilt/components/LayoutModeSelector.tsx": {
9830
+ "bytes": 3344,
9831
+ "imports": [
9832
+ {
9833
+ "path": "react",
9834
+ "kind": "import-statement",
9835
+ "external": true
9836
+ },
9837
+ {
9838
+ "path": "@100mslive/react-icons",
9839
+ "kind": "import-statement",
9840
+ "external": true
9841
+ },
9842
+ {
9843
+ "path": "src/Prebuilt/components/Settings/LayoutSettings.tsx",
9844
+ "kind": "import-statement",
9845
+ "original": "./Settings/LayoutSettings"
9846
+ },
9847
+ {
9848
+ "path": "src/Layout/index.tsx",
9849
+ "kind": "import-statement",
9850
+ "original": "../../Layout"
9851
+ },
9852
+ {
9853
+ "path": "src/Popover/index.tsx",
9854
+ "kind": "import-statement",
9855
+ "original": "../../Popover"
9856
+ },
9857
+ {
9858
+ "path": "src/Text/index.tsx",
9859
+ "kind": "import-statement",
9860
+ "original": "../../Text"
9861
+ },
9862
+ {
9863
+ "path": "src/Prebuilt/components/AppData/useUISettings.js",
9864
+ "kind": "import-statement",
9865
+ "original": "../components/AppData/useUISettings"
9866
+ },
9867
+ {
9868
+ "path": "src/Prebuilt/common/constants.ts",
9869
+ "kind": "import-statement",
9870
+ "original": "../common/constants"
9871
+ },
9872
+ {
9873
+ "path": "<define:process.env>",
9874
+ "kind": "import-statement",
9875
+ "external": true
9876
+ }
9877
+ ],
9878
+ "format": "esm"
9879
+ },
9880
+ "src/Prebuilt/components/ScreenshareDisplay.tsx": {
9764
9881
  "bytes": 1044,
9765
9882
  "imports": [
9766
9883
  {
@@ -9806,8 +9923,8 @@
9806
9923
  ],
9807
9924
  "format": "esm"
9808
9925
  },
9809
- "src/Prebuilt/components/ScreenshareTile.jsx": {
9810
- "bytes": 3596,
9926
+ "src/Prebuilt/components/ScreenshareTile.tsx": {
9927
+ "bytes": 4446,
9811
9928
  "imports": [
9812
9929
  {
9813
9930
  "path": "react",
@@ -9835,15 +9952,25 @@
9835
9952
  "external": true
9836
9953
  },
9837
9954
  {
9838
- "path": "src/Prebuilt/components/TileMenu/TileMenu.jsx",
9955
+ "path": "src/Prebuilt/components/TileMenu/TileMenu.tsx",
9839
9956
  "kind": "import-statement",
9840
9957
  "original": "./TileMenu/TileMenu"
9841
9958
  },
9959
+ {
9960
+ "path": "src/Layout/index.tsx",
9961
+ "kind": "import-statement",
9962
+ "original": "../../Layout"
9963
+ },
9842
9964
  {
9843
9965
  "path": "src/Stats/index.tsx",
9844
9966
  "kind": "import-statement",
9845
9967
  "original": "../../Stats"
9846
9968
  },
9969
+ {
9970
+ "path": "src/Theme/index.tsx",
9971
+ "kind": "import-statement",
9972
+ "original": "../../Theme"
9973
+ },
9847
9974
  {
9848
9975
  "path": "src/Video/index.tsx",
9849
9976
  "kind": "import-statement",
@@ -9854,13 +9981,18 @@
9854
9981
  "kind": "import-statement",
9855
9982
  "original": "../../VideoTile"
9856
9983
  },
9984
+ {
9985
+ "path": "src/Prebuilt/components/LayoutModeSelector.tsx",
9986
+ "kind": "import-statement",
9987
+ "original": "./LayoutModeSelector"
9988
+ },
9857
9989
  {
9858
9990
  "path": "src/Prebuilt/components/peerTileUtils.jsx",
9859
9991
  "kind": "import-statement",
9860
9992
  "original": "./peerTileUtils"
9861
9993
  },
9862
9994
  {
9863
- "path": "src/Prebuilt/components/ScreenshareDisplay.jsx",
9995
+ "path": "src/Prebuilt/components/ScreenshareDisplay.tsx",
9864
9996
  "kind": "import-statement",
9865
9997
  "original": "./ScreenshareDisplay"
9866
9998
  },
@@ -9883,7 +10015,7 @@
9883
10015
  "format": "esm"
9884
10016
  },
9885
10017
  "src/Prebuilt/components/VideoLayouts/ScreenshareLayout.tsx": {
9886
- "bytes": 2106,
10018
+ "bytes": 2843,
9887
10019
  "imports": [
9888
10020
  {
9889
10021
  "path": "react",
@@ -9905,13 +10037,18 @@
9905
10037
  "kind": "import-statement",
9906
10038
  "original": "../../../Theme"
9907
10039
  },
10040
+ {
10041
+ "path": "src/Prebuilt/components/InsetTile.tsx",
10042
+ "kind": "import-statement",
10043
+ "original": "../InsetTile"
10044
+ },
9908
10045
  {
9909
10046
  "path": "src/Prebuilt/components/Pagination.tsx",
9910
10047
  "kind": "import-statement",
9911
10048
  "original": "../Pagination"
9912
10049
  },
9913
10050
  {
9914
- "path": "src/Prebuilt/components/ScreenshareTile.jsx",
10051
+ "path": "src/Prebuilt/components/ScreenshareTile.tsx",
9915
10052
  "kind": "import-statement",
9916
10053
  "original": "../ScreenshareTile"
9917
10054
  },
@@ -9920,6 +10057,11 @@
9920
10057
  "kind": "import-statement",
9921
10058
  "original": "../SecondaryTiles"
9922
10059
  },
10060
+ {
10061
+ "path": "src/Prebuilt/components/Settings/LayoutSettings.tsx",
10062
+ "kind": "import-statement",
10063
+ "original": "../Settings/LayoutSettings"
10064
+ },
9923
10065
  {
9924
10066
  "path": "./interface",
9925
10067
  "kind": "import-statement",
@@ -10579,7 +10721,7 @@
10579
10721
  "format": "esm"
10580
10722
  },
10581
10723
  "src/Prebuilt/layouts/HLSView.jsx": {
10582
- "bytes": 17552,
10724
+ "bytes": 17554,
10583
10725
  "imports": [
10584
10726
  {
10585
10727
  "path": "react",
@@ -10705,7 +10847,7 @@
10705
10847
  "format": "esm"
10706
10848
  },
10707
10849
  "src/Prebuilt/layouts/VideoStreamingSection.tsx": {
10708
- "bytes": 3841,
10850
+ "bytes": 3873,
10709
10851
  "imports": [
10710
10852
  {
10711
10853
  "path": "react",
@@ -10924,7 +11066,7 @@
10924
11066
  "format": "esm"
10925
11067
  },
10926
11068
  "src/Prebuilt/components/PreviousRoleInMetadata.tsx": {
10927
- "bytes": 754,
11069
+ "bytes": 769,
10928
11070
  "imports": [
10929
11071
  {
10930
11072
  "path": "react",
@@ -11794,7 +11936,7 @@
11794
11936
  "format": "esm"
11795
11937
  },
11796
11938
  "src/Prebuilt/components/Notifications/Notifications.tsx": {
11797
- "bytes": 8209,
11939
+ "bytes": 8178,
11798
11940
  "imports": [
11799
11941
  {
11800
11942
  "path": "react",
@@ -12628,7 +12770,7 @@
12628
12770
  "imports": [],
12629
12771
  "exports": [],
12630
12772
  "inputs": {},
12631
- "bytes": 3145929
12773
+ "bytes": 3164317
12632
12774
  },
12633
12775
  "dist/index.cjs.js": {
12634
12776
  "imports": [
@@ -12912,6 +13054,11 @@
12912
13054
  "kind": "require-call",
12913
13055
  "external": true
12914
13056
  },
13057
+ {
13058
+ "path": "react",
13059
+ "kind": "require-call",
13060
+ "external": true
13061
+ },
12915
13062
  {
12916
13063
  "path": "react-use",
12917
13064
  "kind": "require-call",
@@ -12937,6 +13084,21 @@
12937
13084
  "kind": "require-call",
12938
13085
  "external": true
12939
13086
  },
13087
+ {
13088
+ "path": "@100mslive/react-icons",
13089
+ "kind": "require-call",
13090
+ "external": true
13091
+ },
13092
+ {
13093
+ "path": "react",
13094
+ "kind": "require-call",
13095
+ "external": true
13096
+ },
13097
+ {
13098
+ "path": "@100mslive/react-sdk",
13099
+ "kind": "require-call",
13100
+ "external": true
13101
+ },
12940
13102
  {
12941
13103
  "path": "react",
12942
13104
  "kind": "require-call",
@@ -13232,26 +13394,6 @@
13232
13394
  "kind": "require-call",
13233
13395
  "external": true
13234
13396
  },
13235
- {
13236
- "path": "react",
13237
- "kind": "require-call",
13238
- "external": true
13239
- },
13240
- {
13241
- "path": "@100mslive/react-sdk",
13242
- "kind": "require-call",
13243
- "external": true
13244
- },
13245
- {
13246
- "path": "react",
13247
- "kind": "require-call",
13248
- "external": true
13249
- },
13250
- {
13251
- "path": "@100mslive/react-icons",
13252
- "kind": "require-call",
13253
- "external": true
13254
- },
13255
13397
  {
13256
13398
  "path": "@100mslive/react-icons",
13257
13399
  "kind": "require-call",
@@ -14377,6 +14519,11 @@
14377
14519
  "kind": "require-call",
14378
14520
  "external": true
14379
14521
  },
14522
+ {
14523
+ "path": "@100mslive/react-sdk",
14524
+ "kind": "require-call",
14525
+ "external": true
14526
+ },
14380
14527
  {
14381
14528
  "path": "@100mslive/react-icons",
14382
14529
  "kind": "require-call",
@@ -14677,6 +14824,11 @@
14677
14824
  "kind": "require-call",
14678
14825
  "external": true
14679
14826
  },
14827
+ {
14828
+ "path": "@100mslive/react-sdk",
14829
+ "kind": "require-call",
14830
+ "external": true
14831
+ },
14680
14832
  {
14681
14833
  "path": "react",
14682
14834
  "kind": "require-call",
@@ -14697,6 +14849,16 @@
14697
14849
  "kind": "require-call",
14698
14850
  "external": true
14699
14851
  },
14852
+ {
14853
+ "path": "@100mslive/react-icons",
14854
+ "kind": "require-call",
14855
+ "external": true
14856
+ },
14857
+ {
14858
+ "path": "react",
14859
+ "kind": "require-call",
14860
+ "external": true
14861
+ },
14700
14862
  {
14701
14863
  "path": "@100mslive/react-sdk",
14702
14864
  "kind": "require-call",
@@ -15312,13 +15474,13 @@
15312
15474
  "entryPoint": "src/index.ts",
15313
15475
  "inputs": {
15314
15476
  "<define:process.env>": {
15315
- "bytesInOutput": 18056
15477
+ "bytesInOutput": 18111
15316
15478
  },
15317
15479
  "src/Theme/base.config.ts": {
15318
15480
  "bytesInOutput": 6104
15319
15481
  },
15320
15482
  "src/Prebuilt/common/constants.ts": {
15321
- "bytesInOutput": 4312
15483
+ "bytesInOutput": 4344
15322
15484
  },
15323
15485
  "src/Theme/stitches.config.ts": {
15324
15486
  "bytesInOutput": 2153
@@ -15435,7 +15597,7 @@
15435
15597
  "bytesInOutput": 129
15436
15598
  },
15437
15599
  "src/VideoTile/StyledVideoTile.tsx": {
15438
- "bytesInOutput": 3379
15600
+ "bytesInOutput": 3344
15439
15601
  },
15440
15602
  "src/VideoTile/index.tsx": {
15441
15603
  "bytesInOutput": 146
@@ -15450,7 +15612,7 @@
15450
15612
  "bytesInOutput": 173
15451
15613
  },
15452
15614
  "src/Pagination/StyledPagination.tsx": {
15453
- "bytesInOutput": 1399
15615
+ "bytesInOutput": 1421
15454
15616
  },
15455
15617
  "src/Pagination/index.tsx": {
15456
15618
  "bytesInOutput": 149
@@ -15486,10 +15648,10 @@
15486
15648
  "bytesInOutput": 175
15487
15649
  },
15488
15650
  "src/Popover/index.tsx": {
15489
- "bytesInOutput": 927
15651
+ "bytesInOutput": 1076
15490
15652
  },
15491
15653
  "src/Stats/formatBytes.ts": {
15492
- "bytesInOutput": 636
15654
+ "bytesInOutput": 631
15493
15655
  },
15494
15656
  "src/Stats/StyledStats.tsx": {
15495
15657
  "bytesInOutput": 1004
@@ -15572,17 +15734,26 @@
15572
15734
  "src/Collapsible/index.tsx": {
15573
15735
  "bytesInOutput": 147
15574
15736
  },
15737
+ "src/Prebuilt/components/Settings/SwitchWithLabel.tsx": {
15738
+ "bytesInOutput": 1443
15739
+ },
15575
15740
  "src/Prebuilt/components/hooks/useUserPreferences.jsx": {
15576
15741
  "bytesInOutput": 1087
15577
15742
  },
15578
15743
  "src/Prebuilt/components/AppData/useUISettings.js": {
15579
- "bytesInOutput": 7041
15744
+ "bytesInOutput": 6924
15745
+ },
15746
+ "src/Prebuilt/components/Settings/common.ts": {
15747
+ "bytesInOutput": 445
15748
+ },
15749
+ "src/Prebuilt/components/Settings/LayoutSettings.tsx": {
15750
+ "bytesInOutput": 3450
15580
15751
  },
15581
15752
  "src/Prebuilt/components/AppData/useSidepane.js": {
15582
15753
  "bytesInOutput": 2515
15583
15754
  },
15584
15755
  "src/Prebuilt/components/AppData/AppData.tsx": {
15585
- "bytesInOutput": 5319
15756
+ "bytesInOutput": 5400
15586
15757
  },
15587
15758
  "src/Prebuilt/AppContext.tsx": {
15588
15759
  "bytesInOutput": 840
@@ -15591,7 +15762,7 @@
15591
15762
  "bytesInOutput": 4824
15592
15763
  },
15593
15764
  "src/Prebuilt/components/AuthToken.jsx": {
15594
- "bytesInOutput": 4507
15765
+ "bytesInOutput": 4510
15595
15766
  },
15596
15767
  "src/Prebuilt/IconButton.jsx": {
15597
15768
  "bytesInOutput": 845
@@ -15608,11 +15779,11 @@
15608
15779
  "src/Prebuilt/components/Footer/EmojiCard.jsx": {
15609
15780
  "bytesInOutput": 1315
15610
15781
  },
15611
- "src/Prebuilt/components/hooks/useDropdownList.jsx": {
15612
- "bytesInOutput": 885
15782
+ "src/Prebuilt/components/hooks/useDropdownList.ts": {
15783
+ "bytesInOutput": 884
15613
15784
  },
15614
15785
  "src/Prebuilt/components/EmojiReaction.jsx": {
15615
- "bytesInOutput": 2925
15786
+ "bytesInOutput": 2928
15616
15787
  },
15617
15788
  "src/Prebuilt/components/Leave/EndSessionContent.tsx": {
15618
15789
  "bytesInOutput": 2547
@@ -15660,7 +15831,7 @@
15660
15831
  "bytesInOutput": 260
15661
15832
  },
15662
15833
  "../../node_modules/lodash/lodash.js": {
15663
- "bytesInOutput": 224270
15834
+ "bytesInOutput": 224272
15664
15835
  },
15665
15836
  "src/Prebuilt/provider/roomLayoutProvider/constants/index.ts": {
15666
15837
  "bytesInOutput": 1887
@@ -15686,20 +15857,11 @@
15686
15857
  "src/Prebuilt/components/Settings/DeviceSettings.jsx": {
15687
15858
  "bytesInOutput": 8491
15688
15859
  },
15689
- "src/Prebuilt/components/Settings/SwitchWithLabel.jsx": {
15690
- "bytesInOutput": 1403
15691
- },
15692
- "src/Prebuilt/components/Settings/LayoutSettings.jsx": {
15693
- "bytesInOutput": 2759
15694
- },
15695
- "src/Prebuilt/components/Settings/NotificationSettings.jsx": {
15696
- "bytesInOutput": 2561
15697
- },
15698
- "src/Prebuilt/components/Settings/common.js": {
15699
- "bytesInOutput": 1150
15860
+ "src/Prebuilt/components/Settings/NotificationSettings.tsx": {
15861
+ "bytesInOutput": 2589
15700
15862
  },
15701
15863
  "src/Prebuilt/components/Settings/SettingsModal.jsx": {
15702
- "bytesInOutput": 10611
15864
+ "bytesInOutput": 11228
15703
15865
  },
15704
15866
  "src/Prebuilt/primitives/DialogContent.jsx": {
15705
15867
  "bytesInOutput": 9346
@@ -15711,7 +15873,7 @@
15711
15873
  "bytesInOutput": 5459
15712
15874
  },
15713
15875
  "src/Prebuilt/components/StatsForNerds.jsx": {
15714
- "bytesInOutput": 11474
15876
+ "bytesInOutput": 11469
15715
15877
  },
15716
15878
  "src/Prebuilt/components/MoreSettings/BulkRoleChangeModal.jsx": {
15717
15879
  "bytesInOutput": 6192
@@ -15732,13 +15894,13 @@
15732
15894
  "bytesInOutput": 2305
15733
15895
  },
15734
15896
  "src/Prebuilt/components/MoreSettings/SplitComponents/DesktopOptions.tsx": {
15735
- "bytesInOutput": 8156
15897
+ "bytesInOutput": 8159
15736
15898
  },
15737
15899
  "../../node_modules/reselect/es/index.js": {
15738
15900
  "bytesInOutput": 2639
15739
15901
  },
15740
15902
  "../../node_modules/ua-parser-js/src/ua-parser.js": {
15741
- "bytesInOutput": 42473
15903
+ "bytesInOutput": 42470
15742
15904
  },
15743
15905
  "../../node_modules/lodash.isequal/index.js": {
15744
15906
  "bytesInOutput": 26597
@@ -15753,7 +15915,7 @@
15753
15915
  "bytesInOutput": 1396
15754
15916
  },
15755
15917
  "../../node_modules/webrtc-adapter/src/js/chrome/chrome_shim.js": {
15756
- "bytesInOutput": 22880
15918
+ "bytesInOutput": 22882
15757
15919
  },
15758
15920
  "../../node_modules/webrtc-adapter/src/js/firefox/getusermedia.js": {
15759
15921
  "bytesInOutput": 2277
@@ -15765,7 +15927,7 @@
15765
15927
  "bytesInOutput": 9352
15766
15928
  },
15767
15929
  "../../node_modules/webrtc-adapter/src/js/safari/safari_shim.js": {
15768
- "bytesInOutput": 12017
15930
+ "bytesInOutput": 12019
15769
15931
  },
15770
15932
  "../../node_modules/sdp/sdp.js": {
15771
15933
  "bytesInOutput": 22282
@@ -15792,7 +15954,7 @@
15792
15954
  "bytesInOutput": 615
15793
15955
  },
15794
15956
  "../hms-video-store/dist/index.js": {
15795
- "bytesInOutput": 52988
15957
+ "bytesInOutput": 53025
15796
15958
  },
15797
15959
  "src/Prebuilt/components/hooks/usePlaylistMusic.js": {
15798
15960
  "bytesInOutput": 1384
@@ -15812,17 +15974,17 @@
15812
15974
  "src/Prebuilt/components/MoreSettings/ActionTile.jsx": {
15813
15975
  "bytesInOutput": 1881
15814
15976
  },
15815
- "src/Prebuilt/components/MoreSettings/ChangeNameContent.jsx": {
15816
- "bytesInOutput": 4077
15977
+ "src/Prebuilt/components/MoreSettings/ChangeNameContent.tsx": {
15978
+ "bytesInOutput": 4158
15817
15979
  },
15818
- "src/Prebuilt/components/MoreSettings/ChangeNameModal.jsx": {
15819
- "bytesInOutput": 2747
15980
+ "src/Prebuilt/components/MoreSettings/ChangeNameModal.tsx": {
15981
+ "bytesInOutput": 2839
15820
15982
  },
15821
15983
  "src/Prebuilt/components/hooks/useUnreadPollQuizPresent.tsx": {
15822
15984
  "bytesInOutput": 938
15823
15985
  },
15824
15986
  "src/Prebuilt/components/MoreSettings/SplitComponents/MwebOptions.tsx": {
15825
- "bytesInOutput": 12303
15987
+ "bytesInOutput": 12306
15826
15988
  },
15827
15989
  "src/Prebuilt/components/MoreSettings/MoreSettings.tsx": {
15828
15990
  "bytesInOutput": 729
@@ -15855,7 +16017,7 @@
15855
16017
  "bytesInOutput": 1563
15856
16018
  },
15857
16019
  "src/Prebuilt/components/pdfAnnotator/shareScreenOptions.jsx": {
15858
- "bytesInOutput": 7936
16020
+ "bytesInOutput": 7928
15859
16021
  },
15860
16022
  "src/Prebuilt/components/ScreenShareToggle.jsx": {
15861
16023
  "bytesInOutput": 2025
@@ -15900,10 +16062,10 @@
15900
16062
  "bytesInOutput": 2747
15901
16063
  },
15902
16064
  "src/Prebuilt/components/Polls/common/StatusIndicator.tsx": {
15903
- "bytesInOutput": 959
16065
+ "bytesInOutput": 1165
15904
16066
  },
15905
- "src/Prebuilt/components/Polls/CreatePollQuiz/PollsQuizMenu.jsx": {
15906
- "bytesInOutput": 9019
16067
+ "src/Prebuilt/components/Polls/CreatePollQuiz/PollsQuizMenu.tsx": {
16068
+ "bytesInOutput": 9572
15907
16069
  },
15908
16070
  "src/Prebuilt/components/Polls/CreateQuestions/DeleteQuestionModal.tsx": {
15909
16071
  "bytesInOutput": 2786
@@ -15930,10 +16092,10 @@
15930
16092
  "bytesInOutput": 10146
15931
16093
  },
15932
16094
  "src/Prebuilt/components/Polls/CreateQuestions/SavedQuestion.tsx": {
15933
- "bytesInOutput": 2705
16095
+ "bytesInOutput": 2034
15934
16096
  },
15935
16097
  "src/Prebuilt/components/Polls/CreateQuestions/CreateQuestions.jsx": {
15936
- "bytesInOutput": 5588
16098
+ "bytesInOutput": 5842
15937
16099
  },
15938
16100
  "src/Prebuilt/components/Polls/common/utils.ts": {
15939
16101
  "bytesInOutput": 664
@@ -15951,10 +16113,10 @@
15951
16113
  "bytesInOutput": 2884
15952
16114
  },
15953
16115
  "src/Prebuilt/components/Polls/Voting/LeaderboardSummary.tsx": {
15954
- "bytesInOutput": 5052
16116
+ "bytesInOutput": 5057
15955
16117
  },
15956
16118
  "src/Prebuilt/components/Polls/Voting/QuestionCard.jsx": {
15957
- "bytesInOutput": 8565
16119
+ "bytesInOutput": 8469
15958
16120
  },
15959
16121
  "src/Prebuilt/components/Polls/Voting/StandardVoting.tsx": {
15960
16122
  "bytesInOutput": 1658
@@ -15963,7 +16125,7 @@
15963
16125
  "bytesInOutput": 2124
15964
16126
  },
15965
16127
  "src/Prebuilt/components/Polls/Voting/Voting.tsx": {
15966
- "bytesInOutput": 4217
16128
+ "bytesInOutput": 4182
15967
16129
  },
15968
16130
  "src/Prebuilt/components/Polls/Polls.tsx": {
15969
16131
  "bytesInOutput": 1177
@@ -16032,22 +16194,22 @@
16032
16194
  "bytesInOutput": 8908
16033
16195
  },
16034
16196
  "src/Prebuilt/components/Connection/TileConnection.tsx": {
16035
- "bytesInOutput": 2109
16197
+ "bytesInOutput": 2685
16036
16198
  },
16037
16199
  "src/Prebuilt/components/TileMenu/utils.ts": {
16038
16200
  "bytesInOutput": 296
16039
16201
  },
16040
16202
  "src/Prebuilt/components/TileMenu/TileMenuContent.tsx": {
16041
- "bytesInOutput": 13628
16203
+ "bytesInOutput": 13693
16042
16204
  },
16043
- "src/Prebuilt/components/TileMenu/TileMenu.jsx": {
16044
- "bytesInOutput": 5461
16205
+ "src/Prebuilt/components/TileMenu/TileMenu.tsx": {
16206
+ "bytesInOutput": 5495
16045
16207
  },
16046
16208
  "src/Prebuilt/components/peerTileUtils.jsx": {
16047
16209
  "bytesInOutput": 1299
16048
16210
  },
16049
- "src/Prebuilt/components/VideoTile.jsx": {
16050
- "bytesInOutput": 7928
16211
+ "src/Prebuilt/components/VideoTile.tsx": {
16212
+ "bytesInOutput": 7807
16051
16213
  },
16052
16214
  "src/Prebuilt/components/VirtualBackground/VBOption.tsx": {
16053
16215
  "bytesInOutput": 1569
@@ -16065,7 +16227,7 @@
16065
16227
  "bytesInOutput": 8224
16066
16228
  },
16067
16229
  "src/Prebuilt/layouts/SidePane.tsx": {
16068
- "bytesInOutput": 5399
16230
+ "bytesInOutput": 5619
16069
16231
  },
16070
16232
  "src/Prebuilt/components/Chip.tsx": {
16071
16233
  "bytesInOutput": 1118
@@ -16077,7 +16239,7 @@
16077
16239
  "bytesInOutput": 2165
16078
16240
  },
16079
16241
  "src/Prebuilt/components/Preview/PreviewForm.tsx": {
16080
- "bytesInOutput": 3421
16242
+ "bytesInOutput": 3422
16081
16243
  },
16082
16244
  "src/Prebuilt/components/Preview/PreviewJoin.tsx": {
16083
16245
  "bytesInOutput": 11802
@@ -16092,7 +16254,7 @@
16092
16254
  "bytesInOutput": 706
16093
16255
  },
16094
16256
  "src/Prebuilt/components/InsetTile.tsx": {
16095
- "bytesInOutput": 5117
16257
+ "bytesInOutput": 5183
16096
16258
  },
16097
16259
  "src/Prebuilt/components/Pagination.tsx": {
16098
16260
  "bytesInOutput": 2118
@@ -16107,25 +16269,28 @@
16107
16269
  "bytesInOutput": 2453
16108
16270
  },
16109
16271
  "src/Prebuilt/components/VideoLayouts/ProminenceLayout.tsx": {
16110
- "bytesInOutput": 2590
16272
+ "bytesInOutput": 2961
16111
16273
  },
16112
16274
  "src/Prebuilt/components/SecondaryTiles.tsx": {
16113
- "bytesInOutput": 1480
16275
+ "bytesInOutput": 2991
16114
16276
  },
16115
16277
  "src/Prebuilt/components/hooks/useRoleProminencePeers.tsx": {
16116
16278
  "bytesInOutput": 1302
16117
16279
  },
16118
16280
  "src/Prebuilt/components/VideoLayouts/RoleProminence.tsx": {
16119
- "bytesInOutput": 2169
16281
+ "bytesInOutput": 2479
16282
+ },
16283
+ "src/Prebuilt/components/LayoutModeSelector.tsx": {
16284
+ "bytesInOutput": 3951
16120
16285
  },
16121
- "src/Prebuilt/components/ScreenshareDisplay.jsx": {
16286
+ "src/Prebuilt/components/ScreenshareDisplay.tsx": {
16122
16287
  "bytesInOutput": 1707
16123
16288
  },
16124
- "src/Prebuilt/components/ScreenshareTile.jsx": {
16125
- "bytesInOutput": 4656
16289
+ "src/Prebuilt/components/ScreenshareTile.tsx": {
16290
+ "bytesInOutput": 5604
16126
16291
  },
16127
16292
  "src/Prebuilt/components/VideoLayouts/ScreenshareLayout.tsx": {
16128
- "bytesInOutput": 2494
16293
+ "bytesInOutput": 3219
16129
16294
  },
16130
16295
  "src/Prebuilt/common/PeersSorter.ts": {
16131
16296
  "bytesInOutput": 3604
@@ -16188,10 +16353,10 @@
16188
16353
  "bytesInOutput": 4598
16189
16354
  },
16190
16355
  "src/Prebuilt/layouts/HLSView.jsx": {
16191
- "bytesInOutput": 21218
16356
+ "bytesInOutput": 21219
16192
16357
  },
16193
16358
  "src/Prebuilt/layouts/VideoStreamingSection.tsx": {
16194
- "bytesInOutput": 4079
16359
+ "bytesInOutput": 4111
16195
16360
  },
16196
16361
  "src/Prebuilt/components/Header/common.jsx": {
16197
16362
  "bytesInOutput": 7375
@@ -16203,7 +16368,7 @@
16203
16368
  "bytesInOutput": 152
16204
16369
  },
16205
16370
  "src/Prebuilt/components/PreviousRoleInMetadata.tsx": {
16206
- "bytesInOutput": 1004
16371
+ "bytesInOutput": 1019
16207
16372
  },
16208
16373
  "src/Prebuilt/components/ConferenceScreen.tsx": {
16209
16374
  "bytesInOutput": 7487
@@ -16218,13 +16383,13 @@
16218
16383
  "bytesInOutput": 944
16219
16384
  },
16220
16385
  "src/Prebuilt/components/Input/KeyboardInputManager.js": {
16221
- "bytesInOutput": 4998
16386
+ "bytesInOutput": 5007
16222
16387
  },
16223
16388
  "src/Prebuilt/components/hooks/useRedirectToLeave.tsx": {
16224
16389
  "bytesInOutput": 789
16225
16390
  },
16226
16391
  "src/Prebuilt/AppStateContext.tsx": {
16227
- "bytesInOutput": 2792
16392
+ "bytesInOutput": 2803
16228
16393
  },
16229
16394
  "src/Prebuilt/components/LeaveScreen.tsx": {
16230
16395
  "bytesInOutput": 2925
@@ -16275,7 +16440,7 @@
16275
16440
  "bytesInOutput": 2281
16276
16441
  },
16277
16442
  "src/Prebuilt/components/Notifications/Notifications.tsx": {
16278
- "bytesInOutput": 8930
16443
+ "bytesInOutput": 8927
16279
16444
  },
16280
16445
  "src/Prebuilt/components/Notifications/index.tsx": {
16281
16446
  "bytesInOutput": 173
@@ -16317,7 +16482,7 @@
16317
16482
  "bytesInOutput": 2980
16318
16483
  }
16319
16484
  },
16320
- "bytes": 1476392
16485
+ "bytes": 1486444
16321
16486
  }
16322
16487
  }
16323
16488
  }