@playkit-js/transcript 3.6.5 → 3.7.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@playkit-js/transcript",
3
- "version": "3.6.5",
3
+ "version": "3.7.0",
4
4
  "main": "dist/playkit-transcript.js",
5
5
  "license": "AGPL-3.0",
6
6
  "private": false,
@@ -136,7 +136,7 @@ export class Caption extends Component<ExtendedCaptionProps> {
136
136
  return null;
137
137
  }
138
138
  return (
139
- <span className={styles.captionSpan}>
139
+ <span className={`${styles.captionSpan} no-copy`}>
140
140
  {indexMap
141
141
  ? indexArray.map((el: string, index: number) => {
142
142
  const preSelected = index === 0 ? text.substring(0, indexMap[el]) : '';