mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
* add majorVersion param move common part in base class * refactor upload queue * fix after refactoring * add comment functionality in versioning add minor and major option in versioning add animation in versioning add new functionality in demo shell * add animation test * add missing properties test and base upload class * fix reload after new version upload [ADF-2582] * update documentation * update doc and fix minor style issues * fix tslint error * change cachebuster * ADF-2672 version manager disable buttons * [ADF-2649] hide show actions in version list * fix tests
51 lines
1.6 KiB
TypeScript
51 lines
1.6 KiB
TypeScript
/*!
|
|
* @license
|
|
* Copyright 2016 Alfresco Software, 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 { CommonModule } from '@angular/common';
|
|
import { FormsModule } from '@angular/forms';
|
|
import { NgModule } from '@angular/core';
|
|
import { MaterialModule } from '../material.module';
|
|
import { TranslateModule } from '@ngx-translate/core';
|
|
|
|
import { VersionUploadComponent } from './version-upload.component';
|
|
import { VersionManagerComponent } from './version-manager.component';
|
|
import { VersionListComponent } from './version-list.component';
|
|
import { UploadModule } from '../upload/upload.module';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule,
|
|
MaterialModule,
|
|
TranslateModule,
|
|
UploadModule,
|
|
FormsModule
|
|
],
|
|
exports: [
|
|
VersionUploadComponent,
|
|
VersionManagerComponent,
|
|
VersionListComponent,
|
|
FormsModule
|
|
],
|
|
declarations: [
|
|
VersionUploadComponent,
|
|
VersionManagerComponent,
|
|
VersionListComponent
|
|
],
|
|
providers: []
|
|
})
|
|
export class VersionManagerModule {}
|