/************************************************************* * * Copyright (c) 2023-2025 The MathJax Consortium * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /** * @file Exports the needed pieces of mj-context-menu so that we * can have ES5 and ES6 versions * * @author dpvc@mathjax.org (Davide Cervone) */ export { ContextMenu } from '#menu/context_menu.js'; export { SubMenu } from '#menu/sub_menu.js'; export { Submenu } from '#menu/item_submenu.js'; export { Radio } from '#menu/item_radio.js'; export { Rule } from '#menu/item_rule.js'; export { ParserFactory } from '#menu/parser_factory.js'; export { Parser } from '#menu/parse.js'; export * as CssStyles from '#menu/css_util.js'; export { HtmlClasses } from '#menu/html_classes.js'; export { Menu } from '#menu/menu.js'; export { Item } from '#menu/item.js';