monkey-style-guide 21.2.35 → 22.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Binary file
package/package.json CHANGED
@@ -1,20 +1,19 @@
1
1
  {
2
2
  "name": "monkey-style-guide",
3
- "version": "21.2.35",
3
+ "version": "22.0.0",
4
4
  "peerDependencies": {
5
- "@angular/animations": "^21.2.4",
6
- "@angular/cdk": "^21.2.2",
7
- "@angular/common": "^21.2.4",
8
- "@angular/compiler": "^21.2.4",
9
- "@angular/core": "^21.2.4",
10
- "@angular/forms": "^21.2.4",
11
- "@angular/platform-browser": "^21.2.4",
12
- "@angular/platform-browser-dynamic": "^21.2.4",
13
- "@angular/router": "^21.2.4",
14
- "date-fns": "^4.1.0",
5
+ "@angular/animations": "22.1.7",
6
+ "@angular/cdk": "22.1.7",
7
+ "@angular/common": "22.1.7",
8
+ "@angular/compiler": "22.1.7",
9
+ "@angular/core": "22.1.7",
10
+ "@angular/forms": "22.1.7",
11
+ "@angular/platform-browser": "22.1.7",
12
+ "@angular/router": "22.1.7",
13
+ "date-fns": "^4.4.0",
15
14
  "rxjs": "~7.8.2",
16
- "ngx-mask": "^21.0.1",
17
- "libphonenumber-js": "^1.12.40"
15
+ "ngx-mask": "^22.0.0",
16
+ "libphonenumber-js": "^1.13.13"
18
17
  },
19
18
  "dependencies": {
20
19
  "tslib": "^2.8.1"
@@ -52,7 +52,7 @@ declare class MonkeyActionBarComponent {
52
52
  type MonkeyAlertType = 'default' | 'info' | 'success' | 'alert' | 'error';
53
53
 
54
54
  interface MonkeyAutocompleteData {
55
- value: string | number | Date | Object;
55
+ value: string | number | Date | object;
56
56
  description: string;
57
57
  }
58
58
  interface MonkeyAutocompleteResponse {
@@ -864,7 +864,7 @@ interface MonkeyAutocompleteSuggestion {
864
864
  explanation?: string;
865
865
  }
866
866
 
867
- declare class MonkeyComplexFilterBarComponent implements OnInit, OnChanges, AfterViewInit, OnDestroy {
867
+ declare class MonkeyComplexFilterBarComponent implements OnInit, OnChanges, AfterViewInit {
868
868
  private _service;
869
869
  key: i0.InputSignal<string>;
870
870
  config: i0.InputSignal<MonkeyComplexFilterBarConfig | undefined>;
@@ -885,7 +885,6 @@ declare class MonkeyComplexFilterBarComponent implements OnInit, OnChanges, Afte
885
885
  ngOnInit(): void;
886
886
  ngAfterViewInit(): void;
887
887
  ngOnChanges(changes: SimpleChanges): void;
888
- ngOnDestroy(): void;
889
888
  private validateQuery;
890
889
  private _autoResize;
891
890
  onInputFocus(textarea: HTMLTextAreaElement): void;
@@ -969,7 +968,7 @@ declare class MonkeyFilterBarService {
969
968
  private _parseConditionToken;
970
969
  private formatFilterValuePlain;
971
970
  static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyFilterBarService, never>;
972
- static ɵprov: i0.ɵɵInjectableDeclaration<MonkeyFilterBarService>;
971
+ static ɵprov: i0.ɵɵInjectableDeclaration<any>;
973
972
  }
974
973
 
975
974
  /** ************************
@@ -1114,7 +1113,7 @@ declare class MonkeyFilterBarComponent {
1114
1113
  protected readonly addOptions: i0.Signal<MonkeyFilterBarOption[]>;
1115
1114
  protected readonly canAddFilter: i0.Signal<boolean>;
1116
1115
  protected readonly changeOptions: i0.Signal<MonkeyFilterBarOption[]>;
1117
- protected readonly triggerVariant: i0.Signal<"icon" | "text">;
1116
+ protected readonly triggerVariant: i0.Signal<"text" | "icon">;
1118
1117
  protected readonly triggerIcon: i0.Signal<"filter" | "add-plus">;
1119
1118
  protected readonly triggerFlipId: i0.Signal<"trigger-text" | "trigger-icon">;
1120
1119
  constructor();
@@ -1439,7 +1438,7 @@ declare class MonkeyInputCodeComponent implements ControlValueAccessor, MonkeyFo
1439
1438
  static ngAcceptInputType_disabled: unknown;
1440
1439
  }
1441
1440
 
1442
- declare class MonkeyInputDateRangeComponent implements MonkeyFormFieldControl, ControlValueAccessor, AfterContentInit, OnDestroy, OnChanges {
1441
+ declare class MonkeyInputDateRangeComponent implements MonkeyFormFieldControl, ControlValueAccessor {
1443
1442
  formField: MonkeyFormFieldComponent;
1444
1443
  placeholder: string;
1445
1444
  title: string;
@@ -1472,9 +1471,6 @@ declare class MonkeyInputDateRangeComponent implements MonkeyFormFieldControl, C
1472
1471
  handledMaxDate: string;
1473
1472
  get elementTarget(): any;
1474
1473
  closePopOver: () => void;
1475
- ngAfterContentInit(): void;
1476
- ngOnChanges(changes: SimpleChanges): void;
1477
- ngOnDestroy(): void;
1478
1474
  onContainerClick(event: MouseEvent): void;
1479
1475
  _onFocus(): void;
1480
1476
  _onBlur(): void;
@@ -1497,7 +1493,7 @@ interface Country {
1497
1493
  code: string;
1498
1494
  name: string;
1499
1495
  }
1500
- declare class MonkeyInputPhoneComponent implements MonkeyFormFieldControl, ControlValueAccessor, AfterContentInit, OnDestroy, OnChanges {
1496
+ declare class MonkeyInputPhoneComponent implements MonkeyFormFieldControl, ControlValueAccessor {
1501
1497
  placeholder: string;
1502
1498
  tabIndex: number;
1503
1499
  get disabled(): boolean;
@@ -1533,9 +1529,6 @@ declare class MonkeyInputPhoneComponent implements MonkeyFormFieldControl, Contr
1533
1529
  disableToBeDirty?: boolean | undefined;
1534
1530
  _onChange: any;
1535
1531
  _onTouched: any;
1536
- ngAfterContentInit(): void;
1537
- ngOnChanges(changes: SimpleChanges): void;
1538
- ngOnDestroy(): void;
1539
1532
  onContainerClick(event: MouseEvent): void;
1540
1533
  _onFocus(): void;
1541
1534
  _onBlur(): void;
@@ -1562,7 +1555,7 @@ type MonkeyInputUploadChangeEvent = {
1562
1555
  component: MonkeyInputUploadComponent;
1563
1556
  file: File;
1564
1557
  };
1565
- declare class MonkeyInputUploadComponent implements MonkeyFormFieldControl, ControlValueAccessor, AfterContentInit, OnDestroy, OnChanges {
1558
+ declare class MonkeyInputUploadComponent implements MonkeyFormFieldControl, ControlValueAccessor {
1566
1559
  fileInput: ElementRef<HTMLInputElement>;
1567
1560
  progress: number;
1568
1561
  placeholder: string;
@@ -1597,9 +1590,6 @@ declare class MonkeyInputUploadComponent implements MonkeyFormFieldControl, Cont
1597
1590
  disableToBeDirty?: boolean | undefined;
1598
1591
  _onChange: any;
1599
1592
  _onTouched: any;
1600
- ngAfterContentInit(): void;
1601
- ngOnChanges(changes: SimpleChanges): void;
1602
- ngOnDestroy(): void;
1603
1593
  registerOnChange(fn: any): void;
1604
1594
  registerOnTouched(fn: any): void;
1605
1595
  setDisabledState(isDisabled: boolean): void;
@@ -1746,7 +1736,7 @@ declare class MonkeyModalModule {
1746
1736
  declare class IdGenerator {
1747
1737
  getId(prefix: string): string;
1748
1738
  static ɵfac: i0.ɵɵFactoryDeclaration<IdGenerator, never>;
1749
- static ɵprov: i0.ɵɵInjectableDeclaration<IdGenerator>;
1739
+ static ɵprov: i0.ɵɵInjectableDeclaration<any>;
1750
1740
  }
1751
1741
 
1752
1742
  /** ************************
@@ -1769,7 +1759,7 @@ declare class MonkeyModalService {
1769
1759
  openConfirmation(params: MonkeyModalConfirmationConfig, config: MonkeyModalConfig): MonkeyModalRef;
1770
1760
  closeAll(): void;
1771
1761
  static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyModalService, never>;
1772
- static ɵprov: i0.ɵɵInjectableDeclaration<MonkeyModalService>;
1762
+ static ɵprov: i0.ɵɵInjectableDeclaration<any>;
1773
1763
  }
1774
1764
 
1775
1765
  /** ************************
@@ -2856,12 +2846,12 @@ declare class MonkeyPrefixDirective {
2856
2846
  }
2857
2847
 
2858
2848
  declare class MonkeySuffixDirective {
2859
- set _hasAction(value: '');
2860
2849
  hasAction: boolean;
2861
2850
  action: Function | null;
2862
2851
  onClick(event: PointerEvent): void;
2863
2852
  static ɵfac: i0.ɵɵFactoryDeclaration<MonkeySuffixDirective, never>;
2864
- static ɵdir: i0.ɵɵDirectiveDeclaration<MonkeySuffixDirective, "monkey-suffix", never, { "_hasAction": { "alias": "hasAction"; "required": false; }; }, {}, never, never, true, never>;
2853
+ static ɵdir: i0.ɵɵDirectiveDeclaration<MonkeySuffixDirective, "monkey-suffix", never, { "hasAction": { "alias": "hasAction"; "required": false; }; }, {}, never, never, true, never>;
2854
+ static ngAcceptInputType_hasAction: unknown;
2865
2855
  }
2866
2856
 
2867
2857
  /** ************************
@@ -2896,7 +2886,7 @@ declare class MonkeyEcxAddressService {
2896
2886
  zipCode: any;
2897
2887
  }[]>;
2898
2888
  static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyEcxAddressService, never>;
2899
- static ɵprov: i0.ɵɵInjectableDeclaration<MonkeyEcxAddressService>;
2889
+ static ɵprov: i0.ɵɵInjectableDeclaration<any>;
2900
2890
  }
2901
2891
 
2902
2892
  declare class MonkeyDictionaryService {
@@ -2908,7 +2898,7 @@ declare class MonkeyDictionaryService {
2908
2898
  private handleWrapperValues;
2909
2899
  get(key: string): rxjs.Observable<any>;
2910
2900
  static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyDictionaryService, never>;
2911
- static ɵprov: i0.ɵɵInjectableDeclaration<MonkeyDictionaryService>;
2901
+ static ɵprov: i0.ɵɵInjectableDeclaration<any>;
2912
2902
  }
2913
2903
 
2914
2904
  declare class MonkeyDownloadToastService {
@@ -2949,7 +2939,7 @@ declare class MonkeyDownloadToastService {
2949
2939
  update(id: string, partial: MonkeyDownloadStackItemUpdate): void;
2950
2940
  closeAll(): void;
2951
2941
  static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyDownloadToastService, never>;
2952
- static ɵprov: i0.ɵɵInjectableDeclaration<MonkeyDownloadToastService>;
2942
+ static ɵprov: i0.ɵɵInjectableDeclaration<any>;
2953
2943
  }
2954
2944
 
2955
2945
  declare class MonkeyStepperService {
@@ -2957,7 +2947,7 @@ declare class MonkeyStepperService {
2957
2947
  currentStep(id: string): i0.Signal<string | undefined>;
2958
2948
  setCurrentStep(id: string, step: string): void;
2959
2949
  static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyStepperService, never>;
2960
- static ɵprov: i0.ɵɵInjectableDeclaration<MonkeyStepperService>;
2950
+ static ɵprov: i0.ɵɵInjectableDeclaration<any>;
2961
2951
  }
2962
2952
 
2963
2953
  declare class MonkeyToastService {
@@ -2976,7 +2966,7 @@ declare class MonkeyToastService {
2976
2966
  private scheduleToastAutoClose;
2977
2967
  show(toastConfig: MonkeyToastConfig): MonkeyToastComponent;
2978
2968
  static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyToastService, never>;
2979
- static ɵprov: i0.ɵɵInjectableDeclaration<MonkeyToastService>;
2969
+ static ɵprov: i0.ɵɵInjectableDeclaration<any>;
2980
2970
  }
2981
2971
 
2982
2972
  /** ************************
Binary file