UI/UX: Adiciona campo opcional para colagem manual de transcrição no VideoMind
This commit is contained in:
+15
@@ -0,0 +1,15 @@
|
||||
import { YTNode } from '../helpers.js';
|
||||
import RendererContext from './misc/RendererContext.js';
|
||||
export default class ButtonCardView extends YTNode {
|
||||
static type = 'ButtonCardView';
|
||||
title;
|
||||
icon_name;
|
||||
renderer_context;
|
||||
constructor(data) {
|
||||
super();
|
||||
this.title = data.title;
|
||||
this.icon_name = data.image.sources[0].clientResource.imageName;
|
||||
this.renderer_context = new RendererContext(data.rendererContext);
|
||||
}
|
||||
}
|
||||
//# sourceMappingURL=ButtonCardView.js.map
|
||||
Reference in New Issue
Block a user