ngx-vector-components 5.170.0 → 5.172.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.
@@ -1,15 +1,18 @@
1
1
  import { OnDestroy, OnInit } from '@angular/core';
2
2
  import { Router } from '@angular/router';
3
3
  import { MenuItem } from '../../models';
4
+ import { BreadcrumbService } from '../../services/breadcrumb.service';
4
5
  import * as i0 from "@angular/core";
5
6
  export declare class BreadcrumbComponent implements OnInit, OnDestroy {
6
7
  private router;
7
8
  private environment;
8
9
  private menuOptions;
10
+ private breadcrumbService;
9
11
  appName: any;
10
12
  routeFragments: MenuItem[];
13
+ titleAdditionalInfo: string | null;
11
14
  private subscription;
12
- constructor(router: Router, environment: any, menuOptions: MenuItem[]);
15
+ constructor(router: Router, environment: any, menuOptions: MenuItem[], breadcrumbService: BreadcrumbService);
13
16
  ngOnInit(): void;
14
17
  ngOnDestroy(): void;
15
18
  navigateToFragment(fragment: MenuItem): void;
@@ -34,7 +34,7 @@ export declare class DataTableComponent implements OnInit, OnDestroy {
34
34
  addNameColumnExpand: string;
35
35
  expandable: boolean;
36
36
  expansionTemplate: TemplateRef<any> | null;
37
- set selectionMode(_selectionMode: "multiple" | "single" | null);
37
+ set selectionMode(_selectionMode: "single" | "multiple" | null);
38
38
  selectionType: 'checkbox' | 'radiobutton' | null;
39
39
  set height(_height: string);
40
40
  showLimitBalance: boolean;
@@ -68,7 +68,7 @@ export declare class DataTableComponent implements OnInit, OnDestroy {
68
68
  get balance(): (itemAccount?: any) => number | string;
69
69
  get tabs(): ListItem[];
70
70
  get height(): string;
71
- get selectionMode(): "multiple" | "single" | null;
71
+ get selectionMode(): "single" | "multiple" | null;
72
72
  private _selectionMode;
73
73
  private _height;
74
74
  private _tabs;
@@ -38,7 +38,7 @@ export declare class TextFieldComponent implements OnInit, OnDestroy {
38
38
  isPasswordVisible: boolean;
39
39
  validateOnly: boolean;
40
40
  get placeholder(): string;
41
- get keyfilter(): RegExp | "pint" | "int" | "money" | "alphanum";
41
+ get keyfilter(): RegExp | "int" | "pint" | "alphanum" | "money";
42
42
  get control(): any;
43
43
  get showPasswordIcon(): "fas fa-eye" | "fas fa-eye-slash";
44
44
  documentTypes: ListItem[];
@@ -89,6 +89,7 @@ export declare enum ProfileModuleType {
89
89
  RELEASE_ADVANCE_FREIGHT = "ReleaseAdvanceFreight",
90
90
  RELEASE_ADVANCE_FREIGHT_PAYMENT = "ReleaseAdvanceFreightPayment",
91
91
  BANK_S3 = "BankS3",
92
+ BREAK_ALLOWANCE_MODULE = "Solicita\u00E7\u00E3o de Abono",
92
93
  COURTYARD_MANAGEMENT = "Courtyard Management",
93
94
  DOCK_BUILDINGS = "Dock Buildings",
94
95
  S3_BANK_RETURN = "S3BankReturn",
@@ -684,6 +685,11 @@ export declare enum ProfileModuleActionType {
684
685
  CARD_MANAGEMENT = "CardManagement",
685
686
  SHOW_TRIP = "Show Trip",
686
687
  SHOW_DIGITAL_DISCHARGE_VECTORPAY = "Show Digital Discharge VectorPay",
688
+ SHOW_REQUEST_BREAK_ALLOWANCE = "Exibir Solicita\u00E7\u00F5es",
689
+ CREATE_REQUEST_BREAK_ALLOWANCE = "Criar Solicita\u00E7\u00F5es",
690
+ CREATE_APPROVERS_REQUEST_BREAK_ALLOWANCE = "Cadastrar Aprovadores",
691
+ CREATE_REASONS_REQUEST_BREAK_ALLOWANCE = "Cadastrar Motivos",
692
+ APPROVE_REJECT_REQUEST_BREAK_ALLOWANCE = "Aprovar/Rejeitar Solicita\u00E7\u00F5es",
687
693
  SHOW_DIGITAL_SHIPPER = "Show Digital Shipper",
688
694
  RELATORIO_DE_FRETE_VECTORPAY = "Relatorio De Frete VectorPay",
689
695
  SECURITY_TRAINING = "Security Training",
@@ -0,0 +1,9 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class BreadcrumbService {
3
+ private readonly _titleAdditionalInfo$;
4
+ readonly titleAdditionalInfo$: import("rxjs").Observable<string | null>;
5
+ setTitleAdditionalInfo(value: string | null): void;
6
+ clearTitleAdditionalInfo(): void;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<BreadcrumbService, never>;
8
+ static ɵprov: i0.ɵɵInjectableDeclaration<BreadcrumbService>;
9
+ }
@@ -1,5 +1,6 @@
1
1
  export * from './auth.service';
2
2
  export * from './base-dropdown';
3
+ export * from './breadcrumb.service';
3
4
  export * from './crud-base.service';
4
5
  export * from './enum.service';
5
6
  export * from './error-message.service';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ngx-vector-components",
3
- "version": "5.170.0",
3
+ "version": "5.172.0",
4
4
  "peerDependencies": {
5
5
  "@angular/animations": "^17.1.0",
6
6
  "@angular/cdk": "^17.1.0",