@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.d.mts CHANGED
@@ -376,6 +376,8 @@ interface CrisCoMatrixListsTieProps {
376
376
  itemActiveStyle?: CSSProperties;
377
377
  /** Item disabled className */
378
378
  itemDisabledClassName?: string;
379
+ /** Video mute button text (default: "Mute") */
380
+ vmText?: string;
379
381
  /** Video mute button className */
380
382
  vmButtonClassName?: string;
381
383
  /** Video mute button active className */
@@ -387,7 +389,7 @@ interface CrisCoMatrixListsTieProps {
387
389
  /** Custom render for signal indicator */
388
390
  renderSignalIndicator?: (on: boolean) => ReactNode;
389
391
  }
390
- declare function CrisCoMatrixListsTie({ oid, inputTitle, outputTitle, showChannels, className, style, listClassName, listStyle, headerClassName, headerStyle, itemClassName, itemStyle, itemActiveClassName, itemActiveStyle, itemDisabledClassName, vmButtonClassName, vmButtonActiveClassName, renderIoIndicator, renderSignalIndicator, }: CrisCoMatrixListsTieProps): react_jsx_runtime.JSX.Element | null;
392
+ declare function CrisCoMatrixListsTie({ oid, inputTitle, outputTitle, showChannels, className, style, listClassName, listStyle, headerClassName, headerStyle, itemClassName, itemStyle, itemActiveClassName, itemActiveStyle, itemDisabledClassName, vmText, vmButtonClassName, vmButtonActiveClassName, renderIoIndicator, renderSignalIndicator, }: CrisCoMatrixListsTieProps): react_jsx_runtime.JSX.Element | null;
391
393
 
392
394
  /**
393
395
  * Icon configuration and utilities for CRIS components
package/dist/index.d.ts CHANGED
@@ -376,6 +376,8 @@ interface CrisCoMatrixListsTieProps {
376
376
  itemActiveStyle?: CSSProperties;
377
377
  /** Item disabled className */
378
378
  itemDisabledClassName?: string;
379
+ /** Video mute button text (default: "Mute") */
380
+ vmText?: string;
379
381
  /** Video mute button className */
380
382
  vmButtonClassName?: string;
381
383
  /** Video mute button active className */
@@ -387,7 +389,7 @@ interface CrisCoMatrixListsTieProps {
387
389
  /** Custom render for signal indicator */
388
390
  renderSignalIndicator?: (on: boolean) => ReactNode;
389
391
  }
390
- declare function CrisCoMatrixListsTie({ oid, inputTitle, outputTitle, showChannels, className, style, listClassName, listStyle, headerClassName, headerStyle, itemClassName, itemStyle, itemActiveClassName, itemActiveStyle, itemDisabledClassName, vmButtonClassName, vmButtonActiveClassName, renderIoIndicator, renderSignalIndicator, }: CrisCoMatrixListsTieProps): react_jsx_runtime.JSX.Element | null;
392
+ declare function CrisCoMatrixListsTie({ oid, inputTitle, outputTitle, showChannels, className, style, listClassName, listStyle, headerClassName, headerStyle, itemClassName, itemStyle, itemActiveClassName, itemActiveStyle, itemDisabledClassName, vmText, vmButtonClassName, vmButtonActiveClassName, renderIoIndicator, renderSignalIndicator, }: CrisCoMatrixListsTieProps): react_jsx_runtime.JSX.Element | null;
391
393
 
392
394
  /**
393
395
  * Icon configuration and utilities for CRIS components
package/dist/index.js CHANGED
@@ -1420,6 +1420,7 @@ function MatrixItemRow({
1420
1420
  type,
1421
1421
  active,
1422
1422
  showChannels,
1423
+ vmText,
1423
1424
  onSelect,
1424
1425
  onToggleVideoMute,
1425
1426
  itemClassName,
@@ -1470,7 +1471,7 @@ function MatrixItemRow({
1470
1471
  {
1471
1472
  selected: item.vm.on,
1472
1473
  enabled: item.vm.en,
1473
- text: "VM",
1474
+ text: vmText,
1474
1475
  onPress: onToggleVideoMute,
1475
1476
  className: vmButtonClassName,
1476
1477
  classActive: vmButtonActiveClassName
@@ -1494,6 +1495,7 @@ function CrisCoMatrixListsTie({
1494
1495
  itemActiveClassName,
1495
1496
  itemActiveStyle,
1496
1497
  itemDisabledClassName,
1498
+ vmText = "Mute",
1497
1499
  vmButtonClassName,
1498
1500
  vmButtonActiveClassName,
1499
1501
  renderIoIndicator,
@@ -1539,6 +1541,7 @@ function CrisCoMatrixListsTie({
1539
1541
  type: "input",
1540
1542
  active: si === item.id,
1541
1543
  showChannels,
1544
+ vmText,
1542
1545
  onSelect: () => handleSelectInput(item.id),
1543
1546
  onToggleVideoMute: () => handleToggleVideoMute("input", item.id),
1544
1547
  itemClassName,
@@ -1577,6 +1580,7 @@ function CrisCoMatrixListsTie({
1577
1580
  type: "output",
1578
1581
  active: item.ti === si,
1579
1582
  showChannels,
1583
+ vmText,
1580
1584
  onSelect: () => handleTie(item.id),
1581
1585
  onToggleVideoMute: () => handleToggleVideoMute("output", item.id),
1582
1586
  itemClassName,