ngx-vector-components 5.37.0 → 5.39.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.
- package/CHANGELOG.md +13 -0
- package/esm2022/lib/components/fields/filters/filters.component.mjs +1 -1
- package/esm2022/lib/components/fields/radio-button-field/radio-button-field.component.mjs +9 -5
- package/esm2022/lib/components/fields/search-field/search-field.component.mjs +1 -1
- package/esm2022/lib/components/fields/text-field/text-field.component.mjs +8 -2
- package/esm2022/lib/models/profile.model.mjs +1 -2
- package/fesm2022/ngx-vector-components.mjs +50 -42
- package/fesm2022/ngx-vector-components.mjs.map +1 -1
- package/lib/components/badge/badge.component.d.ts +1 -1
- package/lib/components/fields/radio-button-field/radio-button-field.component.d.ts +3 -1
- package/lib/components/fields/text-field/text-field.component.d.ts +3 -2
- package/lib/models/profile.model.d.ts +0 -1
- 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
|
}
|
|
@@ -4,6 +4,7 @@ import * as i0 from "@angular/core";
|
|
|
4
4
|
export type RadioButtonOption = {
|
|
5
5
|
label: string;
|
|
6
6
|
value: string;
|
|
7
|
+
textTooltip?: string;
|
|
7
8
|
};
|
|
8
9
|
export declare class RadioButtonFieldComponent implements OnInit {
|
|
9
10
|
private translateService;
|
|
@@ -12,6 +13,7 @@ export declare class RadioButtonFieldComponent implements OnInit {
|
|
|
12
13
|
control: any;
|
|
13
14
|
layout: 'vertical' | 'horizontal';
|
|
14
15
|
justifySpaceBetween: boolean;
|
|
16
|
+
addIcon: boolean;
|
|
15
17
|
constructor(translateService: TranslateService);
|
|
16
18
|
ngOnInit(): void;
|
|
17
19
|
get layoutClass(): {
|
|
@@ -21,5 +23,5 @@ export declare class RadioButtonFieldComponent implements OnInit {
|
|
|
21
23
|
private getYesLabel;
|
|
22
24
|
private getNoLabel;
|
|
23
25
|
static ɵfac: i0.ɵɵFactoryDeclaration<RadioButtonFieldComponent, never>;
|
|
24
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RadioButtonFieldComponent, "vector-radio-button-field", never, { "groupName": { "alias": "groupName"; "required": false; }; "options": { "alias": "options"; "required": false; }; "control": { "alias": "control"; "required": false; }; "layout": { "alias": "layout"; "required": false; }; "justifySpaceBetween": { "alias": "justifySpaceBetween"; "required": false; }; }, {}, never, never, false, never>;
|
|
26
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RadioButtonFieldComponent, "vector-radio-button-field", never, { "groupName": { "alias": "groupName"; "required": false; }; "options": { "alias": "options"; "required": false; }; "control": { "alias": "control"; "required": false; }; "layout": { "alias": "layout"; "required": false; }; "justifySpaceBetween": { "alias": "justifySpaceBetween"; "required": false; }; "addIcon": { "alias": "addIcon"; "required": false; }; }, {}, never, never, false, never>;
|
|
25
27
|
}
|
|
@@ -8,6 +8,7 @@ export declare class TextFieldComponent implements OnInit, OnDestroy {
|
|
|
8
8
|
isPassword: boolean;
|
|
9
9
|
numeric: boolean;
|
|
10
10
|
numericPositive: boolean;
|
|
11
|
+
numericDotComma: boolean;
|
|
11
12
|
decimal: boolean;
|
|
12
13
|
onlyText: boolean;
|
|
13
14
|
alphaNumeric: boolean;
|
|
@@ -31,7 +32,7 @@ export declare class TextFieldComponent implements OnInit, OnDestroy {
|
|
|
31
32
|
isPasswordVisible: boolean;
|
|
32
33
|
validateOnly: boolean;
|
|
33
34
|
get placeholder(): string;
|
|
34
|
-
get keyfilter(): RegExp | "int" | "pint" | "alphanum";
|
|
35
|
+
get keyfilter(): RegExp | "int" | "pint" | "alphanum" | "money";
|
|
35
36
|
get control(): any;
|
|
36
37
|
get showPasswordIcon(): "fas fa-eye" | "fas fa-eye-slash";
|
|
37
38
|
documentTypes: ListItem[];
|
|
@@ -52,5 +53,5 @@ export declare class TextFieldComponent implements OnInit, OnDestroy {
|
|
|
52
53
|
private handleInitialDocumentTypeState;
|
|
53
54
|
private setDocumentType;
|
|
54
55
|
static ɵfac: i0.ɵɵFactoryDeclaration<TextFieldComponent, never>;
|
|
55
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TextFieldComponent, "vector-text-field", never, { "isRequired": { "alias": "isRequired"; "required": false; }; "label": { "alias": "label"; "required": false; }; "maxlength": { "alias": "maxlength"; "required": false; }; "isPassword": { "alias": "isPassword"; "required": false; }; "numeric": { "alias": "numeric"; "required": false; }; "numericPositive": { "alias": "numericPositive"; "required": false; }; "decimal": { "alias": "decimal"; "required": false; }; "onlyText": { "alias": "onlyText"; "required": false; }; "alphaNumeric": { "alias": "alphaNumeric"; "required": false; }; "alphaNumericAndWhitespace": { "alias": "alphaNumericAndWhitespace"; "required": false; }; "mask": { "alias": "mask"; "required": false; }; "autoClear": { "alias": "autoClear"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "rightIcon": { "alias": "rightIcon"; "required": false; }; "centered": { "alias": "centered"; "required": false; }; "enableDocumentTypeChoice": { "alias": "enableDocumentTypeChoice"; "required": false; }; "hiddenErrorMessage": { "alias": "hiddenErrorMessage"; "required": false; }; "leftLabel": { "alias": "leftLabel"; "required": false; }; "control": { "alias": "control"; "required": false; }; "inputId": { "alias": "inputId"; "required": false; }; "slotChar": { "alias": "slotChar"; "required": false; }; }, { "blurEvent": "blurEvent"; "enterKeyPress": "enterKeyPress"; "backSpaceKeyPress": "backSpaceKeyPress"; "focusEvent": "focusEvent"; "onDocumentTypeChange": "onDocumentTypeChange"; }, never, never, false, never>;
|
|
56
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TextFieldComponent, "vector-text-field", never, { "isRequired": { "alias": "isRequired"; "required": false; }; "label": { "alias": "label"; "required": false; }; "maxlength": { "alias": "maxlength"; "required": false; }; "isPassword": { "alias": "isPassword"; "required": false; }; "numeric": { "alias": "numeric"; "required": false; }; "numericPositive": { "alias": "numericPositive"; "required": false; }; "numericDotComma": { "alias": "numericDotComma"; "required": false; }; "decimal": { "alias": "decimal"; "required": false; }; "onlyText": { "alias": "onlyText"; "required": false; }; "alphaNumeric": { "alias": "alphaNumeric"; "required": false; }; "alphaNumericAndWhitespace": { "alias": "alphaNumericAndWhitespace"; "required": false; }; "mask": { "alias": "mask"; "required": false; }; "autoClear": { "alias": "autoClear"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "rightIcon": { "alias": "rightIcon"; "required": false; }; "centered": { "alias": "centered"; "required": false; }; "enableDocumentTypeChoice": { "alias": "enableDocumentTypeChoice"; "required": false; }; "hiddenErrorMessage": { "alias": "hiddenErrorMessage"; "required": false; }; "leftLabel": { "alias": "leftLabel"; "required": false; }; "control": { "alias": "control"; "required": false; }; "inputId": { "alias": "inputId"; "required": false; }; "slotChar": { "alias": "slotChar"; "required": false; }; }, { "blurEvent": "blurEvent"; "enterKeyPress": "enterKeyPress"; "backSpaceKeyPress": "backSpaceKeyPress"; "focusEvent": "focusEvent"; "onDocumentTypeChange": "onDocumentTypeChange"; }, never, never, false, never>;
|
|
56
57
|
}
|
|
@@ -243,7 +243,6 @@ export declare enum ProfileModuleActionType {
|
|
|
243
243
|
APPROVE_REQUESTS_ETCD = "Approve Requests ETCD",
|
|
244
244
|
SHOW_SUPPLY = "Show Supply",
|
|
245
245
|
SHOW_TRIP_OFFERT = "Trip Offer Show",
|
|
246
|
-
ADD_LASTNAME_LOCATION = "Add LastName Location",
|
|
247
246
|
APPROVE_DISCHARGE_PAYMENT = "Aprovar quitacao",
|
|
248
247
|
APPROVE_ADVANCE_PAYMENT = "Aprovar adiantamento",
|
|
249
248
|
APPROVE_ENGINE_PAYMENT = "Aprovar motor de pagamento",
|