UNPKG

clr-angular-static-fix

Version:

1. Install Clarity Icons package through npm:

28 lines (23 loc) 1.09 kB
/* * 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. */ import { CommonModule } from '@angular/common'; import { NgModule, Type } from '@angular/core'; import { ClrCheckboxDeprecated } from './checkbox'; export const CLR_CHECKBOX_DIRECTIVES: Type<any>[] = [ClrCheckboxDeprecated]; @NgModule({ imports: [CommonModule], declarations: [CLR_CHECKBOX_DIRECTIVES], exports: [CLR_CHECKBOX_DIRECTIVES] }) export class ClrCheckboxModule {} /* tslint:disable variable-name */ /** @deprecated since 0.11 */ export interface Checkbox extends ClrCheckboxDeprecated {} /** @deprecated since 0.11 */ export const Checkbox = ClrCheckboxDeprecated; /** @deprecated since 0.12 */ export interface ClrCheckbox extends ClrCheckboxDeprecated {} /** @deprecated since 0.12 */ export const ClrCheckbox = ClrCheckboxDeprecated; /* tslint:enable variable-name */ /** @deprecated since 0.11 */ export const CHECKBOX_DIRECTIVES = CLR_CHECKBOX_DIRECTIVES;