ngx-vector-components 5.119.0 → 5.120.1
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.
- package/CHANGELOG.md +12 -0
- package/esm2022/lib/models/profile.model.mjs +2 -1
- package/esm2022/lib/utils/mask.util.mjs +9 -5
- package/fesm2022/ngx-vector-components.mjs +9 -4
- package/fesm2022/ngx-vector-components.mjs.map +1 -1
- package/lib/components/badge/badge.component.d.ts +1 -1
- package/lib/models/profile.model.d.ts +1 -0
- package/lib/utils/mask.util.d.ts +1 -0
- package/package.json +1 -1
|
@@ -9,7 +9,7 @@ export declare class BadgeComponent implements OnInit {
|
|
|
9
9
|
tooltip?: string;
|
|
10
10
|
constructor();
|
|
11
11
|
ngOnInit(): void;
|
|
12
|
-
getStatusColor(): "badge-warning" | "badge-success" | "badge-error" | "badge-info"
|
|
12
|
+
getStatusColor(): "" | "badge-warning" | "badge-success" | "badge-error" | "badge-info";
|
|
13
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<BadgeComponent, never>;
|
|
14
14
|
static ɵcmp: i0.ɵɵComponentDeclaration<BadgeComponent, "vector-badge", never, { "type": { "alias": "type"; "required": false; }; "label": { "alias": "label"; "required": false; }; "customColor": { "alias": "customColor"; "required": false; }; "customBackgroundColor": { "alias": "customBackgroundColor"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; }, {}, never, never, false, never>;
|
|
15
15
|
}
|
|
@@ -542,6 +542,7 @@ export declare enum ProfileModuleActionType {
|
|
|
542
542
|
SHOW_STATUS_MAP = "Show Status Map",
|
|
543
543
|
BUNGE_REFUND_TOTAL = "Bunge Estorno Total",
|
|
544
544
|
TOLL_MANAGEMENT = "Gest\u00E3o de Ped\u00E1gio",
|
|
545
|
+
DASHBOARD_VECTORPAY = "Dashboard VectorPay",
|
|
545
546
|
BUNGE_REFUND_PARTIAL = "Bunge Estorno Parcial",
|
|
546
547
|
ADD_REFUND_PARTIAL = "AdicionarEstornoParcial",
|
|
547
548
|
SEARCH_PAYMENT_TAG_HISTORY = "Search Tag History",
|
package/lib/utils/mask.util.d.ts
CHANGED
|
@@ -10,6 +10,7 @@ export declare class MaskUtil {
|
|
|
10
10
|
static DNI_FIELD_PATTERN: string;
|
|
11
11
|
static CUIT_FIELD_PATTERN: string;
|
|
12
12
|
static formatDocument(stringValue: string): string;
|
|
13
|
+
static removerSpecialChars(text: string): string;
|
|
13
14
|
static formatPostalCode(stringValue: string): string;
|
|
14
15
|
static formatBoleto(stringValue: string): string;
|
|
15
16
|
static formatPhone(stringValue: string): string;
|