2018-07-23 16:42:17 +02:00
|
|
|
import { NgModule } from '@angular/core';
|
2018-09-06 07:14:55 +02:00
|
|
|
import { RouterModule } from '@angular/router';
|
2019-04-12 15:11:12 +02:00
|
|
|
import { CommonModule, DecimalPipe } from '@angular/common';
|
2018-07-31 15:46:55 +02:00
|
|
|
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
|
2018-07-23 16:42:17 +02:00
|
|
|
|
|
|
|
// MaterialUI modules
|
2019-07-01 11:23:33 +02:00
|
|
|
import { MatBadgeModule } from '@angular/material/badge';
|
|
|
|
import { MatBottomSheetModule } from '@angular/material/bottom-sheet';
|
|
|
|
import { MatButtonModule } from '@angular/material/button';
|
|
|
|
import { MatButtonToggleModule } from '@angular/material/button-toggle';
|
|
|
|
import { MatCardModule } from '@angular/material/card';
|
|
|
|
import { MatCheckboxModule } from '@angular/material/checkbox';
|
2019-08-06 14:37:41 +02:00
|
|
|
import { DateAdapter, MAT_DATE_LOCALE } from '@angular/material/core';
|
|
|
|
import { MatMomentDateModule, MAT_MOMENT_DATE_ADAPTER_OPTIONS } from '@angular/material-moment-adapter';
|
2019-07-01 11:23:33 +02:00
|
|
|
import { MatDatepickerModule } from '@angular/material/datepicker';
|
|
|
|
import { MatDividerModule } from '@angular/material/divider';
|
|
|
|
import { MatIconModule } from '@angular/material/icon';
|
|
|
|
import { MatInputModule } from '@angular/material/input';
|
|
|
|
import { MatPaginatorModule } from '@angular/material/paginator';
|
|
|
|
import { MatProgressBarModule } from '@angular/material/progress-bar';
|
|
|
|
import { MatProgressSpinnerModule } from '@angular/material/progress-spinner';
|
|
|
|
import { MatSidenavModule } from '@angular/material/sidenav';
|
|
|
|
import { MatSliderModule } from '@angular/material/slider';
|
|
|
|
import { MatSnackBarModule } from '@angular/material/snack-bar';
|
|
|
|
import { MatSortModule } from '@angular/material/sort';
|
|
|
|
import { MatStepperModule } from '@angular/material/stepper';
|
|
|
|
import { MatTableModule } from '@angular/material/table';
|
|
|
|
import { MatTabsModule } from '@angular/material/tabs';
|
|
|
|
import { MatToolbarModule } from '@angular/material/toolbar';
|
|
|
|
import { MatTooltipModule } from '@angular/material/tooltip';
|
2018-09-13 07:57:38 +02:00
|
|
|
import { MatAutocompleteModule } from '@angular/material/autocomplete';
|
2019-07-01 11:23:33 +02:00
|
|
|
import { MatChipsModule } from '@angular/material/chips';
|
|
|
|
import { MatRadioModule } from '@angular/material/radio';
|
2018-09-13 07:57:38 +02:00
|
|
|
import { NgxMatSelectSearchModule } from 'ngx-mat-select-search';
|
2018-08-02 16:39:08 +02:00
|
|
|
import { MatDialogModule } from '@angular/material/dialog';
|
2018-07-23 16:42:17 +02:00
|
|
|
import { MatListModule } from '@angular/material/list';
|
|
|
|
import { MatExpansionModule } from '@angular/material/expansion';
|
|
|
|
import { MatMenuModule } from '@angular/material/menu';
|
2018-08-16 17:03:39 +02:00
|
|
|
import { MatFormFieldModule } from '@angular/material/form-field';
|
|
|
|
import { MatSelectModule } from '@angular/material/select';
|
2018-10-15 11:52:57 +02:00
|
|
|
import { DragDropModule } from '@angular/cdk/drag-drop';
|
Replaces the old `angular2tree` with a custom drag&drop tree
Calculates the direction of the moving.
Finishes the moving of nodes in same level
Adds some style
Sets the padding dynamically
Adds placeholder depends on the horizontal movement
Set the placeholder at the correct place, so the user can see, where he will drop the moved node
Finishes moving of nodes
- Old parents change their option to expand.
- New parents change their option to expand.
- If the user moves a node between nodes with a higher level, the node will be moved to the next index with same or lower level.
Fixes the visibility of moved node
- If the new parent is not visible, the moved node will not be seen.
If the user moves an expanded node, the new parent should expanded, too, if it's not already.
Sending successfully data to the server
- Sorting the items
Handles moving nodes between parent and children
- If the user moves a node between a parent and its children, the children will be relinked to the moved node as their new parent.
Replaces the old `sorting-tree` to a new one
- The new `sorted-tree` replaces the old `sorting-tree`.
- The old package `angular-tree-component` was removed.
- The user will only see the buttons to save or cancel his changes, if he made changes.
- The buttons, that do not work currently, were removed.
Adds a guard to check if the user made changes.
- If the user made changes but he has not saved them, then there is a dialog that will prompt to ask for confirmation.
Before cancelling the changes the user has to confirm this.
2019-02-22 12:04:36 +01:00
|
|
|
import { CdkTreeModule } from '@angular/cdk/tree';
|
2019-04-25 12:57:11 +02:00
|
|
|
import { ScrollingModule } from '@angular/cdk/scrolling';
|
2018-07-23 16:42:17 +02:00
|
|
|
|
|
|
|
// ngx-translate
|
2019-08-06 14:37:41 +02:00
|
|
|
import { TranslateModule, TranslateService } from '@ngx-translate/core';
|
2018-07-23 16:42:17 +02:00
|
|
|
|
2018-11-16 16:09:15 +01:00
|
|
|
// ngx-file-drop
|
2019-07-01 11:23:33 +02:00
|
|
|
import { NgxFileDropModule } from 'ngx-file-drop';
|
2018-11-16 16:09:15 +01:00
|
|
|
|
2018-11-20 13:31:56 +01:00
|
|
|
// TinyMCE
|
|
|
|
import { EditorModule } from '@tinymce/tinymce-angular';
|
|
|
|
|
2018-07-23 16:42:17 +02:00
|
|
|
// directives
|
2018-09-03 17:57:20 +02:00
|
|
|
import { PermsDirective } from './directives/perms.directive';
|
2019-07-30 09:01:59 +02:00
|
|
|
import { IsSuperAdminDirective } from './directives/is-super-admin.directive';
|
2018-07-31 15:46:55 +02:00
|
|
|
import { DomChangeDirective } from './directives/dom-change.directive';
|
2018-10-05 16:34:08 +02:00
|
|
|
import { AutofocusDirective } from './directives/autofocus.directive';
|
2018-09-02 11:05:09 +02:00
|
|
|
|
2019-06-14 11:18:54 +02:00
|
|
|
// PblNgrid. Cleanup Required.
|
|
|
|
import { PblNgridModule } from '@pebula/ngrid';
|
|
|
|
import { PblNgridMaterialModule } from '@pebula/ngrid-material';
|
2019-07-19 14:35:24 +02:00
|
|
|
import { PblNgridTargetEventsModule } from '@pebula/ngrid/target-events';
|
2019-06-14 11:18:54 +02:00
|
|
|
|
2019-08-06 14:37:41 +02:00
|
|
|
// time picker because angular still doesnt offer one!!
|
|
|
|
import { NgxMaterialTimepickerModule } from 'ngx-material-timepicker';
|
|
|
|
|
2018-09-02 11:05:09 +02:00
|
|
|
// components
|
2018-08-28 13:54:25 +02:00
|
|
|
import { HeadBarComponent } from './components/head-bar/head-bar.component';
|
2018-09-06 07:14:55 +02:00
|
|
|
import { LegalNoticeContentComponent } from './components/legal-notice-content/legal-notice-content.component';
|
|
|
|
import { PrivacyPolicyContentComponent } from './components/privacy-policy-content/privacy-policy-content.component';
|
2018-09-13 07:57:38 +02:00
|
|
|
import { SearchValueSelectorComponent } from './components/search-value-selector/search-value-selector.component';
|
2018-09-18 15:51:57 +02:00
|
|
|
import { OpenSlidesDateAdapter } from './date-adapter';
|
2018-10-01 15:36:16 +02:00
|
|
|
import { PromptDialogComponent } from './components/prompt-dialog/prompt-dialog.component';
|
2018-10-15 11:52:57 +02:00
|
|
|
import { SortingListComponent } from './components/sorting-list/sorting-list.component';
|
2018-11-16 10:25:17 +01:00
|
|
|
import { SortingTreeComponent } from './components/sorting-tree/sorting-tree.component';
|
2018-11-27 22:44:37 +01:00
|
|
|
import { ChoiceDialogComponent } from './components/choice-dialog/choice-dialog.component';
|
2019-05-07 16:25:39 +02:00
|
|
|
import { SortFilterBarComponent } from './components/sort-filter-bar/sort-filter-bar.component';
|
|
|
|
import { SortBottomSheetComponent } from './components/sort-filter-bar/sort-bottom-sheet/sort-bottom-sheet.component';
|
|
|
|
import { FilterMenuComponent } from './components/sort-filter-bar/filter-menu/filter-menu.component';
|
2019-01-16 15:54:34 +01:00
|
|
|
import { LogoComponent } from './components/logo/logo.component';
|
2019-01-18 16:55:56 +01:00
|
|
|
import { C4DialogComponent, CopyrightSignComponent } from './components/copyright-sign/copyright-sign.component';
|
2019-01-10 15:06:10 +01:00
|
|
|
import { ProjectorButtonComponent } from './components/projector-button/projector-button.component';
|
|
|
|
import { ProjectionDialogComponent } from './components/projection-dialog/projection-dialog.component';
|
|
|
|
import { ResizedDirective } from './directives/resized.directive';
|
2019-01-24 16:25:50 +01:00
|
|
|
import { MetaTextBlockComponent } from './components/meta-text-block/meta-text-block.component';
|
2018-11-08 15:34:43 +01:00
|
|
|
import { OpenSlidesTranslateModule } from '../core/translate/openslides-translate-module';
|
2019-01-31 13:40:27 +01:00
|
|
|
import { ProjectorComponent } from './components/projector/projector.component';
|
|
|
|
import { SlideContainerComponent } from './components/slide-container/slide-container.component';
|
2019-02-14 16:02:18 +01:00
|
|
|
import { CountdownTimeComponent } from './components/contdown-time/countdown-time.component';
|
2019-02-21 16:48:19 +01:00
|
|
|
import { MediaUploadContentComponent } from './components/media-upload-content/media-upload-content.component';
|
2019-04-12 15:11:12 +02:00
|
|
|
import { PrecisionPipe } from './pipes/precision.pipe';
|
2019-04-23 16:57:35 +02:00
|
|
|
import { SpeakerButtonComponent } from './components/speaker-button/speaker-button.component';
|
2019-05-09 16:18:14 +02:00
|
|
|
import { GridLayoutComponent } from './components/grid-layout/grid-layout.component';
|
|
|
|
import { TileComponent } from './components/tile/tile.component';
|
|
|
|
import { BlockTileComponent } from './components/block-tile/block-tile.component';
|
2019-06-04 09:37:01 +02:00
|
|
|
import { IconContainerComponent } from './components/icon-container/icon-container.component';
|
2019-06-14 11:18:54 +02:00
|
|
|
import { ListViewTableComponent } from './components/list-view-table/list-view-table.component';
|
2019-06-03 17:04:30 +02:00
|
|
|
import { AgendaContentObjectFormComponent } from './components/agenda-content-object-form/agenda-content-object-form.component';
|
2019-07-04 14:37:36 +02:00
|
|
|
import { ExtensionFieldComponent } from './components/extension-field/extension-field.component';
|
2019-05-14 16:59:47 +02:00
|
|
|
import { AttachmentControlComponent } from './components/attachment-control/attachment-control.component';
|
2019-07-29 16:15:47 +02:00
|
|
|
import { RoundedInputComponent } from './components/rounded-input/rounded-input.component';
|
2019-08-01 13:23:56 +02:00
|
|
|
import { ProgressSnackBarComponent } from './components/progress-snack-bar/progress-snack-bar.component';
|
2019-07-11 14:06:01 +02:00
|
|
|
import { SuperSearchComponent } from 'app/site/common/components/super-search/super-search.component';
|
|
|
|
import { OverlayComponent } from 'app/site/common/components/overlay/overlay.component';
|
|
|
|
import { PreviewComponent } from './components/preview/preview.component';
|
|
|
|
import { PdfViewerModule } from 'ng2-pdf-viewer';
|
|
|
|
import { GlobalSpinnerComponent } from 'app/site/common/components/global-spinner/global-spinner.component';
|
2019-08-21 15:05:03 +02:00
|
|
|
import { HeightResizingDirective } from './directives/height-resizing.directive';
|
2018-07-23 16:42:17 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Share Module for all "dumb" components and pipes.
|
|
|
|
*
|
|
|
|
* These components don not import and inject services from core or other features
|
|
|
|
* in their constructors.
|
|
|
|
*
|
|
|
|
* Should receive all data though attributes in the template of the component using them.
|
|
|
|
* No dependency to the rest of our application.
|
|
|
|
*/
|
|
|
|
@NgModule({
|
|
|
|
imports: [
|
|
|
|
CommonModule,
|
|
|
|
FormsModule,
|
2018-08-16 17:03:39 +02:00
|
|
|
MatFormFieldModule,
|
|
|
|
MatSelectModule,
|
2018-07-31 15:46:55 +02:00
|
|
|
ReactiveFormsModule,
|
2018-09-13 07:57:38 +02:00
|
|
|
MatAutocompleteModule,
|
2018-07-23 16:42:17 +02:00
|
|
|
MatButtonModule,
|
|
|
|
MatCheckboxModule,
|
|
|
|
MatToolbarModule,
|
2018-09-18 15:51:57 +02:00
|
|
|
MatDatepickerModule,
|
2019-08-06 14:37:41 +02:00
|
|
|
MatMomentDateModule,
|
2018-07-23 16:42:17 +02:00
|
|
|
MatCardModule,
|
|
|
|
MatInputModule,
|
2018-08-08 17:25:39 +02:00
|
|
|
MatTableModule,
|
2018-08-09 13:27:04 +02:00
|
|
|
MatSortModule,
|
2018-08-08 17:25:39 +02:00
|
|
|
MatPaginatorModule,
|
2018-11-16 16:09:15 +01:00
|
|
|
MatProgressBarModule,
|
2018-07-23 16:42:17 +02:00
|
|
|
MatProgressSpinnerModule,
|
|
|
|
MatSidenavModule,
|
|
|
|
MatListModule,
|
|
|
|
MatExpansionModule,
|
|
|
|
MatMenuModule,
|
2018-08-02 16:39:08 +02:00
|
|
|
MatDialogModule,
|
2018-09-06 07:14:55 +02:00
|
|
|
MatSnackBarModule,
|
2018-09-11 16:38:23 +02:00
|
|
|
MatChipsModule,
|
2018-10-22 16:44:18 +02:00
|
|
|
MatBottomSheetModule,
|
2018-09-18 18:27:14 +02:00
|
|
|
MatTooltipModule,
|
2018-11-12 15:24:23 +01:00
|
|
|
MatBadgeModule,
|
2018-10-11 14:03:44 +02:00
|
|
|
// TODO: there is an error with missing icons
|
|
|
|
// we either wait or include a fixed version manually (dirty)
|
|
|
|
// https://github.com/google/material-design-icons/issues/786
|
|
|
|
MatIconModule,
|
2018-09-30 18:43:20 +02:00
|
|
|
MatRadioModule,
|
|
|
|
MatButtonToggleModule,
|
2018-11-04 11:11:48 +01:00
|
|
|
MatStepperModule,
|
2019-01-11 18:55:09 +01:00
|
|
|
MatTabsModule,
|
2019-01-10 15:06:10 +01:00
|
|
|
MatSliderModule,
|
2019-05-09 16:18:14 +02:00
|
|
|
MatDividerModule,
|
2018-10-15 11:52:57 +02:00
|
|
|
DragDropModule,
|
2018-11-08 15:34:43 +01:00
|
|
|
OpenSlidesTranslateModule.forChild(),
|
2018-09-13 07:57:38 +02:00
|
|
|
RouterModule,
|
2018-11-16 16:09:15 +01:00
|
|
|
NgxMatSelectSearchModule,
|
2019-07-01 11:23:33 +02:00
|
|
|
NgxFileDropModule,
|
2018-11-16 10:25:17 +01:00
|
|
|
EditorModule,
|
2019-04-25 12:57:11 +02:00
|
|
|
CdkTreeModule,
|
2019-06-14 11:18:54 +02:00
|
|
|
ScrollingModule,
|
|
|
|
PblNgridModule,
|
2019-07-19 14:35:24 +02:00
|
|
|
PblNgridMaterialModule,
|
2019-07-11 14:06:01 +02:00
|
|
|
PblNgridTargetEventsModule,
|
2019-08-06 14:37:41 +02:00
|
|
|
PdfViewerModule,
|
|
|
|
NgxMaterialTimepickerModule
|
2018-07-23 16:42:17 +02:00
|
|
|
],
|
|
|
|
exports: [
|
|
|
|
FormsModule,
|
2018-09-13 07:57:38 +02:00
|
|
|
MatAutocompleteModule,
|
2018-08-16 17:03:39 +02:00
|
|
|
MatFormFieldModule,
|
|
|
|
MatSelectModule,
|
2018-07-31 15:46:55 +02:00
|
|
|
ReactiveFormsModule,
|
2018-07-23 16:42:17 +02:00
|
|
|
MatButtonModule,
|
|
|
|
MatCheckboxModule,
|
|
|
|
MatToolbarModule,
|
|
|
|
MatCardModule,
|
2018-09-18 15:51:57 +02:00
|
|
|
MatDatepickerModule,
|
2018-07-23 16:42:17 +02:00
|
|
|
MatInputModule,
|
2018-08-08 17:25:39 +02:00
|
|
|
MatTableModule,
|
2018-08-09 13:27:04 +02:00
|
|
|
MatSortModule,
|
2018-08-08 17:25:39 +02:00
|
|
|
MatPaginatorModule,
|
2018-11-16 16:09:15 +01:00
|
|
|
MatProgressBarModule,
|
2018-07-23 16:42:17 +02:00
|
|
|
MatProgressSpinnerModule,
|
|
|
|
MatSidenavModule,
|
|
|
|
MatListModule,
|
|
|
|
MatExpansionModule,
|
|
|
|
MatMenuModule,
|
2018-08-02 16:39:08 +02:00
|
|
|
MatDialogModule,
|
2018-07-23 16:42:17 +02:00
|
|
|
MatSnackBarModule,
|
2018-09-11 16:38:23 +02:00
|
|
|
MatChipsModule,
|
2018-09-18 18:27:14 +02:00
|
|
|
MatTooltipModule,
|
2019-01-11 18:55:09 +01:00
|
|
|
MatTabsModule,
|
2018-11-12 15:24:23 +01:00
|
|
|
MatBadgeModule,
|
2018-10-11 14:03:44 +02:00
|
|
|
MatIconModule,
|
2018-09-30 18:43:20 +02:00
|
|
|
MatRadioModule,
|
|
|
|
MatButtonToggleModule,
|
2018-11-04 11:11:48 +01:00
|
|
|
MatStepperModule,
|
2019-01-10 15:06:10 +01:00
|
|
|
MatSliderModule,
|
2019-05-09 16:18:14 +02:00
|
|
|
MatDividerModule,
|
2018-10-15 11:52:57 +02:00
|
|
|
DragDropModule,
|
2018-09-13 07:57:38 +02:00
|
|
|
NgxMatSelectSearchModule,
|
2019-07-01 11:23:33 +02:00
|
|
|
NgxFileDropModule,
|
2018-07-23 16:42:17 +02:00
|
|
|
TranslateModule,
|
2018-11-08 15:34:43 +01:00
|
|
|
OpenSlidesTranslateModule,
|
2019-07-11 14:06:01 +02:00
|
|
|
PdfViewerModule,
|
2018-09-03 17:57:20 +02:00
|
|
|
PermsDirective,
|
2019-07-30 09:01:59 +02:00
|
|
|
IsSuperAdminDirective,
|
2018-08-28 13:54:25 +02:00
|
|
|
DomChangeDirective,
|
2018-10-05 16:34:08 +02:00
|
|
|
AutofocusDirective,
|
2018-09-06 07:14:55 +02:00
|
|
|
HeadBarComponent,
|
2018-09-13 07:57:38 +02:00
|
|
|
SearchValueSelectorComponent,
|
2018-09-06 07:14:55 +02:00
|
|
|
LegalNoticeContentComponent,
|
2018-10-01 15:36:16 +02:00
|
|
|
PrivacyPolicyContentComponent,
|
2018-10-15 11:52:57 +02:00
|
|
|
PromptDialogComponent,
|
2018-11-20 13:31:56 +01:00
|
|
|
SortingListComponent,
|
2018-11-16 10:25:17 +01:00
|
|
|
EditorModule,
|
|
|
|
SortingTreeComponent,
|
2019-05-07 16:25:39 +02:00
|
|
|
SortFilterBarComponent,
|
2019-01-18 16:55:56 +01:00
|
|
|
LogoComponent,
|
|
|
|
CopyrightSignComponent,
|
2019-01-10 15:06:10 +01:00
|
|
|
C4DialogComponent,
|
|
|
|
ProjectorButtonComponent,
|
|
|
|
ProjectionDialogComponent,
|
2019-01-24 16:25:50 +01:00
|
|
|
ResizedDirective,
|
2019-08-21 15:05:03 +02:00
|
|
|
HeightResizingDirective,
|
2019-01-31 13:40:27 +01:00
|
|
|
MetaTextBlockComponent,
|
|
|
|
ProjectorComponent,
|
2019-01-28 19:23:09 +01:00
|
|
|
SlideContainerComponent,
|
2019-02-21 16:48:19 +01:00
|
|
|
CountdownTimeComponent,
|
2019-04-12 15:11:12 +02:00
|
|
|
MediaUploadContentComponent,
|
2019-05-14 16:59:47 +02:00
|
|
|
AttachmentControlComponent,
|
2019-04-25 12:57:11 +02:00
|
|
|
PrecisionPipe,
|
2019-05-09 16:18:14 +02:00
|
|
|
SpeakerButtonComponent,
|
|
|
|
GridLayoutComponent,
|
|
|
|
TileComponent,
|
|
|
|
BlockTileComponent,
|
2019-06-04 09:37:01 +02:00
|
|
|
ScrollingModule,
|
2019-06-14 11:18:54 +02:00
|
|
|
IconContainerComponent,
|
|
|
|
SpeakerButtonComponent,
|
|
|
|
PblNgridModule,
|
|
|
|
PblNgridMaterialModule,
|
2019-07-19 14:35:24 +02:00
|
|
|
PblNgridTargetEventsModule,
|
2019-06-03 17:04:30 +02:00
|
|
|
ListViewTableComponent,
|
2019-07-04 14:37:36 +02:00
|
|
|
AgendaContentObjectFormComponent,
|
2019-07-29 16:15:47 +02:00
|
|
|
ExtensionFieldComponent,
|
2019-07-11 14:06:01 +02:00
|
|
|
RoundedInputComponent,
|
|
|
|
GlobalSpinnerComponent,
|
|
|
|
OverlayComponent,
|
2019-08-06 14:37:41 +02:00
|
|
|
PreviewComponent,
|
|
|
|
NgxMaterialTimepickerModule
|
2018-07-23 16:42:17 +02:00
|
|
|
],
|
2018-09-06 07:14:55 +02:00
|
|
|
declarations: [
|
|
|
|
PermsDirective,
|
2019-07-30 09:01:59 +02:00
|
|
|
IsSuperAdminDirective,
|
2018-09-06 07:14:55 +02:00
|
|
|
DomChangeDirective,
|
2018-10-05 16:34:08 +02:00
|
|
|
AutofocusDirective,
|
2018-09-06 07:14:55 +02:00
|
|
|
HeadBarComponent,
|
|
|
|
LegalNoticeContentComponent,
|
2018-09-13 07:57:38 +02:00
|
|
|
PrivacyPolicyContentComponent,
|
2018-10-01 15:36:16 +02:00
|
|
|
SearchValueSelectorComponent,
|
2018-10-15 11:52:57 +02:00
|
|
|
PromptDialogComponent,
|
2018-10-23 14:20:29 +02:00
|
|
|
SortingListComponent,
|
2018-11-27 22:44:37 +01:00
|
|
|
SortingTreeComponent,
|
2018-10-22 16:44:18 +02:00
|
|
|
ChoiceDialogComponent,
|
2019-05-07 16:25:39 +02:00
|
|
|
SortFilterBarComponent,
|
|
|
|
SortBottomSheetComponent,
|
2019-01-16 15:54:34 +01:00
|
|
|
FilterMenuComponent,
|
2019-01-18 16:55:56 +01:00
|
|
|
LogoComponent,
|
|
|
|
CopyrightSignComponent,
|
2019-01-10 15:06:10 +01:00
|
|
|
C4DialogComponent,
|
|
|
|
ProjectorButtonComponent,
|
|
|
|
ProjectionDialogComponent,
|
2019-01-24 16:25:50 +01:00
|
|
|
ResizedDirective,
|
2019-01-31 13:40:27 +01:00
|
|
|
MetaTextBlockComponent,
|
|
|
|
ProjectorComponent,
|
2019-02-14 16:02:18 +01:00
|
|
|
SlideContainerComponent,
|
2019-02-21 16:48:19 +01:00
|
|
|
CountdownTimeComponent,
|
2019-04-12 15:11:12 +02:00
|
|
|
MediaUploadContentComponent,
|
2019-04-23 16:57:35 +02:00
|
|
|
PrecisionPipe,
|
2019-05-09 16:18:14 +02:00
|
|
|
SpeakerButtonComponent,
|
|
|
|
GridLayoutComponent,
|
|
|
|
TileComponent,
|
2019-06-04 09:37:01 +02:00
|
|
|
BlockTileComponent,
|
2019-06-14 11:18:54 +02:00
|
|
|
IconContainerComponent,
|
2019-06-03 17:04:30 +02:00
|
|
|
ListViewTableComponent,
|
2019-07-04 14:37:36 +02:00
|
|
|
AgendaContentObjectFormComponent,
|
2019-05-14 16:59:47 +02:00
|
|
|
ExtensionFieldComponent,
|
2019-07-29 16:15:47 +02:00
|
|
|
AttachmentControlComponent,
|
2019-08-01 13:23:56 +02:00
|
|
|
RoundedInputComponent,
|
2019-07-11 14:06:01 +02:00
|
|
|
ProgressSnackBarComponent,
|
|
|
|
GlobalSpinnerComponent,
|
|
|
|
SuperSearchComponent,
|
|
|
|
OverlayComponent,
|
2019-08-21 15:05:03 +02:00
|
|
|
PreviewComponent,
|
|
|
|
HeightResizingDirective
|
2018-09-18 15:51:57 +02:00
|
|
|
],
|
2018-10-15 11:52:57 +02:00
|
|
|
providers: [
|
2019-08-06 14:37:41 +02:00
|
|
|
{
|
|
|
|
provide: DateAdapter,
|
|
|
|
useClass: OpenSlidesDateAdapter,
|
|
|
|
deps: [TranslateService, MAT_DATE_LOCALE, MAT_MOMENT_DATE_ADAPTER_OPTIONS]
|
|
|
|
}, // see remarks in OpenSlidesDateAdapter
|
2018-10-15 11:52:57 +02:00
|
|
|
SearchValueSelectorComponent,
|
2018-11-16 10:25:17 +01:00
|
|
|
SortingListComponent,
|
2018-10-22 16:44:18 +02:00
|
|
|
SortingTreeComponent,
|
2019-05-07 16:25:39 +02:00
|
|
|
SortFilterBarComponent,
|
|
|
|
SortBottomSheetComponent,
|
2019-08-01 13:23:56 +02:00
|
|
|
DecimalPipe,
|
|
|
|
ProgressSnackBarComponent
|
2018-10-22 16:44:18 +02:00
|
|
|
],
|
2019-07-01 11:23:33 +02:00
|
|
|
entryComponents: [
|
|
|
|
SortBottomSheetComponent,
|
|
|
|
C4DialogComponent,
|
|
|
|
PromptDialogComponent,
|
|
|
|
ChoiceDialogComponent,
|
2019-08-01 13:23:56 +02:00
|
|
|
ProjectionDialogComponent,
|
2019-07-11 14:06:01 +02:00
|
|
|
ProgressSnackBarComponent,
|
|
|
|
SuperSearchComponent
|
2019-07-01 11:23:33 +02:00
|
|
|
]
|
2018-07-23 16:42:17 +02:00
|
|
|
})
|
|
|
|
export class SharedModule {}
|