qms-angular 1.1.29 → 1.1.30
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/qms-angular.umd.js +6 -6
- package/bundles/qms-angular.umd.js.map +1 -1
- package/esm2015/lib/components/breadcrumb/breadcrumb-item.directive.js +2 -2
- package/esm2015/lib/directives/chips/chip.directive.js +2 -2
- package/esm2015/lib/directives/dropdown-menu/dropdown-item.directive.js +2 -2
- package/esm2015/lib/directives/file-upload/file-upload-multiple.directive.js +2 -2
- package/esm2015/lib/directives/file-upload/file-upload.directive.js +2 -2
- package/esm2015/lib/directives/search-field.directive.js +2 -2
- package/fesm2015/qms-angular.js +6 -6
- package/fesm2015/qms-angular.js.map +1 -1
- package/lib/directives/file-upload/file-upload-multiple.directive.d.ts +1 -1
- package/lib/directives/search-field.directive.d.ts +1 -1
- package/package.json +1 -1
@@ -1305,7 +1305,7 @@
|
|
1305
1305
|
this.ele = ele;
|
1306
1306
|
}
|
1307
1307
|
QMSInputChipDirective.prototype.ngOnChanges = function (changes) {
|
1308
|
-
if (
|
1308
|
+
if (this.selected) {
|
1309
1309
|
this.ele.nativeElement.classList.add('qms-chip-selected');
|
1310
1310
|
}
|
1311
1311
|
else {
|
@@ -1339,7 +1339,7 @@
|
|
1339
1339
|
this.ele = ele;
|
1340
1340
|
}
|
1341
1341
|
QMSDropdownMenuItem.prototype.ngOnChanges = function (changes) {
|
1342
|
-
if (
|
1342
|
+
if (this.selected) {
|
1343
1343
|
this.ele.nativeElement.classList.add('qms-dropdown-menu-item-selected');
|
1344
1344
|
}
|
1345
1345
|
else {
|
@@ -1557,7 +1557,7 @@
|
|
1557
1557
|
this.ele = ele;
|
1558
1558
|
}
|
1559
1559
|
QMSFileUploadMultipleDirective.prototype.ngOnChanges = function (changes) {
|
1560
|
-
if (
|
1560
|
+
if (this.isLoading) {
|
1561
1561
|
this.ele.nativeElement.classList.add('qms-file-upload-loading');
|
1562
1562
|
}
|
1563
1563
|
else {
|
@@ -1734,7 +1734,7 @@
|
|
1734
1734
|
};
|
1735
1735
|
}
|
1736
1736
|
QMSFileUploadDirective.prototype.ngOnChanges = function (changes) {
|
1737
|
-
if (
|
1737
|
+
if (this.isLoading) {
|
1738
1738
|
this.ele.nativeElement.classList.add('qms-file-upload-loading');
|
1739
1739
|
}
|
1740
1740
|
else {
|
@@ -1987,7 +1987,7 @@
|
|
1987
1987
|
this.renderer = renderer;
|
1988
1988
|
}
|
1989
1989
|
QMSSearchFieldDirective.prototype.ngOnChanges = function (changes) {
|
1990
|
-
if (
|
1990
|
+
if (this.isLoading) {
|
1991
1991
|
this.ele.nativeElement.classList.add('qms-search-field-loading');
|
1992
1992
|
}
|
1993
1993
|
else {
|
@@ -5016,7 +5016,7 @@
|
|
5016
5016
|
}, 1000);
|
5017
5017
|
};
|
5018
5018
|
QMSBreadcrumbItemDirective.prototype.ngOnChanges = function (changes) {
|
5019
|
-
if (
|
5019
|
+
if (this.isLastItem) {
|
5020
5020
|
this.ele.nativeElement.classList.add('qms-breadcrumb-last-item');
|
5021
5021
|
}
|
5022
5022
|
else {
|