ngx-vector-components 6.25.0 → 6.26.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 +3200 -3194
- package/README.md +35 -35
- package/assets/icons/chevron_down_icon.svg +3 -3
- package/assets/icons/home_menu_icon.svg +3 -3
- package/assets/icons/logout_icon.svg +9 -9
- package/assets/icons/menu_footer_icon.svg +3 -3
- package/assets/icons/menu_hamburguer_icon.svg +3 -3
- package/assets/icons/terms_of_use_icon.svg +9 -9
- package/assets/icons/vector_admin_icon.svg +4 -4
- package/assets/icons/vector_fintech_icon.svg +3 -3
- package/assets/icons/vector_logtech_icon.svg +6 -6
- package/assets/icons/vector_marketplace_icon.svg +3 -3
- package/assets/images/bunge_logo.svg +23 -23
- package/assets/images/cofco_logo.svg +117 -117
- package/assets/images/emote_bad.svg +6 -6
- package/assets/images/emote_cool.svg +5 -5
- package/assets/images/emote_nice.svg +5 -5
- package/assets/images/success_sign.svg +4 -4
- package/assets/images/vector-logo-horizontal-inverse-color.svg +13 -13
- package/assets/images/vector_logo_horizontal.svg +13 -13
- package/assets/images/warn_sign.svg +4 -4
- package/assets/styles/_fonts.scss +114 -114
- package/assets/styles/_mixins.scss +7 -7
- package/assets/styles/_primeng-custom-theme.scss +1869 -1869
- package/assets/styles/_spinner.scss +36 -36
- package/assets/styles/_styles.scss +134 -134
- package/assets/styles/_variables.scss +62 -62
- package/fesm2022/ngx-vector-components.mjs +79 -70
- package/fesm2022/ngx-vector-components.mjs.map +1 -1
- package/lib/components/badge/badge.component.d.ts +1 -1
- package/lib/components/fields/data-table/data-table.component.d.ts +2 -2
- package/lib/components/fields/text-field/text-field.component.d.ts +1 -1
- package/lib/models/profile.model.d.ts +9 -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(): "
|
|
12
|
+
getStatusColor(): "badge-warning" | "badge-success" | "badge-error" | "badge-info" | "badge-notexecuted" | "";
|
|
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
|
}
|
|
@@ -39,7 +39,7 @@ export declare class DataTableComponent implements OnInit, OnDestroy {
|
|
|
39
39
|
expandable: boolean;
|
|
40
40
|
dataKey: string;
|
|
41
41
|
expansionTemplate: TemplateRef<any> | null;
|
|
42
|
-
set selectionMode(_selectionMode: "
|
|
42
|
+
set selectionMode(_selectionMode: "single" | "multiple" | null);
|
|
43
43
|
selectionType: 'checkbox' | 'radiobutton' | null;
|
|
44
44
|
set height(_height: string);
|
|
45
45
|
showLimitBalance: boolean;
|
|
@@ -73,7 +73,7 @@ export declare class DataTableComponent implements OnInit, OnDestroy {
|
|
|
73
73
|
get balance(): (itemAccount?: any) => number | string;
|
|
74
74
|
get tabs(): ListItem[];
|
|
75
75
|
get height(): string;
|
|
76
|
-
get selectionMode(): "
|
|
76
|
+
get selectionMode(): "single" | "multiple" | null;
|
|
77
77
|
private _selectionMode;
|
|
78
78
|
private _height;
|
|
79
79
|
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 | "
|
|
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[];
|
|
@@ -751,6 +751,15 @@ export declare enum ProfileModuleActionType {
|
|
|
751
751
|
ADD_BLOCK_CARRIER = "Add Block Carrier",
|
|
752
752
|
SHOW_BLOCK_CARRIER = "Show Block Carrier",
|
|
753
753
|
EDIT_BLOCK_CARRIER = "Edit Block Carrier",
|
|
754
|
+
ADD_BLOCK_DRIVER = "Add Block Driver",
|
|
755
|
+
SHOW_BLOCK_DRIVER = "Show Block Driver",
|
|
756
|
+
EDIT_BLOCK_DRIVER = "Edit Block Driver",
|
|
757
|
+
ADD_BLOCK_VEHICLE = "Add Block Vehicle",
|
|
758
|
+
SHOW_BLOCK_VEHICLE = "Show Block Vehicle",
|
|
759
|
+
EDIT_BLOCK_VEHICLE = "Edit Block Vehicle",
|
|
760
|
+
ADD_BLOCK_REASON = "Add Block Reason",
|
|
761
|
+
SHOW_BLOCK_REASON = "Show Block Reason",
|
|
762
|
+
EDIT_BLOCK_REASON = "Edit Block Reason",
|
|
754
763
|
ADD_INDIVIDUAL_VEHICLE = "Add Individual Vehicle",
|
|
755
764
|
SHOW_LIST_APPROVERS = "Visualizar lista de aprovadores",
|
|
756
765
|
SCHEDULING_SUBJECT_TO_LOADING_ORDER = "Scheduling Subject To Loading Order",
|