@kms-ngx-ui/presentational 20.4.4 → 20.8.0
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/kms-ngx-ui-presentational.mjs +132 -7
- package/fesm2022/kms-ngx-ui-presentational.mjs.map +1 -1
- package/index.d.ts +84 -29
- package/package.json +1 -1
- package/src/assets/icons.json +1 -1
- package/src/assets/llms.txt +39 -2
- package/src/assets/sprite.svg +1 -1
- package/src/lib/ui/molecules/button-toggle-group/button-toggle-group.component.scss +51 -0
- package/src/lib/ui/molecules/tab-group/tab-group.component.scss +41 -0
- package/src/styles/styles.scss +4 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { Component, Pipe, NgModule, EventEmitter, Output, Input, Directive, HostListener, PLATFORM_ID, DOCUMENT, Inject, Injectable, input, VERSION, forwardRef, InjectionToken, inject, Injector, ViewChild, computed, HostBinding, output, signal, effect, ChangeDetectionStrategy, model, ChangeDetectorRef, ViewContainerRef, untracked, DestroyRef, ElementRef, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
|
|
2
|
+
import { Component, Pipe, NgModule, EventEmitter, Output, Input, Directive, HostListener, PLATFORM_ID, DOCUMENT, Inject, Injectable, input, VERSION, forwardRef, InjectionToken, inject, Injector, ViewChild, computed, HostBinding, output, signal, effect, ChangeDetectionStrategy, model, ChangeDetectorRef, ViewContainerRef, untracked, DestroyRef, ElementRef, ContentChildren, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
|
|
3
3
|
import * as i1 from '@angular/common';
|
|
4
|
-
import { CommonModule, CurrencyPipe, isPlatformBrowser, NgClass, NgStyle } from '@angular/common';
|
|
4
|
+
import { CommonModule, CurrencyPipe, isPlatformBrowser, NgClass, NgStyle, NgTemplateOutlet } from '@angular/common';
|
|
5
5
|
import * as i2 from '@angular/forms';
|
|
6
6
|
import { FormControl, NG_VALUE_ACCESSOR, NgControl, UntypedFormGroup, UntypedFormControl, FormGroup, ReactiveFormsModule, NG_VALIDATORS, ValueChangeEvent, FormsModule } from '@angular/forms';
|
|
7
7
|
import * as i1$2 from '@angular/material/checkbox';
|
|
@@ -56,6 +56,8 @@ import { trigger, state, style } from '@angular/animations';
|
|
|
56
56
|
import { register } from 'swiper/element/bundle';
|
|
57
57
|
import { isEmpty } from 'lodash';
|
|
58
58
|
import moment from 'moment';
|
|
59
|
+
import * as i1$a from '@angular/material/tabs';
|
|
60
|
+
import { MatTabsModule } from '@angular/material/tabs';
|
|
59
61
|
|
|
60
62
|
class KmsUiPresentationalComponent {
|
|
61
63
|
constructor() { }
|
|
@@ -1443,7 +1445,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImpo
|
|
|
1443
1445
|
class CheckboxComponent {
|
|
1444
1446
|
constructor() {
|
|
1445
1447
|
this.infoText = '';
|
|
1446
|
-
this.
|
|
1448
|
+
this._disabled = false;
|
|
1447
1449
|
/**
|
|
1448
1450
|
* Internal description name. All checkboxes with the same name belong to the same group.
|
|
1449
1451
|
* User can select none, one or all checkboxes with the same name.
|
|
@@ -1460,6 +1462,13 @@ class CheckboxComponent {
|
|
|
1460
1462
|
get checked() {
|
|
1461
1463
|
return this.innerControl.value ?? false;
|
|
1462
1464
|
}
|
|
1465
|
+
set disabled(value) {
|
|
1466
|
+
this._disabled = value;
|
|
1467
|
+
this.setDisabledState(value);
|
|
1468
|
+
}
|
|
1469
|
+
get disabled() {
|
|
1470
|
+
return this._disabled;
|
|
1471
|
+
}
|
|
1463
1472
|
valueChanged(value) {
|
|
1464
1473
|
this.onChange(value);
|
|
1465
1474
|
this.innerControl.setValue(value, { emitEvent: false });
|
|
@@ -2267,6 +2276,63 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImpo
|
|
|
2267
2276
|
args: [{ selector: 'kms-button', standalone: false, template: "<!-- Basic -->\n@if (appearance() == ButtonAppearance.BASIC) {\n<button\n mat-button\n [color]=\"color()\"\n class=\"kms-button\"\n [ngClass]=\"{\n 'kms-button--loading': loading(),\n 'kms-button--basic-primary': color() === StylingTheme.PRIMARY,\n 'kms-button--basic-accent': color() === StylingTheme.SECONDARY,\n 'kms-button--basic-warn': color() === StylingTheme.WARN,\n 'kms-button--rounded': rounded()\n }\"\n [disabled]=\"disabled() || loading()\"\n (click)=\"buttonClick.emit($event)\"\n [type]=\"type()\"\n (keyup)=\"\n ($event.key === 'Enter' || $event.key === 'Space') &&\n buttonClick.emit($event)\n \"\n>\n <ng-container *ngTemplateOutlet=\"buttonTemplate\"></ng-container>\n</button>\n}\n\n<!-- Flat -->\n@else if (appearance() == ButtonAppearance.FLAT) {\n<button\n mat-flat-button\n [color]=\"color()\"\n class=\"kms-button\"\n [ngClass]=\"{\n 'kms-button--loading': loading(),\n 'kms-button--flat-primary': color() === StylingTheme.PRIMARY,\n 'kms-button--flat-accent': color() === StylingTheme.SECONDARY,\n 'kms-button--flat-warn': color() === StylingTheme.WARN,\n 'kms-button--rounded': rounded()\n }\"\n [disabled]=\"disabled() || loading()\"\n (click)=\"buttonClick.emit($event)\"\n [type]=\"type()\"\n (keyup)=\"\n ($event.key === 'Enter' || $event.key === 'Space') &&\n buttonClick.emit($event)\n \"\n>\n <ng-container *ngTemplateOutlet=\"buttonTemplate\"></ng-container>\n</button>\n}\n\n<!-- Raised -->\n@else if (appearance() == ButtonAppearance.RAISED) {\n<button\n mat-raised-button\n [color]=\"color()\"\n class=\"kms-button\"\n [ngClass]=\"{\n 'kms-button--loading': loading(),\n 'kms-button--raised-primary': color() === StylingTheme.PRIMARY,\n 'kms-button--raised-accent': color() === StylingTheme.SECONDARY,\n 'kms-button--raised-warn': color() === StylingTheme.WARN,\n 'kms-button--rounded': rounded()\n }\"\n [disabled]=\"disabled() || loading()\"\n (click)=\"buttonClick.emit($event)\"\n [type]=\"type()\"\n (keyup)=\"\n ($event.key === 'Enter' || $event.key === 'Space') &&\n buttonClick.emit($event)\n \"\n>\n <ng-container *ngTemplateOutlet=\"buttonTemplate\"></ng-container>\n</button>\n}\n\n<ng-template #buttonTemplate>\n @if (loading()) {\n <mat-spinner class=\"kms-button__spinner\" diameter=\"22\"></mat-spinner>\n } @if (icon()) {\n <kms-icon\n class=\"kms-button__icon\"\n [color]=\"iconColor()\"\n [size]=\"IconSize.XXS\"\n [icon]=\"icon()\"\n ></kms-icon>\n }\n {{ label() }}\n</ng-template>\n" }]
|
|
2268
2277
|
}], propDecorators: { color: [{ type: i0.Input, args: [{ isSignal: true, alias: "color", required: false }] }], type: [{ type: i0.Input, args: [{ isSignal: true, alias: "type", required: false }] }], appearance: [{ type: i0.Input, args: [{ isSignal: true, alias: "appearance", required: false }] }], loading: [{ type: i0.Input, args: [{ isSignal: true, alias: "loading", required: false }] }], label: [{ type: i0.Input, args: [{ isSignal: true, alias: "label", required: false }] }], icon: [{ type: i0.Input, args: [{ isSignal: true, alias: "icon", required: false }] }], disabled: [{ type: i0.Input, args: [{ isSignal: true, alias: "disabled", required: false }] }], buttonClick: [{ type: i0.Output, args: ["buttonClick"] }], rounded: [{ type: i0.Input, args: [{ isSignal: true, alias: "rounded", required: false }] }] } });
|
|
2269
2278
|
|
|
2279
|
+
class ButtonToggleGroupComponent {
|
|
2280
|
+
constructor() {
|
|
2281
|
+
this.options = [];
|
|
2282
|
+
this.disabled = false;
|
|
2283
|
+
this.rounded = false;
|
|
2284
|
+
this.value = null;
|
|
2285
|
+
this.ButtonAppearance = ButtonAppearance;
|
|
2286
|
+
this.StylingTheme = StylingTheme;
|
|
2287
|
+
this.onChange = (value) => {
|
|
2288
|
+
this.value = value;
|
|
2289
|
+
};
|
|
2290
|
+
this.onTouched = () => { };
|
|
2291
|
+
}
|
|
2292
|
+
writeValue(value) {
|
|
2293
|
+
this.value = value;
|
|
2294
|
+
}
|
|
2295
|
+
registerOnChange(fn) {
|
|
2296
|
+
this.onChange = fn;
|
|
2297
|
+
}
|
|
2298
|
+
registerOnTouched(fn) {
|
|
2299
|
+
this.onTouched = fn;
|
|
2300
|
+
}
|
|
2301
|
+
select(option) {
|
|
2302
|
+
if (this.disabled || option.Disabled)
|
|
2303
|
+
return;
|
|
2304
|
+
this.value = option.Value;
|
|
2305
|
+
this.onChange(option.Value);
|
|
2306
|
+
this.onTouched();
|
|
2307
|
+
}
|
|
2308
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ButtonToggleGroupComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2309
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.16", type: ButtonToggleGroupComponent, isStandalone: false, selector: "kms-button-toggle-group", inputs: { options: "options", disabled: "disabled", rounded: "rounded", value: "value" }, providers: [
|
|
2310
|
+
{
|
|
2311
|
+
provide: NG_VALUE_ACCESSOR,
|
|
2312
|
+
useExisting: forwardRef(() => ButtonToggleGroupComponent),
|
|
2313
|
+
multi: true,
|
|
2314
|
+
},
|
|
2315
|
+
], ngImport: i0, template: "<div\n class=\"kms-button-toggle-group\"\n [class.kms-button-toggle-group--disabled]=\"disabled\"\n [class.kms-button-toggle-group--rounded]=\"rounded\"\n>\n @for (option of options; track option.Value) {\n <kms-button\n class=\"kms-button-toggle-group__item\"\n [class.kms-button-toggle-group__item--active]=\"value === option.Value\"\n [appearance]=\"ButtonAppearance.BASIC\"\n [color]=\"StylingTheme.SECONDARY\"\n [label]=\"option.Text\"\n [icon]=\"option.Icon\"\n [disabled]=\"disabled || option.Disabled\"\n (buttonClick)=\"select(option)\"\n ></kms-button>\n }\n</div>\n", styles: [""], dependencies: [{ kind: "component", type: ButtonComponent, selector: "kms-button", inputs: ["color", "type", "appearance", "loading", "label", "icon", "disabled", "rounded"], outputs: ["buttonClick"] }] }); }
|
|
2316
|
+
}
|
|
2317
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ButtonToggleGroupComponent, decorators: [{
|
|
2318
|
+
type: Component,
|
|
2319
|
+
args: [{ standalone: false, selector: 'kms-button-toggle-group', providers: [
|
|
2320
|
+
{
|
|
2321
|
+
provide: NG_VALUE_ACCESSOR,
|
|
2322
|
+
useExisting: forwardRef(() => ButtonToggleGroupComponent),
|
|
2323
|
+
multi: true,
|
|
2324
|
+
},
|
|
2325
|
+
], template: "<div\n class=\"kms-button-toggle-group\"\n [class.kms-button-toggle-group--disabled]=\"disabled\"\n [class.kms-button-toggle-group--rounded]=\"rounded\"\n>\n @for (option of options; track option.Value) {\n <kms-button\n class=\"kms-button-toggle-group__item\"\n [class.kms-button-toggle-group__item--active]=\"value === option.Value\"\n [appearance]=\"ButtonAppearance.BASIC\"\n [color]=\"StylingTheme.SECONDARY\"\n [label]=\"option.Text\"\n [icon]=\"option.Icon\"\n [disabled]=\"disabled || option.Disabled\"\n (buttonClick)=\"select(option)\"\n ></kms-button>\n }\n</div>\n" }]
|
|
2326
|
+
}], propDecorators: { options: [{
|
|
2327
|
+
type: Input
|
|
2328
|
+
}], disabled: [{
|
|
2329
|
+
type: Input
|
|
2330
|
+
}], rounded: [{
|
|
2331
|
+
type: Input
|
|
2332
|
+
}], value: [{
|
|
2333
|
+
type: Input
|
|
2334
|
+
}] } });
|
|
2335
|
+
|
|
2270
2336
|
class TooltipIconComponent {
|
|
2271
2337
|
constructor() {
|
|
2272
2338
|
this.tooltipText = input('', ...(ngDevMode ? [{ debugName: "tooltipText" }] : []));
|
|
@@ -5065,6 +5131,52 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImpo
|
|
|
5065
5131
|
], template: "<form class=\"kms-generic-form\"\n [class.kms-generic-form--loading]=\"loading()\"\n [class.kms-generic-form--disabled]=\"disabled()\"\n [attr.aria-busy]=\"loading() || null\"\n [attr.aria-disabled]=\"disabled() || null\"\n (submit)=\"onFormSubmit($event)\"\n (keydown.enter)=\"onEnterKey($event)\">\n\n @if (showActionsTop()) {\n <kms-form-actions\n [actionsConfig]=\"config().submitAction!\"\n [disabled]=\"loading()\"\n (submitClick)=\"submit()\">\n </kms-form-actions>\n }\n\n @for (section of visibleSections(); track section.key) {\n <kms-form-section\n [sectionConfig]=\"section\"\n [formGroup]=\"form()\"\n [formId]=\"config().formId\"\n [formErrorDisplay]=\"config().errorDisplay\"\n [formDisabledConfig]=\"config().disabledConfig\"\n [submitted]=\"submitted()\">\n </kms-form-section>\n }\n\n @if (showActionsBottom()) {\n <kms-form-actions\n [actionsConfig]=\"config().submitAction!\"\n [disabled]=\"loading()\"\n (submitClick)=\"submit()\">\n </kms-form-actions>\n }\n\n @if (loading()) {\n <div class=\"kms-generic-form__loading-overlay\"></div>\n }\n\n <output class=\"kms-generic-form__sr-only\" aria-live=\"polite\">\n {{ errorAnnouncement() }}\n </output>\n</form>\n", styles: [":host{display:block}.kms-generic-form{position:relative}.kms-generic-form--loading{pointer-events:none}.kms-generic-form__loading-overlay{position:absolute;inset:0;background:#fff9;z-index:1}.kms-generic-form__sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}\n"] }]
|
|
5066
5132
|
}], ctorParameters: () => [], propDecorators: { config: [{ type: i0.Input, args: [{ isSignal: true, alias: "config", required: true }] }], value: [{ type: i0.Input, args: [{ isSignal: true, alias: "value", required: false }] }, { type: i0.Output, args: ["valueChange"] }], disabled: [{ type: i0.Input, args: [{ isSignal: true, alias: "disabled", required: false }] }], loading: [{ type: i0.Input, args: [{ isSignal: true, alias: "loading", required: false }] }], formSubmit: [{ type: i0.Output, args: ["formSubmit"] }], formStateChange: [{ type: i0.Output, args: ["formStateChange"] }], formReady: [{ type: i0.Output, args: ["formReady"] }], fieldValueChange: [{ type: i0.Output, args: ["fieldValueChange"] }] } });
|
|
5067
5133
|
|
|
5134
|
+
/**
|
|
5135
|
+
* @copyright KMS GmbH
|
|
5136
|
+
*/
|
|
5137
|
+
class KmsTabContentDirective {
|
|
5138
|
+
constructor(templateRef) {
|
|
5139
|
+
this.templateRef = templateRef;
|
|
5140
|
+
}
|
|
5141
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: KmsTabContentDirective, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
5142
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.16", type: KmsTabContentDirective, isStandalone: true, selector: "ng-template[kmsTabContent]", ngImport: i0 }); }
|
|
5143
|
+
}
|
|
5144
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: KmsTabContentDirective, decorators: [{
|
|
5145
|
+
type: Directive,
|
|
5146
|
+
args: [{
|
|
5147
|
+
selector: 'ng-template[kmsTabContent]',
|
|
5148
|
+
standalone: true,
|
|
5149
|
+
}]
|
|
5150
|
+
}], ctorParameters: () => [{ type: i0.TemplateRef }] });
|
|
5151
|
+
class TabGroupComponent {
|
|
5152
|
+
constructor() {
|
|
5153
|
+
/** Tab definitions with label and optional count. When omitted, mat-tab children are projected directly. */
|
|
5154
|
+
this.tabs = input(...(ngDevMode ? [undefined, { debugName: "tabs" }] : []));
|
|
5155
|
+
/** Index of the initially selected tab. */
|
|
5156
|
+
this.selectedIndex = input(0, ...(ngDevMode ? [{ debugName: "selectedIndex" }] : []));
|
|
5157
|
+
/** Emits the new index whenever the user switches tabs. */
|
|
5158
|
+
this.selectedIndexChange = output();
|
|
5159
|
+
/** Whether to disable the Material ripple effect on tabs. */
|
|
5160
|
+
this.disableRipple = input(true, ...(ngDevMode ? [{ debugName: "disableRipple" }] : []));
|
|
5161
|
+
this.contentTemplates = [];
|
|
5162
|
+
}
|
|
5163
|
+
ngAfterContentInit() {
|
|
5164
|
+
this.contentTemplates = this.tabContents.map((d) => d.templateRef);
|
|
5165
|
+
}
|
|
5166
|
+
onTabChange(index) {
|
|
5167
|
+
this.selectedIndexChange.emit(index);
|
|
5168
|
+
}
|
|
5169
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TabGroupComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
5170
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.16", type: TabGroupComponent, isStandalone: true, selector: "kms-tab-group", inputs: { tabs: { classPropertyName: "tabs", publicName: "tabs", isSignal: true, isRequired: false, transformFunction: null }, selectedIndex: { classPropertyName: "selectedIndex", publicName: "selectedIndex", isSignal: true, isRequired: false, transformFunction: null }, disableRipple: { classPropertyName: "disableRipple", publicName: "disableRipple", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { selectedIndexChange: "selectedIndexChange" }, queries: [{ propertyName: "tabContents", predicate: KmsTabContentDirective }], ngImport: i0, template: "<mat-tab-group\n mat-align-tabs=\"start\"\n mat-stretch-tabs=\"false\"\n [disableRipple]=\"disableRipple()\"\n [selectedIndex]=\"selectedIndex()\"\n (selectedIndexChange)=\"onTabChange($event)\"\n>\n @if (tabs(); as tabDefs) {\n @for (tab of tabDefs; track tab.label; let i = $index) {\n <mat-tab>\n <ng-template mat-tab-label>\n <span>{{ tab.label }}</span>\n @if (tab.count !== undefined) {\n <span class=\"kms-tab-group__count\">({{ tab.count }})</span>\n }\n </ng-template>\n <ng-template matTabContent>\n @if (contentTemplates[i]) {\n <ng-container *ngTemplateOutlet=\"contentTemplates[i]\"></ng-container>\n }\n </ng-template>\n </mat-tab>\n }\n } @else {\n <ng-content></ng-content>\n }\n</mat-tab-group>\n", styles: [""], dependencies: [{ kind: "ngmodule", type: MatTabsModule }, { kind: "directive", type: i1$a.MatTabContent, selector: "[matTabContent]" }, { kind: "directive", type: i1$a.MatTabLabel, selector: "[mat-tab-label], [matTabLabel]" }, { kind: "component", type: i1$a.MatTab, selector: "mat-tab", inputs: ["disabled", "label", "aria-label", "aria-labelledby", "labelClass", "bodyClass", "id"], exportAs: ["matTab"] }, { kind: "component", type: i1$a.MatTabGroup, selector: "mat-tab-group", inputs: ["color", "fitInkBarToContent", "mat-stretch-tabs", "mat-align-tabs", "dynamicHeight", "selectedIndex", "headerPosition", "animationDuration", "contentTabIndex", "disablePagination", "disableRipple", "preserveContent", "backgroundColor", "aria-label", "aria-labelledby"], outputs: ["selectedIndexChange", "focusChange", "animationDone", "selectedTabChange"], exportAs: ["matTabGroup"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
5171
|
+
}
|
|
5172
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TabGroupComponent, decorators: [{
|
|
5173
|
+
type: Component,
|
|
5174
|
+
args: [{ selector: 'kms-tab-group', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [MatTabsModule, NgTemplateOutlet], template: "<mat-tab-group\n mat-align-tabs=\"start\"\n mat-stretch-tabs=\"false\"\n [disableRipple]=\"disableRipple()\"\n [selectedIndex]=\"selectedIndex()\"\n (selectedIndexChange)=\"onTabChange($event)\"\n>\n @if (tabs(); as tabDefs) {\n @for (tab of tabDefs; track tab.label; let i = $index) {\n <mat-tab>\n <ng-template mat-tab-label>\n <span>{{ tab.label }}</span>\n @if (tab.count !== undefined) {\n <span class=\"kms-tab-group__count\">({{ tab.count }})</span>\n }\n </ng-template>\n <ng-template matTabContent>\n @if (contentTemplates[i]) {\n <ng-container *ngTemplateOutlet=\"contentTemplates[i]\"></ng-container>\n }\n </ng-template>\n </mat-tab>\n }\n } @else {\n <ng-content></ng-content>\n }\n</mat-tab-group>\n" }]
|
|
5175
|
+
}], propDecorators: { tabs: [{ type: i0.Input, args: [{ isSignal: true, alias: "tabs", required: false }] }], selectedIndex: [{ type: i0.Input, args: [{ isSignal: true, alias: "selectedIndex", required: false }] }], selectedIndexChange: [{ type: i0.Output, args: ["selectedIndexChange"] }], disableRipple: [{ type: i0.Input, args: [{ isSignal: true, alias: "disableRipple", required: false }] }], tabContents: [{
|
|
5176
|
+
type: ContentChildren,
|
|
5177
|
+
args: [KmsTabContentDirective]
|
|
5178
|
+
}] } });
|
|
5179
|
+
|
|
5068
5180
|
class KmsUiPresentationalModule {
|
|
5069
5181
|
constructor(translate) {
|
|
5070
5182
|
// Merge all bundled library strings (validator messages, date-input
|
|
@@ -5109,6 +5221,7 @@ class KmsUiPresentationalModule {
|
|
|
5109
5221
|
SliderComponent,
|
|
5110
5222
|
CardComponent,
|
|
5111
5223
|
ButtonComponent,
|
|
5224
|
+
ButtonToggleGroupComponent,
|
|
5112
5225
|
NumericInputComponent,
|
|
5113
5226
|
GenericFormComponent,
|
|
5114
5227
|
FormSectionComponent,
|
|
@@ -5144,7 +5257,9 @@ class KmsUiPresentationalModule {
|
|
|
5144
5257
|
MatNativeDateModule,
|
|
5145
5258
|
IconComponent,
|
|
5146
5259
|
InlineAlertComponent,
|
|
5147
|
-
DateInputComponent
|
|
5260
|
+
DateInputComponent,
|
|
5261
|
+
TabGroupComponent,
|
|
5262
|
+
KmsTabContentDirective], exports: [BackToTopComponent,
|
|
5148
5263
|
CheckboxComponent,
|
|
5149
5264
|
ColorInputComponent,
|
|
5150
5265
|
DropdownFromDataComponent,
|
|
@@ -5172,13 +5287,16 @@ class KmsUiPresentationalModule {
|
|
|
5172
5287
|
SliderComponent,
|
|
5173
5288
|
CardComponent,
|
|
5174
5289
|
ButtonComponent,
|
|
5290
|
+
ButtonToggleGroupComponent,
|
|
5175
5291
|
NumericInputComponent,
|
|
5176
5292
|
GenericFormComponent,
|
|
5177
5293
|
FormSectionComponent,
|
|
5178
5294
|
FormActionsComponent,
|
|
5179
5295
|
DynamicFieldDirective,
|
|
5180
5296
|
DateInputComponent,
|
|
5181
|
-
TextInputComponent
|
|
5297
|
+
TextInputComponent,
|
|
5298
|
+
TabGroupComponent,
|
|
5299
|
+
KmsTabContentDirective] }); }
|
|
5182
5300
|
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: KmsUiPresentationalModule, providers: [ViewportService], imports: [CommonModule,
|
|
5183
5301
|
DragDropModule,
|
|
5184
5302
|
MatCheckboxModule,
|
|
@@ -5206,7 +5324,8 @@ class KmsUiPresentationalModule {
|
|
|
5206
5324
|
MatCardModule,
|
|
5207
5325
|
MatDatepickerModule,
|
|
5208
5326
|
MatNativeDateModule,
|
|
5209
|
-
DateInputComponent
|
|
5327
|
+
DateInputComponent,
|
|
5328
|
+
TabGroupComponent] }); }
|
|
5210
5329
|
}
|
|
5211
5330
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: KmsUiPresentationalModule, decorators: [{
|
|
5212
5331
|
type: NgModule,
|
|
@@ -5238,6 +5357,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImpo
|
|
|
5238
5357
|
SliderComponent,
|
|
5239
5358
|
CardComponent,
|
|
5240
5359
|
ButtonComponent,
|
|
5360
|
+
ButtonToggleGroupComponent,
|
|
5241
5361
|
NumericInputComponent,
|
|
5242
5362
|
GenericFormComponent,
|
|
5243
5363
|
FormSectionComponent,
|
|
@@ -5277,6 +5397,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImpo
|
|
|
5277
5397
|
IconComponent,
|
|
5278
5398
|
InlineAlertComponent,
|
|
5279
5399
|
DateInputComponent,
|
|
5400
|
+
TabGroupComponent,
|
|
5401
|
+
KmsTabContentDirective,
|
|
5280
5402
|
],
|
|
5281
5403
|
exports: [
|
|
5282
5404
|
BackToTopComponent,
|
|
@@ -5307,6 +5429,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImpo
|
|
|
5307
5429
|
SliderComponent,
|
|
5308
5430
|
CardComponent,
|
|
5309
5431
|
ButtonComponent,
|
|
5432
|
+
ButtonToggleGroupComponent,
|
|
5310
5433
|
NumericInputComponent,
|
|
5311
5434
|
GenericFormComponent,
|
|
5312
5435
|
FormSectionComponent,
|
|
@@ -5314,6 +5437,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImpo
|
|
|
5314
5437
|
DynamicFieldDirective,
|
|
5315
5438
|
DateInputComponent,
|
|
5316
5439
|
TextInputComponent,
|
|
5440
|
+
TabGroupComponent,
|
|
5441
|
+
KmsTabContentDirective,
|
|
5317
5442
|
],
|
|
5318
5443
|
providers: [ViewportService],
|
|
5319
5444
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
@@ -5403,5 +5528,5 @@ var FormLayout;
|
|
|
5403
5528
|
* Generated bundle index. Do not edit.
|
|
5404
5529
|
*/
|
|
5405
5530
|
|
|
5406
|
-
export { BackToTopComponent, Breakpoint, ButtonAppearance, ButtonComponent, ButtonResponseType, CardComponent, CheckboxComponent, Color, ColorInputComponent, ConfirmationDialogComponent, CustomPipesModule, DateInputComponent, DirectivesModule, DropdownFromDataComponent, DynamicFieldDirective, EnumRadiogroupComponent, FieldRegistryService, FieldType, FileInputComponent, FlyoutComponent, FormActionsComponent, FormFieldComponent, FormLayout, FormParentComponent, FormSectionComponent, GenericFormComponent, GenericFormModule, GenericFormService, GetMaxHeightDirective, IconComponent, IconSizePx, IconSizesArr, ImageSliderComponent, ImageSnippet, ImageSourceType, ImageUploadComponent, InlineAlertComponent, IntegerCurrency, KMSAccordionItemComponent, KeyValuePair, KmsUiPresentationalComponent, KmsUiPresentationalModule, KmsUiPresentationalService, LabelValuePair, LoaderComponent, MapComponent, Marker, MarkerLabel, MarkerOptions, NumericInputComponent, PasswordComponent, RadioButtonComponent, RadioButtonSize, RadioGroupComponent, SafeHtmlPipe, SafeResourceUrlPipe, SafeUrlPipe, SalutationDropdownComponent, SalutationEnum, SalutationRadiogroupComponent, SanitizeNullPipe, SimpleBreakpoint, SlideToggleComponent, SliderComponent, StylingTheme, SwipeDirective, TextInputComponent, TextValuePair, TextValuePairArray, TimeDirective, TimeInputComponent, TooltipDirective, TooltipIconComponent, TrimPipe, TypeofPipe, ViewportService, WindowDimensions, YesNoRadiogroupComponent, noSpecialCharsOnly, noWhitespaceOnly };
|
|
5531
|
+
export { BackToTopComponent, Breakpoint, ButtonAppearance, ButtonComponent, ButtonResponseType, ButtonToggleGroupComponent, CardComponent, CheckboxComponent, Color, ColorInputComponent, ConfirmationDialogComponent, CustomPipesModule, DateInputComponent, DirectivesModule, DropdownFromDataComponent, DynamicFieldDirective, EnumRadiogroupComponent, FieldRegistryService, FieldType, FileInputComponent, FlyoutComponent, FormActionsComponent, FormFieldComponent, FormLayout, FormParentComponent, FormSectionComponent, GenericFormComponent, GenericFormModule, GenericFormService, GetMaxHeightDirective, IconComponent, IconSizePx, IconSizesArr, ImageSliderComponent, ImageSnippet, ImageSourceType, ImageUploadComponent, InlineAlertComponent, IntegerCurrency, KMSAccordionItemComponent, KeyValuePair, KmsTabContentDirective, KmsUiPresentationalComponent, KmsUiPresentationalModule, KmsUiPresentationalService, LabelValuePair, LoaderComponent, MapComponent, Marker, MarkerLabel, MarkerOptions, NumericInputComponent, PasswordComponent, RadioButtonComponent, RadioButtonSize, RadioGroupComponent, SafeHtmlPipe, SafeResourceUrlPipe, SafeUrlPipe, SalutationDropdownComponent, SalutationEnum, SalutationRadiogroupComponent, SanitizeNullPipe, SimpleBreakpoint, SlideToggleComponent, SliderComponent, StylingTheme, SwipeDirective, TabGroupComponent, TextInputComponent, TextValuePair, TextValuePairArray, TimeDirective, TimeInputComponent, TooltipDirective, TooltipIconComponent, TrimPipe, TypeofPipe, ViewportService, WindowDimensions, YesNoRadiogroupComponent, noSpecialCharsOnly, noWhitespaceOnly };
|
|
5407
5532
|
//# sourceMappingURL=kms-ngx-ui-presentational.mjs.map
|