@indigina/ui-kit 1.1.402 → 1.1.403
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/fesm2022/indigina-ui-kit.mjs +264 -180
- package/fesm2022/indigina-ui-kit.mjs.map +1 -1
- package/package.json +1 -1
- package/styles/components/calendar.scss +206 -0
- package/styles/styles.scss +1 -0
- package/types/indigina-ui-kit.d.ts +83 -61
package/package.json
CHANGED
|
@@ -0,0 +1,206 @@
|
|
|
1
|
+
.k-popup:has(.k-calendar) {
|
|
2
|
+
margin-top: 10px;
|
|
3
|
+
padding: 8px;
|
|
4
|
+
border-radius: 8px;
|
|
5
|
+
box-shadow: 0 9px 28px 8px rgba(0 0 0 / 0.05),
|
|
6
|
+
0 3px 6px -4px rgba(0 0 0 / 0.12),
|
|
7
|
+
0 6px 16px 0 rgba(0 0 0 / 0.08);
|
|
8
|
+
background-color: var(--ui-kit-color-white);
|
|
9
|
+
|
|
10
|
+
.k-calendar {
|
|
11
|
+
border: none;
|
|
12
|
+
|
|
13
|
+
&-title {
|
|
14
|
+
padding: 6px 8px;
|
|
15
|
+
color: var(--ui-kit-color-grey-10);
|
|
16
|
+
font-weight: 400;
|
|
17
|
+
line-height: 20px;
|
|
18
|
+
border-radius: 4px;
|
|
19
|
+
border: none;
|
|
20
|
+
|
|
21
|
+
&:hover {
|
|
22
|
+
background: var(--ui-kit-color-grey-13);
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
&-header {
|
|
27
|
+
padding: 0 0 10px;
|
|
28
|
+
color: var(--ui-kit-color-grey-10);
|
|
29
|
+
font-size: 14px;
|
|
30
|
+
border-bottom: 1px solid var(--ui-kit-color-grey-11);
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
&-nav-prev,
|
|
34
|
+
&-nav-next {
|
|
35
|
+
padding: 0;
|
|
36
|
+
width: 32px;
|
|
37
|
+
height: 32px;
|
|
38
|
+
color: var(--ui-kit-color-grey-12);
|
|
39
|
+
|
|
40
|
+
&:before {
|
|
41
|
+
opacity: 0;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
&:hover {
|
|
45
|
+
color: var(--ui-kit-color-hover);
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
&-nav-today {
|
|
50
|
+
display: flex;
|
|
51
|
+
align-items: center;
|
|
52
|
+
padding: 0 8px;
|
|
53
|
+
color: var(--ui-kit-color-grey-10);
|
|
54
|
+
|
|
55
|
+
&:hover {
|
|
56
|
+
color: var(--ui-kit-color-hover);
|
|
57
|
+
|
|
58
|
+
&:before {
|
|
59
|
+
opacity: 0;
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.k-calendar-table {
|
|
65
|
+
display: flex;
|
|
66
|
+
flex-direction: column;
|
|
67
|
+
gap: 6px;
|
|
68
|
+
padding: 3px 8px;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.k-calendar-view {
|
|
72
|
+
padding: 10px 0 0;
|
|
73
|
+
gap: 16px;
|
|
74
|
+
box-sizing: border-box;
|
|
75
|
+
min-height: auto;
|
|
76
|
+
width: auto;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
.k-calendar-tbody {
|
|
80
|
+
display: flex;
|
|
81
|
+
flex-direction: column;
|
|
82
|
+
row-gap: 16px;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.k-calendar-tr {
|
|
86
|
+
display: flex;
|
|
87
|
+
gap: 16px;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.k-calendar-td {
|
|
91
|
+
width: auto;
|
|
92
|
+
height: auto;
|
|
93
|
+
border-radius: 6px;
|
|
94
|
+
|
|
95
|
+
&.k-today {
|
|
96
|
+
.k-link {
|
|
97
|
+
color: var(--ui-kit-color-main);
|
|
98
|
+
background: var(--ui-kit-color-grey-13);
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
&:hover {
|
|
103
|
+
.k-link {
|
|
104
|
+
border: none;
|
|
105
|
+
background: var(--ui-kit-color-grey-13);
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
&:focus {
|
|
110
|
+
.k-link {
|
|
111
|
+
box-shadow: none;
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
&.k-other-month {
|
|
116
|
+
.k-link {
|
|
117
|
+
color: var(--ui-kit-color-grey-12);
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
&.k-focus {
|
|
122
|
+
.k-link {
|
|
123
|
+
box-shadow: none;
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
&.k-range-mid {
|
|
128
|
+
background: var(--ui-kit-color-selected);
|
|
129
|
+
|
|
130
|
+
.k-link {
|
|
131
|
+
color: var(--ui-kit-color-main);
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
&.k-range-split {
|
|
136
|
+
&-start,
|
|
137
|
+
&-end {
|
|
138
|
+
&::after {
|
|
139
|
+
display: none;
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
.k-link {
|
|
146
|
+
padding: 0;
|
|
147
|
+
width: 54px;
|
|
148
|
+
height: 24px;
|
|
149
|
+
color: var(--ui-kit-color-grey-10);
|
|
150
|
+
border-radius: 6px;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
.k-calendar-th {
|
|
154
|
+
width: 24px;
|
|
155
|
+
height: 22px;
|
|
156
|
+
color: var(--ui-kit-color-main);
|
|
157
|
+
font-size: 14px;
|
|
158
|
+
text-transform: capitalize;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
.k-calendar-monthview {
|
|
162
|
+
.k-link {
|
|
163
|
+
width: 24px;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
.k-calendar-tbody {
|
|
167
|
+
display: flex;
|
|
168
|
+
flex-direction: column;
|
|
169
|
+
row-gap: 6px;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
.k-calendar-td {
|
|
173
|
+
&.k-today {
|
|
174
|
+
.k-link {
|
|
175
|
+
color: var(--ui-kit-color-grey-10);
|
|
176
|
+
border: 1px solid var(--ui-kit-color-main);
|
|
177
|
+
background: var(--ui-kit-color-white);
|
|
178
|
+
}
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
&.k-selected {
|
|
182
|
+
.k-link {
|
|
183
|
+
color: var(--ui-kit-color-white);
|
|
184
|
+
border: none;
|
|
185
|
+
background: var(--ui-kit-color-main);
|
|
186
|
+
box-shadow: none;
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
&.k-empty {
|
|
191
|
+
width: 24px;
|
|
192
|
+
height: 24px;
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
.k-calendar-yearview,
|
|
198
|
+
.k-calendar-decadeview,
|
|
199
|
+
.k-calendar-centuryview {
|
|
200
|
+
.k-calendar-td.k-empty {
|
|
201
|
+
width: 54px;
|
|
202
|
+
height: 24px;
|
|
203
|
+
}
|
|
204
|
+
}
|
|
205
|
+
}
|
|
206
|
+
}
|
package/styles/styles.scss
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { InputSignal, EventEmitter, OnInit, Predicate, ModelSignal, TemplateRef, OutputEmitterRef, Signal, OnDestroy, WritableSignal, OnChanges, ViewContainerRef, ModuleWithProviders,
|
|
2
|
+
import { InputSignal, EventEmitter, OnInit, Predicate, ModelSignal, TemplateRef, OutputEmitterRef, Signal, OnDestroy, WritableSignal, OnChanges, ViewContainerRef, ModuleWithProviders, ElementRef, SimpleChanges, AfterContentInit, QueryList, AfterViewInit, PipeTransform, InjectionToken, DestroyRef } from '@angular/core';
|
|
3
3
|
import { ControlValueAccessor, ValidatorFn, FormControl, AbstractControl, UntypedFormGroup } from '@angular/forms';
|
|
4
4
|
import { TextBoxComponent } from '@progress/kendo-angular-inputs';
|
|
5
5
|
import { PopupSettings, DropDownListComponent, ItemDisabledFn, MultiSelectComponent } from '@progress/kendo-angular-dropdowns';
|
|
6
|
-
import { DateTimePickerComponent, DateRangePopupComponent, DatePickerComponent } from '@progress/kendo-angular-dateinputs';
|
|
6
|
+
import { DateTimePickerComponent, DateRangePopupComponent, SelectionRange, DatePickerComponent } from '@progress/kendo-angular-dateinputs';
|
|
7
7
|
import { TooltipDirective } from '@progress/kendo-angular-tooltip';
|
|
8
8
|
import { ToastrModule, ActiveToast } from 'ngx-toastr';
|
|
9
|
+
import { PopupSettings as PopupSettings$1 } from '@progress/kendo-angular-popup';
|
|
9
10
|
import { DialogRef, DialogSettings } from '@progress/kendo-angular-dialog';
|
|
10
11
|
export { DialogAction, DialogCloseResult, DialogContentBase, DialogRef, DialogResult } from '@progress/kendo-angular-dialog';
|
|
11
12
|
import { FileInfo } from '@progress/kendo-angular-upload';
|
|
12
13
|
import { BehaviorSubject, Observable } from 'rxjs';
|
|
13
14
|
import { Params, NavigationExtras, QueryParamsHandling, CanActivateFn, Routes } from '@angular/router';
|
|
14
|
-
import { PopupSettings as PopupSettings$1 } from '@progress/kendo-angular-popup';
|
|
15
15
|
import { SelectEvent, DrawerComponent } from '@progress/kendo-angular-layout';
|
|
16
16
|
import { RowClassArgs, PageChangeEvent, DetailExpandEvent, DetailCollapseEvent, CellClickEvent, ExcelExportEvent, GridComponent, PagerSettings } from '@progress/kendo-angular-grid';
|
|
17
17
|
import { FilterDescriptor, SortDescriptor, CompositeFilterDescriptor } from '@progress/kendo-data-query';
|
|
@@ -460,6 +460,7 @@ declare class KitTextboxComponent implements ControlValueAccessor {
|
|
|
460
460
|
readonly clearButton: InputSignal<boolean>;
|
|
461
461
|
readonly showStateIcon: InputSignal<boolean>;
|
|
462
462
|
readonly readonly: InputSignal<boolean>;
|
|
463
|
+
readonly customStateIcon: InputSignal<KitSvgIcon | undefined>;
|
|
463
464
|
/**
|
|
464
465
|
* An action which is emitted when input field lost focus
|
|
465
466
|
*/
|
|
@@ -495,7 +496,7 @@ declare class KitTextboxComponent implements ControlValueAccessor {
|
|
|
495
496
|
*/
|
|
496
497
|
onInputChange(value: string): void;
|
|
497
498
|
static ɵfac: i0.ɵɵFactoryDeclaration<KitTextboxComponent, never>;
|
|
498
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<KitTextboxComponent, "kit-textbox", never, { "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "labelTooltip": { "alias": "labelTooltip"; "required": false; "isSignal": true; }; "defaultValue": { "alias": "defaultValue"; "required": false; "isSignal": true; }; "messageIcon": { "alias": "messageIcon"; "required": false; "isSignal": true; }; "messageText": { "alias": "messageText"; "required": false; "isSignal": true; }; "messageTemplate": { "alias": "messageTemplate"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "maxlength": { "alias": "maxlength"; "required": false; "isSignal": true; }; "state": { "alias": "state"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "clearButton": { "alias": "clearButton"; "required": false; "isSignal": true; }; "showStateIcon": { "alias": "showStateIcon"; "required": false; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; }, { "defaultValue": "defaultValueChange"; "disabled": "disabledChange"; "blured": "blured"; "focused": "focused"; "changed": "changed"; }, never, never, true, never>;
|
|
499
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KitTextboxComponent, "kit-textbox", never, { "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "labelTooltip": { "alias": "labelTooltip"; "required": false; "isSignal": true; }; "defaultValue": { "alias": "defaultValue"; "required": false; "isSignal": true; }; "messageIcon": { "alias": "messageIcon"; "required": false; "isSignal": true; }; "messageText": { "alias": "messageText"; "required": false; "isSignal": true; }; "messageTemplate": { "alias": "messageTemplate"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "maxlength": { "alias": "maxlength"; "required": false; "isSignal": true; }; "state": { "alias": "state"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "clearButton": { "alias": "clearButton"; "required": false; "isSignal": true; }; "showStateIcon": { "alias": "showStateIcon"; "required": false; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "customStateIcon": { "alias": "customStateIcon"; "required": false; "isSignal": true; }; }, { "defaultValue": "defaultValueChange"; "disabled": "disabledChange"; "blured": "blured"; "focused": "focused"; "changed": "changed"; }, never, never, true, never>;
|
|
499
500
|
}
|
|
500
501
|
|
|
501
502
|
declare class KitTextboxActionsComponent implements OnInit, OnDestroy {
|
|
@@ -1714,6 +1715,83 @@ declare class KitDaterangeComponent {
|
|
|
1714
1715
|
static ɵcmp: i0.ɵɵComponentDeclaration<KitDaterangeComponent, "kit-daterange", never, { "type": { "alias": "type"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "startLabel": { "alias": "startLabel"; "required": false; "isSignal": true; }; "endLabel": { "alias": "endLabel"; "required": false; "isSignal": true; }; "startPlaceholder": { "alias": "startPlaceholder"; "required": false; "isSignal": true; }; "endPlaceholder": { "alias": "endPlaceholder"; "required": false; "isSignal": true; }; "format": { "alias": "format"; "required": false; "isSignal": true; }; "defaultStartDate": { "alias": "defaultStartDate"; "required": false; "isSignal": true; }; "defaultEndDate": { "alias": "defaultEndDate"; "required": false; "isSignal": true; }; "min": { "alias": "min"; "required": false; "isSignal": true; }; "max": { "alias": "max"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "invalid": { "alias": "invalid"; "required": false; "isSignal": true; }; "messageIcon": { "alias": "messageIcon"; "required": false; "isSignal": true; }; "messageText": { "alias": "messageText"; "required": false; "isSignal": true; }; "startDateControl": { "alias": "startDateControl"; "required": false; "isSignal": true; }; "endDateControl": { "alias": "endDateControl"; "required": false; "isSignal": true; }; }, { "defaultStartDate": "defaultStartDateChange"; "defaultEndDate": "defaultEndDateChange"; "disabled": "disabledChange"; "startDateChanged": "startDateChanged"; "closed": "closed"; "endDateChanged": "endDateChanged"; }, never, never, true, never>;
|
|
1715
1716
|
}
|
|
1716
1717
|
|
|
1718
|
+
interface KitPopupAlign {
|
|
1719
|
+
horizontal: KitPopupAlignHorizontal;
|
|
1720
|
+
vertical: KitPopupAlignVertical;
|
|
1721
|
+
}
|
|
1722
|
+
declare enum KitPopupAlignHorizontal {
|
|
1723
|
+
LEFT = "left",
|
|
1724
|
+
CENTER = "center",
|
|
1725
|
+
RIGHT = "right"
|
|
1726
|
+
}
|
|
1727
|
+
declare enum KitPopupAlignVertical {
|
|
1728
|
+
TOP = "top",
|
|
1729
|
+
CENTER = "center",
|
|
1730
|
+
BOTTOM = "bottom"
|
|
1731
|
+
}
|
|
1732
|
+
declare enum KitPopupPositionMode {
|
|
1733
|
+
ABSOLUTE = "absolute",
|
|
1734
|
+
FIXED = "fixed"
|
|
1735
|
+
}
|
|
1736
|
+
|
|
1737
|
+
declare class KitPopupComponent implements OnInit, OnDestroy {
|
|
1738
|
+
private readonly popupService;
|
|
1739
|
+
popupTemplate: TemplateRef<unknown>;
|
|
1740
|
+
readonly anchor: InputSignal<ElementRef | HTMLElement>;
|
|
1741
|
+
readonly content: InputSignal<TemplateRef<unknown>>;
|
|
1742
|
+
readonly closeOnOutsideClick: InputSignal<boolean>;
|
|
1743
|
+
readonly showFooter: InputSignal<boolean>;
|
|
1744
|
+
readonly cancelButtonLabel: InputSignal<string>;
|
|
1745
|
+
readonly applyButtonLabel: InputSignal<string>;
|
|
1746
|
+
readonly isApplyButtonDisabled: InputSignal<boolean>;
|
|
1747
|
+
readonly positionMode: InputSignal<KitPopupPositionMode>;
|
|
1748
|
+
readonly popupClass: InputSignal<string>;
|
|
1749
|
+
readonly closePopupOnCancel: InputSignal<boolean>;
|
|
1750
|
+
readonly extraInsideSelectors: InputSignal<string[]>;
|
|
1751
|
+
readonly cancelAction: OutputEmitterRef<void>;
|
|
1752
|
+
readonly applyAction: OutputEmitterRef<void>;
|
|
1753
|
+
readonly opened: OutputEmitterRef<void>;
|
|
1754
|
+
readonly closed: OutputEmitterRef<void>;
|
|
1755
|
+
readonly kitButtonKind: typeof KitButtonKind;
|
|
1756
|
+
readonly kitButtonType: typeof KitButtonType;
|
|
1757
|
+
private readonly popupRef;
|
|
1758
|
+
get popupHTMLElement(): HTMLElement | null;
|
|
1759
|
+
get isPopupOpen(): boolean;
|
|
1760
|
+
get anchorElement(): HTMLElement;
|
|
1761
|
+
ngOnInit(): void;
|
|
1762
|
+
ngOnDestroy(): void;
|
|
1763
|
+
toggle(options?: PopupSettings$1): void;
|
|
1764
|
+
close(): void;
|
|
1765
|
+
cancel(): void;
|
|
1766
|
+
apply(): void;
|
|
1767
|
+
private addOutsideClickListener;
|
|
1768
|
+
private removeOutsideClickListener;
|
|
1769
|
+
private readonly onDocumentClick;
|
|
1770
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KitPopupComponent, never>;
|
|
1771
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KitPopupComponent, "kit-popup", never, { "anchor": { "alias": "anchor"; "required": true; "isSignal": true; }; "content": { "alias": "content"; "required": true; "isSignal": true; }; "closeOnOutsideClick": { "alias": "closeOnOutsideClick"; "required": false; "isSignal": true; }; "showFooter": { "alias": "showFooter"; "required": false; "isSignal": true; }; "cancelButtonLabel": { "alias": "cancelButtonLabel"; "required": false; "isSignal": true; }; "applyButtonLabel": { "alias": "applyButtonLabel"; "required": false; "isSignal": true; }; "isApplyButtonDisabled": { "alias": "isApplyButtonDisabled"; "required": false; "isSignal": true; }; "positionMode": { "alias": "positionMode"; "required": false; "isSignal": true; }; "popupClass": { "alias": "popupClass"; "required": false; "isSignal": true; }; "closePopupOnCancel": { "alias": "closePopupOnCancel"; "required": false; "isSignal": true; }; "extraInsideSelectors": { "alias": "extraInsideSelectors"; "required": false; "isSignal": true; }; }, { "cancelAction": "cancelAction"; "applyAction": "applyAction"; "opened": "opened"; "closed": "closed"; }, never, never, true, never>;
|
|
1772
|
+
}
|
|
1773
|
+
|
|
1774
|
+
declare class KitDateRangeSingleInput {
|
|
1775
|
+
private readonly datePipe;
|
|
1776
|
+
readonly format: InputSignal<string>;
|
|
1777
|
+
readonly dateRange: ModelSignal<SelectionRange>;
|
|
1778
|
+
readonly placeholder: InputSignal<string>;
|
|
1779
|
+
readonly label: InputSignal<string>;
|
|
1780
|
+
readonly rangeLength: InputSignal<'week' | null>;
|
|
1781
|
+
readonly dateChanged: OutputEmitterRef<SelectionRange>;
|
|
1782
|
+
readonly anchor: Signal<ElementRef>;
|
|
1783
|
+
readonly popup: Signal<KitPopupComponent | undefined>;
|
|
1784
|
+
readonly kitTextboxSize: typeof KitTextboxSize;
|
|
1785
|
+
readonly kitSvgIcon: typeof KitSvgIcon;
|
|
1786
|
+
getDisplayedStringValue(): string;
|
|
1787
|
+
onPopupToggle(): void;
|
|
1788
|
+
selectionRangeChanged({ start, end }: SelectionRange): void;
|
|
1789
|
+
private formatDate;
|
|
1790
|
+
private updateDateRange;
|
|
1791
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KitDateRangeSingleInput, never>;
|
|
1792
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KitDateRangeSingleInput, "kit-daterange-single-input", never, { "format": { "alias": "format"; "required": false; "isSignal": true; }; "dateRange": { "alias": "dateRange"; "required": true; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "rangeLength": { "alias": "rangeLength"; "required": false; "isSignal": true; }; }, { "dateRange": "dateRangeChange"; "dateChanged": "dateChanged"; }, never, never, true, never>;
|
|
1793
|
+
}
|
|
1794
|
+
|
|
1717
1795
|
interface KitCtaPanelItem {
|
|
1718
1796
|
title: string;
|
|
1719
1797
|
buttonText?: string;
|
|
@@ -2388,62 +2466,6 @@ declare class KitMultiselectComponent<T> implements ControlValueAccessor, OnInit
|
|
|
2388
2466
|
static ɵcmp: i0.ɵɵComponentDeclaration<KitMultiselectComponent<any>, "kit-multiselect", never, { "items": { "alias": "items"; "required": false; }; "selectedItems": { "alias": "selectedItems"; "required": false; }; "label": { "alias": "label"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "autoClose": { "alias": "autoClose"; "required": false; }; "messageIcon": { "alias": "messageIcon"; "required": false; }; "messageText": { "alias": "messageText"; "required": false; }; "shouldAddAllAsOption": { "alias": "shouldAddAllAsOption"; "required": false; "isSignal": true; }; "allOptionLabel": { "alias": "allOptionLabel"; "required": false; "isSignal": true; }; "tagMapper": { "alias": "tagMapper"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "useCheckboxes": { "alias": "useCheckboxes"; "required": false; "isSignal": true; }; "popupClass": { "alias": "popupClass"; "required": false; "isSignal": true; }; "listHeight": { "alias": "listHeight"; "required": false; "isSignal": true; }; }, { "changed": "changed"; }, never, never, true, never>;
|
|
2389
2467
|
}
|
|
2390
2468
|
|
|
2391
|
-
interface KitPopupAlign {
|
|
2392
|
-
horizontal: KitPopupAlignHorizontal;
|
|
2393
|
-
vertical: KitPopupAlignVertical;
|
|
2394
|
-
}
|
|
2395
|
-
declare enum KitPopupAlignHorizontal {
|
|
2396
|
-
LEFT = "left",
|
|
2397
|
-
CENTER = "center",
|
|
2398
|
-
RIGHT = "right"
|
|
2399
|
-
}
|
|
2400
|
-
declare enum KitPopupAlignVertical {
|
|
2401
|
-
TOP = "top",
|
|
2402
|
-
CENTER = "center",
|
|
2403
|
-
BOTTOM = "bottom"
|
|
2404
|
-
}
|
|
2405
|
-
declare enum KitPopupPositionMode {
|
|
2406
|
-
ABSOLUTE = "absolute",
|
|
2407
|
-
FIXED = "fixed"
|
|
2408
|
-
}
|
|
2409
|
-
|
|
2410
|
-
declare class KitPopupComponent implements OnInit, OnDestroy {
|
|
2411
|
-
private readonly popupService;
|
|
2412
|
-
popupTemplate: TemplateRef<unknown>;
|
|
2413
|
-
readonly anchor: InputSignal<ElementRef | HTMLElement>;
|
|
2414
|
-
readonly content: InputSignal<TemplateRef<unknown>>;
|
|
2415
|
-
readonly closeOnOutsideClick: InputSignal<boolean>;
|
|
2416
|
-
readonly showFooter: InputSignal<boolean>;
|
|
2417
|
-
readonly cancelButtonLabel: InputSignal<string>;
|
|
2418
|
-
readonly applyButtonLabel: InputSignal<string>;
|
|
2419
|
-
readonly isApplyButtonDisabled: InputSignal<boolean>;
|
|
2420
|
-
readonly positionMode: InputSignal<KitPopupPositionMode>;
|
|
2421
|
-
readonly popupClass: InputSignal<string>;
|
|
2422
|
-
readonly closePopupOnCancel: InputSignal<boolean>;
|
|
2423
|
-
readonly extraInsideSelectors: InputSignal<string[]>;
|
|
2424
|
-
readonly cancelAction: OutputEmitterRef<void>;
|
|
2425
|
-
readonly applyAction: OutputEmitterRef<void>;
|
|
2426
|
-
readonly opened: OutputEmitterRef<void>;
|
|
2427
|
-
readonly closed: OutputEmitterRef<void>;
|
|
2428
|
-
readonly kitButtonKind: typeof KitButtonKind;
|
|
2429
|
-
readonly kitButtonType: typeof KitButtonType;
|
|
2430
|
-
private readonly popupRef;
|
|
2431
|
-
get popupHTMLElement(): HTMLElement | null;
|
|
2432
|
-
get isPopupOpen(): boolean;
|
|
2433
|
-
get anchorElement(): HTMLElement;
|
|
2434
|
-
ngOnInit(): void;
|
|
2435
|
-
ngOnDestroy(): void;
|
|
2436
|
-
toggle(options?: PopupSettings$1): void;
|
|
2437
|
-
close(): void;
|
|
2438
|
-
cancel(): void;
|
|
2439
|
-
apply(): void;
|
|
2440
|
-
private addOutsideClickListener;
|
|
2441
|
-
private removeOutsideClickListener;
|
|
2442
|
-
private readonly onDocumentClick;
|
|
2443
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<KitPopupComponent, never>;
|
|
2444
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<KitPopupComponent, "kit-popup", never, { "anchor": { "alias": "anchor"; "required": true; "isSignal": true; }; "content": { "alias": "content"; "required": true; "isSignal": true; }; "closeOnOutsideClick": { "alias": "closeOnOutsideClick"; "required": false; "isSignal": true; }; "showFooter": { "alias": "showFooter"; "required": false; "isSignal": true; }; "cancelButtonLabel": { "alias": "cancelButtonLabel"; "required": false; "isSignal": true; }; "applyButtonLabel": { "alias": "applyButtonLabel"; "required": false; "isSignal": true; }; "isApplyButtonDisabled": { "alias": "isApplyButtonDisabled"; "required": false; "isSignal": true; }; "positionMode": { "alias": "positionMode"; "required": false; "isSignal": true; }; "popupClass": { "alias": "popupClass"; "required": false; "isSignal": true; }; "closePopupOnCancel": { "alias": "closePopupOnCancel"; "required": false; "isSignal": true; }; "extraInsideSelectors": { "alias": "extraInsideSelectors"; "required": false; "isSignal": true; }; }, { "cancelAction": "cancelAction"; "applyAction": "applyAction"; "opened": "opened"; "closed": "closed"; }, never, never, true, never>;
|
|
2445
|
-
}
|
|
2446
|
-
|
|
2447
2469
|
declare class KitInputLabelComponent {
|
|
2448
2470
|
/**
|
|
2449
2471
|
* Defines the text content of the label
|
|
@@ -4888,5 +4910,5 @@ declare class KitBackButtonComponent {
|
|
|
4888
4910
|
static ɵcmp: i0.ɵɵComponentDeclaration<KitBackButtonComponent, "kit-back-button", never, { "backUrl": { "alias": "backUrl"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
4889
4911
|
}
|
|
4890
4912
|
|
|
4891
|
-
export { AbstractKitCtaPanelConfirmationComponent, AddGridFilter, FetchApiTokens, FetchUser, FetchUserIdentities, FetchUserPermissions, FetchUserSettings, HighlightPipe, KIT_API_TOKENS_STATE_TOKEN, KIT_BASE_PATH, KIT_DATETIME_FORMAT_LONG, KIT_DATE_FORMAT, KIT_GRID_CELL_DATE_FORMAT_CONFIG, KIT_GRID_COLUMN_WIDTH, KIT_GRID_PAGE_SIZE, KIT_GRID_STATE_TOKEN, KIT_TIME_FORMAT_SHORT, KIT_USER_APPLICATIONS_PATH, KIT_USER_IDENTITIES_STATE_TOKEN, KIT_USER_PATH, KIT_USER_PERMISSIONS_PATH, KIT_USER_PERMISSIONS_STATE_TOKEN, KIT_USER_STATE_TOKEN, KitAbstractIdPayloadAction, KitAbstractPayloadAction, KitAccountService, KitApiTokenMaintenanceListComponent, KitApiTokenMaintenanceListState, KitApiTokensPermissionCategories, KitAutocompleteComponent, KitAutocompleteDirective, KitAvatarComponent, KitAvatarSize, KitBackButtonComponent, KitBadgeDirective, KitBadgeTheme, KitBreadcrumbsComponent, KitBreadcrumbsService, KitButtonComponent, KitButtonIconPosition, KitButtonKind, KitButtonState, KitButtonType, KitCardComponent, KitCardDetailsComponent, KitCardTheme, KitCheckboxComponent, KitCheckboxState, KitClipboardService, KitCollapsedListComponent, KitCollapsedListDropdownAlign, KitCopyTextComponent, KitCtaPanelAbstractConfirmationComponent, KitCtaPanelActionComponent, KitCtaPanelConfirmationComponent, KitCtaPanelItemComponent, KitCtaPanelItemType, KitDataFieldComponent, KitDataFieldState, KitDatepickerComponent, KitDatepickerSize, KitDaterangeComponent, KitDaterangeType, KitDatetimepickerComponent, KitDeferredFailedRequestService, KitDialogActionsComponent, KitDialogComponent, KitDialogService, KitDialogTitlebarComponent, KitDialogType, KitDrawerComponent, KitDrawerContentTemplateDirective, KitDrawerFooterTemplateDirective, KitDropdownComponent, KitDropdownItemTemplateDirective, KitDropdownSize, KitEmptySectionComponent, KitEntityGridComponent, KitEntitySectionComponent, KitEntitySectionContainerComponent, KitEntitySectionEditableComponent, KitEntitySectionEditableEditTemplateDirective, KitEntitySectionEditableMode, KitEntitySectionEditableViewTemplateDirective, KitEntityTitleComponent, KitFileCardComponent, KitFileCardMessagesComponent, KitFileUploadComponent, KitFilterCheckboxComponent, KitFilterDateRange, KitFilterLogic, KitFilterOperator, KitFilterType, KitForbiddenComponent, KitFormErrors, KitGlobalSearchComponent, KitGridArchiveToggle, KitGridCellComponent, KitGridCellService, KitGridCellTemplateDirective, KitGridColumnComponent, KitGridColumnManagerComponent, KitGridComponent, KitGridDetailTemplateDirective, KitGridDetailsButtonComponent, KitGridExportComponent, KitGridFiltersComponent, KitGridLiveUpdatesControlComponent, KitGridSearchComponent, KitGridSortSettingsMode, KitGridState, KitGridUrlStateService, KitGridViewType, KitGridViewsComponent, KitGridViewsState, KitInputLabelComponent, KitInputMessageComponent, KitListComponent, KitLoaderComponent, KitLocationStepperComponent, KitMobileHeaderComponent, KitMobileMenuComponent, KitMobileMenuState, KitMultiselectComponent, KitMultiselectSize, KitNavigationMenuComponent, KitNavigationMenuService, KitNavigationMenuSubmenuComponent, KitNavigationTabsComponent, KitNavigationTabsType, KitNotFoundComponent, KitNoteComponent, KitNotificationComponent, KitNotificationService, KitNotificationType, KitNumericTextboxComponent, KitNumericTextboxSize, KitNumericTextboxState, KitOptionToggleComponent, KitPageLayoutComponent, KitPermissionDirective, KitPillComponent, KitPillTheme, KitPillType, KitPopupAlignHorizontal, KitPopupAlignVertical, KitPopupComponent, KitPopupPositionMode, KitProfileMenuComponent, KitQueryParamsName, KitQueryParamsService, KitRadioButtonComponent, KitRadioButtonType, KitRoutePathComponent, KitSchedulerAgendaTimeTemplateDirective, KitSchedulerComponent, KitSchedulerCustomViewTemplateDirective, KitSchedulerMonthEventTemplateDirective, KitSchedulerMonthHeaderCellTemplateDirective, KitSchedulerWeekEventTemplateDirective, KitScrollNavigationComponent, KitScrollNavigationSectionComponent, KitSearchBarComponent, KitSidebarComponent, KitSkeletonAnimation, KitSkeletonComponent, KitSkeletonGridComponent, KitSkeletonShape, KitSortDirection, KitSortableComponent, KitSplitContainerComponent, KitStatusLabelColor, KitStatusLabelComponent, KitStatusLabelSize, KitSvgIcon, KitSvgIconComponent, KitSvgIconType, KitSvgSpriteComponent, KitSwitchComponent, KitSwitchMode, KitSwitchState, KitTabComponent, KitTabContentDirective, KitTabsComponent, KitTabsSize, KitTabsType, KitTextLabelComponent, KitTextLabelState, KitTextareaAutoresizeDirective, KitTextareaComponent, KitTextareaState, KitTextboxActionsComponent, KitTextboxComponent, KitTextboxSize, KitTextboxState, KitThemeService, KitThemes, KitTileLayoutComponent, KitTileLayoutItemComponent, KitTimelineCardComponent, KitTimelineComponent, KitTimelineTheme, KitTimelineType, KitTimepickerComponent, KitTitleTemplateDirective, KitToastrModule, KitToastrPosition, KitToastrService, KitToastrType, KitToggleComponent, KitToggleSize, KitTooltipDirective, KitTooltipPosition, KitTopBarComponent, KitTrackingCardComponent, KitTrackingTimelineComponent, KitTranslateLoader, KitTranslateService, KitTruncateTextComponent, KitUnitsTextboxComponent, KitUnitsTextboxDropdownPosition, KitUnitsTextboxType, KitUserApplicationsState, KitUserIdentitiesInterceptor, KitUserIdentitiesSelector, KitUserIdentitiesState, KitUserPermissionsState, KitUserSettingsComponent, KitUserSettingsKeys, KitUserSettingsState, KitUserState, KitUserType, RemoveGridFilter, SetGridColumns, SetGridFilters, SetGridSearch, SetGridSkip, SetGridSort, SetGridTake, SetUserIdentity, UpdateGridFilter, buildRandomUUID, changeFilterField, createDataFetcherFactory, findMatches, isKitFilterDescriptor, kitApiResponseDefaultEntities, kitApiTokenMaintenanceConfig, kitApiTokenMaintenanceRoutes, kitBuildFilterBooleanOptions, kitBuildFilterListOptions, kitBuildFilters, kitBuildGridColumn, kitBuildGridDataResults, kitBuildHttpParams, kitBuildOdataFilter, kitBuildSortString, kitConvertDateToUTC, kitDataStateToODataString, kitEncodeViewNameToUrl, kitExportExcel, kitFetchExportGridData, kitFetchGridData, kitFilterBy, kitFormatStringForSearch, kitGetPermissionTypesByCategory, kitHasPermission, kitTranslations, kitUserPermissionsGuard, mapGlobalSearchResult, trimTrailingSlash };
|
|
4913
|
+
export { AbstractKitCtaPanelConfirmationComponent, AddGridFilter, FetchApiTokens, FetchUser, FetchUserIdentities, FetchUserPermissions, FetchUserSettings, HighlightPipe, KIT_API_TOKENS_STATE_TOKEN, KIT_BASE_PATH, KIT_DATETIME_FORMAT_LONG, KIT_DATE_FORMAT, KIT_GRID_CELL_DATE_FORMAT_CONFIG, KIT_GRID_COLUMN_WIDTH, KIT_GRID_PAGE_SIZE, KIT_GRID_STATE_TOKEN, KIT_TIME_FORMAT_SHORT, KIT_USER_APPLICATIONS_PATH, KIT_USER_IDENTITIES_STATE_TOKEN, KIT_USER_PATH, KIT_USER_PERMISSIONS_PATH, KIT_USER_PERMISSIONS_STATE_TOKEN, KIT_USER_STATE_TOKEN, KitAbstractIdPayloadAction, KitAbstractPayloadAction, KitAccountService, KitApiTokenMaintenanceListComponent, KitApiTokenMaintenanceListState, KitApiTokensPermissionCategories, KitAutocompleteComponent, KitAutocompleteDirective, KitAvatarComponent, KitAvatarSize, KitBackButtonComponent, KitBadgeDirective, KitBadgeTheme, KitBreadcrumbsComponent, KitBreadcrumbsService, KitButtonComponent, KitButtonIconPosition, KitButtonKind, KitButtonState, KitButtonType, KitCardComponent, KitCardDetailsComponent, KitCardTheme, KitCheckboxComponent, KitCheckboxState, KitClipboardService, KitCollapsedListComponent, KitCollapsedListDropdownAlign, KitCopyTextComponent, KitCtaPanelAbstractConfirmationComponent, KitCtaPanelActionComponent, KitCtaPanelConfirmationComponent, KitCtaPanelItemComponent, KitCtaPanelItemType, KitDataFieldComponent, KitDataFieldState, KitDateRangeSingleInput, KitDatepickerComponent, KitDatepickerSize, KitDaterangeComponent, KitDaterangeType, KitDatetimepickerComponent, KitDeferredFailedRequestService, KitDialogActionsComponent, KitDialogComponent, KitDialogService, KitDialogTitlebarComponent, KitDialogType, KitDrawerComponent, KitDrawerContentTemplateDirective, KitDrawerFooterTemplateDirective, KitDropdownComponent, KitDropdownItemTemplateDirective, KitDropdownSize, KitEmptySectionComponent, KitEntityGridComponent, KitEntitySectionComponent, KitEntitySectionContainerComponent, KitEntitySectionEditableComponent, KitEntitySectionEditableEditTemplateDirective, KitEntitySectionEditableMode, KitEntitySectionEditableViewTemplateDirective, KitEntityTitleComponent, KitFileCardComponent, KitFileCardMessagesComponent, KitFileUploadComponent, KitFilterCheckboxComponent, KitFilterDateRange, KitFilterLogic, KitFilterOperator, KitFilterType, KitForbiddenComponent, KitFormErrors, KitGlobalSearchComponent, KitGridArchiveToggle, KitGridCellComponent, KitGridCellService, KitGridCellTemplateDirective, KitGridColumnComponent, KitGridColumnManagerComponent, KitGridComponent, KitGridDetailTemplateDirective, KitGridDetailsButtonComponent, KitGridExportComponent, KitGridFiltersComponent, KitGridLiveUpdatesControlComponent, KitGridSearchComponent, KitGridSortSettingsMode, KitGridState, KitGridUrlStateService, KitGridViewType, KitGridViewsComponent, KitGridViewsState, KitInputLabelComponent, KitInputMessageComponent, KitListComponent, KitLoaderComponent, KitLocationStepperComponent, KitMobileHeaderComponent, KitMobileMenuComponent, KitMobileMenuState, KitMultiselectComponent, KitMultiselectSize, KitNavigationMenuComponent, KitNavigationMenuService, KitNavigationMenuSubmenuComponent, KitNavigationTabsComponent, KitNavigationTabsType, KitNotFoundComponent, KitNoteComponent, KitNotificationComponent, KitNotificationService, KitNotificationType, KitNumericTextboxComponent, KitNumericTextboxSize, KitNumericTextboxState, KitOptionToggleComponent, KitPageLayoutComponent, KitPermissionDirective, KitPillComponent, KitPillTheme, KitPillType, KitPopupAlignHorizontal, KitPopupAlignVertical, KitPopupComponent, KitPopupPositionMode, KitProfileMenuComponent, KitQueryParamsName, KitQueryParamsService, KitRadioButtonComponent, KitRadioButtonType, KitRoutePathComponent, KitSchedulerAgendaTimeTemplateDirective, KitSchedulerComponent, KitSchedulerCustomViewTemplateDirective, KitSchedulerMonthEventTemplateDirective, KitSchedulerMonthHeaderCellTemplateDirective, KitSchedulerWeekEventTemplateDirective, KitScrollNavigationComponent, KitScrollNavigationSectionComponent, KitSearchBarComponent, KitSidebarComponent, KitSkeletonAnimation, KitSkeletonComponent, KitSkeletonGridComponent, KitSkeletonShape, KitSortDirection, KitSortableComponent, KitSplitContainerComponent, KitStatusLabelColor, KitStatusLabelComponent, KitStatusLabelSize, KitSvgIcon, KitSvgIconComponent, KitSvgIconType, KitSvgSpriteComponent, KitSwitchComponent, KitSwitchMode, KitSwitchState, KitTabComponent, KitTabContentDirective, KitTabsComponent, KitTabsSize, KitTabsType, KitTextLabelComponent, KitTextLabelState, KitTextareaAutoresizeDirective, KitTextareaComponent, KitTextareaState, KitTextboxActionsComponent, KitTextboxComponent, KitTextboxSize, KitTextboxState, KitThemeService, KitThemes, KitTileLayoutComponent, KitTileLayoutItemComponent, KitTimelineCardComponent, KitTimelineComponent, KitTimelineTheme, KitTimelineType, KitTimepickerComponent, KitTitleTemplateDirective, KitToastrModule, KitToastrPosition, KitToastrService, KitToastrType, KitToggleComponent, KitToggleSize, KitTooltipDirective, KitTooltipPosition, KitTopBarComponent, KitTrackingCardComponent, KitTrackingTimelineComponent, KitTranslateLoader, KitTranslateService, KitTruncateTextComponent, KitUnitsTextboxComponent, KitUnitsTextboxDropdownPosition, KitUnitsTextboxType, KitUserApplicationsState, KitUserIdentitiesInterceptor, KitUserIdentitiesSelector, KitUserIdentitiesState, KitUserPermissionsState, KitUserSettingsComponent, KitUserSettingsKeys, KitUserSettingsState, KitUserState, KitUserType, RemoveGridFilter, SetGridColumns, SetGridFilters, SetGridSearch, SetGridSkip, SetGridSort, SetGridTake, SetUserIdentity, UpdateGridFilter, buildRandomUUID, changeFilterField, createDataFetcherFactory, findMatches, isKitFilterDescriptor, kitApiResponseDefaultEntities, kitApiTokenMaintenanceConfig, kitApiTokenMaintenanceRoutes, kitBuildFilterBooleanOptions, kitBuildFilterListOptions, kitBuildFilters, kitBuildGridColumn, kitBuildGridDataResults, kitBuildHttpParams, kitBuildOdataFilter, kitBuildSortString, kitConvertDateToUTC, kitDataStateToODataString, kitEncodeViewNameToUrl, kitExportExcel, kitFetchExportGridData, kitFetchGridData, kitFilterBy, kitFormatStringForSearch, kitGetPermissionTypesByCategory, kitHasPermission, kitTranslations, kitUserPermissionsGuard, mapGlobalSearchResult, trimTrailingSlash };
|
|
4892
4914
|
export type { GlobalSearchFilter, GlobalSearchLineItem, GlobalSearchPrompt, GlobalSearchResult, GlobalSearchRouteConfig, GlobalSearchSelectedFilter, KitApiResponseState, KitApiTokenMaintenanceConfig, KitAutocompleteItem, KitBreadcrumbsItem, KitCard, KitCardDetailsState, KitCardItem, KitCardLink, KitCollapsedListItem, KitCompositeFilterDescriptor, KitCtaPanelConfirmation, KitCtaPanelConfirmationValue, KitCtaPanelCopyItem, KitCtaPanelItem, KitCurrentUser, KitDataResult, KitDataState, KitDaterangeValue, KitDropdownItem, KitFetchExportGridData, KitFetchGridDataOptions, KitFileUploadFile, KitFileUploadFileRestrictions, KitFileUploadFileRestrictionsMessages, KitFilterDescriptor, KitFilterItem, KitFilterListConfig, KitFilterListOption, KitFilterValue, KitGridCellClickEvent, KitGridCellTranslationMap, KitGridColumn, KitGridColumnConfig, KitGridColumns, KitGridDataResult, KitGridDataState, KitGridDataStateChangeEvent, KitGridDetailCollapseEvent, KitGridDetailExpandEvent, KitGridPageChangeEvent, KitGridRowClassArgs, KitGridSortSettings, KitGridView, KitGridViewColumn, KitKendoDrawPdf, KitLocationStepperItem, KitLocationStepperItemDate, KitMainMenuItem, KitMobileMenuItem, KitMultiselectItem, KitNavigationMenuAppItem, KitNavigationMenuItem, KitNavigationTabsItem, KitNavigationTabsItemLink, KitOptionToggleOption, KitPDFOptions, KitPermission, KitPopupAlign, KitProfileMenuItem, KitQueryParams, KitRadioButton, KitResetState, KitScheduleDateChangeEvent, KitScheduleEventClickEvent, KitScheduleNavigateEvent, KitScheduleSlotClickEvent, KitSchedulerAgendaViewSettings, KitSchedulerEvent, KitSchedulerViewModes, KitSchedulerViewModesSettings, KitSortDescriptor, KitSwitchItem, KitSwitchItemSelection, KitTabsSelectEvent, KitTileLayoutColumnsConfig, KitTimelineItem, KitTimelineItemDate, KitToastrConfig, KitTrackingCardTabs, KitTrackingTimelineItem, KitUser, KitUserCapabilities, KitUserIdentities, KitUserIdentity, KitUserMenuItem, KitUserPermissions, KitUserSettings };
|