@osovitny/anatoly 3.19.13 → 3.19.15

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.
@@ -3728,7 +3728,6 @@ class ScriptService {
3728
3728
 
3729
3729
  Authors:
3730
3730
  Vadim Osovitny vadim.osovitny@osovitny.com
3731
- Anatoly Osovitny anatoly.osovitny@osovitny.com
3732
3731
 
3733
3732
  Created:
3734
3733
  2 May 2023
@@ -3743,6 +3742,45 @@ class Browser {
3743
3742
  static isIframe() {
3744
3743
  return window !== window.parent && !window.opener;
3745
3744
  }
3745
+ static isMobile() {
3746
+ const userAgent = navigator.userAgent || navigator.vendor;
3747
+ const mobileRegex = new RegExp("(android|bb\\d+|meego).+mobile|" +
3748
+ "avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|" +
3749
+ "iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|" +
3750
+ "mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|" +
3751
+ "p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|" +
3752
+ "up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino|" +
3753
+ "1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s-)|" +
3754
+ "ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|" +
3755
+ "attw|au(di|-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|" +
3756
+ "br(e|v)w|bumb|bw-(n|u)|c55\\/|capi|ccwa|cdm-|cell|chtm|cldc|cmd-|co(mp|nd)|" +
3757
+ "craw|da(it|ll|ng)|dbte|dc-s|devi|dica|dmob|do(c|p)o|ds(12|-d)|" +
3758
+ "el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(-|_)|g1 u|" +
3759
+ "g560|gene|gf-5|g-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd-(m|p|t)|hei-|" +
3760
+ "hi(pt|ta)|hp( i|ip)|hs-c|ht(c(-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i-(20|go|ma)|" +
3761
+ "i230|iac( |-\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|" +
3762
+ "keji|kgt( |\\/)|klon|kpt |kwc-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|-[a-w])|" +
3763
+ "libw|lynx|m1-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(-| |o|v)|zz)|" +
3764
+ "mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|" +
3765
+ "ne((c|m)-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|" +
3766
+ "pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn-2|po(ck|rt|se)|prox|psio|" +
3767
+ "pt-g|qa-a|qc(07|12|21|32|60|-[2-7]|i-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|" +
3768
+ "s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h-|oo|p-)|sdk\\/|se(c(-|0|1)|47|mc|nd|ri)|" +
3769
+ "sgh-|shar|sie(-|m)|sk-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h-|v-|v )|" +
3770
+ "sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl-|tdg-|tel(i|m)|tim-|t-mo|to(pl|sh)|" +
3771
+ "ts(70|m-|m3|m5)|tx-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|-v)|" +
3772
+ "vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(-| )|webc|whit|wi(g |nc|nw)|" +
3773
+ "wmlb|wonu|x700|yas-|your|zeto|zte-", "i");
3774
+ const isMobileUserAgent = mobileRegex.test(userAgent);
3775
+ const isSmallScreen = window.innerWidth <= 800 && window.innerHeight <= 600;
3776
+ return (isMobileUserAgent && !this.isTablet()) || isSmallScreen;
3777
+ }
3778
+ static isTablet() {
3779
+ const userAgent = navigator.userAgent || navigator.vendor;
3780
+ const isTabletRegex = new RegExp("ipad|android(?!.*mobile)|tablet|kindle|playbook|silk|nexus 7|nexus 10|Macintosh|" +
3781
+ "fire|sm-t|tab|gt-p|sch-i|xoom|tf101|kftt|kfot|kfjw|kfsowi|a500|rim\\w", "i");
3782
+ return isTabletRegex.test(userAgent);
3783
+ }
3746
3784
  }
3747
3785
 
3748
3786
  /*
@@ -4056,42 +4094,6 @@ class Utils {
4056
4094
  static generateRandom(start, end) {
4057
4095
  return Math.floor(Math.random() * (end - start + 1)) + start;
4058
4096
  }
4059
- static isBrowserMobile() {
4060
- const userAgent = navigator.userAgent || navigator.vendor;
4061
- const mobileRegex = new RegExp("(android|bb\\d+|meego).+mobile|" +
4062
- "avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|" +
4063
- "iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|" +
4064
- "mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|" +
4065
- "p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|" +
4066
- "up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino|" +
4067
- "1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s-)|" +
4068
- "ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|" +
4069
- "attw|au(di|-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|" +
4070
- "br(e|v)w|bumb|bw-(n|u)|c55\\/|capi|ccwa|cdm-|cell|chtm|cldc|cmd-|co(mp|nd)|" +
4071
- "craw|da(it|ll|ng)|dbte|dc-s|devi|dica|dmob|do(c|p)o|ds(12|-d)|" +
4072
- "el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(-|_)|g1 u|" +
4073
- "g560|gene|gf-5|g-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd-(m|p|t)|hei-|" +
4074
- "hi(pt|ta)|hp( i|ip)|hs-c|ht(c(-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i-(20|go|ma)|" +
4075
- "i230|iac( |-\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|" +
4076
- "keji|kgt( |\\/)|klon|kpt |kwc-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|-[a-w])|" +
4077
- "libw|lynx|m1-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(-| |o|v)|zz)|" +
4078
- "mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|" +
4079
- "ne((c|m)-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|" +
4080
- "pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn-2|po(ck|rt|se)|prox|psio|" +
4081
- "pt-g|qa-a|qc(07|12|21|32|60|-[2-7]|i-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|" +
4082
- "s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h-|oo|p-)|sdk\\/|se(c(-|0|1)|47|mc|nd|ri)|" +
4083
- "sgh-|shar|sie(-|m)|sk-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h-|v-|v )|" +
4084
- "sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl-|tdg-|tel(i|m)|tim-|t-mo|to(pl|sh)|" +
4085
- "ts(70|m-|m3|m5)|tx-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|-v)|" +
4086
- "vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(-| )|webc|whit|wi(g |nc|nw)|" +
4087
- "wmlb|wonu|x700|yas-|your|zeto|zte-", "i");
4088
- const isMobileUserAgent = mobileRegex.test(userAgent);
4089
- const isSmallScreen = window.innerWidth <= 800 && window.innerHeight <= 600;
4090
- const isTabletRegex = new RegExp("ipad|android(?!.*mobile)|tablet|kindle|playbook|silk|nexus 7|nexus 10|Macintosh|" +
4091
- "fire|sm-t|tab|gt-p|sch-i|xoom|sch-i|tf101|kftt|kfot|kfjw|kfsowi|a500|rim\\w", "i");
4092
- const isTabletUserAgent = isTabletRegex.test(userAgent);
4093
- return isMobileUserAgent && !isTabletUserAgent || isSmallScreen;
4094
- }
4095
4097
  }
4096
4098
 
4097
4099
  /*
@@ -7455,7 +7457,7 @@ function TimezoneDropdownlist_div_1_Template(rf, ctx) { if (rf & 1) {
7455
7457
  i0.ɵɵadvance();
7456
7458
  i0.ɵɵproperty("ngIf", ctx_r1.isTitleVisible);
7457
7459
  i0.ɵɵadvance();
7458
- i0.ɵɵproperty("formControlName", ctx_r1.controlName);
7460
+ i0.ɵɵproperty("formControlName", ctx_r1.controlName)("disabled", ctx_r1.disabled);
7459
7461
  i0.ɵɵadvance();
7460
7462
  i0.ɵɵproperty("ngForOf", ctx_r1.items);
7461
7463
  } }
@@ -7464,6 +7466,7 @@ class TimezoneDropdownlist extends EditComponentBase {
7464
7466
  super();
7465
7467
  this.api = api;
7466
7468
  this.appContext = appContext;
7469
+ this.disabled = false;
7467
7470
  this.title = 'Timezone';
7468
7471
  }
7469
7472
  ngOnInit() {
@@ -7498,8 +7501,8 @@ class TimezoneDropdownlist extends EditComponentBase {
7498
7501
  }
7499
7502
  }
7500
7503
  static { this.ɵfac = function TimezoneDropdownlist_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || TimezoneDropdownlist)(i0.ɵɵdirectiveInject(CoreApiService), i0.ɵɵdirectiveInject(AppContextService)); }; }
7501
- static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: TimezoneDropdownlist, selectors: [["anatoly-timezone-dropdownlist"]], standalone: false, features: [i0.ɵɵInheritDefinitionFeature], decls: 2, vars: 2, consts: [[4, "ngIf"], [3, "formGroup", 4, "ngIf"], [3, "formGroup"], ["class", "col-form-label", 4, "ngIf"], [1, "form-select", 3, "formControlName"], [3, "value", 4, "ngFor", "ngForOf"], [1, "col-form-label"], [3, "value"]], template: function TimezoneDropdownlist_Template(rf, ctx) { if (rf & 1) {
7502
- i0.ɵɵtemplate(0, TimezoneDropdownlist_div_0_Template, 1, 0, "div", 0)(1, TimezoneDropdownlist_div_1_Template, 4, 4, "div", 1);
7504
+ static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: TimezoneDropdownlist, selectors: [["anatoly-timezone-dropdownlist"]], inputs: { disabled: "disabled" }, standalone: false, features: [i0.ɵɵInheritDefinitionFeature], decls: 2, vars: 2, consts: [[4, "ngIf"], [3, "formGroup", 4, "ngIf"], [3, "formGroup"], ["class", "col-form-label", 4, "ngIf"], [1, "form-select", 3, "formControlName", "disabled"], [3, "value", 4, "ngFor", "ngForOf"], [1, "col-form-label"], [3, "value"]], template: function TimezoneDropdownlist_Template(rf, ctx) { if (rf & 1) {
7505
+ i0.ɵɵtemplate(0, TimezoneDropdownlist_div_0_Template, 1, 0, "div", 0)(1, TimezoneDropdownlist_div_1_Template, 4, 5, "div", 1);
7503
7506
  } if (rf & 2) {
7504
7507
  i0.ɵɵproperty("ngIf", ctx.isNgModelBased);
7505
7508
  i0.ɵɵadvance();
@@ -7508,8 +7511,10 @@ class TimezoneDropdownlist extends EditComponentBase {
7508
7511
  }
7509
7512
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(TimezoneDropdownlist, [{
7510
7513
  type: Component,
7511
- args: [{ selector: 'anatoly-timezone-dropdownlist', standalone: false, template: "<div *ngIf='isNgModelBased'>\r\n</div>\r\n\r\n<div *ngIf='!isNgModelBased' [formGroup]='formGroup'>\r\n <label *ngIf='isTitleVisible' class='col-form-label'>Timezone</label>\r\n <select [formControlName]='controlName' class='form-select'>\r\n <option *ngFor='let item of items' [value]='item.code'>\r\n ({{ item.offset }}) {{ item.name }}\r\n </option>\r\n </select>\r\n</div>\r\n" }]
7512
- }], () => [{ type: CoreApiService }, { type: AppContextService }], null); })();
7514
+ args: [{ selector: 'anatoly-timezone-dropdownlist', standalone: false, template: "<div *ngIf='isNgModelBased'>\r\n</div>\r\n\r\n<div *ngIf='!isNgModelBased' [formGroup]='formGroup'>\r\n <label *ngIf='isTitleVisible' class='col-form-label'>Timezone</label>\r\n <select [formControlName]='controlName' class='form-select' [disabled]='disabled'>\r\n <option *ngFor='let item of items' [value]='item.code'>\r\n ({{ item.offset }}) {{ item.name }}\r\n </option>\r\n </select>\r\n</div>\r\n" }]
7515
+ }], () => [{ type: CoreApiService }, { type: AppContextService }], { disabled: [{
7516
+ type: Input
7517
+ }] }); })();
7513
7518
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(TimezoneDropdownlist, { className: "TimezoneDropdownlist", filePath: "lib/ui/components/dropdownlists/timezone/timezone.dropdownlist.ts", lineNumber: 30 }); })();
7514
7519
 
7515
7520
  /*