@openkit-labs/ngx-kit-ui 0.0.42 → 0.0.43
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.
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { EventEmitter, HostBinding, Output, Input, Component, Directive, TemplateRef, HostListener, ContentChild, ContentChildren, NgModule, Injectable, ViewChild, Optional, Self, signal, computed, effect, ElementRef, PLATFORM_ID, Inject, Pipe } from '@angular/core';
|
|
3
|
-
import { NgClass, NgTemplateOutlet, CommonModule, NgStyle, isPlatformBrowser
|
|
2
|
+
import { EventEmitter, HostBinding, Output, Input, Component, Directive, TemplateRef, HostListener, ContentChild, ContentChildren, NgModule, Injectable, ViewChild, Optional, Self, signal, computed, effect, ElementRef, PLATFORM_ID, Inject, input, Pipe } from '@angular/core';
|
|
3
|
+
import { NgClass, NgTemplateOutlet, CommonModule, NgStyle, isPlatformBrowser } from '@angular/common';
|
|
4
4
|
import { Subject, fromEvent, debounceTime, Subscription, timer } from 'rxjs';
|
|
5
5
|
import { takeUntil, switchMap, filter } from 'rxjs/operators';
|
|
6
6
|
import * as i1 from '@angular/forms';
|
|
@@ -5711,143 +5711,107 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImpor
|
|
|
5711
5711
|
}]
|
|
5712
5712
|
}] });
|
|
5713
5713
|
|
|
5714
|
-
class KitImageLoadingDirective {
|
|
5715
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: KitImageLoadingDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
5716
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.4", type: KitImageLoadingDirective, isStandalone: true, selector: "[kitImageLoading]", ngImport: i0 });
|
|
5717
|
-
}
|
|
5718
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: KitImageLoadingDirective, decorators: [{
|
|
5719
|
-
type: Directive,
|
|
5720
|
-
args: [{
|
|
5721
|
-
selector: '[kitImageLoading]'
|
|
5722
|
-
}]
|
|
5723
|
-
}] });
|
|
5724
|
-
|
|
5725
|
-
class KitImageErrorDirective {
|
|
5726
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: KitImageErrorDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
5727
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.4", type: KitImageErrorDirective, isStandalone: true, selector: "[kitImageError]", ngImport: i0 });
|
|
5728
|
-
}
|
|
5729
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: KitImageErrorDirective, decorators: [{
|
|
5730
|
-
type: Directive,
|
|
5731
|
-
args: [{
|
|
5732
|
-
selector: '[kitImageError]'
|
|
5733
|
-
}]
|
|
5734
|
-
}] });
|
|
5735
|
-
|
|
5736
5714
|
class KitImageComponent {
|
|
5737
|
-
|
|
5738
|
-
|
|
5739
|
-
|
|
5740
|
-
|
|
5741
|
-
|
|
5742
|
-
|
|
5743
|
-
}
|
|
5744
|
-
|
|
5745
|
-
|
|
5746
|
-
}
|
|
5747
|
-
|
|
5748
|
-
|
|
5749
|
-
height
|
|
5750
|
-
|
|
5751
|
-
|
|
5752
|
-
|
|
5753
|
-
|
|
5754
|
-
|
|
5755
|
-
|
|
5756
|
-
|
|
5757
|
-
|
|
5758
|
-
|
|
5759
|
-
|
|
5760
|
-
|
|
5761
|
-
|
|
5762
|
-
|
|
5763
|
-
|
|
5764
|
-
|
|
5765
|
-
|
|
5766
|
-
|
|
5767
|
-
|
|
5768
|
-
|
|
5769
|
-
|
|
5770
|
-
|
|
5771
|
-
|
|
5772
|
-
|
|
5773
|
-
|
|
5774
|
-
|
|
5775
|
-
|
|
5776
|
-
|
|
5777
|
-
|
|
5778
|
-
|
|
5779
|
-
|
|
5780
|
-
|
|
5781
|
-
|
|
5782
|
-
|
|
5783
|
-
|
|
5784
|
-
|
|
5785
|
-
return this.inactiveTemplate !== undefined;
|
|
5786
|
-
}
|
|
5787
|
-
get containerWidth() {
|
|
5788
|
-
if (typeof this.width === 'number') {
|
|
5789
|
-
return `${this.width}px`;
|
|
5790
|
-
}
|
|
5791
|
-
if (typeof this.width === 'string' && !isNaN(Number(this.width))) {
|
|
5792
|
-
return `${this.width}px`;
|
|
5793
|
-
}
|
|
5794
|
-
return this.width;
|
|
5795
|
-
}
|
|
5796
|
-
get containerHeight() {
|
|
5797
|
-
if (typeof this.height === 'number') {
|
|
5798
|
-
return `${this.height}px`;
|
|
5799
|
-
}
|
|
5800
|
-
if (typeof this.height === 'string' && !isNaN(Number(this.height))) {
|
|
5801
|
-
return `${this.height}px`;
|
|
5802
|
-
}
|
|
5803
|
-
return this.height;
|
|
5715
|
+
/** Input image src as a signal */
|
|
5716
|
+
src = input(null, ...(ngDevMode ? [{ debugName: "src" }] : []));
|
|
5717
|
+
objectFit = input('cover', ...(ngDevMode ? [{ debugName: "objectFit" }] : []));
|
|
5718
|
+
width = input('100%', ...(ngDevMode ? [{ debugName: "width" }] : []));
|
|
5719
|
+
height = input('auto', ...(ngDevMode ? [{ debugName: "height" }] : []));
|
|
5720
|
+
aspectRatio = input(null, ...(ngDevMode ? [{ debugName: "aspectRatio" }] : []));
|
|
5721
|
+
borderRadius = input(null, ...(ngDevMode ? [{ debugName: "borderRadius" }] : []));
|
|
5722
|
+
errorSrc = signal(null, ...(ngDevMode ? [{ debugName: "errorSrc" }] : []));
|
|
5723
|
+
/** Internal signals */
|
|
5724
|
+
isLoading = signal(true, ...(ngDevMode ? [{ debugName: "isLoading" }] : []));
|
|
5725
|
+
errored = signal(false, ...(ngDevMode ? [{ debugName: "errored" }] : []));
|
|
5726
|
+
showImage = signal(false, ...(ngDevMode ? [{ debugName: "showImage" }] : []));
|
|
5727
|
+
/** Store natural width/height of the image to prevent collapse */
|
|
5728
|
+
imageWidth = signal(null, ...(ngDevMode ? [{ debugName: "imageWidth" }] : []));
|
|
5729
|
+
imageHeight = signal(null, ...(ngDevMode ? [{ debugName: "imageHeight" }] : []));
|
|
5730
|
+
constructor() {
|
|
5731
|
+
effect(() => {
|
|
5732
|
+
const url = this.src();
|
|
5733
|
+
if (!url) {
|
|
5734
|
+
console.log('[ImageComponent] src is null → error state');
|
|
5735
|
+
this.handleError();
|
|
5736
|
+
return;
|
|
5737
|
+
}
|
|
5738
|
+
console.log('[ImageComponent] new src detected:', url);
|
|
5739
|
+
this.isLoading.set(true);
|
|
5740
|
+
this.errored.set(false);
|
|
5741
|
+
this.showImage.set(false);
|
|
5742
|
+
this.imageWidth.set(null);
|
|
5743
|
+
this.imageHeight.set(null);
|
|
5744
|
+
// Preload main image
|
|
5745
|
+
const img = new Image();
|
|
5746
|
+
img.src = url;
|
|
5747
|
+
img.onload = () => {
|
|
5748
|
+
console.log('[ImageComponent] image loaded successfully');
|
|
5749
|
+
this.imageWidth.set(img.naturalWidth);
|
|
5750
|
+
this.imageHeight.set(img.naturalHeight);
|
|
5751
|
+
setTimeout(() => {
|
|
5752
|
+
console.log('[ImageComponent] rendering image after 1s delay');
|
|
5753
|
+
this.showImage.set(true);
|
|
5754
|
+
this.isLoading.set(false);
|
|
5755
|
+
this.errored.set(false);
|
|
5756
|
+
}, 100);
|
|
5757
|
+
};
|
|
5758
|
+
img.onerror = () => {
|
|
5759
|
+
console.error('[ImageComponent] main image failed to load');
|
|
5760
|
+
this.handleError();
|
|
5761
|
+
};
|
|
5762
|
+
});
|
|
5804
5763
|
}
|
|
5805
|
-
|
|
5806
|
-
|
|
5807
|
-
|
|
5764
|
+
/** Handle error state and optional placeholder */
|
|
5765
|
+
handleError() {
|
|
5766
|
+
this.isLoading.set(false);
|
|
5767
|
+
this.errored.set(true);
|
|
5768
|
+
this.showImage.set(false);
|
|
5769
|
+
// Use default size fallback
|
|
5770
|
+
this.imageWidth.set(200);
|
|
5771
|
+
this.imageHeight.set(200);
|
|
5772
|
+
const placeholder = this.errorSrc();
|
|
5773
|
+
if (placeholder) {
|
|
5774
|
+
console.log('[ImageComponent] using provided error placeholder:', placeholder);
|
|
5775
|
+
// Preload the placeholder image
|
|
5776
|
+
const img = new Image();
|
|
5777
|
+
img.src = placeholder;
|
|
5778
|
+
img.onload = () => {
|
|
5779
|
+
this.imageWidth.set(img.naturalWidth);
|
|
5780
|
+
this.imageHeight.set(img.naturalHeight);
|
|
5781
|
+
this.showImage.set(true);
|
|
5782
|
+
this.errored.set(false);
|
|
5783
|
+
console.log('[ImageComponent] error placeholder loaded');
|
|
5784
|
+
};
|
|
5785
|
+
img.onerror = () => {
|
|
5786
|
+
console.error('[ImageComponent] error placeholder failed to load, using default');
|
|
5787
|
+
};
|
|
5808
5788
|
}
|
|
5809
|
-
|
|
5810
|
-
|
|
5789
|
+
else {
|
|
5790
|
+
console.log('[ImageComponent] no error placeholder provided, using default fallback');
|
|
5811
5791
|
}
|
|
5812
|
-
return this.borderRadius;
|
|
5813
5792
|
}
|
|
5814
5793
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: KitImageComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
5815
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.4", type: KitImageComponent, isStandalone: true, selector: "kit-image", inputs: { src: "src",
|
|
5794
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.4", type: KitImageComponent, isStandalone: true, selector: "kit-image", inputs: { src: { classPropertyName: "src", publicName: "src", isSignal: true, isRequired: false, transformFunction: null }, objectFit: { classPropertyName: "objectFit", publicName: "objectFit", isSignal: true, isRequired: false, transformFunction: null }, width: { classPropertyName: "width", publicName: "width", isSignal: true, isRequired: false, transformFunction: null }, height: { classPropertyName: "height", publicName: "height", isSignal: true, isRequired: false, transformFunction: null }, aspectRatio: { classPropertyName: "aspectRatio", publicName: "aspectRatio", isSignal: true, isRequired: false, transformFunction: null }, borderRadius: { classPropertyName: "borderRadius", publicName: "borderRadius", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: "<div class=\"kit-image-container\"\n [style.object-fit]=\"objectFit()\"\n [style.width]=\"width() ? width() : (imageWidth() ? imageWidth() + 'px' : '200px')\"\n [style.height]=\"height() ? height() : (imageHeight() ? imageHeight() + 'px' : '200px')\"\n [style.aspectRatio]=\"aspectRatio() ?? null\"\n [style.borderRadius]=\"borderRadius() ?? null\">\n\n <!-- Image -->\n @if(showImage())\n {\n <ng-container>\n <img [src]=\"src()\"\n [style.object-fit]=\"objectFit()\"\n [style.borderRadius]=\"borderRadius() ?? null\"\n class=\"kit-image\">\n </ng-container>\n }\n\n <!-- Skeleton shimmer while loading -->\n\n @if(isLoading())\n {\n <ng-container>\n <div class=\"kit-image-skeleton\"></div>\n </ng-container>\n }\n\n @if(errored() && errorSrc())\n {\n <ng-container>\n <img [src]=\"errorSrc()\"\n [style.object-fit]=\"objectFit()\"\n [style.borderRadius]=\"borderRadius() ?? null\"\n class=\"kit-image\">\n </ng-container>\n }\n\n @if(errored() && !errorSrc())\n {\n <ng-container>\n <div class=\"kit-image-error\"></div>\n </ng-container>\n }\n</div>", styles: [":host{display:inline-block}.kit-image-container{position:relative;display:inline-block;overflow:hidden;border-radius:var(--kit-image-border-radius);min-width:100px;min-height:100px}.kit-image{width:100%;height:100%;object-fit:contain;display:block;transition:opacity .2s ease-in-out}.kit-image-skeleton{position:absolute;inset:0;background:linear-gradient(90deg,#ffffff0d,#0000000a 40%,#ffffff0d);background-size:200% 100%;animation:shimmer 1.2s linear infinite;border-radius:inherit}.kit-image-error{position:absolute;inset:0;background:#ffffff0d 100%;border-radius:inherit}@keyframes shimmer{0%{background-position:200% 0}to{background-position:-200% 0}}\n"] });
|
|
5816
5795
|
}
|
|
5817
5796
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: KitImageComponent, decorators: [{
|
|
5818
5797
|
type: Component,
|
|
5819
|
-
args: [{ selector: 'kit-image',
|
|
5820
|
-
}],
|
|
5821
|
-
type: Input
|
|
5822
|
-
}], alt: [{
|
|
5823
|
-
type: Input
|
|
5824
|
-
}], width: [{
|
|
5825
|
-
type: Input
|
|
5826
|
-
}], height: [{
|
|
5827
|
-
type: Input
|
|
5828
|
-
}], borderRadius: [{
|
|
5829
|
-
type: Input
|
|
5830
|
-
}], fit: [{
|
|
5831
|
-
type: Input
|
|
5832
|
-
}], priority: [{
|
|
5833
|
-
type: Input
|
|
5834
|
-
}], loaded: [{
|
|
5835
|
-
type: Output
|
|
5836
|
-
}], error: [{
|
|
5837
|
-
type: Output
|
|
5838
|
-
}], activeTemplate: [{
|
|
5839
|
-
type: ContentChild,
|
|
5840
|
-
args: [KitImageLoadingDirective, { read: TemplateRef }]
|
|
5841
|
-
}], inactiveTemplate: [{
|
|
5842
|
-
type: ContentChild,
|
|
5843
|
-
args: [KitImageErrorDirective, { read: TemplateRef }]
|
|
5844
|
-
}] } });
|
|
5798
|
+
args: [{ selector: 'kit-image', template: "<div class=\"kit-image-container\"\n [style.object-fit]=\"objectFit()\"\n [style.width]=\"width() ? width() : (imageWidth() ? imageWidth() + 'px' : '200px')\"\n [style.height]=\"height() ? height() : (imageHeight() ? imageHeight() + 'px' : '200px')\"\n [style.aspectRatio]=\"aspectRatio() ?? null\"\n [style.borderRadius]=\"borderRadius() ?? null\">\n\n <!-- Image -->\n @if(showImage())\n {\n <ng-container>\n <img [src]=\"src()\"\n [style.object-fit]=\"objectFit()\"\n [style.borderRadius]=\"borderRadius() ?? null\"\n class=\"kit-image\">\n </ng-container>\n }\n\n <!-- Skeleton shimmer while loading -->\n\n @if(isLoading())\n {\n <ng-container>\n <div class=\"kit-image-skeleton\"></div>\n </ng-container>\n }\n\n @if(errored() && errorSrc())\n {\n <ng-container>\n <img [src]=\"errorSrc()\"\n [style.object-fit]=\"objectFit()\"\n [style.borderRadius]=\"borderRadius() ?? null\"\n class=\"kit-image\">\n </ng-container>\n }\n\n @if(errored() && !errorSrc())\n {\n <ng-container>\n <div class=\"kit-image-error\"></div>\n </ng-container>\n }\n</div>", styles: [":host{display:inline-block}.kit-image-container{position:relative;display:inline-block;overflow:hidden;border-radius:var(--kit-image-border-radius);min-width:100px;min-height:100px}.kit-image{width:100%;height:100%;object-fit:contain;display:block;transition:opacity .2s ease-in-out}.kit-image-skeleton{position:absolute;inset:0;background:linear-gradient(90deg,#ffffff0d,#0000000a 40%,#ffffff0d);background-size:200% 100%;animation:shimmer 1.2s linear infinite;border-radius:inherit}.kit-image-error{position:absolute;inset:0;background:#ffffff0d 100%;border-radius:inherit}@keyframes shimmer{0%{background-position:200% 0}to{background-position:-200% 0}}\n"] }]
|
|
5799
|
+
}], ctorParameters: () => [] });
|
|
5845
5800
|
|
|
5846
5801
|
class KitAvatarComponent {
|
|
5847
5802
|
src = '';
|
|
5848
|
-
alt = '';
|
|
5849
5803
|
size = 40;
|
|
5850
5804
|
borderRadius;
|
|
5805
|
+
/** Return size as a valid CSS value (e.g. `40px` or `3rem`) */
|
|
5806
|
+
get sizePx() {
|
|
5807
|
+
if (typeof this.size === 'number') {
|
|
5808
|
+
return `${this.size}px`;
|
|
5809
|
+
}
|
|
5810
|
+
if (typeof this.size === 'string' && !isNaN(Number(this.size))) {
|
|
5811
|
+
return `${Number(this.size)}px`;
|
|
5812
|
+
}
|
|
5813
|
+
return this.size;
|
|
5814
|
+
}
|
|
5851
5815
|
get containerBorderRadius() {
|
|
5852
5816
|
if (this.borderRadius) {
|
|
5853
5817
|
if (typeof this.borderRadius === 'number') {
|
|
@@ -5861,15 +5825,13 @@ class KitAvatarComponent {
|
|
|
5861
5825
|
return 'var(--kit-avatar-border-radius)';
|
|
5862
5826
|
}
|
|
5863
5827
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: KitAvatarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
5864
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: KitAvatarComponent, isStandalone: true, selector: "kit-avatar", inputs: { src: "src",
|
|
5828
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.4", type: KitAvatarComponent, isStandalone: true, selector: "kit-avatar", inputs: { src: "src", size: "size", borderRadius: "borderRadius" }, ngImport: i0, template: "<kit-image [src]=\"src\"\n [width]=\"sizePx\"\n [height]=\"sizePx\"\n [borderRadius]=\"containerBorderRadius\"></kit-image>", styles: [":host{display:inline-block}\n"], dependencies: [{ kind: "component", type: KitImageComponent, selector: "kit-image", inputs: ["src", "objectFit", "width", "height", "aspectRatio", "borderRadius"] }] });
|
|
5865
5829
|
}
|
|
5866
5830
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: KitAvatarComponent, decorators: [{
|
|
5867
5831
|
type: Component,
|
|
5868
|
-
args: [{ selector: 'kit-avatar', imports: [KitImageComponent], template: "<kit-image [src]=\"src\"\n [
|
|
5832
|
+
args: [{ selector: 'kit-avatar', imports: [KitImageComponent], template: "<kit-image [src]=\"src\"\n [width]=\"sizePx\"\n [height]=\"sizePx\"\n [borderRadius]=\"containerBorderRadius\"></kit-image>", styles: [":host{display:inline-block}\n"] }]
|
|
5869
5833
|
}], propDecorators: { src: [{
|
|
5870
5834
|
type: Input
|
|
5871
|
-
}], alt: [{
|
|
5872
|
-
type: Input
|
|
5873
5835
|
}], size: [{
|
|
5874
5836
|
type: Input
|
|
5875
5837
|
}], borderRadius: [{
|
|
@@ -5879,11 +5841,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImpor
|
|
|
5879
5841
|
class KitMediaModule {
|
|
5880
5842
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: KitMediaModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
5881
5843
|
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.4", ngImport: i0, type: KitMediaModule, imports: [KitImageComponent,
|
|
5882
|
-
KitImageLoadingDirective,
|
|
5883
|
-
KitImageErrorDirective,
|
|
5884
5844
|
KitAvatarComponent], exports: [KitImageComponent,
|
|
5885
|
-
KitImageLoadingDirective,
|
|
5886
|
-
KitImageErrorDirective,
|
|
5887
5845
|
KitAvatarComponent] });
|
|
5888
5846
|
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: KitMediaModule });
|
|
5889
5847
|
}
|
|
@@ -5892,14 +5850,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImpor
|
|
|
5892
5850
|
args: [{
|
|
5893
5851
|
imports: [
|
|
5894
5852
|
KitImageComponent,
|
|
5895
|
-
KitImageLoadingDirective,
|
|
5896
|
-
KitImageErrorDirective,
|
|
5897
5853
|
KitAvatarComponent
|
|
5898
5854
|
],
|
|
5899
5855
|
exports: [
|
|
5900
5856
|
KitImageComponent,
|
|
5901
|
-
KitImageLoadingDirective,
|
|
5902
|
-
KitImageErrorDirective,
|
|
5903
5857
|
KitAvatarComponent
|
|
5904
5858
|
]
|
|
5905
5859
|
}]
|
|
@@ -6684,5 +6638,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImpor
|
|
|
6684
6638
|
* Generated bundle index. Do not edit.
|
|
6685
6639
|
*/
|
|
6686
6640
|
|
|
6687
|
-
export { KitAppRootComponent, KitAvatarComponent, KitBadgeComponent, KitBaseInputComponent, KitBottomBarComponent, KitBottomSheetComponent, KitButtonComponent, KitButtonGroupComponent, KitButtonGroupItemActiveDirective, KitButtonGroupItemComponent, KitButtonGroupItemIdleDirective, KitButtonModule, KitCardComponent, KitCarouselComponent, KitCenterComponent, KitColumnComponent, KitConstrainedBoxComponent, KitContainerComponent, KitCopyToClipboardDirective, KitDataGridCellHostDirective, KitDataGridCellRendererRegistry, KitDataGridComponent, KitDataGridHeaderHostDirective, KitDataGridHeaderRendererRegistry, KitDataModule, KitDialogComponent, KitDirectivesModule, KitDividerComponent, KitExpandedComponent, KitFileSizePipe, KitFloatingActionButtonComponent, KitGestureDetectorComponent, KitGridComponent, KitImageComponent,
|
|
6641
|
+
export { KitAppRootComponent, KitAvatarComponent, KitBadgeComponent, KitBaseInputComponent, KitBottomBarComponent, KitBottomSheetComponent, KitButtonComponent, KitButtonGroupComponent, KitButtonGroupItemActiveDirective, KitButtonGroupItemComponent, KitButtonGroupItemIdleDirective, KitButtonModule, KitCardComponent, KitCarouselComponent, KitCenterComponent, KitColumnComponent, KitConstrainedBoxComponent, KitContainerComponent, KitCopyToClipboardDirective, KitDataGridCellHostDirective, KitDataGridCellRendererRegistry, KitDataGridComponent, KitDataGridHeaderHostDirective, KitDataGridHeaderRendererRegistry, KitDataModule, KitDialogComponent, KitDirectivesModule, KitDividerComponent, KitExpandedComponent, KitFileSizePipe, KitFloatingActionButtonComponent, KitGestureDetectorComponent, KitGridComponent, KitImageComponent, KitInputDateComponent, KitInputEmailComponent, KitInputFieldTitleComponent, KitInputModule, KitInputMultiSelectComponent, KitInputNumberComponent, KitInputOtpComponent, KitInputPasswordComponent, KitInputPhoneComponent, KitInputSelectComponent, KitInputTextComponent, KitInputTextareaComponent, KitInputTimeComponent, KitInteractorsModule, KitKMBPipe, KitLayoutModule, KitMediaModule, KitNavigationModule, KitNavigationService, KitOverlaysModule, KitPaddingComponent, KitPageComponent, KitPanelModule, KitPipesModule, KitPositionedComponent, KitPressAndHoldDirective, KitProgressBarComponent, KitRadioButtonComponent, KitRoundButtonComponent, KitRouterOutletComponent, KitRowComponent, KitScreenService, KitSelectItemActiveDirective, KitSelectItemDirective, KitSideMenuComponent, KitSideMenuService, KitSizedBoxComponent, KitSpacerComponent, KitStickyContainerComponent, KitTabContentComponent, KitTabViewComponent, KitTextBodyComponent, KitTextButtonComponent, KitTextCaptionComponent, KitTextDisplayComponent, KitTextHeadingComponent, KitTextLabelComponent, KitTextLinkComponent, KitTextModule, KitTextSubheadingComponent, KitThemeService, KitTimeAgoPipe, KitTopBarComponent, SimpleTableComponent, StackComponent, TextCellRendererComponent, TextHeaderRendererComponent };
|
|
6688
6642
|
//# sourceMappingURL=openkit-labs-ngx-kit-ui.mjs.map
|