@imperosoft/cris-webui-components 1.1.2-beta.10 → 1.1.2-beta.11

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/index.mjs CHANGED
@@ -1383,6 +1383,7 @@ function MatrixItemRow({
1383
1383
  type,
1384
1384
  active,
1385
1385
  showChannels,
1386
+ vmText,
1386
1387
  onSelect,
1387
1388
  onToggleVideoMute,
1388
1389
  itemClassName,
@@ -1433,7 +1434,7 @@ function MatrixItemRow({
1433
1434
  {
1434
1435
  selected: item.vm.on,
1435
1436
  enabled: item.vm.en,
1436
- text: "VM",
1437
+ text: vmText,
1437
1438
  onPress: onToggleVideoMute,
1438
1439
  className: vmButtonClassName,
1439
1440
  classActive: vmButtonActiveClassName
@@ -1457,6 +1458,7 @@ function CrisCoMatrixListsTie({
1457
1458
  itemActiveClassName,
1458
1459
  itemActiveStyle,
1459
1460
  itemDisabledClassName,
1461
+ vmText = "Mute",
1460
1462
  vmButtonClassName,
1461
1463
  vmButtonActiveClassName,
1462
1464
  renderIoIndicator,
@@ -1502,6 +1504,7 @@ function CrisCoMatrixListsTie({
1502
1504
  type: "input",
1503
1505
  active: si === item.id,
1504
1506
  showChannels,
1507
+ vmText,
1505
1508
  onSelect: () => handleSelectInput(item.id),
1506
1509
  onToggleVideoMute: () => handleToggleVideoMute("input", item.id),
1507
1510
  itemClassName,
@@ -1540,6 +1543,7 @@ function CrisCoMatrixListsTie({
1540
1543
  type: "output",
1541
1544
  active: item.ti === si,
1542
1545
  showChannels,
1546
+ vmText,
1543
1547
  onSelect: () => handleTie(item.id),
1544
1548
  onToggleVideoMute: () => handleToggleVideoMute("output", item.id),
1545
1549
  itemClassName,