ngx-vector-components 6.4.0 → 6.6.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 +3053 -3041
- 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 +1861 -1861
- package/assets/styles/_spinner.scss +36 -36
- package/assets/styles/_styles.scss +134 -134
- package/assets/styles/_variables.scss +62 -61
- package/fesm2022/ngx-vector-components.mjs +116 -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/components/index.d.ts +1 -0
- package/lib/components/snackbar/index.d.ts +2 -0
- package/lib/components/snackbar/snackbar.component.d.ts +25 -0
- package/lib/components/snackbar/snackbar.module.d.ts +9 -0
- package/lib/models/profile.model.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(): "
|
|
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
|
}
|
|
@@ -36,7 +36,7 @@ export declare class DataTableComponent implements OnInit, OnDestroy {
|
|
|
36
36
|
addNameColumnExpand: string;
|
|
37
37
|
expandable: boolean;
|
|
38
38
|
expansionTemplate: TemplateRef<any> | null;
|
|
39
|
-
set selectionMode(_selectionMode: "
|
|
39
|
+
set selectionMode(_selectionMode: "single" | "multiple" | null);
|
|
40
40
|
selectionType: 'checkbox' | 'radiobutton' | null;
|
|
41
41
|
set height(_height: string);
|
|
42
42
|
showLimitBalance: boolean;
|
|
@@ -70,7 +70,7 @@ export declare class DataTableComponent implements OnInit, OnDestroy {
|
|
|
70
70
|
get balance(): (itemAccount?: any) => number | string;
|
|
71
71
|
get tabs(): ListItem[];
|
|
72
72
|
get height(): string;
|
|
73
|
-
get selectionMode(): "
|
|
73
|
+
get selectionMode(): "single" | "multiple" | null;
|
|
74
74
|
private _selectionMode;
|
|
75
75
|
private _height;
|
|
76
76
|
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[];
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
type PositionType = 'top-left' | 'top-center' | 'top-right' | 'bottom-left' | 'bottom-center' | 'bottom-right';
|
|
3
|
+
type SnackbarType = 'dark' | 'light';
|
|
4
|
+
export interface SnackbarButton {
|
|
5
|
+
label: string;
|
|
6
|
+
disabled: boolean;
|
|
7
|
+
action: () => void;
|
|
8
|
+
}
|
|
9
|
+
export declare class SnackbarComponent {
|
|
10
|
+
readonly message: import("@angular/core").InputSignal<string>;
|
|
11
|
+
readonly visible: import("@angular/core").InputSignal<boolean>;
|
|
12
|
+
readonly position: import("@angular/core").InputSignal<PositionType>;
|
|
13
|
+
readonly closable: import("@angular/core").InputSignal<boolean>;
|
|
14
|
+
readonly buttons: import("@angular/core").InputSignal<SnackbarButton[]>;
|
|
15
|
+
readonly type: import("@angular/core").InputSignal<SnackbarType>;
|
|
16
|
+
readonly fitParent: import("@angular/core").InputSignal<boolean>;
|
|
17
|
+
readonly closeSnackbar: import("@angular/core").OutputEmitterRef<void>;
|
|
18
|
+
get positionClass(): string;
|
|
19
|
+
get themeClass(): string;
|
|
20
|
+
handleClose(): void;
|
|
21
|
+
handleButtonClick(button: SnackbarButton): void;
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SnackbarComponent, never>;
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SnackbarComponent, "vector-snack-bar", never, { "message": { "alias": "message"; "required": false; "isSignal": true; }; "visible": { "alias": "visible"; "required": false; "isSignal": true; }; "position": { "alias": "position"; "required": false; "isSignal": true; }; "closable": { "alias": "closable"; "required": false; "isSignal": true; }; "buttons": { "alias": "buttons"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; "fitParent": { "alias": "fitParent"; "required": false; "isSignal": true; }; }, { "closeSnackbar": "closeSnackbar"; }, never, never, false, never>;
|
|
24
|
+
}
|
|
25
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./snackbar.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "../fields/fields.module";
|
|
5
|
+
export declare class SnackbarModule {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SnackbarModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SnackbarModule, [typeof i1.SnackbarComponent], [typeof i2.CommonModule, typeof i3.FieldsModule], [typeof i1.SnackbarComponent]>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<SnackbarModule>;
|
|
9
|
+
}
|
|
@@ -733,6 +733,7 @@ export declare enum ProfileModuleActionType {
|
|
|
733
733
|
ENABLED_CHANGE_FREIGHTRATE_IN_LOT_MASSIVELY = "Enabled Change FreightRate In Lot Massively",
|
|
734
734
|
RECEIVABLE_CHARGE = "ReceivableCharge",
|
|
735
735
|
CAMPAIGN = "Campanha",
|
|
736
|
+
LINK_GENERATOR = "Gerador De Link",
|
|
736
737
|
ADD_BLOCK_CARRIER = "Add Block Carrier",
|
|
737
738
|
SHOW_BLOCK_CARRIER = "Show Block Carrier",
|
|
738
739
|
EDIT_BLOCK_CARRIER = "Edit Block Carrier"
|