UI/UX: Adiciona campo opcional para colagem manual de transcrição no VideoMind

This commit is contained in:
2026-06-05 22:19:33 +00:00
parent 281005a8bc
commit 3781c848da
2395 changed files with 242184 additions and 20 deletions
+15
View File
@@ -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