mirror of
https://github.com/google/blockly.git
synced 2026-01-04 07:30:08 +01:00
* feat: Enhance the Rect API. * feat: Add support for sorting IBoundedElements in general. * fix: Improve typings of getTopElement/Comment methods. * feat: Add classes to represent comment icons. * refactor: Use comment icons in comment view. * feat: Update navigation policies to support workspace comments. * feat: Make the navigator and workspace handle workspace comments. * feat: Visit workspace comments when navigating with the up/down arrows. * chore: Make the linter happy. * chore: Rename comment icons to bar buttons. * refactor: Rename CommentIcons to CommentBarButtons. * chore: Improve docstrings. * chore: Clarify unit type. * refactor: Remove workspace argument from `navigateStacks()`. * fix: Fix errant find and replace in CSS. * fix: Fix issue that could cause delete button to become misaligned.
14 lines
585 B
TypeScript
14 lines
585 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2024 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
export {CollapseCommentBarButton} from './comments/collapse_comment_bar_button.js';
|
|
export {CommentBarButton} from './comments/comment_bar_button.js';
|
|
export {CommentEditor} from './comments/comment_editor.js';
|
|
export {CommentView} from './comments/comment_view.js';
|
|
export {DeleteCommentBarButton} from './comments/delete_comment_bar_button.js';
|
|
export {RenderedWorkspaceComment} from './comments/rendered_workspace_comment.js';
|
|
export {WorkspaceComment} from './comments/workspace_comment.js';
|