@blueprintjs/popover2
Version:
Re-exports of popover-related components from @blueprintjs/core
45 lines (40 loc) • 2.02 kB
text/typescript
/* !
* Copyright 2021 Palantir Technologies, Inc. All rights reserved.
*
* 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.
*/
import { Classes as CoreClasses } from "@blueprintjs/core";
/** @deprecated use `{ Classes } from "@blueprintjs/core"` instead */
export const Classes = {
CONTEXT_MENU2: CoreClasses.CONTEXT_MENU,
CONTEXT_MENU2_BACKDROP: CoreClasses.CONTEXT_MENU_BACKDROP,
CONTEXT_MENU2_POPOVER2: CoreClasses.CONTEXT_MENU_POPOVER,
CONTEXT_MENU2_VIRTUAL_TARGET: CoreClasses.CONTEXT_MENU_VIRTUAL_TARGET,
POPOVER2: CoreClasses.POPOVER,
POPOVER2_ARROW: CoreClasses.POPOVER_ARROW,
POPOVER2_BACKDROP: CoreClasses.POPOVER_BACKDROP,
POPOVER2_CAPTURING_DISMISS: CoreClasses.POPOVER_CAPTURING_DISMISS,
POPOVER2_CONTENT: CoreClasses.POPOVER_CONTENT,
POPOVER2_CONTENT_PLACEMENT: CoreClasses.POPOVER_CONTENT_PLACEMENT,
POPOVER2_CONTENT_SIZING: CoreClasses.POPOVER_CONTENT_SIZING,
POPOVER2_DISMISS: CoreClasses.POPOVER_DISMISS,
POPOVER2_DISMISS_OVERRIDE: CoreClasses.POPOVER_DISMISS_OVERRIDE,
POPOVER2_MATCH_TARGET_WIDTH: CoreClasses.POPOVER_MATCH_TARGET_WIDTH,
POPOVER2_OPEN: CoreClasses.POPOVER_OPEN,
POPOVER2_POPPER_ESCAPED: CoreClasses.POPOVER_POPPER_ESCAPED,
POPOVER2_REFERENCE_HIDDEN: CoreClasses.POPOVER_REFERENCE_HIDDEN,
POPOVER2_TARGET: CoreClasses.POPOVER_TARGET,
POPOVER2_TRANSITION_CONTAINER: CoreClasses.POPOVER_TRANSITION_CONTAINER,
TOOLTIP2: CoreClasses.TOOLTIP,
TOOLTIP2_INDICATOR: CoreClasses.TOOLTIP_INDICATOR,
};