@kms-ngx-ui/presentational 16.4.0 → 16.5.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/esm2022/lib/kms-ngx-ui-presentational.module.mjs +6 -11
- package/esm2022/lib/ui/confirmation-dialog/confirmation-dialog.component.mjs +49 -0
- package/esm2022/lib/ui/confirmation-dialog/dialog-data.enum.mjs +6 -0
- package/esm2022/lib/ui/confirmation-dialog/dialog-data.model.mjs +2 -0
- package/esm2022/public-api.mjs +2 -3
- package/fesm2022/kms-ngx-ui-presentational.mjs +57 -118
- package/fesm2022/kms-ngx-ui-presentational.mjs.map +1 -1
- package/lib/kms-ngx-ui-presentational.module.d.ts +38 -39
- package/lib/ui/confirmation-dialog/confirmation-dialog.component.d.ts +25 -0
- package/lib/ui/{button-with-confirm-dialog/button-response-types.enum.d.ts → confirmation-dialog/dialog-data.enum.d.ts} +1 -1
- package/lib/ui/confirmation-dialog/dialog-data.model.d.ts +9 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -2
- package/src/lib/ui/confirmation-dialog/confirmation-dialog.component.scss +47 -0
- package/src/styles/styles.scss +2 -4
- package/esm2022/lib/ui/button-with-confirm-dialog/button-response-types.enum.mjs +0 -6
- package/esm2022/lib/ui/button-with-confirm-dialog/button-with-confirm-dialog.component.mjs +0 -58
- package/esm2022/lib/ui/button-with-confirm-dialog/dialog-data.model.mjs +0 -2
- package/esm2022/lib/ui/generic-dialog/generic-dialog.component.mjs +0 -54
- package/lib/ui/button-with-confirm-dialog/button-with-confirm-dialog.component.d.ts +0 -19
- package/lib/ui/button-with-confirm-dialog/dialog-data.model.d.ts +0 -9
- package/lib/ui/generic-dialog/generic-dialog.component.d.ts +0 -26
- package/src/lib/ui/button-with-confirm-dialog/button-with-confirm-dialog.component.scss +0 -3
- package/src/lib/ui/generic-dialog/generic-dialog.component.scss +0 -59
|
@@ -15,25 +15,23 @@ import * as i4 from '@angular/material/input';
|
|
|
15
15
|
import { MatInputModule } from '@angular/material/input';
|
|
16
16
|
import * as i4$1 from '@ngx-translate/core';
|
|
17
17
|
import { TranslateModule } from '@ngx-translate/core';
|
|
18
|
-
import * as
|
|
18
|
+
import * as i3$1 from '@angular/material/button';
|
|
19
19
|
import { MatButtonModule } from '@angular/material/button';
|
|
20
20
|
import { trigger, state, style } from '@angular/animations';
|
|
21
|
-
import * as i3$
|
|
21
|
+
import * as i3$2 from '@angular/material/expansion';
|
|
22
22
|
import { MatExpansionModule } from '@angular/material/expansion';
|
|
23
|
-
import * as i2$
|
|
23
|
+
import * as i2$3 from '@angular/material/progress-spinner';
|
|
24
24
|
import { MatProgressSpinnerModule } from '@angular/material/progress-spinner';
|
|
25
25
|
import { Subject } from 'rxjs';
|
|
26
|
-
import * as i3$
|
|
26
|
+
import * as i3$3 from '@angular/google-maps';
|
|
27
27
|
import { GoogleMapsModule } from '@angular/google-maps';
|
|
28
|
-
import * as i3$
|
|
28
|
+
import * as i3$4 from '@angular/material/select';
|
|
29
29
|
import { MatSelectModule } from '@angular/material/select';
|
|
30
30
|
import * as i4$2 from '@angular/material/core';
|
|
31
31
|
import { DragDropModule } from '@angular/cdk/drag-drop';
|
|
32
32
|
import * as i1$2 from '@angular/material/dialog';
|
|
33
33
|
import { MAT_DIALOG_DATA, MatDialogModule } from '@angular/material/dialog';
|
|
34
34
|
import { MatMenuModule } from '@angular/material/menu';
|
|
35
|
-
import { SubSink } from 'subsink';
|
|
36
|
-
import * as i1$3 from '@angular/material/legacy-dialog';
|
|
37
35
|
import { EnumValues } from 'enum-values/src/enumValues';
|
|
38
36
|
import { register } from 'swiper/element/bundle';
|
|
39
37
|
|
|
@@ -1310,7 +1308,7 @@ class FileInputComponent {
|
|
|
1310
1308
|
useExisting: forwardRef(() => FileInputComponent),
|
|
1311
1309
|
multi: true,
|
|
1312
1310
|
},
|
|
1313
|
-
], viewQueries: [{ propertyName: "fileInput", first: true, predicate: ["fileInput"], descendants: true }], ngImport: i0, template: "<form [formGroup]=\"form\" (change)=\"newImageLoading=true\" class=\"fileInput\"> \n\n <div *ngIf=\"form.value.Filename && previewImage\">\n <div *ngIf=\"newImageLoading\">\n {{ 'file-input.loading' | translate }}\n </div>\n <div *ngIf=\"!newImageLoading\">\n <div class=\"\">\n <div class=\"\">\n <img *ngIf=\"form.value.ImageLink && form.value.ImageLink !== '' && !(form.value.ImageAsDataURL && form.value.ImageAsDataURL !== '')\" [src]=\"form.value.ImageAsDataURL\" [src]=\"form.value.ImageLink\" style=\"height: 40px; width: fit-content;\" />\n <img *ngIf=\"form.value.ImageAsDataURL && form.value.ImageAsDataURL !== ''\" [src]=\"form.value.ImageAsDataURL\" style=\"height: 40px; width: fit-content;\" />\n </div>\n <div class=\"\">{{form.value.Filename}}</div>\n <div class=\"\">\n <div (click)=\"removeFromList()\" *ngIf=\"allowRemove\">\n <kms-icon icon=\"trash\" [size]=\"IconSizePx.TINY\" iconClass=\"color-black\"></kms-icon> \n {{ 'file-input.remove' }}\n </div>\n </div>\n </div>\n </div>\n </div>\n <div *ngIf=\"!previewImage\">\n <div class=\"\">{{form.value.Filename}}</div>\n </div>\n\n <button (click)=\"selectImageOverlay()\" class=\"button-primary-font-color\" mat-stroked-button>\n <span>{{ label }}</span>\n </button>\n <input\n type=\"file\"\n [accept]=\"acceptedFileMimetypes\"\n style=\"display: none\"\n #fileInput\n (click)=\"clearInputValue($event)\"\n (change)=\"selectImage($event)\"\n />\n\n <input type=\"hidden\" [formControl]=\"form.controls['ImageIdent']\" />\n <input type=\"hidden\" [formControl]=\"form.controls['ImageLink']\" />\n <input type=\"hidden\" [formControl]=\"form.controls['Filename']\" />\n <input type=\"hidden\" [formControl]=\"form.controls['ImageAsDataURL']\" />\n <input type=\"hidden\" [formControl]=\"form.controls['Text']\" />\n\n</form>", styles: [""], dependencies: [{ kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type:
|
|
1311
|
+
], viewQueries: [{ propertyName: "fileInput", first: true, predicate: ["fileInput"], descendants: true }], ngImport: i0, template: "<form [formGroup]=\"form\" (change)=\"newImageLoading=true\" class=\"fileInput\"> \n\n <div *ngIf=\"form.value.Filename && previewImage\">\n <div *ngIf=\"newImageLoading\">\n {{ 'file-input.loading' | translate }}\n </div>\n <div *ngIf=\"!newImageLoading\">\n <div class=\"\">\n <div class=\"\">\n <img *ngIf=\"form.value.ImageLink && form.value.ImageLink !== '' && !(form.value.ImageAsDataURL && form.value.ImageAsDataURL !== '')\" [src]=\"form.value.ImageAsDataURL\" [src]=\"form.value.ImageLink\" style=\"height: 40px; width: fit-content;\" />\n <img *ngIf=\"form.value.ImageAsDataURL && form.value.ImageAsDataURL !== ''\" [src]=\"form.value.ImageAsDataURL\" style=\"height: 40px; width: fit-content;\" />\n </div>\n <div class=\"\">{{form.value.Filename}}</div>\n <div class=\"\">\n <div (click)=\"removeFromList()\" *ngIf=\"allowRemove\">\n <kms-icon icon=\"trash\" [size]=\"IconSizePx.TINY\" iconClass=\"color-black\"></kms-icon> \n {{ 'file-input.remove' }}\n </div>\n </div>\n </div>\n </div>\n </div>\n <div *ngIf=\"!previewImage\">\n <div class=\"\">{{form.value.Filename}}</div>\n </div>\n\n <button (click)=\"selectImageOverlay()\" class=\"button-primary-font-color\" mat-stroked-button>\n <span>{{ label }}</span>\n </button>\n <input\n type=\"file\"\n [accept]=\"acceptedFileMimetypes\"\n style=\"display: none\"\n #fileInput\n (click)=\"clearInputValue($event)\"\n (change)=\"selectImage($event)\"\n />\n\n <input type=\"hidden\" [formControl]=\"form.controls['ImageIdent']\" />\n <input type=\"hidden\" [formControl]=\"form.controls['ImageLink']\" />\n <input type=\"hidden\" [formControl]=\"form.controls['Filename']\" />\n <input type=\"hidden\" [formControl]=\"form.controls['ImageAsDataURL']\" />\n <input type=\"hidden\" [formControl]=\"form.controls['Text']\" />\n\n</form>", styles: [""], dependencies: [{ kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i3$1.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button] ", inputs: ["disabled", "disableRipple", "color"], exportAs: ["matButton"] }, { kind: "directive", type: i1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "directive", type: i1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: SizeDirective, selector: "[size]", inputs: ["size"] }, { kind: "component", type: IconComponent, selector: "kms-icon", inputs: ["icon", "iconClass", "iconStyle", "iconSize", "size", "dontUseSprite"] }, { kind: "pipe", type: i4$1.TranslatePipe, name: "translate" }] }); }
|
|
1314
1312
|
}
|
|
1315
1313
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FileInputComponent, decorators: [{
|
|
1316
1314
|
type: Component,
|
|
@@ -1478,7 +1476,7 @@ class KMSAccordionItemComponent {
|
|
|
1478
1476
|
}
|
|
1479
1477
|
ngOnInit() { }
|
|
1480
1478
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: KMSAccordionItemComponent, deps: [{ token: i1$1.DomSanitizer }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1481
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: KMSAccordionItemComponent, selector: "kms-accordion-item", inputs: { showAsCard: "showAsCard", isSmall: "isSmall", expanded: "expanded", itemTitle: "itemTitle" }, ngImport: i0, template: "<mat-expansion-panel\n class=\"accordion-item\"\n [ngClass]=\"{showAsCard: showAsCard, showFlat: !showAsCard, isSmall: isSmall}\"\n (opened)=\"panelOpenState = true\"\n (closed)=\"panelOpenState = false\"\n [expanded] = \"expanded\"\n hideToggle=\"true\">\n <mat-expansion-panel-header class=\"accordion-item-header\">\n <mat-panel-title class=\"mat-subheading-2 accordion-item-title\">\n <div [innerHtml]=\"itemTitleTrustHtml\"></div>\n <ng-content select=\"[itemTitleElement]\"></ng-content>\n </mat-panel-title>\n <div class=\"accordion-item-header-icon-wrapper\">\n <kms-icon *ngIf=\"!panelOpenState\" icon=\"ic_plus\" iconClass=\"color-red\" class=\"accordion-item-header-icon-wrapper-desktop\"></kms-icon>\n <kms-icon *ngIf=\"panelOpenState\" icon=\"ic_minus\" iconClass=\"color-red\" class=\"accordion-item-header-icon-wrapper-desktop\"></kms-icon>\n\n <kms-icon *ngIf=\"!panelOpenState\" icon=\"chevron-down\" iconClass=\"color-red\" class=\"accordion-item-header-icon-wrapper-mobile\"></kms-icon>\n <kms-icon *ngIf=\"panelOpenState\" icon=\"chevron-top\" iconClass=\"color-red\" class=\"accordion-item-header-icon-wrapper-mobile\"></kms-icon>\n </div>\n </mat-expansion-panel-header>\n <ng-content></ng-content>\n</mat-expansion-panel>\n", styles: [""], dependencies: [{ kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i3$
|
|
1479
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: KMSAccordionItemComponent, selector: "kms-accordion-item", inputs: { showAsCard: "showAsCard", isSmall: "isSmall", expanded: "expanded", itemTitle: "itemTitle" }, ngImport: i0, template: "<mat-expansion-panel\n class=\"accordion-item\"\n [ngClass]=\"{showAsCard: showAsCard, showFlat: !showAsCard, isSmall: isSmall}\"\n (opened)=\"panelOpenState = true\"\n (closed)=\"panelOpenState = false\"\n [expanded] = \"expanded\"\n hideToggle=\"true\">\n <mat-expansion-panel-header class=\"accordion-item-header\">\n <mat-panel-title class=\"mat-subheading-2 accordion-item-title\">\n <div [innerHtml]=\"itemTitleTrustHtml\"></div>\n <ng-content select=\"[itemTitleElement]\"></ng-content>\n </mat-panel-title>\n <div class=\"accordion-item-header-icon-wrapper\">\n <kms-icon *ngIf=\"!panelOpenState\" icon=\"ic_plus\" iconClass=\"color-red\" class=\"accordion-item-header-icon-wrapper-desktop\"></kms-icon>\n <kms-icon *ngIf=\"panelOpenState\" icon=\"ic_minus\" iconClass=\"color-red\" class=\"accordion-item-header-icon-wrapper-desktop\"></kms-icon>\n\n <kms-icon *ngIf=\"!panelOpenState\" icon=\"chevron-down\" iconClass=\"color-red\" class=\"accordion-item-header-icon-wrapper-mobile\"></kms-icon>\n <kms-icon *ngIf=\"panelOpenState\" icon=\"chevron-top\" iconClass=\"color-red\" class=\"accordion-item-header-icon-wrapper-mobile\"></kms-icon>\n </div>\n </mat-expansion-panel-header>\n <ng-content></ng-content>\n</mat-expansion-panel>\n", styles: [""], dependencies: [{ kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i3$2.MatExpansionPanel, selector: "mat-expansion-panel", inputs: ["disabled", "expanded", "hideToggle", "togglePosition"], outputs: ["opened", "closed", "expandedChange", "afterExpand", "afterCollapse"], exportAs: ["matExpansionPanel"] }, { kind: "component", type: i3$2.MatExpansionPanelHeader, selector: "mat-expansion-panel-header", inputs: ["tabIndex", "expandedHeight", "collapsedHeight"] }, { kind: "directive", type: i3$2.MatExpansionPanelTitle, selector: "mat-panel-title" }, { kind: "component", type: IconComponent, selector: "kms-icon", inputs: ["icon", "iconClass", "iconStyle", "iconSize", "size", "dontUseSprite"] }] }); }
|
|
1482
1480
|
}
|
|
1483
1481
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: KMSAccordionItemComponent, decorators: [{
|
|
1484
1482
|
type: Component,
|
|
@@ -1501,7 +1499,7 @@ class LoaderComponent {
|
|
|
1501
1499
|
// eslint-disable-next-line @typescript-eslint/no-empty-function
|
|
1502
1500
|
ngOnInit() { }
|
|
1503
1501
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: LoaderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1504
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: LoaderComponent, selector: "kms-loader", inputs: { loading: "loading" }, ngImport: i0, template: "<div class=\"loading-spinner-shade\" *ngIf=\"loading\">\n <mat-spinner class=\"spinnerMargin\" color=\"accent\" diameter=\"44\"></mat-spinner>\n</div>\n", styles: [""], dependencies: [{ kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i2$
|
|
1502
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: LoaderComponent, selector: "kms-loader", inputs: { loading: "loading" }, ngImport: i0, template: "<div class=\"loading-spinner-shade\" *ngIf=\"loading\">\n <mat-spinner class=\"spinnerMargin\" color=\"accent\" diameter=\"44\"></mat-spinner>\n</div>\n", styles: [""], dependencies: [{ kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i2$3.MatProgressSpinner, selector: "mat-progress-spinner, mat-spinner", inputs: ["color", "mode", "value", "diameter", "strokeWidth"], exportAs: ["matProgressSpinner"] }] }); }
|
|
1505
1503
|
}
|
|
1506
1504
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: LoaderComponent, decorators: [{
|
|
1507
1505
|
type: Component,
|
|
@@ -1963,7 +1961,7 @@ class MapComponent {
|
|
|
1963
1961
|
}
|
|
1964
1962
|
}
|
|
1965
1963
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MapComponent, deps: [{ token: ViewportService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1966
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: MapComponent, selector: "kms-map", inputs: { data: "data" }, ngImport: i0, template: "<div *ngIf=\"geoDataFoundForAddress\">\n <google-map\n height=\"415px\"\n [width]=\"width\"\n [zoom]=\"zoom\"\n [center]=\"center\"\n [options]=\"options\"\n >\n <map-marker\n *ngFor=\"let marker of markers\"\n [position]=\"marker.position\"\n [label]=\"marker.label\"\n [title]=\"marker.title\"\n [options]=\"marker.options\"\n >\n </map-marker>\n </google-map>\n</div>", styles: [""], dependencies: [{ kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i3$
|
|
1964
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: MapComponent, selector: "kms-map", inputs: { data: "data" }, ngImport: i0, template: "<div *ngIf=\"geoDataFoundForAddress\">\n <google-map\n height=\"415px\"\n [width]=\"width\"\n [zoom]=\"zoom\"\n [center]=\"center\"\n [options]=\"options\"\n >\n <map-marker\n *ngFor=\"let marker of markers\"\n [position]=\"marker.position\"\n [label]=\"marker.label\"\n [title]=\"marker.title\"\n [options]=\"marker.options\"\n >\n </map-marker>\n </google-map>\n</div>", styles: [""], dependencies: [{ kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i3$3.GoogleMap, selector: "google-map", inputs: ["height", "width", "mapTypeId", "center", "zoom", "options"], outputs: ["mapInitialized", "authFailure", "boundsChanged", "centerChanged", "mapClick", "mapDblclick", "mapDrag", "mapDragend", "mapDragstart", "headingChanged", "idle", "maptypeidChanged", "mapMousemove", "mapMouseout", "mapMouseover", "projectionChanged", "mapRightclick", "tilesloaded", "tiltChanged", "zoomChanged"], exportAs: ["googleMap"] }, { kind: "directive", type: i3$3.MapMarker, selector: "map-marker", inputs: ["title", "position", "label", "clickable", "options", "icon", "visible"], outputs: ["animationChanged", "mapClick", "clickableChanged", "cursorChanged", "mapDblclick", "mapDrag", "mapDragend", "draggableChanged", "mapDragstart", "flatChanged", "iconChanged", "mapMousedown", "mapMouseout", "mapMouseover", "mapMouseup", "positionChanged", "mapRightclick", "shapeChanged", "titleChanged", "visibleChanged", "zindexChanged"], exportAs: ["mapMarker"] }] }); }
|
|
1967
1965
|
}
|
|
1968
1966
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MapComponent, decorators: [{
|
|
1969
1967
|
type: Component,
|
|
@@ -2071,7 +2069,7 @@ class SalutationDropdownComponent extends FormControlParentComponent {
|
|
|
2071
2069
|
useExisting: forwardRef(() => SalutationDropdownComponent),
|
|
2072
2070
|
multi: true,
|
|
2073
2071
|
},
|
|
2074
|
-
], usesInheritance: true, ngImport: i0, template: "<form [formGroup]=\"form\" class=\"row\">\n <mat-form-field class=\"col\">\n <mat-select disableOptionCentering [formControl]=\"form.controls['salut']\" [placeholder]=\"placeholder\" [value]=\"value\" #child>\n <mat-option [value]=\"SalutationEnum.NOT_SPECIFIED\">{{ 'general.salutation.' + Object.keys(SalutationEnum)[0]?.toLowerCase() | translate }}</mat-option>\n <mat-option [value]=\"SalutationEnum.MALE\">{{ 'general.salutation.' + Object.keys(SalutationEnum)[1]?.toLowerCase() | translate }}</mat-option>\n <mat-option [value]=\"SalutationEnum.FEMALE\">{{ 'general.salutation.' + Object.keys(SalutationEnum)[2]?.toLowerCase() | translate }}</mat-option>\n </mat-select>\n </mat-form-field>\n</form>", dependencies: [{ kind: "directive", type: i1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "directive", type: i1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "component", type: i3.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "component", type: i3$
|
|
2072
|
+
], usesInheritance: true, ngImport: i0, template: "<form [formGroup]=\"form\" class=\"row\">\n <mat-form-field class=\"col\">\n <mat-select disableOptionCentering [formControl]=\"form.controls['salut']\" [placeholder]=\"placeholder\" [value]=\"value\" #child>\n <mat-option [value]=\"SalutationEnum.NOT_SPECIFIED\">{{ 'general.salutation.' + Object.keys(SalutationEnum)[0]?.toLowerCase() | translate }}</mat-option>\n <mat-option [value]=\"SalutationEnum.MALE\">{{ 'general.salutation.' + Object.keys(SalutationEnum)[1]?.toLowerCase() | translate }}</mat-option>\n <mat-option [value]=\"SalutationEnum.FEMALE\">{{ 'general.salutation.' + Object.keys(SalutationEnum)[2]?.toLowerCase() | translate }}</mat-option>\n </mat-select>\n </mat-form-field>\n</form>", dependencies: [{ kind: "directive", type: i1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "directive", type: i1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "component", type: i3.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "component", type: i3$4.MatSelect, selector: "mat-select", inputs: ["disabled", "disableRipple", "tabIndex", "panelWidth", "hideSingleSelectionIndicator"], exportAs: ["matSelect"] }, { kind: "component", type: i4$2.MatOption, selector: "mat-option", exportAs: ["matOption"] }, { kind: "pipe", type: i4$1.TranslatePipe, name: "translate" }] }); }
|
|
2075
2073
|
}
|
|
2076
2074
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SalutationDropdownComponent, decorators: [{
|
|
2077
2075
|
type: Component,
|
|
@@ -2286,57 +2284,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2286
2284
|
args: ['window:scroll', []]
|
|
2287
2285
|
}] } });
|
|
2288
2286
|
|
|
2289
|
-
|
|
2290
|
-
|
|
2291
|
-
|
|
2292
|
-
|
|
2293
|
-
|
|
2294
|
-
* Attached File DTO
|
|
2295
|
-
*/
|
|
2296
|
-
class AttachedFileDTO {
|
|
2297
|
-
}
|
|
2298
|
-
|
|
2299
|
-
/**
|
|
2300
|
-
* @copyright KMS GmbH
|
|
2301
|
-
*/
|
|
2302
|
-
var IconSize;
|
|
2303
|
-
(function (IconSize) {
|
|
2304
|
-
IconSize["FULLSIZE"] = "size-full";
|
|
2305
|
-
IconSize["TINY"] = "size-16";
|
|
2306
|
-
IconSize["SMALLER"] = "size-20";
|
|
2307
|
-
IconSize["SMALL"] = "size-32";
|
|
2308
|
-
IconSize["MEDIUM"] = "size-64";
|
|
2309
|
-
IconSize["LARGE"] = "size-128";
|
|
2310
|
-
IconSize["XL"] = "size-256";
|
|
2311
|
-
IconSize["XXL"] = "size-512";
|
|
2312
|
-
IconSize["XXXL"] = "size-1024";
|
|
2313
|
-
IconSize["NONE"] = "NONE";
|
|
2314
|
-
})(IconSize || (IconSize = {}));
|
|
2315
|
-
|
|
2316
|
-
var ButtonResponseType;
|
|
2317
|
-
(function (ButtonResponseType) {
|
|
2318
|
-
ButtonResponseType["primary"] = "primary";
|
|
2319
|
-
ButtonResponseType["secondary"] = "secondary";
|
|
2320
|
-
})(ButtonResponseType || (ButtonResponseType = {}));
|
|
2287
|
+
var ButtonDialogType;
|
|
2288
|
+
(function (ButtonDialogType) {
|
|
2289
|
+
ButtonDialogType["primary"] = "primary";
|
|
2290
|
+
ButtonDialogType["secondary"] = "secondary";
|
|
2291
|
+
})(ButtonDialogType || (ButtonDialogType = {}));
|
|
2321
2292
|
|
|
2322
2293
|
/**
|
|
2323
2294
|
* @copyright KMS GmbH
|
|
2324
2295
|
*/
|
|
2325
2296
|
/**
|
|
2326
|
-
* A
|
|
2297
|
+
* A confirmation dialog component
|
|
2327
2298
|
*/
|
|
2328
|
-
class
|
|
2299
|
+
class ConfirmationDialogComponent {
|
|
2329
2300
|
constructor(dialogRef, zone, data) {
|
|
2330
2301
|
this.dialogRef = dialogRef;
|
|
2331
2302
|
this.zone = zone;
|
|
2332
2303
|
this.data = data;
|
|
2333
|
-
this.
|
|
2334
|
-
|
|
2335
|
-
|
|
2336
|
-
}
|
|
2337
|
-
else {
|
|
2338
|
-
this.buttons = { primary: 'Yes', secondary: 'No' };
|
|
2339
|
-
}
|
|
2304
|
+
this.ButtonDialogType = ButtonDialogType;
|
|
2305
|
+
data.buttons ?? { primary: 'Yes', secondary: 'No' };
|
|
2306
|
+
data.pannelClass ||= 'confirmation-dialog';
|
|
2340
2307
|
}
|
|
2341
2308
|
/**
|
|
2342
2309
|
* Action called when clicked
|
|
@@ -2355,68 +2322,17 @@ class GenericDialogComponent {
|
|
|
2355
2322
|
});
|
|
2356
2323
|
});
|
|
2357
2324
|
}
|
|
2358
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type:
|
|
2359
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type:
|
|
2325
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ConfirmationDialogComponent, deps: [{ token: i1$2.MatDialogRef }, { token: i0.NgZone }, { token: MAT_DIALOG_DATA }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2326
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: ConfirmationDialogComponent, selector: "kms-confirmation-dialog", ngImport: i0, template: "<div class=\"dialog-container\">\n <div class=\"dialog-header\">\n <h4>{{ data.title }}</h4>\n </div>\n <div class=\"dialog-content\">\n {{ data.message }}\n </div>\n <div class=\"dialog-footer\">\n <button\n mat-flat-button\n color=\"accent\"\n (click)=\"onClickAction(ButtonDialogType.secondary)\"\n >\n {{ data.buttons.secondary }}\n </button>\n <button\n mat-flat-button\n color=\"primary\"\n (click)=\"onClickAction(ButtonDialogType.primary)\"\n >\n {{ data.buttons.primary }}\n </button>\n </div>\n</div>\n", styles: [""], dependencies: [{ kind: "component", type: i3$1.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button] ", inputs: ["disabled", "disableRipple", "color"], exportAs: ["matButton"] }] }); }
|
|
2360
2327
|
}
|
|
2361
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type:
|
|
2328
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ConfirmationDialogComponent, decorators: [{
|
|
2362
2329
|
type: Component,
|
|
2363
|
-
args: [{ selector: 'kms-
|
|
2330
|
+
args: [{ selector: 'kms-confirmation-dialog', template: "<div class=\"dialog-container\">\n <div class=\"dialog-header\">\n <h4>{{ data.title }}</h4>\n </div>\n <div class=\"dialog-content\">\n {{ data.message }}\n </div>\n <div class=\"dialog-footer\">\n <button\n mat-flat-button\n color=\"accent\"\n (click)=\"onClickAction(ButtonDialogType.secondary)\"\n >\n {{ data.buttons.secondary }}\n </button>\n <button\n mat-flat-button\n color=\"primary\"\n (click)=\"onClickAction(ButtonDialogType.primary)\"\n >\n {{ data.buttons.primary }}\n </button>\n </div>\n</div>\n" }]
|
|
2364
2331
|
}], ctorParameters: function () { return [{ type: i1$2.MatDialogRef }, { type: i0.NgZone }, { type: undefined, decorators: [{
|
|
2365
2332
|
type: Inject,
|
|
2366
2333
|
args: [MAT_DIALOG_DATA]
|
|
2367
2334
|
}] }]; } });
|
|
2368
2335
|
|
|
2369
|
-
class ButtonWithConfirmDialogComponent {
|
|
2370
|
-
// eslint-disable-next-line @typescript-eslint/no-empty-function
|
|
2371
|
-
constructor(dialog) {
|
|
2372
|
-
this.dialog = dialog;
|
|
2373
|
-
// Outputs when dialogue was closed. Returns true, if yes was clicked, false otherwise
|
|
2374
|
-
this.onConfirmClosed = new EventEmitter();
|
|
2375
|
-
this.subs = new SubSink();
|
|
2376
|
-
}
|
|
2377
|
-
// eslint-disable-next-line @typescript-eslint/no-empty-function
|
|
2378
|
-
ngOnInit() { }
|
|
2379
|
-
start() {
|
|
2380
|
-
const data = {
|
|
2381
|
-
title: this.confirmTitle,
|
|
2382
|
-
buttons: {
|
|
2383
|
-
primary: this.confirmTextYes,
|
|
2384
|
-
secondary: this.confirmTextNo,
|
|
2385
|
-
}
|
|
2386
|
-
};
|
|
2387
|
-
const dialogRef = this.dialog.open(GenericDialogComponent, {
|
|
2388
|
-
data: data,
|
|
2389
|
-
});
|
|
2390
|
-
this.subs.sink = dialogRef.afterClosed().subscribe(result => {
|
|
2391
|
-
if (result === ButtonResponseType.primary) {
|
|
2392
|
-
this.onConfirmClosed.emit(true);
|
|
2393
|
-
}
|
|
2394
|
-
else {
|
|
2395
|
-
this.onConfirmClosed.emit(false);
|
|
2396
|
-
}
|
|
2397
|
-
dialogRef.close();
|
|
2398
|
-
});
|
|
2399
|
-
}
|
|
2400
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ButtonWithConfirmDialogComponent, deps: [{ token: i1$3.MatLegacyDialog }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2401
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: ButtonWithConfirmDialogComponent, selector: "kms-button-with-confirm-dialog", inputs: { disabled: "disabled", buttonText: "buttonText", confirmTitle: "confirmTitle", confirmTextYes: "confirmTextYes", confirmTextNo: "confirmTextNo" }, outputs: { onConfirmClosed: "onConfirmClosed" }, ngImport: i0, template: "<button\n type=\"button\"\n (click)=\"start()\"\n mat-stroked-button\n [disabled]=\"disabled\"\n>\n {{ buttonText }}\n</button>\n", styles: [""], dependencies: [{ kind: "component", type: i2$3.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button] ", inputs: ["disabled", "disableRipple", "color"], exportAs: ["matButton"] }] }); }
|
|
2402
|
-
}
|
|
2403
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ButtonWithConfirmDialogComponent, decorators: [{
|
|
2404
|
-
type: Component,
|
|
2405
|
-
args: [{ selector: 'kms-button-with-confirm-dialog', template: "<button\n type=\"button\"\n (click)=\"start()\"\n mat-stroked-button\n [disabled]=\"disabled\"\n>\n {{ buttonText }}\n</button>\n" }]
|
|
2406
|
-
}], ctorParameters: function () { return [{ type: i1$3.MatLegacyDialog }]; }, propDecorators: { disabled: [{
|
|
2407
|
-
type: Input
|
|
2408
|
-
}], buttonText: [{
|
|
2409
|
-
type: Input
|
|
2410
|
-
}], confirmTitle: [{
|
|
2411
|
-
type: Input
|
|
2412
|
-
}], confirmTextYes: [{
|
|
2413
|
-
type: Input
|
|
2414
|
-
}], confirmTextNo: [{
|
|
2415
|
-
type: Input
|
|
2416
|
-
}], onConfirmClosed: [{
|
|
2417
|
-
type: Output
|
|
2418
|
-
}] } });
|
|
2419
|
-
|
|
2420
2336
|
/**
|
|
2421
2337
|
* Dropdown from data component {@link https://leaseplan-dev.rentoffice.de/styleguide#ui-elements}
|
|
2422
2338
|
*/
|
|
@@ -2530,7 +2446,7 @@ class DropdownFromDataComponent extends FormControlParentComponent {
|
|
|
2530
2446
|
useExisting: forwardRef(() => DropdownFromDataComponent),
|
|
2531
2447
|
multi: true,
|
|
2532
2448
|
},
|
|
2533
|
-
], usesInheritance: true, usesOnChanges: true, ngImport: i0, template: "<form [formGroup]=\"form\">\n <mat-form-field\n [attr.required]=\"required\"\n [floatLabel]=\"placeholder ? 'always' : 'auto'\"\n >\n <mat-label>{{ label }}</mat-label>\n <mat-select\n placeholder=\"{{ placeholder }}\"\n disableOptionCentering\n [(value)]=\"control?.value ? control.value : value\"\n (selectionChange)=\"valueChanged($event?.value)\"\n #child\n [disabled]=\"disabled\"\n [multiple]=\"multiple\"\n >\n <mat-option *ngFor=\"let key of keys; let i = index\" [value]=\"values[i]\">\n <span *ngIf=\"(hasNullOption && i != 0) || !hasNullOption\">{{\n setDisplayKey(key)\n }}</span>\n </mat-option>\n </mat-select>\n </mat-form-field>\n</form>\n", dependencies: [{ kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "component", type: i3.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i3.MatLabel, selector: "mat-label" }, { kind: "component", type: i3$
|
|
2449
|
+
], usesInheritance: true, usesOnChanges: true, ngImport: i0, template: "<form [formGroup]=\"form\">\n <mat-form-field\n [attr.required]=\"required\"\n [floatLabel]=\"placeholder ? 'always' : 'auto'\"\n >\n <mat-label>{{ label }}</mat-label>\n <mat-select\n placeholder=\"{{ placeholder }}\"\n disableOptionCentering\n [(value)]=\"control?.value ? control.value : value\"\n (selectionChange)=\"valueChanged($event?.value)\"\n #child\n [disabled]=\"disabled\"\n [multiple]=\"multiple\"\n >\n <mat-option *ngFor=\"let key of keys; let i = index\" [value]=\"values[i]\">\n <span *ngIf=\"(hasNullOption && i != 0) || !hasNullOption\">{{\n setDisplayKey(key)\n }}</span>\n </mat-option>\n </mat-select>\n </mat-form-field>\n</form>\n", dependencies: [{ kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "component", type: i3.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i3.MatLabel, selector: "mat-label" }, { kind: "component", type: i3$4.MatSelect, selector: "mat-select", inputs: ["disabled", "disableRipple", "tabIndex", "panelWidth", "hideSingleSelectionIndicator"], exportAs: ["matSelect"] }, { kind: "component", type: i4$2.MatOption, selector: "mat-option", exportAs: ["matOption"] }] }); }
|
|
2534
2450
|
}
|
|
2535
2451
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DropdownFromDataComponent, decorators: [{
|
|
2536
2452
|
type: Component,
|
|
@@ -2597,6 +2513,33 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2597
2513
|
type: Output
|
|
2598
2514
|
}] } });
|
|
2599
2515
|
|
|
2516
|
+
/**
|
|
2517
|
+
* @copyright KMS GmbH
|
|
2518
|
+
*/
|
|
2519
|
+
|
|
2520
|
+
/**
|
|
2521
|
+
* Attached File DTO
|
|
2522
|
+
*/
|
|
2523
|
+
class AttachedFileDTO {
|
|
2524
|
+
}
|
|
2525
|
+
|
|
2526
|
+
/**
|
|
2527
|
+
* @copyright KMS GmbH
|
|
2528
|
+
*/
|
|
2529
|
+
var IconSize;
|
|
2530
|
+
(function (IconSize) {
|
|
2531
|
+
IconSize["FULLSIZE"] = "size-full";
|
|
2532
|
+
IconSize["TINY"] = "size-16";
|
|
2533
|
+
IconSize["SMALLER"] = "size-20";
|
|
2534
|
+
IconSize["SMALL"] = "size-32";
|
|
2535
|
+
IconSize["MEDIUM"] = "size-64";
|
|
2536
|
+
IconSize["LARGE"] = "size-128";
|
|
2537
|
+
IconSize["XL"] = "size-256";
|
|
2538
|
+
IconSize["XXL"] = "size-512";
|
|
2539
|
+
IconSize["XXXL"] = "size-1024";
|
|
2540
|
+
IconSize["NONE"] = "NONE";
|
|
2541
|
+
})(IconSize || (IconSize = {}));
|
|
2542
|
+
|
|
2600
2543
|
class SalutationRadiogroupComponent extends FormControlParentComponent {
|
|
2601
2544
|
constructor(formBuilder, renderer) {
|
|
2602
2545
|
super(formBuilder, renderer);
|
|
@@ -2654,7 +2597,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2654
2597
|
class KmsUiPresentationalModule {
|
|
2655
2598
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: KmsUiPresentationalModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
2656
2599
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: KmsUiPresentationalModule, declarations: [BackToTopComponent,
|
|
2657
|
-
ButtonWithConfirmDialogComponent,
|
|
2658
2600
|
CheckboxComponent,
|
|
2659
2601
|
ColorInputComponent,
|
|
2660
2602
|
DropdownFromDataComponent,
|
|
@@ -2662,7 +2604,7 @@ class KmsUiPresentationalModule {
|
|
|
2662
2604
|
EnumRadiogroupComponent,
|
|
2663
2605
|
FileInputComponent,
|
|
2664
2606
|
FlyoutComponent,
|
|
2665
|
-
|
|
2607
|
+
ConfirmationDialogComponent,
|
|
2666
2608
|
IconComponent,
|
|
2667
2609
|
ImageSliderComponent,
|
|
2668
2610
|
KMSAccordionItemComponent,
|
|
@@ -2693,7 +2635,6 @@ class KmsUiPresentationalModule {
|
|
|
2693
2635
|
MatProgressSpinnerModule,
|
|
2694
2636
|
DirectivesModule,
|
|
2695
2637
|
TranslateModule], exports: [BackToTopComponent,
|
|
2696
|
-
ButtonWithConfirmDialogComponent,
|
|
2697
2638
|
CheckboxComponent,
|
|
2698
2639
|
ColorInputComponent,
|
|
2699
2640
|
DropdownFromDataComponent,
|
|
@@ -2701,7 +2642,7 @@ class KmsUiPresentationalModule {
|
|
|
2701
2642
|
EnumRadiogroupComponent,
|
|
2702
2643
|
FileInputComponent,
|
|
2703
2644
|
FlyoutComponent,
|
|
2704
|
-
|
|
2645
|
+
ConfirmationDialogComponent,
|
|
2705
2646
|
IconComponent,
|
|
2706
2647
|
ImageSliderComponent,
|
|
2707
2648
|
KMSAccordionItemComponent,
|
|
@@ -2739,7 +2680,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2739
2680
|
args: [{
|
|
2740
2681
|
declarations: [
|
|
2741
2682
|
BackToTopComponent,
|
|
2742
|
-
ButtonWithConfirmDialogComponent,
|
|
2743
2683
|
CheckboxComponent,
|
|
2744
2684
|
ColorInputComponent,
|
|
2745
2685
|
DropdownFromDataComponent,
|
|
@@ -2747,7 +2687,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2747
2687
|
EnumRadiogroupComponent,
|
|
2748
2688
|
FileInputComponent,
|
|
2749
2689
|
FlyoutComponent,
|
|
2750
|
-
|
|
2690
|
+
ConfirmationDialogComponent,
|
|
2751
2691
|
IconComponent,
|
|
2752
2692
|
ImageSliderComponent,
|
|
2753
2693
|
KMSAccordionItemComponent,
|
|
@@ -2784,7 +2724,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2784
2724
|
],
|
|
2785
2725
|
exports: [
|
|
2786
2726
|
BackToTopComponent,
|
|
2787
|
-
ButtonWithConfirmDialogComponent,
|
|
2788
2727
|
CheckboxComponent,
|
|
2789
2728
|
ColorInputComponent,
|
|
2790
2729
|
DropdownFromDataComponent,
|
|
@@ -2792,7 +2731,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2792
2731
|
EnumRadiogroupComponent,
|
|
2793
2732
|
FileInputComponent,
|
|
2794
2733
|
FlyoutComponent,
|
|
2795
|
-
|
|
2734
|
+
ConfirmationDialogComponent,
|
|
2796
2735
|
IconComponent,
|
|
2797
2736
|
ImageSliderComponent,
|
|
2798
2737
|
KMSAccordionItemComponent,
|
|
@@ -2832,5 +2771,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2832
2771
|
* Generated bundle index. Do not edit.
|
|
2833
2772
|
*/
|
|
2834
2773
|
|
|
2835
|
-
export { BackToTopComponent, Breakpoint,
|
|
2774
|
+
export { BackToTopComponent, Breakpoint, CheckboxComponent, ColorInputComponent, ConfirmationDialogComponent, CustomPipesModule, DirectivesModule, DropdownFromDataComponent, EnumRadiogroupComponent, FileInputComponent, FlyoutComponent, FormParentComponent, GetMaxHeightDirective, IconComponent, IconSize, ImageSliderComponent, IntegerCurrency, KMSAccordionItemComponent, KmsUiPresentationalComponent, KmsUiPresentationalModule, KmsUiPresentationalService, LoaderComponent, MapComponent, Marker, MarkerLabel, MarkerOptions, RadioButtonComponent, SafeHtmlPipe, SafeResourceUrlPipe, SafeUrlPipe, SalutationDropdownComponent, SalutationEnum, SalutationRadiogroupComponent, SimpleBreakpoint, SizeDirective, SwipeDirective, TimeInputComponent, TooltipComponent, TooltipDirective, TooltipIconComponent, TrimPipe, TypeofPipe, ViewportService, WindowDimensions, YesNoRadiogroupComponent };
|
|
2836
2775
|
//# sourceMappingURL=kms-ngx-ui-presentational.mjs.map
|