@n-isi-platform/design-system 1.0.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/README.md +109 -0
- package/fesm2022/n-isi-platform-design-system.mjs +2858 -0
- package/fesm2022/n-isi-platform-design-system.mjs.map +1 -0
- package/helpers/get-tomorrow-date.function.d.ts +7 -0
- package/helpers/is-object-empty.function.d.ts +7 -0
- package/index.d.ts +5 -0
- package/lib/accordion/accordion.component.d.ts +30 -0
- package/lib/breadcrumbs/breadcrumbs.component.d.ts +8 -0
- package/lib/button/button.component.d.ts +28 -0
- package/lib/button-link/button-link.component.d.ts +15 -0
- package/lib/card/card.component.d.ts +7 -0
- package/lib/checkbox/checkbox.component.d.ts +20 -0
- package/lib/confirm-modal/confirm-modal.component.d.ts +23 -0
- package/lib/custom-table/custom-table.component.d.ts +117 -0
- package/lib/date-input/date-input.component.d.ts +61 -0
- package/lib/divider/divider.component.d.ts +5 -0
- package/lib/dropdown/dropdown.component.d.ts +48 -0
- package/lib/error/error.component.d.ts +13 -0
- package/lib/expanded-table/expanded-table.component.d.ts +125 -0
- package/lib/filter-header/filter-header.component.d.ts +7 -0
- package/lib/footer/footer.component.d.ts +24 -0
- package/lib/generic-table/generic-table.component.d.ts +34 -0
- package/lib/icon-button/icon-button.component.d.ts +15 -0
- package/lib/input/input.component.d.ts +31 -0
- package/lib/input-mask/input-mask.component.d.ts +28 -0
- package/lib/loader/loader.component.d.ts +5 -0
- package/lib/main-menu/main-menu.component.d.ts +19 -0
- package/lib/modal/modal.component.d.ts +57 -0
- package/lib/navbar/navbar.component.d.ts +34 -0
- package/lib/picklist/picklist.component.d.ts +33 -0
- package/lib/progress-bar/progress-bar.component.d.ts +6 -0
- package/lib/tag/tag.component.d.ts +10 -0
- package/lib/textarea/textarea.component.d.ts +28 -0
- package/lib/toggle-switch/toggle-switch.component.d.ts +17 -0
- package/lib/tooltip/tooltip.component.d.ts +25 -0
- package/models/enums/button/button-color.enum.d.ts +10 -0
- package/models/enums/button/button-icon-position.enum.d.ts +4 -0
- package/models/enums/button/button-size.enum.d.ts +5 -0
- package/models/enums/confirm-modal/confirm-modal-color.enum.d.ts +7 -0
- package/models/enums/dropdown/dropdown-selection-mode.enum.d.ts +5 -0
- package/models/enums/expanded-table/expanded-table.enum.d.ts +5 -0
- package/models/enums/input/input-type.enum.d.ts +5 -0
- package/models/enums/table/caption-color.enum.d.ts +5 -0
- package/models/enums/tag/tag.enum.d.ts +8 -0
- package/models/enums/toast/toast-position-key.enum.d.ts +8 -0
- package/models/enums/toast/toast-severity.enum.d.ts +6 -0
- package/models/enums/tooltip/tooltip-hover-event.enum.d.ts +4 -0
- package/models/enums/tooltip/tooltip-position.enum.d.ts +6 -0
- package/models/interaces/confirm-modal/confirm-modal-service.interface.d.ts +10 -0
- package/models/interaces/custom-table/custom-table.interface.d.ts +20 -0
- package/models/interaces/navbar/navbar-link-list.interface.d.ts +3 -0
- package/models/interaces/shared/form-status.interface.d.ts +8 -0
- package/package.json +23 -0
- package/public-api.d.ts +37 -0
- package/services/app-config.service.d.ts +16 -0
- package/services/cache.service.d.ts +7 -0
- package/services/confirm-modal-service.d.ts +19 -0
- package/services/dynamic-route.service.d.ts +9 -0
- package/services/export.service.d.ts +12 -0
- package/services/local-storage.service.d.ts +34 -0
- package/services/no-internet.service.d.ts +11 -0
- package/services/translation.service.d.ts +13 -0
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Returns the date of tomorrow, excluding specified disabled dates.
|
|
3
|
+
*
|
|
4
|
+
* @param {Date[]} disabledDates - An array of disabled dates.
|
|
5
|
+
* @return {Date} The date of tomorrow, excluding disabled dates.
|
|
6
|
+
*/
|
|
7
|
+
export declare function getTomorrowDate(disabledDates: Date[]): Date;
|
package/index.d.ts
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { FormGroup } from '@angular/forms';
|
|
3
|
+
import { ButtonColor } from '../../models/enums/button/button-color.enum';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class AccordionComponent {
|
|
6
|
+
isHeaderEditable: boolean;
|
|
7
|
+
isAccordionDeletable: boolean;
|
|
8
|
+
isAccordionCloneable: boolean;
|
|
9
|
+
headerTitle: string;
|
|
10
|
+
selected: boolean | null;
|
|
11
|
+
icon?: string;
|
|
12
|
+
headerTitlePlaceholder?: string;
|
|
13
|
+
headerTitleEditable?: string;
|
|
14
|
+
group: FormGroup;
|
|
15
|
+
controlName: string;
|
|
16
|
+
name: string;
|
|
17
|
+
canDisable: boolean;
|
|
18
|
+
toggleLabel: string;
|
|
19
|
+
toggleControlName: string;
|
|
20
|
+
clickEvent: EventEmitter<any>;
|
|
21
|
+
clickToggleEvent: EventEmitter<any>;
|
|
22
|
+
clickCloneEvent: EventEmitter<any>;
|
|
23
|
+
stateOptions: any[];
|
|
24
|
+
click(event: MouseEvent): void;
|
|
25
|
+
clickToggleButton(event: MouseEvent): void;
|
|
26
|
+
clickCloneButton(event: MouseEvent): void;
|
|
27
|
+
protected readonly ButtonColor: typeof ButtonColor;
|
|
28
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AccordionComponent, never>;
|
|
29
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AccordionComponent, "lib-accordion[headerTitle]", never, { "isHeaderEditable": { "alias": "isHeaderEditable"; "required": false; }; "isAccordionDeletable": { "alias": "isAccordionDeletable"; "required": false; }; "isAccordionCloneable": { "alias": "isAccordionCloneable"; "required": false; }; "headerTitle": { "alias": "headerTitle"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "headerTitlePlaceholder": { "alias": "headerTitlePlaceholder"; "required": false; }; "headerTitleEditable": { "alias": "headerTitleEditable"; "required": false; }; "group": { "alias": "group"; "required": false; }; "controlName": { "alias": "controlName"; "required": false; }; "name": { "alias": "name"; "required": false; }; "canDisable": { "alias": "canDisable"; "required": false; }; "toggleLabel": { "alias": "toggleLabel"; "required": false; }; "toggleControlName": { "alias": "toggleControlName"; "required": false; }; }, { "clickEvent": "clickEvent"; "clickToggleEvent": "clickToggleEvent"; "clickCloneEvent": "clickCloneEvent"; }, never, ["*"], true, never>;
|
|
30
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { MenuItem } from 'primeng/api';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class BreadcrumbsComponent {
|
|
4
|
+
itemList: MenuItem[];
|
|
5
|
+
homeItem: MenuItem;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BreadcrumbsComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BreadcrumbsComponent, "lib-breadcrumbs[itemList][homeItem]", never, { "itemList": { "alias": "itemList"; "required": false; }; "homeItem": { "alias": "homeItem"; "required": false; }; }, {}, never, never, true, never>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { ButtonColor } from '../../models/enums/button/button-color.enum';
|
|
3
|
+
import { ButtonIconPosition } from '../../models/enums/button/button-icon-position.enum';
|
|
4
|
+
import { ButtonSize } from '../../models/enums/button/button-size.enum';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class ButtonComponent {
|
|
7
|
+
hasIcon: boolean;
|
|
8
|
+
label: string;
|
|
9
|
+
color: ButtonColor;
|
|
10
|
+
icon: string;
|
|
11
|
+
iconPos: ButtonIconPosition;
|
|
12
|
+
disabled: boolean;
|
|
13
|
+
isLoading: boolean;
|
|
14
|
+
styleClass: string;
|
|
15
|
+
size: ButtonSize;
|
|
16
|
+
accessibilityText: string;
|
|
17
|
+
buttonType: string;
|
|
18
|
+
isAccessible: boolean;
|
|
19
|
+
isSelected: boolean;
|
|
20
|
+
ariaControlsId: string | null;
|
|
21
|
+
isExpanded: boolean;
|
|
22
|
+
clickEvent: EventEmitter<any>;
|
|
23
|
+
link: boolean;
|
|
24
|
+
isTextareaClear: boolean;
|
|
25
|
+
click(event: MouseEvent): void;
|
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonComponent, never>;
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonComponent, "lib-button", never, { "hasIcon": { "alias": "hasIcon"; "required": false; }; "label": { "alias": "label"; "required": false; }; "color": { "alias": "color"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconPos": { "alias": "iconPos"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "isLoading": { "alias": "isLoading"; "required": false; }; "styleClass": { "alias": "styleClass"; "required": false; }; "size": { "alias": "size"; "required": false; }; "accessibilityText": { "alias": "accessibilityText"; "required": false; }; "buttonType": { "alias": "buttonType"; "required": false; }; "isAccessible": { "alias": "isAccessible"; "required": false; }; "isSelected": { "alias": "isSelected"; "required": false; }; "ariaControlsId": { "alias": "ariaControlsId"; "required": false; }; "isExpanded": { "alias": "isExpanded"; "required": false; }; "link": { "alias": "link"; "required": false; }; "isTextareaClear": { "alias": "isTextareaClear"; "required": false; }; }, { "clickEvent": "clickEvent"; }, never, never, true, never>;
|
|
28
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ButtonLinkComponent {
|
|
4
|
+
hasIcon: boolean;
|
|
5
|
+
label: string;
|
|
6
|
+
isDanger: boolean;
|
|
7
|
+
isPrimary: boolean;
|
|
8
|
+
icon: string;
|
|
9
|
+
target?: string;
|
|
10
|
+
accessibilityText: string;
|
|
11
|
+
clickEvent: EventEmitter<any>;
|
|
12
|
+
click(event: MouseEvent): void;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonLinkComponent, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonLinkComponent, "lib-button-link", never, { "hasIcon": { "alias": "hasIcon"; "required": false; }; "label": { "alias": "label"; "required": false; }; "isDanger": { "alias": "isDanger"; "required": false; }; "isPrimary": { "alias": "isPrimary"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "target": { "alias": "target"; "required": false; }; "accessibilityText": { "alias": "accessibilityText"; "required": false; }; }, { "clickEvent": "clickEvent"; }, never, never, true, never>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class CardComponent {
|
|
3
|
+
title: string;
|
|
4
|
+
cardBody: string;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CardComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CardComponent, "lib-card", never, { "title": { "alias": "title"; "required": false; }; "cardBody": { "alias": "cardBody"; "required": false; }; }, {}, never, never, true, never>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { FormGroup } from '@angular/forms';
|
|
3
|
+
import { FormStatusInterface } from '../../models/interaces/shared/form-status.interface';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class CheckboxComponent {
|
|
6
|
+
label: string;
|
|
7
|
+
group: FormGroup;
|
|
8
|
+
controlName: string;
|
|
9
|
+
value: boolean;
|
|
10
|
+
clickCheckboxEvent: EventEmitter<any>;
|
|
11
|
+
formStatus?: FormStatusInterface;
|
|
12
|
+
ariaLabel: string;
|
|
13
|
+
/**
|
|
14
|
+
* Emit event on checkbox click
|
|
15
|
+
* @param event
|
|
16
|
+
*/
|
|
17
|
+
clickCheckbox(event: MouseEvent): void;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxComponent, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxComponent, "lib-checkbox[group][controlName][label]", never, { "label": { "alias": "label"; "required": false; }; "group": { "alias": "group"; "required": false; }; "controlName": { "alias": "controlName"; "required": false; }; "value": { "alias": "value"; "required": false; }; "formStatus": { "alias": "formStatus"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; }, { "clickCheckboxEvent": "clickCheckboxEvent"; }, never, never, true, never>;
|
|
20
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { DialogColor } from '../../models/enums/confirm-modal/confirm-modal-color.enum';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ConfirmModalComponent {
|
|
5
|
+
acceptBtnLabel: string;
|
|
6
|
+
acceptBtnIcon: string;
|
|
7
|
+
rejectBtnLabel: string;
|
|
8
|
+
rejectBtnIcon: string;
|
|
9
|
+
dialogHeaderColor: DialogColor;
|
|
10
|
+
rejectClickEvent: EventEmitter<any>;
|
|
11
|
+
acceptClickEvent: EventEmitter<any>;
|
|
12
|
+
headerClassMap: {
|
|
13
|
+
primary: string;
|
|
14
|
+
secondary: string;
|
|
15
|
+
info: string;
|
|
16
|
+
warning: string;
|
|
17
|
+
danger: string;
|
|
18
|
+
};
|
|
19
|
+
reject(event: MouseEvent): void;
|
|
20
|
+
accept(event: MouseEvent): void;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ConfirmModalComponent, never>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ConfirmModalComponent, "lib-confirm-modal", never, { "acceptBtnLabel": { "alias": "acceptBtnLabel"; "required": false; }; "acceptBtnIcon": { "alias": "acceptBtnIcon"; "required": false; }; "rejectBtnLabel": { "alias": "rejectBtnLabel"; "required": false; }; "rejectBtnIcon": { "alias": "rejectBtnIcon"; "required": false; }; "dialogHeaderColor": { "alias": "dialogHeaderColor"; "required": false; }; }, { "rejectClickEvent": "rejectClickEvent"; "acceptClickEvent": "acceptClickEvent"; }, never, never, true, never>;
|
|
23
|
+
}
|
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { TableColumn } from '../../models/interaces/custom-table/custom-table.interface';
|
|
3
|
+
import { InputType } from '../../models/enums/input/input-type.enum';
|
|
4
|
+
import { FormStatusInterface } from '../../models/interaces/shared/form-status.interface';
|
|
5
|
+
import { ButtonColor } from '../../models/enums/button/button-color.enum';
|
|
6
|
+
import { FormGroup } from '@angular/forms';
|
|
7
|
+
import { CaptionColor } from '../../models/enums/table/caption-color.enum';
|
|
8
|
+
import { Table } from 'primeng/table';
|
|
9
|
+
import { TagColor } from '../../models/enums/tag/tag.enum';
|
|
10
|
+
import * as i0 from "@angular/core";
|
|
11
|
+
export declare class CustomTableComponent implements OnInit {
|
|
12
|
+
table: Table;
|
|
13
|
+
tableData: any;
|
|
14
|
+
tableColumns: TableColumn[];
|
|
15
|
+
isPaginatorVisible: boolean;
|
|
16
|
+
tableRowCount: number;
|
|
17
|
+
scrollable: boolean;
|
|
18
|
+
scrollHeight: string;
|
|
19
|
+
selectedProducts: any;
|
|
20
|
+
isEditingTable: boolean;
|
|
21
|
+
isTableLoading: boolean;
|
|
22
|
+
hideColumnsOnMobile: boolean;
|
|
23
|
+
tableMinWidth: string;
|
|
24
|
+
isVirtualScrollButtonVisible: boolean;
|
|
25
|
+
isVirtualScroll: boolean;
|
|
26
|
+
virtualScrollRowSize: number;
|
|
27
|
+
tableCaption?: string;
|
|
28
|
+
captionColorClass: CaptionColor;
|
|
29
|
+
isCaptionButtonVisible: boolean;
|
|
30
|
+
captionButtonLabel: string;
|
|
31
|
+
captionButtonColor: ButtonColor;
|
|
32
|
+
captionButtonClicked: EventEmitter<any>;
|
|
33
|
+
isTableHeaderVisible: boolean;
|
|
34
|
+
emptyHeaderColumnList: string[];
|
|
35
|
+
emptyColumnWidth: string;
|
|
36
|
+
toggleTableHeaderName: string;
|
|
37
|
+
toggleWidth: string;
|
|
38
|
+
toggleTwoTableHeaderName: string;
|
|
39
|
+
toggleTwoWidth: string;
|
|
40
|
+
toggleThreeTableHeaderName: string;
|
|
41
|
+
toggleThreeWidth: string;
|
|
42
|
+
toggleFourTableHeaderName: string;
|
|
43
|
+
toggleFourWidth: string;
|
|
44
|
+
rowColor: string;
|
|
45
|
+
formGroup: FormGroup;
|
|
46
|
+
type: InputType;
|
|
47
|
+
formStatus: FormStatusInterface;
|
|
48
|
+
tagColor: TagColor;
|
|
49
|
+
isWarningTextVisible: boolean;
|
|
50
|
+
isButtonOneVisible: boolean;
|
|
51
|
+
buttonLabel: string;
|
|
52
|
+
buttonOneLabel: string;
|
|
53
|
+
buttonOneHasIcon: boolean;
|
|
54
|
+
buttonOneEditIcon: string;
|
|
55
|
+
buttonOneSaveIcon: string;
|
|
56
|
+
buttonOneColor: ButtonColor;
|
|
57
|
+
buttonOneIcon?: string;
|
|
58
|
+
isPlainTableIconButtonOne: boolean;
|
|
59
|
+
isPlainTableButtonOneLink: boolean;
|
|
60
|
+
buttonEditClick: EventEmitter<any>;
|
|
61
|
+
buttonSaveClick: EventEmitter<any>;
|
|
62
|
+
buttonOneClick: EventEmitter<any>;
|
|
63
|
+
isButtonTwoVisible: boolean;
|
|
64
|
+
buttonTwoLabel: string;
|
|
65
|
+
buttonTwoHasIcon: boolean;
|
|
66
|
+
buttonTwoDeleteIcon: string;
|
|
67
|
+
buttonTwoCancelIcon: string;
|
|
68
|
+
buttonTwoColor: ButtonColor;
|
|
69
|
+
buttonTwoIcon: string;
|
|
70
|
+
isPlainTableIconButtonTwo: boolean;
|
|
71
|
+
buttonDeleteClick: EventEmitter<any>;
|
|
72
|
+
buttonTwoClick: EventEmitter<any>;
|
|
73
|
+
isDeactivateToggle: boolean;
|
|
74
|
+
toggleSwitch: EventEmitter<any>;
|
|
75
|
+
isDeactivateToggleTwo: boolean;
|
|
76
|
+
toggleTwoSwitch: EventEmitter<any>;
|
|
77
|
+
isDeactivateToggleThree: boolean;
|
|
78
|
+
toggleThreeSwitch: EventEmitter<any>;
|
|
79
|
+
isDeactivateToggleFour: boolean;
|
|
80
|
+
toggleFourSwitch: EventEmitter<any>;
|
|
81
|
+
showEllipsisFullText: boolean;
|
|
82
|
+
checkboxOne: EventEmitter<any>;
|
|
83
|
+
textDisplayStates: {
|
|
84
|
+
[id: string]: boolean;
|
|
85
|
+
};
|
|
86
|
+
overviewList: {
|
|
87
|
+
name: string;
|
|
88
|
+
value: string;
|
|
89
|
+
}[];
|
|
90
|
+
onRowEdit(event: any): void;
|
|
91
|
+
onRowSave(event: MouseEvent, htmlTableRowElement: any): void;
|
|
92
|
+
onRowDelete(event: MouseEvent): void;
|
|
93
|
+
onRowCancel(event: MouseEvent): void;
|
|
94
|
+
clickCaptionButton(event: MouseEvent): void;
|
|
95
|
+
clickButtonOne(event: MouseEvent): void;
|
|
96
|
+
clickButtonTwo(event: MouseEvent): void;
|
|
97
|
+
toggleEnable(event: any): void;
|
|
98
|
+
toggleTwoEnable(event: any): void;
|
|
99
|
+
toggleThreeEnable(event: any): void;
|
|
100
|
+
toggleFourEnable(event: any): void;
|
|
101
|
+
clickCheckboxOne(event: any, fieldValue: any): void;
|
|
102
|
+
getNestedValue(data: any, field: string): any;
|
|
103
|
+
isMobile(): boolean;
|
|
104
|
+
ngOnInit(): void;
|
|
105
|
+
/**
|
|
106
|
+
* da skrije/prikaže poln oz. skrajšan tekst na 50 znakov
|
|
107
|
+
* TODO: zaenkrat izpuščeno
|
|
108
|
+
*/
|
|
109
|
+
toggleTextDisplay(rowData: any): void;
|
|
110
|
+
/**
|
|
111
|
+
* da skrije/prikaže poln oz. skrajšan tekst na 50 znakov
|
|
112
|
+
* TODO: zaenkrat izpuščeno
|
|
113
|
+
*/
|
|
114
|
+
getDisplayText(rowData: any, field: string): string;
|
|
115
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CustomTableComponent, never>;
|
|
116
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CustomTableComponent, "lib-custom-table[tableData][tableColumns]", never, { "tableData": { "alias": "tableData"; "required": false; }; "tableColumns": { "alias": "tableColumns"; "required": false; }; "isPaginatorVisible": { "alias": "isPaginatorVisible"; "required": false; }; "tableRowCount": { "alias": "tableRowCount"; "required": false; }; "scrollable": { "alias": "scrollable"; "required": false; }; "scrollHeight": { "alias": "scrollHeight"; "required": false; }; "selectedProducts": { "alias": "selectedProducts"; "required": false; }; "isEditingTable": { "alias": "isEditingTable"; "required": false; }; "isTableLoading": { "alias": "isTableLoading"; "required": false; }; "hideColumnsOnMobile": { "alias": "hideColumnsOnMobile"; "required": false; }; "tableMinWidth": { "alias": "tableMinWidth"; "required": false; }; "isVirtualScrollButtonVisible": { "alias": "isVirtualScrollButtonVisible"; "required": false; }; "isVirtualScroll": { "alias": "isVirtualScroll"; "required": false; }; "virtualScrollRowSize": { "alias": "virtualScrollRowSize"; "required": false; }; "tableCaption": { "alias": "tableCaption"; "required": false; }; "captionColorClass": { "alias": "captionColorClass"; "required": false; }; "isCaptionButtonVisible": { "alias": "isCaptionButtonVisible"; "required": false; }; "captionButtonLabel": { "alias": "captionButtonLabel"; "required": false; }; "captionButtonColor": { "alias": "captionButtonColor"; "required": false; }; "isTableHeaderVisible": { "alias": "isTableHeaderVisible"; "required": false; }; "emptyColumnWidth": { "alias": "emptyColumnWidth"; "required": false; }; "toggleTableHeaderName": { "alias": "toggleTableHeaderName"; "required": false; }; "toggleWidth": { "alias": "toggleWidth"; "required": false; }; "toggleTwoTableHeaderName": { "alias": "toggleTwoTableHeaderName"; "required": false; }; "toggleTwoWidth": { "alias": "toggleTwoWidth"; "required": false; }; "toggleThreeTableHeaderName": { "alias": "toggleThreeTableHeaderName"; "required": false; }; "toggleThreeWidth": { "alias": "toggleThreeWidth"; "required": false; }; "toggleFourTableHeaderName": { "alias": "toggleFourTableHeaderName"; "required": false; }; "toggleFourWidth": { "alias": "toggleFourWidth"; "required": false; }; "rowColor": { "alias": "rowColor"; "required": false; }; "formGroup": { "alias": "formGroup"; "required": false; }; "type": { "alias": "type"; "required": false; }; "formStatus": { "alias": "formStatus"; "required": false; }; "tagColor": { "alias": "tagColor"; "required": false; }; "isWarningTextVisible": { "alias": "isWarningTextVisible"; "required": false; }; "isButtonOneVisible": { "alias": "isButtonOneVisible"; "required": false; }; "buttonLabel": { "alias": "buttonLabel"; "required": false; }; "buttonOneLabel": { "alias": "buttonOneLabel"; "required": false; }; "buttonOneHasIcon": { "alias": "buttonOneHasIcon"; "required": false; }; "buttonOneEditIcon": { "alias": "buttonOneEditIcon"; "required": false; }; "buttonOneSaveIcon": { "alias": "buttonOneSaveIcon"; "required": false; }; "buttonOneColor": { "alias": "buttonOneColor"; "required": false; }; "buttonOneIcon": { "alias": "buttonOneIcon"; "required": false; }; "isPlainTableIconButtonOne": { "alias": "isPlainTableIconButtonOne"; "required": false; }; "isPlainTableButtonOneLink": { "alias": "isPlainTableButtonOneLink"; "required": false; }; "isButtonTwoVisible": { "alias": "isButtonTwoVisible"; "required": false; }; "buttonTwoLabel": { "alias": "buttonTwoLabel"; "required": false; }; "buttonTwoHasIcon": { "alias": "buttonTwoHasIcon"; "required": false; }; "buttonTwoDeleteIcon": { "alias": "buttonTwoDeleteIcon"; "required": false; }; "buttonTwoCancelIcon": { "alias": "buttonTwoCancelIcon"; "required": false; }; "buttonTwoColor": { "alias": "buttonTwoColor"; "required": false; }; "buttonTwoIcon": { "alias": "buttonTwoIcon"; "required": false; }; "isPlainTableIconButtonTwo": { "alias": "isPlainTableIconButtonTwo"; "required": false; }; "isDeactivateToggle": { "alias": "isDeactivateToggle"; "required": false; }; "isDeactivateToggleTwo": { "alias": "isDeactivateToggleTwo"; "required": false; }; "isDeactivateToggleThree": { "alias": "isDeactivateToggleThree"; "required": false; }; "isDeactivateToggleFour": { "alias": "isDeactivateToggleFour"; "required": false; }; "showEllipsisFullText": { "alias": "showEllipsisFullText"; "required": false; }; }, { "captionButtonClicked": "captionButtonClicked"; "buttonEditClick": "buttonEditClick"; "buttonSaveClick": "buttonSaveClick"; "buttonOneClick": "buttonOneClick"; "buttonDeleteClick": "buttonDeleteClick"; "buttonTwoClick": "buttonTwoClick"; "toggleSwitch": "toggleSwitch"; "toggleTwoSwitch": "toggleTwoSwitch"; "toggleThreeSwitch": "toggleThreeSwitch"; "toggleFourSwitch": "toggleFourSwitch"; "checkboxOne": "checkboxOne"; }, never, never, true, never>;
|
|
117
|
+
}
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { FormGroup } from '@angular/forms';
|
|
3
|
+
import { FormStatusInterface } from '../../models/interaces/shared/form-status.interface';
|
|
4
|
+
import { TooltipPosition } from '../../models/enums/tooltip/tooltip-position.enum';
|
|
5
|
+
import { SelectionMode } from '../../models/enums/dropdown/dropdown-selection-mode.enum';
|
|
6
|
+
import { TooltipHoverEventEnum } from '../../models/enums/tooltip/tooltip-hover-event.enum';
|
|
7
|
+
import { getTomorrowDate } from "../../helpers/get-tomorrow-date.function";
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
export declare class DateInputComponent implements OnInit {
|
|
10
|
+
protected readonly TooltipHoverEventEnum: typeof TooltipHoverEventEnum;
|
|
11
|
+
_isTooltipVisible: boolean;
|
|
12
|
+
isLabelVisible: boolean;
|
|
13
|
+
name: string;
|
|
14
|
+
label: string;
|
|
15
|
+
placeholder: string;
|
|
16
|
+
accessibilityText: string;
|
|
17
|
+
isRequired: boolean;
|
|
18
|
+
tooltipPosition: TooltipPosition;
|
|
19
|
+
tooltipText?: string;
|
|
20
|
+
dateFormat: string;
|
|
21
|
+
group: FormGroup;
|
|
22
|
+
controlName: string;
|
|
23
|
+
showIcon: boolean;
|
|
24
|
+
selectionMode: SelectionMode;
|
|
25
|
+
touchUI: boolean;
|
|
26
|
+
formStatus?: FormStatusInterface;
|
|
27
|
+
showClear: boolean;
|
|
28
|
+
isPublicDate: boolean;
|
|
29
|
+
minDate: Date;
|
|
30
|
+
maxDate?: Date;
|
|
31
|
+
minDateToday: boolean;
|
|
32
|
+
maxDateSixMonths: boolean;
|
|
33
|
+
maxDateThreeMonths: boolean;
|
|
34
|
+
setMinAndMax: boolean;
|
|
35
|
+
hasGap: boolean;
|
|
36
|
+
disabledDates: Date[];
|
|
37
|
+
appendTo: string;
|
|
38
|
+
groupError: boolean;
|
|
39
|
+
showTime: boolean;
|
|
40
|
+
availableDates: string[];
|
|
41
|
+
disabledDays: number[];
|
|
42
|
+
disabledWeekends: boolean;
|
|
43
|
+
onSelect: EventEmitter<Date>;
|
|
44
|
+
ngOnInit(): void;
|
|
45
|
+
getDateInThreeMonths(): Date;
|
|
46
|
+
getDateFifteenDaysAgo(): Date;
|
|
47
|
+
getDateInSixMonths(): Date;
|
|
48
|
+
getDateRangeUnlimited(): Date;
|
|
49
|
+
getDateTomorrow(time: string): Date;
|
|
50
|
+
/**
|
|
51
|
+
* preverjanje, če je datum znotraj availableDates
|
|
52
|
+
*/
|
|
53
|
+
isAppointmentDateAvailable(date: {
|
|
54
|
+
day: number;
|
|
55
|
+
month: number;
|
|
56
|
+
year: number;
|
|
57
|
+
}): boolean;
|
|
58
|
+
protected readonly getTomorrowDate: typeof getTomorrowDate;
|
|
59
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DateInputComponent, never>;
|
|
60
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DateInputComponent, "lib-date-input[group][controlName][name]", never, { "isLabelVisible": { "alias": "isLabelVisible"; "required": false; }; "name": { "alias": "name"; "required": false; }; "label": { "alias": "label"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "accessibilityText": { "alias": "accessibilityText"; "required": false; }; "isRequired": { "alias": "isRequired"; "required": false; }; "tooltipPosition": { "alias": "tooltipPosition"; "required": false; }; "tooltipText": { "alias": "tooltipText"; "required": false; }; "dateFormat": { "alias": "dateFormat"; "required": false; }; "group": { "alias": "group"; "required": false; }; "controlName": { "alias": "controlName"; "required": false; }; "showIcon": { "alias": "showIcon"; "required": false; }; "selectionMode": { "alias": "selectionMode"; "required": false; }; "touchUI": { "alias": "touchUI"; "required": false; }; "formStatus": { "alias": "formStatus"; "required": false; }; "showClear": { "alias": "showClear"; "required": false; }; "isPublicDate": { "alias": "isPublicDate"; "required": false; }; "minDate": { "alias": "minDate"; "required": false; }; "maxDate": { "alias": "maxDate"; "required": false; }; "minDateToday": { "alias": "minDateToday"; "required": false; }; "maxDateSixMonths": { "alias": "maxDateSixMonths"; "required": false; }; "maxDateThreeMonths": { "alias": "maxDateThreeMonths"; "required": false; }; "setMinAndMax": { "alias": "setMinAndMax"; "required": false; }; "hasGap": { "alias": "hasGap"; "required": false; }; "disabledDates": { "alias": "disabledDates"; "required": false; }; "appendTo": { "alias": "appendTo"; "required": false; }; "groupError": { "alias": "groupError"; "required": false; }; "showTime": { "alias": "showTime"; "required": false; }; "availableDates": { "alias": "availableDates"; "required": false; }; "disabledDays": { "alias": "disabledDays"; "required": false; }; "disabledWeekends": { "alias": "disabledWeekends"; "required": false; }; }, { "onSelect": "onSelect"; }, never, never, true, never>;
|
|
61
|
+
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { FormGroup } from '@angular/forms';
|
|
3
|
+
import { FormStatusInterface } from '../../models/interaces/shared/form-status.interface';
|
|
4
|
+
import { TooltipPosition } from '../../models/enums/tooltip/tooltip-position.enum';
|
|
5
|
+
import { TranslateService } from '@ngx-translate/core';
|
|
6
|
+
import { TooltipHoverEventEnum } from '../../models/enums/tooltip/tooltip-hover-event.enum';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class DropdownComponent implements OnInit {
|
|
9
|
+
private readonly translateService;
|
|
10
|
+
protected readonly TooltipHoverEventEnum: typeof TooltipHoverEventEnum;
|
|
11
|
+
_isTooltipVisible: boolean;
|
|
12
|
+
dynamicItemsLabel: any;
|
|
13
|
+
name: string;
|
|
14
|
+
isMultiselect: boolean;
|
|
15
|
+
selectedItemLabel: string;
|
|
16
|
+
group: FormGroup;
|
|
17
|
+
controlName: string;
|
|
18
|
+
label: string;
|
|
19
|
+
optionList: object[];
|
|
20
|
+
optionLabel: string;
|
|
21
|
+
optionalValue: string;
|
|
22
|
+
placeholder: string;
|
|
23
|
+
accessibilityText: string;
|
|
24
|
+
filter: boolean;
|
|
25
|
+
filterBy: string;
|
|
26
|
+
showClear: boolean;
|
|
27
|
+
isRequired: boolean;
|
|
28
|
+
tooltipPosition: TooltipPosition;
|
|
29
|
+
tooltipText?: string;
|
|
30
|
+
formStatus?: FormStatusInterface;
|
|
31
|
+
nestedGroup: boolean;
|
|
32
|
+
isLoading: boolean;
|
|
33
|
+
appendTo: string;
|
|
34
|
+
isLabelVisible: boolean;
|
|
35
|
+
emptyMessage?: string;
|
|
36
|
+
virtualScroll: boolean;
|
|
37
|
+
ariaFilterLabel?: string;
|
|
38
|
+
optionValue?: string;
|
|
39
|
+
getValueEvent: EventEmitter<any>;
|
|
40
|
+
constructor(translateService: TranslateService);
|
|
41
|
+
getSelectedValue(event: any): void;
|
|
42
|
+
ngOnInit(): void;
|
|
43
|
+
onClear(): void;
|
|
44
|
+
get emptyDropdownMessage(): string;
|
|
45
|
+
get emptyFilterDropdownMessage(): string;
|
|
46
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DropdownComponent, never>;
|
|
47
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DropdownComponent, "lib-dropdown[group][controlName][name]", never, { "name": { "alias": "name"; "required": false; }; "isMultiselect": { "alias": "isMultiselect"; "required": false; }; "selectedItemLabel": { "alias": "selectedItemLabel"; "required": false; }; "group": { "alias": "group"; "required": false; }; "controlName": { "alias": "controlName"; "required": false; }; "label": { "alias": "label"; "required": false; }; "optionList": { "alias": "optionList"; "required": false; }; "optionLabel": { "alias": "optionLabel"; "required": false; }; "optionalValue": { "alias": "optionalValue"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "accessibilityText": { "alias": "accessibilityText"; "required": false; }; "filter": { "alias": "filter"; "required": false; }; "filterBy": { "alias": "filterBy"; "required": false; }; "showClear": { "alias": "showClear"; "required": false; }; "isRequired": { "alias": "isRequired"; "required": false; }; "tooltipPosition": { "alias": "tooltipPosition"; "required": false; }; "tooltipText": { "alias": "tooltipText"; "required": false; }; "formStatus": { "alias": "formStatus"; "required": false; }; "nestedGroup": { "alias": "nestedGroup"; "required": false; }; "isLoading": { "alias": "isLoading"; "required": false; }; "appendTo": { "alias": "appendTo"; "required": false; }; "isLabelVisible": { "alias": "isLabelVisible"; "required": false; }; "emptyMessage": { "alias": "emptyMessage"; "required": false; }; "virtualScroll": { "alias": "virtualScroll"; "required": false; }; "ariaFilterLabel": { "alias": "ariaFilterLabel"; "required": false; }; "optionValue": { "alias": "optionValue"; "required": false; }; }, { "getValueEvent": "getValueEvent"; }, never, never, true, never>;
|
|
48
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class ErrorComponent {
|
|
3
|
+
hasError: any;
|
|
4
|
+
isTouched: boolean;
|
|
5
|
+
isSubmitTriggered: boolean;
|
|
6
|
+
isNestedFormSubmit: boolean;
|
|
7
|
+
isDirty: boolean;
|
|
8
|
+
isRequired: boolean;
|
|
9
|
+
hasGroupError: boolean;
|
|
10
|
+
errorId: string;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ErrorComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ErrorComponent, "lib-error", never, { "hasError": { "alias": "hasError"; "required": false; }; "isTouched": { "alias": "isTouched"; "required": false; }; "isSubmitTriggered": { "alias": "isSubmitTriggered"; "required": false; }; "isNestedFormSubmit": { "alias": "isNestedFormSubmit"; "required": false; }; "isDirty": { "alias": "isDirty"; "required": false; }; "isRequired": { "alias": "isRequired"; "required": false; }; "hasGroupError": { "alias": "hasGroupError"; "required": false; }; "errorId": { "alias": "errorId"; "required": false; }; }, {}, never, never, true, never>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { ButtonColor } from '../../models/enums/button/button-color.enum';
|
|
3
|
+
import { ExpandedTable } from '../../models/enums/expanded-table/expanded-table.enum';
|
|
4
|
+
import { isEmpty } from '../../helpers/is-object-empty.function';
|
|
5
|
+
import { TableColumn } from '../../models/interaces/custom-table/custom-table.interface';
|
|
6
|
+
import { Table } from 'primeng/table';
|
|
7
|
+
import { CaptionColor } from '../../models/enums/table/caption-color.enum';
|
|
8
|
+
import { FormGroup } from '@angular/forms';
|
|
9
|
+
import { InputType } from '../../models/enums/input/input-type.enum';
|
|
10
|
+
import { FormStatusInterface } from '../../models/interaces/shared/form-status.interface';
|
|
11
|
+
import * as i0 from "@angular/core";
|
|
12
|
+
export declare class ExpandedTableComponent implements OnInit {
|
|
13
|
+
protected readonly Array: ArrayConstructor;
|
|
14
|
+
protected readonly ButtonColor: typeof ButtonColor;
|
|
15
|
+
protected readonly isEmpty: typeof isEmpty;
|
|
16
|
+
tableData: any;
|
|
17
|
+
tableColumns: TableColumn[];
|
|
18
|
+
isPaginatorVisible: boolean;
|
|
19
|
+
tableRowCount: number;
|
|
20
|
+
isEnabledTable: boolean;
|
|
21
|
+
scrollable: boolean;
|
|
22
|
+
scrollHeight: string;
|
|
23
|
+
isTableLoading: boolean;
|
|
24
|
+
mainCaptionColorClass?: ExpandedTable;
|
|
25
|
+
isEditingTable: boolean;
|
|
26
|
+
hideColumnsOnMobile: boolean;
|
|
27
|
+
innerTableHideColumnsOnMobile: boolean;
|
|
28
|
+
tableCaption?: string;
|
|
29
|
+
isTableHeaderVisible: boolean;
|
|
30
|
+
emptyHeaderColumnList: string[];
|
|
31
|
+
emptyColumnWidth: string;
|
|
32
|
+
rowColor: string;
|
|
33
|
+
isButtonOneVisible: boolean;
|
|
34
|
+
isPlainTableIconButtonOne: boolean;
|
|
35
|
+
buttonLabel?: string;
|
|
36
|
+
buttonOneLabel?: string;
|
|
37
|
+
buttonOneHasIcon?: boolean;
|
|
38
|
+
buttonOneColor?: ButtonColor;
|
|
39
|
+
buttonOneIcon?: string;
|
|
40
|
+
buttonOneClick: EventEmitter<any>;
|
|
41
|
+
isButtonTwoVisible: boolean;
|
|
42
|
+
buttonTwoLabel?: string;
|
|
43
|
+
buttonTwoHasIcon?: boolean;
|
|
44
|
+
buttonTwoColor?: ButtonColor;
|
|
45
|
+
buttonTwoIcon?: string;
|
|
46
|
+
isButtonTwoToggle: boolean;
|
|
47
|
+
buttonTwoClick: EventEmitter<any>;
|
|
48
|
+
isArrowToggle: boolean;
|
|
49
|
+
table: Table;
|
|
50
|
+
innerTableStyle: string;
|
|
51
|
+
innerTableColumns: TableColumn[];
|
|
52
|
+
innerIsPaginatorVisible: boolean;
|
|
53
|
+
innerTableRowCount: number;
|
|
54
|
+
innerScrollable: boolean;
|
|
55
|
+
innerScrollHeight: string;
|
|
56
|
+
innerIsEditingTable: boolean;
|
|
57
|
+
innerIsTableLoading: boolean;
|
|
58
|
+
innerTableCaption?: string;
|
|
59
|
+
innerCaptionColorClass: CaptionColor;
|
|
60
|
+
innerIsCaptionButtonVisible: boolean;
|
|
61
|
+
innerCaptionButtonLabel: string;
|
|
62
|
+
innerCaptionButtonColor: ButtonColor;
|
|
63
|
+
innerCaptionButtonClicked: EventEmitter<any>;
|
|
64
|
+
innerIsTableHeaderVisible: boolean;
|
|
65
|
+
innerEmptyHeaderColumnList: string[];
|
|
66
|
+
innerEmptyColumnWidth: string;
|
|
67
|
+
innerToggleTableHeaderName: string;
|
|
68
|
+
innerToggleWidth: string;
|
|
69
|
+
innerToggleTwoTableHeaderName: string;
|
|
70
|
+
innerToggleTwoWidth: string;
|
|
71
|
+
innerToggleThreeTableHeaderName: string;
|
|
72
|
+
innerToggleThreeWidth: string;
|
|
73
|
+
innerToggleFourTableHeaderName: string;
|
|
74
|
+
innerToggleFourWidth: string;
|
|
75
|
+
innerFormGroup: FormGroup<{}>;
|
|
76
|
+
innerType: InputType;
|
|
77
|
+
innerFormStatus: FormStatusInterface;
|
|
78
|
+
innerIsButtonOneVisible: boolean;
|
|
79
|
+
innerIsPlainTableIconButtonOne: boolean;
|
|
80
|
+
innerButtonOneLabel: string;
|
|
81
|
+
innerButtonOneHasIcon: boolean;
|
|
82
|
+
innerButtonOneEditIcon: string;
|
|
83
|
+
innerButtonOneSaveIcon: string;
|
|
84
|
+
innerButtonOneColor: ButtonColor;
|
|
85
|
+
innerButtonOneIcon?: string;
|
|
86
|
+
innerButtonEditClick: EventEmitter<any>;
|
|
87
|
+
innerButtonSaveClick: EventEmitter<any>;
|
|
88
|
+
innerButtonOneClick: EventEmitter<any>;
|
|
89
|
+
innerIsButtonTwoVisible: boolean;
|
|
90
|
+
innerIsPlainTableIconButtonTwo: boolean;
|
|
91
|
+
innerButtonTwoLabel: string;
|
|
92
|
+
innerButtonTwoHasIcon: boolean;
|
|
93
|
+
innerButtonTwoDeleteIcon: string;
|
|
94
|
+
innerButtonTwoCancelIcon: string;
|
|
95
|
+
innerButtonTwoColor: ButtonColor;
|
|
96
|
+
innerButtonTwoIcon: string;
|
|
97
|
+
innerButtonDeleteClick: EventEmitter<any>;
|
|
98
|
+
innerButtonTwoClick: EventEmitter<any>;
|
|
99
|
+
innerIsDeactivateToggle: boolean;
|
|
100
|
+
innerToggleSwitch: EventEmitter<any>;
|
|
101
|
+
innerIsDeactivateToggleTwo: boolean;
|
|
102
|
+
innerToggleTwoSwitch: EventEmitter<any>;
|
|
103
|
+
innerIsDeactivateToggleThree: boolean;
|
|
104
|
+
innerToggleThreeSwitch: EventEmitter<any>;
|
|
105
|
+
innerIsDeactivateToggleFour: boolean;
|
|
106
|
+
innerToggleFourSwitch: EventEmitter<any>;
|
|
107
|
+
clickButtonOne(event: MouseEvent): void;
|
|
108
|
+
clickButtonTwo(event: MouseEvent): void;
|
|
109
|
+
onRowEdit(event: any): void;
|
|
110
|
+
onRowSave(event: MouseEvent, htmlTableRowElement: any): void;
|
|
111
|
+
onRowDelete(event: MouseEvent): void;
|
|
112
|
+
onRowCancel(event: MouseEvent): void;
|
|
113
|
+
clickInnerCaptionButton(event: MouseEvent): void;
|
|
114
|
+
clickInnerButtonOne(event: MouseEvent): void;
|
|
115
|
+
clickInnerButtonTwo(event: MouseEvent): void;
|
|
116
|
+
toggleEnable(event: any): void;
|
|
117
|
+
toggleTwoEnable(event: any): void;
|
|
118
|
+
toggleThreeEnable(event: any): void;
|
|
119
|
+
toggleFourEnable(event: any): void;
|
|
120
|
+
getNestedValue(data: any, field: string): any;
|
|
121
|
+
isMobile(): boolean;
|
|
122
|
+
ngOnInit(): void;
|
|
123
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ExpandedTableComponent, never>;
|
|
124
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ExpandedTableComponent, "lib-expanded-table[tableData]", never, { "tableData": { "alias": "tableData"; "required": false; }; "tableColumns": { "alias": "tableColumns"; "required": false; }; "isPaginatorVisible": { "alias": "isPaginatorVisible"; "required": false; }; "tableRowCount": { "alias": "tableRowCount"; "required": false; }; "isEnabledTable": { "alias": "isEnabledTable"; "required": false; }; "scrollable": { "alias": "scrollable"; "required": false; }; "scrollHeight": { "alias": "scrollHeight"; "required": false; }; "isTableLoading": { "alias": "isTableLoading"; "required": false; }; "mainCaptionColorClass": { "alias": "mainCaptionColorClass"; "required": false; }; "isEditingTable": { "alias": "isEditingTable"; "required": false; }; "hideColumnsOnMobile": { "alias": "hideColumnsOnMobile"; "required": false; }; "innerTableHideColumnsOnMobile": { "alias": "innerTableHideColumnsOnMobile"; "required": false; }; "tableCaption": { "alias": "tableCaption"; "required": false; }; "isTableHeaderVisible": { "alias": "isTableHeaderVisible"; "required": false; }; "emptyColumnWidth": { "alias": "emptyColumnWidth"; "required": false; }; "rowColor": { "alias": "rowColor"; "required": false; }; "isButtonOneVisible": { "alias": "isButtonOneVisible"; "required": false; }; "isPlainTableIconButtonOne": { "alias": "isPlainTableIconButtonOne"; "required": false; }; "buttonLabel": { "alias": "buttonLabel"; "required": false; }; "buttonOneLabel": { "alias": "buttonOneLabel"; "required": false; }; "buttonOneHasIcon": { "alias": "buttonOneHasIcon"; "required": false; }; "buttonOneColor": { "alias": "buttonOneColor"; "required": false; }; "buttonOneIcon": { "alias": "buttonOneIcon"; "required": false; }; "isButtonTwoVisible": { "alias": "isButtonTwoVisible"; "required": false; }; "buttonTwoLabel": { "alias": "buttonTwoLabel"; "required": false; }; "buttonTwoHasIcon": { "alias": "buttonTwoHasIcon"; "required": false; }; "buttonTwoColor": { "alias": "buttonTwoColor"; "required": false; }; "buttonTwoIcon": { "alias": "buttonTwoIcon"; "required": false; }; "isButtonTwoToggle": { "alias": "isButtonTwoToggle"; "required": false; }; "isArrowToggle": { "alias": "isArrowToggle"; "required": false; }; "innerTableStyle": { "alias": "innerTableStyle"; "required": false; }; "innerTableColumns": { "alias": "innerTableColumns"; "required": false; }; "innerIsPaginatorVisible": { "alias": "innerIsPaginatorVisible"; "required": false; }; "innerTableRowCount": { "alias": "innerTableRowCount"; "required": false; }; "innerScrollable": { "alias": "innerScrollable"; "required": false; }; "innerScrollHeight": { "alias": "innerScrollHeight"; "required": false; }; "innerIsEditingTable": { "alias": "innerIsEditingTable"; "required": false; }; "innerIsTableLoading": { "alias": "innerIsTableLoading"; "required": false; }; "innerTableCaption": { "alias": "innerTableCaption"; "required": false; }; "innerCaptionColorClass": { "alias": "innerCaptionColorClass"; "required": false; }; "innerIsCaptionButtonVisible": { "alias": "innerIsCaptionButtonVisible"; "required": false; }; "innerCaptionButtonLabel": { "alias": "innerCaptionButtonLabel"; "required": false; }; "innerCaptionButtonColor": { "alias": "innerCaptionButtonColor"; "required": false; }; "innerIsTableHeaderVisible": { "alias": "innerIsTableHeaderVisible"; "required": false; }; "innerEmptyColumnWidth": { "alias": "innerEmptyColumnWidth"; "required": false; }; "innerToggleTableHeaderName": { "alias": "innerToggleTableHeaderName"; "required": false; }; "innerToggleWidth": { "alias": "innerToggleWidth"; "required": false; }; "innerToggleTwoTableHeaderName": { "alias": "innerToggleTwoTableHeaderName"; "required": false; }; "innerToggleTwoWidth": { "alias": "innerToggleTwoWidth"; "required": false; }; "innerToggleThreeTableHeaderName": { "alias": "innerToggleThreeTableHeaderName"; "required": false; }; "innerToggleThreeWidth": { "alias": "innerToggleThreeWidth"; "required": false; }; "innerToggleFourTableHeaderName": { "alias": "innerToggleFourTableHeaderName"; "required": false; }; "innerToggleFourWidth": { "alias": "innerToggleFourWidth"; "required": false; }; "innerFormGroup": { "alias": "innerFormGroup"; "required": false; }; "innerType": { "alias": "innerType"; "required": false; }; "innerFormStatus": { "alias": "innerFormStatus"; "required": false; }; "innerIsButtonOneVisible": { "alias": "innerIsButtonOneVisible"; "required": false; }; "innerIsPlainTableIconButtonOne": { "alias": "innerIsPlainTableIconButtonOne"; "required": false; }; "innerButtonOneLabel": { "alias": "innerButtonOneLabel"; "required": false; }; "innerButtonOneHasIcon": { "alias": "innerButtonOneHasIcon"; "required": false; }; "innerButtonOneEditIcon": { "alias": "innerButtonOneEditIcon"; "required": false; }; "innerButtonOneSaveIcon": { "alias": "innerButtonOneSaveIcon"; "required": false; }; "innerButtonOneColor": { "alias": "innerButtonOneColor"; "required": false; }; "innerButtonOneIcon": { "alias": "innerButtonOneIcon"; "required": false; }; "innerIsButtonTwoVisible": { "alias": "innerIsButtonTwoVisible"; "required": false; }; "innerIsPlainTableIconButtonTwo": { "alias": "innerIsPlainTableIconButtonTwo"; "required": false; }; "innerButtonTwoLabel": { "alias": "innerButtonTwoLabel"; "required": false; }; "innerButtonTwoHasIcon": { "alias": "innerButtonTwoHasIcon"; "required": false; }; "innerButtonTwoDeleteIcon": { "alias": "innerButtonTwoDeleteIcon"; "required": false; }; "innerButtonTwoCancelIcon": { "alias": "innerButtonTwoCancelIcon"; "required": false; }; "innerButtonTwoColor": { "alias": "innerButtonTwoColor"; "required": false; }; "innerButtonTwoIcon": { "alias": "innerButtonTwoIcon"; "required": false; }; "innerIsDeactivateToggle": { "alias": "innerIsDeactivateToggle"; "required": false; }; "innerIsDeactivateToggleTwo": { "alias": "innerIsDeactivateToggleTwo"; "required": false; }; "innerIsDeactivateToggleThree": { "alias": "innerIsDeactivateToggleThree"; "required": false; }; "innerIsDeactivateToggleFour": { "alias": "innerIsDeactivateToggleFour"; "required": false; }; }, { "buttonOneClick": "buttonOneClick"; "buttonTwoClick": "buttonTwoClick"; "innerCaptionButtonClicked": "innerCaptionButtonClicked"; "innerButtonEditClick": "innerButtonEditClick"; "innerButtonSaveClick": "innerButtonSaveClick"; "innerButtonOneClick": "innerButtonOneClick"; "innerButtonDeleteClick": "innerButtonDeleteClick"; "innerButtonTwoClick": "innerButtonTwoClick"; "innerToggleSwitch": "innerToggleSwitch"; "innerToggleTwoSwitch": "innerToggleTwoSwitch"; "innerToggleThreeSwitch": "innerToggleThreeSwitch"; "innerToggleFourSwitch": "innerToggleFourSwitch"; }, never, never, true, never>;
|
|
125
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class FilterHeaderComponent {
|
|
3
|
+
filterItems: string[];
|
|
4
|
+
constructor();
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FilterHeaderComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FilterHeaderComponent, "app-filter-header", never, { "filterItems": { "alias": "filterItems"; "required": false; }; }, {}, never, never, true, never>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { MessageService } from 'primeng/api';
|
|
2
|
+
import { TranslateService } from '@ngx-translate/core';
|
|
3
|
+
import { Router } from '@angular/router';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class FooterComponent {
|
|
6
|
+
private readonly messageService;
|
|
7
|
+
private readonly translateService;
|
|
8
|
+
private router;
|
|
9
|
+
version: string;
|
|
10
|
+
constructor(messageService: MessageService, translateService: TranslateService, router: Router);
|
|
11
|
+
/**
|
|
12
|
+
* @deprecated
|
|
13
|
+
* @see openPersonalDataInfo()
|
|
14
|
+
*/
|
|
15
|
+
openGdpr(event: any): void;
|
|
16
|
+
/**
|
|
17
|
+
* ES-267 odpre stran z obvestilom glede osebnih podatkov
|
|
18
|
+
* @param event
|
|
19
|
+
*/
|
|
20
|
+
openPersonalDataInfo(event: any): void;
|
|
21
|
+
openAccessibilityInfo(event: any): void;
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FooterComponent, never>;
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FooterComponent, "lib-footer", never, { "version": { "alias": "version"; "required": false; }; }, {}, never, never, true, never>;
|
|
24
|
+
}
|