@osovitny/anatoly 2.15.12 → 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 +5119 -5974
  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 -46
  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 -36
  233. package/esm2020/lib/ui/components/identity/signout-button.component.mjs +0 -36
  234. package/esm2020/lib/ui/components/identity/signup-button.component.mjs +0 -35
  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 -197
  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 -5760
  256. package/fesm2020/osovitny-anatoly.mjs.map +0 -1
@@ -1,17 +1,17 @@
1
- import { OnDestroy } from "@angular/core";
2
- import { Subs } from "../../../core";
3
- import * as i0 from "@angular/core";
4
- export declare abstract class BaseComponent implements OnDestroy {
5
- protected subs: Subs;
6
- protected dataLoading: boolean;
7
- protected dataLoaded: boolean;
8
- protected dataFound: boolean;
9
- ngOnDestroy(): void;
10
- getEntityId(): string;
11
- getValueByNameInQS(name: any): string;
12
- dataStartedLoading(): void;
13
- dataLoadedAndNothingFound(): void;
14
- dataLoadedAndFound(found?: boolean): void;
15
- static ɵfac: i0.ɵɵFactoryDeclaration<BaseComponent, never>;
16
- static ɵcmp: i0.ɵɵComponentDeclaration<BaseComponent, "ng-component", never, {}, {}, never, never, false, never>;
17
- }
1
+ import { OnDestroy } from "@angular/core";
2
+ import { Subs } from "../../../core";
3
+ import * as i0 from "@angular/core";
4
+ export declare abstract class BaseComponent implements OnDestroy {
5
+ protected subs: Subs;
6
+ protected dataLoading: boolean;
7
+ protected dataLoaded: boolean;
8
+ protected dataFound: boolean;
9
+ ngOnDestroy(): void;
10
+ getEntityId(): string;
11
+ getValueByNameInQS(name: any): string;
12
+ dataStartedLoading(): void;
13
+ dataLoadedAndNothingFound(): void;
14
+ dataLoadedAndFound(found?: boolean): void;
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<BaseComponent, never>;
16
+ static ɵcmp: i0.ɵɵComponentDeclaration<BaseComponent, "ng-component", never, {}, {}, never, never, false, never>;
17
+ }
@@ -1,17 +1,17 @@
1
- import { EventEmitter } from "@angular/core";
2
- import { BaseEditComponent } from "./base-edit.component";
3
- import * as i0 from "@angular/core";
4
- export declare abstract class BaseDialog extends BaseEditComponent {
5
- private _isOpen;
6
- get isOpen(): boolean;
7
- set isOpen(value: boolean);
8
- opened: EventEmitter<any>;
9
- closed: EventEmitter<any>;
10
- constructor();
11
- anOnBeforeOpen?(): void;
12
- open(): void;
13
- close(returnValue?: any): void;
14
- cancel(): void;
15
- static ɵfac: i0.ɵɵFactoryDeclaration<BaseDialog, never>;
16
- static ɵcmp: i0.ɵɵComponentDeclaration<BaseDialog, "ng-component", never, { "isOpen": "isOpen"; }, { "opened": "opened"; "closed": "closed"; }, never, never, false, never>;
17
- }
1
+ import { EventEmitter } from "@angular/core";
2
+ import { BaseEditComponent } from "./base-edit.component";
3
+ import * as i0 from "@angular/core";
4
+ export declare abstract class BaseDialog extends BaseEditComponent {
5
+ private _isOpen;
6
+ get isOpen(): boolean;
7
+ set isOpen(value: boolean);
8
+ opened: EventEmitter<any>;
9
+ closed: EventEmitter<any>;
10
+ constructor();
11
+ anOnBeforeOpen?(): void;
12
+ open(): void;
13
+ close(returnValue?: any): void;
14
+ cancel(): void;
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<BaseDialog, never>;
16
+ static ɵcmp: i0.ɵɵComponentDeclaration<BaseDialog, "ng-component", never, { "isOpen": { "alias": "isOpen"; "required": false; }; }, { "opened": "opened"; "closed": "closed"; }, never, never, false, never>;
17
+ }
@@ -1,19 +1,19 @@
1
- import { BaseComponent } from "./base.component";
2
- import * as i0 from "@angular/core";
3
- export declare abstract class BaseList extends BaseComponent {
4
- currentFilter: any;
5
- items: any[];
6
- totalItems: number;
7
- pageSize: number;
8
- skipItems: number;
9
- currentPage: number;
10
- showNoDataIfNoDataFound: boolean;
11
- loadPage?(page?: number): void;
12
- loadPageOne(): void;
13
- reloadPage(drop2pageOne?: boolean): void;
14
- setFilter(filter: any): void;
15
- toIndex(index: any): any;
16
- onPageChange(e: any): void;
17
- static ɵfac: i0.ɵɵFactoryDeclaration<BaseList, never>;
18
- static ɵcmp: i0.ɵɵComponentDeclaration<BaseList, "ng-component", never, { "showNoDataIfNoDataFound": "showNoDataIfNoDataFound"; }, {}, never, never, false, never>;
19
- }
1
+ import { BaseComponent } from "./base.component";
2
+ import * as i0 from "@angular/core";
3
+ export declare abstract class BaseList extends BaseComponent {
4
+ currentFilter: any;
5
+ items: any[];
6
+ totalItems: number;
7
+ pageSize: number;
8
+ skipItems: number;
9
+ currentPage: number;
10
+ showNoDataIfNoDataFound: boolean;
11
+ loadPage?(page?: number): void;
12
+ loadPageOne(): void;
13
+ reloadPage(drop2pageOne?: boolean): void;
14
+ setFilter(filter: any): void;
15
+ toIndex(index: any): any;
16
+ onPageChange(e: any): void;
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<BaseList, never>;
18
+ static ɵcmp: i0.ɵɵComponentDeclaration<BaseList, "ng-component", never, { "showNoDataIfNoDataFound": { "alias": "showNoDataIfNoDataFound"; "required": false; }; }, {}, never, never, false, never>;
19
+ }
@@ -1,6 +1,6 @@
1
- import { BaseComponent } from "./base.component";
2
- import * as i0 from "@angular/core";
3
- export declare abstract class BasePage extends BaseComponent {
4
- static ɵfac: i0.ɵɵFactoryDeclaration<BasePage, never>;
5
- static ɵcmp: i0.ɵɵComponentDeclaration<BasePage, "ng-component", never, {}, {}, never, never, false, never>;
6
- }
1
+ import { BaseComponent } from "./base.component";
2
+ import * as i0 from "@angular/core";
3
+ export declare abstract class BasePage extends BaseComponent {
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<BasePage, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<BasePage, "ng-component", never, {}, {}, never, never, false, never>;
6
+ }
@@ -1,18 +1,18 @@
1
- import { BasePage } from "./base.page";
2
- import * as i0 from "@angular/core";
3
- export declare abstract class BasePagedPage extends BasePage {
4
- currentFilter: any;
5
- items: any[];
6
- totalItems: number;
7
- pageSize: number;
8
- skipItems: number;
9
- currentPage: number;
10
- loadPage?(page?: number): void;
11
- loadPageOne(): void;
12
- reloadPage(drop2pageOne?: boolean): void;
13
- setFilter(filter: any): void;
14
- toIndex(index: any): any;
15
- onPageChange(e: any): void;
16
- static ɵfac: i0.ɵɵFactoryDeclaration<BasePagedPage, never>;
17
- static ɵcmp: i0.ɵɵComponentDeclaration<BasePagedPage, "ng-component", never, {}, {}, never, never, false, never>;
18
- }
1
+ import { BasePage } from "./base.page";
2
+ import * as i0 from "@angular/core";
3
+ export declare abstract class BasePagedPage extends BasePage {
4
+ currentFilter: any;
5
+ items: any[];
6
+ totalItems: number;
7
+ pageSize: number;
8
+ skipItems: number;
9
+ currentPage: number;
10
+ loadPage?(page?: number): void;
11
+ loadPageOne(): void;
12
+ reloadPage(drop2pageOne?: boolean): void;
13
+ setFilter(filter: any): void;
14
+ toIndex(index: any): any;
15
+ onPageChange(e: any): void;
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<BasePagedPage, never>;
17
+ static ɵcmp: i0.ɵɵComponentDeclaration<BasePagedPage, "ng-component", never, {}, {}, never, never, false, never>;
18
+ }
@@ -1,19 +1,19 @@
1
- import { EventEmitter, OnInit } from '@angular/core';
2
- import { AppContextService } from '../../../core/services/appcontext.service';
3
- import * as i0 from "@angular/core";
4
- export declare class BuyAccessButtonComponent implements OnInit {
5
- private appContext;
6
- contextUpdated: boolean;
7
- isUserSignedIn: boolean;
8
- currentPlan: number;
9
- currentPlanTitle: string;
10
- plan: number;
11
- planTitle: string;
12
- visibleIfUserSignedIn: boolean;
13
- planselect: EventEmitter<any>;
14
- constructor(appContext: AppContextService);
15
- ngOnInit(): void;
16
- onPlanSelect(): void;
17
- static ɵfac: i0.ɵɵFactoryDeclaration<BuyAccessButtonComponent, never>;
18
- static ɵcmp: i0.ɵɵComponentDeclaration<BuyAccessButtonComponent, "anatoly-buyaccess-button", never, { "plan": "plan"; "planTitle": "planTitle"; "visibleIfUserSignedIn": "visibleIfUserSignedIn"; }, { "planselect": "planselect"; }, never, never, false, never>;
19
- }
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { AppContextService } from '../../../core/services/appcontext.service';
3
+ import * as i0 from "@angular/core";
4
+ export declare class BuyAccessButtonComponent implements OnInit {
5
+ private appContext;
6
+ contextUpdated: boolean;
7
+ isUserSignedIn: boolean;
8
+ currentPlan: number;
9
+ currentPlanTitle: string;
10
+ plan: number;
11
+ planTitle: string;
12
+ visibleIfUserSignedIn: boolean;
13
+ planselect: EventEmitter<any>;
14
+ constructor(appContext: AppContextService);
15
+ ngOnInit(): void;
16
+ onPlanSelect(): void;
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<BuyAccessButtonComponent, never>;
18
+ static ɵcmp: i0.ɵɵComponentDeclaration<BuyAccessButtonComponent, "anatoly-buyaccess-button", never, { "plan": { "alias": "plan"; "required": false; }; "planTitle": { "alias": "planTitle"; "required": false; }; "visibleIfUserSignedIn": { "alias": "visibleIfUserSignedIn"; "required": false; }; }, { "planselect": "planselect"; }, never, never, false, never>;
19
+ }
@@ -1,21 +1,21 @@
1
- import { EventEmitter, OnInit } from "@angular/core";
2
- import { AppContextService } from "../../../core/services/appcontext.service";
3
- import * as i0 from "@angular/core";
4
- export declare class SubscribePlanButtonComponent implements OnInit {
5
- private appContext;
6
- contextUpdated: boolean;
7
- isUserSignedIn: boolean;
8
- currentPlan: number;
9
- currentPlanTitle: string;
10
- requestedPlan: number;
11
- requestedPlanTitle: string;
12
- plan: number;
13
- planTitle: string;
14
- visibleIfUserSignedIn: boolean;
15
- planselect: EventEmitter<any>;
16
- constructor(appContext: AppContextService);
17
- ngOnInit(): void;
18
- onPlanSelect(): void;
19
- static ɵfac: i0.ɵɵFactoryDeclaration<SubscribePlanButtonComponent, never>;
20
- static ɵcmp: i0.ɵɵComponentDeclaration<SubscribePlanButtonComponent, "anatoly-subscribe-plan-button", never, { "plan": "plan"; "planTitle": "planTitle"; "visibleIfUserSignedIn": "visibleIfUserSignedIn"; }, { "planselect": "planselect"; }, never, never, false, never>;
21
- }
1
+ import { EventEmitter, OnInit } from "@angular/core";
2
+ import { AppContextService } from "../../../core/services/appcontext.service";
3
+ import * as i0 from "@angular/core";
4
+ export declare class SubscribePlanButtonComponent implements OnInit {
5
+ private appContext;
6
+ contextUpdated: boolean;
7
+ isUserSignedIn: boolean;
8
+ currentPlan: number;
9
+ currentPlanTitle: string;
10
+ requestedPlan: number;
11
+ requestedPlanTitle: string;
12
+ plan: number;
13
+ planTitle: string;
14
+ visibleIfUserSignedIn: boolean;
15
+ planselect: EventEmitter<any>;
16
+ constructor(appContext: AppContextService);
17
+ ngOnInit(): void;
18
+ onPlanSelect(): void;
19
+ static ɵfac: i0.ɵɵFactoryDeclaration<SubscribePlanButtonComponent, never>;
20
+ static ɵcmp: i0.ɵɵComponentDeclaration<SubscribePlanButtonComponent, "anatoly-subscribe-plan-button", never, { "plan": { "alias": "plan"; "required": false; }; "planTitle": { "alias": "planTitle"; "required": false; }; "visibleIfUserSignedIn": { "alias": "visibleIfUserSignedIn"; "required": false; }; }, { "planselect": "planselect"; }, never, never, false, never>;
21
+ }
@@ -1,6 +1,6 @@
1
- import * as i0 from "@angular/core";
2
- export declare class CardBodyComponent {
3
- classes: string;
4
- static ɵfac: i0.ɵɵFactoryDeclaration<CardBodyComponent, never>;
5
- static ɵcmp: i0.ɵɵComponentDeclaration<CardBodyComponent, "anatoly-card-body", never, { "classes": "classes"; }, {}, never, ["*"], false, never>;
6
- }
1
+ import * as i0 from "@angular/core";
2
+ export declare class CardBodyComponent {
3
+ classes: string;
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<CardBodyComponent, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<CardBodyComponent, "anatoly-card-body", never, { "classes": { "alias": "classes"; "required": false; }; }, {}, never, ["*"], false, never>;
6
+ }
@@ -1,6 +1,6 @@
1
- import * as i0 from "@angular/core";
2
- export declare class CardFooterComponent {
3
- classes: string;
4
- static ɵfac: i0.ɵɵFactoryDeclaration<CardFooterComponent, never>;
5
- static ɵcmp: i0.ɵɵComponentDeclaration<CardFooterComponent, "anatoly-card-footer", never, { "classes": "classes"; }, {}, never, ["*"], false, never>;
6
- }
1
+ import * as i0 from "@angular/core";
2
+ export declare class CardFooterComponent {
3
+ classes: string;
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<CardFooterComponent, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<CardFooterComponent, "anatoly-card-footer", never, { "classes": { "alias": "classes"; "required": false; }; }, {}, never, ["*"], false, never>;
6
+ }
@@ -1,7 +1,7 @@
1
- import * as i0 from "@angular/core";
2
- export declare class CardHeaderComponent {
3
- classes: string;
4
- title: string;
5
- static ɵfac: i0.ɵɵFactoryDeclaration<CardHeaderComponent, never>;
6
- static ɵcmp: i0.ɵɵComponentDeclaration<CardHeaderComponent, "anatoly-card-header", never, { "classes": "classes"; "title": "title"; }, {}, never, ["*"], false, never>;
7
- }
1
+ import * as i0 from "@angular/core";
2
+ export declare class CardHeaderComponent {
3
+ classes: string;
4
+ title: string;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<CardHeaderComponent, never>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<CardHeaderComponent, "anatoly-card-header", never, { "classes": { "alias": "classes"; "required": false; }; "title": { "alias": "title"; "required": false; }; }, {}, never, ["*"], false, never>;
7
+ }
@@ -1,6 +1,6 @@
1
- import * as i0 from "@angular/core";
2
- export declare class CardComponent {
3
- classes: string;
4
- static ɵfac: i0.ɵɵFactoryDeclaration<CardComponent, never>;
5
- static ɵcmp: i0.ɵɵComponentDeclaration<CardComponent, "anatoly-card", never, { "classes": "classes"; }, {}, never, ["mex-card-header", "mex-card-body", "*", "mex-card-footer"], false, never>;
6
- }
1
+ import * as i0 from "@angular/core";
2
+ export declare class CardComponent {
3
+ classes: string;
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<CardComponent, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<CardComponent, "anatoly-card", never, { "classes": { "alias": "classes"; "required": false; }; }, {}, never, ["mex-card-header", "mex-card-body", "*", "mex-card-footer"], false, never>;
6
+ }
@@ -1,6 +1,6 @@
1
- import * as i0 from "@angular/core";
2
- export declare class CheckIconComponent {
3
- checked: boolean;
4
- static ɵfac: i0.ɵɵFactoryDeclaration<CheckIconComponent, never>;
5
- static ɵcmp: i0.ɵɵComponentDeclaration<CheckIconComponent, "anatoly-check-icon", never, { "checked": "checked"; }, {}, never, ["*"], false, never>;
6
- }
1
+ import * as i0 from "@angular/core";
2
+ export declare class CheckIconComponent {
3
+ checked: boolean;
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<CheckIconComponent, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<CheckIconComponent, "anatoly-check-icon", never, { "checked": { "alias": "checked"; "required": false; }; }, {}, never, ["*"], false, never>;
6
+ }
@@ -1,8 +1,8 @@
1
- import * as i0 from "@angular/core";
2
- export declare class Copy2ClipboardComponent {
3
- tooltip: string;
4
- text: string;
5
- onCopy2Clipboard(event: any): void;
6
- static ɵfac: i0.ɵɵFactoryDeclaration<Copy2ClipboardComponent, never>;
7
- static ɵcmp: i0.ɵɵComponentDeclaration<Copy2ClipboardComponent, "anatoly-copy-2-clipboard", never, { "tooltip": "tooltip"; "text": "text"; }, {}, never, never, false, never>;
8
- }
1
+ import * as i0 from "@angular/core";
2
+ export declare class Copy2ClipboardComponent {
3
+ tooltip: string;
4
+ text: string;
5
+ onCopy2Clipboard(event: any): void;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<Copy2ClipboardComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<Copy2ClipboardComponent, "anatoly-copy-2-clipboard", never, { "tooltip": { "alias": "tooltip"; "required": false; }; "text": { "alias": "text"; "required": false; }; }, {}, never, never, false, never>;
8
+ }
@@ -1,21 +1,21 @@
1
- import { EventEmitter, OnInit } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export declare class DatapagerComponent implements OnInit {
4
- private _defaultPageSizes;
5
- private _width;
6
- pageSizes: any[];
7
- style: string;
8
- totalItems: number;
9
- pageSize: number;
10
- skipItems: number;
11
- pageSizeDivisor: any;
12
- pageSizeMax: number;
13
- get width(): any;
14
- set width(value: any);
15
- pageChange: EventEmitter<any>;
16
- constructor();
17
- ngOnInit(): void;
18
- onPageChange(e: any): void;
19
- static ɵfac: i0.ɵɵFactoryDeclaration<DatapagerComponent, never>;
20
- static ɵcmp: i0.ɵɵComponentDeclaration<DatapagerComponent, "anatoly-datapager", never, { "totalItems": "totalItems"; "pageSize": "pageSize"; "skipItems": "skipItems"; "pageSizeDivisor": "pageSizeDivisor"; "pageSizeMax": "pageSizeMax"; "width": "width"; }, { "pageChange": "pageChange"; }, never, never, false, never>;
21
- }
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class DatapagerComponent implements OnInit {
4
+ private _defaultPageSizes;
5
+ private _width;
6
+ pageSizes: any[];
7
+ style: string;
8
+ totalItems: number;
9
+ pageSize: number;
10
+ skipItems: number;
11
+ pageSizeDivisor: any;
12
+ pageSizeMax: number;
13
+ get width(): any;
14
+ set width(value: any);
15
+ pageChange: EventEmitter<any>;
16
+ constructor();
17
+ ngOnInit(): void;
18
+ onPageChange(e: any): void;
19
+ static ɵfac: i0.ɵɵFactoryDeclaration<DatapagerComponent, never>;
20
+ static ɵcmp: i0.ɵɵComponentDeclaration<DatapagerComponent, "anatoly-datapager", never, { "totalItems": { "alias": "totalItems"; "required": false; }; "pageSize": { "alias": "pageSize"; "required": false; }; "skipItems": { "alias": "skipItems"; "required": false; }; "pageSizeDivisor": { "alias": "pageSizeDivisor"; "required": false; }; "pageSizeMax": { "alias": "pageSizeMax"; "required": false; }; "width": { "alias": "width"; "required": false; }; }, { "pageChange": "pageChange"; }, never, never, false, never>;
21
+ }
@@ -1,21 +1,21 @@
1
- import { AfterViewInit, OnInit } from "@angular/core";
2
- import { BaseEditComponent } from "../base/base-edit.component";
3
- import * as i0 from "@angular/core";
4
- export declare abstract class BaseHtmlEditorComponent extends BaseEditComponent implements OnInit, AfterViewInit {
5
- protected froalaEditor: any;
6
- options: any;
7
- froalaEditorInitialized: boolean;
8
- afterInitializedActions: any[];
9
- editorLabelText: string;
10
- editorOptions: Object;
11
- constructor();
12
- ngOnInit(): void;
13
- ngAfterViewInit(): void;
14
- private onInitialized;
15
- protected getEditor(): any;
16
- doAfterInitialized(action: any): void;
17
- initializeControl(control: any): void;
18
- setUploadParams(uploadType: any, uploadParentId: any): void;
19
- static ɵfac: i0.ɵɵFactoryDeclaration<BaseHtmlEditorComponent, never>;
20
- static ɵcmp: i0.ɵɵComponentDeclaration<BaseHtmlEditorComponent, "ng-component", never, { "editorLabelText": "editorLabelText"; "editorOptions": "editorOptions"; }, {}, never, never, false, never>;
21
- }
1
+ import { AfterViewInit, OnInit } from "@angular/core";
2
+ import { BaseEditComponent } from "../base/base-edit.component";
3
+ import * as i0 from "@angular/core";
4
+ export declare abstract class BaseHtmlEditorComponent extends BaseEditComponent implements OnInit, AfterViewInit {
5
+ protected froalaEditor: any;
6
+ options: any;
7
+ froalaEditorInitialized: boolean;
8
+ afterInitializedActions: any[];
9
+ editorLabelText: string;
10
+ editorOptions: Object;
11
+ constructor();
12
+ ngOnInit(): void;
13
+ ngAfterViewInit(): void;
14
+ private onInitialized;
15
+ protected getEditor(): any;
16
+ doAfterInitialized(action: any): void;
17
+ initializeControl(control: any): void;
18
+ setUploadParams(uploadType: any, uploadParentId: any): void;
19
+ static ɵfac: i0.ɵɵFactoryDeclaration<BaseHtmlEditorComponent, never>;
20
+ static ɵcmp: i0.ɵɵComponentDeclaration<BaseHtmlEditorComponent, "ng-component", never, { "editorLabelText": { "alias": "editorLabelText"; "required": false; }; "editorOptions": { "alias": "editorOptions"; "required": false; }; }, {}, never, never, false, never>;
21
+ }
@@ -1,9 +1,9 @@
1
- import { BaseHtmlEditorComponent } from "./base-html-editor.component";
2
- import * as i0 from "@angular/core";
3
- export declare class FormsHtmlEditorComponent extends BaseHtmlEditorComponent {
4
- editorFormKey: string;
5
- constructor();
6
- setFormValueAfterInitialized(name: any, value: any): void;
7
- static ɵfac: i0.ɵɵFactoryDeclaration<FormsHtmlEditorComponent, never>;
8
- static ɵcmp: i0.ɵɵComponentDeclaration<FormsHtmlEditorComponent, "anatoly-forms-html-editor", never, { "editorFormKey": "editorFormKey"; }, {}, never, never, false, never>;
9
- }
1
+ import { BaseHtmlEditorComponent } from "./base-html-editor.component";
2
+ import * as i0 from "@angular/core";
3
+ export declare class FormsHtmlEditorComponent extends BaseHtmlEditorComponent {
4
+ editorFormKey: string;
5
+ constructor();
6
+ setFormValueAfterInitialized(name: any, value: any): void;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<FormsHtmlEditorComponent, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<FormsHtmlEditorComponent, "anatoly-forms-html-editor", never, { "editorFormKey": { "alias": "editorFormKey"; "required": false; }; }, {}, never, never, false, never>;
9
+ }
@@ -1,9 +1,9 @@
1
- import { BaseHtmlEditorComponent } from "./base-html-editor.component";
2
- import * as i0 from "@angular/core";
3
- export declare class HtmlEditorComponent extends BaseHtmlEditorComponent {
4
- constructor();
5
- setHtml(content: any): void;
6
- getHtml(): any;
7
- static ɵfac: i0.ɵɵFactoryDeclaration<HtmlEditorComponent, never>;
8
- static ɵcmp: i0.ɵɵComponentDeclaration<HtmlEditorComponent, "anatoly-html-editor", never, {}, {}, never, never, false, never>;
9
- }
1
+ import { BaseHtmlEditorComponent } from "./base-html-editor.component";
2
+ import * as i0 from "@angular/core";
3
+ export declare class HtmlEditorComponent extends BaseHtmlEditorComponent {
4
+ constructor();
5
+ setHtml(content: any): void;
6
+ getHtml(): any;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<HtmlEditorComponent, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<HtmlEditorComponent, "anatoly-html-editor", never, {}, {}, never, never, false, never>;
9
+ }
@@ -1 +1 @@
1
- export declare const DefaultEditorOptions: Object;
1
+ export declare const DefaultEditorOptions: Object;
@@ -1,7 +1,7 @@
1
- import * as i0 from "@angular/core";
2
- export declare class SignInButtonComponent {
3
- classbtn: string;
4
- constructor();
5
- static ɵfac: i0.ɵɵFactoryDeclaration<SignInButtonComponent, never>;
6
- static ɵcmp: i0.ɵɵComponentDeclaration<SignInButtonComponent, "anatoly-signin-button", never, { "classbtn": "classbtn"; }, {}, never, never, false, never>;
7
- }
1
+ import * as i0 from "@angular/core";
2
+ export declare class SignInButtonComponent {
3
+ classbtn: string;
4
+ constructor();
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<SignInButtonComponent, never>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<SignInButtonComponent, "anatoly-signin-button", never, { "classbtn": { "alias": "classbtn"; "required": false; }; }, {}, never, never, false, never>;
7
+ }
@@ -1,7 +1,7 @@
1
- import * as i0 from "@angular/core";
2
- export declare class SignOutButtonComponent {
3
- classbtn: string;
4
- constructor();
5
- static ɵfac: i0.ɵɵFactoryDeclaration<SignOutButtonComponent, never>;
6
- static ɵcmp: i0.ɵɵComponentDeclaration<SignOutButtonComponent, "anatoly-signout-button", never, { "classbtn": "classbtn"; }, {}, never, never, false, never>;
7
- }
1
+ import * as i0 from "@angular/core";
2
+ export declare class SignOutButtonComponent {
3
+ classbtn: string;
4
+ constructor();
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<SignOutButtonComponent, never>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<SignOutButtonComponent, "anatoly-signout-button", never, { "classbtn": { "alias": "classbtn"; "required": false; }; }, {}, never, never, false, never>;
7
+ }
@@ -1,6 +1,6 @@
1
- import * as i0 from "@angular/core";
2
- export declare class SignUpButtonComponent {
3
- classbtn: string;
4
- static ɵfac: i0.ɵɵFactoryDeclaration<SignUpButtonComponent, never>;
5
- static ɵcmp: i0.ɵɵComponentDeclaration<SignUpButtonComponent, "anatoly-signup-button", never, { "classbtn": "classbtn"; }, {}, never, never, false, never>;
6
- }
1
+ import * as i0 from "@angular/core";
2
+ export declare class SignUpButtonComponent {
3
+ classbtn: string;
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<SignUpButtonComponent, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<SignUpButtonComponent, "anatoly-signup-button", never, { "classbtn": { "alias": "classbtn"; "required": false; }; }, {}, never, never, false, never>;
6
+ }
@@ -1,25 +1,25 @@
1
- export * from './billing/buyaccess-button.component';
2
- export * from './billing/subscribe-plan-button.component';
3
- export * from './check-icon/check-icon.component';
4
- export * from './datapager/datapager.component';
5
- export * from './identity/signin-button.component';
6
- export * from './identity/signout-button.component';
7
- export * from './identity/signup-button.component';
8
- export * from './nodata/nodata.component';
9
- export * from './spinners/loading/loading.component';
10
- export * from './spinners/pagespinner/pagespinner.component';
11
- export * from './copy-2-clipboard/copy-2-clipboard.component';
12
- export * from './card/card.component';
13
- export * from './card/card-header.component';
14
- export * from './card/card-body.component';
15
- export * from './card/card-footer.component';
16
- export * from './html-editor/html-editor.defaultoptions';
17
- export * from './html-editor/base-html-editor.component';
18
- export * from './html-editor/forms-html-editor.component';
19
- export * from './html-editor/html-editor.component';
20
- export * from './base/base-edit.component';
21
- export * from './base/base.component';
22
- export * from './base/base.dialog';
23
- export * from './base/base.list';
24
- export * from './base/base.page';
25
- export * from './base/base.paged.page';
1
+ export * from './billing/buyaccess-button.component';
2
+ export * from './billing/subscribe-plan-button.component';
3
+ export * from './check-icon/check-icon.component';
4
+ export * from './datapager/datapager.component';
5
+ export * from './identity/signin-button.component';
6
+ export * from './identity/signout-button.component';
7
+ export * from './identity/signup-button.component';
8
+ export * from './nodata/nodata.component';
9
+ export * from './spinners/loading/loading.component';
10
+ export * from './spinners/pagespinner/pagespinner.component';
11
+ export * from './copy-2-clipboard/copy-2-clipboard.component';
12
+ export * from './card/card.component';
13
+ export * from './card/card-header.component';
14
+ export * from './card/card-body.component';
15
+ export * from './card/card-footer.component';
16
+ export * from './html-editor/html-editor.defaultoptions';
17
+ export * from './html-editor/base-html-editor.component';
18
+ export * from './html-editor/forms-html-editor.component';
19
+ export * from './html-editor/html-editor.component';
20
+ export * from './base/base-edit.component';
21
+ export * from './base/base.component';
22
+ export * from './base/base.dialog';
23
+ export * from './base/base.list';
24
+ export * from './base/base.page';
25
+ export * from './base/base.paged.page';
@@ -1,11 +1,11 @@
1
- import * as i0 from "@angular/core";
2
- export declare class NodataComponent {
3
- dataLoading: boolean;
4
- dataLoaded: boolean;
5
- dataFound: boolean;
6
- heading: string;
7
- headingClass: string;
8
- constructor();
9
- static ɵfac: i0.ɵɵFactoryDeclaration<NodataComponent, never>;
10
- static ɵcmp: i0.ɵɵComponentDeclaration<NodataComponent, "anatoly-nodata", never, { "dataLoading": "dataLoading"; "dataLoaded": "dataLoaded"; "dataFound": "dataFound"; "heading": "heading"; "headingClass": "headingClass"; }, {}, never, ["*"], false, never>;
11
- }
1
+ import * as i0 from "@angular/core";
2
+ export declare class NodataComponent {
3
+ dataLoading: boolean;
4
+ dataLoaded: boolean;
5
+ dataFound: boolean;
6
+ heading: string;
7
+ headingClass: string;
8
+ constructor();
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<NodataComponent, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<NodataComponent, "anatoly-nodata", never, { "dataLoading": { "alias": "dataLoading"; "required": false; }; "dataLoaded": { "alias": "dataLoaded"; "required": false; }; "dataFound": { "alias": "dataFound"; "required": false; }; "heading": { "alias": "heading"; "required": false; }; "headingClass": { "alias": "headingClass"; "required": false; }; }, {}, never, ["*"], false, never>;
11
+ }