@playkit-js/transcript 3.5.10 → 3.5.11-canary.0-57992fc
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
|
@@ -12,7 +12,7 @@ import {TranscriptMenu} from '../transcript-menu';
|
|
|
12
12
|
import {SmallScreenSlate} from '../small-screen-slate';
|
|
13
13
|
import {Button, ButtonType, ButtonSize} from '@playkit-js/common/dist/components/button';
|
|
14
14
|
import {OnClickEvent, OnClick} from '@playkit-js/common/dist/hoc/a11y-wrapper';
|
|
15
|
-
import {
|
|
15
|
+
import {TranscriptEvents} from '../../events/events';
|
|
16
16
|
|
|
17
17
|
const {ENTER, SPACE, TAB} = ui.utils.KeyMap;
|
|
18
18
|
const {withText, Text} = ui.preacti18n;
|
package/src/index.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import {pluginName, TranscriptPlugin} from './transcript-plugin';
|
|
2
2
|
|
|
3
3
|
declare var __VERSION__: string;
|
|
4
4
|
declare var __NAME__: string;
|
|
@@ -6,7 +6,7 @@ declare var __NAME__: string;
|
|
|
6
6
|
const VERSION = __VERSION__;
|
|
7
7
|
const NAME = __NAME__;
|
|
8
8
|
|
|
9
|
-
export {
|
|
9
|
+
export {TranscriptEvents} from './events/events';
|
|
10
10
|
export {TranscriptPlugin as Plugin};
|
|
11
11
|
export {VERSION, NAME};
|
|
12
12
|
|
|
@@ -9,7 +9,7 @@ import {PluginButton} from './components/plugin-button/plugin-button';
|
|
|
9
9
|
import {Transcript} from './components/transcript';
|
|
10
10
|
import {getConfigValue, isBoolean, makePlainText, prepareCuePoint} from './utils';
|
|
11
11
|
import {TranscriptConfig, PluginStates, HighlightedMap, CuePointData, ItemTypes, CuePoint} from './types';
|
|
12
|
-
import {
|
|
12
|
+
import {TranscriptEvents} from './events/events';
|
|
13
13
|
|
|
14
14
|
export const pluginName: string = 'playkit-js-transcript';
|
|
15
15
|
|
package/src/events/index.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {TranscriptEvents} from './events';
|