Reverted the ngx-dnd back to 3.1.0

+ Added missing debounceTime imports to prevent errors
This commit is contained in:
Sercan Yemen 2018-02-05 17:04:22 +03:00
parent 99696cabf7
commit 43b85ca3b6
7 changed files with 9 additions and 10 deletions

12
package-lock.json generated
View File

@ -332,19 +332,13 @@
"integrity": "sha512-TMDN26Q4J+Sh+OPqAx8BK5Q/3hAAmcTAUQ9wvC9nboSOAmYUaHGz8t21yGdeUtRtunIfMpjTnwLa+X2Pfoq42w==" "integrity": "sha512-TMDN26Q4J+Sh+OPqAx8BK5Q/3hAAmcTAUQ9wvC9nboSOAmYUaHGz8t21yGdeUtRtunIfMpjTnwLa+X2Pfoq42w=="
}, },
"@swimlane/ngx-dnd": { "@swimlane/ngx-dnd": {
"version": "3.1.2", "version": "3.1.0",
"resolved": "https://registry.npmjs.org/@swimlane/ngx-dnd/-/ngx-dnd-3.1.2.tgz", "resolved": "https://registry.npmjs.org/@swimlane/ngx-dnd/-/ngx-dnd-3.1.0.tgz",
"integrity": "sha512-jwZxW+s8sI8fk2HfgiuzhLhju2JPiDrqjJHHD2lQlLPikfPdjPasXYdiZSKp/2WDsEuj3a9fkGjpN4s2gPayuQ==", "integrity": "sha512-Ph7fpK+H8OkS7TyFjNGRn+sLwrmvJbnx9hieiTlKtEgB9kGU39qkZx6eGBdzs5MOsLRd8OP8DnVhiuf4XSm7cA==",
"requires": { "requires": {
"@types/dragula": "2.1.32",
"dragula": "3.7.2" "dragula": "3.7.2"
} }
}, },
"@types/dragula": {
"version": "2.1.32",
"resolved": "https://registry.npmjs.org/@types/dragula/-/dragula-2.1.32.tgz",
"integrity": "sha512-67nXH/pjZPTrbQ+Sr/Wy/luKVJPOOy7ErML58TgoO4A0vokIvvSt3+x1FHwp6Q455Kj03xGjCyHkhaelAdQMWA=="
},
"@types/jasmine": { "@types/jasmine": {
"version": "2.8.6", "version": "2.8.6",
"resolved": "https://registry.npmjs.org/@types/jasmine/-/jasmine-2.8.6.tgz", "resolved": "https://registry.npmjs.org/@types/jasmine/-/jasmine-2.8.6.tgz",

View File

@ -39,7 +39,7 @@
"@ngx-translate/core": "9.1.1", "@ngx-translate/core": "9.1.1",
"@swimlane/ngx-charts": "7.0.1", "@swimlane/ngx-charts": "7.0.1",
"@swimlane/ngx-datatable": "11.1.7", "@swimlane/ngx-datatable": "11.1.7",
"@swimlane/ngx-dnd": "3.1.2", "@swimlane/ngx-dnd": "3.1.0",
"@types/prismjs": "1.9.0", "@types/prismjs": "1.9.0",
"angular-calendar": "0.23.3", "angular-calendar": "0.23.3",
"angular-in-memory-web-api": "0.5.3", "angular-in-memory-web-api": "0.5.3",

View File

@ -1,6 +1,7 @@
import { Component, OnDestroy, OnInit } from '@angular/core'; import { Component, OnDestroy, OnInit } from '@angular/core';
import { ChatService } from '../../../chat.service'; import { ChatService } from '../../../chat.service';
import { FormControl, FormGroup } from '@angular/forms'; import { FormControl, FormGroup } from '@angular/forms';
import 'rxjs/add/operator/debounceTime';
import 'rxjs/add/operator/distinctUntilChanged'; import 'rxjs/add/operator/distinctUntilChanged';
@Component({ @Component({

View File

@ -4,6 +4,7 @@ import { fuseAnimations } from '../../../../core/animations';
import { FormControl, FormGroup } from '@angular/forms'; import { FormControl, FormGroup } from '@angular/forms';
import { FuseContactsContactFormDialogComponent } from './contact-form/contact-form.component'; import { FuseContactsContactFormDialogComponent } from './contact-form/contact-form.component';
import { MatDialog } from '@angular/material'; import { MatDialog } from '@angular/material';
import 'rxjs/add/operator/debounceTime';
import 'rxjs/add/operator/distinctUntilChanged'; import 'rxjs/add/operator/distinctUntilChanged';
import { Subscription } from 'rxjs/Subscription'; import { Subscription } from 'rxjs/Subscription';

View File

@ -5,6 +5,7 @@ import { Subscription } from 'rxjs/Subscription';
import { FormBuilder, FormGroup } from '@angular/forms'; import { FormBuilder, FormGroup } from '@angular/forms';
import { FuseUtils } from '../../../../../core/fuseUtils'; import { FuseUtils } from '../../../../../core/fuseUtils';
import { fuseAnimations } from '../../../../../core/animations'; import { fuseAnimations } from '../../../../../core/animations';
import 'rxjs/add/operator/debounceTime';
import 'rxjs/add/operator/distinctUntilChanged'; import 'rxjs/add/operator/distinctUntilChanged';
@Component({ @Component({

View File

@ -4,6 +4,7 @@ import { TodoService } from './todo.service';
import { FormControl } from '@angular/forms'; import { FormControl } from '@angular/forms';
import { Todo } from './todo.model'; import { Todo } from './todo.model';
import { fuseAnimations } from '../../../../core/animations'; import { fuseAnimations } from '../../../../core/animations';
import 'rxjs/add/operator/debounceTime';
import 'rxjs/add/operator/distinctUntilChanged'; import 'rxjs/add/operator/distinctUntilChanged';
@Component({ @Component({

View File

@ -3,6 +3,7 @@ import { FormControl } from '@angular/forms';
import { Subscription } from 'rxjs/Subscription'; import { Subscription } from 'rxjs/Subscription';
import { FaqService } from './faq.service'; import { FaqService } from './faq.service';
import { FuseUtils } from '../../../../core/fuseUtils'; import { FuseUtils } from '../../../../core/fuseUtils';
import 'rxjs/add/operator/debounceTime';
import 'rxjs/add/operator/distinctUntilChanged'; import 'rxjs/add/operator/distinctUntilChanged';
@Component({ @Component({