@indigina/ui-kit 1.1.70 → 1.1.72
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/esm2022/lib/components/kit-scroll-navigation/kit-scroll-navigation-section/kit-scroll-navigation-section.component.mjs +27 -0
- package/esm2022/lib/components/kit-scroll-navigation/kit-scroll-navigation.component.mjs +70 -0
- package/esm2022/lib/components/kit-scroll-navigation/kit-scroll-navigation.module.mjs +37 -0
- package/esm2022/lib/components/kit-tilelayout/kit-tilelayout-item.component.mjs +18 -0
- package/esm2022/lib/components/kit-tilelayout/kit-tilelayout.component.mjs +53 -0
- package/esm2022/lib/components/kit-tilelayout/kit-tilelayout.interface.mjs +2 -0
- package/esm2022/lib/components/kit-tilelayout/kit-tilelayout.module.mjs +33 -0
- package/esm2022/public-api.mjs +9 -1
- package/fesm2022/indigina-ui-kit.mjs +210 -2
- package/fesm2022/indigina-ui-kit.mjs.map +1 -1
- package/lib/components/kit-scroll-navigation/kit-scroll-navigation-section/kit-scroll-navigation-section.component.d.ts +12 -0
- package/lib/components/kit-scroll-navigation/kit-scroll-navigation.component.d.ts +20 -0
- package/lib/components/kit-scroll-navigation/kit-scroll-navigation.module.d.ts +11 -0
- package/lib/components/kit-tilelayout/kit-tilelayout-item.component.d.ts +7 -0
- package/lib/components/kit-tilelayout/kit-tilelayout.component.d.ts +18 -0
- package/lib/components/kit-tilelayout/kit-tilelayout.interface.d.ts +1 -0
- package/lib/components/kit-tilelayout/kit-tilelayout.module.d.ts +10 -0
- package/package.json +1 -1
- package/public-api.d.ts +7 -0
- package/styles/styles.scss +1 -0
|
@@ -36,7 +36,7 @@ import { trigger, state, style, transition, animate } from '@angular/animations'
|
|
|
36
36
|
import { takeUntilDestroyed } from '@angular/core/rxjs-interop';
|
|
37
37
|
import initials from 'initials';
|
|
38
38
|
import * as i2$2 from '@progress/kendo-angular-layout';
|
|
39
|
-
import { LayoutModule } from '@progress/kendo-angular-layout';
|
|
39
|
+
import { LayoutModule, TileLayoutModule } from '@progress/kendo-angular-layout';
|
|
40
40
|
import * as i2$3 from '@progress/kendo-angular-grid';
|
|
41
41
|
import { GridModule } from '@progress/kendo-angular-grid';
|
|
42
42
|
|
|
@@ -5157,11 +5157,219 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImpor
|
|
|
5157
5157
|
}]
|
|
5158
5158
|
}] });
|
|
5159
5159
|
|
|
5160
|
+
class KitTileLayoutItemComponent {
|
|
5161
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: KitTileLayoutItemComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
5162
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.6", type: KitTileLayoutItemComponent, selector: "kit-tilelayout-item", viewQueries: [{ propertyName: "template", first: true, predicate: ["itemTemplate"], descendants: true, static: true }], ngImport: i0, template: '<ng-template #itemTemplate><ng-content></ng-content></ng-template>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
5163
|
+
}
|
|
5164
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: KitTileLayoutItemComponent, decorators: [{
|
|
5165
|
+
type: Component,
|
|
5166
|
+
args: [{
|
|
5167
|
+
selector: 'kit-tilelayout-item',
|
|
5168
|
+
template: '<ng-template #itemTemplate><ng-content></ng-content></ng-template>',
|
|
5169
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
5170
|
+
}]
|
|
5171
|
+
}], propDecorators: { template: [{
|
|
5172
|
+
type: ViewChild,
|
|
5173
|
+
args: ['itemTemplate', { static: true }]
|
|
5174
|
+
}] } });
|
|
5175
|
+
|
|
5176
|
+
/* global window */
|
|
5177
|
+
class KitTileLayoutComponent {
|
|
5178
|
+
constructor() {
|
|
5179
|
+
/**
|
|
5180
|
+
* Configuration object for the number of columns at different screen widths.
|
|
5181
|
+
* Example: { 1440: 5, 1024: 3, 0: 2 }
|
|
5182
|
+
*/
|
|
5183
|
+
this.columnsConfig = {
|
|
5184
|
+
1440: 5,
|
|
5185
|
+
1024: 3,
|
|
5186
|
+
0: 2,
|
|
5187
|
+
};
|
|
5188
|
+
this.columns = 3;
|
|
5189
|
+
}
|
|
5190
|
+
ngAfterContentInit() {
|
|
5191
|
+
this.setColumnsBasedOnScreenSize();
|
|
5192
|
+
}
|
|
5193
|
+
onResize() {
|
|
5194
|
+
this.setColumnsBasedOnScreenSize();
|
|
5195
|
+
}
|
|
5196
|
+
setColumnsBasedOnScreenSize() {
|
|
5197
|
+
const width = window.innerWidth;
|
|
5198
|
+
const breakpoints = Object.keys(this.columnsConfig)
|
|
5199
|
+
.map(Number)
|
|
5200
|
+
.sort((a, b) => b - a);
|
|
5201
|
+
for (const breakpoint of breakpoints) {
|
|
5202
|
+
if (width >= breakpoint) {
|
|
5203
|
+
this.columns = this.columnsConfig[breakpoint];
|
|
5204
|
+
break;
|
|
5205
|
+
}
|
|
5206
|
+
}
|
|
5207
|
+
}
|
|
5208
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: KitTileLayoutComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
5209
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.6", type: KitTileLayoutComponent, selector: "kit-tilelayout", inputs: { columnsConfig: "columnsConfig" }, host: { listeners: { "window:resize": "onResize()" } }, queries: [{ propertyName: "tileItems", predicate: KitTileLayoutItemComponent }], ngImport: i0, template: "<div class=\"tilelayout-wrapper\">\n <kendo-tilelayout\n class=\"tilelayout-container\"\n autoFlow=\"row\"\n [columns]=\"columns\"\n [columns]=\"columns\"\n [resizable]=\"true\"\n >\n @for (item of tileItems; track item) {\n <kendo-tilelayout-item>\n <div class=\"item-content\">\n <ng-container *ngTemplateOutlet=\"item.template\"></ng-container>\n </div>\n </kendo-tilelayout-item>\n }\n </kendo-tilelayout>\n</div>\n", dependencies: [{ kind: "directive", type: i1$1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: i2$2.TileLayoutComponent, selector: "kendo-tilelayout", inputs: ["columns", "columnWidth", "gap", "reorderable", "resizable", "rowHeight", "autoFlow", "navigable"], outputs: ["reorder", "resize"] }, { kind: "component", type: i2$2.TileLayoutItemComponent, selector: "kendo-tilelayout-item", inputs: ["title", "rowSpan", "colSpan", "order", "col", "row", "reorderable", "resizable"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
5210
|
+
}
|
|
5211
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: KitTileLayoutComponent, decorators: [{
|
|
5212
|
+
type: Component,
|
|
5213
|
+
args: [{ selector: 'kit-tilelayout', changeDetection: ChangeDetectionStrategy.OnPush, template: "<div class=\"tilelayout-wrapper\">\n <kendo-tilelayout\n class=\"tilelayout-container\"\n autoFlow=\"row\"\n [columns]=\"columns\"\n [columns]=\"columns\"\n [resizable]=\"true\"\n >\n @for (item of tileItems; track item) {\n <kendo-tilelayout-item>\n <div class=\"item-content\">\n <ng-container *ngTemplateOutlet=\"item.template\"></ng-container>\n </div>\n </kendo-tilelayout-item>\n }\n </kendo-tilelayout>\n</div>\n" }]
|
|
5214
|
+
}], propDecorators: { tileItems: [{
|
|
5215
|
+
type: ContentChildren,
|
|
5216
|
+
args: [KitTileLayoutItemComponent]
|
|
5217
|
+
}], columnsConfig: [{
|
|
5218
|
+
type: Input
|
|
5219
|
+
}], onResize: [{
|
|
5220
|
+
type: HostListener,
|
|
5221
|
+
args: ['window:resize']
|
|
5222
|
+
}] } });
|
|
5223
|
+
|
|
5224
|
+
class KitTileLayoutModule {
|
|
5225
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: KitTileLayoutModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
5226
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.6", ngImport: i0, type: KitTileLayoutModule, declarations: [KitTileLayoutComponent,
|
|
5227
|
+
KitTileLayoutItemComponent], imports: [CommonModule,
|
|
5228
|
+
TileLayoutModule], exports: [KitTileLayoutComponent,
|
|
5229
|
+
KitTileLayoutItemComponent] }); }
|
|
5230
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: KitTileLayoutModule, imports: [CommonModule,
|
|
5231
|
+
TileLayoutModule] }); }
|
|
5232
|
+
}
|
|
5233
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: KitTileLayoutModule, decorators: [{
|
|
5234
|
+
type: NgModule,
|
|
5235
|
+
args: [{
|
|
5236
|
+
declarations: [
|
|
5237
|
+
KitTileLayoutComponent,
|
|
5238
|
+
KitTileLayoutItemComponent,
|
|
5239
|
+
],
|
|
5240
|
+
imports: [
|
|
5241
|
+
CommonModule,
|
|
5242
|
+
TileLayoutModule,
|
|
5243
|
+
],
|
|
5244
|
+
exports: [
|
|
5245
|
+
KitTileLayoutComponent,
|
|
5246
|
+
KitTileLayoutItemComponent,
|
|
5247
|
+
],
|
|
5248
|
+
}]
|
|
5249
|
+
}] });
|
|
5250
|
+
|
|
5251
|
+
class KitScrollNavigationSectionComponent {
|
|
5252
|
+
constructor() {
|
|
5253
|
+
/**
|
|
5254
|
+
* Defines the navigation item title
|
|
5255
|
+
*/
|
|
5256
|
+
this.title = '';
|
|
5257
|
+
this.sectionTemplate = null;
|
|
5258
|
+
this.sectionContent = null;
|
|
5259
|
+
}
|
|
5260
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: KitScrollNavigationSectionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
5261
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.6", type: KitScrollNavigationSectionComponent, isStandalone: true, selector: "kit-scroll-navigation-section", inputs: { title: "title" }, viewQueries: [{ propertyName: "sectionTemplate", first: true, predicate: ["sectionTemplate"], descendants: true, static: true }, { propertyName: "sectionContent", first: true, predicate: ["sectionContent"], descendants: true }], ngImport: i0, template: "<ng-template #sectionTemplate>\n <div #sectionContent\n class=\"kit-scroll-navigation-section\">\n <ng-content></ng-content>\n </div>\n</ng-template>\n", changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
|
|
5262
|
+
}
|
|
5263
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: KitScrollNavigationSectionComponent, decorators: [{
|
|
5264
|
+
type: Component,
|
|
5265
|
+
args: [{ selector: 'kit-scroll-navigation-section', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, template: "<ng-template #sectionTemplate>\n <div #sectionContent\n class=\"kit-scroll-navigation-section\">\n <ng-content></ng-content>\n </div>\n</ng-template>\n" }]
|
|
5266
|
+
}], propDecorators: { title: [{
|
|
5267
|
+
type: Input
|
|
5268
|
+
}], sectionTemplate: [{
|
|
5269
|
+
type: ViewChild,
|
|
5270
|
+
args: ['sectionTemplate', { static: true }]
|
|
5271
|
+
}], sectionContent: [{
|
|
5272
|
+
type: ViewChild,
|
|
5273
|
+
args: ['sectionContent']
|
|
5274
|
+
}] } });
|
|
5275
|
+
|
|
5276
|
+
class KitScrollNavigationComponent {
|
|
5277
|
+
constructor() {
|
|
5278
|
+
this.items = null;
|
|
5279
|
+
this.content = null;
|
|
5280
|
+
this.KitSvgIcon = KitSvgIcon;
|
|
5281
|
+
this.KitButtonType = KitButtonType;
|
|
5282
|
+
this.KitButtonKind = KitButtonKind;
|
|
5283
|
+
this.activeSectionIndex = signal(0);
|
|
5284
|
+
}
|
|
5285
|
+
ngAfterViewInit() {
|
|
5286
|
+
this.setLastSectionMinHeight();
|
|
5287
|
+
}
|
|
5288
|
+
onSectionScroll() {
|
|
5289
|
+
const contentElement = this.content?.nativeElement;
|
|
5290
|
+
if (!contentElement || !this.items) {
|
|
5291
|
+
return;
|
|
5292
|
+
}
|
|
5293
|
+
const contentScrollTop = contentElement.scrollTop;
|
|
5294
|
+
const sections = this.items.toArray();
|
|
5295
|
+
sections.forEach((section, index) => {
|
|
5296
|
+
const sectionElement = section.sectionContent?.nativeElement;
|
|
5297
|
+
const sectionTop = sectionElement.offsetTop;
|
|
5298
|
+
const sectionHeight = sectionElement.offsetHeight;
|
|
5299
|
+
if (sectionTop <= contentScrollTop && sectionTop + sectionHeight >= contentScrollTop) {
|
|
5300
|
+
this.activeSectionIndex.set(index);
|
|
5301
|
+
}
|
|
5302
|
+
});
|
|
5303
|
+
}
|
|
5304
|
+
scrollToSection(index) {
|
|
5305
|
+
const section = this.items?.toArray()[index]?.sectionContent?.nativeElement;
|
|
5306
|
+
section?.scrollIntoView({
|
|
5307
|
+
behavior: 'smooth',
|
|
5308
|
+
block: 'start',
|
|
5309
|
+
inline: 'start',
|
|
5310
|
+
});
|
|
5311
|
+
}
|
|
5312
|
+
setLastSectionMinHeight() {
|
|
5313
|
+
const contentHeight = this.content?.nativeElement.clientHeight;
|
|
5314
|
+
if (contentHeight && this.items) {
|
|
5315
|
+
this.calculateLastSectionMinHeight(this.items.toArray(), contentHeight);
|
|
5316
|
+
}
|
|
5317
|
+
}
|
|
5318
|
+
calculateLastSectionMinHeight(sections, contentHeight) {
|
|
5319
|
+
const lastSection = sections[sections.length - 1]?.sectionContent?.nativeElement;
|
|
5320
|
+
if (lastSection && contentHeight > lastSection.clientHeight) {
|
|
5321
|
+
lastSection.style.minHeight = `${contentHeight}px`;
|
|
5322
|
+
}
|
|
5323
|
+
}
|
|
5324
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: KitScrollNavigationComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
5325
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.6", type: KitScrollNavigationComponent, selector: "kit-scroll-navigation", queries: [{ propertyName: "items", predicate: KitScrollNavigationSectionComponent }], viewQueries: [{ propertyName: "content", first: true, predicate: ["content"], descendants: true, static: true }], ngImport: i0, template: "<div class=\"kit-scroll-navigation\">\n <div class=\"kit-scroll-navigation-items\">\n @for (item of items; track item) {\n <kit-button class=\"nav-item\"\n [class.active]=\"activeSectionIndex() === $index\"\n [label]=\"item.title\"\n [type]=\"KitButtonType.GHOST\"\n [kind]=\"KitButtonKind.SMALL\"\n (clicked)=\"scrollToSection($index)\"\n ></kit-button>\n @if (!$last) {\n <kit-svg-icon class=\"nav-icon\"\n [icon]=\"KitSvgIcon.CHEVRON_RIGHT\"\n ></kit-svg-icon>\n }\n }\n </div>\n\n <div #content\n class=\"kit-scroll-navigation-content\"\n (scroll)=\"onSectionScroll()\">\n @for (item of items; track item) {\n <ng-container *ngTemplateOutlet=\"item.sectionTemplate\"\n ></ng-container>\n }\n </div>\n</div>\n", styles: [".kit-scroll-navigation{display:flex;flex-direction:column;gap:34px;height:100%}.kit-scroll-navigation-items{display:flex;align-items:center;gap:18px;padding-bottom:27px;border-bottom:1px solid var(--ui-kit-color-grey-11)}.kit-scroll-navigation .nav-item.active .kit-button .k-button{color:var(--ui-kit-color-white);border-color:var(--ui-kit-color-main);background:var(--ui-kit-color-main)}.kit-scroll-navigation .nav-icon{width:16px;height:16px;stroke:var(--ui-kit-color-grey-10);fill:none}.kit-scroll-navigation-content{display:flex;flex-direction:column;flex:1;gap:20px;position:relative;overflow-y:auto}.kit-scroll-navigation-section{flex-shrink:0}\n"], dependencies: [{ kind: "directive", type: i1$1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: KitButtonComponent, selector: "kit-button", inputs: ["disabled", "label", "type", "icon", "iconType", "kind", "iconPosition", "buttonClass"], outputs: ["clicked"] }, { kind: "component", type: KitSvgIconComponent, selector: "kit-svg-icon", inputs: ["icon", "iconClass"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
|
|
5326
|
+
}
|
|
5327
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: KitScrollNavigationComponent, decorators: [{
|
|
5328
|
+
type: Component,
|
|
5329
|
+
args: [{ selector: 'kit-scroll-navigation', changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, template: "<div class=\"kit-scroll-navigation\">\n <div class=\"kit-scroll-navigation-items\">\n @for (item of items; track item) {\n <kit-button class=\"nav-item\"\n [class.active]=\"activeSectionIndex() === $index\"\n [label]=\"item.title\"\n [type]=\"KitButtonType.GHOST\"\n [kind]=\"KitButtonKind.SMALL\"\n (clicked)=\"scrollToSection($index)\"\n ></kit-button>\n @if (!$last) {\n <kit-svg-icon class=\"nav-icon\"\n [icon]=\"KitSvgIcon.CHEVRON_RIGHT\"\n ></kit-svg-icon>\n }\n }\n </div>\n\n <div #content\n class=\"kit-scroll-navigation-content\"\n (scroll)=\"onSectionScroll()\">\n @for (item of items; track item) {\n <ng-container *ngTemplateOutlet=\"item.sectionTemplate\"\n ></ng-container>\n }\n </div>\n</div>\n", styles: [".kit-scroll-navigation{display:flex;flex-direction:column;gap:34px;height:100%}.kit-scroll-navigation-items{display:flex;align-items:center;gap:18px;padding-bottom:27px;border-bottom:1px solid var(--ui-kit-color-grey-11)}.kit-scroll-navigation .nav-item.active .kit-button .k-button{color:var(--ui-kit-color-white);border-color:var(--ui-kit-color-main);background:var(--ui-kit-color-main)}.kit-scroll-navigation .nav-icon{width:16px;height:16px;stroke:var(--ui-kit-color-grey-10);fill:none}.kit-scroll-navigation-content{display:flex;flex-direction:column;flex:1;gap:20px;position:relative;overflow-y:auto}.kit-scroll-navigation-section{flex-shrink:0}\n"] }]
|
|
5330
|
+
}], propDecorators: { items: [{
|
|
5331
|
+
type: ContentChildren,
|
|
5332
|
+
args: [KitScrollNavigationSectionComponent]
|
|
5333
|
+
}], content: [{
|
|
5334
|
+
type: ViewChild,
|
|
5335
|
+
args: ['content', { static: true }]
|
|
5336
|
+
}] } });
|
|
5337
|
+
|
|
5338
|
+
class KitScrollNavigationModule {
|
|
5339
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: KitScrollNavigationModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
5340
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.6", ngImport: i0, type: KitScrollNavigationModule, declarations: [KitScrollNavigationComponent], imports: [CommonModule,
|
|
5341
|
+
KitButtonModule,
|
|
5342
|
+
KitSvgIconModule,
|
|
5343
|
+
KitScrollNavigationSectionComponent], exports: [KitScrollNavigationComponent,
|
|
5344
|
+
KitScrollNavigationSectionComponent] }); }
|
|
5345
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: KitScrollNavigationModule, imports: [CommonModule,
|
|
5346
|
+
KitButtonModule,
|
|
5347
|
+
KitSvgIconModule] }); }
|
|
5348
|
+
}
|
|
5349
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: KitScrollNavigationModule, decorators: [{
|
|
5350
|
+
type: NgModule,
|
|
5351
|
+
args: [{
|
|
5352
|
+
declarations: [
|
|
5353
|
+
KitScrollNavigationComponent,
|
|
5354
|
+
],
|
|
5355
|
+
imports: [
|
|
5356
|
+
CommonModule,
|
|
5357
|
+
KitButtonModule,
|
|
5358
|
+
KitSvgIconModule,
|
|
5359
|
+
KitScrollNavigationSectionComponent,
|
|
5360
|
+
],
|
|
5361
|
+
exports: [
|
|
5362
|
+
KitScrollNavigationComponent,
|
|
5363
|
+
KitScrollNavigationSectionComponent,
|
|
5364
|
+
],
|
|
5365
|
+
}]
|
|
5366
|
+
}] });
|
|
5367
|
+
|
|
5160
5368
|
// KitButton
|
|
5161
5369
|
|
|
5162
5370
|
/**
|
|
5163
5371
|
* Generated bundle index. Do not edit.
|
|
5164
5372
|
*/
|
|
5165
5373
|
|
|
5166
|
-
export { AbstractKitCtaPanelConfirmationComponent, KitAutocompleteComponent, KitAutocompleteDirective, KitAutocompleteModule, KitAvatarComponent, KitAvatarModule, KitAvatarSize, KitBadgeDirective, KitBadgeModule, KitBadgeTheme, KitBreadcrumbsComponent, KitBreadcrumbsModule, KitButtonComponent, KitButtonIconPosition, KitButtonKind, KitButtonModule, KitButtonType, KitCardComponent, KitCardModule, KitCardTheme, KitCheckboxComponent, KitCheckboxModule, KitCheckboxState, KitCopyTextComponent, KitCopyTextModule, KitCtaPanelAbstractConfirmationComponent, KitCtaPanelAbstractConfirmationModule, KitCtaPanelActionComponent, KitCtaPanelActionModule, KitCtaPanelConfirmationComponent, KitCtaPanelConfirmationModule, KitCtaPanelItemComponent, KitCtaPanelItemModule, KitCtaPanelItemType, KitDatepickerComponent, KitDatepickerModule, KitDaterangeComponent, KitDaterangeModule, KitDaterangeType, KitDatetimepickerComponent, KitDatetimepickerModule, KitDialogActionsComponent, KitDialogActionsModule, KitDialogComponent, KitDialogModule, KitDialogService, KitDropdownComponent, KitDropdownModule, KitFileUploadComponent, KitFileUploadModule, KitGridCellTemplateDirective, KitGridColumnComponent, KitGridComponent, KitGridDetailTemplateDirective, KitGridModule, KitGridSortDirection, KitGridSortSettingsMode, KitInputLabelComponent, KitInputLabelModule, KitInputMessageComponent, KitInputMessageModule, KitLoaderComponent, KitLoaderModule, KitLocationStepperComponent, KitLocationStepperModule, KitMultiselectComponent, KitMultiselectModule, KitNavigationMenuComponent, KitNavigationMenuModule, KitNavigationMenuService, KitNavigationMenuSubmenuComponent, KitNavigationTabsComponent, KitNavigationTabsModule, KitNavigationTabsType, KitNoteComponent, KitNoteModule, KitNotificationComponent, KitNotificationModule, KitNotificationType, KitNumericTextboxComponent, KitNumericTextboxModule, KitNumericTextboxState, KitPermissionDirective, KitPermissionModule, KitPillComponent, KitPillModule, KitPopupComponent, KitPopupDirective, KitPopupModule, KitProfileMenuComponent, KitProfileMenuModule, KitQueryParamsName, KitQueryParamsService, KitRadioButtonComponent, KitRadioButtonModule, KitSkeletonAnimation, KitSkeletonComponent, KitSkeletonModule, KitSkeletonShape, KitSvgIcon, KitSvgIconComponent, KitSvgIconModule, KitSvgIconType, KitSvgSpriteComponent, KitSvgSpriteModule, KitSwitchComponent, KitSwitchMode, KitSwitchModule, KitSwitchState, KitTabComponent, KitTabsComponent, KitTabsModule, KitTabsType, KitTextLabelComponent, KitTextLabelModule, KitTextLabelState, KitTextareaAutoresizeDirective, KitTextareaComponent, KitTextareaModule, KitTextareaState, KitTextboxComponent, KitTextboxModule, KitTextboxState, KitTimepickerComponent, KitTimepickerModule, KitToastrModule, KitToastrPosition, KitToastrService, KitToastrType, KitToggleComponent, KitToggleModule, KitTooltipDirective, KitTooltipModule, KitTooltipPosition, KitUnitsTextboxComponent, KitUnitsTextboxDropdownPosition, KitUnitsTextboxModule, KitUnitsTextboxType, buildRandomUUID };
|
|
5374
|
+
export { AbstractKitCtaPanelConfirmationComponent, KitAutocompleteComponent, KitAutocompleteDirective, KitAutocompleteModule, KitAvatarComponent, KitAvatarModule, KitAvatarSize, KitBadgeDirective, KitBadgeModule, KitBadgeTheme, KitBreadcrumbsComponent, KitBreadcrumbsModule, KitButtonComponent, KitButtonIconPosition, KitButtonKind, KitButtonModule, KitButtonType, KitCardComponent, KitCardModule, KitCardTheme, KitCheckboxComponent, KitCheckboxModule, KitCheckboxState, KitCopyTextComponent, KitCopyTextModule, KitCtaPanelAbstractConfirmationComponent, KitCtaPanelAbstractConfirmationModule, KitCtaPanelActionComponent, KitCtaPanelActionModule, KitCtaPanelConfirmationComponent, KitCtaPanelConfirmationModule, KitCtaPanelItemComponent, KitCtaPanelItemModule, KitCtaPanelItemType, KitDatepickerComponent, KitDatepickerModule, KitDaterangeComponent, KitDaterangeModule, KitDaterangeType, KitDatetimepickerComponent, KitDatetimepickerModule, KitDialogActionsComponent, KitDialogActionsModule, KitDialogComponent, KitDialogModule, KitDialogService, KitDropdownComponent, KitDropdownModule, KitFileUploadComponent, KitFileUploadModule, KitGridCellTemplateDirective, KitGridColumnComponent, KitGridComponent, KitGridDetailTemplateDirective, KitGridModule, KitGridSortDirection, KitGridSortSettingsMode, KitInputLabelComponent, KitInputLabelModule, KitInputMessageComponent, KitInputMessageModule, KitLoaderComponent, KitLoaderModule, KitLocationStepperComponent, KitLocationStepperModule, KitMultiselectComponent, KitMultiselectModule, KitNavigationMenuComponent, KitNavigationMenuModule, KitNavigationMenuService, KitNavigationMenuSubmenuComponent, KitNavigationTabsComponent, KitNavigationTabsModule, KitNavigationTabsType, KitNoteComponent, KitNoteModule, KitNotificationComponent, KitNotificationModule, KitNotificationType, KitNumericTextboxComponent, KitNumericTextboxModule, KitNumericTextboxState, KitPermissionDirective, KitPermissionModule, KitPillComponent, KitPillModule, KitPopupComponent, KitPopupDirective, KitPopupModule, KitProfileMenuComponent, KitProfileMenuModule, KitQueryParamsName, KitQueryParamsService, KitRadioButtonComponent, KitRadioButtonModule, KitScrollNavigationComponent, KitScrollNavigationModule, KitScrollNavigationSectionComponent, KitSkeletonAnimation, KitSkeletonComponent, KitSkeletonModule, KitSkeletonShape, KitSvgIcon, KitSvgIconComponent, KitSvgIconModule, KitSvgIconType, KitSvgSpriteComponent, KitSvgSpriteModule, KitSwitchComponent, KitSwitchMode, KitSwitchModule, KitSwitchState, KitTabComponent, KitTabsComponent, KitTabsModule, KitTabsType, KitTextLabelComponent, KitTextLabelModule, KitTextLabelState, KitTextareaAutoresizeDirective, KitTextareaComponent, KitTextareaModule, KitTextareaState, KitTextboxComponent, KitTextboxModule, KitTextboxState, KitTileLayoutComponent, KitTileLayoutItemComponent, KitTileLayoutModule, KitTimepickerComponent, KitTimepickerModule, KitToastrModule, KitToastrPosition, KitToastrService, KitToastrType, KitToggleComponent, KitToggleModule, KitTooltipDirective, KitTooltipModule, KitTooltipPosition, KitUnitsTextboxComponent, KitUnitsTextboxDropdownPosition, KitUnitsTextboxModule, KitUnitsTextboxType, buildRandomUUID };
|
|
5167
5375
|
//# sourceMappingURL=indigina-ui-kit.mjs.map
|