mirror of
https://github.com/google/blockly.git
synced 2026-01-12 11:27:14 +01:00
* feat: make comment editor separately focusable from comment itself * feat: improve design and add styling * chore: fix lint * fix: add event listeners to focus parent comment * fix: export CommentEditor * fix: export CommentEditor * fix: extract comment identifier to constant
11 lines
354 B
TypeScript
11 lines
354 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2024 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
export {CommentEditor} from './comments/comment_editor.js';
|
|
export {CommentView} from './comments/comment_view.js';
|
|
export {RenderedWorkspaceComment} from './comments/rendered_workspace_comment.js';
|
|
export {WorkspaceComment} from './comments/workspace_comment.js';
|