@kms-ngx-ui/presentational 16.3.0 → 16.3.2

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.
Files changed (223) hide show
  1. package/jest.config.js +27 -0
  2. package/ng-package.json +13 -0
  3. package/package.json +3 -17
  4. package/src/lib/directives/directives.module.ts +28 -0
  5. package/src/lib/directives/mousewheel.directive.ts +43 -0
  6. package/src/lib/directives/sum-of-height.directive.ts +73 -0
  7. package/src/lib/directives/swipe.directive.ts +193 -0
  8. package/{lib/directives/swipe.model.d.ts → src/lib/directives/swipe.model.ts} +6 -0
  9. package/src/lib/directives/tooltip.directive.spec.ts.BAK +8 -0
  10. package/src/lib/directives/tooltip.directive.ts +121 -0
  11. package/src/lib/kms-ngx-ui-presentational.component.spec.ts +25 -0
  12. package/src/lib/kms-ngx-ui-presentational.component.ts +20 -0
  13. package/src/lib/kms-ngx-ui-presentational.module.ts +124 -0
  14. package/src/lib/kms-ngx-ui-presentational.service.spec.ts +16 -0
  15. package/src/lib/kms-ngx-ui-presentational.service.ts +9 -0
  16. package/src/lib/models/address.model.ts +16 -0
  17. package/src/lib/models/iconSize.enum.ts +17 -0
  18. package/src/lib/models/image-snippet.model.ts +17 -0
  19. package/src/lib/models/is-value.function.ts +20 -0
  20. package/src/lib/models/salutation.enum.ts +6 -0
  21. package/{lib/models/types/attached-file-dto.model.d.ts → src/lib/models/types/attached-file-dto.model.ts} +1 -1
  22. package/{lib/models/types/nullable.type.d.ts → src/lib/models/types/nullable.type.ts} +1 -0
  23. package/src/lib/parent-components/actions.component.ts +43 -0
  24. package/src/lib/parent-components/form-control.component.ts +77 -0
  25. package/src/lib/parent-components/form.component.ts +79 -0
  26. package/src/lib/pipes/custom-pipes.module.ts +48 -0
  27. package/src/lib/pipes/decode-uri.pipe.ts +15 -0
  28. package/src/lib/pipes/encode-uri.pipe.ts +14 -0
  29. package/src/lib/pipes/integer-currency.pipe.ts +22 -0
  30. package/src/lib/pipes/prettyjson.pipe.ts +104 -0
  31. package/src/lib/pipes/safe-html.pipe.ts +17 -0
  32. package/src/lib/pipes/safe-resource-url.pipe.ts +17 -0
  33. package/src/lib/pipes/safe-style.pipe.ts +17 -0
  34. package/src/lib/pipes/safe-url.pipe.ts +17 -0
  35. package/src/lib/pipes/to-number.pipe.ts +19 -0
  36. package/src/lib/pipes/trim.pipe.ts +16 -0
  37. package/src/lib/pipes/typeof.pipe.ts +10 -0
  38. package/src/lib/services/viewport.service.ts +241 -0
  39. package/src/lib/ui/back-to-top/back-to-top.component.html +7 -0
  40. package/src/lib/ui/back-to-top/back-to-top.component.ts +43 -0
  41. package/src/lib/ui/back-to-top/back-to-top.stories.ts +19 -0
  42. package/src/lib/ui/button-with-confirm-dialog/button-response-types.enum.ts +4 -0
  43. package/src/lib/ui/button-with-confirm-dialog/button-with-confirm-dialog.component.html +8 -0
  44. package/src/lib/ui/button-with-confirm-dialog/button-with-confirm-dialog.component.spec.ts.BAK +25 -0
  45. package/src/lib/ui/button-with-confirm-dialog/button-with-confirm-dialog.component.ts +55 -0
  46. package/src/lib/ui/button-with-confirm-dialog/button-with-confirm-dialog.stories.ts +21 -0
  47. package/{lib/ui/button-with-confirm-dialog/dialog-data.model.d.ts → src/lib/ui/button-with-confirm-dialog/dialog-data.model.ts} +4 -3
  48. package/src/lib/ui/checkbox/checkbox.component.html +15 -0
  49. package/src/lib/ui/checkbox/checkbox.component.stories.ts +19 -0
  50. package/src/lib/ui/checkbox/checkbox.component.ts +75 -0
  51. package/src/lib/ui/color-input/color-input.component.html +11 -0
  52. package/src/lib/ui/color-input/color-input.component.spec.ts +44 -0
  53. package/src/lib/ui/color-input/color-input.component.ts +67 -0
  54. package/src/lib/ui/dropdown-from-data/dropdown-from-data.component.html +23 -0
  55. package/src/lib/ui/dropdown-from-data/dropdown-from-data.component.ts +174 -0
  56. package/src/lib/ui/enum-radiogroup/enum-radiogroup.component.html +6 -0
  57. package/src/lib/ui/enum-radiogroup/enum-radiogroup.component.spec.ts.BAK +25 -0
  58. package/src/lib/ui/enum-radiogroup/enum-radiogroup.component.ts +43 -0
  59. package/src/lib/ui/file-input/file-input.component.html +45 -0
  60. package/src/lib/ui/file-input/file-input.component.spec.ts.BAK +25 -0
  61. package/src/lib/ui/file-input/file-input.component.ts +236 -0
  62. package/src/lib/ui/flyout/flyout.component.html +35 -0
  63. package/src/lib/ui/flyout/flyout.component.spec.ts.BAK +30 -0
  64. package/src/lib/ui/flyout/flyout.component.ts +95 -0
  65. package/src/lib/ui/generic-dialog/generic-dialog.component.html +24 -0
  66. package/src/lib/ui/generic-dialog/generic-dialog.component.spec.ts.BAK +43 -0
  67. package/src/lib/ui/generic-dialog/generic-dialog.component.ts +54 -0
  68. package/src/lib/ui/icon/icon.component.html +22 -0
  69. package/src/lib/ui/icon/icon.component.spec.ts.BAK +31 -0
  70. package/src/lib/ui/icon/icon.component.ts +67 -0
  71. package/src/lib/ui/icon/iconSize.enum.ts +17 -0
  72. package/src/lib/ui/image-slider/image-slider.component.html +54 -0
  73. package/src/lib/ui/image-slider/image-slider.component.ts +205 -0
  74. package/src/lib/ui/kms-accordion-item/kms-accordion-item.component.html +22 -0
  75. package/src/lib/ui/kms-accordion-item/kms-accordion-item.component.spec.ts +61 -0
  76. package/src/lib/ui/kms-accordion-item/kms-accordion-item.component.ts +32 -0
  77. package/src/lib/ui/loader/loader.component.html +3 -0
  78. package/src/lib/ui/loader/loader.component.spec.ts.BAK +26 -0
  79. package/src/lib/ui/loader/loader.component.ts +16 -0
  80. package/src/lib/ui/map/map.component.html +18 -0
  81. package/src/lib/ui/map/map.component.spec.ts.BAK +31 -0
  82. package/src/lib/ui/map/map.component.ts +138 -0
  83. package/src/lib/ui/radiobutton/radiobutton.component.html +42 -0
  84. package/src/lib/ui/radiobutton/radiobutton.component.ts +71 -0
  85. package/src/lib/ui/salutation-dropdown/salutation-dropdown.component.html +9 -0
  86. package/src/lib/ui/salutation-dropdown/salutation-dropdown.component.spec.ts.BAK +26 -0
  87. package/src/lib/ui/salutation-dropdown/salutation-dropdown.component.ts +48 -0
  88. package/src/lib/ui/salutation-radiogroup/salutation-radiogroup.component.html +13 -0
  89. package/src/lib/ui/salutation-radiogroup/salutation-radiogroup.component.spec.ts.BAK +25 -0
  90. package/src/lib/ui/salutation-radiogroup/salutation-radiogroup.component.ts +41 -0
  91. package/src/lib/ui/time-input/time-input.component.html +5 -0
  92. package/src/lib/ui/time-input/time-input.component.spec.ts +28 -0
  93. package/src/lib/ui/time-input/time-input.component.ts +88 -0
  94. package/src/lib/ui/tooltip/tooltip.component.html +1 -0
  95. package/src/lib/ui/tooltip/tooltip.component.spec.ts.BAK +26 -0
  96. package/src/lib/ui/tooltip/tooltip.component.ts +10 -0
  97. package/src/lib/ui/tooltip-icon/tooltip-icon.component.html +11 -0
  98. package/src/lib/ui/tooltip-icon/tooltip-icon.component.spec.ts.BAK +28 -0
  99. package/src/lib/ui/tooltip-icon/tooltip-icon.component.ts +19 -0
  100. package/src/lib/ui/yes-no-radiogroup/yes-no-radiogroup.component.html +7 -0
  101. package/src/lib/ui/yes-no-radiogroup/yes-no-radiogroup.component.scss +17 -0
  102. package/src/lib/ui/yes-no-radiogroup/yes-no-radiogroup.component.spec.ts.BAK +25 -0
  103. package/src/lib/ui/yes-no-radiogroup/yes-no-radiogroup.component.ts +79 -0
  104. package/{public-api.d.ts → src/public-api.ts} +8 -0
  105. package/src/styles/styles.scss +3 -1
  106. package/src/test-setup.ts +2 -0
  107. package/tsconfig.lib.json +26 -0
  108. package/tsconfig.lib.prod.json +10 -0
  109. package/tsconfig.spec.json +17 -0
  110. package/tslint.json +17 -0
  111. package/esm2022/kms-ngx-ui-presentational.mjs +0 -5
  112. package/esm2022/lib/directives/directives.module.mjs +0 -40
  113. package/esm2022/lib/directives/mousewheel.directive.mjs +0 -56
  114. package/esm2022/lib/directives/sum-of-height.directive.mjs +0 -74
  115. package/esm2022/lib/directives/swipe.directive.mjs +0 -183
  116. package/esm2022/lib/directives/swipe.model.mjs +0 -5
  117. package/esm2022/lib/directives/tooltip.directive.mjs +0 -144
  118. package/esm2022/lib/kms-ngx-ui-presentational.component.mjs +0 -22
  119. package/esm2022/lib/kms-ngx-ui-presentational.module.mjs +0 -211
  120. package/esm2022/lib/kms-ngx-ui-presentational.service.mjs +0 -14
  121. package/esm2022/lib/models/address.model.mjs +0 -6
  122. package/esm2022/lib/models/iconSize.enum.mjs +0 -17
  123. package/esm2022/lib/models/image-snippet.model.mjs +0 -18
  124. package/esm2022/lib/models/index.mjs +0 -5
  125. package/esm2022/lib/models/is-value.function.mjs +0 -17
  126. package/esm2022/lib/models/salutation.enum.mjs +0 -8
  127. package/esm2022/lib/models/types/attached-file-dto.model.mjs +0 -6
  128. package/esm2022/lib/models/types/nullable.type.mjs +0 -5
  129. package/esm2022/lib/parent-components/actions.component.mjs +0 -56
  130. package/esm2022/lib/parent-components/form-control.component.mjs +0 -75
  131. package/esm2022/lib/parent-components/form.component.mjs +0 -78
  132. package/esm2022/lib/pipes/custom-pipes.module.mjs +0 -71
  133. package/esm2022/lib/pipes/decode-uri.pipe.mjs +0 -19
  134. package/esm2022/lib/pipes/encode-uri.pipe.mjs +0 -19
  135. package/esm2022/lib/pipes/integer-currency.pipe.mjs +0 -27
  136. package/esm2022/lib/pipes/safe-html.pipe.mjs +0 -23
  137. package/esm2022/lib/pipes/safe-resource-url.pipe.mjs +0 -23
  138. package/esm2022/lib/pipes/safe-style.pipe.mjs +0 -23
  139. package/esm2022/lib/pipes/safe-url.pipe.mjs +0 -23
  140. package/esm2022/lib/pipes/to-number.pipe.mjs +0 -23
  141. package/esm2022/lib/pipes/trim.pipe.mjs +0 -20
  142. package/esm2022/lib/pipes/typeof.pipe.mjs +0 -16
  143. package/esm2022/lib/services/viewport.service.mjs +0 -216
  144. package/esm2022/lib/ui/back-to-top/back-to-top.component.mjs +0 -49
  145. package/esm2022/lib/ui/button-with-confirm-dialog/button-response-types.enum.mjs +0 -6
  146. package/esm2022/lib/ui/button-with-confirm-dialog/button-with-confirm-dialog.component.mjs +0 -58
  147. package/esm2022/lib/ui/button-with-confirm-dialog/dialog-data.model.mjs +0 -2
  148. package/esm2022/lib/ui/checkbox/checkbox.component.mjs +0 -71
  149. package/esm2022/lib/ui/color-input/color-input.component.mjs +0 -76
  150. package/esm2022/lib/ui/dropdown-from-data/dropdown-from-data.component.mjs +0 -157
  151. package/esm2022/lib/ui/enum-radiogroup/enum-radiogroup.component.mjs +0 -53
  152. package/esm2022/lib/ui/file-input/file-input.component.mjs +0 -232
  153. package/esm2022/lib/ui/flyout/flyout.component.mjs +0 -119
  154. package/esm2022/lib/ui/generic-dialog/generic-dialog.component.mjs +0 -55
  155. package/esm2022/lib/ui/icon/icon.component.mjs +0 -48
  156. package/esm2022/lib/ui/icon/iconSize.enum.mjs +0 -17
  157. package/esm2022/lib/ui/image-slider/image-slider.component.mjs +0 -189
  158. package/esm2022/lib/ui/kms-accordion-item/kms-accordion-item.component.mjs +0 -40
  159. package/esm2022/lib/ui/loader/loader.component.mjs +0 -21
  160. package/esm2022/lib/ui/map/map.component.mjs +0 -116
  161. package/esm2022/lib/ui/radiobutton/radiobutton.component.mjs +0 -73
  162. package/esm2022/lib/ui/salutation-dropdown/salutation-dropdown.component.mjs +0 -55
  163. package/esm2022/lib/ui/salutation-radiogroup/salutation-radiogroup.component.mjs +0 -49
  164. package/esm2022/lib/ui/time-input/time-input.component.mjs +0 -83
  165. package/esm2022/lib/ui/tooltip/tooltip.component.mjs +0 -16
  166. package/esm2022/lib/ui/tooltip-icon/tooltip-icon.component.mjs +0 -35
  167. package/esm2022/lib/ui/yes-no-radiogroup/yes-no-radiogroup.component.mjs +0 -82
  168. package/esm2022/public-api.mjs +0 -49
  169. package/fesm2022/kms-ngx-ui-presentational.mjs +0 -3003
  170. package/fesm2022/kms-ngx-ui-presentational.mjs.map +0 -1
  171. package/index.d.ts +0 -5
  172. package/lib/directives/directives.module.d.ts +0 -11
  173. package/lib/directives/mousewheel.directive.d.ts +0 -15
  174. package/lib/directives/sum-of-height.directive.d.ts +0 -31
  175. package/lib/directives/swipe.directive.d.ts +0 -45
  176. package/lib/directives/tooltip.directive.d.ts +0 -29
  177. package/lib/kms-ngx-ui-presentational.component.d.ts +0 -8
  178. package/lib/kms-ngx-ui-presentational.module.d.ts +0 -47
  179. package/lib/kms-ngx-ui-presentational.service.d.ts +0 -6
  180. package/lib/models/address.model.d.ts +0 -14
  181. package/lib/models/iconSize.enum.d.ts +0 -15
  182. package/lib/models/image-snippet.model.d.ts +0 -15
  183. package/lib/models/is-value.function.d.ts +0 -9
  184. package/lib/models/salutation.enum.d.ts +0 -5
  185. package/lib/parent-components/actions.component.d.ts +0 -31
  186. package/lib/parent-components/form-control.component.d.ts +0 -27
  187. package/lib/parent-components/form.component.d.ts +0 -34
  188. package/lib/pipes/custom-pipes.module.d.ts +0 -17
  189. package/lib/pipes/decode-uri.pipe.d.ts +0 -10
  190. package/lib/pipes/encode-uri.pipe.d.ts +0 -10
  191. package/lib/pipes/integer-currency.pipe.d.ts +0 -13
  192. package/lib/pipes/safe-html.pipe.d.ts +0 -13
  193. package/lib/pipes/safe-resource-url.pipe.d.ts +0 -13
  194. package/lib/pipes/safe-style.pipe.d.ts +0 -13
  195. package/lib/pipes/safe-url.pipe.d.ts +0 -13
  196. package/lib/pipes/to-number.pipe.d.ts +0 -10
  197. package/lib/pipes/trim.pipe.d.ts +0 -10
  198. package/lib/pipes/typeof.pipe.d.ts +0 -7
  199. package/lib/services/viewport.service.d.ts +0 -74
  200. package/lib/ui/back-to-top/back-to-top.component.d.ts +0 -10
  201. package/lib/ui/button-with-confirm-dialog/button-response-types.enum.d.ts +0 -4
  202. package/lib/ui/button-with-confirm-dialog/button-with-confirm-dialog.component.d.ts +0 -19
  203. package/lib/ui/checkbox/checkbox.component.d.ts +0 -31
  204. package/lib/ui/color-input/color-input.component.d.ts +0 -19
  205. package/lib/ui/dropdown-from-data/dropdown-from-data.component.d.ts +0 -55
  206. package/lib/ui/enum-radiogroup/enum-radiogroup.component.d.ts +0 -17
  207. package/lib/ui/file-input/file-input.component.d.ts +0 -89
  208. package/lib/ui/flyout/flyout.component.d.ts +0 -32
  209. package/lib/ui/generic-dialog/generic-dialog.component.d.ts +0 -26
  210. package/lib/ui/icon/icon.component.d.ts +0 -42
  211. package/lib/ui/icon/iconSize.enum.d.ts +0 -15
  212. package/lib/ui/image-slider/image-slider.component.d.ts +0 -62
  213. package/lib/ui/kms-accordion-item/kms-accordion-item.component.d.ts +0 -22
  214. package/lib/ui/loader/loader.component.d.ts +0 -9
  215. package/lib/ui/map/map.component.d.ts +0 -71
  216. package/lib/ui/radiobutton/radiobutton.component.d.ts +0 -26
  217. package/lib/ui/salutation-dropdown/salutation-dropdown.component.d.ts +0 -17
  218. package/lib/ui/salutation-radiogroup/salutation-radiogroup.component.d.ts +0 -15
  219. package/lib/ui/time-input/time-input.component.d.ts +0 -22
  220. package/lib/ui/tooltip/tooltip.component.d.ts +0 -6
  221. package/lib/ui/tooltip-icon/tooltip-icon.component.d.ts +0 -13
  222. package/lib/ui/yes-no-radiogroup/yes-no-radiogroup.component.d.ts +0 -27
  223. /package/{lib/models/index.d.ts → src/lib/models/index.ts} +0 -0
@@ -1,31 +0,0 @@
1
- /*!
2
- * @copyright FLYACTS GmbH 2019
3
- */
4
- import { AfterContentChecked, ElementRef, EventEmitter } from '@angular/core';
5
- import * as i0 from "@angular/core";
6
- /**
7
- * Directive to calc the height of all inner elements
8
- */
9
- export declare class GetMaxHeightDirective implements AfterContentChecked {
10
- private el;
11
- /**
12
- * CSS class name of the child items (markup elements) that should be checked for their height.
13
- * This is mandatory.
14
- */
15
- cssClassName: string;
16
- /**
17
- * Event that will pass the height of the tallest child inside the container.
18
- * Useful to calculate the target height of containers with different content (like accordion) for animations.
19
- */
20
- maxHeightChanged: EventEmitter<number>;
21
- /**
22
- * Event that will pass the complete sum of all height values from each child.
23
- * Useful to calculate the full target height of a container (like dropdown) for animations.
24
- */
25
- sumOfHeight: EventEmitter<number>;
26
- constructor(el: ElementRef);
27
- ngAfterContentChecked(): void;
28
- private checkHeightOfChildren;
29
- static ɵfac: i0.ɵɵFactoryDeclaration<GetMaxHeightDirective, never>;
30
- static ɵdir: i0.ɵɵDirectiveDeclaration<GetMaxHeightDirective, "[getMaxHeight]", never, { "cssClassName": { "alias": "getMaxHeight"; "required": false; }; }, { "maxHeightChanged": "maxHeightChanged"; "sumOfHeight": "sumOfHeight"; }, never, never, false, never>;
31
- }
@@ -1,45 +0,0 @@
1
- /*!
2
- * @copyright FLYACTS GmbH 2019
3
- */
4
- import { EventEmitter } from '@angular/core';
5
- import { SwipeMoveEvent, SwipeOptions, SwipeReleaseEvent } from './swipe.model';
6
- import * as i0 from "@angular/core";
7
- export declare class SwipeDirective {
8
- /**
9
- * Output Event that is emitted during swipe process (mouse move or touch move event).
10
- * Can be used for calculation purposes.
11
- */
12
- moveEvent: EventEmitter<SwipeMoveEvent>;
13
- /**
14
- * Output Event that is emitted when swipe process end (mouse up or touch end event).
15
- * Can be used for calculation purposes.
16
- */
17
- releaseEvent: EventEmitter<SwipeReleaseEvent>;
18
- private _swipeOptions;
19
- private _moveEventData;
20
- private _startPosition;
21
- private _lastPosX;
22
- private _thresholdWasReached;
23
- private _isMobile;
24
- private _timeStart;
25
- /**
26
- * Needed config that defines swipe behaviour.
27
- * @param options SwipeOptions
28
- */
29
- set config(options: SwipeOptions);
30
- onMouseDown(event: any): void;
31
- onMove(event: any): void;
32
- onRelease(event: any): void;
33
- /**
34
- * Function checks if the current moving delta is inside the defined threshold.
35
- * Sets the flag to true if the threshold was reached once.
36
- */
37
- private checkThreshold;
38
- private calculateStartPosition;
39
- private move;
40
- private release;
41
- private getEasingCurve;
42
- private reset;
43
- static ɵfac: i0.ɵɵFactoryDeclaration<SwipeDirective, never>;
44
- static ɵdir: i0.ɵɵDirectiveDeclaration<SwipeDirective, "[swipeDirective]", never, { "config": { "alias": "swipeDirective"; "required": false; }; }, { "moveEvent": "moveEvent"; "releaseEvent": "releaseEvent"; }, never, never, false, never>;
45
- }
@@ -1,29 +0,0 @@
1
- import { ElementRef, Renderer2 } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export declare class TooltipDirective {
4
- private el;
5
- private renderer;
6
- tooltipTitle: string;
7
- tooltipText: string;
8
- tooltipLinkText: string;
9
- tooltipLinkUrl: string;
10
- tooltipPlacement: string;
11
- tooltipDelay: number;
12
- tooltipPlaceIntoHost: boolean;
13
- tooltipOnlyonclick: boolean;
14
- tooltipElem?: HTMLElement | undefined;
15
- tooltipLinkElem?: HTMLElement | undefined;
16
- tooltipTitleElem?: HTMLElement | undefined;
17
- tooltipTextElem?: HTMLElement | undefined;
18
- offset: number;
19
- constructor(el: ElementRef, renderer: Renderer2);
20
- onMouseEnter(): void;
21
- onClick(): void;
22
- onMouseLeave(): void;
23
- show(): void;
24
- hide(): void;
25
- create(): void;
26
- setPosition(): void;
27
- static ɵfac: i0.ɵɵFactoryDeclaration<TooltipDirective, never>;
28
- static ɵdir: i0.ɵɵDirectiveDeclaration<TooltipDirective, "[kmsTooltip]", never, { "tooltipTitle": { "alias": "tooltipTitle"; "required": false; }; "tooltipText": { "alias": "tooltipText"; "required": false; }; "tooltipLinkText": { "alias": "tooltipLinkText"; "required": false; }; "tooltipLinkUrl": { "alias": "tooltipLinkUrl"; "required": false; }; "tooltipPlacement": { "alias": "tooltipPlacement"; "required": false; }; "tooltipDelay": { "alias": "tooltipDelay"; "required": false; }; "tooltipPlaceIntoHost": { "alias": "tooltipPlaceIntoHost"; "required": false; }; "tooltipOnlyonclick": { "alias": "tooltipOnlyonclick"; "required": false; }; }, {}, never, never, false, never>;
29
- }
@@ -1,8 +0,0 @@
1
- import { OnInit } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export declare class KmsUiPresentationalComponent implements OnInit {
4
- constructor();
5
- ngOnInit(): void;
6
- static ɵfac: i0.ɵɵFactoryDeclaration<KmsUiPresentationalComponent, never>;
7
- static ɵcmp: i0.ɵɵComponentDeclaration<KmsUiPresentationalComponent, "lib-kms-ngx-ui-presentational", never, {}, {}, never, never, false, never>;
8
- }
@@ -1,47 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./parent-components/actions.component";
3
- import * as i2 from "./ui/back-to-top/back-to-top.component";
4
- import * as i3 from "./ui/button-with-confirm-dialog/button-with-confirm-dialog.component";
5
- import * as i4 from "./ui/checkbox/checkbox.component";
6
- import * as i5 from "./ui/color-input/color-input.component";
7
- import * as i6 from "./ui/dropdown-from-data/dropdown-from-data.component";
8
- import * as i7 from "./ui/enum-radiogroup/enum-radiogroup.component";
9
- import * as i8 from "./ui/file-input/file-input.component";
10
- import * as i9 from "./ui/flyout/flyout.component";
11
- import * as i10 from "./ui/generic-dialog/generic-dialog.component";
12
- import * as i11 from "./ui/icon/icon.component";
13
- import * as i12 from "./ui/image-slider/image-slider.component";
14
- import * as i13 from "./ui/kms-accordion-item/kms-accordion-item.component";
15
- import * as i14 from "./kms-ngx-ui-presentational.component";
16
- import * as i15 from "./ui/loader/loader.component";
17
- import * as i16 from "./ui/map/map.component";
18
- import * as i17 from "./ui/radiobutton/radiobutton.component";
19
- import * as i18 from "./ui/salutation-dropdown/salutation-dropdown.component";
20
- import * as i19 from "./ui/salutation-radiogroup/salutation-radiogroup.component";
21
- import * as i20 from "./ui/time-input/time-input.component";
22
- import * as i21 from "./ui/tooltip/tooltip.component";
23
- import * as i22 from "./ui/tooltip-icon/tooltip-icon.component";
24
- import * as i23 from "./ui/yes-no-radiogroup/yes-no-radiogroup.component";
25
- import * as i24 from "@angular/common";
26
- import * as i25 from "@angular/cdk/drag-drop";
27
- import * as i26 from "@angular/material/checkbox";
28
- import * as i27 from "@angular/material/button";
29
- import * as i28 from "@angular/material/radio";
30
- import * as i29 from "@angular/material/dialog";
31
- import * as i30 from "@angular/forms";
32
- import * as i31 from "@angular/material/form-field";
33
- import * as i32 from "@angular/material/input";
34
- import * as i33 from "@angular/material/menu";
35
- import * as i34 from "./pipes/custom-pipes.module";
36
- import * as i35 from "@angular/google-maps";
37
- import * as i36 from "@angular/material/expansion";
38
- import * as i37 from "@angular/material/select";
39
- import * as i38 from "@angular/material/progress-spinner";
40
- import * as i39 from "./directives/directives.module";
41
- import * as i40 from "@ngx-translate/core";
42
- import * as i41 from "ngx-useful-swiper";
43
- export declare class KmsUiPresentationalModule {
44
- static ɵfac: i0.ɵɵFactoryDeclaration<KmsUiPresentationalModule, never>;
45
- static ɵmod: i0.ɵɵNgModuleDeclaration<KmsUiPresentationalModule, [typeof i1.ActionsParentComponent, typeof i2.BackToTopComponent, typeof i3.ButtonWithConfirmDialogComponent, typeof i4.CheckboxComponent, typeof i5.ColorInputComponent, typeof i6.DropdownFromDataComponent, typeof i7.EnumRadiogroupComponent, typeof i7.EnumRadiogroupComponent, typeof i8.FileInputComponent, typeof i9.FlyoutComponent, typeof i10.GenericDialogComponent, typeof i11.IconComponent, typeof i12.ImageSliderComponent, typeof i13.KMSAccordionItemComponent, typeof i14.KmsUiPresentationalComponent, typeof i15.LoaderComponent, typeof i16.MapComponent, typeof i17.RadioButtonComponent, typeof i18.SalutationDropdownComponent, typeof i19.SalutationRadiogroupComponent, typeof i20.TimeInputComponent, typeof i21.TooltipComponent, typeof i22.TooltipIconComponent, typeof i23.YesNoRadiogroupComponent], [typeof i24.CommonModule, typeof i25.DragDropModule, typeof i26.MatCheckboxModule, typeof i27.MatButtonModule, typeof i28.MatRadioModule, typeof i29.MatDialogModule, typeof i30.FormsModule, typeof i30.ReactiveFormsModule, typeof i31.MatFormFieldModule, typeof i32.MatInputModule, typeof i33.MatMenuModule, typeof i34.CustomPipesModule, typeof i35.GoogleMapsModule, typeof i36.MatExpansionModule, typeof i37.MatSelectModule, typeof i38.MatProgressSpinnerModule, typeof i39.DirectivesModule, typeof i40.TranslateModule, typeof i41.NgxUsefulSwiperModule], [typeof i1.ActionsParentComponent, typeof i2.BackToTopComponent, typeof i3.ButtonWithConfirmDialogComponent, typeof i4.CheckboxComponent, typeof i5.ColorInputComponent, typeof i6.DropdownFromDataComponent, typeof i7.EnumRadiogroupComponent, typeof i7.EnumRadiogroupComponent, typeof i8.FileInputComponent, typeof i9.FlyoutComponent, typeof i10.GenericDialogComponent, typeof i11.IconComponent, typeof i12.ImageSliderComponent, typeof i13.KMSAccordionItemComponent, typeof i14.KmsUiPresentationalComponent, typeof i15.LoaderComponent, typeof i16.MapComponent, typeof i17.RadioButtonComponent, typeof i18.SalutationDropdownComponent, typeof i19.SalutationRadiogroupComponent, typeof i20.TimeInputComponent, typeof i21.TooltipComponent, typeof i22.TooltipIconComponent, typeof i23.YesNoRadiogroupComponent]>;
46
- static ɵinj: i0.ɵɵInjectorDeclaration<KmsUiPresentationalModule>;
47
- }
@@ -1,6 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- export declare class KmsUiPresentationalService {
3
- constructor();
4
- static ɵfac: i0.ɵɵFactoryDeclaration<KmsUiPresentationalService, never>;
5
- static ɵprov: i0.ɵɵInjectableDeclaration<KmsUiPresentationalService>;
6
- }
@@ -1,14 +0,0 @@
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
- }
@@ -1,15 +0,0 @@
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
- }
@@ -1,15 +0,0 @@
1
- /**
2
- * General Image Model
3
- */
4
- export declare class ImageSnippet {
5
- src: string;
6
- fileName: string;
7
- srcType: ImageSourceType;
8
- status: string;
9
- constructor(src: string, fileName: string, srcType?: ImageSourceType);
10
- }
11
- export declare enum ImageSourceType {
12
- Ident = "Idnet",
13
- ByteArray = "ByteArray",
14
- URL = "URL"
15
- }
@@ -1,9 +0,0 @@
1
- /**
2
- * @copyright FLYACTS GmbH 2019
3
- */
4
- import { NullAble } from "./types/nullable.type";
5
- /**
6
- * Check if null or undefined
7
- * @param value value that is being checked
8
- */
9
- export declare function isValue<T>(value: NullAble<T>): value is T;
@@ -1,5 +0,0 @@
1
- export declare enum SalutationEnum {
2
- NOT_SPECIFIED = "Keine Anrede",
3
- MALE = "Herr",
4
- FEMALE = "Frau"
5
- }
@@ -1,31 +0,0 @@
1
- /*!
2
- * @copyright FLYACTS GmbH 2019
3
- */
4
- import { EventEmitter } from '@angular/core';
5
- import * as i0 from "@angular/core";
6
- export declare class ActionsParentComponent {
7
- /**
8
- * Defines the disabled property
9
- */
10
- disabled: boolean;
11
- /**
12
- * Set button as selected. F.e. in multiselect component
13
- */
14
- checked: boolean;
15
- /**
16
- * Displayed label.
17
- */
18
- label: string;
19
- /**
20
- * Link
21
- */
22
- link: string;
23
- /**
24
- * Internal value that will be send if a form is submitted.
25
- */
26
- initialValue: string;
27
- select: EventEmitter<any>;
28
- selectAction(id: string): void;
29
- static ɵfac: i0.ɵɵFactoryDeclaration<ActionsParentComponent, never>;
30
- static ɵcmp: i0.ɵɵComponentDeclaration<ActionsParentComponent, "kms-actions", never, { "disabled": { "alias": "disabled"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; "label": { "alias": "label"; "required": false; }; "link": { "alias": "link"; "required": false; }; "initialValue": { "alias": "initialValue"; "required": false; }; }, { "select": "select"; }, never, never, false, never>;
31
- }
@@ -1,27 +0,0 @@
1
- import { ElementRef, EventEmitter, Renderer2 } from '@angular/core';
2
- import { UntypedFormBuilder, UntypedFormControl } from '@angular/forms';
3
- import { FormParentComponent } from './form.component';
4
- import * as i0 from "@angular/core";
5
- export declare class FormControlParentComponent extends FormParentComponent {
6
- formBuilder: UntypedFormBuilder;
7
- renderer: Renderer2;
8
- defaultDataOverride: string;
9
- onSelectItemEmitter: EventEmitter<string>;
10
- child?: ElementRef<HTMLInputElement>;
11
- internalValue: string;
12
- constructor(formBuilder: UntypedFormBuilder, renderer: Renderer2);
13
- ngOnInit(): void;
14
- change(value: string): void;
15
- onChange: any;
16
- onTouch: any;
17
- onTouched: any;
18
- get value(): string;
19
- set value(value: string);
20
- writeValue(value: string): void;
21
- registerOnChange(fn: any): void;
22
- registerOnTouched(fn: any): void;
23
- setDisabledState?(isDisabled: boolean): void;
24
- validate(_: UntypedFormControl): boolean;
25
- static ɵfac: i0.ɵɵFactoryDeclaration<FormControlParentComponent, never>;
26
- static ɵcmp: i0.ɵɵComponentDeclaration<FormControlParentComponent, "kms-formControlParent", never, { "defaultDataOverride": { "alias": "defaultDataOverride"; "required": false; }; }, { "onSelectItemEmitter": "onSelectItemEmitter"; }, never, never, false, never>;
27
- }
@@ -1,34 +0,0 @@
1
- /*!
2
- * @copyright FLYACTS GmbH 2019
3
- */
4
- import { EventEmitter, OnInit } from '@angular/core';
5
- import { UntypedFormBuilder, UntypedFormGroup } from '@angular/forms';
6
- import * as i0 from "@angular/core";
7
- export declare class FormParentComponent implements OnInit {
8
- formBuilder: UntypedFormBuilder;
9
- form: UntypedFormGroup;
10
- formInitialized: boolean;
11
- private allowedCharsOnlyNumbers;
12
- formDataChanged: EventEmitter<UntypedFormGroup>;
13
- disabled: boolean;
14
- constructor(formBuilder: UntypedFormBuilder);
15
- /**
16
- * Returns if a number was pressed
17
- * @param e
18
- * @returns
19
- */
20
- checkIfKeyWasNumber(e: KeyboardEvent, allowDelete?: boolean, allowArrows?: boolean, allowCutCopyPaste?: boolean): boolean;
21
- /**
22
- * Prevents to input other chars than numbers in input
23
- * @param event
24
- */
25
- removeNumbersOnType(event: KeyboardEvent): void;
26
- /**
27
- * Prevents input when pasting which is not number
28
- * @param event
29
- */
30
- removeNumbersOnPaste(event: ClipboardEvent): void;
31
- ngOnInit(): void;
32
- static ɵfac: i0.ɵɵFactoryDeclaration<FormParentComponent, never>;
33
- static ɵcmp: i0.ɵɵComponentDeclaration<FormParentComponent, "kms-form", never, { "disabled": { "alias": "disabled"; "required": false; }; }, { "formDataChanged": "formDataChanged"; }, never, never, false, never>;
34
- }
@@ -1,17 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./integer-currency.pipe";
3
- import * as i2 from "./safe-html.pipe";
4
- import * as i3 from "./safe-style.pipe";
5
- import * as i4 from "./safe-resource-url.pipe";
6
- import * as i5 from "./safe-url.pipe";
7
- import * as i6 from "./encode-uri.pipe";
8
- import * as i7 from "./decode-uri.pipe";
9
- import * as i8 from "./typeof.pipe";
10
- import * as i9 from "./trim.pipe";
11
- import * as i10 from "./to-number.pipe";
12
- import * as i11 from "@angular/common";
13
- export declare class CustomPipesModule {
14
- static ɵfac: i0.ɵɵFactoryDeclaration<CustomPipesModule, never>;
15
- static ɵmod: i0.ɵɵNgModuleDeclaration<CustomPipesModule, [typeof i1.IntegerCurrency, typeof i2.SafeHtmlPipe, typeof i3.SafeStylePipe, typeof i4.SafeResourceUrlPipe, typeof i5.SafeUrlPipe, typeof i6.EncodeUriPipe, typeof i7.DecodeUriPipe, typeof i8.TypeofPipe, typeof i9.TrimPipe, typeof i10.ToNumberPipe], [typeof i11.CommonModule], [typeof i1.IntegerCurrency, typeof i2.SafeHtmlPipe, typeof i3.SafeStylePipe, typeof i4.SafeResourceUrlPipe, typeof i5.SafeUrlPipe, typeof i6.EncodeUriPipe, typeof i7.DecodeUriPipe, typeof i8.TypeofPipe, typeof i9.TrimPipe, typeof i10.ToNumberPipe]>;
16
- static ɵinj: i0.ɵɵInjectorDeclaration<CustomPipesModule>;
17
- }
@@ -1,10 +0,0 @@
1
- /*!
2
- * @copyright FLYACTS GmbH 2019
3
- */
4
- import { PipeTransform } from '@angular/core';
5
- import * as i0 from "@angular/core";
6
- export declare class DecodeUriPipe implements PipeTransform {
7
- transform(value: any, _args?: any): any;
8
- static ɵfac: i0.ɵɵFactoryDeclaration<DecodeUriPipe, never>;
9
- static ɵpipe: i0.ɵɵPipeDeclaration<DecodeUriPipe, "kmsDecodeUri", false>;
10
- }
@@ -1,10 +0,0 @@
1
- /*!
2
- * @copyright FLYACTS GmbH 2019
3
- */
4
- import { PipeTransform } from '@angular/core';
5
- import * as i0 from "@angular/core";
6
- export declare class EncodeUriPipe implements PipeTransform {
7
- transform(value: any, _args?: any): any;
8
- static ɵfac: i0.ɵɵFactoryDeclaration<EncodeUriPipe, never>;
9
- static ɵpipe: i0.ɵɵPipeDeclaration<EncodeUriPipe, "kmsEncodeUri", false>;
10
- }
@@ -1,13 +0,0 @@
1
- /**
2
- * @copyright KMS GmbH
3
- */
4
- import { CurrencyPipe } from '@angular/common';
5
- import { PipeTransform } from '@angular/core';
6
- import * as i0 from "@angular/core";
7
- export declare class IntegerCurrency implements PipeTransform {
8
- private cp;
9
- constructor(cp: CurrencyPipe);
10
- transform(value: any, currencyCode?: string, display?: boolean, digitsInfo?: string): string | null;
11
- static ɵfac: i0.ɵɵFactoryDeclaration<IntegerCurrency, never>;
12
- static ɵpipe: i0.ɵɵPipeDeclaration<IntegerCurrency, "kmsIntegerCurrency", false>;
13
- }
@@ -1,13 +0,0 @@
1
- /*!
2
- * @copyright FLYACTS GmbH 2019
3
- */
4
- import { PipeTransform } from '@angular/core';
5
- import { DomSanitizer, SafeHtml } from '@angular/platform-browser';
6
- import * as i0 from "@angular/core";
7
- export declare class SafeHtmlPipe implements PipeTransform {
8
- private sanitizer;
9
- constructor(sanitizer: DomSanitizer);
10
- transform(html: string): SafeHtml;
11
- static ɵfac: i0.ɵɵFactoryDeclaration<SafeHtmlPipe, never>;
12
- static ɵpipe: i0.ɵɵPipeDeclaration<SafeHtmlPipe, "kmsSafeHtml", false>;
13
- }
@@ -1,13 +0,0 @@
1
- /**
2
- * @copyright KMS GmbH
3
- */
4
- import { PipeTransform } from '@angular/core';
5
- import { DomSanitizer, SafeResourceUrl } from '@angular/platform-browser';
6
- import * as i0 from "@angular/core";
7
- export declare class SafeResourceUrlPipe implements PipeTransform {
8
- private sanitizer;
9
- constructor(sanitizer: DomSanitizer);
10
- transform(url: string): SafeResourceUrl;
11
- static ɵfac: i0.ɵɵFactoryDeclaration<SafeResourceUrlPipe, never>;
12
- static ɵpipe: i0.ɵɵPipeDeclaration<SafeResourceUrlPipe, "kmsSafeResourceSUrl", false>;
13
- }
@@ -1,13 +0,0 @@
1
- /**
2
- * @copyright KMS GmbH
3
- */
4
- import { PipeTransform } from '@angular/core';
5
- import { DomSanitizer, SafeUrl } from '@angular/platform-browser';
6
- import * as i0 from "@angular/core";
7
- export declare class SafeStylePipe implements PipeTransform {
8
- private sanitizer;
9
- constructor(sanitizer: DomSanitizer);
10
- transform(style: string): SafeUrl;
11
- static ɵfac: i0.ɵɵFactoryDeclaration<SafeStylePipe, never>;
12
- static ɵpipe: i0.ɵɵPipeDeclaration<SafeStylePipe, "kmsSafeStyle", false>;
13
- }
@@ -1,13 +0,0 @@
1
- /**
2
- * @copyright KMS GmbH
3
- */
4
- import { PipeTransform } from '@angular/core';
5
- import { DomSanitizer, SafeUrl } from '@angular/platform-browser';
6
- import * as i0 from "@angular/core";
7
- export declare class SafeUrlPipe implements PipeTransform {
8
- private sanitizer;
9
- constructor(sanitizer: DomSanitizer);
10
- transform(url: string): SafeUrl;
11
- static ɵfac: i0.ɵɵFactoryDeclaration<SafeUrlPipe, never>;
12
- static ɵpipe: i0.ɵɵPipeDeclaration<SafeUrlPipe, "kmsSafeSUrl", false>;
13
- }
@@ -1,10 +0,0 @@
1
- /**
2
- * @copyright KMS GmbH
3
- */
4
- import { PipeTransform } from '@angular/core';
5
- import * as i0 from "@angular/core";
6
- export declare class ToNumberPipe implements PipeTransform {
7
- transform(items: any): any;
8
- static ɵfac: i0.ɵɵFactoryDeclaration<ToNumberPipe, never>;
9
- static ɵpipe: i0.ɵɵPipeDeclaration<ToNumberPipe, "kmsToNumber", false>;
10
- }
@@ -1,10 +0,0 @@
1
- /**
2
- * @copyright KMS GmbH
3
- */
4
- import { PipeTransform } from "@angular/core";
5
- import * as i0 from "@angular/core";
6
- export declare class TrimPipe implements PipeTransform {
7
- transform(value: any): any;
8
- static ɵfac: i0.ɵɵFactoryDeclaration<TrimPipe, never>;
9
- static ɵpipe: i0.ɵɵPipeDeclaration<TrimPipe, "kmsTrim", false>;
10
- }
@@ -1,7 +0,0 @@
1
- import { PipeTransform } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export declare class TypeofPipe implements PipeTransform {
4
- transform(value: any): any;
5
- static ɵfac: i0.ɵɵFactoryDeclaration<TypeofPipe, never>;
6
- static ɵpipe: i0.ɵɵPipeDeclaration<TypeofPipe, "kmsTypeOf", false>;
7
- }
@@ -1,74 +0,0 @@
1
- import { OnDestroy } from '@angular/core';
2
- import { Observable } from 'rxjs';
3
- import * as i0 from "@angular/core";
4
- /**
5
- * Service to get viewport
6
- */
7
- export declare class ViewportService implements OnDestroy {
8
- private platformId;
9
- readonly viewports: {
10
- name: string;
11
- low: number;
12
- high: number;
13
- }[];
14
- private viewportChangedSubscriber;
15
- private viewportResizedSubscriber;
16
- private currentViewport;
17
- constructor(platformId: Object);
18
- /**
19
- * Get window height
20
- */
21
- getDocumentHeight(): number;
22
- /**
23
- * Get window width
24
- */
25
- getDocumentWidth(): number;
26
- /**
27
- * Get window height
28
- */
29
- getWindowHeight(): number;
30
- /**
31
- * Get window width
32
- */
33
- getWindowWidth(): number;
34
- /**
35
- * Returns the current viewport MQ as string
36
- * @returns string
37
- */
38
- getCurrentViewPort(): string;
39
- /**
40
- * Provides mq´s as string
41
- */
42
- getViewportChangedObserver(): Observable<string>;
43
- /**
44
- * Provides the current window width as number
45
- */
46
- getViewportResizedObserver(): Observable<number>;
47
- scrollToElementId(el: string, alignCenter?: boolean): void;
48
- /**
49
- * Helper function that scrolls to the given markup element.
50
- * @param el - nativeElement from markup
51
- * @param alignCenter - defines if the element needs to be centered on window
52
- */
53
- scrollToElement(el: HTMLElement, alignCenter?: boolean): void;
54
- /**
55
- * Scroll to the top position
56
- * @param top - top position value
57
- */
58
- scrollTop(top: number): void;
59
- ngOnDestroy(): void;
60
- /**
61
- * If viewport changed
62
- * @event
63
- */
64
- private documentSizeChanged;
65
- /**
66
- * Get the Media Query for the given width
67
- * @param width Width to get the according MQ for
68
- */
69
- private convertWidthToMediaQuery;
70
- isPortrait(): boolean;
71
- isLandscape(): boolean;
72
- static ɵfac: i0.ɵɵFactoryDeclaration<ViewportService, never>;
73
- static ɵprov: i0.ɵɵInjectableDeclaration<ViewportService>;
74
- }
@@ -1,10 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- export declare class BackToTopComponent {
3
- platformId: Object;
4
- windowScrolled?: boolean;
5
- constructor(platformId: Object);
6
- onWindowScroll(): void;
7
- scrollToTop(): void;
8
- static ɵfac: i0.ɵɵFactoryDeclaration<BackToTopComponent, never>;
9
- static ɵcmp: i0.ɵɵComponentDeclaration<BackToTopComponent, "kms-back-to-top", never, {}, {}, never, never, false, never>;
10
- }
@@ -1,4 +0,0 @@
1
- export declare enum ButtonResponseType {
2
- primary = "primary",
3
- secondary = "secondary"
4
- }
@@ -1,19 +0,0 @@
1
- import { EventEmitter, OnInit } from '@angular/core';
2
- import { MatLegacyDialog as MatDialog } from '@angular/material/legacy-dialog';
3
- import { NullAble } from '../../models';
4
- import * as i0 from "@angular/core";
5
- export declare class ButtonWithConfirmDialogComponent implements OnInit {
6
- dialog: MatDialog;
7
- disabled: NullAble<boolean>;
8
- buttonText: NullAble<string>;
9
- confirmTitle: NullAble<string>;
10
- confirmTextYes: NullAble<string>;
11
- confirmTextNo: NullAble<string>;
12
- onConfirmClosed: EventEmitter<boolean>;
13
- private subs;
14
- constructor(dialog: MatDialog);
15
- ngOnInit(): void;
16
- start(): void;
17
- static ɵfac: i0.ɵɵFactoryDeclaration<ButtonWithConfirmDialogComponent, never>;
18
- static ɵcmp: i0.ɵɵComponentDeclaration<ButtonWithConfirmDialogComponent, "kms-button-with-confirm-dialog", never, { "disabled": { "alias": "disabled"; "required": false; }; "buttonText": { "alias": "buttonText"; "required": false; }; "confirmTitle": { "alias": "confirmTitle"; "required": false; }; "confirmTextYes": { "alias": "confirmTextYes"; "required": false; }; "confirmTextNo": { "alias": "confirmTextNo"; "required": false; }; }, { "onConfirmClosed": "onConfirmClosed"; }, never, never, false, never>;
19
- }
@@ -1,31 +0,0 @@
1
- /*!
2
- * @copyright FLYACTS GmbH 2019
3
- */
4
- import { EventEmitter } from '@angular/core';
5
- import { ControlValueAccessor } from '@angular/forms';
6
- import { NullAble } from '../../models';
7
- import { ActionsParentComponent } from '../../parent-components/actions.component';
8
- import * as i0 from "@angular/core";
9
- export declare class CheckboxComponent extends ActionsParentComponent implements ControlValueAccessor {
10
- /**
11
- * Additional description text that will be shown below the checkbox.
12
- */
13
- infoText: NullAble<string>;
14
- /**
15
- * Internal description name. All checkboxes with the same name belong to the same group.
16
- * User can select none, one or all checkboxes with the same name.
17
- */
18
- name: string;
19
- select: EventEmitter<any>;
20
- selectAction(id: string): void;
21
- constructor();
22
- onChange: any;
23
- onTouch: any;
24
- get value(): boolean;
25
- set value(value: boolean);
26
- writeValue(value: any): void;
27
- registerOnChange(fn: any): void;
28
- registerOnTouched(fn: any): void;
29
- static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxComponent, never>;
30
- static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxComponent, "kms-checkbox", never, { "infoText": { "alias": "infoText"; "required": false; }; "name": { "alias": "name"; "required": false; }; }, { "select": "select"; }, never, never, false, never>;
31
- }