2020-10-15 17:06:50 +02: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 15:35:00 +02:00
|
|
|
|
2020-10-19 12:51:36 +02:00
|
|
|
import { CoreAutoFocusDirective } from './auto-focus';
|
2021-04-23 11:31:11 +02:00
|
|
|
import { CoreAutoRowsDirective } from './auto-rows';
|
2020-10-22 09:45:39 +02:00
|
|
|
import { CoreExternalContentDirective } from './external-content';
|
2020-10-26 08:41:46 +01:00
|
|
|
import { CoreFabDirective } from './fab';
|
2021-04-23 11:31:11 +02:00
|
|
|
import { CoreFaIconDirective } from './fa-icon';
|
2020-10-19 12:31:31 +02:00
|
|
|
import { CoreFormatTextDirective } from './format-text';
|
2020-10-26 08:41:46 +01:00
|
|
|
import { CoreLinkDirective } from './link';
|
2020-10-22 13:30:23 +02:00
|
|
|
import { CoreLongPressDirective } from './long-press';
|
2020-10-19 15:35:00 +02:00
|
|
|
import { CoreSupressEventsDirective } from './supress-events';
|
2020-11-13 13:43:35 +01:00
|
|
|
import { CoreUserLinkDirective } from './user-link';
|
2021-05-12 16:35:45 +02:00
|
|
|
import { CoreAriaButtonClickDirective } from './aria-button';
|
2021-05-13 11:35:03 +02:00
|
|
|
import { CoreOnResizeDirective } from './on-resize';
|
2021-06-18 08:08:39 +02:00
|
|
|
import { CoreDownloadFileDirective } from './download-file';
|
2021-11-19 13:20:00 +01:00
|
|
|
import { CoreCollapsibleHeaderDirective } from './collapsible-header';
|
2021-12-21 16:46:31 +01:00
|
|
|
import { CoreSwipeNavigationDirective } from './swipe-navigation';
|
2022-02-09 17:49:24 +01:00
|
|
|
import { CoreCollapsibleItemDirective } from './collapsible-item';
|
2022-02-24 14:27:39 +01:00
|
|
|
import { CoreCollapsibleFooterDirective } from './collapsible-footer';
|
2022-03-09 12:42:25 +01:00
|
|
|
import { CoreContentDirective } from './content';
|
2022-03-08 18:00:41 +01:00
|
|
|
import { CoreOnAppearDirective } from './on-appear';
|
2020-10-15 17:06:50 +02:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
declarations: [
|
2020-10-19 12:51:36 +02:00
|
|
|
CoreAutoFocusDirective,
|
2021-04-23 11:31:11 +02:00
|
|
|
CoreAutoRowsDirective,
|
2020-10-22 09:45:39 +02:00
|
|
|
CoreExternalContentDirective,
|
2021-04-23 11:31:11 +02:00
|
|
|
CoreFabDirective,
|
|
|
|
CoreFaIconDirective,
|
2020-10-19 12:31:31 +02:00
|
|
|
CoreFormatTextDirective,
|
2020-10-26 08:41:46 +01:00
|
|
|
CoreLinkDirective,
|
2020-10-15 17:06:50 +02:00
|
|
|
CoreLongPressDirective,
|
2020-10-19 15:35:00 +02:00
|
|
|
CoreSupressEventsDirective,
|
2020-11-13 13:43:35 +01:00
|
|
|
CoreUserLinkDirective,
|
2021-05-12 16:35:45 +02:00
|
|
|
CoreAriaButtonClickDirective,
|
2022-03-08 18:00:41 +01:00
|
|
|
CoreOnAppearDirective,
|
2021-05-13 11:35:03 +02:00
|
|
|
CoreOnResizeDirective,
|
2021-06-18 08:08:39 +02:00
|
|
|
CoreDownloadFileDirective,
|
2021-11-19 13:20:00 +01:00
|
|
|
CoreCollapsibleHeaderDirective,
|
2021-12-21 16:46:31 +01:00
|
|
|
CoreSwipeNavigationDirective,
|
2022-02-09 17:49:24 +01:00
|
|
|
CoreCollapsibleItemDirective,
|
2022-02-24 14:27:39 +01:00
|
|
|
CoreCollapsibleFooterDirective,
|
2022-03-09 12:42:25 +01:00
|
|
|
CoreContentDirective,
|
2020-10-15 17:06:50 +02:00
|
|
|
],
|
|
|
|
exports: [
|
2020-10-19 12:51:36 +02:00
|
|
|
CoreAutoFocusDirective,
|
2021-04-23 11:31:11 +02:00
|
|
|
CoreAutoRowsDirective,
|
2020-10-22 09:45:39 +02:00
|
|
|
CoreExternalContentDirective,
|
2021-04-23 11:31:11 +02:00
|
|
|
CoreFabDirective,
|
|
|
|
CoreFaIconDirective,
|
2020-10-19 12:31:31 +02:00
|
|
|
CoreFormatTextDirective,
|
2020-10-26 08:41:46 +01:00
|
|
|
CoreLinkDirective,
|
2020-10-15 17:06:50 +02:00
|
|
|
CoreLongPressDirective,
|
2020-10-19 15:35:00 +02:00
|
|
|
CoreSupressEventsDirective,
|
2020-11-13 13:43:35 +01:00
|
|
|
CoreUserLinkDirective,
|
2021-05-12 16:35:45 +02:00
|
|
|
CoreAriaButtonClickDirective,
|
2022-03-08 18:00:41 +01:00
|
|
|
CoreOnAppearDirective,
|
2021-05-13 11:35:03 +02:00
|
|
|
CoreOnResizeDirective,
|
2021-06-18 08:08:39 +02:00
|
|
|
CoreDownloadFileDirective,
|
2021-11-19 13:20:00 +01:00
|
|
|
CoreCollapsibleHeaderDirective,
|
2021-12-21 16:46:31 +01:00
|
|
|
CoreSwipeNavigationDirective,
|
2022-02-09 17:49:24 +01:00
|
|
|
CoreCollapsibleItemDirective,
|
2022-02-24 14:27:39 +01:00
|
|
|
CoreCollapsibleFooterDirective,
|
2022-03-09 12:42:25 +01:00
|
|
|
CoreContentDirective,
|
2020-10-15 17:06:50 +02:00
|
|
|
],
|
|
|
|
})
|
|
|
|
export class CoreDirectivesModule {}
|