Skip to content
Snippets Groups Projects
app-material.module.js 3.84 KiB
Newer Older
  • Learn to ignore specific revisions
  • "use strict";
    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;
    };
    Object.defineProperty(exports, "__esModule", { value: true });
    var core_1 = require("@angular/core");
    var material_1 = require("@angular/material");
    
    var french_paginator_intl_1 = require("./french-paginator-intl");
    
    Damien's avatar
    Damien committed
    var AppMaterialModule = /** @class */ (function () {
    
        function AppMaterialModule() {
        }
    
    Damien's avatar
    Damien committed
        AppMaterialModule = __decorate([
            core_1.NgModule({
                imports: [
                    material_1.MatCheckboxModule,
                    material_1.MatSelectModule,
                    material_1.MatSlideToggleModule,
                    material_1.MatInputModule,
                    material_1.MatTooltipModule,
                    material_1.MatTabsModule,
                    material_1.MatSidenavModule,
                    material_1.MatButtonModule,
                    material_1.MatCardModule,
                    material_1.MatButtonToggleModule,
                    material_1.MatProgressSpinnerModule,
                    material_1.MatToolbarModule,
                    material_1.MatMenuModule,
    
                    material_1.MatGridListModule,
                    material_1.MatTableModule,
                    material_1.MatPaginatorModule,
                    material_1.MatSortModule,
                    material_1.MatDatepickerModule,
                    material_1.MatNativeDateModule,
                    material_1.MatExpansionModule,
                    material_1.MatAutocompleteModule,
                    material_1.MatSnackBarModule,
                    material_1.MatIconModule,
    
                    material_1.MatDialogModule,
    
                    material_1.MatListModule,
                    material_1.MatChipsModule,
                    material_1.MatStepperModule,
    
                    material_1.MatRadioModule,
                    material_1.MatSliderModule
    
    Damien's avatar
    Damien committed
                ],
                exports: [
                    material_1.MatCheckboxModule,
                    material_1.MatSelectModule,
                    material_1.MatSlideToggleModule,
                    material_1.MatInputModule,
                    material_1.MatTooltipModule,
                    material_1.MatTabsModule,
                    material_1.MatSidenavModule,
                    material_1.MatButtonModule,
                    material_1.MatCardModule,
                    material_1.MatButtonToggleModule,
                    material_1.MatProgressSpinnerModule,
                    material_1.MatToolbarModule,
                    material_1.MatMenuModule,
    
                    material_1.MatGridListModule,
                    material_1.MatTableModule,
                    material_1.MatPaginatorModule,
                    material_1.MatSortModule,
                    material_1.MatDatepickerModule,
                    material_1.MatNativeDateModule,
                    material_1.MatExpansionModule,
                    material_1.MatAutocompleteModule,
                    material_1.MatSnackBarModule,
                    material_1.MatIconModule,
    
                    material_1.MatDialogModule,
    
                    material_1.MatListModule,
                    material_1.MatChipsModule,
                    material_1.MatStepperModule,
    
                    material_1.MatRadioModule,
                    material_1.MatSliderModule
    
                ],
                providers: [
                    { provide: material_1.MatPaginatorIntl, useValue: french_paginator_intl_1.getFrenchPaginatorIntl() }
    
    Damien's avatar
    Damien committed
                ]
            })
        ], AppMaterialModule);
    
        return AppMaterialModule;
    }());
    exports.AppMaterialModule = AppMaterialModule;