mirror of
https://github.com/google/blockly.git
synced 2026-01-07 09:00:11 +01:00
* fix(build): Restore erroneously-deleted filter function This was deleted in PR #7406 as it was mainly being used to filter core/ vs. test/mocha/ deps into separate deps files - but it turns out also to be used for filtering error messages too. Oops. * refactor(tests): Migrate advanced compilation test to ES Modules * refactor(build): Migrate main.js to TypeScript This turns out to be pretty straight forward, even if it would cause crashing if one actually tried to import this module instead of just feeding it to Closure Compiler. * chore(build): Remove goog.declareModuleId calls Replace goog.declareModuleId calls with a comment recording the former module ID for posterity (or at least until we decide how to reformat the renamings file. * chore(tests): Delete closure/goog/* For the moment we still need something to serve as base.js for the benefit of closure-make-deps, so we keep a vestigial base.js around, containing only the @provideGoog declaration. * refactor(build): Remove vestigial base.js By changing slightly the command line arguments to closure-make-deps and closure-calculate-chunks the need to have any base.js is eliminated. * chore: Typo fix for PR #7415
146 lines
5.4 KiB
TypeScript
146 lines
5.4 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright 2016 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
// Former goog.module ID: Blockly.Events
|
|
|
|
import {Abstract, AbstractEventJson} from './events_abstract.js';
|
|
import {BlockBase, BlockBaseJson} from './events_block_base.js';
|
|
import {BlockChange, BlockChangeJson} from './events_block_change.js';
|
|
import {BlockCreate, BlockCreateJson} from './events_block_create.js';
|
|
import {BlockDelete, BlockDeleteJson} from './events_block_delete.js';
|
|
import {BlockDrag, BlockDragJson} from './events_block_drag.js';
|
|
import {
|
|
BlockFieldIntermediateChange,
|
|
BlockFieldIntermediateChangeJson,
|
|
} from './events_block_field_intermediate_change.js';
|
|
import {BlockMove, BlockMoveJson} from './events_block_move.js';
|
|
import {BubbleOpen, BubbleOpenJson, BubbleType} from './events_bubble_open.js';
|
|
import {Click, ClickJson, ClickTarget} from './events_click.js';
|
|
import {CommentBase, CommentBaseJson} from './events_comment_base.js';
|
|
import {CommentChange, CommentChangeJson} from './events_comment_change.js';
|
|
import {CommentCreate, CommentCreateJson} from './events_comment_create.js';
|
|
import {CommentDelete} from './events_comment_delete.js';
|
|
import {CommentMove, CommentMoveJson} from './events_comment_move.js';
|
|
import {MarkerMove, MarkerMoveJson} from './events_marker_move.js';
|
|
import {Selected, SelectedJson} from './events_selected.js';
|
|
import {ThemeChange, ThemeChangeJson} from './events_theme_change.js';
|
|
import {
|
|
ToolboxItemSelect,
|
|
ToolboxItemSelectJson,
|
|
} from './events_toolbox_item_select.js';
|
|
import {TrashcanOpen, TrashcanOpenJson} from './events_trashcan_open.js';
|
|
import {UiBase} from './events_ui_base.js';
|
|
import {VarBase, VarBaseJson} from './events_var_base.js';
|
|
import {VarCreate, VarCreateJson} from './events_var_create.js';
|
|
import {VarDelete, VarDeleteJson} from './events_var_delete.js';
|
|
import {VarRename, VarRenameJson} from './events_var_rename.js';
|
|
import {ViewportChange, ViewportChangeJson} from './events_viewport.js';
|
|
import * as eventUtils from './utils.js';
|
|
import {FinishedLoading} from './workspace_events.js';
|
|
|
|
// Events.
|
|
export {Abstract};
|
|
export {AbstractEventJson};
|
|
export {BubbleOpen};
|
|
export {BubbleOpenJson};
|
|
export {BubbleType};
|
|
export {BlockBase};
|
|
export {BlockBaseJson};
|
|
export {BlockChange};
|
|
export {BlockChangeJson};
|
|
export {BlockCreate};
|
|
export {BlockCreateJson};
|
|
export {BlockDelete};
|
|
export {BlockDeleteJson};
|
|
export {BlockDrag};
|
|
export {BlockDragJson};
|
|
export {BlockFieldIntermediateChange};
|
|
export {BlockFieldIntermediateChangeJson};
|
|
export {BlockMove};
|
|
export {BlockMoveJson};
|
|
export {Click};
|
|
export {ClickJson};
|
|
export {ClickTarget};
|
|
export {CommentBase};
|
|
export {CommentBaseJson};
|
|
export {CommentChange};
|
|
export {CommentChangeJson};
|
|
export {CommentCreate};
|
|
export {CommentCreateJson};
|
|
export {CommentDelete};
|
|
export {CommentMove};
|
|
export {CommentMoveJson};
|
|
export {FinishedLoading};
|
|
export {MarkerMove};
|
|
export {MarkerMoveJson};
|
|
export {Selected};
|
|
export {SelectedJson};
|
|
export {ThemeChange};
|
|
export {ThemeChangeJson};
|
|
export {ToolboxItemSelect};
|
|
export {ToolboxItemSelectJson};
|
|
export {TrashcanOpen};
|
|
export {TrashcanOpenJson};
|
|
export {UiBase};
|
|
export {VarBase};
|
|
export {VarBaseJson};
|
|
export {VarCreate};
|
|
export {VarCreateJson};
|
|
export {VarDelete};
|
|
export {VarDeleteJson};
|
|
export {VarRename};
|
|
export {VarRenameJson};
|
|
export {ViewportChange};
|
|
export {ViewportChangeJson};
|
|
|
|
// Event types.
|
|
export const BLOCK_CHANGE = eventUtils.BLOCK_CHANGE;
|
|
export const BLOCK_CREATE = eventUtils.BLOCK_CREATE;
|
|
export const BLOCK_DELETE = eventUtils.BLOCK_DELETE;
|
|
export const BLOCK_DRAG = eventUtils.BLOCK_DRAG;
|
|
export const BLOCK_MOVE = eventUtils.BLOCK_MOVE;
|
|
export const BLOCK_FIELD_INTERMEDIATE_CHANGE =
|
|
eventUtils.BLOCK_FIELD_INTERMEDIATE_CHANGE;
|
|
export const BUBBLE_OPEN = eventUtils.BUBBLE_OPEN;
|
|
export type BumpEvent = eventUtils.BumpEvent;
|
|
export const BUMP_EVENTS = eventUtils.BUMP_EVENTS;
|
|
export const CHANGE = eventUtils.CHANGE;
|
|
export const CLICK = eventUtils.CLICK;
|
|
export const COMMENT_CHANGE = eventUtils.COMMENT_CHANGE;
|
|
export const COMMENT_CREATE = eventUtils.COMMENT_CREATE;
|
|
export const COMMENT_DELETE = eventUtils.COMMENT_DELETE;
|
|
export const COMMENT_MOVE = eventUtils.COMMENT_MOVE;
|
|
export const CREATE = eventUtils.CREATE;
|
|
export const DELETE = eventUtils.DELETE;
|
|
export const FINISHED_LOADING = eventUtils.FINISHED_LOADING;
|
|
export const MARKER_MOVE = eventUtils.MARKER_MOVE;
|
|
export const MOVE = eventUtils.MOVE;
|
|
export const SELECTED = eventUtils.SELECTED;
|
|
export const THEME_CHANGE = eventUtils.THEME_CHANGE;
|
|
export const TOOLBOX_ITEM_SELECT = eventUtils.TOOLBOX_ITEM_SELECT;
|
|
export const TRASHCAN_OPEN = eventUtils.TRASHCAN_OPEN;
|
|
export const UI = eventUtils.UI;
|
|
export const VAR_CREATE = eventUtils.VAR_CREATE;
|
|
export const VAR_DELETE = eventUtils.VAR_DELETE;
|
|
export const VAR_RENAME = eventUtils.VAR_RENAME;
|
|
export const VIEWPORT_CHANGE = eventUtils.VIEWPORT_CHANGE;
|
|
|
|
// Event utils.
|
|
export const clearPendingUndo = eventUtils.clearPendingUndo;
|
|
export const disable = eventUtils.disable;
|
|
export const enable = eventUtils.enable;
|
|
export const filter = eventUtils.filter;
|
|
export const fire = eventUtils.fire;
|
|
export const fromJson = eventUtils.fromJson;
|
|
export const getDescendantIds = eventUtils.getDescendantIds;
|
|
export const get = eventUtils.get;
|
|
export const getGroup = eventUtils.getGroup;
|
|
export const getRecordUndo = eventUtils.getRecordUndo;
|
|
export const isEnabled = eventUtils.isEnabled;
|
|
export const setGroup = eventUtils.setGroup;
|
|
export const setRecordUndo = eventUtils.setRecordUndo;
|
|
export const disableOrphans = eventUtils.disableOrphans;
|