chrv-components 1.12.20 → 1.12.21
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.
|
Binary file
|
|
@@ -144,10 +144,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.8", ngImpor
|
|
|
144
144
|
}], ctorParameters: () => [], propDecorators: { title: [{ type: i0.Input, args: [{ isSignal: true, alias: "title", required: false }] }], position: [{ type: i0.Input, args: [{ isSignal: true, alias: "position", required: false }] }], originElement: [{ type: i0.Input, args: [{ isSignal: true, alias: "originElement", required: false }] }] } });
|
|
145
145
|
|
|
146
146
|
class DebounceDefaults {
|
|
147
|
-
constructor() {
|
|
147
|
+
constructor(init) {
|
|
148
148
|
this.baseInputs = 200;
|
|
149
149
|
this.searchableInputs = 400;
|
|
150
150
|
this.hoverTitle = 500;
|
|
151
|
+
Object.assign(this, init);
|
|
151
152
|
}
|
|
152
153
|
}
|
|
153
154
|
const CHR_DEBOUNCE_DEFAULTS = new InjectionToken('CHR_DEBOUNCE_DEFAULTS', {
|