@entake/particle 21.0.1 → 21.0.2
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.
|
@@ -3139,6 +3139,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImpor
|
|
|
3139
3139
|
*/
|
|
3140
3140
|
class PopoverComponent {
|
|
3141
3141
|
renderer = inject(Renderer2);
|
|
3142
|
+
changeDetectorRef = inject(ChangeDetectorRef);
|
|
3142
3143
|
window = window;
|
|
3143
3144
|
/**
|
|
3144
3145
|
* The offset of the popover from its target (in pixels)
|
|
@@ -3212,7 +3213,10 @@ class PopoverComponent {
|
|
|
3212
3213
|
this.onAnimationStart();
|
|
3213
3214
|
}
|
|
3214
3215
|
else {
|
|
3215
|
-
setTimeout(() =>
|
|
3216
|
+
setTimeout(() => {
|
|
3217
|
+
this.onAnimationDone();
|
|
3218
|
+
this.changeDetectorRef.markForCheck();
|
|
3219
|
+
}, 300);
|
|
3216
3220
|
}
|
|
3217
3221
|
});
|
|
3218
3222
|
}
|
|
@@ -5194,7 +5198,10 @@ class DropdownComponent {
|
|
|
5194
5198
|
this.onAnimationStart();
|
|
5195
5199
|
}
|
|
5196
5200
|
else {
|
|
5197
|
-
setTimeout(() =>
|
|
5201
|
+
setTimeout(() => {
|
|
5202
|
+
this.render = false;
|
|
5203
|
+
this.changeDetectorRef.markForCheck();
|
|
5204
|
+
}, 300);
|
|
5198
5205
|
}
|
|
5199
5206
|
});
|
|
5200
5207
|
const characters = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';
|
|
@@ -6078,7 +6085,10 @@ class MultiSelectComponent {
|
|
|
6078
6085
|
this.onAnimationStart();
|
|
6079
6086
|
}
|
|
6080
6087
|
else {
|
|
6081
|
-
setTimeout(() =>
|
|
6088
|
+
setTimeout(() => {
|
|
6089
|
+
this.render = false;
|
|
6090
|
+
this.changeDetectorRef.markForCheck();
|
|
6091
|
+
}, 300);
|
|
6082
6092
|
}
|
|
6083
6093
|
});
|
|
6084
6094
|
const characters = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';
|