@osovitny/anatoly 2.15.11 → 2.16.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 (256) hide show
  1. package/esm2022/lib/anatoly.module.mjs +55 -0
  2. package/{esm2020 → esm2022}/lib/core/browser.mjs +23 -23
  3. package/{esm2020 → esm2022}/lib/core/consts/settings.mjs +16 -16
  4. package/{esm2020 → esm2022}/lib/core/consts/urls.mjs +18 -18
  5. package/{esm2020 → esm2022}/lib/core/converts/convert.mjs +104 -104
  6. package/{esm2020 → esm2022}/lib/core/converts/xmlFormatter.mjs +33 -33
  7. package/esm2022/lib/core/core.module.mjs +89 -0
  8. package/{esm2020 → esm2022}/lib/core/dom.mjs +152 -152
  9. package/esm2022/lib/core/go/base-go.service.mjs +50 -0
  10. package/{esm2020 → esm2022}/lib/core/guards/once-import.guard.mjs +20 -20
  11. package/{esm2020 → esm2022}/lib/core/guid.mjs +21 -21
  12. package/{esm2020 → esm2022}/lib/core/index.mjs +50 -50
  13. package/esm2022/lib/core/interceptors/httpInterceptor.mjs +107 -0
  14. package/esm2022/lib/core/localization/localization.module.mjs +44 -0
  15. package/esm2022/lib/core/localization/localization.service.mjs +184 -0
  16. package/esm2022/lib/core/localization/localizationSettings.module.mjs +90 -0
  17. package/esm2022/lib/core/localization/localize.pipe.mjs +76 -0
  18. package/{esm2020 → esm2022}/lib/core/localization/utils.mjs +41 -41
  19. package/esm2022/lib/core/logging/globalErrorHandler.mjs +42 -0
  20. package/esm2022/lib/core/logging/logging.service.mjs +36 -0
  21. package/{esm2020 → esm2022}/lib/core/notifications/alerts.mjs +105 -105
  22. package/{esm2020 → esm2022}/lib/core/notifications/interfaces/notification.mjs +16 -16
  23. package/esm2022/lib/core/notifications/services/notification-service.mjs +226 -0
  24. package/esm2022/lib/core/performance/stopwatch.mjs +55 -0
  25. package/esm2022/lib/core/services/appcontext.service.mjs +152 -0
  26. package/esm2022/lib/core/services/dm.service.mjs +72 -0
  27. package/esm2022/lib/core/services/google-analytics.service.mjs +55 -0
  28. package/esm2022/lib/core/services/idle.service.mjs +82 -0
  29. package/esm2022/lib/core/services/loading.service.mjs +68 -0
  30. package/esm2022/lib/core/services/web-storage.service.mjs +67 -0
  31. package/esm2022/lib/core/subs.mjs +30 -0
  32. package/{esm2020 → esm2022}/lib/core/utils.mjs +93 -93
  33. package/esm2022/lib/data/base/base-api.service.mjs +99 -0
  34. package/esm2022/lib/data/base/grid/base-grid-edit.service.mjs +83 -0
  35. package/esm2022/lib/data/base/grid/base-grid-read.service.mjs +65 -0
  36. package/{esm2020 → esm2022}/lib/data/consts.mjs +23 -23
  37. package/esm2022/lib/data/data.module.mjs +42 -0
  38. package/{esm2020 → esm2022}/lib/data/index.mjs +21 -21
  39. package/esm2022/lib/data/services/core-api.service.mjs +60 -0
  40. package/esm2022/lib/data/services/emails-api.service.mjs +48 -0
  41. package/esm2022/lib/data/services/notifications/notifications-api-service.mjs +41 -0
  42. package/esm2022/lib/ui/components/base/base-edit.component.mjs +135 -0
  43. package/esm2022/lib/ui/components/base/base.component.mjs +61 -0
  44. package/esm2022/lib/ui/components/base/base.dialog.mjs +67 -0
  45. package/esm2022/lib/ui/components/base/base.list.mjs +69 -0
  46. package/esm2022/lib/ui/components/base/base.page.mjs +31 -0
  47. package/esm2022/lib/ui/components/base/base.paged.page.mjs +66 -0
  48. package/esm2022/lib/ui/components/billing/buyaccess-button.component.mjs +64 -0
  49. package/esm2022/lib/ui/components/billing/subscribe-plan-button.component.mjs +68 -0
  50. package/esm2022/lib/ui/components/card/card-body.component.mjs +30 -0
  51. package/esm2022/lib/ui/components/card/card-footer.component.mjs +30 -0
  52. package/esm2022/lib/ui/components/card/card-header.component.mjs +34 -0
  53. package/esm2022/lib/ui/components/card/card.component.mjs +30 -0
  54. package/esm2022/lib/ui/components/check-icon/check-icon.component.mjs +33 -0
  55. package/esm2022/lib/ui/components/copy-2-clipboard/copy-2-clipboard.component.mjs +44 -0
  56. package/esm2022/lib/ui/components/datapager/datapager.component.mjs +85 -0
  57. package/esm2022/lib/ui/components/html-editor/base-html-editor.component.mjs +96 -0
  58. package/esm2022/lib/ui/components/html-editor/forms-html-editor.component.mjs +45 -0
  59. package/esm2022/lib/ui/components/html-editor/html-editor.component.mjs +49 -0
  60. package/{esm2020 → esm2022}/lib/ui/components/html-editor/html-editor.defaultoptions.mjs +85 -85
  61. package/esm2022/lib/ui/components/identity/signin-button.component.mjs +31 -0
  62. package/esm2022/lib/ui/components/identity/signout-button.component.mjs +31 -0
  63. package/esm2022/lib/ui/components/identity/signup-button.component.mjs +30 -0
  64. package/{esm2020 → esm2022}/lib/ui/components/index.mjs +43 -43
  65. package/esm2022/lib/ui/components/nodata/nodata.component.mjs +46 -0
  66. package/esm2022/lib/ui/components/spinners/loading/loading.component.mjs +49 -0
  67. package/esm2022/lib/ui/components/spinners/pagespinner/pagespinner.component.mjs +62 -0
  68. package/{esm2020 → esm2022}/lib/ui/components/spinners/pagespinner/spinkits.mjs +11 -11
  69. package/esm2022/lib/ui/dialogs/contact-us/contact-us.dialog.mjs +49 -0
  70. package/{esm2020 → esm2022}/lib/ui/dialogs/index.mjs +16 -16
  71. package/esm2022/lib/ui/directives/hover.directive.mjs +45 -0
  72. package/{esm2020 → esm2022}/lib/ui/directives/index.mjs +17 -17
  73. package/esm2022/lib/ui/directives/native-element.directive.mjs +40 -0
  74. package/esm2022/lib/ui/external/fa.module.mjs +45 -0
  75. package/esm2022/lib/ui/external/kendo.module.mjs +90 -0
  76. package/esm2022/lib/ui/forms/components/address/address.component.mjs +141 -0
  77. package/esm2022/lib/ui/forms/components/company/company.component.mjs +94 -0
  78. package/esm2022/lib/ui/forms/components/dropdownlists/timezone/timezone.dropdownlist.mjs +74 -0
  79. package/esm2022/lib/ui/forms/components/urlslug/urlslug.component.mjs +98 -0
  80. package/esm2022/lib/ui/forms/contact-us/contact-us.mjs +124 -0
  81. package/{esm2020 → esm2022}/lib/ui/forms/index.mjs +23 -23
  82. package/esm2022/lib/ui/pipes/filesize.pipe.mjs +40 -0
  83. package/{esm2020 → esm2022}/lib/ui/pipes/index.mjs +18 -18
  84. package/esm2022/lib/ui/pipes/replace-text.pipe.mjs +37 -0
  85. package/esm2022/lib/ui/pipes/safeHtml.pipe.mjs +35 -0
  86. package/esm2022/lib/ui/ui.module.mjs +192 -0
  87. package/esm2022/lib/ui/validation/form-validation-summary.component.mjs +64 -0
  88. package/{esm2020 → esm2022}/lib/ui/validation/index.mjs +18 -18
  89. package/esm2022/lib/ui/validation/item-validation-summary.component.mjs +39 -0
  90. package/{esm2020 → esm2022}/lib/ui/validation/validation-summary.component.mjs +125 -125
  91. package/{esm2020 → esm2022}/osovitny-anatoly.mjs +4 -4
  92. package/{esm2020 → esm2022}/public-api.mjs +24 -24
  93. package/{fesm2015 → fesm2022}/osovitny-anatoly.mjs +5120 -5972
  94. package/fesm2022/osovitny-anatoly.mjs.map +1 -0
  95. package/index.d.ts +5 -5
  96. package/lib/anatoly.module.d.ts +10 -10
  97. package/lib/core/browser.d.ts +4 -4
  98. package/lib/core/consts/settings.d.ts +1 -1
  99. package/lib/core/consts/urls.d.ts +3 -3
  100. package/lib/core/converts/convert.d.ts +16 -16
  101. package/lib/core/converts/xmlFormatter.d.ts +4 -4
  102. package/lib/core/core.module.d.ts +14 -14
  103. package/lib/core/dom.d.ts +17 -17
  104. package/lib/core/go/base-go.service.d.ts +12 -12
  105. package/lib/core/guards/once-import.guard.d.ts +1 -1
  106. package/lib/core/guid.d.ts +3 -3
  107. package/lib/core/index.d.ts +28 -28
  108. package/lib/core/interceptors/httpInterceptor.d.ts +18 -18
  109. package/lib/core/localization/localization.module.d.ts +8 -8
  110. package/lib/core/localization/localization.service.d.ts +25 -25
  111. package/lib/core/localization/localizationSettings.module.d.ts +18 -18
  112. package/lib/core/localization/localize.pipe.d.ts +10 -10
  113. package/lib/core/localization/utils.d.ts +5 -5
  114. package/lib/core/logging/globalErrorHandler.d.ts +9 -9
  115. package/lib/core/logging/logging.service.d.ts +8 -8
  116. package/lib/core/notifications/alerts.d.ts +9 -9
  117. package/lib/core/notifications/interfaces/notification.d.ts +10 -10
  118. package/lib/core/notifications/services/notification-service.d.ts +25 -25
  119. package/lib/core/performance/stopwatch.d.ts +14 -14
  120. package/lib/core/services/appcontext.service.d.ts +31 -31
  121. package/lib/core/services/dm.service.d.ts +16 -16
  122. package/lib/core/services/google-analytics.service.d.ts +11 -11
  123. package/lib/core/services/idle.service.d.ts +19 -19
  124. package/lib/core/services/loading.service.d.ts +13 -13
  125. package/lib/core/services/web-storage.service.d.ts +22 -22
  126. package/lib/core/subs.d.ts +8 -8
  127. package/lib/core/utils.d.ts +11 -11
  128. package/lib/data/base/base-api.service.d.ts +18 -18
  129. package/lib/data/base/grid/base-grid-edit.service.d.ts +16 -16
  130. package/lib/data/base/grid/base-grid-read.service.d.ts +14 -14
  131. package/lib/data/consts.d.ts +5 -5
  132. package/lib/data/data.module.d.ts +7 -7
  133. package/lib/data/index.d.ts +6 -6
  134. package/lib/data/services/core-api.service.d.ts +12 -12
  135. package/lib/data/services/emails-api.service.d.ts +10 -10
  136. package/lib/data/services/notifications/notifications-api-service.d.ts +12 -12
  137. package/lib/ui/components/base/base-edit.component.d.ts +57 -57
  138. package/lib/ui/components/base/base.component.d.ts +17 -17
  139. package/lib/ui/components/base/base.dialog.d.ts +17 -17
  140. package/lib/ui/components/base/base.list.d.ts +19 -19
  141. package/lib/ui/components/base/base.page.d.ts +6 -6
  142. package/lib/ui/components/base/base.paged.page.d.ts +18 -18
  143. package/lib/ui/components/billing/buyaccess-button.component.d.ts +19 -19
  144. package/lib/ui/components/billing/subscribe-plan-button.component.d.ts +21 -21
  145. package/lib/ui/components/card/card-body.component.d.ts +6 -6
  146. package/lib/ui/components/card/card-footer.component.d.ts +6 -6
  147. package/lib/ui/components/card/card-header.component.d.ts +7 -7
  148. package/lib/ui/components/card/card.component.d.ts +6 -6
  149. package/lib/ui/components/check-icon/check-icon.component.d.ts +6 -6
  150. package/lib/ui/components/copy-2-clipboard/copy-2-clipboard.component.d.ts +8 -8
  151. package/lib/ui/components/datapager/datapager.component.d.ts +21 -21
  152. package/lib/ui/components/html-editor/base-html-editor.component.d.ts +21 -21
  153. package/lib/ui/components/html-editor/forms-html-editor.component.d.ts +9 -9
  154. package/lib/ui/components/html-editor/html-editor.component.d.ts +9 -9
  155. package/lib/ui/components/html-editor/html-editor.defaultoptions.d.ts +1 -1
  156. package/lib/ui/components/identity/signin-button.component.d.ts +7 -7
  157. package/lib/ui/components/identity/signout-button.component.d.ts +7 -7
  158. package/lib/ui/components/identity/signup-button.component.d.ts +6 -6
  159. package/lib/ui/components/index.d.ts +25 -25
  160. package/lib/ui/components/nodata/nodata.component.d.ts +11 -11
  161. package/lib/ui/components/spinners/loading/loading.component.d.ts +13 -13
  162. package/lib/ui/components/spinners/pagespinner/pagespinner.component.d.ts +25 -25
  163. package/lib/ui/components/spinners/pagespinner/spinkits.d.ts +11 -11
  164. package/lib/ui/dialogs/contact-us/contact-us.dialog.d.ts +12 -12
  165. package/lib/ui/dialogs/index.d.ts +1 -1
  166. package/lib/ui/directives/hover.directive.d.ts +8 -8
  167. package/lib/ui/directives/index.d.ts +2 -2
  168. package/lib/ui/directives/native-element.directive.d.ts +11 -11
  169. package/lib/ui/external/fa.module.d.ts +10 -10
  170. package/lib/ui/external/kendo.module.d.ts +15 -15
  171. package/lib/ui/forms/components/address/address.component.d.ts +35 -35
  172. package/lib/ui/forms/components/company/company.component.d.ts +20 -20
  173. package/lib/ui/forms/components/dropdownlists/timezone/timezone.dropdownlist.d.ts +26 -26
  174. package/lib/ui/forms/components/urlslug/urlslug.component.d.ts +23 -23
  175. package/lib/ui/forms/contact-us/contact-us.d.ts +33 -33
  176. package/lib/ui/forms/index.d.ts +5 -5
  177. package/lib/ui/pipes/filesize.pipe.d.ts +8 -8
  178. package/lib/ui/pipes/index.d.ts +3 -3
  179. package/lib/ui/pipes/replace-text.pipe.d.ts +7 -7
  180. package/lib/ui/pipes/safeHtml.pipe.d.ts +10 -10
  181. package/lib/ui/ui.module.d.ts +43 -45
  182. package/lib/ui/validation/form-validation-summary.component.d.ts +11 -11
  183. package/lib/ui/validation/index.d.ts +3 -3
  184. package/lib/ui/validation/item-validation-summary.component.d.ts +9 -9
  185. package/lib/ui/validation/validation-summary.component.d.ts +24 -24
  186. package/package.json +10 -16
  187. package/public-api.d.ts +12 -12
  188. package/esm2020/lib/anatoly.module.mjs +0 -56
  189. package/esm2020/lib/core/core.module.mjs +0 -89
  190. package/esm2020/lib/core/go/base-go.service.mjs +0 -48
  191. package/esm2020/lib/core/interceptors/httpInterceptor.mjs +0 -105
  192. package/esm2020/lib/core/localization/localization.module.mjs +0 -45
  193. package/esm2020/lib/core/localization/localization.service.mjs +0 -182
  194. package/esm2020/lib/core/localization/localizationSettings.module.mjs +0 -90
  195. package/esm2020/lib/core/localization/localize.pipe.mjs +0 -75
  196. package/esm2020/lib/core/logging/globalErrorHandler.mjs +0 -41
  197. package/esm2020/lib/core/logging/logging.service.mjs +0 -36
  198. package/esm2020/lib/core/notifications/services/notification-service.mjs +0 -225
  199. package/esm2020/lib/core/performance/stopwatch.mjs +0 -50
  200. package/esm2020/lib/core/services/appcontext.service.mjs +0 -149
  201. package/esm2020/lib/core/services/dm.service.mjs +0 -69
  202. package/esm2020/lib/core/services/google-analytics.service.mjs +0 -53
  203. package/esm2020/lib/core/services/idle.service.mjs +0 -77
  204. package/esm2020/lib/core/services/loading.service.mjs +0 -68
  205. package/esm2020/lib/core/services/web-storage.service.mjs +0 -66
  206. package/esm2020/lib/core/subs.mjs +0 -31
  207. package/esm2020/lib/data/base/base-api.service.mjs +0 -97
  208. package/esm2020/lib/data/base/grid/base-grid-edit.service.mjs +0 -81
  209. package/esm2020/lib/data/base/grid/base-grid-read.service.mjs +0 -62
  210. package/esm2020/lib/data/data.module.mjs +0 -43
  211. package/esm2020/lib/data/services/core-api.service.mjs +0 -59
  212. package/esm2020/lib/data/services/emails-api.service.mjs +0 -47
  213. package/esm2020/lib/data/services/notifications/notifications-api-service.mjs +0 -40
  214. package/esm2020/lib/ui/components/base/base-edit.component.mjs +0 -134
  215. package/esm2020/lib/ui/components/base/base.component.mjs +0 -63
  216. package/esm2020/lib/ui/components/base/base.dialog.mjs +0 -67
  217. package/esm2020/lib/ui/components/base/base.list.mjs +0 -70
  218. package/esm2020/lib/ui/components/base/base.page.mjs +0 -31
  219. package/esm2020/lib/ui/components/base/base.paged.page.mjs +0 -67
  220. package/esm2020/lib/ui/components/billing/buyaccess-button.component.mjs +0 -106
  221. package/esm2020/lib/ui/components/billing/subscribe-plan-button.component.mjs +0 -118
  222. package/esm2020/lib/ui/components/card/card-body.component.mjs +0 -37
  223. package/esm2020/lib/ui/components/card/card-footer.component.mjs +0 -37
  224. package/esm2020/lib/ui/components/card/card-header.component.mjs +0 -52
  225. package/esm2020/lib/ui/components/card/card.component.mjs +0 -41
  226. package/esm2020/lib/ui/components/check-icon/check-icon.component.mjs +0 -42
  227. package/esm2020/lib/ui/components/copy-2-clipboard/copy-2-clipboard.component.mjs +0 -51
  228. package/esm2020/lib/ui/components/datapager/datapager.component.mjs +0 -89
  229. package/esm2020/lib/ui/components/html-editor/base-html-editor.component.mjs +0 -108
  230. package/esm2020/lib/ui/components/html-editor/forms-html-editor.component.mjs +0 -63
  231. package/esm2020/lib/ui/components/html-editor/html-editor.component.mjs +0 -61
  232. package/esm2020/lib/ui/components/identity/signin-button.component.mjs +0 -35
  233. package/esm2020/lib/ui/components/identity/signout-button.component.mjs +0 -35
  234. package/esm2020/lib/ui/components/identity/signup-button.component.mjs +0 -34
  235. package/esm2020/lib/ui/components/nodata/nodata.component.mjs +0 -67
  236. package/esm2020/lib/ui/components/spinners/loading/loading.component.mjs +0 -57
  237. package/esm2020/lib/ui/components/spinners/pagespinner/pagespinner.component.mjs +0 -84
  238. package/esm2020/lib/ui/dialogs/contact-us/contact-us.dialog.mjs +0 -78
  239. package/esm2020/lib/ui/directives/hover.directive.mjs +0 -51
  240. package/esm2020/lib/ui/directives/native-element.directive.mjs +0 -38
  241. package/esm2020/lib/ui/external/fa.module.mjs +0 -46
  242. package/esm2020/lib/ui/external/kendo.module.mjs +0 -91
  243. package/esm2020/lib/ui/forms/components/address/address.component.mjs +0 -242
  244. package/esm2020/lib/ui/forms/components/company/company.component.mjs +0 -142
  245. package/esm2020/lib/ui/forms/components/dropdownlists/timezone/timezone.dropdownlist.mjs +0 -99
  246. package/esm2020/lib/ui/forms/components/urlslug/urlslug.component.mjs +0 -136
  247. package/esm2020/lib/ui/forms/contact-us/contact-us.mjs +0 -212
  248. package/esm2020/lib/ui/pipes/filesize.pipe.mjs +0 -42
  249. package/esm2020/lib/ui/pipes/replace-text.pipe.mjs +0 -37
  250. package/esm2020/lib/ui/pipes/safeHtml.pipe.mjs +0 -34
  251. package/esm2020/lib/ui/ui.module.mjs +0 -193
  252. package/esm2020/lib/ui/validation/form-validation-summary.component.mjs +0 -89
  253. package/esm2020/lib/ui/validation/item-validation-summary.component.mjs +0 -59
  254. package/fesm2015/osovitny-anatoly.mjs.map +0 -1
  255. package/fesm2020/osovitny-anatoly.mjs +0 -5757
  256. package/fesm2020/osovitny-anatoly.mjs.map +0 -1
@@ -1,13 +1,13 @@
1
- import { OnDestroy, OnInit } from '@angular/core';
2
- import { LoadingService } from '../../../../core/services/loading.service';
3
- import * as i0 from "@angular/core";
4
- export declare class LoadingComponent implements OnInit, OnDestroy {
5
- private loadingService;
6
- private subs;
7
- show: boolean;
8
- constructor(loadingService: LoadingService);
9
- ngOnInit(): void;
10
- ngOnDestroy(): void;
11
- static ɵfac: i0.ɵɵFactoryDeclaration<LoadingComponent, never>;
12
- static ɵcmp: i0.ɵɵComponentDeclaration<LoadingComponent, "anatoly-loading", never, {}, {}, never, never, false, never>;
13
- }
1
+ import { OnDestroy, OnInit } from '@angular/core';
2
+ import { LoadingService } from '../../../../core/services/loading.service';
3
+ import * as i0 from "@angular/core";
4
+ export declare class LoadingComponent implements OnInit, OnDestroy {
5
+ private loadingService;
6
+ private subs;
7
+ show: boolean;
8
+ constructor(loadingService: LoadingService);
9
+ ngOnInit(): void;
10
+ ngOnDestroy(): void;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<LoadingComponent, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<LoadingComponent, "anatoly-loading", never, {}, {}, never, never, false, never>;
13
+ }
@@ -1,25 +1,25 @@
1
- import { OnDestroy } from '@angular/core';
2
- import { Router, Event } from '@angular/router';
3
- import * as i0 from "@angular/core";
4
- export declare class PageSpinnerComponent implements OnDestroy {
5
- private router;
6
- isSpinnerVisible: boolean;
7
- Spinkit: {
8
- skChasingDots: string;
9
- skCubeGrid: string;
10
- skDoubleBounce: string;
11
- skRotatingPlane: string;
12
- skSpinnerPulse: string;
13
- skThreeBounce: string;
14
- skWanderingCubes: string;
15
- skWave: string;
16
- skLine: string;
17
- };
18
- backgroundColor: string;
19
- spinner: string;
20
- constructor(router: Router);
21
- checkRouterEvent(routerEvent: Event): void;
22
- ngOnDestroy(): void;
23
- static ɵfac: i0.ɵɵFactoryDeclaration<PageSpinnerComponent, never>;
24
- static ɵcmp: i0.ɵɵComponentDeclaration<PageSpinnerComponent, "anatoly-pagespinner", never, { "backgroundColor": "backgroundColor"; "spinner": "spinner"; }, {}, never, never, false, never>;
25
- }
1
+ import { OnDestroy } from '@angular/core';
2
+ import { Router, Event } from '@angular/router';
3
+ import * as i0 from "@angular/core";
4
+ export declare class PageSpinnerComponent implements OnDestroy {
5
+ private router;
6
+ isSpinnerVisible: boolean;
7
+ Spinkit: {
8
+ skChasingDots: string;
9
+ skCubeGrid: string;
10
+ skDoubleBounce: string;
11
+ skRotatingPlane: string;
12
+ skSpinnerPulse: string;
13
+ skThreeBounce: string;
14
+ skWanderingCubes: string;
15
+ skWave: string;
16
+ skLine: string;
17
+ };
18
+ backgroundColor: string;
19
+ spinner: string;
20
+ constructor(router: Router);
21
+ checkRouterEvent(routerEvent: Event): void;
22
+ ngOnDestroy(): void;
23
+ static ɵfac: i0.ɵɵFactoryDeclaration<PageSpinnerComponent, never>;
24
+ static ɵcmp: i0.ɵɵComponentDeclaration<PageSpinnerComponent, "anatoly-pagespinner", never, { "backgroundColor": { "alias": "backgroundColor"; "required": false; }; "spinner": { "alias": "spinner"; "required": false; }; }, {}, never, never, false, never>;
25
+ }
@@ -1,11 +1,11 @@
1
- export declare const Spinkit: {
2
- skChasingDots: string;
3
- skCubeGrid: string;
4
- skDoubleBounce: string;
5
- skRotatingPlane: string;
6
- skSpinnerPulse: string;
7
- skThreeBounce: string;
8
- skWanderingCubes: string;
9
- skWave: string;
10
- skLine: string;
11
- };
1
+ export declare const Spinkit: {
2
+ skChasingDots: string;
3
+ skCubeGrid: string;
4
+ skDoubleBounce: string;
5
+ skRotatingPlane: string;
6
+ skSpinnerPulse: string;
7
+ skThreeBounce: string;
8
+ skWanderingCubes: string;
9
+ skWave: string;
10
+ skLine: string;
11
+ };
@@ -1,12 +1,12 @@
1
- import { BaseDialog } from '../../components/base/base.dialog';
2
- import { ContactUsForm } from '../../forms/contact-us/contact-us';
3
- import * as i0 from "@angular/core";
4
- export declare class ContactUsDialog extends BaseDialog {
5
- contactUsForm: ContactUsForm;
6
- constructor();
7
- onClose(): void;
8
- onSubmitFire(): void;
9
- onSubmit(): void;
10
- static ɵfac: i0.ɵɵFactoryDeclaration<ContactUsDialog, never>;
11
- static ɵcmp: i0.ɵɵComponentDeclaration<ContactUsDialog, "anatoly-contactus-dialog", never, {}, {}, never, never, false, never>;
12
- }
1
+ import { BaseDialog } from '../../components/base/base.dialog';
2
+ import { ContactUsForm } from '../../forms/contact-us/contact-us';
3
+ import * as i0 from "@angular/core";
4
+ export declare class ContactUsDialog extends BaseDialog {
5
+ contactUsForm: ContactUsForm;
6
+ constructor();
7
+ onClose(): void;
8
+ onSubmitFire(): void;
9
+ onSubmit(): void;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<ContactUsDialog, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<ContactUsDialog, "anatoly-contactus-dialog", never, {}, {}, never, never, false, never>;
12
+ }
@@ -1 +1 @@
1
- export * from './contact-us/contact-us.dialog';
1
+ export * from './contact-us/contact-us.dialog';
@@ -1,8 +1,8 @@
1
- import * as i0 from "@angular/core";
2
- export declare class HoveringDirective {
3
- hovering: boolean;
4
- onMouseEnter(): void;
5
- onMouseLeave(): void;
6
- static ɵfac: i0.ɵɵFactoryDeclaration<HoveringDirective, never>;
7
- static ɵdir: i0.ɵɵDirectiveDeclaration<HoveringDirective, "[anatoly-hover]", never, {}, {}, never, never, false, never>;
8
- }
1
+ import * as i0 from "@angular/core";
2
+ export declare class HoveringDirective {
3
+ hovering: boolean;
4
+ onMouseEnter(): void;
5
+ onMouseLeave(): void;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<HoveringDirective, never>;
7
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HoveringDirective, "[anatoly-hover]", never, {}, {}, never, never, false, never>;
8
+ }
@@ -1,2 +1,2 @@
1
- export * from './native-element.directive';
2
- export * from './hover.directive';
1
+ export * from './native-element.directive';
2
+ export * from './hover.directive';
@@ -1,11 +1,11 @@
1
- import { ElementRef, OnInit } from "@angular/core";
2
- import { NgControl } from '@angular/forms';
3
- import * as i0 from "@angular/core";
4
- export declare class NativeElementDirective implements OnInit {
5
- private el;
6
- private control;
7
- constructor(el: ElementRef<HTMLFormElement>, control: NgControl);
8
- ngOnInit(): void;
9
- static ɵfac: i0.ɵɵFactoryDeclaration<NativeElementDirective, never>;
10
- static ɵdir: i0.ɵɵDirectiveDeclaration<NativeElementDirective, "[formControl], [formControlName]", never, {}, {}, never, never, false, never>;
11
- }
1
+ import { ElementRef, OnInit } from "@angular/core";
2
+ import { NgControl } from '@angular/forms';
3
+ import * as i0 from "@angular/core";
4
+ export declare class NativeElementDirective implements OnInit {
5
+ private el;
6
+ private control;
7
+ constructor(el: ElementRef<HTMLFormElement>, control: NgControl);
8
+ ngOnInit(): void;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<NativeElementDirective, never>;
10
+ static ɵdir: i0.ɵɵDirectiveDeclaration<NativeElementDirective, "[formControl], [formControlName]", never, {}, {}, never, never, false, never>;
11
+ }
@@ -1,10 +1,10 @@
1
- import { FaIconLibrary } from '@fortawesome/angular-fontawesome';
2
- import * as i0 from "@angular/core";
3
- import * as i1 from "@angular/common";
4
- import * as i2 from "@fortawesome/angular-fontawesome";
5
- export declare class FaModule {
6
- constructor(library: FaIconLibrary);
7
- static ɵfac: i0.ɵɵFactoryDeclaration<FaModule, never>;
8
- static ɵmod: i0.ɵɵNgModuleDeclaration<FaModule, never, [typeof i1.CommonModule, typeof i2.FontAwesomeModule], [typeof i2.FontAwesomeModule]>;
9
- static ɵinj: i0.ɵɵInjectorDeclaration<FaModule>;
10
- }
1
+ import { FaIconLibrary } from '@fortawesome/angular-fontawesome';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "@angular/common";
4
+ import * as i2 from "@fortawesome/angular-fontawesome";
5
+ export declare class FaModule {
6
+ constructor(library: FaIconLibrary);
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<FaModule, never>;
8
+ static ɵmod: i0.ɵɵNgModuleDeclaration<FaModule, never, [typeof i1.CommonModule, typeof i2.FontAwesomeModule], [typeof i2.FontAwesomeModule]>;
9
+ static ɵinj: i0.ɵɵInjectorDeclaration<FaModule>;
10
+ }
@@ -1,15 +1,15 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "@angular/common";
3
- import * as i2 from "@progress/kendo-angular-buttons";
4
- import * as i3 from "@progress/kendo-angular-dialog";
5
- import * as i4 from "@progress/kendo-angular-dropdowns";
6
- import * as i5 from "@progress/kendo-angular-inputs";
7
- import * as i6 from "@progress/kendo-angular-pager";
8
- import * as i7 from "@progress/kendo-angular-treeview";
9
- import * as i8 from "@progress/kendo-angular-tooltip";
10
- import * as i9 from "@progress/kendo-angular-icons";
11
- export declare class KendoModule {
12
- static ɵfac: i0.ɵɵFactoryDeclaration<KendoModule, never>;
13
- static ɵmod: i0.ɵɵNgModuleDeclaration<KendoModule, never, [typeof i1.CommonModule, typeof i2.ButtonsModule, typeof i3.DialogsModule, typeof i4.DropDownsModule, typeof i5.InputsModule, typeof i6.PagerModule, typeof i7.TreeViewModule, typeof i8.TooltipsModule, typeof i9.IconsModule], [typeof i2.ButtonsModule, typeof i3.DialogsModule, typeof i4.DropDownsModule, typeof i5.InputsModule, typeof i6.PagerModule, typeof i7.TreeViewModule, typeof i8.TooltipsModule, typeof i9.IconsModule]>;
14
- static ɵinj: i0.ɵɵInjectorDeclaration<KendoModule>;
15
- }
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "@angular/common";
3
+ import * as i2 from "@progress/kendo-angular-buttons";
4
+ import * as i3 from "@progress/kendo-angular-dialog";
5
+ import * as i4 from "@progress/kendo-angular-dropdowns";
6
+ import * as i5 from "@progress/kendo-angular-inputs";
7
+ import * as i6 from "@progress/kendo-angular-pager";
8
+ import * as i7 from "@progress/kendo-angular-treeview";
9
+ import * as i8 from "@progress/kendo-angular-tooltip";
10
+ import * as i9 from "@progress/kendo-angular-icons";
11
+ export declare class KendoModule {
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<KendoModule, never>;
13
+ static ɵmod: i0.ɵɵNgModuleDeclaration<KendoModule, never, [typeof i1.CommonModule, typeof i2.ButtonsModule, typeof i3.DialogsModule, typeof i4.DropDownsModule, typeof i5.InputsModule, typeof i6.PagerModule, typeof i7.TreeViewModule, typeof i8.TooltipsModule, typeof i9.IconsModule], [typeof i2.ButtonsModule, typeof i3.DialogsModule, typeof i4.DropDownsModule, typeof i5.InputsModule, typeof i6.PagerModule, typeof i7.TreeViewModule, typeof i8.TooltipsModule, typeof i9.IconsModule]>;
14
+ static ɵinj: i0.ɵɵInjectorDeclaration<KendoModule>;
15
+ }
@@ -1,35 +1,35 @@
1
- import { EventEmitter, OnInit } from '@angular/core';
2
- import { FormBuilder } from '@angular/forms';
3
- import { CoreApiService } from '../../../../data';
4
- import { BaseEditComponent } from '../../../components';
5
- import * as i0 from "@angular/core";
6
- interface CodeName {
7
- code: string;
8
- name: string;
9
- }
10
- export declare class AddressComponent extends BaseEditComponent implements OnInit {
11
- private fb;
12
- private api;
13
- private _address;
14
- formGroupGenerated: boolean;
15
- countryData: Array<CodeName>;
16
- usStateData: Array<CodeName>;
17
- currentCountry: string;
18
- currentUSState: string;
19
- title: string;
20
- isTitleVisible: boolean;
21
- isRequired: any;
22
- get address(): any;
23
- set address(value: any);
24
- change: EventEmitter<any>;
25
- constructor(fb: FormBuilder, api: CoreApiService);
26
- ngOnInit(): void;
27
- private createFormGroup;
28
- private init;
29
- getAddress(): string;
30
- onCountryChange(event: any): void;
31
- onUSStateChange(event: any): void;
32
- static ɵfac: i0.ɵɵFactoryDeclaration<AddressComponent, never>;
33
- static ɵcmp: i0.ɵɵComponentDeclaration<AddressComponent, "anatoly-forms-address", never, { "title": "title"; "isTitleVisible": "isTitleVisible"; "isRequired": "isRequired"; "address": "address"; }, { "change": "change"; }, never, never, false, never>;
34
- }
35
- export {};
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { FormBuilder } from '@angular/forms';
3
+ import { CoreApiService } from '../../../../data';
4
+ import { BaseEditComponent } from '../../../components';
5
+ import * as i0 from "@angular/core";
6
+ interface CodeName {
7
+ code: string;
8
+ name: string;
9
+ }
10
+ export declare class AddressComponent extends BaseEditComponent implements OnInit {
11
+ private fb;
12
+ private api;
13
+ private _address;
14
+ formGroupGenerated: boolean;
15
+ countryData: Array<CodeName>;
16
+ usStateData: Array<CodeName>;
17
+ currentCountry: string;
18
+ currentUSState: string;
19
+ title: string;
20
+ isTitleVisible: boolean;
21
+ isRequired: any;
22
+ get address(): any;
23
+ set address(value: any);
24
+ change: EventEmitter<any>;
25
+ constructor(fb: FormBuilder, api: CoreApiService);
26
+ ngOnInit(): void;
27
+ private createFormGroup;
28
+ private init;
29
+ getAddress(): string;
30
+ onCountryChange(event: any): void;
31
+ onUSStateChange(event: any): void;
32
+ static ɵfac: i0.ɵɵFactoryDeclaration<AddressComponent, never>;
33
+ static ɵcmp: i0.ɵɵComponentDeclaration<AddressComponent, "anatoly-forms-address", never, { "title": { "alias": "title"; "required": false; }; "isTitleVisible": { "alias": "isTitleVisible"; "required": false; }; "isRequired": { "alias": "isRequired"; "required": false; }; "address": { "alias": "address"; "required": false; }; }, { "change": "change"; }, never, never, false, never>;
34
+ }
35
+ export {};
@@ -1,20 +1,20 @@
1
- import { OnInit } from '@angular/core';
2
- import { FormBuilder } from '@angular/forms';
3
- import { BaseEditComponent } from '../../../components';
4
- import * as i0 from "@angular/core";
5
- export declare class CompanyComponent extends BaseEditComponent implements OnInit {
6
- private fb;
7
- private _company;
8
- formGroupGenerated: boolean;
9
- title: string;
10
- isTitleVisible: boolean;
11
- get company(): any;
12
- set company(value: any);
13
- constructor(fb: FormBuilder);
14
- ngOnInit(): void;
15
- private createFormGroup;
16
- private init;
17
- getCompany(): string;
18
- static ɵfac: i0.ɵɵFactoryDeclaration<CompanyComponent, never>;
19
- static ɵcmp: i0.ɵɵComponentDeclaration<CompanyComponent, "anatoly-forms-company", never, { "title": "title"; "isTitleVisible": "isTitleVisible"; "company": "company"; }, {}, never, never, false, never>;
20
- }
1
+ import { OnInit } from '@angular/core';
2
+ import { FormBuilder } from '@angular/forms';
3
+ import { BaseEditComponent } from '../../../components';
4
+ import * as i0 from "@angular/core";
5
+ export declare class CompanyComponent extends BaseEditComponent implements OnInit {
6
+ private fb;
7
+ private _company;
8
+ formGroupGenerated: boolean;
9
+ title: string;
10
+ isTitleVisible: boolean;
11
+ get company(): any;
12
+ set company(value: any);
13
+ constructor(fb: FormBuilder);
14
+ ngOnInit(): void;
15
+ private createFormGroup;
16
+ private init;
17
+ getCompany(): string;
18
+ static ɵfac: i0.ɵɵFactoryDeclaration<CompanyComponent, never>;
19
+ static ɵcmp: i0.ɵɵComponentDeclaration<CompanyComponent, "anatoly-forms-company", never, { "title": { "alias": "title"; "required": false; }; "isTitleVisible": { "alias": "isTitleVisible"; "required": false; }; "company": { "alias": "company"; "required": false; }; }, {}, never, never, false, never>;
20
+ }
@@ -1,26 +1,26 @@
1
- import { OnInit } from '@angular/core';
2
- import { BaseEditComponent } from '../../../../components/base/base-edit.component';
3
- import { AppContextService } from '../../../../../core/services/appcontext.service';
4
- import { CoreApiService } from '../../../../../data/services/core-api.service';
5
- import * as i0 from "@angular/core";
6
- interface Timezone {
7
- code: string;
8
- name: string;
9
- offset: string;
10
- offset_seconds: number;
11
- }
12
- export declare class TimezoneDropdownlist extends BaseEditComponent implements OnInit {
13
- private api;
14
- private appContext;
15
- timezoneListItems: Timezone[];
16
- title: string;
17
- isTitleVisible: boolean;
18
- controlName: string;
19
- controlTitle: string;
20
- constructor(api: CoreApiService, appContext: AppContextService);
21
- ngOnInit(): void;
22
- setValues(): void;
23
- static ɵfac: i0.ɵɵFactoryDeclaration<TimezoneDropdownlist, never>;
24
- static ɵcmp: i0.ɵɵComponentDeclaration<TimezoneDropdownlist, "anatoly-forms-timezone-dropdownlist", never, { "title": "title"; "isTitleVisible": "isTitleVisible"; "controlName": "controlName"; "controlTitle": "controlTitle"; }, {}, never, never, false, never>;
25
- }
26
- export {};
1
+ import { OnInit } from '@angular/core';
2
+ import { BaseEditComponent } from '../../../../components/base/base-edit.component';
3
+ import { AppContextService } from '../../../../../core/services/appcontext.service';
4
+ import { CoreApiService } from '../../../../../data/services/core-api.service';
5
+ import * as i0 from "@angular/core";
6
+ interface Timezone {
7
+ code: string;
8
+ name: string;
9
+ offset: string;
10
+ offset_seconds: number;
11
+ }
12
+ export declare class TimezoneDropdownlist extends BaseEditComponent implements OnInit {
13
+ private api;
14
+ private appContext;
15
+ timezoneListItems: Timezone[];
16
+ title: string;
17
+ isTitleVisible: boolean;
18
+ controlName: string;
19
+ controlTitle: string;
20
+ constructor(api: CoreApiService, appContext: AppContextService);
21
+ ngOnInit(): void;
22
+ setValues(): void;
23
+ static ɵfac: i0.ɵɵFactoryDeclaration<TimezoneDropdownlist, never>;
24
+ static ɵcmp: i0.ɵɵComponentDeclaration<TimezoneDropdownlist, "anatoly-forms-timezone-dropdownlist", never, { "title": { "alias": "title"; "required": false; }; "isTitleVisible": { "alias": "isTitleVisible"; "required": false; }; "controlName": { "alias": "controlName"; "required": false; }; "controlTitle": { "alias": "controlTitle"; "required": false; }; }, {}, never, never, false, never>;
25
+ }
26
+ export {};
@@ -1,23 +1,23 @@
1
- import { EventEmitter, OnInit } from '@angular/core';
2
- import { BaseEditComponent } from '../../../components/base/base-edit.component';
3
- import * as i0 from "@angular/core";
4
- export declare class UrlSlugComponent extends BaseEditComponent implements OnInit {
5
- firstValue: boolean;
6
- hrefGo: string;
7
- title: string;
8
- isTitleVisible: boolean;
9
- controlName: string;
10
- controlTitle: string;
11
- class: string;
12
- watchedControlName: string;
13
- urlPrefix: string;
14
- isGoButtonVisible: boolean;
15
- generating: EventEmitter<any>;
16
- constructor();
17
- ngOnInit(): void;
18
- private generateUrlSlug;
19
- private startWatching;
20
- onUrlSlugChange(): void;
21
- static ɵfac: i0.ɵɵFactoryDeclaration<UrlSlugComponent, never>;
22
- static ɵcmp: i0.ɵɵComponentDeclaration<UrlSlugComponent, "anatoly-forms-urlslug", never, { "title": "title"; "isTitleVisible": "isTitleVisible"; "controlName": "controlName"; "controlTitle": "controlTitle"; "class": "class"; "watchedControlName": "watchedControlName"; "urlPrefix": "urlPrefix"; "isGoButtonVisible": "isGoButtonVisible"; }, { "generating": "generating"; }, never, never, false, never>;
23
- }
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { BaseEditComponent } from '../../../components/base/base-edit.component';
3
+ import * as i0 from "@angular/core";
4
+ export declare class UrlSlugComponent extends BaseEditComponent implements OnInit {
5
+ firstValue: boolean;
6
+ hrefGo: string;
7
+ title: string;
8
+ isTitleVisible: boolean;
9
+ controlName: string;
10
+ controlTitle: string;
11
+ class: string;
12
+ watchedControlName: string;
13
+ urlPrefix: string;
14
+ isGoButtonVisible: boolean;
15
+ generating: EventEmitter<any>;
16
+ constructor();
17
+ ngOnInit(): void;
18
+ private generateUrlSlug;
19
+ private startWatching;
20
+ onUrlSlugChange(): void;
21
+ static ɵfac: i0.ɵɵFactoryDeclaration<UrlSlugComponent, never>;
22
+ static ɵcmp: i0.ɵɵComponentDeclaration<UrlSlugComponent, "anatoly-forms-urlslug", never, { "title": { "alias": "title"; "required": false; }; "isTitleVisible": { "alias": "isTitleVisible"; "required": false; }; "controlName": { "alias": "controlName"; "required": false; }; "controlTitle": { "alias": "controlTitle"; "required": false; }; "class": { "alias": "class"; "required": false; }; "watchedControlName": { "alias": "watchedControlName"; "required": false; }; "urlPrefix": { "alias": "urlPrefix"; "required": false; }; "isGoButtonVisible": { "alias": "isGoButtonVisible"; "required": false; }; }, { "generating": "generating"; }, never, never, false, never>;
23
+ }
@@ -1,33 +1,33 @@
1
- import { EventEmitter, OnInit } from '@angular/core';
2
- import { FormBuilder } from '@angular/forms';
3
- import { ReCaptchaV3Service } from 'ngx-captcha';
4
- import { AppContextService } from "../../../core/services/appcontext.service";
5
- import { NotificationService } from "../../../core/notifications/services/notification-service";
6
- import { EmailsApiService } from '../../../data/services/emails-api.service';
7
- import { BaseEditComponent } from "../../components/base/base-edit.component";
8
- import * as i0 from "@angular/core";
9
- export declare class ContactUsForm extends BaseEditComponent implements OnInit {
10
- private reCaptcha;
11
- private fb;
12
- private appContext;
13
- private api;
14
- private notificationService;
15
- isUserSignedIn: boolean;
16
- reCaptchaSiteKey: any;
17
- selectedTopic: any;
18
- topicList: {
19
- value: string;
20
- }[];
21
- showActionButtons: boolean;
22
- submit: EventEmitter<any>;
23
- constructor(reCaptcha: ReCaptchaV3Service, fb: FormBuilder, appContext: AppContextService, api: EmailsApiService, notificationService: NotificationService);
24
- ngOnInit(): void;
25
- createFormGroup(): void;
26
- setContext(context: any): void;
27
- isValid(): boolean;
28
- contactUs(): void;
29
- onSubmit(): void;
30
- onTopicChange(event: any): void;
31
- static ɵfac: i0.ɵɵFactoryDeclaration<ContactUsForm, never>;
32
- static ɵcmp: i0.ɵɵComponentDeclaration<ContactUsForm, "anatoly-forms-contactus-form", never, { "showActionButtons": "showActionButtons"; }, { "submit": "submit"; }, never, never, false, never>;
33
- }
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { FormBuilder } from '@angular/forms';
3
+ import { ReCaptchaV3Service } from 'ngx-captcha';
4
+ import { AppContextService } from "../../../core/services/appcontext.service";
5
+ import { NotificationService } from "../../../core/notifications/services/notification-service";
6
+ import { EmailsApiService } from '../../../data/services/emails-api.service';
7
+ import { BaseEditComponent } from "../../components/base/base-edit.component";
8
+ import * as i0 from "@angular/core";
9
+ export declare class ContactUsForm extends BaseEditComponent implements OnInit {
10
+ private reCaptcha;
11
+ private fb;
12
+ private appContext;
13
+ private api;
14
+ private notificationService;
15
+ isUserSignedIn: boolean;
16
+ reCaptchaSiteKey: any;
17
+ selectedTopic: any;
18
+ topicList: {
19
+ value: string;
20
+ }[];
21
+ showActionButtons: boolean;
22
+ submit: EventEmitter<any>;
23
+ constructor(reCaptcha: ReCaptchaV3Service, fb: FormBuilder, appContext: AppContextService, api: EmailsApiService, notificationService: NotificationService);
24
+ ngOnInit(): void;
25
+ createFormGroup(): void;
26
+ setContext(context: any): void;
27
+ isValid(): boolean;
28
+ contactUs(): void;
29
+ onSubmit(): void;
30
+ onTopicChange(event: any): void;
31
+ static ɵfac: i0.ɵɵFactoryDeclaration<ContactUsForm, never>;
32
+ static ɵcmp: i0.ɵɵComponentDeclaration<ContactUsForm, "anatoly-forms-contactus-form", never, { "showActionButtons": { "alias": "showActionButtons"; "required": false; }; }, { "submit": "submit"; }, never, never, false, never>;
33
+ }
@@ -1,5 +1,5 @@
1
- export * from './components/address/address.component';
2
- export * from './components/company/company.component';
3
- export * from './components/urlslug/urlslug.component';
4
- export * from './components/dropdownlists/timezone/timezone.dropdownlist';
5
- export * from './contact-us/contact-us';
1
+ export * from './components/address/address.component';
2
+ export * from './components/company/company.component';
3
+ export * from './components/urlslug/urlslug.component';
4
+ export * from './components/dropdownlists/timezone/timezone.dropdownlist';
5
+ export * from './contact-us/contact-us';
@@ -1,8 +1,8 @@
1
- import { PipeTransform } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export declare class FileSizePipe implements PipeTransform {
4
- private units;
5
- transform(bytes?: number, precision?: number): string;
6
- static ɵfac: i0.ɵɵFactoryDeclaration<FileSizePipe, never>;
7
- static ɵpipe: i0.ɵɵPipeDeclaration<FileSizePipe, "filesize", false>;
8
- }
1
+ import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class FileSizePipe implements PipeTransform {
4
+ private units;
5
+ transform(bytes?: number, precision?: number): string;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<FileSizePipe, never>;
7
+ static ɵpipe: i0.ɵɵPipeDeclaration<FileSizePipe, "filesize", false>;
8
+ }
@@ -1,3 +1,3 @@
1
- export * from './filesize.pipe';
2
- export * from './replace-text.pipe';
3
- export * from './safeHtml.pipe';
1
+ export * from './filesize.pipe';
2
+ export * from './replace-text.pipe';
3
+ export * from './safeHtml.pipe';
@@ -1,7 +1,7 @@
1
- import { PipeTransform } from "@angular/core";
2
- import * as i0 from "@angular/core";
3
- export declare class ReplaceTextPipe implements PipeTransform {
4
- transform(inputData: string, search: string, replacement: string): string;
5
- static ɵfac: i0.ɵɵFactoryDeclaration<ReplaceTextPipe, never>;
6
- static ɵpipe: i0.ɵɵPipeDeclaration<ReplaceTextPipe, "replaceText", false>;
7
- }
1
+ import { PipeTransform } from "@angular/core";
2
+ import * as i0 from "@angular/core";
3
+ export declare class ReplaceTextPipe implements PipeTransform {
4
+ transform(inputData: string, search: string, replacement: string): string;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<ReplaceTextPipe, never>;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<ReplaceTextPipe, "replaceText", false>;
7
+ }
@@ -1,10 +1,10 @@
1
- import { PipeTransform } from '@angular/core';
2
- import { DomSanitizer } from '@angular/platform-browser';
3
- import * as i0 from "@angular/core";
4
- export declare class SafeHtmlPipe implements PipeTransform {
5
- private sanitized;
6
- constructor(sanitized: DomSanitizer);
7
- transform(value: any): import("@angular/platform-browser").SafeHtml;
8
- static ɵfac: i0.ɵɵFactoryDeclaration<SafeHtmlPipe, never>;
9
- static ɵpipe: i0.ɵɵPipeDeclaration<SafeHtmlPipe, "safeHtml", false>;
10
- }
1
+ import { PipeTransform } from '@angular/core';
2
+ import { DomSanitizer } from '@angular/platform-browser';
3
+ import * as i0 from "@angular/core";
4
+ export declare class SafeHtmlPipe implements PipeTransform {
5
+ private sanitized;
6
+ constructor(sanitized: DomSanitizer);
7
+ transform(value: any): import("@angular/platform-browser").SafeHtml;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<SafeHtmlPipe, never>;
9
+ static ɵpipe: i0.ɵɵPipeDeclaration<SafeHtmlPipe, "safeHtml", false>;
10
+ }