UNPKG

@visa/nova-angular

Version:

Visa Product Design System Nova Angular library

44 lines (43 loc) 1.77 kB
/** * Copyright (c) 2025 Visa, Inc. * * 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. * **/ export declare const A_LOWERCASE_KEY = "a"; export declare const DOWN_ARROW_KEY = "ArrowDown"; export declare const END_KEY = "End"; export declare const ESCAPE_KEY = "Escape"; export declare const HOME_KEY = "Home"; export declare const LEFT_ARROW_KEY = "ArrowLeft"; export declare const PAGE_DOWN_KEY = "PageDown"; export declare const PAGE_UP_KEY = "PageUp"; export declare const RIGHT_ARROW_KEY = "ArrowRight"; export declare const SPACE_KEY = " "; export declare const SPACE_CODE = "Space"; export declare const TAB_KEY = "Tab"; export declare const UP_ARROW_KEY = "ArrowUp"; export declare const ALT_KEY = "Alt"; export declare const SHIFT_KEY = "Shift"; export declare const ENTER_KEY = "Enter"; export declare const BACKSPACE_KEY = "Backspace"; export declare const DELETE_KEY = "Delete"; export declare const CTRL_KEY = "Control"; export declare const META_KEY = "Meta"; export declare const DEL_KEY = "Del"; export declare const SpacingProperties: { readonly INHERIT: "inherit"; readonly NORMAL: "normal"; readonly AUTO: "auto"; }; export type SpacingProperties = (typeof SpacingProperties)[keyof typeof SpacingProperties];