2020-10-15 15:06:50 +00:00
|
|
|
// (C) Copyright 2015 Moodle Pty Ltd.
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
|
|
|
|
import { NgModule } from '@angular/core';
|
2020-10-19 13:35:00 +00:00
|
|
|
|
2020-10-19 10:51:36 +00:00
|
|
|
import { CoreAutoFocusDirective } from './auto-focus';
|
2020-10-22 07:45:39 +00:00
|
|
|
import { CoreExternalContentDirective } from './external-content';
|
2020-10-26 07:41:46 +00:00
|
|
|
import { CoreFabDirective } from './fab';
|
2020-10-19 10:31:31 +00:00
|
|
|
import { CoreFormatTextDirective } from './format-text';
|
2020-10-26 07:41:46 +00:00
|
|
|
import { CoreLinkDirective } from './link';
|
2020-10-22 11:30:23 +00:00
|
|
|
import { CoreLongPressDirective } from './long-press';
|
2020-10-19 13:35:00 +00:00
|
|
|
import { CoreSupressEventsDirective } from './supress-events';
|
2020-10-28 14:59:36 +00:00
|
|
|
import { CoreFaIconDirective } from './fa-icon';
|
2020-11-13 12:43:35 +00:00
|
|
|
import { CoreUserLinkDirective } from './user-link';
|
2021-01-25 15:10:00 +00:00
|
|
|
import { CoreAutoRowsDirective } from './auto-rows';
|
2020-10-15 15:06:50 +00:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
declarations: [
|
2020-10-19 10:51:36 +00:00
|
|
|
CoreAutoFocusDirective,
|
2020-10-22 07:45:39 +00:00
|
|
|
CoreExternalContentDirective,
|
2020-10-19 10:31:31 +00:00
|
|
|
CoreFormatTextDirective,
|
2020-10-26 07:41:46 +00:00
|
|
|
CoreLinkDirective,
|
2020-10-15 15:06:50 +00:00
|
|
|
CoreLongPressDirective,
|
2020-10-19 13:35:00 +00:00
|
|
|
CoreSupressEventsDirective,
|
2020-10-22 11:30:23 +00:00
|
|
|
CoreFabDirective,
|
2020-10-28 14:59:36 +00:00
|
|
|
CoreFaIconDirective,
|
2020-11-13 12:43:35 +00:00
|
|
|
CoreUserLinkDirective,
|
2021-01-25 15:10:00 +00:00
|
|
|
CoreAutoRowsDirective,
|
2020-10-15 15:06:50 +00:00
|
|
|
],
|
|
|
|
imports: [],
|
|
|
|
exports: [
|
2020-10-19 10:51:36 +00:00
|
|
|
CoreAutoFocusDirective,
|
2020-10-22 07:45:39 +00:00
|
|
|
CoreExternalContentDirective,
|
2020-10-19 10:31:31 +00:00
|
|
|
CoreFormatTextDirective,
|
2020-10-26 07:41:46 +00:00
|
|
|
CoreLinkDirective,
|
2020-10-15 15:06:50 +00:00
|
|
|
CoreLongPressDirective,
|
2020-10-19 13:35:00 +00:00
|
|
|
CoreSupressEventsDirective,
|
2020-10-22 11:30:23 +00:00
|
|
|
CoreFabDirective,
|
2020-10-28 14:59:36 +00:00
|
|
|
CoreFaIconDirective,
|
2020-11-13 12:43:35 +00:00
|
|
|
CoreUserLinkDirective,
|
2021-01-25 15:10:00 +00:00
|
|
|
CoreAutoRowsDirective,
|
2020-10-15 15:06:50 +00:00
|
|
|
],
|
|
|
|
})
|
|
|
|
export class CoreDirectivesModule {}
|