@apipass/inputs 1.0.1 → 1.0.7

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 (32) hide show
  1. package/ace-editor/component.d.ts +1 -1
  2. package/ace-editor/directive.d.ts +1 -1
  3. package/debounce-model-directive/debouceInput.directive.d.ts +1 -1
  4. package/esm2020/ace-editor/component.mjs +9 -13
  5. package/esm2020/ace-editor/directive.mjs +4 -6
  6. package/esm2020/custom-select/custom-select-item.mjs +1 -1
  7. package/esm2020/custom-select/custom-select.component.mjs +3 -3
  8. package/esm2020/debounce-model-directive/debouceInput.directive.mjs +3 -3
  9. package/esm2020/field/field.component.mjs +1 -1
  10. package/esm2020/input-avatar/input-avatar.component.mjs +1 -1
  11. package/esm2020/input-boolean/input-boolean.component.mjs +1 -1
  12. package/esm2020/input-file/input-file.component.mjs +1 -1
  13. package/esm2020/input-number/input-number.component.mjs +1 -1
  14. package/esm2020/input-password/input-password.component.mjs +4 -4
  15. package/esm2020/input-text/input-text.component.mjs +1 -1
  16. package/esm2020/inputs.module.mjs +3 -3
  17. package/esm2020/public-api.mjs +1 -1
  18. package/esm2020/select-box/mat-select-infinite-scroll.directive.mjs +2 -2
  19. package/esm2020/select-box/select-box.component.mjs +12 -7
  20. package/esm2020/select-enum/select-enum.component.mjs +1 -1
  21. package/esm2020/select-interpolation/select-interpolation.component.mjs +2 -2
  22. package/esm2020/value-acessor-base.mjs +1 -1
  23. package/fesm2015/apipass-inputs.mjs +36 -34
  24. package/fesm2015/apipass-inputs.mjs.map +1 -1
  25. package/fesm2020/apipass-inputs.mjs +33 -34
  26. package/fesm2020/apipass-inputs.mjs.map +1 -1
  27. package/input-file/input-file.component.d.ts +2 -2
  28. package/input-password/input-password.component.d.ts +0 -1
  29. package/package.json +4 -4
  30. package/select-box/mat-select-infinite-scroll.directive.d.ts +3 -3
  31. package/select-box/select-box.component.d.ts +4 -4
  32. package/select-interpolation/select-interpolation.component.d.ts +1 -1
@@ -10,14 +10,14 @@ export declare class InputFileComponent {
10
10
  modifyTitle: string;
11
11
  iconFontSize: string;
12
12
  emptyFileLabel: string;
13
- fileTypes: Array<string>;
13
+ fileTypes: string[];
14
14
  onFileChanged: EventEmitter<{
15
15
  fileUrl: boolean;
16
16
  fileFormData: FormData;
17
17
  }>;
18
18
  onInvalidFileType: EventEmitter<{
19
19
  fileName: string;
20
- typesSupported: Array<string>;
20
+ typesSupported: string[];
21
21
  typeInvalid: string;
22
22
  }>;
23
23
  fileUrl: boolean;
@@ -20,7 +20,6 @@ export declare class InputPasswordComponent extends ValueAccessorBase<string> {
20
20
  specialCharsCriteriaMsg: string;
21
21
  minCharsCriteriaMsg: string;
22
22
  onValidPassword: EventEmitter<boolean>;
23
- constructor();
24
23
  onKeyDown(event: any): void;
25
24
  onStrengthChanged(strength: number): void;
26
25
  private getStrength;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@apipass/inputs",
3
- "version": "1.0.1",
3
+ "version": "1.0.7",
4
4
  "peerDependencies": {
5
5
  "@angular/animations": "15.0.3",
6
6
  "@angular/cdk": "15.0.3",
@@ -13,9 +13,9 @@
13
13
  "ace-builds": "1.4.14",
14
14
  "brace": "^0.11.1",
15
15
  "@angular-material-extensions/password-strength": "12.1.0",
16
- "@apipass/buttons": "1.0.1",
17
- "@apipass/icons": "1.0.1",
18
- "@apipass/pipes": "1.0.0",
16
+ "@apipass/buttons": "1.0.7",
17
+ "@apipass/icons": "1.0.7",
18
+ "@apipass/pipes": "1.0.7",
19
19
  "@ng-select/ng-select": "10.0.4",
20
20
  "@ngx-translate/core": "14.0.0",
21
21
  "@ngx-translate/http-loader": "7.0.0",
@@ -2,8 +2,8 @@ import { AfterViewInit, EventEmitter, NgZone, OnDestroy, OnInit } from '@angular
2
2
  import { MatSelect } from '@angular/material/select';
3
3
  import * as i0 from "@angular/core";
4
4
  export declare class MatSelectInfiniteScrollDirective implements OnInit, OnDestroy, AfterViewInit {
5
- private matSelect;
6
- private ngZone;
5
+ private readonly matSelect;
6
+ private readonly ngZone;
7
7
  threshold: string;
8
8
  debounceTime: number;
9
9
  complete: boolean;
@@ -12,7 +12,7 @@ export declare class MatSelectInfiniteScrollDirective implements OnInit, OnDestr
12
12
  private thrPx;
13
13
  private thrPc;
14
14
  private singleOptionHeight;
15
- private destroyed$;
15
+ private readonly destroyed$;
16
16
  constructor(matSelect: MatSelect, ngZone: NgZone);
17
17
  ngOnInit(): void;
18
18
  ngAfterViewInit(): void;
@@ -1,4 +1,4 @@
1
- import { EventEmitter, OnDestroy, OnInit } from '@angular/core';
1
+ import { EventEmitter, type OnDestroy, type OnInit } from '@angular/core';
2
2
  import { Subject } from 'rxjs';
3
3
  import { NgSelectComponent } from '@ng-select/ng-select';
4
4
  import { ValueAccessorBase } from '../value-acessor-base';
@@ -9,7 +9,7 @@ export declare class SelectBoxComponent extends ValueAccessorBase<any> implement
9
9
  clearText: string;
10
10
  notFoundText: string;
11
11
  enabledSearch: boolean;
12
- data: Array<any>;
12
+ data: any[];
13
13
  disabled: boolean;
14
14
  selectedItem: any;
15
15
  selectProperty: any;
@@ -30,12 +30,12 @@ export declare class SelectBoxComponent extends ValueAccessorBase<any> implement
30
30
  onSelectClear: EventEmitter<any>;
31
31
  onAddNewItemClick: EventEmitter<any>;
32
32
  ngSelectComponent: NgSelectComponent | undefined;
33
- visibleItens: Array<any>;
33
+ visibleItens: any[];
34
34
  loading: boolean;
35
35
  inputFilter: Subject<string>;
36
36
  lastSearchTerm: string;
37
37
  ngOnInit(): void;
38
- private onBodyScroll;
38
+ private readonly onBodyScroll;
39
39
  ngOnDestroy(): void;
40
40
  onSearch(): void;
41
41
  onScroll({ end }: {
@@ -1,4 +1,4 @@
1
- import { AfterViewInit, ElementRef, EventEmitter } from '@angular/core';
1
+ import { type AfterViewInit, ElementRef, EventEmitter } from '@angular/core';
2
2
  import { ControlValueAccessor } from '@angular/forms';
3
3
  import { CustomSelectItem } from '../custom-select/custom-select-item';
4
4
  import { ScrollStrategy, ScrollStrategyOptions } from '@angular/cdk/overlay';