2017-11-24 07:50:27 +00:00
|
|
|
// (C) Copyright 2015 Martin Dougiamas
|
|
|
|
//
|
|
|
|
// 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';
|
|
|
|
import { CoreAutoFocusDirective } from './auto-focus';
|
2018-02-15 09:06:57 +00:00
|
|
|
import { CoreDownloadFileDirective } from './download-file';
|
2017-11-24 07:50:27 +00:00
|
|
|
import { CoreExternalContentDirective } from './external-content';
|
|
|
|
import { CoreFormatTextDirective } from './format-text';
|
|
|
|
import { CoreLinkDirective } from './link';
|
2017-11-29 13:36:29 +00:00
|
|
|
import { CoreKeepKeyboardDirective } from './keep-keyboard';
|
2018-01-12 12:57:53 +00:00
|
|
|
import { CoreUserLinkDirective } from './user-link';
|
2018-02-14 16:19:09 +00:00
|
|
|
import { CoreAutoRowsDirective } from './auto-rows';
|
|
|
|
import { CoreLongPressDirective } from './long-press';
|
2018-03-16 12:44:57 +00:00
|
|
|
import { CoreChartDirective } from './chart';
|
2017-11-24 07:50:27 +00:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
declarations: [
|
|
|
|
CoreAutoFocusDirective,
|
2018-02-15 09:06:57 +00:00
|
|
|
CoreDownloadFileDirective,
|
2017-11-24 07:50:27 +00:00
|
|
|
CoreExternalContentDirective,
|
|
|
|
CoreFormatTextDirective,
|
2017-11-29 13:36:29 +00:00
|
|
|
CoreKeepKeyboardDirective,
|
2018-01-12 12:57:53 +00:00
|
|
|
CoreLinkDirective,
|
2018-02-14 16:19:09 +00:00
|
|
|
CoreUserLinkDirective,
|
|
|
|
CoreAutoRowsDirective,
|
2018-03-16 12:44:57 +00:00
|
|
|
CoreLongPressDirective,
|
|
|
|
CoreChartDirective
|
2017-11-24 07:50:27 +00:00
|
|
|
],
|
|
|
|
imports: [],
|
|
|
|
exports: [
|
|
|
|
CoreAutoFocusDirective,
|
2018-02-15 09:06:57 +00:00
|
|
|
CoreDownloadFileDirective,
|
2017-11-24 07:50:27 +00:00
|
|
|
CoreExternalContentDirective,
|
|
|
|
CoreFormatTextDirective,
|
2017-11-29 13:36:29 +00:00
|
|
|
CoreKeepKeyboardDirective,
|
2018-01-12 12:57:53 +00:00
|
|
|
CoreLinkDirective,
|
2018-02-14 16:19:09 +00:00
|
|
|
CoreUserLinkDirective,
|
|
|
|
CoreAutoRowsDirective,
|
2018-03-16 12:44:57 +00:00
|
|
|
CoreLongPressDirective,
|
|
|
|
CoreChartDirective
|
2017-11-24 07:50:27 +00:00
|
|
|
]
|
|
|
|
})
|
|
|
|
export class CoreDirectivesModule {}
|