@osovitny/anatoly 2.0.40 → 2.0.41

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 (63) hide show
  1. package/bundles/osovitny-anatoly.umd.js +125 -59
  2. package/bundles/osovitny-anatoly.umd.js.map +1 -1
  3. package/bundles/osovitny-anatoly.umd.min.js +2 -2
  4. package/bundles/osovitny-anatoly.umd.min.js.map +1 -1
  5. package/esm2015/lib/core/consts/settings.js +2 -2
  6. package/esm2015/lib/core/convert.js +2 -2
  7. package/esm2015/lib/core/go/base-go.service.js +2 -2
  8. package/esm2015/lib/core/guards/once-import.guard.js +2 -2
  9. package/esm2015/lib/core/guid.js +2 -2
  10. package/esm2015/lib/core/interceptors/httpInterceptor.js +2 -2
  11. package/esm2015/lib/core/localization/localization.module.js +2 -2
  12. package/esm2015/lib/core/localization/localization.service.js +74 -20
  13. package/esm2015/lib/core/localization/localizationSettings.module.js +3 -3
  14. package/esm2015/lib/core/localization/localize.pipe.js +13 -7
  15. package/esm2015/lib/core/localization/utils.js +2 -2
  16. package/esm2015/lib/core/logging/globalErrorHandler.js +2 -2
  17. package/esm2015/lib/core/logging/logging.service.js +2 -2
  18. package/esm2015/lib/core/notifications/alerts.js +2 -2
  19. package/esm2015/lib/core/notifications/interfaces/notification.js +2 -2
  20. package/esm2015/lib/core/notifications/services/notification-service.js +2 -2
  21. package/esm2015/lib/core/services/appcontext.service.js +2 -2
  22. package/esm2015/lib/core/services/dm.service.js +2 -2
  23. package/esm2015/lib/core/services/google-analytics.service.js +8 -3
  24. package/esm2015/lib/core/services/idle.service.js +2 -2
  25. package/esm2015/lib/core/services/loading.service.js +2 -2
  26. package/esm2015/lib/core/services/web-storage.service.js +2 -2
  27. package/esm2015/lib/core/subs.js +2 -2
  28. package/esm2015/lib/core/utils.js +2 -2
  29. package/esm2015/lib/data/base/base-api.service.js +2 -2
  30. package/esm2015/lib/data/base/grid/base-grid-edit.service.js +2 -2
  31. package/esm2015/lib/data/base/grid/base-grid-read.service.js +2 -2
  32. package/esm2015/lib/data/consts.js +2 -2
  33. package/esm2015/lib/data/data.module.js +2 -2
  34. package/esm2015/lib/data/services/billing-api.service.js +2 -2
  35. package/esm2015/lib/data/services/notifications/notifications-api-service.js +2 -2
  36. package/esm2015/lib/ui/components/base-edit.component.js +2 -2
  37. package/esm2015/lib/ui/components/base.component.js +2 -2
  38. package/esm2015/lib/ui/components/billing/buyaccess-button.component.js +2 -2
  39. package/esm2015/lib/ui/components/billing/subscribe-plan-button.component.js +2 -2
  40. package/esm2015/lib/ui/components/billing/upgrade-plan-button.component.js +2 -2
  41. package/esm2015/lib/ui/components/content-header/content-header.component.js +2 -2
  42. package/esm2015/lib/ui/components/html-editor/base-html-editor.component.js +2 -2
  43. package/esm2015/lib/ui/components/html-editor/forms-html-editor.component.js +2 -2
  44. package/esm2015/lib/ui/components/html-editor/html-editor.component.js +2 -2
  45. package/esm2015/lib/ui/components/html-editor/html-editor.defaultoptions.js +2 -2
  46. package/esm2015/lib/ui/components/identity/signin-button.component.js +2 -2
  47. package/esm2015/lib/ui/components/identity/signout-button.component.js +2 -2
  48. package/esm2015/lib/ui/components/identity/signup-button.component.js +2 -2
  49. package/esm2015/lib/ui/components/loading/loading.component.js +2 -2
  50. package/esm2015/lib/ui/components/spinner/spinner.component.js +2 -2
  51. package/esm2015/lib/ui/directives/native-element.directive.js +2 -2
  52. package/esm2015/lib/ui/pipes/filesize.pipe.js +2 -2
  53. package/esm2015/lib/ui/pipes/replace-text.pipe.js +2 -2
  54. package/esm2015/lib/ui/pipes/safeHtml.pipe.js +2 -2
  55. package/esm2015/lib/ui/ui.module.js +2 -2
  56. package/esm2015/lib/ui/validation/form-validation-summary.component.js +2 -2
  57. package/esm2015/lib/ui/validation/item-validation-summary.component.js +2 -2
  58. package/esm2015/lib/ui/validation/validation-summary.component.js +2 -2
  59. package/fesm2015/osovitny-anatoly.js +140 -73
  60. package/fesm2015/osovitny-anatoly.js.map +1 -1
  61. package/lib/core/localization/localization.service.d.ts +3 -0
  62. package/osovitny-anatoly.metadata.json +1 -1
  63. package/package.json +1 -1
@@ -5,6 +5,7 @@ import { tap, map } from 'rxjs/operators';
5
5
  import { BehaviorSubject, Subject, merge, fromEvent, timer } from 'rxjs';
6
6
  import { TranslateService, TranslateModule, TranslateLoader } from '@ngx-translate/core';
7
7
  import { isValid, format, formatDistanceToNow, formatDistance } from 'date-fns';
8
+ import { utcToZonedTime } from 'date-fns-tz';
8
9
  import enUS from 'date-fns/locale/en-US';
9
10
  import { LOCATION_INITIALIZED, DOCUMENT, CommonModule } from '@angular/common';
10
11
  import { TranslateHttpLoader } from '@ngx-translate/http-loader';
@@ -30,7 +31,7 @@ import { FroalaEditorModule, FroalaViewModule } from 'angular-froala-wysiwyg';
30
31
  Version:
31
32
  1.0
32
33
 
33
- Copyright (c) 2016-2020 Osovitny Inc. All rights reserved.
34
+ Copyright (c) 2016-20201Osovitny Inc. All rights reserved.
34
35
  </file>
35
36
  */
36
37
  const ContextInitState = JSON.parse((document.getElementById('contextInitState')).getAttribute('data-contextinitstate'));
@@ -73,7 +74,7 @@ const Urls = {
73
74
  Version:
74
75
  1.0
75
76
 
76
- Copyright (c) 2016-2020 Osovitny Inc. All rights reserved.
77
+ Copyright (c) 2016-20201Osovitny Inc. All rights reserved.
77
78
  </file>
78
79
  */
79
80
  class BaseGoService {
@@ -109,7 +110,7 @@ BaseGoService.ctorParameters = () => [
109
110
  Version:
110
111
  1.0
111
112
 
112
- Copyright (c) 2016-2020 Osovitny Inc. All rights reserved.
113
+ Copyright (c) 2016-20201Osovitny Inc. All rights reserved.
113
114
  </file>
114
115
  */
115
116
  function throwIfAlreadyLoaded(parentModule, moduleName) {
@@ -133,7 +134,7 @@ function throwIfAlreadyLoaded(parentModule, moduleName) {
133
134
  Version:
134
135
  1.0
135
136
 
136
- Copyright (c) 2016-2020 Osovitny Inc. All rights reserved.
137
+ Copyright (c) 2016-20201Osovitny Inc. All rights reserved.
137
138
  </file>
138
139
  */
139
140
  class LoadingService extends BehaviorSubject {
@@ -198,7 +199,7 @@ LoadingService.ctorParameters = () => [];
198
199
  Version:
199
200
  1.0
200
201
 
201
- Copyright (c) 2016-2020 Osovitny Inc. All rights reserved.
202
+ Copyright (c) 2016-20201Osovitny Inc. All rights reserved.
202
203
  </file>
203
204
  */
204
205
  class LoggingService {
@@ -233,7 +234,7 @@ LoggingService.ctorParameters = () => [];
233
234
  Version:
234
235
  1.0
235
236
 
236
- Copyright (c) 2016-2020 Osovitny Inc. All rights reserved.
237
+ Copyright (c) 2016-20201Osovitny Inc. All rights reserved.
237
238
  </file>
238
239
  */
239
240
  class AnatolyHttpInterceptor {
@@ -333,7 +334,7 @@ AnatolyHttpInterceptor.ctorParameters = () => [
333
334
  Version:
334
335
  1.0
335
336
 
336
- Copyright (c) 2016-2020 Osovitny Inc. All rights reserved.
337
+ Copyright (c) 2016-20201Osovitny Inc. All rights reserved.
337
338
  </file>
338
339
  */
339
340
  class Convert {
@@ -355,12 +356,12 @@ class Convert {
355
356
  Anatoly Osovitny
356
357
 
357
358
  Created:
358
- 05 May 2020
359
+ 05 May 2020
359
360
 
360
361
  Version:
361
362
  1.0
362
363
 
363
- Copyright (c) 2016-2020 Osovitny Inc. All rights reserved.
364
+ Copyright (c) 2016-20201Osovitny Inc. All rights reserved.
364
365
  </file>
365
366
  */
366
367
  class LocalizationService {
@@ -369,12 +370,16 @@ class LocalizationService {
369
370
  this.setSupportedLanguages(['en']);
370
371
  }
371
372
  format(str, args) {
372
- // tslint:disable-next-line:variable-name
373
- return str.replace(/{(\d+)}/g, (match, number) => typeof args[number] !== 'undefined' ? args[number] : match);
373
+ return str.replace(/{(\d+)}/g, function (match, number) {
374
+ return typeof args[number] != 'undefined'
375
+ ? args[number]
376
+ : match;
377
+ });
374
378
  }
375
379
  ;
376
380
  configureTranslationSettings(translate) {
377
381
  const languageToSet = 'en';
382
+ this.dateFnsLocale = { locale: enUS };
378
383
  translate.setDefaultLang(languageToSet);
379
384
  return languageToSet;
380
385
  }
@@ -410,31 +415,82 @@ class LocalizationService {
410
415
  }
411
416
  getLocalizedDate(key) {
412
417
  if (isValid(new Date(key))) {
413
- return format(new Date(key), AppCoreSettings.DATE_FORMATS.angular, this.dateFnsLocale);
418
+ return format(new Date(key), 'd.M.yyyy', this.dateFnsLocale);
414
419
  }
415
- return 'Invalid Date';
420
+ return "Invalid Date";
416
421
  }
417
422
  getLocalizedDateTime(key) {
418
- // To Do Manoj: Test in IE and make TimeZone specific changes accordingly
419
- const dateValue = new Date(key);
423
+ //To Do Manoj: Test in IE and make TimeZone specific changes accordingly
424
+ let dateValue = new Date(key);
420
425
  if (isValid(dateValue)) {
421
- const localDate = Convert.toLocalizedDateTime(dateValue);
422
- return format(localDate, AppCoreSettings.DATE_FORMATS.angularWithTime, this.dateFnsLocale);
426
+ let localDate = Convert.toLocalizedDateTime(dateValue);
427
+ return format(localDate, 'd.M.yyyy HH:mm', this.dateFnsLocale);
428
+ }
429
+ return "Invalid Date";
430
+ }
431
+ getUTCToLocalizedDateTime(key) {
432
+ let browserTimeZone = Intl.DateTimeFormat().resolvedOptions().timeZone;
433
+ if (key) {
434
+ if (key.indexOf("T") == -1) {
435
+ key = key.replace(" ", "T");
436
+ }
437
+ if (key.indexOf("Z") == -1) {
438
+ key = key + "Z";
439
+ }
440
+ }
441
+ if (browserTimeZone) {
442
+ let localDateTime = utcToZonedTime(key, browserTimeZone);
443
+ return format(localDateTime, 'd.M.yyyy HH:mm', this.dateFnsLocale);
444
+ }
445
+ else {
446
+ return format(new Date(key), 'd.M.yyyy HH:mm', this.dateFnsLocale);
423
447
  }
424
- return 'Invalid Date';
448
+ }
449
+ //https://date-fns.org/v1.30.1/docs/distanceInWords
450
+ getUTCToLocalizedDistanceToNowInWords(date) {
451
+ date = this.safeUtcToZonedTime(date);
452
+ if (isValid(new Date(date))) {
453
+ return formatDistanceToNow(new Date(date), this.dateFnsLocale);
454
+ }
455
+ return "Invalid Date";
425
456
  }
426
457
  getLocalizedDistanceToNowInWords(date) {
427
- // https://date-fns.org/v1.30.1/docs/distanceInWords
428
458
  if (isValid(new Date(date))) {
429
459
  return formatDistanceToNow(new Date(date), this.dateFnsLocale);
430
460
  }
431
- return 'Invalid Date';
461
+ return "Invalid Date";
432
462
  }
433
463
  getLocalizedDistanceInWords(endedDate, startedDate) {
434
464
  if (isValid(new Date(endedDate)) && isValid(new Date(startedDate))) {
435
465
  return formatDistance(new Date(endedDate), new Date(startedDate), this.dateFnsLocale);
436
466
  }
437
- return 'Invalid Date';
467
+ return "Invalid Date";
468
+ }
469
+ safeUtcToZonedTime(date) {
470
+ let result = date;
471
+ try {
472
+ if (date) {
473
+ if (date.indexOf("T") == -1) {
474
+ date = date.replace(" ", "T");
475
+ }
476
+ if (date.indexOf("Z") == -1) {
477
+ date = date + "Z";
478
+ }
479
+ }
480
+ let browserTimeZone = Intl.DateTimeFormat().resolvedOptions().timeZone;
481
+ if (browserTimeZone) {
482
+ result = utcToZonedTime(date, browserTimeZone).toString();
483
+ }
484
+ else {
485
+ result = new Date(date).toString();
486
+ }
487
+ }
488
+ catch (_a) {
489
+ if (date) {
490
+ console.log("UTC to Local conversion failed for :" + date.toString());
491
+ }
492
+ }
493
+ return result;
438
494
  }
439
495
  }
440
496
  LocalizationService.ɵprov = ɵɵdefineInjectable({ factory: function LocalizationService_Factory() { return new LocalizationService(ɵɵinject(TranslateService)); }, token: LocalizationService, providedIn: "root" });
@@ -462,7 +518,7 @@ LocalizationService.ctorParameters = () => [
462
518
  Version:
463
519
  1.0
464
520
 
465
- Copyright (c) 2016-2020 Osovitny Inc. All rights reserved.
521
+ Copyright (c) 2016-20201Osovitny Inc. All rights reserved.
466
522
  </file>
467
523
  */
468
524
  class LocalizePipe {
@@ -476,23 +532,29 @@ class LocalizePipe {
476
532
  if (!type) {
477
533
  type = 't';
478
534
  }
479
- // Translate
535
+ //Translate
480
536
  if (type === 't') {
481
537
  return this.localizeService.getLocalizedValue(inputData);
482
538
  }
483
- // Date
539
+ //Date
484
540
  if (type === 'd') {
485
541
  return this.localizeService.getLocalizedDate(inputData);
486
542
  }
487
- // DateTime
543
+ //DateTime
488
544
  if (type === 'dt') {
489
545
  return this.localizeService.getLocalizedDateTime(inputData);
490
546
  }
491
- // DistanceToNowInWords
547
+ if (type === 'uldt') {
548
+ return this.localizeService.getUTCToLocalizedDateTime(inputData);
549
+ }
550
+ //DistanceToNowInWords
551
+ if (type === 'uldis2now') {
552
+ return this.localizeService.getUTCToLocalizedDistanceToNowInWords(inputData);
553
+ }
492
554
  if (type === 'dis2now') {
493
555
  return this.localizeService.getLocalizedDistanceToNowInWords(inputData);
494
556
  }
495
- // DistanceInWords
557
+ //DistanceInWords
496
558
  if (type === 'dis') {
497
559
  return this.localizeService.getLocalizedDistanceInWords(inputData, param2);
498
560
  }
@@ -523,7 +585,7 @@ LocalizePipe.ctorParameters = () => [
523
585
  Version:
524
586
  1.0
525
587
 
526
- Copyright (c) 2016-2020 Osovitny Inc. All rights reserved.
588
+ Copyright (c) 2016-20201Osovitny Inc. All rights reserved.
527
589
  </file>
528
590
  */
529
591
  function customTranslateLoaderFactory(http) {
@@ -592,7 +654,7 @@ LocalizationSettingsModule.ctorParameters = () => [
592
654
  Version:
593
655
  1.0
594
656
 
595
- Copyright (c) 2016-2020 Osovitny Inc. All rights reserved.
657
+ Copyright (c) 2016-20201Osovitny Inc. All rights reserved.
596
658
  </file>
597
659
  */
598
660
  class LocalizationModule {
@@ -628,7 +690,7 @@ LocalizationModule.decorators = [
628
690
  Version:
629
691
  1.0
630
692
 
631
- Copyright (c) 2016-2020 Osovitny Inc. All rights reserved.
693
+ Copyright (c) 2016-20201Osovitny Inc. All rights reserved.
632
694
  </file>
633
695
  */
634
696
  class GlobalErrorHandler {
@@ -664,7 +726,7 @@ GlobalErrorHandler.ctorParameters = () => [
664
726
  Version:
665
727
  1.0
666
728
 
667
- Copyright (c) 2016-2020 Osovitny Inc. All rights reserved.
729
+ Copyright (c) 2016-20201Osovitny Inc. All rights reserved.
668
730
  </file>
669
731
  */
670
732
  class L10nUtils {
@@ -706,7 +768,7 @@ class L10nUtils {
706
768
  Version:
707
769
  1.0
708
770
 
709
- Copyright (c) 2016-2020 Osovitny Inc. All rights reserved.
771
+ Copyright (c) 2016-20201Osovitny Inc. All rights reserved.
710
772
  </file>
711
773
  */
712
774
  class Alerts {
@@ -813,7 +875,7 @@ class Alerts {
813
875
  Version:
814
876
  1.0
815
877
 
816
- Copyright (c) 2016-2020 Osovitny Inc. All rights reserved.
878
+ Copyright (c) 2016-20201Osovitny Inc. All rights reserved.
817
879
  </file>
818
880
  */
819
881
 
@@ -832,7 +894,7 @@ class Alerts {
832
894
  Version:
833
895
  1.0
834
896
 
835
- Copyright (c) 2016-2020 Osovitny Inc. All rights reserved.
897
+ Copyright (c) 2016-20201Osovitny Inc. All rights reserved.
836
898
  </file>
837
899
  */
838
900
  class Guid {
@@ -856,7 +918,7 @@ class Guid {
856
918
  Version:
857
919
  1.0
858
920
 
859
- Copyright (c) 2016-2020 Osovitny Inc. All rights reserved.
921
+ Copyright (c) 2016-20201Osovitny Inc. All rights reserved.
860
922
  </file>
861
923
  */
862
924
  // SignalR
@@ -1076,7 +1138,7 @@ NotificationService.ctorParameters = () => [
1076
1138
  Version:
1077
1139
  1.0
1078
1140
 
1079
- Copyright (c) 2016-2020 Osovitny Inc. All rights reserved.
1141
+ Copyright (c) 2016-20201Osovitny Inc. All rights reserved.
1080
1142
  </file>
1081
1143
  */
1082
1144
  class BaseApiService {
@@ -1165,7 +1227,7 @@ BaseApiService.ctorParameters = () => [
1165
1227
  Version:
1166
1228
  1.0
1167
1229
 
1168
- Copyright (c) 2016-2020 Osovitny Inc. All rights reserved.
1230
+ Copyright (c) 2016-20201Osovitny Inc. All rights reserved.
1169
1231
  </file>
1170
1232
  */
1171
1233
  class AppContextService extends BaseApiService {
@@ -1233,7 +1295,7 @@ AppContextService.ctorParameters = () => [
1233
1295
  Version:
1234
1296
  1.0
1235
1297
 
1236
- Copyright (c) 2016-2020 Osovitny Inc. All rights reserved.
1298
+ Copyright (c) 2016-20201Osovitny Inc. All rights reserved.
1237
1299
  </file>
1238
1300
  */
1239
1301
  class IdleService {
@@ -1293,7 +1355,7 @@ IdleService.decorators = [
1293
1355
  Version:
1294
1356
  1.0
1295
1357
 
1296
- Copyright (c) 2016-2020 Osovitny Inc. All rights reserved.
1358
+ Copyright (c) 2016-20201Osovitny Inc. All rights reserved.
1297
1359
  </file>
1298
1360
  */
1299
1361
  class WebStorageService {
@@ -1354,7 +1416,7 @@ SessionStorageService.ctorParameters = () => [];
1354
1416
  Version:
1355
1417
  1.0
1356
1418
 
1357
- Copyright (c) 2016-2020 Osovitny Inc. All rights reserved.
1419
+ Copyright (c) 2016-20201Osovitny Inc. All rights reserved.
1358
1420
  </file>
1359
1421
  */
1360
1422
  class DigitalMarketingService {
@@ -1416,17 +1478,22 @@ DigitalMarketingService.ctorParameters = () => [
1416
1478
  Anatoly Osovitny
1417
1479
 
1418
1480
  Created:
1419
- 29 Щсе 2020
1481
+ 29 Nov 2020
1420
1482
 
1421
1483
  Version:
1422
1484
  1.0
1423
1485
 
1424
- Copyright (c) 2016-2020 Osovitny Inc. All rights reserved.
1486
+ Copyright (c) 2016-20201Osovitny Inc. All rights reserved.
1425
1487
  </file>
1426
1488
  */
1427
1489
  class GoogleAnalyticsService {
1428
1490
  constructor(router) {
1429
1491
  this.router = router;
1492
+ /*
1493
+ https://yashints.dev/blog/2019/02/12/angular-ga-tagmanager
1494
+ https://developers.google.com/analytics/devguides/collection/gtagjs/pages
1495
+ https://developers.google.com/analytics/devguides/collection/upgrade/analyticsjs
1496
+ */
1430
1497
  }
1431
1498
  subscribe() {
1432
1499
  this.subscription = this.router.events.subscribe(event => {
@@ -1493,7 +1560,7 @@ AnatolyCoreModule.ctorParameters = () => [
1493
1560
  Version:
1494
1561
  1.0
1495
1562
 
1496
- Copyright (c) 2016-2020 Osovitny Inc. All rights reserved.
1563
+ Copyright (c) 2016-20201Osovitny Inc. All rights reserved.
1497
1564
  </file>
1498
1565
  */
1499
1566
  class Subs {
@@ -1527,7 +1594,7 @@ class Subs {
1527
1594
  Version:
1528
1595
  1.0
1529
1596
 
1530
- Copyright (c) 2016-2020 Osovitny Inc. All rights reserved.
1597
+ Copyright (c) 2016-20201Osovitny Inc. All rights reserved.
1531
1598
  </file>
1532
1599
  */
1533
1600
  class Utils {
@@ -1586,7 +1653,7 @@ class Utils {
1586
1653
  Version:
1587
1654
  1.0
1588
1655
 
1589
- Copyright (c) 2016-2020 Osovitny Inc. All rights reserved.
1656
+ Copyright (c) 2016-20201Osovitny Inc. All rights reserved.
1590
1657
  </file>
1591
1658
  */
1592
1659
  class BaseGridReadService extends BehaviorSubject {
@@ -1642,7 +1709,7 @@ BaseGridReadService.ctorParameters = () => [
1642
1709
  Version:
1643
1710
  1.0
1644
1711
 
1645
- Copyright (c) 2016-2020 Osovitny Inc. All rights reserved.
1712
+ Copyright (c) 2016-20201Osovitny Inc. All rights reserved.
1646
1713
  </file>
1647
1714
  */
1648
1715
  class BaseGridEditService extends BaseGridReadService {
@@ -1713,7 +1780,7 @@ BaseGridEditService.ctorParameters = () => [
1713
1780
  Version:
1714
1781
  1.0
1715
1782
 
1716
- Copyright (c) 2016-2020 Osovitny Inc. All rights reserved.
1783
+ Copyright (c) 2016-20201Osovitny Inc. All rights reserved.
1717
1784
  </file>
1718
1785
  */
1719
1786
  const consts = {
@@ -1737,7 +1804,7 @@ const consts = {
1737
1804
  Version:
1738
1805
  1.0
1739
1806
 
1740
- Copyright (c) 2016-2020 Osovitny Inc. All rights reserved.
1807
+ Copyright (c) 2016-20201Osovitny Inc. All rights reserved.
1741
1808
  </file>
1742
1809
  */
1743
1810
  class NotificationsApiService extends BaseApiService {
@@ -1775,7 +1842,7 @@ NotificationsApiService.ctorParameters = () => [
1775
1842
  Version:
1776
1843
  1.0
1777
1844
 
1778
- Copyright (c) 2016-2020 Osovitny Inc. All rights reserved.
1845
+ Copyright (c) 2016-20201Osovitny Inc. All rights reserved.
1779
1846
  </file>
1780
1847
  */
1781
1848
  class BillingApiService extends BaseApiService {
@@ -1834,7 +1901,7 @@ BillingApiService.ctorParameters = () => [
1834
1901
  Version:
1835
1902
  1.0
1836
1903
 
1837
- Copyright (c) 2016-2020 Osovitny Inc. All rights reserved.
1904
+ Copyright (c) 2016-20201Osovitny Inc. All rights reserved.
1838
1905
  </file>
1839
1906
  */
1840
1907
  class AnatolyDataModule {
@@ -1871,7 +1938,7 @@ AnatolyDataModule.ctorParameters = () => [
1871
1938
  Version:
1872
1939
  1.0
1873
1940
 
1874
- Copyright (c) 2016-2020 Osovitny Inc. All rights reserved.
1941
+ Copyright (c) 2016-20201Osovitny Inc. All rights reserved.
1875
1942
  </file>
1876
1943
  */
1877
1944
  class BuyAccessButtonComponent {
@@ -1939,7 +2006,7 @@ BuyAccessButtonComponent.propDecorators = {
1939
2006
  Version:
1940
2007
  1.0
1941
2008
 
1942
- Copyright (c) 2016-2020 Osovitny Inc. All rights reserved.
2009
+ Copyright (c) 2016-20201Osovitny Inc. All rights reserved.
1943
2010
  </file>
1944
2011
  */
1945
2012
  class SubscribePlanButtonComponent {
@@ -1998,7 +2065,7 @@ SubscribePlanButtonComponent.propDecorators = {
1998
2065
  Version:
1999
2066
  1.0
2000
2067
 
2001
- Copyright (c) 2016-2020 Osovitny Inc. All rights reserved.
2068
+ Copyright (c) 2016-20201Osovitny Inc. All rights reserved.
2002
2069
  </file>
2003
2070
  */
2004
2071
  // Services
@@ -2048,7 +2115,7 @@ UpgradePlanButtonComponent.propDecorators = {
2048
2115
  Version:
2049
2116
  1.0
2050
2117
 
2051
- Copyright (c) 2016-2020 Osovitny Inc. All rights reserved.
2118
+ Copyright (c) 2016-20201Osovitny Inc. All rights reserved.
2052
2119
  </file>
2053
2120
  */
2054
2121
  class ContentHeaderComponent {
@@ -2083,7 +2150,7 @@ ContentHeaderComponent.propDecorators = {
2083
2150
  Version:
2084
2151
  1.0
2085
2152
 
2086
- Copyright (c) 2016-2020 Osovitny Inc. All rights reserved.
2153
+ Copyright (c) 2016-20201Osovitny Inc. All rights reserved.
2087
2154
  </file>
2088
2155
  */
2089
2156
  const DefaultEditorOptions = {
@@ -2172,7 +2239,7 @@ const DefaultEditorOptions = {
2172
2239
  Version:
2173
2240
  1.0
2174
2241
 
2175
- Copyright (c) 2016-2020 Osovitny Inc. All rights reserved.
2242
+ Copyright (c) 2016-20201Osovitny Inc. All rights reserved.
2176
2243
  </file>
2177
2244
  */
2178
2245
  class BaseComponent {
@@ -2205,7 +2272,7 @@ class BaseComponent {
2205
2272
  Version:
2206
2273
  1.0
2207
2274
 
2208
- Copyright (c) 2016-2020 Osovitny Inc. All rights reserved.
2275
+ Copyright (c) 2016-20201Osovitny Inc. All rights reserved.
2209
2276
  </file>
2210
2277
  */
2211
2278
  class BaseEditComponent extends BaseComponent {
@@ -2335,7 +2402,7 @@ BaseEditComponent.propDecorators = {
2335
2402
  Version:
2336
2403
  1.0
2337
2404
 
2338
- Copyright (c) 2016-2020 Osovitny Inc. All rights reserved.
2405
+ Copyright (c) 2016-20201Osovitny Inc. All rights reserved.
2339
2406
  </file>
2340
2407
  */
2341
2408
  class BaseHtmlEditorComponent extends BaseEditComponent {
@@ -2431,7 +2498,7 @@ BaseHtmlEditorComponent.propDecorators = {
2431
2498
  Version:
2432
2499
  1.0
2433
2500
 
2434
- Copyright (c) 2016-2020 Osovitny Inc. All rights reserved.
2501
+ Copyright (c) 2016-20201Osovitny Inc. All rights reserved.
2435
2502
  </file>
2436
2503
  */
2437
2504
  class FormsHtmlEditorComponent extends BaseHtmlEditorComponent {
@@ -2471,7 +2538,7 @@ FormsHtmlEditorComponent.propDecorators = {
2471
2538
  Version:
2472
2539
  1.0
2473
2540
 
2474
- Copyright (c) 2016-2020 Osovitny Inc. All rights reserved.
2541
+ Copyright (c) 2016-20201Osovitny Inc. All rights reserved.
2475
2542
  </file>
2476
2543
  */
2477
2544
  class HtmlEditorComponent extends BaseHtmlEditorComponent {
@@ -2518,7 +2585,7 @@ HtmlEditorComponent.ctorParameters = () => [];
2518
2585
  Version:
2519
2586
  1.0
2520
2587
 
2521
- Copyright (c) 2016-2020 Osovitny Inc. All rights reserved.
2588
+ Copyright (c) 2016-20201Osovitny Inc. All rights reserved.
2522
2589
  </file>
2523
2590
  */
2524
2591
  class SignInButtonComponent {
@@ -2550,7 +2617,7 @@ SignInButtonComponent.propDecorators = {
2550
2617
  Version:
2551
2618
  1.0
2552
2619
 
2553
- Copyright (c) 2016-2020 Osovitny Inc. All rights reserved.
2620
+ Copyright (c) 2016-20201Osovitny Inc. All rights reserved.
2554
2621
  </file>
2555
2622
  */
2556
2623
  class SignOutButtonComponent {
@@ -2582,7 +2649,7 @@ SignOutButtonComponent.propDecorators = {
2582
2649
  Version:
2583
2650
  1.0
2584
2651
 
2585
- Copyright (c) 2016-2020 Osovitny Inc. All rights reserved.
2652
+ Copyright (c) 2016-20201Osovitny Inc. All rights reserved.
2586
2653
  </file>
2587
2654
  */
2588
2655
  class SignUpButtonComponent {
@@ -2612,7 +2679,7 @@ SignUpButtonComponent.propDecorators = {
2612
2679
  Version:
2613
2680
  1.0
2614
2681
 
2615
- Copyright (c) 2016-2020 Osovitny Inc. All rights reserved.
2682
+ Copyright (c) 2016-20201Osovitny Inc. All rights reserved.
2616
2683
  </file>
2617
2684
  */
2618
2685
  class LoadingComponent {
@@ -2657,7 +2724,7 @@ LoadingComponent.ctorParameters = () => [
2657
2724
  Version:
2658
2725
  1.0
2659
2726
 
2660
- Copyright (c) 2016-2020 Osovitny Inc. All rights reserved.
2727
+ Copyright (c) 2016-20201Osovitny Inc. All rights reserved.
2661
2728
  </file>
2662
2729
  */
2663
2730
  const SpinnerSpinKit = {
@@ -2726,7 +2793,7 @@ SpinnerComponent.propDecorators = {
2726
2793
  Version:
2727
2794
  1.0
2728
2795
 
2729
- Copyright (c) 2016-2020 Osovitny Inc. All rights reserved.
2796
+ Copyright (c) 2016-20201Osovitny Inc. All rights reserved.
2730
2797
  </file>
2731
2798
  */
2732
2799
  class NativeElementDirective {
@@ -2764,7 +2831,7 @@ NativeElementDirective.ctorParameters = () => [
2764
2831
  Version:
2765
2832
  1.0
2766
2833
 
2767
- Copyright (c) 2016-2020 Osovitny Inc. All rights reserved.
2834
+ Copyright (c) 2016-20201Osovitny Inc. All rights reserved.
2768
2835
  </file>
2769
2836
  */
2770
2837
  class ReplaceTextPipe {
@@ -2798,7 +2865,7 @@ ReplaceTextPipe.decorators = [
2798
2865
  Version:
2799
2866
  1.0
2800
2867
 
2801
- Copyright (c) 2016-2020 Osovitny Inc. All rights reserved.
2868
+ Copyright (c) 2016-20201Osovitny Inc. All rights reserved.
2802
2869
  </file>
2803
2870
  */
2804
2871
  class FileSizePipe {
@@ -2837,7 +2904,7 @@ FileSizePipe.decorators = [
2837
2904
  Version:
2838
2905
  1.0
2839
2906
 
2840
- Copyright (c) 2016-2020 Osovitny Inc. All rights reserved.
2907
+ Copyright (c) 2016-20201Osovitny Inc. All rights reserved.
2841
2908
  </file>
2842
2909
  */
2843
2910
  class SafeHtmlPipe {
@@ -2870,7 +2937,7 @@ SafeHtmlPipe.ctorParameters = () => [
2870
2937
  Version:
2871
2938
  1.0
2872
2939
 
2873
- Copyright (c) 2016-2020 Osovitny Inc. All rights reserved.
2940
+ Copyright (c) 2016-20201Osovitny Inc. All rights reserved.
2874
2941
  </file>
2875
2942
  */
2876
2943
  class ValidationSummaryComponent extends BaseEditComponent {
@@ -2985,7 +3052,7 @@ class ValidationSummaryComponent extends BaseEditComponent {
2985
3052
  Version:
2986
3053
  1.0
2987
3054
 
2988
- Copyright (c) 2016-2020 Osovitny Inc. All rights reserved.
3055
+ Copyright (c) 2016-20201Osovitny Inc. All rights reserved.
2989
3056
  </file>
2990
3057
  */
2991
3058
  class FormValidationSummaryComponent extends ValidationSummaryComponent {
@@ -3046,7 +3113,7 @@ FormValidationSummaryComponent.propDecorators = {
3046
3113
  Version:
3047
3114
  1.0
3048
3115
 
3049
- Copyright (c) 2016-2020 Osovitny Inc. All rights reserved.
3116
+ Copyright (c) 2016-20201Osovitny Inc. All rights reserved.
3050
3117
  </file>
3051
3118
  */
3052
3119
  class ItemValidationSummaryComponent extends ValidationSummaryComponent {
@@ -3081,7 +3148,7 @@ ItemValidationSummaryComponent.propDecorators = {
3081
3148
  Version:
3082
3149
  1.0
3083
3150
 
3084
- Copyright (c) 2016-2020 Osovitny Inc. All rights reserved.
3151
+ Copyright (c) 2016-20201Osovitny Inc. All rights reserved.
3085
3152
  </file>
3086
3153
  */
3087
3154
  const FroalaEditorModuleWithProviders = FroalaEditorModule.forRoot();