@koobiq/components 20.3.0 → 20.3.1
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/fesm2022/koobiq-components-core.mjs +10 -7
- package/fesm2022/koobiq-components-core.mjs.map +1 -1
- package/fesm2022/koobiq-components-form-field.mjs +13 -7
- package/fesm2022/koobiq-components-form-field.mjs.map +1 -1
- package/fesm2022/koobiq-components-modal.mjs +12 -4
- package/fesm2022/koobiq-components-modal.mjs.map +1 -1
- package/fesm2022/koobiq-components-select.mjs +1 -1
- package/fesm2022/koobiq-components-select.mjs.map +1 -1
- package/fesm2022/koobiq-components-tabs.mjs +4 -6
- package/fesm2022/koobiq-components-tabs.mjs.map +1 -1
- package/fesm2022/koobiq-components-tree-select.mjs +1 -1
- package/fesm2022/koobiq-components-tree-select.mjs.map +1 -1
- package/form-field/index.d.ts +1 -3
- package/modal/index.d.ts +1 -1
- package/package.json +3 -3
- package/schematics/ng-add/index.js +1 -1
- package/tabs/index.d.ts +0 -1
|
@@ -2,7 +2,7 @@ import { Directionality } from '@angular/cdk/bidi';
|
|
|
2
2
|
import { CdkPortalOutlet, CdkPortal, TemplatePortal, PortalModule } from '@angular/cdk/portal';
|
|
3
3
|
import { CdkScrollable, ViewportRuler, CdkScrollableModule } from '@angular/cdk/scrolling';
|
|
4
4
|
import * as i0 from '@angular/core';
|
|
5
|
-
import { inject, ElementRef, output, EventEmitter, viewChild, input, ChangeDetectorRef, Input, Output, ViewEncapsulation, ChangeDetectionStrategy, Component, forwardRef,
|
|
5
|
+
import { inject, ElementRef, output, EventEmitter, viewChild, input, ChangeDetectorRef, Input, Output, ViewEncapsulation, ChangeDetectionStrategy, Component, forwardRef, Directive, TemplateRef, DestroyRef, NgZone, booleanAttribute, numberAttribute, InjectionToken, ViewContainerRef, contentChild, ContentChild, Renderer2, ViewChild, ContentChildren, NgModule } from '@angular/core';
|
|
6
6
|
import { Subscription, Subject, fromEvent, of, merge, timer } from 'rxjs';
|
|
7
7
|
import { startWith, takeUntil, debounceTime } from 'rxjs/operators';
|
|
8
8
|
import { trigger, state, style, transition, animate } from '@angular/animations';
|
|
@@ -165,9 +165,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.30", ngImpo
|
|
|
165
165
|
*/
|
|
166
166
|
class KbqTabBodyPortal extends CdkPortalOutlet {
|
|
167
167
|
constructor() {
|
|
168
|
-
|
|
169
|
-
const viewContainerRef = inject(ViewContainerRef);
|
|
170
|
-
super(componentFactoryResolver, viewContainerRef);
|
|
168
|
+
super(...arguments);
|
|
171
169
|
this.host = inject(KbqTabBody);
|
|
172
170
|
/** Subscription to events for when the tab body begins centering. */
|
|
173
171
|
this.centeringSub = Subscription.EMPTY;
|
|
@@ -194,7 +192,7 @@ class KbqTabBodyPortal extends CdkPortalOutlet {
|
|
|
194
192
|
this.centeringSub.unsubscribe();
|
|
195
193
|
this.leavingSub.unsubscribe();
|
|
196
194
|
}
|
|
197
|
-
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.30", ngImport: i0, type: KbqTabBodyPortal, deps:
|
|
195
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.30", ngImport: i0, type: KbqTabBodyPortal, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
198
196
|
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.30", type: KbqTabBodyPortal, isStandalone: true, selector: "[kbqTabBodyHost]", usesInheritance: true, ngImport: i0 }); }
|
|
199
197
|
}
|
|
200
198
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.30", ngImport: i0, type: KbqTabBodyPortal, decorators: [{
|
|
@@ -202,7 +200,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.30", ngImpo
|
|
|
202
200
|
args: [{
|
|
203
201
|
selector: '[kbqTabBodyHost]'
|
|
204
202
|
}]
|
|
205
|
-
}]
|
|
203
|
+
}] });
|
|
206
204
|
|
|
207
205
|
/** Decorates the `ng-template` tags and reads out the template from it. */
|
|
208
206
|
class KbqTabContent {
|