md2
Version:
Angular2 based Material Design components, directives and services are Accordion, Autocomplete, Chips(Tags), Collapse, Colorpicker, Data Table, Datepicker, Dialog(Modal), Menu, Multiselect, Select, Tabs, Tags(Chips), Toast and Tooltip.
28 lines • 1.29 kB
JavaScript
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { MdRippleModule } from '../ripple/index';
import { MdSelectionModule } from '../selection/index';
import { MdOption } from './option';
import { MdOptgroup } from './optgroup';
var MdOptionModule = (function () {
function MdOptionModule() {
}
return MdOptionModule;
}());
MdOptionModule = __decorate([
NgModule({
imports: [MdRippleModule, CommonModule, MdSelectionModule],
exports: [MdOption, MdOptgroup],
declarations: [MdOption, MdOptgroup]
})
], MdOptionModule);
export { MdOptionModule };
export * from './option';
export * from './optgroup';
//# sourceMappingURL=index.js.map