@kms-ngx-ui/presentational 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +24 -0
- package/bundles/kms-ngx-ui-presentational.umd.js +2441 -0
- package/bundles/kms-ngx-ui-presentational.umd.js.map +1 -0
- package/bundles/kms-ngx-ui-presentational.umd.min.js +38 -0
- package/bundles/kms-ngx-ui-presentational.umd.min.js.map +1 -0
- package/esm2015/kms-ngx-ui-presentational.js +37 -0
- package/esm2015/lib/kms-ngx-ui-presentational.component.js +18 -0
- package/esm2015/lib/kms-ngx-ui-presentational.module.js +98 -0
- package/esm2015/lib/kms-ngx-ui-presentational.service.js +13 -0
- package/esm2015/lib/models/address.model.js +6 -0
- package/esm2015/lib/models/iconSize.enum.js +17 -0
- package/esm2015/lib/models/index.js +5 -0
- package/esm2015/lib/models/is-value.function.js +17 -0
- package/esm2015/lib/models/salutation.enum.js +8 -0
- package/esm2015/lib/models/types/attached-file-dto.model.js +6 -0
- package/esm2015/lib/models/types/nullable.type.js +5 -0
- package/esm2015/lib/parent-components/actions.component.js +48 -0
- package/esm2015/lib/parent-components/form-control.component.js +73 -0
- package/esm2015/lib/parent-components/form.component.js +77 -0
- package/esm2015/lib/pipes/custom-pipes.module.js +45 -0
- package/esm2015/lib/pipes/decode-uri.pipe.js +15 -0
- package/esm2015/lib/pipes/encode-uri.pipe.js +15 -0
- package/esm2015/lib/pipes/integer-currency.pipe.js +29 -0
- package/esm2015/lib/pipes/safe-html.pipe.js +22 -0
- package/esm2015/lib/pipes/safe-style.pipe.js +22 -0
- package/esm2015/lib/pipes/safe-url.pipe.js +22 -0
- package/esm2015/lib/pipes/to-number.pipe.js +19 -0
- package/esm2015/lib/pipes/trim.pipe.js +16 -0
- package/esm2015/lib/pipes/typeof.pipe.js +12 -0
- package/esm2015/lib/services/viewport.service.js +213 -0
- package/esm2015/lib/ui/back-to-top/back-to-top.component.js +46 -0
- package/esm2015/lib/ui/button-with-confirm-dialog/button-response-types.enum.js +6 -0
- package/esm2015/lib/ui/button-with-confirm-dialog/button-with-confirm-dialog.component.js +56 -0
- package/esm2015/lib/ui/button-with-confirm-dialog/dialog-data.model.js +2 -0
- package/esm2015/lib/ui/checkbox/checkbox.component.js +63 -0
- package/esm2015/lib/ui/color-input/color-input.component.js +63 -0
- package/esm2015/lib/ui/enum-radiogroup/enum-radiogroup.component.js +46 -0
- package/esm2015/lib/ui/file-input/file-input.component.js +215 -0
- package/esm2015/lib/ui/flyout/flyout.component.js +84 -0
- package/esm2015/lib/ui/generic-dialog/generic-dialog.component.js +54 -0
- package/esm2015/lib/ui/icon/icon.component.js +47 -0
- package/esm2015/lib/ui/icon/iconSize.enum.js +17 -0
- package/esm2015/lib/ui/kms-accordion-item/kms-accordion-item.component.js +36 -0
- package/esm2015/lib/ui/loader/loader.component.js +21 -0
- package/esm2015/lib/ui/map/map.component.js +137 -0
- package/esm2015/lib/ui/radiobutton/radiobutton.component.js +66 -0
- package/esm2015/lib/ui/salutation-dropdown/salutation-dropdown.component.js +49 -0
- package/esm2015/lib/ui/salutation-radiogroup/salutation-radiogroup.component.js +44 -0
- package/esm2015/lib/ui/time-input/time-input.component.js +80 -0
- package/esm2015/lib/ui/tooltip/tooltip.component.js +17 -0
- package/esm2015/lib/ui/tooltip-icon/tooltip-icon.component.js +29 -0
- package/esm2015/lib/ui/yes-no-radiogroup/yes-no-radiogroup.component.js +74 -0
- package/esm2015/public-api.js +12 -0
- package/fesm2015/kms-ngx-ui-presentational.js +1962 -0
- package/fesm2015/kms-ngx-ui-presentational.js.map +1 -0
- package/kms-ngx-ui-presentational.d.ts +37 -0
- package/kms-ngx-ui-presentational.metadata.json +1 -0
- package/lib/kms-ngx-ui-presentational.component.d.ts +5 -0
- package/lib/kms-ngx-ui-presentational.module.d.ts +2 -0
- package/lib/kms-ngx-ui-presentational.service.d.ts +3 -0
- package/lib/models/address.model.d.ts +14 -0
- package/lib/models/iconSize.enum.d.ts +15 -0
- package/lib/models/index.d.ts +4 -0
- package/lib/models/is-value.function.d.ts +9 -0
- package/lib/models/salutation.enum.d.ts +5 -0
- package/lib/models/types/attached-file-dto.model.d.ts +11 -0
- package/lib/models/types/nullable.type.d.ts +4 -0
- package/lib/parent-components/actions.component.d.ts +28 -0
- package/lib/parent-components/form-control.component.d.ts +24 -0
- package/lib/parent-components/form.component.d.ts +31 -0
- package/lib/pipes/custom-pipes.module.d.ts +5 -0
- package/lib/pipes/decode-uri.pipe.d.ts +7 -0
- package/lib/pipes/encode-uri.pipe.d.ts +7 -0
- package/lib/pipes/integer-currency.pipe.d.ts +10 -0
- package/lib/pipes/safe-html.pipe.d.ts +10 -0
- package/lib/pipes/safe-style.pipe.d.ts +10 -0
- package/lib/pipes/safe-url.pipe.d.ts +10 -0
- package/lib/pipes/to-number.pipe.d.ts +7 -0
- package/lib/pipes/trim.pipe.d.ts +7 -0
- package/lib/pipes/typeof.pipe.d.ts +4 -0
- package/lib/services/viewport.service.d.ts +74 -0
- package/lib/ui/back-to-top/back-to-top.component.d.ts +10 -0
- package/lib/ui/button-with-confirm-dialog/button-response-types.enum.d.ts +4 -0
- package/lib/ui/button-with-confirm-dialog/button-with-confirm-dialog.component.d.ts +16 -0
- package/lib/ui/button-with-confirm-dialog/dialog-data.model.d.ts +9 -0
- package/lib/ui/checkbox/checkbox.component.d.ts +28 -0
- package/lib/ui/color-input/color-input.component.d.ts +15 -0
- package/lib/ui/enum-radiogroup/enum-radiogroup.component.d.ts +14 -0
- package/lib/ui/file-input/file-input.component.d.ts +86 -0
- package/lib/ui/flyout/flyout.component.d.ts +32 -0
- package/lib/ui/generic-dialog/generic-dialog.component.d.ts +23 -0
- package/lib/ui/icon/icon.component.d.ts +39 -0
- package/lib/ui/icon/iconSize.enum.d.ts +15 -0
- package/lib/ui/kms-accordion-item/kms-accordion-item.component.d.ts +18 -0
- package/lib/ui/loader/loader.component.d.ts +6 -0
- package/lib/ui/map/map.component.d.ts +70 -0
- package/lib/ui/radiobutton/radiobutton.component.d.ts +23 -0
- package/lib/ui/salutation-dropdown/salutation-dropdown.component.d.ts +14 -0
- package/lib/ui/salutation-radiogroup/salutation-radiogroup.component.d.ts +12 -0
- package/lib/ui/time-input/time-input.component.d.ts +19 -0
- package/lib/ui/tooltip/tooltip.component.d.ts +3 -0
- package/lib/ui/tooltip-icon/tooltip-icon.component.d.ts +10 -0
- package/lib/ui/yes-no-radiogroup/yes-no-radiogroup.component.d.ts +24 -0
- package/package.json +25 -0
- package/public-api.d.ts +6 -0
- package/src/lib/ui/back-to-top/back-to-top.component.scss +47 -0
- package/src/lib/ui/button-with-confirm-dialog/button-with-confirm-dialog.component.scss +0 -0
- package/src/lib/ui/checkbox/checkbox.component.scss +57 -0
- package/src/lib/ui/color-input/color-input.component.scss +38 -0
- package/src/lib/ui/file-input/file-input.component.scss +0 -0
- package/src/lib/ui/flyout/flyout.component.scss +34 -0
- package/src/lib/ui/generic-dialog/generic-dialog.component.scss +59 -0
- package/src/lib/ui/icon/icon.component.scss +149 -0
- package/src/lib/ui/kms-accordion-item/kms-accordion-item.component.scss +95 -0
- package/src/lib/ui/loader/loader.component.scss +0 -0
- package/src/lib/ui/map/map.component.scss +0 -0
- package/src/lib/ui/radiobutton/radiobutton.component.scss +30 -0
- package/src/lib/ui/time-input/time-input.component.scss +10 -0
- package/src/lib/ui/tooltip/tooltip.component.scss +27 -0
- package/src/lib/ui/tooltip-icon/tooltip-icon.component.scss +2 -0
- package/src/styles/mixins.scss +9 -0
- package/src/styles/styles.scss +30 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"kms-ngx-ui-presentational.js","sources":["../../../../projects/kms-ngx-ui-presentational/src/lib/kms-ngx-ui-presentational.service.ts","../../../../projects/kms-ngx-ui-presentational/src/lib/kms-ngx-ui-presentational.component.ts","../../../../projects/kms-ngx-ui-presentational/src/lib/parent-components/actions.component.ts","../../../../projects/kms-ngx-ui-presentational/src/lib/ui/checkbox/checkbox.component.ts","../../../../projects/kms-ngx-ui-presentational/src/lib/parent-components/form.component.ts","../../../../projects/kms-ngx-ui-presentational/src/lib/parent-components/form-control.component.ts","../../../../projects/kms-ngx-ui-presentational/src/lib/ui/color-input/color-input.component.ts","../../../../projects/kms-ngx-ui-presentational/src/lib/ui/radiobutton/radiobutton.component.ts","../../../../projects/kms-ngx-ui-presentational/src/lib/ui/time-input/time-input.component.ts","../../../../projects/kms-ngx-ui-presentational/src/lib/ui/yes-no-radiogroup/yes-no-radiogroup.component.ts","../../../../projects/kms-ngx-ui-presentational/src/lib/models/iconSize.enum.ts","../../../../projects/kms-ngx-ui-presentational/src/lib/models/is-value.function.ts","../../../../projects/kms-ngx-ui-presentational/src/lib/ui/file-input/file-input.component.ts","../../../../projects/kms-ngx-ui-presentational/src/lib/ui/loader/loader.component.ts","../../../../projects/kms-ngx-ui-presentational/src/lib/ui/flyout/flyout.component.ts","../../../../projects/kms-ngx-ui-presentational/src/lib/pipes/integer-currency.pipe.ts","../../../../projects/kms-ngx-ui-presentational/src/lib/pipes/decode-uri.pipe.ts","../../../../projects/kms-ngx-ui-presentational/src/lib/pipes/encode-uri.pipe.ts","../../../../projects/kms-ngx-ui-presentational/src/lib/pipes/safe-html.pipe.ts","../../../../projects/kms-ngx-ui-presentational/src/lib/pipes/safe-style.pipe.ts","../../../../projects/kms-ngx-ui-presentational/src/lib/pipes/safe-url.pipe.ts","../../../../projects/kms-ngx-ui-presentational/src/lib/pipes/typeof.pipe.ts","../../../../projects/kms-ngx-ui-presentational/src/lib/pipes/trim.pipe.ts","../../../../projects/kms-ngx-ui-presentational/src/lib/pipes/to-number.pipe.ts","../../../../projects/kms-ngx-ui-presentational/src/lib/pipes/custom-pipes.module.ts","../../../../projects/kms-ngx-ui-presentational/src/lib/ui/icon/iconSize.enum.ts","../../../../projects/kms-ngx-ui-presentational/src/lib/ui/icon/icon.component.ts","../../../../projects/kms-ngx-ui-presentational/src/lib/ui/enum-radiogroup/enum-radiogroup.component.ts","../../../../projects/kms-ngx-ui-presentational/src/lib/ui/kms-accordion-item/kms-accordion-item.component.ts","../../../../projects/kms-ngx-ui-presentational/src/lib/services/viewport.service.ts","../../../../projects/kms-ngx-ui-presentational/src/lib/ui/map/map.component.ts","../../../../projects/kms-ngx-ui-presentational/src/lib/models/salutation.enum.ts","../../../../projects/kms-ngx-ui-presentational/src/lib/ui/salutation-dropdown/salutation-dropdown.component.ts","../../../../projects/kms-ngx-ui-presentational/src/lib/ui/tooltip/tooltip.component.ts","../../../../projects/kms-ngx-ui-presentational/src/lib/models/types/nullable.type.ts","../../../../projects/kms-ngx-ui-presentational/src/lib/models/types/attached-file-dto.model.ts","../../../../projects/kms-ngx-ui-presentational/src/lib/ui/tooltip-icon/tooltip-icon.component.ts","../../../../projects/kms-ngx-ui-presentational/src/lib/ui/salutation-radiogroup/salutation-radiogroup.component.ts","../../../../projects/kms-ngx-ui-presentational/src/lib/ui/back-to-top/back-to-top.component.ts","../../../../projects/kms-ngx-ui-presentational/src/lib/ui/button-with-confirm-dialog/button-response-types.enum.ts","../../../../projects/kms-ngx-ui-presentational/src/lib/ui/generic-dialog/generic-dialog.component.ts","../../../../projects/kms-ngx-ui-presentational/src/lib/ui/button-with-confirm-dialog/button-with-confirm-dialog.component.ts","../../../../projects/kms-ngx-ui-presentational/src/lib/kms-ngx-ui-presentational.module.ts","../../../../projects/kms-ngx-ui-presentational/src/public-api.ts","../../../../projects/kms-ngx-ui-presentational/src/kms-ngx-ui-presentational.ts"],"sourcesContent":["import { Injectable } from '@angular/core';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class KmsUiPresentationalService {\n\n constructor() { }\n}\n","import { Component, OnInit } from '@angular/core';\n\n@Component({\n selector: 'lib-kms-ngx-ui-presentational',\n template: `\n <p>\n kms-ngx-ui-presentational works!\n </p>\n `,\n styles: [\n ]\n})\nexport class KmsUiPresentationalComponent implements OnInit {\n\n constructor() { }\n\n ngOnInit(): void {\n }\n\n}\n","/*!\n * @copyright FLYACTS GmbH 2019\n */\n\nimport { Component, EventEmitter, Input, Output } from '@angular/core';\n\n@Component({\n selector: 'kms-actions',\n template: '',\n})\nexport class ActionsParentComponent {\n /**\n * Defines the disabled property\n */\n @Input() disabled = false;\n\n /**\n * Set button as selected. F.e. in multiselect component\n */\n @Input() checked = false;\n\n /**\n * Displayed label.\n */\n @Input() label = '';\n\n /**\n * Link\n */\n @Input() link = '';\n\n /**\n * Internal value that will be send if a form is submitted.\n */\n @Input() initialValue = '';\n\n @Output() select = new EventEmitter();\n\n selectAction(id: string) {\n this.checked = !this.checked;\n this.select.emit(id);\n }\n}\n","/*!\n * @copyright FLYACTS GmbH 2019\n */\n\nimport { Component, EventEmitter, forwardRef, Input, Output } from '@angular/core';\nimport { ControlValueAccessor, NG_VALUE_ACCESSOR } from '@angular/forms';\nimport { NullAble } from '../../models';\n\nimport { ActionsParentComponent } from '../../parent-components/actions.component';\n\n\n@Component({\n selector: 'kms-checkbox',\n templateUrl: './checkbox.component.html',\n styleUrls: ['./checkbox.component.scss'],\n providers: [\n {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => CheckboxComponent),\n multi: true,\n },\n ],\n})\nexport class CheckboxComponent extends ActionsParentComponent implements ControlValueAccessor {\n\n\n /**\n * Additional description text that will be shown below the checkbox.\n */\n @Input() infoText: NullAble<string>;\n\n /**\n * Internal description name. All checkboxes with the same name belong to the same group.\n * User can select none, one or all checkboxes with the same name.\n */\n @Input() name = '';\n\n @Output() select = new EventEmitter();\n selectAction(id: string) {\n this.select.emit(id);\n this.checked = !this.checked;\n }\n\n constructor() {\n super();\n }\n\n // eslint-disable-next-line @typescript-eslint/no-empty-function\n onChange: any = () => {};\n\n // eslint-disable-next-line @typescript-eslint/no-empty-function\n onTouch: any = () => {};\n\n get value(): boolean {\n return this.checked;\n }\n\n set value(value: boolean) {\n this.checked = value;\n this.onChange(value);\n this.onTouch(value);\n }\n\n writeValue(value: any) {\n this.value = value;\n }\n\n registerOnChange(fn: any) {\n this.onChange = fn;\n }\n\n registerOnTouched(fn: any) {\n this.onTouch = fn;\n }\n}\n","/*!\n * @copyright FLYACTS GmbH 2019\n */\n\nimport { Component, EventEmitter, Input, OnInit, Output } from '@angular/core';\nimport { FormBuilder, FormGroup } from '@angular/forms';\n\n@Component({\n selector: 'kms-form',\n template: '',\n})\nexport class FormParentComponent implements OnInit {\n public form!: FormGroup;\n public formInitialized = false;\n private allowedCharsOnlyNumbers = new Set('0123456789'.split('').map(c => c.charCodeAt(0)));\n\n @Output() formDataChanged: EventEmitter<FormGroup> = new EventEmitter();\n\n @Input() disabled = false;\n\n constructor(\n public formBuilder: FormBuilder\n ) {\n\n }\n\n // TODO make a service or make own compoennt etc.\n /**\n * Returns if a number was pressed\n * @param e \n * @returns \n */\n checkIfKeyWasNumber(e: KeyboardEvent, allowDelete = true, allowArrows = true, allowCutCopyPaste = true){\n // returns if keycode of numbers-row or numberpad. Or if parameter set, allow delete/backspace key\n const isNumberRow = e.keyCode >= 48 && e.keyCode <= 57;\n const isNumberPad = e.keyCode >= 96 && e.keyCode <= 105;\n const isArrows = e.keyCode >= 37 && e.keyCode <= 40;\n const isDelete = e.keyCode == 8 || e.keyCode == 46;\n const isCutCopyOrPaste = (e.ctrlKey || e.metaKey) && (e.keyCode == 86 || e.keyCode == 88 || e.keyCode == 67);\n return (isNumberRow) || (isNumberPad) || (allowDelete && isDelete) || (allowArrows && isArrows) || (allowCutCopyPaste && isCutCopyOrPaste);\n }\n\n // TODO make a service or make own compoennt etc.\n /**\n * Prevents to input other chars than numbers in input\n * @param event \n */\n removeNumbersOnType(event: KeyboardEvent) {\n // only allow keydown from numbers-row or numberpad of keybard and block other chars than numbers\n if (!this.checkIfKeyWasNumber(event) && !this.allowedCharsOnlyNumbers.has(event.keyCode)) {\n event.preventDefault();\n }\n }\n\n // TODO make a service or make own compoennt etc.\n /**\n * Prevents input when pasting which is not number\n * @param event\n */\n removeNumbersOnPaste(event: ClipboardEvent){\n const clipboardData = event.clipboardData;\n if(clipboardData){\n const pastedText = clipboardData.getData('text');\n if(pastedText){\n const isnum = /^\\d+$/.test(pastedText);\n if(!isnum) {\n event.preventDefault();\n }\n }\n }\n }\n\n ngOnInit() {\n this.formDataChanged.emit(this.form);\n this.form.valueChanges.subscribe(() => {\n this.formDataChanged.emit(this.form);\n });\n }\n}\n","import { Component, ElementRef, Input, EventEmitter, Output, ViewChild, Renderer2 } from '@angular/core';\nimport { FormBuilder, FormControl } from '@angular/forms';\nimport { FormParentComponent } from './form.component';\n\n@Component({\n selector: 'kms-formControlParent',\n template: '',\n})\nexport class FormControlParentComponent extends FormParentComponent {\n @Input() defaultDataOverride = ''; // when we have NO form around, get default via input to set it manually\n @Output() onSelectItemEmitter = new EventEmitter<string>();\n\n @ViewChild('child') public child?: ElementRef<HTMLInputElement>;\n\n public internalValue = '';\n\n constructor(public formBuilder: FormBuilder, public renderer: Renderer2) {\n super(formBuilder);\n }\n\n ngOnInit(){\n super.ngOnInit();\n }\n\n change(value: string) {\n this.onChange(value);\n this.onTouched();\n }\n\n // eslint-disable-next-line @typescript-eslint/no-empty-function\n public onChange: any = () => {};\n\n // eslint-disable-next-line @typescript-eslint/no-empty-function\n onTouch: any = () => {};\n\n // eslint-disable-next-line @typescript-eslint/no-empty-function\n onTouched: any = () => {};\n\n get value(): string {\n return this.internalValue;\n }\n\n set value(value: string) {\n this.internalValue = value;\n if (value !== undefined && this.internalValue !== value) {\n if (!this.internalValue && this.defaultDataOverride) {\n this.internalValue = this.defaultDataOverride;\n }\n this.onChange(value);\n this.onTouch(value);\n }\n }\n\n writeValue(value: string) {\n this.internalValue = value;\n this.value = value;\n }\n\n registerOnChange(fn: any) {\n this.onChange = fn;\n }\n\n registerOnTouched(fn: any) {\n this.onTouch = fn;\n }\n\n setDisabledState?(isDisabled: boolean) {\n if (this.child) {\n this.renderer.setProperty(this.child.nativeElement, 'disabled', isDisabled);\n }\n }\n\n validate(_: FormControl) {\n return this.form.valid ? null : false;\n }\n\n}\n","import { Component, forwardRef, Input, OnInit, Renderer2 } from '@angular/core';\nimport { ControlValueAccessor, FormBuilder, FormControl, NG_VALUE_ACCESSOR } from '@angular/forms';\nimport { FormControlParentComponent } from './../../parent-components/form-control.component';\n\n@Component({\n selector: 'kms-color-input',\n templateUrl: './color-input.component.html',\n styleUrls: ['./color-input.component.scss'],\n providers: [\n {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => ColorInputComponent),\n multi: true,\n },\n ],\n})\nexport class ColorInputComponent extends FormControlParentComponent implements OnInit, ControlValueAccessor {\n\n @Input() label = '';\n @Input() tooltipText = '';\n @Input() placeholder = '';\n valid: boolean | null | undefined;\n\n constructor(public formBuilder: FormBuilder, public renderer: Renderer2) {\n super(formBuilder, renderer);\n }\n\n ngOnInit() {\n this.form = this.formBuilder.group({\n color: '',\n });\n this.formInitialized = true;\n\n this.form.valueChanges.subscribe((value) => {\n this.internalValue = value.color;\n this.onChange(value.color);\n });\n\n super.ngOnInit();\n }\n\n validate(_: FormControl) {\n // TODO fix to validate complete form\n this.valid = this.matchesHex(this.form.value) ? null : false;\n return this.valid && {\n invalid: !this.valid\n };\n }\n\n matchesHex(match?: string){\n if(match){\n const ret = match.match(/^#[0-9a-f]{6}$/i);\n this.valid = ret && ret.length>0;\n return ret;\n }\n return false;\n }\n}\n","/*!\n * @copyright FLYACTS GmbH 2019\n */\nimport { Component, forwardRef, Input } from '@angular/core';\nimport { ControlValueAccessor, NG_VALUE_ACCESSOR } from '@angular/forms';\n\nimport { ActionsParentComponent } from '../../parent-components/actions.component';\n\n@Component({\n selector: 'kms-radiobutton',\n templateUrl: './radiobutton.component.html',\n styleUrls: ['./radiobutton.component.scss'],\n providers: [\n {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => RadioButtonComponent),\n multi: true,\n },\n ],\n})\nexport class RadioButtonComponent extends ActionsParentComponent implements ControlValueAccessor {\n /**\n * Internal description name. All radio buttons with the same name belong to the same group.\n * User can select exactly one of the radio buttons from the same group.\n */\n @Input() name = '';\n\n /**\n * Internal description id. Will be send in the output event when the radio button is selected.\n */\n @Input() id = '';\n\n @Input() formControl: any;\n\n selectAction(id: string) {\n this.select.emit(id);\n this.checked = !this.checked;\n }\n\n constructor() {\n super();\n }\n\n // eslint-disable-next-line @typescript-eslint/no-empty-function\n onChange: any = () => {};\n\n // eslint-disable-next-line @typescript-eslint/no-empty-function\n onTouch: any = () => {};\n\n get value(): boolean {\n return this.checked;\n }\n\n set value(value: boolean) {\n this.checked = value;\n this.onChange(value);\n this.onTouch(value);\n }\n\n writeValue(value: any) {\n this.value = value;\n }\n\n registerOnChange(fn: any) {\n this.onChange = fn;\n }\n\n registerOnTouched(fn: any) {\n this.onTouch = fn;\n }\n}\n","import { Component, forwardRef, OnInit } from '@angular/core';\nimport { ControlValueAccessor, FormBuilder, FormGroup, NG_VALUE_ACCESSOR } from '@angular/forms';\n\n@Component({\n selector: 'kms-time-input',\n templateUrl: './time-input.component.html',\n styleUrls: ['./time-input.component.scss'],\n providers: [\n {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => TimeInputComponent),\n multi: true,\n },\n ],\n})\nexport class TimeInputComponent implements OnInit, ControlValueAccessor {\n public form!: FormGroup;\n h = '';\n m = '';\n\n constructor(public formBuilder: FormBuilder) {\n \n }\n\n get value(): string {\n return this.value;\n }\n \n set value(value: string) {\n this.onChange(value);\n this.onTouch(value);\n }\n\n writeValue(value: string) {\n if(value && value.length === 8){\n this.h = value.substr(0,2);\n this.m = value.substr(3,2);\n }else if(value && value.length === 5){\n this.h = value.substr(0,2);\n this.m = value.substr(-2);\n }\n \n //we need to also update the form value because angular has a problem reading it from first time when valuechanges subscription was fired.\n this.form.controls['h'].setValue(this.h);\n this.form.controls['m'].setValue(this.m);\n\n this.form.valueChanges.subscribe(value => {\n this.h = value.h;\n this.m = value.m;\n value = this.getNewOrDefault();\n this.value = value;\n this.onChange(value);\n });\n }\n\n ngOnInit() {\n this.form = this.formBuilder.group({\n h: '',\n m: '',\n });\n }\n\n getNewOrDefault(){\n //reset if user deletes everything\n if(this.h === '' && this.m === ''){\n return ''; \n }\n const ret = this.h.padStart(2, '0') + ':' + this.m.padStart(2, '0');\n return ret;\n }\n\n registerOnChange(fn: any) {\n this.onChange = fn;\n }\n\n registerOnTouched(fn: any) {\n this.onTouch = fn;\n }\n\n // eslint-disable-next-line @typescript-eslint/no-empty-function\n public onChange: any = () => {};\n\n // eslint-disable-next-line @typescript-eslint/no-empty-function\n onTouch: any = () => {};\n\n // eslint-disable-next-line @typescript-eslint/no-empty-function\n onTouched: any = () => {};\n}\n","import { Component, ElementRef, forwardRef, Input, OnInit, Renderer2, ViewChild } from '@angular/core';\nimport { ControlValueAccessor, FormBuilder, FormGroup, NG_VALUE_ACCESSOR } from '@angular/forms';\nimport { NullAble } from '../../models';\n\n@Component({\n selector: 'kms-yesno-radiogroup',\n templateUrl: './yes-no-radiogroup.component.html',\n providers: [\n {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => YesNoRadiogroupComponent),\n multi: true,\n },\n ],\n})\nexport class YesNoRadiogroupComponent implements OnInit, ControlValueAccessor {\n \n @Input() header: NullAble<String>;\n @Input() disabled = false;\n @Input() textYes = '';\n @Input() textNo = '';\n public form!: FormGroup;\n \n @ViewChild('child') public child?: ElementRef<HTMLInputElement>;\n\n public internalValue: NullAble<boolean>;\n\n // eslint-disable-next-line @typescript-eslint/no-empty-function\n public onChange: any = () => {};\n\n // eslint-disable-next-line @typescript-eslint/no-empty-function\n onTouch: any = () => {};\n\n get value(): NullAble<boolean> {\n return this.internalValue;\n }\n\n set value(value: NullAble<boolean>) {\n this.internalValue = value;\n if (value !== undefined && this.internalValue !== value) {\n this.onChange(value);\n this.onTouch(value);\n }\n }\n\n writeValue(value: any) {\n this.internalValue = value;\n this.value = value;\n }\n\n registerOnChange(fn: any) {\n this.onChange = fn;\n }\n\n registerOnTouched(fn: any) {\n this.onTouch = fn;\n }\n\n setDisabledState?(isDisabled: boolean) {\n if (this.child) {\n this.renderer.setProperty(this.child.nativeElement, 'disabled', isDisabled);\n }\n }\n\n constructor(public formBuilder: FormBuilder, public renderer: Renderer2) {\n \n }\n\n ngOnInit() {\n this.form = this.formBuilder.group({\n yesno: [],\n });\n\n this.form.valueChanges.subscribe((value) => {\n this.internalValue = value.yesno;\n this.onChange(value.yesno);\n });\n }\n}\n","/*!\n * @copyright FLYACTS GmbH 2019\n */\n\nexport enum IconSize {\n FULLSIZE = 'size-full',\n TINY = 'size-16',\n SMALLER = 'size-20',\n SMALL = 'size-32',\n MEDIUM = 'size-64',\n LARGE = 'size-128',\n XL = 'size-256',\n XXL = 'size-512',\n XXXL = 'size-1024',\n NONE = 'NONE',\n}\n\n","/**\n * @copyright FLYACTS GmbH 2019\n */\n\nimport { NullAble } from \"./types/nullable.type\";\n\n\n/**\n * Check if null or undefined\n * @param value value that is being checked\n */\nexport function isValue<T>(value: NullAble<T>): value is T {\n if (value === null) {\n return false;\n }\n if (typeof value === 'undefined') {\n return false;\n }\n return true;\n}\n","import { Component, Input, forwardRef, OnInit, ViewChild, Renderer2, EventEmitter, Output, ApplicationRef, ChangeDetectorRef } from '@angular/core';\n\nimport {\n ControlValueAccessor,\n FormBuilder,\n FormControl,\n FormGroup,\n NG_VALIDATORS,\n NG_VALUE_ACCESSOR,\n} from '@angular/forms';\nimport { Subscription } from 'rxjs';\n\n//import { TranslateService } from '@ngx-translate/core';\nimport { IconSize } from '../../models/iconSize.enum';\nimport { AttachedFileDTO } from '../../models/types/attached-file-dto.model';\nimport { isValue } from '../../models/is-value.function';\n\n// Max size in bytes of uploaded image\nconst MAX_SIZE_BYTES = 2097152;\n\n@Component({\n selector: 'kms-file-input',\n templateUrl: './file-input.component.html',\n styleUrls: ['./file-input.component.scss'],\n providers: [\n {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => FileInputComponent),\n multi: true,\n },\n {\n provide: NG_VALIDATORS,\n useExisting: forwardRef(() => FileInputComponent),\n multi: true,\n },\n ],\n})\n\nexport class FileInputComponent implements ControlValueAccessor, OnInit {\n \n @ViewChild('fileInput') public fileInput: any;\n\n @Input() label = '';\n \n @Input() previewImage = true; \n @Input() allowRemove = true; \n @Input() previewImageText = ''; \n @Input() maxSizeBytes = MAX_SIZE_BYTES; \n @Input() resizePixels = 0; \n @Input() acceptedFileMimetypes = 'image/jpeg, image/jpg, image/png'; \n\n form= this.formBuilder.group({\n ImageIdent: new FormControl(''),\n ImageLink: new FormControl(''),\n Filename: new FormControl(''),\n ImageAsDataURL: new FormControl(''),\n Text: new FormControl(''),\n });\n\n subscriptions: Subscription[] = [];\n newImageLoading = false\n\n IconSize = IconSize;\n\n @Output() formDataChanged: EventEmitter<FormGroup> = new EventEmitter();\n\n /**\n * Constructor\n * @param formBuilder \n * @param appRef \n * @param cd \n * @param translateService \n * @param renderer \n */\n constructor(\n public formBuilder: FormBuilder, \n public appRef: ApplicationRef,\n public cd: ChangeDetectorRef,\n //private translateService: TranslateService,\n public renderer: Renderer2\n ) {\n \n }\n\n /**\n * Click on button triggers file-input to open OS file dialog\n */\n selectImageOverlay() {\n this.fileInput.nativeElement.click();\n }\n\n /**\n * Function to manage the input image\n * Returns an error if the file exceeds maximum wanted filesize (Mb). \n * @param ev\n * @returns\n */\n selectImage(ev: any) {\n if (ev.target.files && ev.target.files[0]) {\n const file:File = ev.target.files[0];\n\n if (file.size > this.maxSizeBytes) {\n this.clearInputValue(ev);\n //alert(this.translateService.instant('errors.fileTooBig'));\n return;\n } else {\n this.newImageLoading = true;\n\n if(this.resizePixels > 0){\n const logoUrl = URL.createObjectURL(file);\n const imgEl = document.createElement('img');\n imgEl.addEventListener('load', () => {\n const resizedLogo = this.resizeImage(imgEl, this.resizePixels);\n const newFile = this.generateModel(file.name, resizedLogo, this.value.ImageIdent, this.value.ImageLink, this.value.Text);\n this.value=newFile;\n this.newImageLoading = false;\n this.cd.markForCheck();\n });\n imgEl.src = logoUrl;\n }else{\n const reader = new FileReader();\n reader.readAsDataURL(file);\n reader.onload = (e: any) => {\n const newFile = this.generateModel(file.name, e.target.result, this.value.ImageIdent, this.value.ImageLink, this.value.Text);\n this.value=newFile;\n this.newImageLoading = false;\n this.cd.markForCheck();\n };\n }\n \n }\n }else{\n console.warn(\"No file selected\");\n }\n }\n\n /**\n * Resize an image\n * @param imgEl\n * @param wantedWidth as number\n * @returns string \n */\n private resizeImage(imgEl: any, wantedWidth: number) {\n const canvas = document.createElement('canvas');\n const ctx = canvas.getContext('2d');\n const aspect = imgEl.width / imgEl.height;\n canvas.width = wantedWidth;\n canvas.height = wantedWidth / aspect;\n if (isValue(ctx)) ctx.drawImage(imgEl, 0, 0, canvas.width, canvas.height);\n return canvas.toDataURL();\n }\n\n /**\n * Generate default object\n * @param name as string\n * @param content as string\n * @returns AttachedFileDTO\n */\n generateModel(name?: string, content?: string, ident?: string, imageLink?: string, text?: string){\n return {\n ImageIdent: ident ? ident : '',\n Filename: name ? name : '',\n ImageAsDataURL: content ? content : '',\n ImageLink: imageLink ? imageLink : '',\n Text: text ? text : ''\n } as AttachedFileDTO;\n }\n\n /**\n * Remove image \n */\n removeFromList(){\n this.value= this.generateModel('','', '', '');\n }\n\n /**\n * get value\n */\n get value(): AttachedFileDTO {\n return this.form.value;\n }\n\n /**\n * set value\n */\n set value(value: AttachedFileDTO) {\n this.form.setValue(value);\n this.onChange(value);\n this.formDataChanged.emit(this.form);\n }\n\n // eslint-disable-next-line @typescript-eslint/no-empty-function\n onChange: any = () => {};\n\n // eslint-disable-next-line @typescript-eslint/no-empty-function\n onTouch: any = () => {};\n\n // eslint-disable-next-line @typescript-eslint/no-empty-function\n ngOnInit() {}\n\n\n ngOnDestroy() {\n this.subscriptions.forEach(s => s.unsubscribe());\n } \n\n registerOnChange(fn: any) {\n this.onChange = fn;\n }\n\n registerOnTouched(fn: any) {\n this.onTouch = fn;\n }\n\n writeValue(value: AttachedFileDTO | null) {\n if (value) {\n this.value = value;\n }\n\n if (value === null) {\n this.form.reset();\n }\n }\n\n // eslint-disable-next-line @typescript-eslint/adjacent-overload-signatures\n validate(_: FormControl) {\n return this.form.valid ? null : { styles: { valid: false } };\n }\n\n /**\n * OnClick event listener of input#fileInput to clear his input value\n */\n clearInputValue(ev: any) {\n const element = ev.target as HTMLInputElement;\n element.value = '';\n }\n}\n","import { Component, Input, OnInit } from '@angular/core';\n\n@Component({\n selector: 'kms-loader',\n templateUrl: './loader.component.html',\n styleUrls: ['./loader.component.scss'],\n})\nexport class LoaderComponent implements OnInit {\n @Input() loading=false;\n\n // eslint-disable-next-line @typescript-eslint/no-empty-function\n constructor() {}\n\n // eslint-disable-next-line @typescript-eslint/no-empty-function\n ngOnInit() {}\n}\n","/*!\n * @copyright FLYACTS GmbH 2019\n */\n\nimport { state, style, trigger } from '@angular/animations';\nimport {\n Component,\n ElementRef,\n Input,\n ViewChild,\n} from '@angular/core';\n\n@Component({\n \n selector: 'kms-flyout',\n templateUrl: './flyout.component.html',\n styleUrls: ['./flyout.component.scss'],\n animations: [\n trigger('dropdownAnimation', [\n state(\n 'true',\n style({\n height: '{{targetHeight}}',\n transition: 'height {{animationTime}}ms ease-in-out',\n }),\n {\n params: {\n targetHeight: '300px',\n animationTime: 3000,\n },\n },\n ),\n state(\n 'false',\n style({\n height: 0,\n transition: 'height {{animationTime}}ms ease-in-out',\n }),\n {\n params: {\n targetHeight: '300px',\n opacity: 0,\n animationTime: 3000,\n },\n },\n ),\n ]),\n ],\n})\nexport class FlyoutComponent {\n\n @Input() icon = 'filter';\n\n isDropdownOpened = false;\n targetHeight = '0';\n animationTime = 5000;\n\n @Input() headerCssClass = '';\n @Input() bodyCssClass = '';\n\n @Input() headerTitle = '';\n @Input() headerText = '';\n @Input() hasButtonForMore = false;\n @Input() moreText = '';\n @Input() lessText = '';\n\n \n @ViewChild('content') content: ElementRef | undefined;\n \n @ViewChild('flyoutHeader') flyoutHeader: ElementRef | undefined;\n\n /**\n * Open/close dropdown if click on header.\n * Except, if mode is set to hasButtonForMore. When there is a extra button to open/close\n */\n toggleDropdownHeader() {\n if (!this.hasButtonForMore) {\n this.toggleDropdown();\n }\n }\n\n /**\n * Open or close the dropdown\n */\n toggleDropdown() {\n this.isDropdownOpened = !this.isDropdownOpened;\n }\n\n /**\n * Set the height of the dropdown list items dynamic - needed for the animation\n */\n setDropdownListHeight(contentHeight: number) {\n this.targetHeight = `${contentHeight}px`;\n }\n}\n","/**\n * @copyright KMS GmbH\n */\n\nimport { CurrencyPipe } from '@angular/common';\nimport { Pipe, PipeTransform } from '@angular/core';\n\n@Pipe({\n name: 'kmsIntegerCurrency',\n})\nexport class IntegerCurrency implements PipeTransform {\n constructor(private cp: CurrencyPipe) {}\n transform(value: any, currencyCode?: string, display?: boolean, digitsInfo?: string): string | null {\n const currencyPipeValue = this.cp.transform(value, currencyCode, display, digitsInfo)\n if (currencyPipeValue) {\n const convertedValue = currencyPipeValue.split(',')[0] + ' ' + currencyPipeValue.slice(-1)\n return convertedValue\n } else {\n throw new Error(\"No value provided\");\n }\n }\n}\n","/*!\n * @copyright FLYACTS GmbH 2019\n */\n\nimport { Pipe, PipeTransform } from '@angular/core';\n\n@Pipe({\n name: 'kmsDecodeUri',\n})\nexport class DecodeUriPipe implements PipeTransform {\n\n transform(value: any, _args?: any): any {\n return decodeURI(value);\n }\n}\n","/*!\n * @copyright FLYACTS GmbH 2019\n */\n\nimport { Pipe, PipeTransform } from '@angular/core';\n\n@Pipe({\n name: 'kmsEncodeUri',\n})\nexport class EncodeUriPipe implements PipeTransform {\n transform(value: any, _args?: any): any {\n return encodeURI(value);\n }\n}\n","/*!\n * @copyright FLYACTS GmbH 2019\n */\n\nimport { Pipe, PipeTransform } from '@angular/core';\nimport { DomSanitizer, SafeHtml } from '@angular/platform-browser';\n\n@Pipe({\n name: 'kmsSafeHtml',\n})\nexport class SafeHtmlPipe implements PipeTransform {\n constructor(private sanitizer: DomSanitizer) { }\n\n transform(html: string): SafeHtml {\n return this.sanitizer.bypassSecurityTrustHtml(html);\n }\n}\n","/**\n * @copyright KMS GmbH\n */\n\nimport { Pipe, PipeTransform } from '@angular/core';\nimport { DomSanitizer, SafeUrl } from '@angular/platform-browser';\n\n@Pipe({\n name: 'kmsSafeStyle',\n})\nexport class SafeStylePipe implements PipeTransform {\n constructor(private sanitizer: DomSanitizer) { }\n\n transform(style: string): SafeUrl {\n return this.sanitizer.bypassSecurityTrustStyle(style);\n }\n}\n","/**\n * @copyright KMS GmbH\n */\n\nimport { Pipe, PipeTransform } from '@angular/core';\nimport { DomSanitizer, SafeUrl } from '@angular/platform-browser';\n\n@Pipe({\n name: 'kmsSafeSUrl',\n})\nexport class SafeUrlPipe implements PipeTransform {\n constructor(private sanitizer: DomSanitizer) {}\n\n transform(style: string): SafeUrl {\n return this.sanitizer.bypassSecurityTrustUrl(style);\n }\n}\n","import { Pipe, PipeTransform } from '@angular/core';\n\n@Pipe({\n name: 'kmsTypeOf',\n})\nexport class TypeofPipe implements PipeTransform {\n transform(value: any): any {\n return typeof value;\n }\n}\n","/**\n * @copyright KMS GmbH\n */\n\nimport { Pipe, PipeTransform } from \"@angular/core\";\n\n@Pipe({ name: 'kmsTrim' })\nexport class TrimPipe implements PipeTransform {\n transform(value: any) {\n if (!value) {\n return '';\n }\n\n return value.trim();\n }\n}","/**\n * @copyright KMS GmbH\n */\n\nimport { Pipe, PipeTransform } from '@angular/core';\n\n@Pipe({\n name: 'kmsToNumber',\n pure: false\n \n})\nexport class ToNumberPipe implements PipeTransform {\n transform(items: any): any {\n if (!items) {\n return 0;\n }\n return parseInt(items, 10);\n }\n}\n","/**\n * @copyright KMS GmbH\n */\n\n import { CommonModule, CurrencyPipe } from '@angular/common';\n import { NgModule } from '@angular/core';\n \n import { IntegerCurrency } from './integer-currency.pipe';\n import { DecodeUriPipe } from './decode-uri.pipe';\n import { EncodeUriPipe } from './encode-uri.pipe';\n import { SafeHtmlPipe } from './safe-html.pipe';\n import { SafeStylePipe } from './safe-style.pipe';\n import { SafeUrlPipe } from './safe-url.pipe';\n import { TypeofPipe } from './typeof.pipe';\n import { TrimPipe } from './trim.pipe';\n import { ToNumberPipe } from './to-number.pipe';\n \n @NgModule({\n declarations: [\n IntegerCurrency,\n SafeHtmlPipe,\n SafeStylePipe,\n SafeUrlPipe,\n EncodeUriPipe,\n DecodeUriPipe,\n TypeofPipe,\n TrimPipe,\n ToNumberPipe,\n ],\n imports: [CommonModule],\n exports: [\n IntegerCurrency,\n SafeHtmlPipe,\n SafeStylePipe,\n SafeUrlPipe,\n EncodeUriPipe,\n DecodeUriPipe,\n TypeofPipe,\n TrimPipe,\n ToNumberPipe,\n ],\n providers: [CurrencyPipe],\n })\n export class CustomPipesModule {}\n ","/*!\n * @copyright FLYACTS GmbH 2019\n */\n\nexport enum IconSize {\n FULLSIZE = 'size-full',\n TINY = 'size-16',\n SMALLER = 'size-20',\n SMALL = 'size-32',\n MEDIUM = 'size-64',\n LARGE = 'size-128',\n XL = 'size-256',\n XXL = 'size-512',\n XXXL = 'size-1024',\n NONE = 'NONE',\n}\n\n","/**\n * @copyright KMS GmbH\n */\n\nimport { Component, Input, OnInit, VERSION } from '@angular/core';\nimport { DomSanitizer } from '@angular/platform-browser';\n\nimport { IconSize } from './iconSize.enum';\n\n@Component({\n \n selector: 'kms-icon',\n templateUrl: './icon.component.html',\n styleUrls: ['./icon.component.scss'],\n})\nexport class IconComponent implements OnInit {\n\n /**\n * Required: Name of the SVG icon inside your sprite sheet file with name 'icons.svg'.\n * Pass 'none' if no icon should be rendered.\n */\n @Input() icon!: string | '';\n\n /**\n * Optional: Different appearance via CSS class defined in this component´s style sheet.\n */\n @Input() iconClass!: string | '';\n\n /**\n * Optional: Different appearance via CSS inline style.\n */\n \n @Input() iconStyle: any;\n\n /**\n * Optional: Different size via CSS inline style.\n */\n @Input() iconSize: IconSize = IconSize.FULLSIZE;\n\n /**\n * Dont use icon sprite\n */\n \n @Input() dontUseSprite = false;\n\n IconSize = IconSize;\n Version = VERSION.full;\n\n public timestamp = 0;\n\n /**\n * Renders this icon from SVG sprite sheet\n */\n public iconToShow!: string | '';\n\n constructor(public sanitizer: DomSanitizer) {\n this.iconToShow = this.icon;\n }\n\n ngOnInit() {\n this.iconToShow = this.icon;\n const d = new Date();\n const n = d.getTime();\n this.timestamp = n;\n }\n\n}\n","import { Component, forwardRef, Input, OnInit, Renderer2 } from '@angular/core';\nimport { ControlValueAccessor, FormBuilder, NG_VALUE_ACCESSOR } from '@angular/forms';\nimport { NullAble } from '../../models';\n\nimport { FormControlParentComponent } from './../../parent-components/form-control.component';\n\n@Component({\n selector: 'kms-enum-radiogroup',\n templateUrl: './enum-radiogroup.component.html',\n providers: [\n {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => EnumRadiogroupComponent),\n multi: true,\n },\n ],\n})\nexport class EnumRadiogroupComponent extends FormControlParentComponent implements OnInit, ControlValueAccessor {\n @Input() header: NullAble<String>;\n @Input() optionsEnum: any;\n @Input() translationPrefix = '';\n\n public optionValues: any;\n \n constructor(public formBuilder: FormBuilder, public renderer: Renderer2) {\n super(formBuilder, renderer);\n }\n\n ngOnInit(){\n this.optionValues = Object.keys(this.optionsEnum).filter(x => !(parseInt(x) >= 0));\n this.form = this.formBuilder.group({\n enumData: [],\n });\n this.formInitialized = true;\n\n this.form.valueChanges.subscribe((value) => {\n this.internalValue = value.enumData;\n this.onChange(value.enumData);\n });\n\n super.ngOnInit();\n }\n}\n","/*!\n * @copyright FLYACTS GmbH 2019\n */\n\nimport { Component, Input, OnInit } from '@angular/core';\nimport { DomSanitizer, SafeHtml } from '@angular/platform-browser';\n\n/**\n * A generic dialog component\n */\n@Component({\n \n selector: 'kms-accordion-item',\n templateUrl: './kms-accordion-item.component.html',\n styleUrls: ['./kms-accordion-item.component.scss'],\n})\nexport class KMSAccordionItemComponent implements OnInit {\n @Input() public itemTitle = '';\n \n public itemTitleTrustHtml: SafeHtml | undefined;\n @Input() public showAsCard = false;\n @Input() public isSmall = false;\n panelOpenState = false;\n\n constructor(public sanitizer: DomSanitizer) {\n\n }\n\n ngOnInit() {\n this.itemTitleTrustHtml = this.sanitizer.bypassSecurityTrustHtml(this.itemTitle);\n }\n}\n","/**\n * @copyright KMS GmbH\n */\n\nimport { isPlatformBrowser } from '@angular/common';\nimport { Inject, Injectable, OnDestroy, PLATFORM_ID } from '@angular/core';\nimport { Observable, Subject } from 'rxjs';\nimport { NullAble } from '../models';\n\n// needed for scrollToElement functionality\n\ndeclare const window: any;\n\ndeclare const document: any;\n\n/**\n * Service to get viewport\n */\n@Injectable()\nexport class ViewportService implements OnDestroy {\n public readonly viewports = [\n {\n name: 'xs',\n low: 420,\n high: 990,\n },\n {\n name: 's',\n low: 991,\n high: 1024,\n },\n {\n name: 'm',\n low: 1025,\n high: 1200,\n },\n {\n name: 'l',\n low: 12001,\n high: 1400,\n },\n {\n name: 'xl',\n low: 1401,\n high: 1600,\n },\n {\n name: 'xxl',\n low: 1601,\n high: 1920,\n },\n {\n name: 'xxxl',\n low: 1921,\n high: 99999,\n },\n ];\n\n private viewportChangedSubscriber: Subject<string> = new Subject<string>();\n private viewportResizedSubscriber: Subject<number> = new Subject<number>();\n private currentViewport!: string;\n\n constructor(@Inject(PLATFORM_ID) private platformId: Object) {\n if (isPlatformBrowser(this.platformId)) {\n window.addEventListener('resize', this.documentSizeChanged.bind(this), { passive: true });\n }\n }\n\n /**\n * Get window height\n */\n public getDocumentHeight(): number {\n return isPlatformBrowser(this.platformId) ? document.body.clientHeight : 1200;\n }\n\n /**\n * Get window width\n */\n public getDocumentWidth(): number {\n return isPlatformBrowser(this.platformId) ? document.body.clientWidth : 1200;\n }\n\n /**\n * Get window height\n */\n public getWindowHeight(): number {\n return isPlatformBrowser(this.platformId) ? window.innerHeight : 1200;\n }\n\n /**\n * Get window width\n */\n public getWindowWidth(): number {\n return isPlatformBrowser(this.platformId) ? window.innerWidth : 1200;\n }\n\n /**\n * Returns the current viewport MQ as string\n * @returns string\n */\n getCurrentViewPort(): string {\n if (!this.currentViewport) {\n const currentWidth: number = isPlatformBrowser(this.platformId) ? document.body.clientWidth : 1200;\n this.currentViewport = this.convertWidthToMediaQuery(currentWidth);\n }\n\n return this.currentViewport;\n }\n\n /**\n * Provides mq´s as string\n */\n public getViewportChangedObserver(): Observable<string> {\n return this.viewportChangedSubscriber.asObservable();\n }\n\n /**\n * Provides the current window width as number\n */\n public getViewportResizedObserver(): Observable<number> {\n return this.viewportResizedSubscriber.asObservable();\n }\n\n public scrollToElementId(el: string, alignCenter = false) {\n if (isPlatformBrowser(this.platformId)) {\n this.scrollToElement(document.querySelector('#' + el), alignCenter);\n }\n }\n\n /**\n * Helper function that scrolls to the given markup element.\n * @param el - nativeElement from markup\n * @param alignCenter - defines if the element needs to be centered on window\n */\n\n public scrollToElement(el: HTMLElement, alignCenter = false) {\n if (isPlatformBrowser(this.platformId)) {\n let extraScrollTop = 0;\n\n if (alignCenter) {\n extraScrollTop = (window.innerHeight - el.clientHeight) / 2;\n }\n\n /*\n const elementPos: DOMRect = el.getBoundingClientRect();\n const scrollTopPosition = elementPos.x - extraScrollTop;\n */\n\n //let offsetLeft = 0;\n let offsetTop = 0;\n\n let elTemp: NullAble<HTMLElement> = el;\n\n while (elTemp) {\n //offsetLeft += elTemp.offsetLeft;\n offsetTop += elTemp.offsetTop;\n elTemp = elTemp.parentElement ? elTemp.parentElement : null;\n }\n\n window.scrollTo({ left: 0, top: offsetTop - extraScrollTop, behavior: 'smooth' });\n }\n }\n\n /**\n * Scroll to the top position\n * @param top - top position value\n */\n public scrollTop(top: number) {\n if (isPlatformBrowser(this.platformId)) {\n window.scrollTo({ left: 0, top: top, behavior: 'smooth' });\n }\n }\n\n ngOnDestroy() {\n if (isPlatformBrowser(this.platformId)) {\n window.removeEventListener('resize', this.documentSizeChanged);\n }\n }\n\n /**\n * If viewport changed\n * @event\n */\n\n private documentSizeChanged(event: any) {\n const currentWindowWidth: number = event.target.innerWidth;\n // inform who´s interested\n this.viewportResizedSubscriber.next(currentWindowWidth);\n\n if (currentWindowWidth > 0) {\n for (const mqs of this.viewports) {\n if (currentWindowWidth > mqs.high) {\n continue;\n } else if (\n (currentWindowWidth >= mqs.low || currentWindowWidth <= mqs.high) &&\n this.currentViewport !== mqs.name\n ) {\n this.currentViewport = mqs.name;\n // inform who´s interested\n this.viewportChangedSubscriber.next(mqs.name);\n break;\n } else if (this.currentViewport === mqs.name) {\n break;\n } else {\n console.error('ERROR');\n }\n }\n }\n }\n\n /**\n * Get the Media Query for the given width\n * @param width Width to get the according MQ for\n */\n private convertWidthToMediaQuery(width: number) {\n let currentViewport = '';\n\n for (const mqs of this.viewports) {\n if (width <= mqs.high && width >= mqs.low) {\n currentViewport = mqs.name;\n break;\n }\n }\n\n return currentViewport;\n }\n\n isPortrait() {\n if (isPlatformBrowser(this.platformId)) return window.innerHeight > window.innerWidth;\n else return;\n }\n\n isLandscape() {\n if (isPlatformBrowser(this.platformId)) {\n const isLandscape = window.orientation === 90 || window.orientation === -90;\n return isLandscape;\n } else {\n return;\n }\n }\n}\n","/*!\n * @copyright FLYACTS GmbH 2019\n */\nimport { Component, Input, OnInit } from '@angular/core';\nimport { Subscription } from 'rxjs';\nimport { Address } from '../../models/address.model';\nimport { ViewportService } from '../../services/viewport.service';\n\n/**\n * MarkerOptions class for Marker\n */\nexport class MarkerOptions {\n animation!: number;\n}\n\n/**\n * MarkerLabel class for Marker\n */\nexport class MarkerLabel {\n color!: string;\n text!: string;\n}\n\n/**\n * Marker class\n */\nexport class Marker {\n position!: google.maps.LatLngLiteral;\n label!: MarkerLabel;\n title!: string;\n options!: MarkerOptions;\n}\n\n/**\n * Component to show marker on google map for specific address\n */\n@Component({\n selector: 'kms-map',\n templateUrl: './map.component.html',\n styleUrls: ['./map.component.scss']\n})\nexport class MapComponent implements OnInit {\n\n @Input() data!: Address;\n\n public markers: Marker[] = [];\n public geoDataFoundForAddress = false;\n public widthSet = false;\n\n public width = '100%';\n public zoom = 15;\n public center: google.maps.LatLngLiteral = {\n \n lat: 52.097449,\n lng: 12.7436911,\n };\n\n public options: google.maps.MapOptions = {\n mapTypeId: 'roadmap',\n zoomControl: false,\n scrollwheel: false,\n disableDoubleClickZoom: true,\n maxZoom: 15,\n minZoom: 8,\n };\n\n \n public google: any;\n\n public geocoder: any;\n\n public viewportSubscription?: Subscription;\n\n //\n constructor(private viewPortService: ViewportService) { }\n\n ngOnInit() {\n this.findLocation(this.data.Street + ' ' + this.data.Zip + ' ' + this.data.City);\n\n\n }\n\n /**\n * Asks google for geocoordinates of a given address string\n * @input address as string\n */\n findLocation(address: string) {\n if (!this.geocoder) { this.geocoder = new google.maps.Geocoder(); }\n this.geocoder.geocode({\n 'address': address,\n \n }, (results: any, status: google.maps.GeocoderStatus) => {\n if (status === google.maps.GeocoderStatus.OK) {\n\n this.center.lat = results[0].geometry.location.lat();\n this.center.lng = results[0].geometry.location.lng();\n\n this.addMarker();\n this.geoDataFoundForAddress = true;\n\n // react to browser resize\n this.setMapWidth(this.viewPortService.getDocumentWidth());\n this.viewportSubscription = this.viewPortService.getViewportResizedObserver().subscribe(\n (val) => {\n this.setMapWidth(val);\n },\n (error) => {\n console.error('Get updated ViewPort failed', error);\n },\n );\n\n } else {\n console.error('Sorry, this search of map address produced no results.');\n }\n });\n }\n\n /**\n * Adds a marker to the map\n */\n addMarker() {\n this.markers.push({\n position: {\n lat: this.center.lat,\n lng: this.center.lng,\n },\n label: {\n color: 'blue',\n \n text: this.data.Name1 || '',\n },\n title: this.data.Name1 + ' ' + this.data.Street + ' ' + this.data.Zip,\n options: { animation: google.maps.Animation.DROP },\n });\n }\n\n /**\n * sets the width of map accodring to viewport\n */\n setMapWidth(val: number) {\n if (val < 991) {\n this.width = (val - 84) + 'px';\n }else{\n this.width = '100%';\n }\n this.widthSet = true;\n }\n\n /**\n * Zooms in into map\n */\n zoomIn() {\n if (this.options.maxZoom && this.zoom < this.options.maxZoom) { this.zoom++; }\n }\n\n /**\n * Zooms out from map\n */\n zoomOut() {\n if (this.options.minZoom && this.zoom > this.options.minZoom) { this.zoom--; }\n }\n}\n","// TODO change values after cleaned up database\nexport enum SalutationEnum {\n NOT_SPECIFIED = 'Keine Anrede',\n MALE = 'Herr',\n FEMALE = 'Frau',\n}\n","import { Component, forwardRef, Input, OnInit, Renderer2 } from '@angular/core';\nimport { ControlValueAccessor, FormBuilder, NG_VALUE_ACCESSOR } from '@angular/forms';\nimport { NullAble } from '../../models';\nimport { SalutationEnum } from '../../models/salutation.enum';\n\nimport { FormControlParentComponent } from './../../parent-components/form-control.component';\n\n@Component({\n selector: 'kms-salutation-dropdown',\n templateUrl: './salutation-dropdown.component.html',\n providers: [\n {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => SalutationDropdownComponent),\n multi: true,\n },\n ],\n})\nexport class SalutationDropdownComponent extends FormControlParentComponent implements OnInit, ControlValueAccessor {\n @Input() placeholder: NullAble<String>;\n\n //For view\n SalutationEnum = SalutationEnum;\n Object = Object;\n\n constructor(public formBuilder: FormBuilder, public renderer: Renderer2) {\n super(formBuilder, renderer);\n }\n\n ngOnInit() {\n this.form = this.formBuilder.group({\n salut: [],\n });\n this.formInitialized = true;\n \n //somehow for dropowns we have to set value manually with timeout for default value\n setTimeout(() => {\n this.form.controls['salut'].setValue(this.value ? this.value : '');\n }, 1000);\n\n\n this.form.valueChanges.subscribe((value) => {\n this.onChange(value.salut);\n });\n\n super.ngOnInit();\n }\n}\n","import { Component, Input } from '@angular/core';\n\n@Component({\n selector: 'kms-tooltip-element',\n templateUrl: './tooltip.component.html',\n styleUrls: ['./tooltip.component.scss']\n})\nexport class TooltipComponent {\n @Input() tooltipTitle = \"\";\n}\n","/*!\n * @copyright FLYACTS GmbH 2019\n */\n\nexport type NullAble<T> = T | null | undefined;\n","/**\n * Attached File DTO\n */\nexport class AttachedFileDTO {\n ImageIdent?: string;\n ImageLink?: string;\n Filename?: string;\n ImageAsDataURL?: string;\n CreateSmallImage?: boolean;\n Text?: string;\n}\n","import { Component, Input } from '@angular/core';\nimport { IconSize } from '../../models';\n\n@Component({\n selector: 'kms-tooltip-icon',\n templateUrl: './tooltip-icon.component.html',\n styleUrls: ['./tooltip-icon.component.scss']\n})\nexport class TooltipIconComponent {\n @Input() tooltipTitle = \"\";\n @Input() tooltipText = \"\";\n @Input() tooltipLinkText = \"\";\n @Input() tooltipLinkUrl = \"\";\n\n @Input() placement = \"\";\n @Input() delay = 1000;\n\n IconSize = IconSize;\n}\n","import { Component, forwardRef, OnInit, Renderer2 } from '@angular/core';\nimport { ControlValueAccessor, FormBuilder, NG_VALUE_ACCESSOR } from '@angular/forms';\nimport { isValue } from '../../models';\nimport { SalutationEnum } from '../../models/salutation.enum';\nimport { FormControlParentComponent } from '../../parent-components/form-control.component';\n\n@Component({\n selector: 'kms-salutation-radiogroup',\n templateUrl: './salutation-radiogroup.component.html',\n providers: [\n {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => SalutationRadiogroupComponent),\n multi: true,\n },\n ],\n})\nexport class SalutationRadiogroupComponent extends FormControlParentComponent implements OnInit, ControlValueAccessor {\n \n //For view\n SalutationEnum = SalutationEnum;\n Object = Object;\n\n constructor(public formBuilder: FormBuilder, public renderer: Renderer2) {\n super(formBuilder, renderer);\n }\n\n ngOnInit() {\n this.form = this.formBuilder.group({\n salut: [isValue(this.value) ? this.value : '', null],\n });\n this.formInitialized = true;\n\n this.form.valueChanges.subscribe((value) => {\n this.internalValue = value.salut;\n this.onChange(value.salut);\n });\n\n super.ngOnInit();\n }\n}\n","/**\n * @copyright KMS GmbH\n */\n\nimport { Component, HostListener, Inject, PLATFORM_ID } from '@angular/core';\nimport { isPlatformBrowser } from '@angular/common';\n\n@Component({\n selector: 'kms-back-to-top',\n templateUrl: './back-to-top.component.html',\n})\nexport class BackToTopComponent {\n windowScrolled?: boolean;\n\n constructor(@Inject(PLATFORM_ID) public platformId: Object) {}\n\n @HostListener('window:scroll', [])\n onWindowScroll() {\n if (isPlatformBrowser(this.platformId)) {\n if (window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop > 100) {\n this.windowScrolled = true;\n } else if (\n (this.windowScrolled && window.pageYOffset) ||\n document.documentElement.scrollTop ||\n document.body.scrollTop < 10\n ) {\n this.windowScrolled = false;\n }\n }\n }\n\n scrollToTop() {\n if (isPlatformBrowser(this.platformId)) {\n (function smoothscroll() {\n const currentScroll = document.documentElement.scrollTop || document.body.scrollTop;\n if (currentScroll > 0) {\n window.requestAnimationFrame(smoothscroll);\n window.scrollTo(0, currentScroll - currentScroll / 8);\n }\n })();\n }\n }\n}\n","export enum ButtonResponseType{\n primary = 'primary',\n secondary = 'secondary'\n}","/**\n * @copyright KMS GmbH\n */\n\nimport { Component, Inject, NgZone } from '@angular/core';\nimport { MAT_DIALOG_DATA, MatDialogRef } from '@angular/material/dialog';\nimport { isValue } from '../../models';\nimport { ButtonResponseType } from '../button-with-confirm-dialog/button-response-types.enum';\nimport { DialogData, DialogDataButtons } from '../button-with-confirm-dialog/dialog-data.model';\n\n/**\n * A generic dialog component\n */\n@Component({\n selector: 'kms-generic-dialog',\n templateUrl: './generic-dialog.component.html',\n styleUrls: ['./generic-dialog.component.scss'],\n})\nexport class GenericDialogComponent {\n\n ButtonResponseType = ButtonResponseType;\n\n public buttons: DialogDataButtons\n\n public constructor(\n public dialogRef: MatDialogRef<GenericDialogComponent>,\n public zone: NgZone,\n @Inject(MAT_DIALOG_DATA) public data: DialogData\n ) {\n if (isValue(data.buttons)) {\n this.buttons = data.buttons;\n } else {\n this.buttons = { primary: 'Yes', secondary: 'No' } as DialogDataButtons;\n }\n }\n\n /**\n * Action called when clicked\n * @param clickedButton Whether the primary or secondary button was clicked\n */\n public onClickAction(clickedButton: ButtonResponseType): void {\n this.zone.run(() => {\n this.dialogRef.close(clickedButton);\n this.dialogRef.afterClosed().subscribe(() => {\n const buttonList = document.querySelectorAll('.mat-flat-button, .mat-button');\n let i = 0;\n for (i; i < buttonList.length; i++) {\n buttonList[i].classList.remove('cdk-focused');\n buttonList[i].classList.remove('cdk-program-focused');\n }\n });\n });\n }\n}\n","import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core';\nimport { MatDialog } from '@angular/material/dialog';\nimport { SubSink } from 'subsink';\nimport { NullAble } from '../../models';\nimport { GenericDialogComponent } from '../generic-dialog/generic-dialog.component';\nimport { ButtonResponseType } from './button-response-types.enum';\nimport { DialogData } from './dialog-data.model';\n\n@Component({\n selector: 'kms-button-with-confirm-dialog',\n templateUrl: './button-with-confirm-dialog.component.html',\n styleUrls: ['./button-with-confirm-dialog.component.scss'],\n})\nexport class ButtonWithConfirmDialogComponent implements OnInit {\n @Input() disabled: NullAble<boolean>;\n @Input() buttonText: NullAble<string>;\n @Input() confirmTitle: NullAble<string>;\n @Input() confirmTextYes: NullAble<string>;\n @Input() confirmTextNo: NullAble<string>;\n\n // Outputs when dialogue was closed. Returns true, if yes was clicked, false otherwise\n @Output() onConfirmClosed: EventEmitter<boolean> = new EventEmitter();\n\n private subs = new SubSink();\n \n // eslint-disable-next-line @typescript-eslint/no-empty-function\n constructor(\n public dialog: MatDialog,\n ) {}\n\n // eslint-disable-next-line @typescript-eslint/no-empty-function\n ngOnInit() {}\n\n start(){\n const data: DialogData = {\n title: this.confirmTitle,\n buttons:{\n primary: this.confirmTextYes,\n secondary: this.confirmTextNo,\n }\n };\n const dialogRef = this.dialog.open(GenericDialogComponent, {\n data: data,\n });\n\n this.subs.sink = dialogRef.afterClosed().subscribe(result => {\n if (result === ButtonResponseType.primary) {\n this.onConfirmClosed.emit(true);\n }else{\n this.onConfirmClosed.emit(false);\n }\n dialogRef.close();\n });\n }\n}\n","import { NgModule, } from '@angular/core';\nimport { CommonModule } from '@angular/common';\n\nimport { FormsModule, ReactiveFormsModule } from '@angular/forms';\nimport { KmsUiPresentationalComponent } from './kms-ngx-ui-presentational.component';\nimport { ActionsParentComponent } from './parent-components/actions.component';\nimport { CheckboxComponent } from './ui/checkbox/checkbox.component';\n\nimport { MatCheckboxModule } from '@angular/material/checkbox';\nimport { MatRadioModule } from '@angular/material/radio';\nimport { ColorInputComponent } from './ui/color-input/color-input.component';\nimport { RadioButtonComponent } from './ui/radiobutton/radiobutton.component';\nimport { TimeInputComponent } from './ui/time-input/time-input.component';\nimport { YesNoRadiogroupComponent } from './ui/yes-no-radiogroup/yes-no-radiogroup.component';\nimport { FileInputComponent } from './ui/file-input/file-input.component';\nimport { LoaderComponent } from './ui/loader/loader.component';\nimport { FlyoutComponent } from './ui/flyout/flyout.component';\nimport { CustomPipesModule } from './pipes/custom-pipes.module';\nimport { IconComponent } from './ui/icon/icon.component';\nimport { EnumRadiogroupComponent } from './ui/enum-radiogroup/enum-radiogroup.component';\nimport { KMSAccordionItemComponent } from './ui/kms-accordion-item/kms-accordion-item.component';\nimport { MapComponent } from './ui/map/map.component';\nimport { SalutationDropdownComponent } from './ui/salutation-dropdown/salutation-dropdown.component';\nimport { TooltipComponent } from './ui/tooltip/tooltip.component';\nimport { TooltipIconComponent } from './ui/tooltip-icon/tooltip-icon.component';\n\nimport { SalutationRadiogroupComponent } from './ui/salutation-radiogroup/salutation-radiogroup.component';\nimport { BackToTopComponent } from './ui/back-to-top/back-to-top.component';\nimport { ButtonWithConfirmDialogComponent } from './ui/button-with-confirm-dialog/button-with-confirm-dialog.component';\nimport { GoogleMapsModule } from '@angular/google-maps';\nimport { MatDialogModule } from '@angular/material/dialog';\nimport { MatButtonModule } from '@angular/material/button';\nimport { GenericDialogComponent } from './ui/generic-dialog/generic-dialog.component';\nimport {MatExpansionModule} from '@angular/material/expansion';\n\n@NgModule({\n declarations: [\n KmsUiPresentationalComponent,\n ActionsParentComponent,\n CheckboxComponent,\n ColorInputComponent,\n RadioButtonComponent,\n TimeInputComponent,\n YesNoRadiogroupComponent,\n FileInputComponent,\n LoaderComponent,\n FlyoutComponent,\n IconComponent,\n EnumRadiogroupComponent,\n KMSAccordionItemComponent,\n EnumRadiogroupComponent,\n MapComponent,\n SalutationDropdownComponent,\n SalutationRadiogroupComponent,\n TooltipComponent,\n TooltipIconComponent,\n BackToTopComponent,\n GenericDialogComponent,\n ButtonWithConfirmDialogComponent,\n ],\n imports: [\n CommonModule,\n MatCheckboxModule,\n MatButtonModule,\n MatRadioModule,\n MatDialogModule,\n FormsModule,\n ReactiveFormsModule,\n CustomPipesModule,\n GoogleMapsModule,\n MatExpansionModule,\n ],\n exports: [\n KmsUiPresentationalComponent,\n ActionsParentComponent,\n CheckboxComponent,\n ColorInputComponent,\n RadioButtonComponent,\n TimeInputComponent,\n YesNoRadiogroupComponent,\n FileInputComponent,\n LoaderComponent,\n FlyoutComponent,\n IconComponent,\n EnumRadiogroupComponent,\n KMSAccordionItemComponent,\n EnumRadiogroupComponent,\n MapComponent,\n SalutationDropdownComponent,\n SalutationRadiogroupComponent,\n TooltipComponent,\n TooltipIconComponent,\n BackToTopComponent,\n GenericDialogComponent,\n ButtonWithConfirmDialogComponent\n ]\n})\nexport class KmsUiPresentationalModule { }\n","/*\n * Public API Surface of kms-ngx-ui-presentational\n */\n\nexport * from './lib/kms-ngx-ui-presentational.service';\nexport * from './lib/kms-ngx-ui-presentational.component';\nexport * from './lib/kms-ngx-ui-presentational.module';\n\nexport * from './lib/models/iconSize.enum';\nexport * from './lib/models/salutation.enum';\n//export * from './lib/ui/checkbox/checkbox.component';\n//export * from './lib/parent-components/actions.component';\nexport * from './lib/ui/generic-dialog/generic-dialog.component';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n\nexport {ActionsParentComponent as ɵa} from './lib/parent-components/actions.component';\nexport {FormControlParentComponent as ɵd} from './lib/parent-components/form-control.component';\nexport {FormParentComponent as ɵe} from './lib/parent-components/form.component';\nexport {CustomPipesModule as ɵx} from './lib/pipes/custom-pipes.module';\nexport {DecodeUriPipe as ɵbd} from './lib/pipes/decode-uri.pipe';\nexport {EncodeUriPipe as ɵbc} from './lib/pipes/encode-uri.pipe';\nexport {IntegerCurrency as ɵy} from './lib/pipes/integer-currency.pipe';\nexport {SafeHtmlPipe as ɵz} from './lib/pipes/safe-html.pipe';\nexport {SafeStylePipe as ɵba} from './lib/pipes/safe-style.pipe';\nexport {SafeUrlPipe as ɵbb} from './lib/pipes/safe-url.pipe';\nexport {ToNumberPipe as ɵbg} from './lib/pipes/to-number.pipe';\nexport {TrimPipe as ɵbf} from './lib/pipes/trim.pipe';\nexport {TypeofPipe as ɵbe} from './lib/pipes/typeof.pipe';\nexport {ViewportService as ɵp} from './lib/services/viewport.service';\nexport {BackToTopComponent as ɵu} from './lib/ui/back-to-top/back-to-top.component';\nexport {ButtonWithConfirmDialogComponent as ɵw} from './lib/ui/button-with-confirm-dialog/button-with-confirm-dialog.component';\nexport {DialogData as ɵv} from './lib/ui/button-with-confirm-dialog/dialog-data.model';\nexport {CheckboxComponent as ɵb} from './lib/ui/checkbox/checkbox.component';\nexport {ColorInputComponent as ɵc} from './lib/ui/color-input/color-input.component';\nexport {EnumRadiogroupComponent as ɵm} from './lib/ui/enum-radiogroup/enum-radiogroup.component';\nexport {FileInputComponent as ɵi} from './lib/ui/file-input/file-input.component';\nexport {FlyoutComponent as ɵk} from './lib/ui/flyout/flyout.component';\nexport {IconComponent as ɵl} from './lib/ui/icon/icon.component';\nexport {KMSAccordionItemComponent as ɵn} from './lib/ui/kms-accordion-item/kms-accordion-item.component';\nexport {LoaderComponent as ɵj} from './lib/ui/loader/loader.component';\nexport {MapComponent as ɵo} from './lib/ui/map/map.component';\nexport {RadioButtonComponent as ɵf} from './lib/ui/radiobutton/radiobutton.component';\nexport {SalutationDropdownComponent as ɵq} from './lib/ui/salutation-dropdown/salutation-dropdown.component';\nexport {SalutationRadiogroupComponent as ɵr} from './lib/ui/salutation-radiogroup/salutation-radiogroup.component';\nexport {TimeInputComponent as ɵg} from './lib/ui/time-input/time-input.component';\nexport {TooltipIconComponent as ɵt} from './lib/ui/tooltip-icon/tooltip-icon.component';\nexport {TooltipComponent as ɵs} from './lib/ui/tooltip/tooltip.component';\nexport {YesNoRadiogroupComponent as ɵh} from './lib/ui/yes-no-radiogroup/yes-no-radiogroup.component';"],"names":["IconSize"],"mappings":"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"}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated bundle index. Do not edit.
|
|
3
|
+
*/
|
|
4
|
+
export * from './public-api';
|
|
5
|
+
export { ActionsParentComponent as ɵa } from './lib/parent-components/actions.component';
|
|
6
|
+
export { FormControlParentComponent as ɵd } from './lib/parent-components/form-control.component';
|
|
7
|
+
export { FormParentComponent as ɵe } from './lib/parent-components/form.component';
|
|
8
|
+
export { CustomPipesModule as ɵx } from './lib/pipes/custom-pipes.module';
|
|
9
|
+
export { DecodeUriPipe as ɵbd } from './lib/pipes/decode-uri.pipe';
|
|
10
|
+
export { EncodeUriPipe as ɵbc } from './lib/pipes/encode-uri.pipe';
|
|
11
|
+
export { IntegerCurrency as ɵy } from './lib/pipes/integer-currency.pipe';
|
|
12
|
+
export { SafeHtmlPipe as ɵz } from './lib/pipes/safe-html.pipe';
|
|
13
|
+
export { SafeStylePipe as ɵba } from './lib/pipes/safe-style.pipe';
|
|
14
|
+
export { SafeUrlPipe as ɵbb } from './lib/pipes/safe-url.pipe';
|
|
15
|
+
export { ToNumberPipe as ɵbg } from './lib/pipes/to-number.pipe';
|
|
16
|
+
export { TrimPipe as ɵbf } from './lib/pipes/trim.pipe';
|
|
17
|
+
export { TypeofPipe as ɵbe } from './lib/pipes/typeof.pipe';
|
|
18
|
+
export { ViewportService as ɵp } from './lib/services/viewport.service';
|
|
19
|
+
export { BackToTopComponent as ɵu } from './lib/ui/back-to-top/back-to-top.component';
|
|
20
|
+
export { ButtonWithConfirmDialogComponent as ɵw } from './lib/ui/button-with-confirm-dialog/button-with-confirm-dialog.component';
|
|
21
|
+
export { DialogData as ɵv } from './lib/ui/button-with-confirm-dialog/dialog-data.model';
|
|
22
|
+
export { CheckboxComponent as ɵb } from './lib/ui/checkbox/checkbox.component';
|
|
23
|
+
export { ColorInputComponent as ɵc } from './lib/ui/color-input/color-input.component';
|
|
24
|
+
export { EnumRadiogroupComponent as ɵm } from './lib/ui/enum-radiogroup/enum-radiogroup.component';
|
|
25
|
+
export { FileInputComponent as ɵi } from './lib/ui/file-input/file-input.component';
|
|
26
|
+
export { FlyoutComponent as ɵk } from './lib/ui/flyout/flyout.component';
|
|
27
|
+
export { IconComponent as ɵl } from './lib/ui/icon/icon.component';
|
|
28
|
+
export { KMSAccordionItemComponent as ɵn } from './lib/ui/kms-accordion-item/kms-accordion-item.component';
|
|
29
|
+
export { LoaderComponent as ɵj } from './lib/ui/loader/loader.component';
|
|
30
|
+
export { MapComponent as ɵo } from './lib/ui/map/map.component';
|
|
31
|
+
export { RadioButtonComponent as ɵf } from './lib/ui/radiobutton/radiobutton.component';
|
|
32
|
+
export { SalutationDropdownComponent as ɵq } from './lib/ui/salutation-dropdown/salutation-dropdown.component';
|
|
33
|
+
export { SalutationRadiogroupComponent as ɵr } from './lib/ui/salutation-radiogroup/salutation-radiogroup.component';
|
|
34
|
+
export { TimeInputComponent as ɵg } from './lib/ui/time-input/time-input.component';
|
|
35
|
+
export { TooltipIconComponent as ɵt } from './lib/ui/tooltip-icon/tooltip-icon.component';
|
|
36
|
+
export { TooltipComponent as ɵs } from './lib/ui/tooltip/tooltip.component';
|
|
37
|
+
export { YesNoRadiogroupComponent as ɵh } from './lib/ui/yes-no-radiogroup/yes-no-radiogroup.component';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"__symbolic":"module","version":4,"metadata":{"KmsUiPresentationalService":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Injectable","line":2,"character":1},"arguments":[{"providedIn":"root"}]}],"members":{"__ctor__":[{"__symbolic":"constructor"}]},"statics":{"ɵprov":{}}},"KmsUiPresentationalComponent":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":2,"character":1},"arguments":[{"selector":"lib-kms-ngx-ui-presentational","template":"\n <p>\n kms-ngx-ui-presentational works!\n </p>\n ","styles":[]}]}],"members":{"__ctor__":[{"__symbolic":"constructor"}],"ngOnInit":[{"__symbolic":"method"}]}},"KmsUiPresentationalModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule","line":35,"character":1},"arguments":[{"declarations":[{"__symbolic":"reference","name":"KmsUiPresentationalComponent"},{"__symbolic":"reference","name":"ɵa"},{"__symbolic":"reference","name":"ɵb"},{"__symbolic":"reference","name":"ɵc"},{"__symbolic":"reference","name":"ɵf"},{"__symbolic":"reference","name":"ɵg"},{"__symbolic":"reference","name":"ɵh"},{"__symbolic":"reference","name":"ɵi"},{"__symbolic":"reference","name":"ɵj"},{"__symbolic":"reference","name":"ɵk"},{"__symbolic":"reference","name":"ɵl"},{"__symbolic":"reference","name":"ɵm"},{"__symbolic":"reference","name":"ɵn"},{"__symbolic":"reference","name":"ɵm"},{"__symbolic":"reference","name":"ɵo"},{"__symbolic":"reference","name":"ɵq"},{"__symbolic":"reference","name":"ɵr"},{"__symbolic":"reference","name":"ɵs"},{"__symbolic":"reference","name":"ɵt"},{"__symbolic":"reference","name":"ɵu"},{"__symbolic":"reference","name":"GenericDialogComponent"},{"__symbolic":"reference","name":"ɵw"}],"imports":[{"__symbolic":"reference","module":"@angular/common","name":"CommonModule","line":61,"character":4},{"__symbolic":"reference","module":"@angular/material/checkbox","name":"MatCheckboxModule","line":62,"character":4},{"__symbolic":"reference","module":"@angular/material/button","name":"MatButtonModule","line":63,"character":4},{"__symbolic":"reference","module":"@angular/material/radio","name":"MatRadioModule","line":64,"character":4},{"__symbolic":"reference","module":"@angular/material/dialog","name":"MatDialogModule","line":65,"character":4},{"__symbolic":"reference","module":"@angular/forms","name":"FormsModule","line":66,"character":4},{"__symbolic":"reference","module":"@angular/forms","name":"ReactiveFormsModule","line":67,"character":4},{"__symbolic":"reference","name":"ɵx"},{"__symbolic":"reference","module":"@angular/google-maps","name":"GoogleMapsModule","line":69,"character":4},{"__symbolic":"reference","module":"@angular/material/expansion","name":"MatExpansionModule","line":70,"character":4}],"exports":[{"__symbolic":"reference","name":"KmsUiPresentationalComponent"},{"__symbolic":"reference","name":"ɵa"},{"__symbolic":"reference","name":"ɵb"},{"__symbolic":"reference","name":"ɵc"},{"__symbolic":"reference","name":"ɵf"},{"__symbolic":"reference","name":"ɵg"},{"__symbolic":"reference","name":"ɵh"},{"__symbolic":"reference","name":"ɵi"},{"__symbolic":"reference","name":"ɵj"},{"__symbolic":"reference","name":"ɵk"},{"__symbolic":"reference","name":"ɵl"},{"__symbolic":"reference","name":"ɵm"},{"__symbolic":"reference","name":"ɵn"},{"__symbolic":"reference","name":"ɵm"},{"__symbolic":"reference","name":"ɵo"},{"__symbolic":"reference","name":"ɵq"},{"__symbolic":"reference","name":"ɵr"},{"__symbolic":"reference","name":"ɵs"},{"__symbolic":"reference","name":"ɵt"},{"__symbolic":"reference","name":"ɵu"},{"__symbolic":"reference","name":"GenericDialogComponent"},{"__symbolic":"reference","name":"ɵw"}]}]}],"members":{}},"IconSize":{"FULLSIZE":"size-full","TINY":"size-16","SMALLER":"size-20","SMALL":"size-32","MEDIUM":"size-64","LARGE":"size-128","XL":"size-256","XXL":"size-512","XXXL":"size-1024","NONE":"NONE"},"SalutationEnum":{"NOT_SPECIFIED":"Keine Anrede","MALE":"Herr","FEMALE":"Frau"},"GenericDialogComponent":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":13,"character":1},"arguments":[{"selector":"kms-generic-dialog","template":"<div mat-dialog-title class=\"mat-dialog-title\">\n <h3>{{ data.title }}</h3>\n</div>\n<div mat-dialog-content class=\"mat-dialog-content\">\n {{ data.message }}\n</div>\n<div mat-dialog-actions class=\"custom-dialog-actions\">\n <button\n mat-flat-button\n class=\"test_secondary_button\"\n color=\"accent\"\n (click)=\"onClickAction(ButtonResponseType.secondary)\"\n >\n {{ buttons.secondary }}\n </button>\n <button\n mat-flat-button\n class=\"test_primary_button\"\n color=\"primary\"\n (click)=\"onClickAction(ButtonResponseType.primary)\"\n >\n {{ buttons.primary }}\n </button>\n</div>\n","styles":[""]}]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[null,null,[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":27,"character":9},"arguments":[{"__symbolic":"reference","module":"@angular/material/dialog","name":"MAT_DIALOG_DATA","line":27,"character":16}]}]],"parameters":[{"__symbolic":"reference","name":"MatDialogRef","module":"@angular/material/dialog","arguments":[{"__symbolic":"reference","name":"GenericDialogComponent"}]},{"__symbolic":"reference","module":"@angular/core","name":"NgZone","line":26,"character":21},{"__symbolic":"reference","name":"ɵv"}]}],"onClickAction":[{"__symbolic":"method"}]}},"ɵa":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":6,"character":1},"arguments":[{"selector":"kms-actions","template":""}]}],"members":{"disabled":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":14,"character":5}}]}],"checked":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":19,"character":5}}]}],"label":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":24,"character":5}}]}],"link":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":29,"character":5}}]}],"initialValue":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":34,"character":5}}]}],"select":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":36,"character":5}}]}],"selectAction":[{"__symbolic":"method"}]}},"ɵb":{"__symbolic":"class","extends":{"__symbolic":"reference","name":"ɵa"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":11,"character":1},"arguments":[{"selector":"kms-checkbox","providers":[{"provide":{"__symbolic":"reference","module":"@angular/forms","name":"NG_VALUE_ACCESSOR","line":17,"character":21},"useExisting":{"__symbolic":"reference","name":"ɵb"},"multi":true}],"template":"<!-- <label class=\"wrapper ui-copy-text\"\n [ngClass]=\"{'disabled' : disabled}\">{{label}}\n <input type=\"checkbox\" \n [checked]=\"checked\"\n [value]=\"value\"\n [name]=\"name\"\n [disabled]=\"disabled\"\n (change)=\"selectAction($event)\">\n\n</label> -->\n<mat-checkbox class=\"example-margin\" [disabled]=\"disabled\" [name]=\"name\" [(ngModel)]=\"checked\"></mat-checkbox>\n<span *ngIf=\"infoText && infoText.length > 0\" \n class=\"\"\n [ngClass]=\"{'disabled' : disabled}\">{{infoText}}\n</span>","styles":[".test{color:#0000cd}"]}]}],"members":{"infoText":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":29,"character":5}}]}],"name":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":35,"character":5}}]}],"select":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":37,"character":5}}]}],"selectAction":[{"__symbolic":"method"}],"__ctor__":[{"__symbolic":"constructor"}],"writeValue":[{"__symbolic":"method"}],"registerOnChange":[{"__symbolic":"method"}],"registerOnTouched":[{"__symbolic":"method"}]}},"ɵc":{"__symbolic":"class","extends":{"__symbolic":"reference","name":"ɵd"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":4,"character":1},"arguments":[{"selector":"kms-color-input","providers":[{"provide":{"__symbolic":"reference","module":"@angular/forms","name":"NG_VALUE_ACCESSOR","line":10,"character":21},"useExisting":{"__symbolic":"reference","name":"ɵc"},"multi":true}],"template":"\n<form [formGroup]=\"form\" *ngIf=\"formInitialized\">\n <div>\n <mat-form-field class=\"colorInput\">\n <kms-tooltip-icon [tooltipText]=\"tooltipText\" *ngIf=\"tooltipText\"></kms-tooltip-icon>\n <mat-label>{{ label }}</mat-label>\n <input type=\"text\" [value]=\"value\" matInput formControlName=\"color\" [placeholder]=\"placeholder\" [ngClass]=\"{'my-inValid': !matchesHex(value)}\" />\n <input type=\"color\" [value]=\"value && matchesHex(value) ? value : '#ffffff'\" formControlName=\"color\" [ngClass]=\"{'my-inValid': !matchesHex(value)}\" />\n </mat-form-field>\n </div>\n</form>","styles":[".colorInput{position:relative}.colorInput input[type=color]{display:block;position:absolute;width:20px;height:20px;left:0;bottom:10px;padding:0;margin:0;border:1px solid transparent}.colorInput input.my-inValid[type=color]{border:1px dotted red}.colorInput input[type=text]{padding-left:30px}.colorInput input.my-inValid[type=text]{color:red}.colorInput kms-tooltip-icon{position:absolute;right:0;top:-10px}.colorInput .mat-form-field-label{padding-left:30px}.colorInput .mat-form-field-can-float.mat-focused .mat-form-label{padding-left:0}"]}]}],"members":{"label":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":18,"character":5}}]}],"tooltipText":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":19,"character":5}}]}],"placeholder":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":20,"character":5}}]}],"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"reference","module":"@angular/forms","name":"FormBuilder","line":23,"character":36},{"__symbolic":"reference","module":"@angular/core","name":"Renderer2","line":23,"character":66}]}],"ngOnInit":[{"__symbolic":"method"}],"validate":[{"__symbolic":"method"}],"matchesHex":[{"__symbolic":"method"}]}},"ɵd":{"__symbolic":"class","extends":{"__symbolic":"reference","name":"ɵe"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":4,"character":1},"arguments":[{"selector":"kms-formControlParent","template":""}]}],"members":{"defaultDataOverride":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":9,"character":5}}]}],"onSelectItemEmitter":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":10,"character":5}}]}],"child":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"ViewChild","line":12,"character":5},"arguments":["child"]}]}],"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"reference","module":"@angular/forms","name":"FormBuilder","line":16,"character":36},{"__symbolic":"reference","module":"@angular/core","name":"Renderer2","line":16,"character":66}]}],"ngOnInit":[{"__symbolic":"method"}],"change":[{"__symbolic":"method"}],"writeValue":[{"__symbolic":"method"}],"registerOnChange":[{"__symbolic":"method"}],"registerOnTouched":[{"__symbolic":"method"}],"setDisabledState":[{"__symbolic":"method"}],"validate":[{"__symbolic":"method"}]}},"ɵe":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":7,"character":1},"arguments":[{"selector":"kms-form","template":""}]}],"members":{"formDataChanged":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":16,"character":5}}]}],"disabled":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":18,"character":5}}]}],"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"reference","module":"@angular/forms","name":"FormBuilder","line":21,"character":28}]}],"checkIfKeyWasNumber":[{"__symbolic":"method"}],"removeNumbersOnType":[{"__symbolic":"method"}],"removeNumbersOnPaste":[{"__symbolic":"method"}],"ngOnInit":[{"__symbolic":"method"}]}},"ɵf":{"__symbolic":"class","extends":{"__symbolic":"reference","name":"ɵa"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":8,"character":1},"arguments":[{"selector":"kms-radiobutton","providers":[{"provide":{"__symbolic":"reference","module":"@angular/forms","name":"NG_VALUE_ACCESSOR","line":14,"character":21},"useExisting":{"__symbolic":"reference","name":"ɵf"},"multi":true}],"template":"<label class=\"wrapper ui-small-text\"\n [ngClass]=\"{'disabled' : disabled}\">\n <input type=\"radio\"\n [name]=\"name\"\n [value]=\"value\"\n [checked]=\"checked\"\n [disabled]=\"disabled\"\n [id]=\"id\"\n (change)=\"selectAction($event)\">{{label}}\n\n <kms-icon\n class=\"checkmark\" \n aria-hidden=\"true\"\n *ngIf=\"checked\"\n [ngClass]=\"{\n 'disabled' : disabled\n }\"\n [iconClass]=\"{\n 'disabled' : disabled, \n 'color-primary': true,\n 'size-16': true\n }\"\n [icon]=\"'ic_radiobutton_active'\"\n >\n </kms-icon>\n <kms-icon\n class=\"checkmark\" \n aria-hidden=\"true\"\n *ngIf=\"!checked\"\n [ngClass]=\"{\n 'disabled' : disabled\n }\"\n [iconClass]=\"{\n 'disabled' : disabled, \n 'color-primary': true,\n 'size-16': true\n }\"\n [icon]=\"'ic_radiobutton_inactive'\"\n >\n </kms-icon>\n <ng-content></ng-content>\n</label>\n","styles":[".wrapper{position:relative;display:inline-block;padding-left:35px;cursor:pointer}.wrapper input{position:absolute;opacity:0;cursor:pointer;height:0;width:0}.wrapper.disabled{cursor:default}"]}]}],"members":{"name":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":25,"character":5}}]}],"id":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":30,"character":5}}]}],"formControl":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":32,"character":5}}]}],"selectAction":[{"__symbolic":"method"}],"__ctor__":[{"__symbolic":"constructor"}],"writeValue":[{"__symbolic":"method"}],"registerOnChange":[{"__symbolic":"method"}],"registerOnTouched":[{"__symbolic":"method"}]}},"ɵg":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":3,"character":1},"arguments":[{"selector":"kms-time-input","providers":[{"provide":{"__symbolic":"reference","module":"@angular/forms","name":"NG_VALUE_ACCESSOR","line":9,"character":21},"useExisting":{"__symbolic":"reference","name":"ɵg"},"multi":true}],"template":"<form [formGroup]=\"form\" class=\"timeInput\">\n <input formControlName=\"h\" [value]=\"h\" maxlength=\"2\" />\n <span>:</span>\n <input formControlName=\"m\" [value]=\"m\" maxlength=\"2\" />\n</form>","styles":[".timeInput{display:inline}.timeInput input{width:2em;margin-right:4px;margin-left:4px;font-size:16px}"]}]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"reference","module":"@angular/forms","name":"FormBuilder","line":20,"character":36}]}],"writeValue":[{"__symbolic":"method"}],"ngOnInit":[{"__symbolic":"method"}],"getNewOrDefault":[{"__symbolic":"method"}],"registerOnChange":[{"__symbolic":"method"}],"registerOnTouched":[{"__symbolic":"method"}]}},"ɵh":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":4,"character":1},"arguments":[{"selector":"kms-yesno-radiogroup","providers":[{"provide":{"__symbolic":"reference","module":"@angular/forms","name":"NG_VALUE_ACCESSOR","line":9,"character":21},"useExisting":{"__symbolic":"reference","name":"ɵh"},"multi":true}],"template":"<form [formGroup]=\"form\">\n <div>{{ header }}</div>\n <mat-radio-group [formControl]=\"form.controls['yesno']\" [disabled]=\"disabled\" #child>\n <mat-radio-button [value]=\"true\" [checked]=\"internalValue === true\"> {{ textYes }}</mat-radio-button>\n <mat-radio-button [value]=\"false\" [checked]=\"internalValue === false\"> {{ textNo }}</mat-radio-button>\n </mat-radio-group>\n</form>\n"}]}],"members":{"header":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":17,"character":5}}]}],"disabled":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":18,"character":5}}]}],"textYes":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":19,"character":5}}]}],"textNo":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":20,"character":5}}]}],"child":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"ViewChild","line":23,"character":5},"arguments":["child"]}]}],"writeValue":[{"__symbolic":"method"}],"registerOnChange":[{"__symbolic":"method"}],"registerOnTouched":[{"__symbolic":"method"}],"setDisabledState":[{"__symbolic":"method"}],"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"reference","module":"@angular/forms","name":"FormBuilder","line":64,"character":36},{"__symbolic":"reference","module":"@angular/core","name":"Renderer2","line":64,"character":66}]}],"ngOnInit":[{"__symbolic":"method"}]}},"ɵi":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":20,"character":1},"arguments":[{"selector":"kms-file-input","providers":[{"provide":{"__symbolic":"reference","module":"@angular/forms","name":"NG_VALUE_ACCESSOR","line":26,"character":21},"useExisting":{"__symbolic":"reference","name":"ɵi"},"multi":true},{"provide":{"__symbolic":"reference","module":"@angular/forms","name":"NG_VALIDATORS","line":31,"character":21},"useExisting":{"__symbolic":"reference","name":"ɵi"},"multi":true}],"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\" [iconSize]=\"IconSize.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":[""]}]}],"members":{"fileInput":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"ViewChild","line":40,"character":5},"arguments":["fileInput"]}]}],"label":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":42,"character":5}}]}],"previewImage":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":44,"character":5}}]}],"allowRemove":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":45,"character":5}}]}],"previewImageText":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":46,"character":5}}]}],"maxSizeBytes":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":47,"character":5}}]}],"resizePixels":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":48,"character":5}}]}],"acceptedFileMimetypes":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":49,"character":5}}]}],"formDataChanged":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":64,"character":5}}]}],"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"reference","module":"@angular/forms","name":"FormBuilder","line":75,"character":28},{"__symbolic":"reference","module":"@angular/core","name":"ApplicationRef","line":76,"character":23},{"__symbolic":"reference","module":"@angular/core","name":"ChangeDetectorRef","line":77,"character":19},{"__symbolic":"reference","module":"@angular/core","name":"Renderer2","line":79,"character":25}]}],"selectImageOverlay":[{"__symbolic":"method"}],"selectImage":[{"__symbolic":"method"}],"resizeImage":[{"__symbolic":"method"}],"generateModel":[{"__symbolic":"method"}],"removeFromList":[{"__symbolic":"method"}],"ngOnInit":[{"__symbolic":"method"}],"ngOnDestroy":[{"__symbolic":"method"}],"registerOnChange":[{"__symbolic":"method"}],"registerOnTouched":[{"__symbolic":"method"}],"writeValue":[{"__symbolic":"method"}],"validate":[{"__symbolic":"method"}],"clearInputValue":[{"__symbolic":"method"}]}},"ɵj":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":2,"character":1},"arguments":[{"selector":"kms-loader","template":"<div class=\"loading-spinner-shade\" *ngIf=\"loading\">\n <mat-spinner class=\"spinnerMargin\" color=\"accent\" diameter=\"44\"></mat-spinner>\n</div>\n","styles":[""]}]}],"members":{"loading":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":8,"character":5}}]}],"__ctor__":[{"__symbolic":"constructor"}],"ngOnInit":[{"__symbolic":"method"}]}},"ɵk":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":12,"character":1},"arguments":[{"selector":"kms-flyout","animations":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/animations","name":"trigger","line":18,"character":8},"arguments":["dropdownAnimation",[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/animations","name":"state","line":19,"character":12},"arguments":["true",{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/animations","name":"style","line":21,"character":16},"arguments":[{"height":"{{targetHeight}}","transition":"height {{animationTime}}ms ease-in-out"}]},{"params":{"targetHeight":"300px","animationTime":3000}}]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/animations","name":"state","line":32,"character":12},"arguments":["false",{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/animations","name":"style","line":34,"character":16},"arguments":[{"height":0,"transition":"height {{animationTime}}ms ease-in-out"}]},{"params":{"targetHeight":"300px","opacity":0,"animationTime":3000}}]}]]}],"template":"<div class=\"flyout\"\n [ngClass]=\"{'is-active': isDropdownOpened}\"\n>\n <div class=\"flyout-header\" (click)=\"toggleDropdownHeader()\" [ngClass]=\"headerCssClass\">\n <span [innerHtml]=\"headerTitle | kmsSafeHtml\"></span>\n <span [innerHtml]=\"headerText | kmsSafeHtml\"></span>\n\n <ng-content select=\"[header]\"></ng-content>\n\n <div *ngIf=\"hasButtonForMore\" (click)=\"toggleDropdown()\" class=\"flyout-header-more\">\n <span *ngIf=\"!isDropdownOpened\">\n {{ moreText }}\n </span>\n <span *ngIf=\"isDropdownOpened\">\n {{ lessText }}\n </span>\n <kms-icon [icon]=\"'chevron-down'\"\n [iconClass]=\"{'size-16': true, 'is-rotating180': isDropdownOpened}\" >\n </kms-icon>\n </div>\n </div>\n <div \n class=\"flyout-body\"\n [ngClass]=\"bodyCssClass\"\n tabindex=\"0\"\n [@dropdownAnimation]=\"{value: isDropdownOpened, params: {targetHeight: targetHeight, animationTime: '500'}}\"\n getMaxHeight=\"inner\"\n (sumOfHeight)=\"setDropdownListHeight($event)\"\n #flyoutHeader>\n <div class=\"inner\" #content>\n <ng-content ></ng-content>\n </div>\n </div>\n\n</div>\n","styles":[".flyout{position:relative;display:block;padding:20px 45px}.flyout-header-more{font:normal normal normal 16px/25px var(--fontName-text03);letter-spacing:.26px;color:var(--primaryColor);cursor:pointer}.flyout-header-more kms-icon .icon,.flyout-header-more kms-icon .icon svg{width:16px!important;height:20px!important}.flyout-header-more kms-icon .icon svg use{fill:var(--primaryColor)}.flyout-body{padding:0;margin:0;overflow:hidden;outline:none}"]}]}],"members":{"icon":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":51,"character":5}}]}],"headerCssClass":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":57,"character":5}}]}],"bodyCssClass":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":58,"character":5}}]}],"headerTitle":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":60,"character":5}}]}],"headerText":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":61,"character":5}}]}],"hasButtonForMore":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":62,"character":5}}]}],"moreText":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":63,"character":5}}]}],"lessText":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":64,"character":5}}]}],"content":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"ViewChild","line":67,"character":5},"arguments":["content"]}]}],"flyoutHeader":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"ViewChild","line":69,"character":5},"arguments":["flyoutHeader"]}]}],"toggleDropdownHeader":[{"__symbolic":"method"}],"toggleDropdown":[{"__symbolic":"method"}],"setDropdownListHeight":[{"__symbolic":"method"}]}},"ɵl":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":9,"character":1},"arguments":[{"selector":"kms-icon","template":"<ng-container *ngIf=\"icon !== 'none' && dontUseSprite === false\">\n <span class=\"icon {{ iconSize }}\" [ngClass]=\"iconClass\" [ngStyle]=\"iconStyle\">\n <svg>\n <use\n [attr.xlink:href]=\"\n 'assets/sprite.svg?Version=' + Version + '#' + iconToShow\n \"\n ></use>\n </svg>\n </span>\n</ng-container>\n<ng-container *ngIf=\"icon !== 'none' && dontUseSprite === true\">\n <object\n [data]=\"\n sanitizer.bypassSecurityTrustResourceUrl('assets/icons/' + icon + '')\n \"\n type=\"image/svg+xml\"\n class=\"icon {{ iconSize }}\"\n [ngClass]=\"iconClass\"\n [ngStyle]=\"iconStyle\"\n ></object>\n</ng-container>\n","styles":[""]}]}],"members":{"icon":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":21,"character":5}}]}],"iconClass":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":26,"character":5}}]}],"iconStyle":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":32,"character":5}}]}],"iconSize":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":37,"character":5}}]}],"dontUseSprite":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":43,"character":5}}]}],"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"reference","module":"@angular/platform-browser","name":"DomSanitizer","line":55,"character":34}]}],"ngOnInit":[{"__symbolic":"method"}]}},"ɵm":{"__symbolic":"class","extends":{"__symbolic":"reference","name":"ɵd"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":6,"character":1},"arguments":[{"selector":"kms-enum-radiogroup","providers":[{"provide":{"__symbolic":"reference","module":"@angular/forms","name":"NG_VALUE_ACCESSOR","line":11,"character":21},"useExisting":{"__symbolic":"reference","name":"ɵm"},"multi":true}],"template":"<form [formGroup]=\"form\">\n <div>{{ header }}</div>\n <mat-radio-group [formControl]=\"form.controls['enumData']\" [disabled]=\"disabled\" #child>\n <mat-radio-button [value]=\"choice\" [checked]=\"value === choice\" *ngFor=\"let choice of optionValues\">{{ translationPrefix + '.' + choice | translate }}</mat-radio-button>\n </mat-radio-group>\n</form>"}]}],"members":{"header":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":18,"character":5}}]}],"optionsEnum":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":19,"character":5}}]}],"translationPrefix":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":20,"character":5}}]}],"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"reference","module":"@angular/forms","name":"FormBuilder","line":24,"character":36},{"__symbolic":"reference","module":"@angular/core","name":"Renderer2","line":24,"character":66}]}],"ngOnInit":[{"__symbolic":"method"}]}},"ɵn":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":10,"character":1},"arguments":[{"selector":"kms-accordion-item","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 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>","styles":[""]}]}],"members":{"itemTitle":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":17,"character":5}}]}],"showAsCard":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":20,"character":5}}]}],"isSmall":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":21,"character":5}}]}],"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"reference","module":"@angular/platform-browser","name":"DomSanitizer","line":24,"character":34}]}],"ngOnInit":[{"__symbolic":"method"}]}},"ɵo":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":36,"character":1},"arguments":[{"selector":"kms-map","template":"<div *ngIf=\"geoDataFoundForAddress && widthSet\">\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":[""]}]}],"members":{"data":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":43,"character":5}}]}],"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"reference","name":"ɵp"}]}],"ngOnInit":[{"__symbolic":"method"}],"findLocation":[{"__symbolic":"method"}],"addMarker":[{"__symbolic":"method"}],"setMapWidth":[{"__symbolic":"method"}],"zoomIn":[{"__symbolic":"method"}],"zoomOut":[{"__symbolic":"method"}]}},"ɵp":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Injectable","line":18,"character":1}}],"members":{"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":62,"character":17},"arguments":[{"__symbolic":"reference","module":"@angular/core","name":"PLATFORM_ID","line":62,"character":24}]}]],"parameters":[{"__symbolic":"reference","name":"Object"}]}],"getDocumentHeight":[{"__symbolic":"method"}],"getDocumentWidth":[{"__symbolic":"method"}],"getWindowHeight":[{"__symbolic":"method"}],"getWindowWidth":[{"__symbolic":"method"}],"getCurrentViewPort":[{"__symbolic":"method"}],"getViewportChangedObserver":[{"__symbolic":"method"}],"getViewportResizedObserver":[{"__symbolic":"method"}],"scrollToElementId":[{"__symbolic":"method"}],"scrollToElement":[{"__symbolic":"method"}],"scrollTop":[{"__symbolic":"method"}],"ngOnDestroy":[{"__symbolic":"method"}],"documentSizeChanged":[{"__symbolic":"method"}],"convertWidthToMediaQuery":[{"__symbolic":"method"}],"isPortrait":[{"__symbolic":"method"}],"isLandscape":[{"__symbolic":"method"}]}},"ɵq":{"__symbolic":"class","extends":{"__symbolic":"reference","name":"ɵd"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":7,"character":1},"arguments":[{"selector":"kms-salutation-dropdown","providers":[{"provide":{"__symbolic":"reference","module":"@angular/forms","name":"NG_VALUE_ACCESSOR","line":12,"character":21},"useExisting":{"__symbolic":"reference","name":"ɵq"},"multi":true}],"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>"}]}],"members":{"placeholder":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":19,"character":5}}]}],"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"reference","module":"@angular/forms","name":"FormBuilder","line":25,"character":36},{"__symbolic":"reference","module":"@angular/core","name":"Renderer2","line":25,"character":66}]}],"ngOnInit":[{"__symbolic":"method"}]}},"ɵr":{"__symbolic":"class","extends":{"__symbolic":"reference","name":"ɵd"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":6,"character":1},"arguments":[{"selector":"kms-salutation-radiogroup","providers":[{"provide":{"__symbolic":"reference","module":"@angular/forms","name":"NG_VALUE_ACCESSOR","line":11,"character":21},"useExisting":{"__symbolic":"reference","name":"ɵr"},"multi":true}],"template":"<form [formGroup]=\"form\" >\n <mat-radio-group [formControl]=\"form.controls['salut']\" [disabled]=\"disabled\" #radioGroup>\n <mat-radio-button color=\"primary\" [value]=\"SalutationEnum.NOT_SPECIFIED\" [checked]=\"value === SalutationEnum.NOT_SPECIFIED\">\n {{ 'general.salutation.' + Object.keys(SalutationEnum)[0]?.toLowerCase() | translate }}\n </mat-radio-button>\n <mat-radio-button color=\"primary\" [value]=\"SalutationEnum.MALE\" [checked]=\"value === SalutationEnum.MALE\">\n {{ 'general.salutation.' + Object.keys(SalutationEnum)[1]?.toLowerCase() | translate }}\n </mat-radio-button>\n <mat-radio-button color=\"primary\" [value]=\"SalutationEnum.FEMALE\" [checked]=\"value === SalutationEnum.FEMALE\">\n {{ 'general.salutation.' + Object.keys(SalutationEnum)[2]?.toLowerCase() | translate }}\n </mat-radio-button>\n </mat-radio-group>\n</form>"}]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"reference","module":"@angular/forms","name":"FormBuilder","line":23,"character":36},{"__symbolic":"reference","module":"@angular/core","name":"Renderer2","line":23,"character":66}]}],"ngOnInit":[{"__symbolic":"method"}]}},"ɵs":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":2,"character":1},"arguments":[{"selector":"kms-tooltip-element","template":"<ng-content></ng-content>","styles":["[kmsTooltip]{position:relative}"]}]}],"members":{"tooltipTitle":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":8,"character":5}}]}]}},"ɵt":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":3,"character":1},"arguments":[{"selector":"kms-tooltip-icon","template":"<span\n kmsTooltip\n [tooltipTitle]=\"tooltipTitle\"\n [tooltipText]=\"tooltipText\"\n [tooltipPlacement]=\"placement\"\n [tooltipDelay]=\"delay\"\n [tooltipLinkText]=\"tooltipLinkText\"\n [tooltipLinkUrl]=\"tooltipLinkUrl\"\n>\n <kms-icon icon=\"ic_info\" [iconSize]=\"IconSize.SMALLER\" [iconClass]=\"'color-primary'\"></kms-icon>\n</span>\n","styles":[""]}]}],"members":{"tooltipTitle":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":9,"character":5}}]}],"tooltipText":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":10,"character":5}}]}],"tooltipLinkText":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":11,"character":5}}]}],"tooltipLinkUrl":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":12,"character":5}}]}],"placement":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":14,"character":5}}]}],"delay":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":15,"character":5}}]}]}},"ɵu":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":7,"character":1},"arguments":[{"selector":"kms-back-to-top","template":"<div class=\"scrollToTop\"\n [ngClass]=\"{'show': windowScrolled}\"\n (click)=\"scrollToTop()\">\n <div class=\"scrollToTop-inner\">\n <kms-icon icon=\"floating_button_clear\" iconClass=\"color-white\"></kms-icon>\n </div>\n</div>"}]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject","line":14,"character":17},"arguments":[{"__symbolic":"reference","module":"@angular/core","name":"PLATFORM_ID","line":14,"character":24}]}]],"parameters":[{"__symbolic":"reference","name":"Object"}]}],"onWindowScroll":[{"__symbolic":"method","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"HostListener","line":16,"character":5},"arguments":["window:scroll",[]]}]}],"scrollToTop":[{"__symbolic":"method"}]}},"ɵv":{"__symbolic":"interface"},"ɵw":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":8,"character":1},"arguments":[{"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","styles":[""]}]}],"members":{"disabled":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":14,"character":5}}]}],"buttonText":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":15,"character":5}}]}],"confirmTitle":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":16,"character":5}}]}],"confirmTextYes":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":17,"character":5}}]}],"confirmTextNo":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":18,"character":5}}]}],"onConfirmClosed":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":21,"character":5}}]}],"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"reference","module":"@angular/material/dialog","name":"MatDialog","line":27,"character":23}]}],"ngOnInit":[{"__symbolic":"method"}],"start":[{"__symbolic":"method"}]}},"ɵx":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule","line":17,"character":2},"arguments":[{"declarations":[{"__symbolic":"reference","name":"ɵy"},{"__symbolic":"reference","name":"ɵz"},{"__symbolic":"reference","name":"ɵba"},{"__symbolic":"reference","name":"ɵbb"},{"__symbolic":"reference","name":"ɵbc"},{"__symbolic":"reference","name":"ɵbd"},{"__symbolic":"reference","name":"ɵbe"},{"__symbolic":"reference","name":"ɵbf"},{"__symbolic":"reference","name":"ɵbg"}],"imports":[{"__symbolic":"reference","module":"@angular/common","name":"CommonModule","line":29,"character":15}],"exports":[{"__symbolic":"reference","name":"ɵy"},{"__symbolic":"reference","name":"ɵz"},{"__symbolic":"reference","name":"ɵba"},{"__symbolic":"reference","name":"ɵbb"},{"__symbolic":"reference","name":"ɵbc"},{"__symbolic":"reference","name":"ɵbd"},{"__symbolic":"reference","name":"ɵbe"},{"__symbolic":"reference","name":"ɵbf"},{"__symbolic":"reference","name":"ɵbg"}],"providers":[{"__symbolic":"reference","module":"@angular/common","name":"CurrencyPipe","line":41,"character":17}]}]}],"members":{}},"ɵy":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Pipe","line":7,"character":1},"arguments":[{"name":"kmsIntegerCurrency"}]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"reference","module":"@angular/common","name":"CurrencyPipe","line":11,"character":28}]}],"transform":[{"__symbolic":"method"}]}},"ɵz":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Pipe","line":7,"character":1},"arguments":[{"name":"kmsSafeHtml"}]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"reference","module":"@angular/platform-browser","name":"DomSanitizer","line":11,"character":35}]}],"transform":[{"__symbolic":"method"}]}},"ɵba":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Pipe","line":7,"character":1},"arguments":[{"name":"kmsSafeStyle"}]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"reference","module":"@angular/platform-browser","name":"DomSanitizer","line":11,"character":35}]}],"transform":[{"__symbolic":"method"}]}},"ɵbb":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Pipe","line":7,"character":1},"arguments":[{"name":"kmsSafeSUrl"}]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"reference","module":"@angular/platform-browser","name":"DomSanitizer","line":11,"character":35}]}],"transform":[{"__symbolic":"method"}]}},"ɵbc":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Pipe","line":6,"character":1},"arguments":[{"name":"kmsEncodeUri"}]}],"members":{"transform":[{"__symbolic":"method"}]}},"ɵbd":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Pipe","line":6,"character":1},"arguments":[{"name":"kmsDecodeUri"}]}],"members":{"transform":[{"__symbolic":"method"}]}},"ɵbe":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Pipe","line":2,"character":1},"arguments":[{"name":"kmsTypeOf"}]}],"members":{"transform":[{"__symbolic":"method"}]}},"ɵbf":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Pipe","line":6,"character":1},"arguments":[{"name":"kmsTrim"}]}],"members":{"transform":[{"__symbolic":"method"}]}},"ɵbg":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Pipe","line":6,"character":1},"arguments":[{"name":"kmsToNumber","pure":false}]}],"members":{"transform":[{"__symbolic":"method"}]}}},"origins":{"KmsUiPresentationalService":"./lib/kms-ngx-ui-presentational.service","KmsUiPresentationalComponent":"./lib/kms-ngx-ui-presentational.component","KmsUiPresentationalModule":"./lib/kms-ngx-ui-presentational.module","IconSize":"./lib/models/iconSize.enum","SalutationEnum":"./lib/models/salutation.enum","GenericDialogComponent":"./lib/ui/generic-dialog/generic-dialog.component","ɵa":"./lib/parent-components/actions.component","ɵb":"./lib/ui/checkbox/checkbox.component","ɵc":"./lib/ui/color-input/color-input.component","ɵd":"./lib/parent-components/form-control.component","ɵe":"./lib/parent-components/form.component","ɵf":"./lib/ui/radiobutton/radiobutton.component","ɵg":"./lib/ui/time-input/time-input.component","ɵh":"./lib/ui/yes-no-radiogroup/yes-no-radiogroup.component","ɵi":"./lib/ui/file-input/file-input.component","ɵj":"./lib/ui/loader/loader.component","ɵk":"./lib/ui/flyout/flyout.component","ɵl":"./lib/ui/icon/icon.component","ɵm":"./lib/ui/enum-radiogroup/enum-radiogroup.component","ɵn":"./lib/ui/kms-accordion-item/kms-accordion-item.component","ɵo":"./lib/ui/map/map.component","ɵp":"./lib/services/viewport.service","ɵq":"./lib/ui/salutation-dropdown/salutation-dropdown.component","ɵr":"./lib/ui/salutation-radiogroup/salutation-radiogroup.component","ɵs":"./lib/ui/tooltip/tooltip.component","ɵt":"./lib/ui/tooltip-icon/tooltip-icon.component","ɵu":"./lib/ui/back-to-top/back-to-top.component","ɵv":"./lib/ui/button-with-confirm-dialog/dialog-data.model","ɵw":"./lib/ui/button-with-confirm-dialog/button-with-confirm-dialog.component","ɵx":"./lib/pipes/custom-pipes.module","ɵy":"./lib/pipes/integer-currency.pipe","ɵz":"./lib/pipes/safe-html.pipe","ɵba":"./lib/pipes/safe-style.pipe","ɵbb":"./lib/pipes/safe-url.pipe","ɵbc":"./lib/pipes/encode-uri.pipe","ɵbd":"./lib/pipes/decode-uri.pipe","ɵbe":"./lib/pipes/typeof.pipe","ɵbf":"./lib/pipes/trim.pipe","ɵbg":"./lib/pipes/to-number.pipe"},"importAs":"@kms-ngx-ui/presentational"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @copyright KMS GmbH
|
|
3
|
+
*/
|
|
4
|
+
import { NullAble } from "./types/nullable.type";
|
|
5
|
+
/**
|
|
6
|
+
* Typical basic address data
|
|
7
|
+
*/
|
|
8
|
+
export declare class Address {
|
|
9
|
+
City: NullAble<string>;
|
|
10
|
+
Name1: NullAble<string>;
|
|
11
|
+
Name2: NullAble<string>;
|
|
12
|
+
Street: NullAble<string>;
|
|
13
|
+
Zip: NullAble<string>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* @copyright FLYACTS GmbH 2019
|
|
3
|
+
*/
|
|
4
|
+
export declare enum IconSize {
|
|
5
|
+
FULLSIZE = "size-full",
|
|
6
|
+
TINY = "size-16",
|
|
7
|
+
SMALLER = "size-20",
|
|
8
|
+
SMALL = "size-32",
|
|
9
|
+
MEDIUM = "size-64",
|
|
10
|
+
LARGE = "size-128",
|
|
11
|
+
XL = "size-256",
|
|
12
|
+
XXL = "size-512",
|
|
13
|
+
XXXL = "size-1024",
|
|
14
|
+
NONE = "NONE"
|
|
15
|
+
}
|