@indigina/ui-kit 1.1.401 → 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 +285 -184
- 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 +94 -64
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,21 +1,22 @@
|
|
|
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';
|
|
18
18
|
import { PDFOptions, PaperSize } from '@progress/kendo-drawing/dist/npm/pdf';
|
|
19
|
+
import { StateReset } from 'ngxs-reset-plugin';
|
|
19
20
|
import { Store, StateToken, StateContext } from '@ngxs/store';
|
|
20
21
|
import { DataMoveEvent } from '@progress/kendo-angular-sortable';
|
|
21
22
|
import { TranslationObject, TranslateService, TranslateLoader } from '@ngx-translate/core';
|
|
@@ -459,6 +460,7 @@ declare class KitTextboxComponent implements ControlValueAccessor {
|
|
|
459
460
|
readonly clearButton: InputSignal<boolean>;
|
|
460
461
|
readonly showStateIcon: InputSignal<boolean>;
|
|
461
462
|
readonly readonly: InputSignal<boolean>;
|
|
463
|
+
readonly customStateIcon: InputSignal<KitSvgIcon | undefined>;
|
|
462
464
|
/**
|
|
463
465
|
* An action which is emitted when input field lost focus
|
|
464
466
|
*/
|
|
@@ -494,7 +496,7 @@ declare class KitTextboxComponent implements ControlValueAccessor {
|
|
|
494
496
|
*/
|
|
495
497
|
onInputChange(value: string): void;
|
|
496
498
|
static ɵfac: i0.ɵɵFactoryDeclaration<KitTextboxComponent, never>;
|
|
497
|
-
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>;
|
|
498
500
|
}
|
|
499
501
|
|
|
500
502
|
declare class KitTextboxActionsComponent implements OnInit, OnDestroy {
|
|
@@ -1713,6 +1715,83 @@ declare class KitDaterangeComponent {
|
|
|
1713
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>;
|
|
1714
1716
|
}
|
|
1715
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
|
+
|
|
1716
1795
|
interface KitCtaPanelItem {
|
|
1717
1796
|
title: string;
|
|
1718
1797
|
buttonText?: string;
|
|
@@ -2387,62 +2466,6 @@ declare class KitMultiselectComponent<T> implements ControlValueAccessor, OnInit
|
|
|
2387
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>;
|
|
2388
2467
|
}
|
|
2389
2468
|
|
|
2390
|
-
interface KitPopupAlign {
|
|
2391
|
-
horizontal: KitPopupAlignHorizontal;
|
|
2392
|
-
vertical: KitPopupAlignVertical;
|
|
2393
|
-
}
|
|
2394
|
-
declare enum KitPopupAlignHorizontal {
|
|
2395
|
-
LEFT = "left",
|
|
2396
|
-
CENTER = "center",
|
|
2397
|
-
RIGHT = "right"
|
|
2398
|
-
}
|
|
2399
|
-
declare enum KitPopupAlignVertical {
|
|
2400
|
-
TOP = "top",
|
|
2401
|
-
CENTER = "center",
|
|
2402
|
-
BOTTOM = "bottom"
|
|
2403
|
-
}
|
|
2404
|
-
declare enum KitPopupPositionMode {
|
|
2405
|
-
ABSOLUTE = "absolute",
|
|
2406
|
-
FIXED = "fixed"
|
|
2407
|
-
}
|
|
2408
|
-
|
|
2409
|
-
declare class KitPopupComponent implements OnInit, OnDestroy {
|
|
2410
|
-
private readonly popupService;
|
|
2411
|
-
popupTemplate: TemplateRef<unknown>;
|
|
2412
|
-
readonly anchor: InputSignal<ElementRef | HTMLElement>;
|
|
2413
|
-
readonly content: InputSignal<TemplateRef<unknown>>;
|
|
2414
|
-
readonly closeOnOutsideClick: InputSignal<boolean>;
|
|
2415
|
-
readonly showFooter: InputSignal<boolean>;
|
|
2416
|
-
readonly cancelButtonLabel: InputSignal<string>;
|
|
2417
|
-
readonly applyButtonLabel: InputSignal<string>;
|
|
2418
|
-
readonly isApplyButtonDisabled: InputSignal<boolean>;
|
|
2419
|
-
readonly positionMode: InputSignal<KitPopupPositionMode>;
|
|
2420
|
-
readonly popupClass: InputSignal<string>;
|
|
2421
|
-
readonly closePopupOnCancel: InputSignal<boolean>;
|
|
2422
|
-
readonly extraInsideSelectors: InputSignal<string[]>;
|
|
2423
|
-
readonly cancelAction: OutputEmitterRef<void>;
|
|
2424
|
-
readonly applyAction: OutputEmitterRef<void>;
|
|
2425
|
-
readonly opened: OutputEmitterRef<void>;
|
|
2426
|
-
readonly closed: OutputEmitterRef<void>;
|
|
2427
|
-
readonly kitButtonKind: typeof KitButtonKind;
|
|
2428
|
-
readonly kitButtonType: typeof KitButtonType;
|
|
2429
|
-
private readonly popupRef;
|
|
2430
|
-
get popupHTMLElement(): HTMLElement | null;
|
|
2431
|
-
get isPopupOpen(): boolean;
|
|
2432
|
-
get anchorElement(): HTMLElement;
|
|
2433
|
-
ngOnInit(): void;
|
|
2434
|
-
ngOnDestroy(): void;
|
|
2435
|
-
toggle(options?: PopupSettings$1): void;
|
|
2436
|
-
close(): void;
|
|
2437
|
-
cancel(): void;
|
|
2438
|
-
apply(): void;
|
|
2439
|
-
private addOutsideClickListener;
|
|
2440
|
-
private removeOutsideClickListener;
|
|
2441
|
-
private readonly onDocumentClick;
|
|
2442
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<KitPopupComponent, never>;
|
|
2443
|
-
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>;
|
|
2444
|
-
}
|
|
2445
|
-
|
|
2446
2469
|
declare class KitInputLabelComponent {
|
|
2447
2470
|
/**
|
|
2448
2471
|
* Defines the text content of the label
|
|
@@ -2868,6 +2891,7 @@ interface KitPDFOptions extends PDFOptions {
|
|
|
2868
2891
|
paperSize?: PaperSize;
|
|
2869
2892
|
}
|
|
2870
2893
|
type KitGridRowClassArgs = RowClassArgs;
|
|
2894
|
+
type KitResetState = ConstructorParameters<typeof StateReset>[0];
|
|
2871
2895
|
|
|
2872
2896
|
declare class KitGridComponent<T> {
|
|
2873
2897
|
private readonly translateService;
|
|
@@ -3817,6 +3841,8 @@ declare class KitGridViewsComponent implements OnInit, OnDestroy {
|
|
|
3817
3841
|
readonly needToResetQueryParams: WritableSignal<boolean>;
|
|
3818
3842
|
readonly userPermissions: Signal<KitUserPermissions>;
|
|
3819
3843
|
readonly allowedSystemViews: Signal<KitGridView[]>;
|
|
3844
|
+
private readonly gridState;
|
|
3845
|
+
private isFirstChange;
|
|
3820
3846
|
ngOnInit(): void;
|
|
3821
3847
|
ngOnDestroy(): void;
|
|
3822
3848
|
get isViewNameValid(): boolean;
|
|
@@ -3837,6 +3863,7 @@ declare class KitGridViewsComponent implements OnInit, OnDestroy {
|
|
|
3837
3863
|
private navigateToView;
|
|
3838
3864
|
private buildGridState;
|
|
3839
3865
|
private buildUrlParamsFromView;
|
|
3866
|
+
private shouldEmitChanges;
|
|
3840
3867
|
static ɵfac: i0.ɵɵFactoryDeclaration<KitGridViewsComponent, never>;
|
|
3841
3868
|
static ɵcmp: i0.ɵɵComponentDeclaration<KitGridViewsComponent, "kit-grid-views", never, { "viewGroup": { "alias": "viewGroup"; "required": true; "isSignal": true; }; "viewConfigGroup": { "alias": "viewConfigGroup"; "required": true; "isSignal": true; }; "defaultColumns": { "alias": "defaultColumns"; "required": true; "isSignal": true; }; "defaultViewName": { "alias": "defaultViewName"; "required": true; "isSignal": true; }; "defaultSorting": { "alias": "defaultSorting"; "required": true; "isSignal": true; }; "systemViews": { "alias": "systemViews"; "required": true; "isSignal": true; }; }, { "viewChanged": "viewChanged"; }, never, never, true, never>;
|
|
3842
3869
|
}
|
|
@@ -4135,10 +4162,12 @@ declare const KIT_DATE_FORMAT: string;
|
|
|
4135
4162
|
declare const KIT_DATETIME_FORMAT_LONG: string;
|
|
4136
4163
|
declare const KIT_TIME_FORMAT_SHORT: string;
|
|
4137
4164
|
|
|
4138
|
-
declare class KitEntityGridComponent<T> {
|
|
4165
|
+
declare class KitEntityGridComponent<T> implements OnDestroy {
|
|
4139
4166
|
private readonly store;
|
|
4140
4167
|
private readonly kitBreadcrumbsService;
|
|
4141
4168
|
private readonly kitGridUrlStateService;
|
|
4169
|
+
readonly resetOnDestroy: InputSignal<boolean>;
|
|
4170
|
+
readonly statesToReset: InputSignal<KitResetState[]>;
|
|
4142
4171
|
readonly gridData: InputSignal<KitGridDataResult<T> | null>;
|
|
4143
4172
|
readonly title: InputSignal<string>;
|
|
4144
4173
|
readonly gridColumns: InputSignal<KitGridColumnConfig[]>;
|
|
@@ -4189,6 +4218,7 @@ declare class KitEntityGridComponent<T> {
|
|
|
4189
4218
|
readonly isExporting: WritableSignal<boolean>;
|
|
4190
4219
|
readonly archiveModeEnabled: WritableSignal<boolean>;
|
|
4191
4220
|
constructor();
|
|
4221
|
+
ngOnDestroy(): void;
|
|
4192
4222
|
onPageSizeChanged(event: KitGridPageChangeEvent): void;
|
|
4193
4223
|
onFiltersToggle(): void;
|
|
4194
4224
|
onGridViewChange(): void;
|
|
@@ -4197,7 +4227,7 @@ declare class KitEntityGridComponent<T> {
|
|
|
4197
4227
|
isSearchDisabled(): boolean;
|
|
4198
4228
|
onRefreshButtonClick(): void;
|
|
4199
4229
|
static ɵfac: i0.ɵɵFactoryDeclaration<KitEntityGridComponent<any>, never>;
|
|
4200
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<KitEntityGridComponent<any>, "kit-entity-grid", never, { "gridData": { "alias": "gridData"; "required": true; "isSignal": true; }; "title": { "alias": "title"; "required": true; "isSignal": true; }; "gridColumns": { "alias": "gridColumns"; "required": true; "isSignal": true; }; "defaultViewName": { "alias": "defaultViewName"; "required": true; "isSignal": true; }; "viewGroup": { "alias": "viewGroup"; "required": true; "isSignal": true; }; "viewGroupConfig": { "alias": "viewGroupConfig"; "required": true; "isSignal": true; }; "pdfOptions": { "alias": "pdfOptions"; "required": true; "isSignal": true; }; "getExportedData": { "alias": "getExportedData"; "required": true; "isSignal": true; }; "defaultSorting": { "alias": "defaultSorting"; "required": false; "isSignal": true; }; "filterExcludedColumns": { "alias": "filterExcludedColumns"; "required": false; "isSignal": true; }; "systemViews": { "alias": "systemViews"; "required": false; "isSignal": true; }; "translationMap": { "alias": "translationMap"; "required": false; "isSignal": true; }; "isDetailTemplateVisible": { "alias": "isDetailTemplateVisible"; "required": false; "isSignal": true; }; "detailTemplateExpandDisableIf": { "alias": "detailTemplateExpandDisableIf"; "required": false; "isSignal": true; }; "gridHasData": { "alias": "gridHasData"; "required": false; "isSignal": true; }; "isLoading": { "alias": "isLoading"; "required": false; "isSignal": true; }; "pagerInfoText": { "alias": "pagerInfoText"; "required": false; "isSignal": true; }; "showBreadcrumbs": { "alias": "showBreadcrumbs"; "required": false; "isSignal": true; }; "pageSizes": { "alias": "pageSizes"; "required": false; "isSignal": true; }; "rowClassFn": { "alias": "rowClassFn"; "required": false; "isSignal": true; }; "showArchiveToggle": { "alias": "showArchiveToggle"; "required": false; "isSignal": true; }; "showRefreshButton": { "alias": "showRefreshButton"; "required": false; "isSignal": true; }; }, { "gridViewChanged": "gridViewChanged"; "archiveModeChanged": "archiveModeChanged"; "refreshButtonClicked": "refreshButtonClicked"; }, ["columns", "gridDetailTemplate"], ["[headerActions]", "[filters]", "[post-header-content]", "[footerActions]"], true, never>;
|
|
4230
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KitEntityGridComponent<any>, "kit-entity-grid", never, { "resetOnDestroy": { "alias": "resetOnDestroy"; "required": false; "isSignal": true; }; "statesToReset": { "alias": "statesToReset"; "required": false; "isSignal": true; }; "gridData": { "alias": "gridData"; "required": true; "isSignal": true; }; "title": { "alias": "title"; "required": true; "isSignal": true; }; "gridColumns": { "alias": "gridColumns"; "required": true; "isSignal": true; }; "defaultViewName": { "alias": "defaultViewName"; "required": true; "isSignal": true; }; "viewGroup": { "alias": "viewGroup"; "required": true; "isSignal": true; }; "viewGroupConfig": { "alias": "viewGroupConfig"; "required": true; "isSignal": true; }; "pdfOptions": { "alias": "pdfOptions"; "required": true; "isSignal": true; }; "getExportedData": { "alias": "getExportedData"; "required": true; "isSignal": true; }; "defaultSorting": { "alias": "defaultSorting"; "required": false; "isSignal": true; }; "filterExcludedColumns": { "alias": "filterExcludedColumns"; "required": false; "isSignal": true; }; "systemViews": { "alias": "systemViews"; "required": false; "isSignal": true; }; "translationMap": { "alias": "translationMap"; "required": false; "isSignal": true; }; "isDetailTemplateVisible": { "alias": "isDetailTemplateVisible"; "required": false; "isSignal": true; }; "detailTemplateExpandDisableIf": { "alias": "detailTemplateExpandDisableIf"; "required": false; "isSignal": true; }; "gridHasData": { "alias": "gridHasData"; "required": false; "isSignal": true; }; "isLoading": { "alias": "isLoading"; "required": false; "isSignal": true; }; "pagerInfoText": { "alias": "pagerInfoText"; "required": false; "isSignal": true; }; "showBreadcrumbs": { "alias": "showBreadcrumbs"; "required": false; "isSignal": true; }; "pageSizes": { "alias": "pageSizes"; "required": false; "isSignal": true; }; "rowClassFn": { "alias": "rowClassFn"; "required": false; "isSignal": true; }; "showArchiveToggle": { "alias": "showArchiveToggle"; "required": false; "isSignal": true; }; "showRefreshButton": { "alias": "showRefreshButton"; "required": false; "isSignal": true; }; }, { "gridViewChanged": "gridViewChanged"; "archiveModeChanged": "archiveModeChanged"; "refreshButtonClicked": "refreshButtonClicked"; }, ["columns", "gridDetailTemplate"], ["[headerActions]", "[filters]", "[post-header-content]", "[footerActions]"], true, never>;
|
|
4201
4231
|
}
|
|
4202
4232
|
|
|
4203
4233
|
declare class KitSidebarComponent implements OnInit {
|
|
@@ -4880,5 +4910,5 @@ declare class KitBackButtonComponent {
|
|
|
4880
4910
|
static ɵcmp: i0.ɵɵComponentDeclaration<KitBackButtonComponent, "kit-back-button", never, { "backUrl": { "alias": "backUrl"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
4881
4911
|
}
|
|
4882
4912
|
|
|
4883
|
-
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 };
|
|
4884
|
-
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, 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 };
|
|
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 };
|
|
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 };
|