@kms-ngx-ui/presentational 0.0.23 → 13.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (164) hide show
  1. package/README.md +28 -28
  2. package/{esm2015/kms-ngx-ui-presentational.js → esm2020/kms-ngx-ui-presentational.mjs} +4 -4
  3. package/{esm2015/lib/directives/directives.module.js → esm2020/lib/directives/directives.module.mjs} +40 -40
  4. package/{esm2015/lib/directives/mousewheel.directive.js → esm2020/lib/directives/mousewheel.directive.mjs} +56 -56
  5. package/{esm2015/lib/directives/sum-of-height.directive.js → esm2020/lib/directives/sum-of-height.directive.mjs} +74 -74
  6. package/{esm2015/lib/directives/swipe.directive.js → esm2020/lib/directives/swipe.directive.mjs} +183 -183
  7. package/esm2020/lib/directives/swipe.model.mjs +5 -0
  8. package/{esm2015/lib/directives/tooltip.directive.js → esm2020/lib/directives/tooltip.directive.mjs} +144 -144
  9. package/{esm2015/lib/kms-ngx-ui-presentational.component.js → esm2020/lib/kms-ngx-ui-presentational.component.mjs} +26 -26
  10. package/{esm2015/lib/kms-ngx-ui-presentational.module.js → esm2020/lib/kms-ngx-ui-presentational.module.mjs} +217 -217
  11. package/{esm2015/lib/kms-ngx-ui-presentational.service.js → esm2020/lib/kms-ngx-ui-presentational.service.mjs} +14 -14
  12. package/esm2020/lib/models/address.model.mjs +6 -0
  13. package/{esm2015/lib/models/iconSize.enum.js → esm2020/lib/models/iconSize.enum.mjs} +17 -17
  14. package/{esm2015/lib/models/image-snippet.model.js → esm2020/lib/models/image-snippet.model.mjs} +18 -18
  15. package/{esm2015/lib/models/index.js → esm2020/lib/models/index.mjs} +5 -5
  16. package/{esm2015/lib/models/is-value.function.js → esm2020/lib/models/is-value.function.mjs} +17 -17
  17. package/{esm2015/lib/models/salutation.enum.js → esm2020/lib/models/salutation.enum.mjs} +8 -8
  18. package/{esm2015/lib/models/types/attached-file-dto.model.js → esm2020/lib/models/types/attached-file-dto.model.mjs} +6 -6
  19. package/{esm2015/lib/models/types/nullable.type.js → esm2020/lib/models/types/nullable.type.mjs} +5 -5
  20. package/{esm2015/lib/parent-components/actions.component.js → esm2020/lib/parent-components/actions.component.mjs} +56 -56
  21. package/{esm2015/lib/parent-components/form-control.component.js → esm2020/lib/parent-components/form-control.component.mjs} +75 -75
  22. package/{esm2015/lib/parent-components/form.component.js → esm2020/lib/parent-components/form.component.mjs} +78 -78
  23. package/{esm2015/lib/pipes/custom-pipes.module.js → esm2020/lib/pipes/custom-pipes.module.mjs} +71 -71
  24. package/{esm2015/lib/pipes/decode-uri.pipe.js → esm2020/lib/pipes/decode-uri.pipe.mjs} +19 -19
  25. package/{esm2015/lib/pipes/encode-uri.pipe.js → esm2020/lib/pipes/encode-uri.pipe.mjs} +19 -19
  26. package/{esm2015/lib/pipes/integer-currency.pipe.js → esm2020/lib/pipes/integer-currency.pipe.mjs} +27 -27
  27. package/{esm2015/lib/pipes/safe-html.pipe.js → esm2020/lib/pipes/safe-html.pipe.mjs} +23 -23
  28. package/{esm2015/lib/pipes/safe-resource-url.pipe.js → esm2020/lib/pipes/safe-resource-url.pipe.mjs} +23 -23
  29. package/{esm2015/lib/pipes/safe-style.pipe.js → esm2020/lib/pipes/safe-style.pipe.mjs} +23 -23
  30. package/{esm2015/lib/pipes/safe-url.pipe.js → esm2020/lib/pipes/safe-url.pipe.mjs} +23 -23
  31. package/{esm2015/lib/pipes/to-number.pipe.js → esm2020/lib/pipes/to-number.pipe.mjs} +23 -23
  32. package/{esm2015/lib/pipes/trim.pipe.js → esm2020/lib/pipes/trim.pipe.mjs} +20 -20
  33. package/{esm2015/lib/pipes/typeof.pipe.js → esm2020/lib/pipes/typeof.pipe.mjs} +16 -16
  34. package/{esm2015/lib/services/viewport.service.js → esm2020/lib/services/viewport.service.mjs} +216 -216
  35. package/esm2020/lib/ui/back-to-top/back-to-top.component.mjs +49 -0
  36. package/{esm2015/lib/ui/button-with-confirm-dialog/button-response-types.enum.js → esm2020/lib/ui/button-with-confirm-dialog/button-response-types.enum.mjs} +6 -6
  37. package/esm2020/lib/ui/button-with-confirm-dialog/button-with-confirm-dialog.component.mjs +58 -0
  38. package/{esm2015/lib/ui/button-with-confirm-dialog/dialog-data.model.js → esm2020/lib/ui/button-with-confirm-dialog/dialog-data.model.mjs} +2 -2
  39. package/esm2020/lib/ui/checkbox/checkbox.component.mjs +71 -0
  40. package/esm2020/lib/ui/color-input/color-input.component.mjs +76 -0
  41. package/esm2020/lib/ui/dropdown-from-data/dropdown-from-data.component.mjs +165 -0
  42. package/esm2020/lib/ui/enum-radiogroup/enum-radiogroup.component.mjs +53 -0
  43. package/esm2020/lib/ui/file-input/file-input.component.mjs +232 -0
  44. package/esm2020/lib/ui/flyout/flyout.component.mjs +119 -0
  45. package/esm2020/lib/ui/generic-dialog/generic-dialog.component.mjs +54 -0
  46. package/esm2020/lib/ui/icon/icon.component.mjs +48 -0
  47. package/{esm2015/lib/ui/icon/iconSize.enum.js → esm2020/lib/ui/icon/iconSize.enum.mjs} +17 -17
  48. package/esm2020/lib/ui/image-slider/image-slider.component.mjs +189 -0
  49. package/esm2020/lib/ui/kms-accordion-item/kms-accordion-item.component.mjs +40 -0
  50. package/esm2020/lib/ui/loader/loader.component.mjs +21 -0
  51. package/esm2020/lib/ui/map/map.component.mjs +116 -0
  52. package/esm2020/lib/ui/radiobutton/radiobutton.component.mjs +73 -0
  53. package/esm2020/lib/ui/salutation-dropdown/salutation-dropdown.component.mjs +55 -0
  54. package/esm2020/lib/ui/salutation-radiogroup/salutation-radiogroup.component.mjs +49 -0
  55. package/esm2020/lib/ui/time-input/time-input.component.mjs +83 -0
  56. package/esm2020/lib/ui/tooltip/tooltip.component.mjs +16 -0
  57. package/esm2020/lib/ui/tooltip-icon/tooltip-icon.component.mjs +35 -0
  58. package/esm2020/lib/ui/yes-no-radiogroup/yes-no-radiogroup.component.mjs +82 -0
  59. package/{esm2015/public-api.js → esm2020/public-api.mjs} +49 -49
  60. package/fesm2015/kms-ngx-ui-presentational.mjs +3019 -0
  61. package/fesm2015/kms-ngx-ui-presentational.mjs.map +1 -0
  62. package/{fesm2015/kms-ngx-ui-presentational.js → fesm2020/kms-ngx-ui-presentational.mjs} +2869 -2958
  63. package/fesm2020/kms-ngx-ui-presentational.mjs.map +1 -0
  64. package/kms-ngx-ui-presentational.d.ts +5 -5
  65. package/lib/directives/directives.module.d.ts +11 -11
  66. package/lib/directives/mousewheel.directive.d.ts +15 -15
  67. package/lib/directives/sum-of-height.directive.d.ts +31 -31
  68. package/lib/directives/swipe.directive.d.ts +45 -45
  69. package/lib/directives/swipe.model.d.ts +49 -49
  70. package/lib/directives/tooltip.directive.d.ts +29 -29
  71. package/lib/kms-ngx-ui-presentational.component.d.ts +8 -8
  72. package/lib/kms-ngx-ui-presentational.module.d.ts +47 -47
  73. package/lib/kms-ngx-ui-presentational.service.d.ts +6 -6
  74. package/lib/models/address.model.d.ts +14 -14
  75. package/lib/models/iconSize.enum.d.ts +15 -15
  76. package/lib/models/image-snippet.model.d.ts +15 -15
  77. package/lib/models/index.d.ts +4 -4
  78. package/lib/models/is-value.function.d.ts +9 -9
  79. package/lib/models/salutation.enum.d.ts +5 -5
  80. package/lib/models/types/attached-file-dto.model.d.ts +11 -11
  81. package/lib/models/types/nullable.type.d.ts +4 -4
  82. package/lib/parent-components/actions.component.d.ts +31 -31
  83. package/lib/parent-components/form-control.component.d.ts +27 -27
  84. package/lib/parent-components/form.component.d.ts +34 -34
  85. package/lib/pipes/custom-pipes.module.d.ts +17 -17
  86. package/lib/pipes/decode-uri.pipe.d.ts +10 -10
  87. package/lib/pipes/encode-uri.pipe.d.ts +10 -10
  88. package/lib/pipes/integer-currency.pipe.d.ts +13 -13
  89. package/lib/pipes/safe-html.pipe.d.ts +13 -13
  90. package/lib/pipes/safe-resource-url.pipe.d.ts +13 -13
  91. package/lib/pipes/safe-style.pipe.d.ts +13 -13
  92. package/lib/pipes/safe-url.pipe.d.ts +13 -13
  93. package/lib/pipes/to-number.pipe.d.ts +10 -10
  94. package/lib/pipes/trim.pipe.d.ts +10 -10
  95. package/lib/pipes/typeof.pipe.d.ts +7 -7
  96. package/lib/services/viewport.service.d.ts +74 -74
  97. package/lib/ui/back-to-top/back-to-top.component.d.ts +10 -10
  98. package/lib/ui/button-with-confirm-dialog/button-response-types.enum.d.ts +4 -4
  99. package/lib/ui/button-with-confirm-dialog/button-with-confirm-dialog.component.d.ts +19 -19
  100. package/lib/ui/button-with-confirm-dialog/dialog-data.model.d.ts +9 -9
  101. package/lib/ui/checkbox/checkbox.component.d.ts +31 -31
  102. package/lib/ui/color-input/color-input.component.d.ts +19 -19
  103. package/lib/ui/dropdown-from-data/dropdown-from-data.component.d.ts +55 -55
  104. package/lib/ui/enum-radiogroup/enum-radiogroup.component.d.ts +17 -17
  105. package/lib/ui/file-input/file-input.component.d.ts +89 -89
  106. package/lib/ui/flyout/flyout.component.d.ts +32 -32
  107. package/lib/ui/generic-dialog/generic-dialog.component.d.ts +26 -26
  108. package/lib/ui/icon/icon.component.d.ts +42 -42
  109. package/lib/ui/icon/iconSize.enum.d.ts +15 -15
  110. package/lib/ui/image-slider/image-slider.component.d.ts +62 -62
  111. package/lib/ui/kms-accordion-item/kms-accordion-item.component.d.ts +22 -22
  112. package/lib/ui/loader/loader.component.d.ts +9 -9
  113. package/lib/ui/map/map.component.d.ts +69 -69
  114. package/lib/ui/radiobutton/radiobutton.component.d.ts +26 -26
  115. package/lib/ui/salutation-dropdown/salutation-dropdown.component.d.ts +17 -17
  116. package/lib/ui/salutation-radiogroup/salutation-radiogroup.component.d.ts +15 -15
  117. package/lib/ui/time-input/time-input.component.d.ts +22 -22
  118. package/lib/ui/tooltip/tooltip.component.d.ts +6 -6
  119. package/lib/ui/tooltip-icon/tooltip-icon.component.d.ts +13 -13
  120. package/lib/ui/yes-no-radiogroup/yes-no-radiogroup.component.d.ts +27 -27
  121. package/package.json +25 -12
  122. package/public-api.d.ts +45 -45
  123. package/src/lib/ui/back-to-top/back-to-top.component.scss +46 -46
  124. package/src/lib/ui/button-with-confirm-dialog/button-with-confirm-dialog.component.scss +2 -2
  125. package/src/lib/ui/checkbox/checkbox.component.scss +48 -48
  126. package/src/lib/ui/color-input/color-input.component.scss +38 -38
  127. package/src/lib/ui/file-input/file-input.component.scss +2 -2
  128. package/src/lib/ui/flyout/flyout.component.scss +34 -34
  129. package/src/lib/ui/generic-dialog/generic-dialog.component.scss +59 -59
  130. package/src/lib/ui/icon/icon.component.scss +148 -148
  131. package/src/lib/ui/image-slider/image-slider.component.scss +219 -219
  132. package/src/lib/ui/kms-accordion-item/kms-accordion-item.component.scss +95 -95
  133. package/src/lib/ui/radiobutton/radiobutton.component.scss +31 -31
  134. package/src/lib/ui/time-input/time-input.component.scss +10 -10
  135. package/src/lib/ui/tooltip/tooltip.component.scss +26 -26
  136. package/src/lib/ui/tooltip-icon/tooltip-icon.component.scss +2 -2
  137. package/src/styles/mixins.scss +8 -8
  138. package/src/styles/styles.scss +30 -30
  139. package/bundles/kms-ngx-ui-presentational.umd.js +0 -3628
  140. package/bundles/kms-ngx-ui-presentational.umd.js.map +0 -1
  141. package/esm2015/lib/directives/swipe.model.js +0 -5
  142. package/esm2015/lib/models/address.model.js +0 -6
  143. package/esm2015/lib/ui/back-to-top/back-to-top.component.js +0 -52
  144. package/esm2015/lib/ui/button-with-confirm-dialog/button-with-confirm-dialog.component.js +0 -62
  145. package/esm2015/lib/ui/checkbox/checkbox.component.js +0 -76
  146. package/esm2015/lib/ui/color-input/color-input.component.js +0 -81
  147. package/esm2015/lib/ui/dropdown-from-data/dropdown-from-data.component.js +0 -169
  148. package/esm2015/lib/ui/enum-radiogroup/enum-radiogroup.component.js +0 -57
  149. package/esm2015/lib/ui/file-input/file-input.component.js +0 -237
  150. package/esm2015/lib/ui/flyout/flyout.component.js +0 -124
  151. package/esm2015/lib/ui/generic-dialog/generic-dialog.component.js +0 -58
  152. package/esm2015/lib/ui/icon/icon.component.js +0 -52
  153. package/esm2015/lib/ui/image-slider/image-slider.component.js +0 -193
  154. package/esm2015/lib/ui/kms-accordion-item/kms-accordion-item.component.js +0 -44
  155. package/esm2015/lib/ui/loader/loader.component.js +0 -25
  156. package/esm2015/lib/ui/map/map.component.js +0 -120
  157. package/esm2015/lib/ui/radiobutton/radiobutton.component.js +0 -78
  158. package/esm2015/lib/ui/salutation-dropdown/salutation-dropdown.component.js +0 -59
  159. package/esm2015/lib/ui/salutation-radiogroup/salutation-radiogroup.component.js +0 -53
  160. package/esm2015/lib/ui/time-input/time-input.component.js +0 -88
  161. package/esm2015/lib/ui/tooltip/tooltip.component.js +0 -20
  162. package/esm2015/lib/ui/tooltip-icon/tooltip-icon.component.js +0 -39
  163. package/esm2015/lib/ui/yes-no-radiogroup/yes-no-radiogroup.component.js +0 -86
  164. package/fesm2015/kms-ngx-ui-presentational.js.map +0 -1
@@ -1,13 +1,13 @@
1
- import { IconSize } from '../../models';
2
- import * as i0 from "@angular/core";
3
- export declare class TooltipIconComponent {
4
- tooltipTitle: string;
5
- tooltipText: string;
6
- tooltipLinkText: string;
7
- tooltipLinkUrl: string;
8
- placement: string;
9
- delay: number;
10
- IconSize: typeof IconSize;
11
- static ɵfac: i0.ɵɵFactoryDeclaration<TooltipIconComponent, never>;
12
- static ɵcmp: i0.ɵɵComponentDeclaration<TooltipIconComponent, "kms-tooltip-icon", never, { "tooltipTitle": "tooltipTitle"; "tooltipText": "tooltipText"; "tooltipLinkText": "tooltipLinkText"; "tooltipLinkUrl": "tooltipLinkUrl"; "placement": "placement"; "delay": "delay"; }, {}, never, never>;
13
- }
1
+ import { IconSize } from '../../models';
2
+ import * as i0 from "@angular/core";
3
+ export declare class TooltipIconComponent {
4
+ tooltipTitle: string;
5
+ tooltipText: string;
6
+ tooltipLinkText: string;
7
+ tooltipLinkUrl: string;
8
+ placement: string;
9
+ delay: number;
10
+ IconSize: typeof IconSize;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<TooltipIconComponent, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<TooltipIconComponent, "kms-tooltip-icon", never, { "tooltipTitle": "tooltipTitle"; "tooltipText": "tooltipText"; "tooltipLinkText": "tooltipLinkText"; "tooltipLinkUrl": "tooltipLinkUrl"; "placement": "placement"; "delay": "delay"; }, {}, never, never>;
13
+ }
@@ -1,27 +1,27 @@
1
- import { ElementRef, OnInit, Renderer2 } from '@angular/core';
2
- import { ControlValueAccessor, FormBuilder, FormGroup } from '@angular/forms';
3
- import { NullAble } from '../../models';
4
- import * as i0 from "@angular/core";
5
- export declare class YesNoRadiogroupComponent implements OnInit, ControlValueAccessor {
6
- formBuilder: FormBuilder;
7
- renderer: Renderer2;
8
- header: NullAble<String>;
9
- disabled: boolean;
10
- textYes: string;
11
- textNo: string;
12
- form: FormGroup;
13
- child?: ElementRef<HTMLInputElement>;
14
- internalValue: NullAble<boolean>;
15
- onChange: any;
16
- onTouch: any;
17
- get value(): NullAble<boolean>;
18
- set value(value: NullAble<boolean>);
19
- writeValue(value: any): void;
20
- registerOnChange(fn: any): void;
21
- registerOnTouched(fn: any): void;
22
- setDisabledState?(isDisabled: boolean): void;
23
- constructor(formBuilder: FormBuilder, renderer: Renderer2);
24
- ngOnInit(): void;
25
- static ɵfac: i0.ɵɵFactoryDeclaration<YesNoRadiogroupComponent, never>;
26
- static ɵcmp: i0.ɵɵComponentDeclaration<YesNoRadiogroupComponent, "kms-yesno-radiogroup", never, { "header": "header"; "disabled": "disabled"; "textYes": "textYes"; "textNo": "textNo"; }, {}, never, never>;
27
- }
1
+ import { ElementRef, OnInit, Renderer2 } from '@angular/core';
2
+ import { ControlValueAccessor, FormBuilder, FormGroup } from '@angular/forms';
3
+ import { NullAble } from '../../models';
4
+ import * as i0 from "@angular/core";
5
+ export declare class YesNoRadiogroupComponent implements OnInit, ControlValueAccessor {
6
+ formBuilder: FormBuilder;
7
+ renderer: Renderer2;
8
+ header: NullAble<String>;
9
+ disabled: boolean;
10
+ textYes: string;
11
+ textNo: string;
12
+ form: FormGroup;
13
+ child?: ElementRef<HTMLInputElement>;
14
+ internalValue: NullAble<boolean>;
15
+ onChange: any;
16
+ onTouch: any;
17
+ get value(): NullAble<boolean>;
18
+ set value(value: NullAble<boolean>);
19
+ writeValue(value: any): void;
20
+ registerOnChange(fn: any): void;
21
+ registerOnTouched(fn: any): void;
22
+ setDisabledState?(isDisabled: boolean): void;
23
+ constructor(formBuilder: FormBuilder, renderer: Renderer2);
24
+ ngOnInit(): void;
25
+ static ɵfac: i0.ɵɵFactoryDeclaration<YesNoRadiogroupComponent, never>;
26
+ static ɵcmp: i0.ɵɵComponentDeclaration<YesNoRadiogroupComponent, "kms-yesno-radiogroup", never, { "header": "header"; "disabled": "disabled"; "textYes": "textYes"; "textNo": "textNo"; }, {}, never, never>;
27
+ }
package/package.json CHANGED
@@ -1,25 +1,38 @@
1
1
  {
2
2
  "name": "@kms-ngx-ui/presentational",
3
- "version": "0.0.23",
3
+ "version": "13.0.0",
4
4
  "peerDependencies": {
5
- "@angular/cdk": "12.2.13",
6
- "@angular/common": "12.2.16",
7
- "@angular/core": "12.2.16",
8
- "@angular/forms": "12.2.16",
5
+ "@angular/cdk": "13.3.9",
6
+ "@angular/common": "13.4.0",
7
+ "@angular/core": "13.4.0",
8
+ "@angular/forms": "13.4.0",
9
9
  "@angular/google-maps": "^12.2.3",
10
10
  "ngx-useful-swiper": "^9.0.5",
11
- "@angular/material": "12.2.13",
11
+ "@angular/material": "13.3.9",
12
12
  "swiper": "^5.4.5"
13
13
  },
14
14
  "dependencies": {
15
15
  "ngx-translate": "0.0.1-security",
16
- "tslib": "^2.0.0"
16
+ "tslib": "^2.4.1"
17
17
  },
18
- "main": "bundles/kms-ngx-ui-presentational.umd.js",
19
- "module": "fesm2015/kms-ngx-ui-presentational.js",
20
- "es2015": "fesm2015/kms-ngx-ui-presentational.js",
21
- "esm2015": "esm2015/kms-ngx-ui-presentational.js",
22
- "fesm2015": "fesm2015/kms-ngx-ui-presentational.js",
18
+ "module": "fesm2015/kms-ngx-ui-presentational.mjs",
19
+ "es2020": "fesm2020/kms-ngx-ui-presentational.mjs",
20
+ "esm2020": "esm2020/kms-ngx-ui-presentational.mjs",
21
+ "fesm2020": "fesm2020/kms-ngx-ui-presentational.mjs",
22
+ "fesm2015": "fesm2015/kms-ngx-ui-presentational.mjs",
23
23
  "typings": "kms-ngx-ui-presentational.d.ts",
24
+ "exports": {
25
+ "./package.json": {
26
+ "default": "./package.json"
27
+ },
28
+ ".": {
29
+ "types": "./kms-ngx-ui-presentational.d.ts",
30
+ "esm2020": "./esm2020/kms-ngx-ui-presentational.mjs",
31
+ "es2020": "./fesm2020/kms-ngx-ui-presentational.mjs",
32
+ "es2015": "./fesm2015/kms-ngx-ui-presentational.mjs",
33
+ "node": "./fesm2015/kms-ngx-ui-presentational.mjs",
34
+ "default": "./fesm2020/kms-ngx-ui-presentational.mjs"
35
+ }
36
+ },
24
37
  "sideEffects": false
25
38
  }
package/public-api.d.ts CHANGED
@@ -1,45 +1,45 @@
1
- export * from './lib/kms-ngx-ui-presentational.service';
2
- export * from './lib/kms-ngx-ui-presentational.component';
3
- export * from './lib/kms-ngx-ui-presentational.module';
4
- export * from './lib/pipes/custom-pipes.module';
5
- export * from './lib/directives/directives.module';
6
- export * from './lib/models/iconSize.enum';
7
- export * from './lib/models/salutation.enum';
8
- export * from './lib/ui/checkbox/checkbox.component';
9
- export * from './lib/ui/color-input/color-input.component';
10
- export * from './lib/ui/radiobutton/radiobutton.component';
11
- export * from './lib/ui/time-input/time-input.component';
12
- export * from './lib/ui/yes-no-radiogroup/yes-no-radiogroup.component';
13
- export * from './lib/ui/file-input/file-input.component';
14
- export * from './lib/ui/loader/loader.component';
15
- export * from './lib/ui/flyout/flyout.component';
16
- export * from './lib/ui/icon/icon.component';
17
- export * from './lib/ui/enum-radiogroup/enum-radiogroup.component';
18
- export * from './lib/ui/kms-accordion-item/kms-accordion-item.component';
19
- export * from './lib/ui/map/map.component';
20
- export * from './lib/ui/salutation-dropdown/salutation-dropdown.component';
21
- export * from './lib/ui/tooltip/tooltip.component';
22
- export * from './lib/ui/tooltip-icon/tooltip-icon.component';
23
- export * from './lib/ui/salutation-radiogroup/salutation-radiogroup.component';
24
- export * from './lib/ui/back-to-top/back-to-top.component';
25
- export * from './lib/ui/button-with-confirm-dialog/button-with-confirm-dialog.component';
26
- export * from './lib/ui/dropdown-from-data/dropdown-from-data.component';
27
- export * from './lib/ui/image-slider/image-slider.component';
28
- export * from './lib/directives/mousewheel.directive';
29
- export * from './lib/directives/sum-of-height.directive';
30
- export * from './lib/directives/swipe.directive';
31
- export * from './lib/directives/tooltip.directive';
32
- export * from './lib/pipes/integer-currency.pipe';
33
- export * from './lib/pipes/decode-uri.pipe';
34
- export * from './lib/pipes/encode-uri.pipe';
35
- export * from './lib/pipes/safe-html.pipe';
36
- export * from './lib/pipes/safe-url.pipe';
37
- export * from './lib/pipes/safe-resource-url.pipe';
38
- export * from './lib/pipes/typeof.pipe';
39
- export * from './lib/pipes/trim.pipe';
40
- export * from './lib/pipes/to-number.pipe';
41
- export * from './lib/pipes/safe-style.pipe';
42
- export * from './lib/parent-components/actions.component';
43
- export * from './lib/ui/generic-dialog/generic-dialog.component';
44
- export * from './lib/services/viewport.service';
45
- export * from './lib/parent-components/form.component';
1
+ export * from './lib/kms-ngx-ui-presentational.service';
2
+ export * from './lib/kms-ngx-ui-presentational.component';
3
+ export * from './lib/kms-ngx-ui-presentational.module';
4
+ export * from './lib/pipes/custom-pipes.module';
5
+ export * from './lib/directives/directives.module';
6
+ export * from './lib/models/iconSize.enum';
7
+ export * from './lib/models/salutation.enum';
8
+ export * from './lib/ui/checkbox/checkbox.component';
9
+ export * from './lib/ui/color-input/color-input.component';
10
+ export * from './lib/ui/radiobutton/radiobutton.component';
11
+ export * from './lib/ui/time-input/time-input.component';
12
+ export * from './lib/ui/yes-no-radiogroup/yes-no-radiogroup.component';
13
+ export * from './lib/ui/file-input/file-input.component';
14
+ export * from './lib/ui/loader/loader.component';
15
+ export * from './lib/ui/flyout/flyout.component';
16
+ export * from './lib/ui/icon/icon.component';
17
+ export * from './lib/ui/enum-radiogroup/enum-radiogroup.component';
18
+ export * from './lib/ui/kms-accordion-item/kms-accordion-item.component';
19
+ export * from './lib/ui/map/map.component';
20
+ export * from './lib/ui/salutation-dropdown/salutation-dropdown.component';
21
+ export * from './lib/ui/tooltip/tooltip.component';
22
+ export * from './lib/ui/tooltip-icon/tooltip-icon.component';
23
+ export * from './lib/ui/salutation-radiogroup/salutation-radiogroup.component';
24
+ export * from './lib/ui/back-to-top/back-to-top.component';
25
+ export * from './lib/ui/button-with-confirm-dialog/button-with-confirm-dialog.component';
26
+ export * from './lib/ui/dropdown-from-data/dropdown-from-data.component';
27
+ export * from './lib/ui/image-slider/image-slider.component';
28
+ export * from './lib/directives/mousewheel.directive';
29
+ export * from './lib/directives/sum-of-height.directive';
30
+ export * from './lib/directives/swipe.directive';
31
+ export * from './lib/directives/tooltip.directive';
32
+ export * from './lib/pipes/integer-currency.pipe';
33
+ export * from './lib/pipes/decode-uri.pipe';
34
+ export * from './lib/pipes/encode-uri.pipe';
35
+ export * from './lib/pipes/safe-html.pipe';
36
+ export * from './lib/pipes/safe-url.pipe';
37
+ export * from './lib/pipes/safe-resource-url.pipe';
38
+ export * from './lib/pipes/typeof.pipe';
39
+ export * from './lib/pipes/trim.pipe';
40
+ export * from './lib/pipes/to-number.pipe';
41
+ export * from './lib/pipes/safe-style.pipe';
42
+ export * from './lib/parent-components/actions.component';
43
+ export * from './lib/ui/generic-dialog/generic-dialog.component';
44
+ export * from './lib/services/viewport.service';
45
+ export * from './lib/parent-components/form.component';
@@ -1,47 +1,47 @@
1
- @mixin back-to-top-theme() {
2
- $size: 48px;
3
-
4
- .scrollToTop {
5
- position: fixed;
6
- bottom: $size;
7
- right: $size;
8
-
9
- transition: all .2s ease-in-out;
10
- text-align: center;
11
- cursor: pointer;
12
- align-items: center;
13
- z-index: 999999;
14
- background-color: white;
15
- border-radius: 50%;
16
-
17
- width: $size;
18
- height: $size;
19
- &-inner{
20
- margin: 2px;
21
- border-radius: 50%;
22
- background-color: var(--primaryColor);
23
-
24
- width: calc(#{$size} - 4px);
25
- height: calc(#{$size} - 4px);
26
- }
27
- &.show {
28
- display: flex;
29
- opacity: 0.75;
30
- transition: all .2s ease-in-out;
31
- }
32
-
33
- }
34
- @media (max-width: $responsive-breakpoint) {
35
- .scrollToTop {
36
- bottom: calc(#{$size} / 2);
37
- right: calc(#{$size} / 2);
38
-
39
- width: calc(#{$size} / 2);
40
- height: calc(#{$size} / 2);
41
- &-inner{
42
- width: calc(#{$size} / 2 - 2px);
43
- height: calc(#{$size} / 2 - 2px);
44
- }
45
- }
46
- }
1
+ @mixin back-to-top-theme() {
2
+ $size: 48px;
3
+
4
+ .scrollToTop {
5
+ position: fixed;
6
+ bottom: $size;
7
+ right: $size;
8
+
9
+ transition: all .2s ease-in-out;
10
+ text-align: center;
11
+ cursor: pointer;
12
+ align-items: center;
13
+ z-index: 999999;
14
+ background-color: white;
15
+ border-radius: 50%;
16
+
17
+ width: $size;
18
+ height: $size;
19
+ &-inner{
20
+ margin: 2px;
21
+ border-radius: 50%;
22
+ background-color: var(--primaryColor);
23
+
24
+ width: calc(#{$size} - 4px);
25
+ height: calc(#{$size} - 4px);
26
+ }
27
+ &.show {
28
+ display: flex;
29
+ opacity: 0.75;
30
+ transition: all .2s ease-in-out;
31
+ }
32
+
33
+ }
34
+ @media (max-width: $responsive-breakpoint) {
35
+ .scrollToTop {
36
+ bottom: calc(#{$size} / 2);
37
+ right: calc(#{$size} / 2);
38
+
39
+ width: calc(#{$size} / 2);
40
+ height: calc(#{$size} / 2);
41
+ &-inner{
42
+ width: calc(#{$size} / 2 - 2px);
43
+ height: calc(#{$size} / 2 - 2px);
44
+ }
45
+ }
46
+ }
47
47
  }
@@ -1,3 +1,3 @@
1
- @mixin button-with-confirm-theme() {
2
-
1
+ @mixin button-with-confirm-theme() {
2
+
3
3
  }
@@ -1,49 +1,49 @@
1
- @mixin checkbox-theme(){
2
- .wrapper {
3
- cursor: pointer;
4
- padding-left: 0px;
5
- display: inline-block;
6
- position: relative;
7
- user-select: none;
8
- -webkit-user-select: none;
9
- -moz-user-select: none;
10
- -ms-user-select: none;
11
- color: aqua;
12
- &:before {
13
- }
14
-
15
- &:hover:before {
16
-
17
- }
18
-
19
- input {
20
- display: none;
21
- }
22
-
23
- input:checked ~ .checkmark {
24
- display: block;
25
- }
26
-
27
- &.disabled {
28
- cursor: default;
29
- pointer-events: none;
30
-
31
- &:before {
32
- }
33
- }
34
- }
35
- .checkmark {
36
- &.disabled {
37
- }
38
- }
39
-
40
- .info {
41
- display: block;
42
- margin-top: 6px;
43
- cursor: default;
44
-
45
- &.disabled {
46
- color: lightgray;
47
- }
48
- }
1
+ @mixin checkbox-theme(){
2
+ .wrapper {
3
+ cursor: pointer;
4
+ padding-left: 0px;
5
+ display: inline-block;
6
+ position: relative;
7
+ user-select: none;
8
+ -webkit-user-select: none;
9
+ -moz-user-select: none;
10
+ -ms-user-select: none;
11
+ color: aqua;
12
+ &:before {
13
+ }
14
+
15
+ &:hover:before {
16
+
17
+ }
18
+
19
+ input {
20
+ display: none;
21
+ }
22
+
23
+ input:checked ~ .checkmark {
24
+ display: block;
25
+ }
26
+
27
+ &.disabled {
28
+ cursor: default;
29
+ pointer-events: none;
30
+
31
+ &:before {
32
+ }
33
+ }
34
+ }
35
+ .checkmark {
36
+ &.disabled {
37
+ }
38
+ }
39
+
40
+ .info {
41
+ display: block;
42
+ margin-top: 6px;
43
+ cursor: default;
44
+
45
+ &.disabled {
46
+ color: lightgray;
47
+ }
48
+ }
49
49
  }
@@ -1,39 +1,39 @@
1
- @mixin color-input-theme(){
2
- .colorInput{
3
- position: relative;
4
- input[type='color']{
5
- display: block;
6
- position: absolute;
7
- width: 20px;
8
- height: 20px;
9
- left: 0;
10
- bottom: 10px;
11
- padding: 0;
12
- margin: 0;
13
- border: 1px solid transparent;
14
- }
15
- input.my-inValid[type='color']{
16
- border: 1px dotted red;
17
- }
18
- input[type='text']{
19
- padding-left: 30px;
20
- }
21
- input.my-inValid[type='text']{
22
- color: red;
23
- }
24
- kms-tooltip-icon{
25
- position: absolute;
26
- right: 0;
27
- top: -10px;
28
- }
29
-
30
- .mat-form-field-label{
31
- padding-left: 30px;
32
- }
33
- .mat-form-field-can-float.mat-focused{
34
- .mat-form-label{
35
- padding-left: 0;
36
- }
37
- }
38
- }
1
+ @mixin color-input-theme(){
2
+ .colorInput{
3
+ position: relative;
4
+ input[type='color']{
5
+ display: block;
6
+ position: absolute;
7
+ width: 20px;
8
+ height: 20px;
9
+ left: 0;
10
+ bottom: 10px;
11
+ padding: 0;
12
+ margin: 0;
13
+ border: 1px solid transparent;
14
+ }
15
+ input.my-inValid[type='color']{
16
+ border: 1px dotted red;
17
+ }
18
+ input[type='text']{
19
+ padding-left: 30px;
20
+ }
21
+ input.my-inValid[type='text']{
22
+ color: red;
23
+ }
24
+ kms-tooltip-icon{
25
+ position: absolute;
26
+ right: 0;
27
+ top: -10px;
28
+ }
29
+
30
+ .mat-form-field-label{
31
+ padding-left: 30px;
32
+ }
33
+ .mat-form-field-can-float.mat-focused{
34
+ .mat-form-label{
35
+ padding-left: 0;
36
+ }
37
+ }
38
+ }
39
39
  }
@@ -1,3 +1,3 @@
1
- @mixin file-input-theme() {
2
-
1
+ @mixin file-input-theme() {
2
+
3
3
  }
@@ -1,35 +1,35 @@
1
- @mixin flyout-theme(){
2
- .flyout{
3
- position: relative;
4
- display: block;
5
- padding: 20px 45px;
6
-
7
- &-header{
8
- &-more{
9
- font: normal normal normal 16px/25px var(--fontName-text03);
10
- letter-spacing: 0.26px;
11
- color: var(--primaryColor);
12
- cursor: pointer;
13
- kms-icon{
14
- .icon{
15
- width: 16px !important;
16
- height: 20px !important;
17
- svg {
18
- width: 16px !important;
19
- height: 20px !important;
20
- use{
21
- fill: var(--primaryColor);
22
- }
23
- }
24
- }
25
- }
26
- }
27
- }
28
- &-body {
29
- padding: 0;
30
- margin: 0;
31
- overflow: hidden;
32
- outline: none;
33
- }
34
- }
1
+ @mixin flyout-theme(){
2
+ .flyout{
3
+ position: relative;
4
+ display: block;
5
+ padding: 20px 45px;
6
+
7
+ &-header{
8
+ &-more{
9
+ font: normal normal normal 16px/25px var(--fontName-text03);
10
+ letter-spacing: 0.26px;
11
+ color: var(--primaryColor);
12
+ cursor: pointer;
13
+ kms-icon{
14
+ .icon{
15
+ width: 16px !important;
16
+ height: 20px !important;
17
+ svg {
18
+ width: 16px !important;
19
+ height: 20px !important;
20
+ use{
21
+ fill: var(--primaryColor);
22
+ }
23
+ }
24
+ }
25
+ }
26
+ }
27
+ }
28
+ &-body {
29
+ padding: 0;
30
+ margin: 0;
31
+ overflow: hidden;
32
+ outline: none;
33
+ }
34
+ }
35
35
  }