clr-angular-static-fix
Version:
1. Install Clarity Icons package through npm:
21 lines (19 loc) • 889 B
text/typescript
/*
* Copyright (c) 2016-2018 VMware, Inc. All Rights Reserved.
* This software is released under MIT license.
* The full license information can be found in LICENSE in the root directory of this project.
*/
export declare class ResponsiveNavCodes {
static NAV_LEVEL_1: number = 1;
static NAV_LEVEL_2: number = 2;
static NAV_CLOSE_ALL: string = 'NAV_CLOSE_ALL';
static NAV_OPEN: string = 'NAV_OPEN';
static NAV_CLOSE: string = 'NAV_CLOSE';
static NAV_TOGGLE: string = 'NAV_TOGGLE';
static NAV_CLASS_HAMBURGER_MENU: string = 'open-hamburger-menu';
static NAV_CLASS_OVERFLOW_MENU: string = 'open-overflow-menu';
static NAV_CLASS_TRIGGER_1: string = 'header-hamburger-trigger';
static NAV_CLASS_TRIGGER_2: string = 'header-overflow-trigger';
static NAV_CLASS_LEVEL_1: string = 'clr-nav-level-1';
static NAV_CLASS_LEVEL_2: string = 'clr-nav-level-2';
}