2019-04-04 15:03:40 -07:00
|
|
|
/**
|
|
|
|
* @license
|
2020-05-19 12:08:49 -07:00
|
|
|
* Copyright Google LLC All Rights Reserved.
|
2019-04-04 15:03:40 -07:00
|
|
|
*
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
|
|
* found in the LICENSE file at https://angular.io/license
|
|
|
|
*/
|
|
|
|
|
|
|
|
import {CommonModule} from '@angular/common';
|
|
|
|
import {NgModule} from '@angular/core';
|
|
|
|
|
|
|
|
import {ExpandingRow} from './expanding_row';
|
|
|
|
import {ExpandingRowDetailsCaption} from './expanding_row_details_caption';
|
|
|
|
import {ExpandingRowDetailsContent} from './expanding_row_details_content';
|
|
|
|
import {ExpandingRowHost} from './expanding_row_host';
|
|
|
|
import {ExpandingRowSummary} from './expanding_row_summary';
|
2020-09-21 14:06:31 -07:00
|
|
|
import {ExpandingRowUncollapsible} from './expanding_row_uncollapsible';
|
2019-04-04 15:03:40 -07:00
|
|
|
|
|
|
|
/** The main module for the cfc-expanding-row component. */
|
|
|
|
@NgModule({
|
|
|
|
declarations: [
|
|
|
|
ExpandingRow,
|
|
|
|
ExpandingRowDetailsCaption,
|
|
|
|
ExpandingRowDetailsContent,
|
|
|
|
ExpandingRowHost,
|
|
|
|
ExpandingRowSummary,
|
2020-09-21 14:06:31 -07:00
|
|
|
ExpandingRowUncollapsible,
|
2019-04-04 15:03:40 -07:00
|
|
|
],
|
|
|
|
exports: [
|
|
|
|
ExpandingRow,
|
|
|
|
ExpandingRowDetailsCaption,
|
|
|
|
ExpandingRowDetailsContent,
|
|
|
|
ExpandingRowHost,
|
|
|
|
ExpandingRowSummary,
|
2020-09-21 14:06:31 -07:00
|
|
|
ExpandingRowUncollapsible,
|
2019-04-04 15:03:40 -07:00
|
|
|
],
|
|
|
|
imports: [
|
|
|
|
CommonModule,
|
|
|
|
],
|
|
|
|
})
|
|
|
|
export class ExpandingRowModule {
|
|
|
|
}
|