@zambon-dev/library 2.0.0 → 3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +32 -9
- package/README.md +9 -9
- package/fesm2022/zambon-dev-library.mjs +304 -445
- package/fesm2022/zambon-dev-library.mjs.map +1 -1
- package/package.json +10 -9
- package/styles/variables.scss +26 -26
- package/types/zambon-dev-library.d.ts +1045 -0
- package/index.d.ts +0 -10
- package/lib/components/base.component.d.ts +0 -9
- package/lib/components/catalog-select/catalog-select.component.d.ts +0 -121
- package/lib/components/data-grid/data-grid.component.d.ts +0 -51
- package/lib/components/data-grid-row/data-grid-row.component.d.ts +0 -31
- package/lib/components/form-group/form-group.component.d.ts +0 -8
- package/lib/components/form-input/form-input.component.d.ts +0 -47
- package/lib/components/form-input-group/form-input-group.component.d.ts +0 -40
- package/lib/components/group-accordion/group-accordion.component.d.ts +0 -13
- package/lib/components/group-container/group-container.component.d.ts +0 -16
- package/lib/components/group-scroll-spy/group-scroll-spy.component.d.ts +0 -14
- package/lib/components/index.d.ts +0 -18
- package/lib/components/modal/modal.component.d.ts +0 -26
- package/lib/components/multi-editor/multi-editor.component.d.ts +0 -30
- package/lib/components/multi-select/multi-select.component.d.ts +0 -25
- package/lib/components/multi-select/result-grid/result-grid.component.d.ts +0 -18
- package/lib/components/ribbon/ribbon.component.d.ts +0 -5
- package/lib/components/ribbon-button/ribbon-button.component.d.ts +0 -32
- package/lib/components/ribbon-group/ribbon-group.component.d.ts +0 -10
- package/lib/components/sidebar/sidebar.component.d.ts +0 -41
- package/lib/components/sidebar-item/sidebar-item.component.d.ts +0 -34
- package/lib/directives/index.d.ts +0 -1
- package/lib/directives/scroll-spy.directive.d.ts +0 -16
- package/lib/helpers/date-helpers.d.ts +0 -3
- package/lib/helpers/display-controls.d.ts +0 -29
- package/lib/helpers/guid-helper.d.ts +0 -3
- package/lib/helpers/index.d.ts +0 -4
- package/lib/helpers/route-formatter.d.ts +0 -4
- package/lib/library.module.d.ts +0 -27
- package/lib/models/batch-update.d.ts +0 -4
- package/lib/models/catalog-entry.d.ts +0 -4
- package/lib/models/catalog-result.d.ts +0 -5
- package/lib/models/configs/data-grid-configs.d.ts +0 -9
- package/lib/models/configs/grid-configs.d.ts +0 -9
- package/lib/models/configs/index.d.ts +0 -2
- package/lib/models/data-grid-parameters.d.ts +0 -12
- package/lib/models/grid-column.d.ts +0 -9
- package/lib/models/index.d.ts +0 -14
- package/lib/models/list-result.d.ts +0 -4
- package/lib/models/modal.interface.d.ts +0 -7
- package/lib/models/multi-editor-changes.d.ts +0 -6
- package/lib/models/multi-selector-changes.d.ts +0 -4
- package/lib/models/ribbon-button-option.d.ts +0 -13
- package/lib/models/ribbon-group-child.d.ts +0 -3
- package/lib/models/sidebar/index.d.ts +0 -5
- package/lib/models/sidebar/sidebar-configs.d.ts +0 -22
- package/lib/models/sidebar/sidebar-menu-open-mode.d.ts +0 -32
- package/lib/models/sidebar/sidebar-menu.d.ts +0 -22
- package/lib/models/sidebar/sidebar-profile.d.ts +0 -5
- package/lib/models/sidebar/sidebar-region.d.ts +0 -6
- package/lib/models/tab-view.d.ts +0 -5
- package/lib/pipes/enum.d.ts +0 -12
- package/lib/pipes/index.d.ts +0 -3
- package/lib/pipes/replace-many.pipe.d.ts +0 -9
- package/lib/pipes/replace.pipe.d.ts +0 -7
- package/lib/services/catalog.service.d.ts +0 -11
- package/lib/services/configs-providers/data-grid-configs.provider.d.ts +0 -8
- package/lib/services/configs-providers/grid-configs.provider.d.ts +0 -9
- package/lib/services/configs-providers/index.d.ts +0 -2
- package/lib/services/data-providers/data-provider.service.d.ts +0 -29
- package/lib/services/data-providers/index.d.ts +0 -1
- package/lib/services/datasets/base.dataset.d.ts +0 -15
- package/lib/services/datasets/data-grid.dataset.d.ts +0 -37
- package/lib/services/datasets/grid.dataset.d.ts +0 -59
- package/lib/services/datasets/index.d.ts +0 -5
- package/lib/services/datasets/multi-editor.dataset.d.ts +0 -22
- package/lib/services/datasets/multi-select-result.dataset.d.ts +0 -26
- package/lib/services/form-group.service.d.ts +0 -5
- package/lib/services/form.service.d.ts +0 -39
- package/lib/services/index.d.ts +0 -6
- package/lib/services/sidebar.service.d.ts +0 -34
- package/lib/validators/date.validators.d.ts +0 -13
- package/lib/validators/index.d.ts +0 -1
|
@@ -0,0 +1,1045 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { OnDestroy, TemplateRef, InjectionToken, OnInit, AfterViewInit, EventEmitter, ChangeDetectorRef, QueryList, PipeTransform } from '@angular/core';
|
|
3
|
+
import { Subject, Observable } from 'rxjs';
|
|
4
|
+
import { FormControl, FormGroup, FormGroupDirective, FormGroupName, AbstractControl, ValidatorFn, ValidationErrors } from '@angular/forms';
|
|
5
|
+
import { HttpErrorResponse, HttpResponse } from '@angular/common/http';
|
|
6
|
+
import { ActivatedRoute, ActivatedRouteSnapshot } from '@angular/router';
|
|
7
|
+
|
|
8
|
+
declare abstract class BaseComponent implements OnDestroy {
|
|
9
|
+
protected destroy$: Subject<boolean>;
|
|
10
|
+
ngOnDestroy(): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BaseComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BaseComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
interface IBatchUpdate<TEntity, TKey> {
|
|
16
|
+
entitiesToDelete: Array<TKey>;
|
|
17
|
+
entitiesToInsertOrUpdate: Array<TEntity>;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
interface ICatalogEntry {
|
|
21
|
+
display: string;
|
|
22
|
+
value: any;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
interface ICatalogResult {
|
|
26
|
+
entries: ICatalogEntry[];
|
|
27
|
+
shouldUseCriteria: boolean;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
type GridConfigs = {
|
|
31
|
+
loadingDisplayText?: string;
|
|
32
|
+
messageOnEmpty?: string;
|
|
33
|
+
messageOnFailed?: string;
|
|
34
|
+
messageOnLazyLoad?: string;
|
|
35
|
+
recordBlockSize: number;
|
|
36
|
+
rowHeight: number;
|
|
37
|
+
rowsToDisplay: number;
|
|
38
|
+
};
|
|
39
|
+
|
|
40
|
+
type DataGridConfigs = GridConfigs & {
|
|
41
|
+
hideBorders?: boolean;
|
|
42
|
+
hideColumnHeaders?: boolean;
|
|
43
|
+
multiSelect?: boolean;
|
|
44
|
+
multiSelectSize?: string;
|
|
45
|
+
selectOnClick?: boolean;
|
|
46
|
+
showMessageOnEmpty?: boolean;
|
|
47
|
+
};
|
|
48
|
+
|
|
49
|
+
interface IListParameters extends ISummaryParameters {
|
|
50
|
+
endRow: number;
|
|
51
|
+
sort?: {
|
|
52
|
+
[key: string]: string;
|
|
53
|
+
};
|
|
54
|
+
startRow: number;
|
|
55
|
+
}
|
|
56
|
+
interface ISummaryParameters {
|
|
57
|
+
filters?: {
|
|
58
|
+
[key: string]: string;
|
|
59
|
+
};
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
interface IGridColumn {
|
|
63
|
+
customClass?: string;
|
|
64
|
+
field: string;
|
|
65
|
+
headerName: string;
|
|
66
|
+
size?: string;
|
|
67
|
+
realSize?: number;
|
|
68
|
+
template?: TemplateRef<any>;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
interface IListResult<T> {
|
|
72
|
+
items: T[];
|
|
73
|
+
totalRows: number;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
interface IModal {
|
|
77
|
+
size: 'sm' | 'md' | 'lg' | 'xl' | '2xl' | '3xl' | '4xl' | '5xl' | '6xl' | '7xl' | 'full' | 'auto';
|
|
78
|
+
title: string;
|
|
79
|
+
get isShown(): boolean;
|
|
80
|
+
closeModal(): void;
|
|
81
|
+
toggleModal(): void;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
interface IMultiEditorChanges {
|
|
85
|
+
changed: {
|
|
86
|
+
[key: string]: string;
|
|
87
|
+
};
|
|
88
|
+
removed: string[];
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
interface IMultiSelectorChanges {
|
|
92
|
+
idsToAdd: number[];
|
|
93
|
+
idsToRemove: number[];
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
interface IRibbonButtonOption {
|
|
97
|
+
allowedActions?: string[];
|
|
98
|
+
icon?: string;
|
|
99
|
+
id: string;
|
|
100
|
+
isAccessAllowed?: boolean;
|
|
101
|
+
isDisabled?: boolean;
|
|
102
|
+
isVisible?: boolean;
|
|
103
|
+
label: string;
|
|
104
|
+
parameters?: {
|
|
105
|
+
[key: string]: string;
|
|
106
|
+
};
|
|
107
|
+
path?: string;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
declare abstract class RibbonGroupChild {
|
|
111
|
+
abstract visible: boolean;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
declare const SIDEBAR_CONFIGS: InjectionToken<SidebarConfigs>;
|
|
115
|
+
declare class SidebarConfigs {
|
|
116
|
+
errorText: string;
|
|
117
|
+
/** Tooltip for items that open in a new browser tab. Rendered as-is, like {@link errorText}. */
|
|
118
|
+
externalLinkText: string;
|
|
119
|
+
loadingText: string;
|
|
120
|
+
/**
|
|
121
|
+
* Derive region headers from the menu tree instead of from {@link SidebarMenu.region}.
|
|
122
|
+
*
|
|
123
|
+
* With this on, a top-level menu that has children and no URL stops being a collapsible node
|
|
124
|
+
* and becomes an area header, with its children rendered flat beneath it as top-level items --
|
|
125
|
+
* icons included. The area is then a real menu row, so it carries its own translated label and
|
|
126
|
+
* its own order, and no `region` label has to be repeated across every item that belongs to it.
|
|
127
|
+
*
|
|
128
|
+
* Off by default: without it a top-level parent stays the collapsible group it has always been.
|
|
129
|
+
*/
|
|
130
|
+
shouldDeriveAreasFromRootMenus: boolean;
|
|
131
|
+
logoCollapsedPath?: string;
|
|
132
|
+
logoExpandedPath?: string;
|
|
133
|
+
constructor(options?: Partial<SidebarConfigs>);
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
/**
|
|
137
|
+
* How a {@link SidebarMenu}'s `url` is opened when the item is clicked.
|
|
138
|
+
*
|
|
139
|
+
* Read the value off a menu through {@link toSidebarMenuOpenMode} rather than comparing the
|
|
140
|
+
* field directly: it crosses HTTP, so it can arrive as a string, as a number, as `null`, or not
|
|
141
|
+
* at all.
|
|
142
|
+
*/
|
|
143
|
+
declare enum SidebarMenuOpenMode {
|
|
144
|
+
/** `url` is an internal Angular route and opens an application tab. The default. */
|
|
145
|
+
Internal = "internal",
|
|
146
|
+
/** `url` is an absolute http(s) address and opens in a new browser tab. */
|
|
147
|
+
ExternalNewTab = "externalNewTab",
|
|
148
|
+
/** `url` is an absolute http(s) address and opens embedded in an application tab. */
|
|
149
|
+
ExternalEmbedded = "externalEmbedded"
|
|
150
|
+
}
|
|
151
|
+
/**
|
|
152
|
+
* Parses the wire value of `SidebarMenu.openMode`.
|
|
153
|
+
*
|
|
154
|
+
* Deliberately a parser rather than a `?? Internal` fallback, because the field is deserialized
|
|
155
|
+
* straight from each application's menu endpoint and its shape is not guaranteed:
|
|
156
|
+
*
|
|
157
|
+
* - a **number** is read as the backend's enum ordinal, which is what an ASP.NET Core enum
|
|
158
|
+
* property serializes to unless that backend registers a string converter;
|
|
159
|
+
* - a **string** is matched case-insensitively, so `'externalNewTab'` and `'ExternalNewTab'`
|
|
160
|
+
* both work;
|
|
161
|
+
* - anything else — an omitted field from a backend that predates this feature, `null`, or a
|
|
162
|
+
* mode introduced by a newer one — degrades to {@link SidebarMenuOpenMode.Internal}.
|
|
163
|
+
*
|
|
164
|
+
* Degrading to `Internal` keeps an unrecognized mode behaving the way menus behaved before
|
|
165
|
+
* external destinations existed, instead of producing an item that does nothing when clicked.
|
|
166
|
+
*/
|
|
167
|
+
declare function toSidebarMenuOpenMode(value: unknown): SidebarMenuOpenMode;
|
|
168
|
+
|
|
169
|
+
declare class SidebarMenu {
|
|
170
|
+
childCount: number;
|
|
171
|
+
children: SidebarMenu[];
|
|
172
|
+
height?: number;
|
|
173
|
+
icon?: string;
|
|
174
|
+
id: number;
|
|
175
|
+
label: string;
|
|
176
|
+
isSelected: boolean;
|
|
177
|
+
/**
|
|
178
|
+
* How {@link url} is opened. An absent value means {@link SidebarMenuOpenMode.Internal}.
|
|
179
|
+
*
|
|
180
|
+
* Left optional and without an initializer on purpose: the constructor is an `Object.assign`,
|
|
181
|
+
* which would overwrite a default with the `null` a nullable backend column serializes to.
|
|
182
|
+
* Read it through `toSidebarMenuOpenMode(menu.openMode)` instead of comparing it directly.
|
|
183
|
+
*/
|
|
184
|
+
openMode?: SidebarMenuOpenMode;
|
|
185
|
+
parent: SidebarMenu | null;
|
|
186
|
+
region?: string;
|
|
187
|
+
url?: string;
|
|
188
|
+
constructor(options?: Partial<SidebarMenu>);
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
interface ISidebarProfile {
|
|
192
|
+
image?: string;
|
|
193
|
+
name?: string;
|
|
194
|
+
title?: string;
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
/** A named group of top-level sidebar menu items, rendered under a region header. */
|
|
198
|
+
interface SidebarRegion {
|
|
199
|
+
items: SidebarMenu[];
|
|
200
|
+
name?: string;
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
interface ITabView {
|
|
204
|
+
activeView?: string;
|
|
205
|
+
title: string;
|
|
206
|
+
url: string;
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
declare class CatalogSelectComponent extends BaseComponent implements OnInit, AfterViewInit, OnDestroy {
|
|
210
|
+
protected bodyMouseDown(event: MouseEvent): void;
|
|
211
|
+
protected bodyMouseUp(event: MouseEvent): void;
|
|
212
|
+
private dropdownTemplate;
|
|
213
|
+
private inputElement;
|
|
214
|
+
autofocus: boolean;
|
|
215
|
+
controlName: string;
|
|
216
|
+
displayControlName: string;
|
|
217
|
+
displayProperty: string;
|
|
218
|
+
set entriesList(value: any[] | {
|
|
219
|
+
key: number;
|
|
220
|
+
value: Observable<any> | string;
|
|
221
|
+
}[] | null | undefined);
|
|
222
|
+
set filters(value: {
|
|
223
|
+
[id: string]: any;
|
|
224
|
+
});
|
|
225
|
+
label: string;
|
|
226
|
+
maxEntries: number;
|
|
227
|
+
minimumLengthSearch: number;
|
|
228
|
+
notes: string;
|
|
229
|
+
readOnly: boolean;
|
|
230
|
+
searchEndpoint?: string;
|
|
231
|
+
validations: {
|
|
232
|
+
[id: string]: string;
|
|
233
|
+
};
|
|
234
|
+
valueProperty: string;
|
|
235
|
+
protected displayedEntries: ICatalogEntry[];
|
|
236
|
+
protected focusedIndex: number;
|
|
237
|
+
protected isDropDownShown: boolean;
|
|
238
|
+
protected isFocused: boolean;
|
|
239
|
+
protected isLoading: boolean;
|
|
240
|
+
protected selectedValue: any;
|
|
241
|
+
protected shouldUseCriteria: boolean;
|
|
242
|
+
protected showFailureMessage: boolean;
|
|
243
|
+
protected showMinimumCharactersMessage: boolean;
|
|
244
|
+
protected showNoResultsMessage: boolean;
|
|
245
|
+
private static instanceCounter;
|
|
246
|
+
private _entriesList?;
|
|
247
|
+
private _filters;
|
|
248
|
+
private catalogService;
|
|
249
|
+
private dataGridDataset;
|
|
250
|
+
private entriesDataSource;
|
|
251
|
+
private filterDiffer?;
|
|
252
|
+
private readonly formGroup;
|
|
253
|
+
private readonly formGroupName;
|
|
254
|
+
private instanceId;
|
|
255
|
+
private isDataInitialized;
|
|
256
|
+
private isSubscriptionInitialized;
|
|
257
|
+
private keyValueDiffers;
|
|
258
|
+
private lastCriteriaUsed;
|
|
259
|
+
private overlay;
|
|
260
|
+
private overlayRef?;
|
|
261
|
+
private positionBuilder;
|
|
262
|
+
private searchSubject;
|
|
263
|
+
private viewContainerRef;
|
|
264
|
+
private wasClickedOutside;
|
|
265
|
+
get entriesList(): any[] | {
|
|
266
|
+
key: number;
|
|
267
|
+
value: Observable<any> | string;
|
|
268
|
+
}[] | null | undefined;
|
|
269
|
+
get filters(): {
|
|
270
|
+
[id: string]: any;
|
|
271
|
+
} | undefined;
|
|
272
|
+
protected get activeDescendantId(): string | null;
|
|
273
|
+
protected get displayControl(): FormControl;
|
|
274
|
+
protected get formControl(): FormControl;
|
|
275
|
+
protected get formControlName(): string;
|
|
276
|
+
protected get formDisplayControlName(): string;
|
|
277
|
+
protected get isInvalid(): boolean;
|
|
278
|
+
protected get isTouched(): boolean;
|
|
279
|
+
protected get listboxId(): string;
|
|
280
|
+
protected get showClearButton(): boolean;
|
|
281
|
+
private get hasSearchEndpoint();
|
|
282
|
+
constructor();
|
|
283
|
+
ngAfterViewInit(): void;
|
|
284
|
+
ngOnDestroy(): void;
|
|
285
|
+
ngOnInit(): void;
|
|
286
|
+
protected onContainerBlur(): void;
|
|
287
|
+
protected onContainerClick(): void;
|
|
288
|
+
protected onContainerFocus(): void;
|
|
289
|
+
protected onClearClick(event: MouseEvent): void;
|
|
290
|
+
protected onKeyDown(event: KeyboardEvent): void;
|
|
291
|
+
protected onDropDownErrorClick(): void;
|
|
292
|
+
protected onDropDownItemClick(entry: ICatalogEntry): void;
|
|
293
|
+
protected getOptionId(index: number): string;
|
|
294
|
+
private applySearchCriteria;
|
|
295
|
+
private checkAndAddDisplayControl;
|
|
296
|
+
private closeDropdownOverlay;
|
|
297
|
+
private initializeEntriesDataSource;
|
|
298
|
+
private initializeSearch;
|
|
299
|
+
private openDropdownOverlay;
|
|
300
|
+
private refreshSearch;
|
|
301
|
+
private resetMessages;
|
|
302
|
+
private resolveDisplay;
|
|
303
|
+
private syncDisplayFromCurrentValue;
|
|
304
|
+
/**
|
|
305
|
+
* Decides whether the display control has to be written again.
|
|
306
|
+
*
|
|
307
|
+
* The value on its own is not enough. Resetting a form clears the display control and then
|
|
308
|
+
* patches the same value back, so an unchanged value can still leave the display empty. That
|
|
309
|
+
* only happens when the stored value equals the control's initial value, which is why it used
|
|
310
|
+
* to show up on the default entry alone.
|
|
311
|
+
*/
|
|
312
|
+
private shouldRefreshDisplay;
|
|
313
|
+
private syncFormControlsEnabledDisabled;
|
|
314
|
+
private tryFilterFromDataset;
|
|
315
|
+
private updateFilters;
|
|
316
|
+
private updateMinimumCharactersMessageVisibility;
|
|
317
|
+
private getNativeInput;
|
|
318
|
+
private scrollFocusedItemIntoView;
|
|
319
|
+
private setInputAriaAttributes;
|
|
320
|
+
private updateInputAriaActiveDescendant;
|
|
321
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CatalogSelectComponent, never>;
|
|
322
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CatalogSelectComponent, "lib-catalog-select", never, { "autofocus": { "alias": "autofocus"; "required": false; }; "controlName": { "alias": "controlName"; "required": false; }; "displayControlName": { "alias": "displayControlName"; "required": false; }; "displayProperty": { "alias": "displayProperty"; "required": false; }; "entriesList": { "alias": "entriesList"; "required": false; }; "filters": { "alias": "filters"; "required": false; }; "label": { "alias": "label"; "required": false; }; "maxEntries": { "alias": "maxEntries"; "required": false; }; "minimumLengthSearch": { "alias": "minimumLengthSearch"; "required": false; }; "notes": { "alias": "notes"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "searchEndpoint": { "alias": "searchEndpoint"; "required": false; }; "validations": { "alias": "validations"; "required": false; }; "valueProperty": { "alias": "valueProperty"; "required": false; }; }, {}, never, never, true, never>;
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
declare class CatalogService {
|
|
326
|
+
private http;
|
|
327
|
+
search(endpoint: string, maxResults: number, criteria?: string, filters?: {
|
|
328
|
+
[key: string]: string;
|
|
329
|
+
} | null): Observable<ICatalogResult>;
|
|
330
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CatalogService, never>;
|
|
331
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<any>;
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
declare abstract class DataProviderService<TEntityModel> implements OnDestroy {
|
|
335
|
+
protected activatedRoute: ActivatedRoute;
|
|
336
|
+
protected destroy$: Subject<boolean>;
|
|
337
|
+
protected shouldLazyLoad: boolean;
|
|
338
|
+
private _entityID?;
|
|
339
|
+
private errorSubject;
|
|
340
|
+
private isLoading;
|
|
341
|
+
private isModelLoaded;
|
|
342
|
+
private modelCache;
|
|
343
|
+
get entityID(): number | undefined;
|
|
344
|
+
get hasEntityID(): boolean;
|
|
345
|
+
constructor();
|
|
346
|
+
ngOnDestroy(): void;
|
|
347
|
+
getError$(): Observable<HttpErrorResponse>;
|
|
348
|
+
abstract getTitle(entity: TEntityModel): string;
|
|
349
|
+
getModel$(): Observable<TEntityModel | null>;
|
|
350
|
+
refreshModel(): void;
|
|
351
|
+
resetForNewEntity(): void;
|
|
352
|
+
abstract saveModel(model: any): Observable<TEntityModel>;
|
|
353
|
+
updateModel(model: any): void;
|
|
354
|
+
protected abstract loadModel(entityID?: number): Observable<TEntityModel | null>;
|
|
355
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DataProviderService<any>, never>;
|
|
356
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<any>;
|
|
357
|
+
}
|
|
358
|
+
|
|
359
|
+
declare abstract class BaseDataset implements OnDestroy {
|
|
360
|
+
protected dataProvider: DataProviderService<any> | null;
|
|
361
|
+
protected destroy$: Subject<boolean>;
|
|
362
|
+
private _parentEntityId?;
|
|
363
|
+
get parentEntityId(): any;
|
|
364
|
+
set parentEntityId(value: any);
|
|
365
|
+
constructor();
|
|
366
|
+
ngOnDestroy(): void;
|
|
367
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BaseDataset, never>;
|
|
368
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<any>;
|
|
369
|
+
}
|
|
370
|
+
|
|
371
|
+
declare class GridConfigsProvider<TGridConfigs extends GridConfigs = GridConfigs> {
|
|
372
|
+
protected _configs: TGridConfigs;
|
|
373
|
+
get configs(): TGridConfigs;
|
|
374
|
+
constructor();
|
|
375
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GridConfigsProvider<any>, never>;
|
|
376
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<any>;
|
|
377
|
+
}
|
|
378
|
+
|
|
379
|
+
declare abstract class GridDataset extends BaseDataset {
|
|
380
|
+
configs: GridConfigs;
|
|
381
|
+
filtersChanged: EventEmitter<{
|
|
382
|
+
[key: string]: string;
|
|
383
|
+
}>;
|
|
384
|
+
isLoading: boolean;
|
|
385
|
+
loadedLastRow: boolean;
|
|
386
|
+
loadFinished: EventEmitter<boolean>;
|
|
387
|
+
loadStarted: EventEmitter<void>;
|
|
388
|
+
totalRows?: number;
|
|
389
|
+
protected compareProperty: string;
|
|
390
|
+
protected configsProvider: GridConfigsProvider;
|
|
391
|
+
protected focusedRow: string | null;
|
|
392
|
+
protected recordBlock: number;
|
|
393
|
+
private _hasBeenLoaded;
|
|
394
|
+
private _loadedKeys?;
|
|
395
|
+
private _loadedRows?;
|
|
396
|
+
private queryFilters?;
|
|
397
|
+
get filters(): {
|
|
398
|
+
[key: string]: string;
|
|
399
|
+
} | undefined;
|
|
400
|
+
get hasBeenLoaded(): boolean;
|
|
401
|
+
get hasLoadedRows(): boolean;
|
|
402
|
+
get keyProperty(): string;
|
|
403
|
+
get loadedKeys(): string[] | undefined;
|
|
404
|
+
get loadedRows(): any[] | undefined;
|
|
405
|
+
get parentEntityId(): any;
|
|
406
|
+
set parentEntityId(value: any);
|
|
407
|
+
constructor();
|
|
408
|
+
addNewRow(row: any): void;
|
|
409
|
+
/** The key of the currently focused row, or null. Read by DataGridRowComponent's host binding. */
|
|
410
|
+
get focusedRowKey(): string | null;
|
|
411
|
+
clearFocusedRow(): void;
|
|
412
|
+
getRowData(key: string): any | null;
|
|
413
|
+
getRowID(key: string): any;
|
|
414
|
+
getRowInternalKey(row: any): string;
|
|
415
|
+
hasRowWithID(id: any): boolean;
|
|
416
|
+
isKeyExists(key: string): boolean;
|
|
417
|
+
loadRows(): void;
|
|
418
|
+
refresh(): void;
|
|
419
|
+
removeKeys(keys: string[]): void;
|
|
420
|
+
setFilters(filters?: {
|
|
421
|
+
[key: string]: string;
|
|
422
|
+
}): void;
|
|
423
|
+
setFocusedRow(key: string): void;
|
|
424
|
+
updateRow(key: string, newRowData: any): void;
|
|
425
|
+
protected clearLoadedRows(): void;
|
|
426
|
+
protected updateLoadedRows(rows: any[]): void;
|
|
427
|
+
abstract getData(params?: any): Observable<any[] | {
|
|
428
|
+
items: any[];
|
|
429
|
+
totalRows: number;
|
|
430
|
+
}>;
|
|
431
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GridDataset, never>;
|
|
432
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<any>;
|
|
433
|
+
}
|
|
434
|
+
|
|
435
|
+
declare abstract class DataGridDataset extends GridDataset {
|
|
436
|
+
selectedRowsChanged: EventEmitter<{
|
|
437
|
+
[id: string]: {
|
|
438
|
+
rowData: any;
|
|
439
|
+
selected: boolean;
|
|
440
|
+
};
|
|
441
|
+
}>;
|
|
442
|
+
columns: IGridColumn[];
|
|
443
|
+
configs: DataGridConfigs;
|
|
444
|
+
selectedRowKeys: string[];
|
|
445
|
+
get columnsSize(): string;
|
|
446
|
+
get hasSelectedRows(): boolean;
|
|
447
|
+
constructor();
|
|
448
|
+
clearSelection(): void;
|
|
449
|
+
export(_format: string, _parameters: IListParameters): Observable<HttpResponse<Blob>>;
|
|
450
|
+
deselectRow(key: string): void;
|
|
451
|
+
deselectRowID(id: any): void;
|
|
452
|
+
getSelectedRowsData(): any[];
|
|
453
|
+
isKeySelected(key: any): boolean;
|
|
454
|
+
refresh(): void;
|
|
455
|
+
removeKeys(keys: string[]): void;
|
|
456
|
+
selectRow(key: string): void;
|
|
457
|
+
selectRowID(id: any): void;
|
|
458
|
+
selectRows(keys: string[]): void;
|
|
459
|
+
setFocusedRow(key: any): void;
|
|
460
|
+
protected removeSelectedRow(key: string): void;
|
|
461
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DataGridDataset, never>;
|
|
462
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<any>;
|
|
463
|
+
}
|
|
464
|
+
|
|
465
|
+
declare abstract class MultiEditorDataset extends BaseDataset {
|
|
466
|
+
savedChanges: EventEmitter<void>;
|
|
467
|
+
protected readonly dataGridDataset: DataGridDataset;
|
|
468
|
+
private fakeIDsGenerated;
|
|
469
|
+
private modifiedValues;
|
|
470
|
+
constructor();
|
|
471
|
+
clearChangedValues(): void;
|
|
472
|
+
removeValue(key: string): void;
|
|
473
|
+
saveChanges(): Observable<any>;
|
|
474
|
+
storeFakeIDGenerated(id: any): void;
|
|
475
|
+
updateValues(key: string, newRowData: any): void;
|
|
476
|
+
abstract newData(id: any): any;
|
|
477
|
+
abstract saveData(batchUpdate: IBatchUpdate<any, any>): Observable<any>;
|
|
478
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MultiEditorDataset, never>;
|
|
479
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<any>;
|
|
480
|
+
}
|
|
481
|
+
|
|
482
|
+
declare abstract class MultiSelectResultDataset extends GridDataset {
|
|
483
|
+
savedChanges: EventEmitter<void>;
|
|
484
|
+
displayedIDs: any[];
|
|
485
|
+
displayedRows: any[];
|
|
486
|
+
private _idsToAdd;
|
|
487
|
+
private _idsToRemove;
|
|
488
|
+
private addedRowData;
|
|
489
|
+
get idsToAdd(): any[];
|
|
490
|
+
get idsToRemove(): any[];
|
|
491
|
+
refresh(): void;
|
|
492
|
+
saveChanges(): Observable<any>;
|
|
493
|
+
setIDToAdd(idToAdd: any, rowData: any): void;
|
|
494
|
+
setIDToRemove(idToRemove: any): void;
|
|
495
|
+
protected updateLoadedRows(rows: any[]): void;
|
|
496
|
+
private clearSelection;
|
|
497
|
+
private isExistingID;
|
|
498
|
+
private updateDisplayedRows;
|
|
499
|
+
protected abstract saveData(changedIds: IMultiSelectorChanges): Observable<any>;
|
|
500
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MultiSelectResultDataset, never>;
|
|
501
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<any>;
|
|
502
|
+
}
|
|
503
|
+
|
|
504
|
+
declare class FormGroupService {
|
|
505
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FormGroupService, never>;
|
|
506
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<any>;
|
|
507
|
+
}
|
|
508
|
+
|
|
509
|
+
declare class FormService {
|
|
510
|
+
fieldRefreshed: EventEmitter<{
|
|
511
|
+
fieldName: string;
|
|
512
|
+
value?: any;
|
|
513
|
+
loading?: boolean;
|
|
514
|
+
}>;
|
|
515
|
+
modelRefreshed: EventEmitter<any>;
|
|
516
|
+
private _loading;
|
|
517
|
+
private _model;
|
|
518
|
+
private currentMode;
|
|
519
|
+
private editCanceled$;
|
|
520
|
+
private form?;
|
|
521
|
+
private initialValue?;
|
|
522
|
+
get editCanceled(): Observable<void>;
|
|
523
|
+
get isEditMode(): boolean;
|
|
524
|
+
get isValid(): boolean;
|
|
525
|
+
get loading(): boolean;
|
|
526
|
+
set loading(value: boolean);
|
|
527
|
+
get model(): any | null;
|
|
528
|
+
set model(value: any | null);
|
|
529
|
+
beginEdit(): void;
|
|
530
|
+
beginFieldLoading(fieldName: string): void;
|
|
531
|
+
cancelEdit(): void;
|
|
532
|
+
disableForm(): void;
|
|
533
|
+
enableForm(): void;
|
|
534
|
+
getModelFromForm(): any;
|
|
535
|
+
initializeForm(form: FormGroup): void;
|
|
536
|
+
markAllAsTouched(): void;
|
|
537
|
+
resetForm(): void;
|
|
538
|
+
setFieldValue(fieldName: string, value: any): void;
|
|
539
|
+
setValidationErrorsFromHttpResponse(errorResponse: HttpErrorResponse): void;
|
|
540
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FormService, never>;
|
|
541
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<any>;
|
|
542
|
+
}
|
|
543
|
+
|
|
544
|
+
declare abstract class SidebarService {
|
|
545
|
+
childrenFailed: EventEmitter<SidebarMenu>;
|
|
546
|
+
childrenLoading: EventEmitter<SidebarMenu>;
|
|
547
|
+
childrenInitialized: EventEmitter<SidebarMenu>;
|
|
548
|
+
menuExternalUrlSelected: EventEmitter<SidebarMenu>;
|
|
549
|
+
menuUrlSelected: EventEmitter<SidebarMenu>;
|
|
550
|
+
selectionChanged: EventEmitter<SidebarMenu>;
|
|
551
|
+
isActive: boolean;
|
|
552
|
+
isCollapsed: boolean;
|
|
553
|
+
shouldActivate: boolean;
|
|
554
|
+
private menus;
|
|
555
|
+
private selectedMenu;
|
|
556
|
+
deselectAll(): void;
|
|
557
|
+
loadChildren(parentMenu: SidebarMenu): void;
|
|
558
|
+
/**
|
|
559
|
+
* Loads a parent's children and hands them back, for callers that need them before the user
|
|
560
|
+
* clicks -- a sidebar rendering areas flat has to have them up front. {@link loadChildren} is
|
|
561
|
+
* the fire-and-forget variant that also raises the loading and failure events.
|
|
562
|
+
*/
|
|
563
|
+
loadChildrenFor(parentMenu: SidebarMenu): Observable<SidebarMenu[]>;
|
|
564
|
+
loadRoot(): Observable<SidebarMenu[]>;
|
|
565
|
+
select(menu: SidebarMenu): void;
|
|
566
|
+
private deselectMenu;
|
|
567
|
+
private selectMenu;
|
|
568
|
+
abstract getMenuFromUrl(url: string): Observable<SidebarMenu>;
|
|
569
|
+
abstract getUserProfile(): ISidebarProfile | undefined;
|
|
570
|
+
protected abstract loadMenus(parentMenuID: SidebarMenu | null): Observable<SidebarMenu[]>;
|
|
571
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SidebarService, never>;
|
|
572
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<any>;
|
|
573
|
+
}
|
|
574
|
+
|
|
575
|
+
declare class DataGridComponent extends BaseComponent implements OnInit, AfterViewInit, OnDestroy {
|
|
576
|
+
private bodyElement;
|
|
577
|
+
private viewport?;
|
|
578
|
+
disabled: boolean;
|
|
579
|
+
lazyLoadRows: boolean;
|
|
580
|
+
showButtons: boolean;
|
|
581
|
+
protected changeDetectorRef: ChangeDetectorRef;
|
|
582
|
+
protected dataGridDataset: DataGridDataset;
|
|
583
|
+
protected hasFailed: boolean;
|
|
584
|
+
protected headerRightMargin: number;
|
|
585
|
+
protected headerScrollLeft: number;
|
|
586
|
+
protected loading: boolean;
|
|
587
|
+
private bodyResized$;
|
|
588
|
+
private bodyResizeObserver?;
|
|
589
|
+
private gridRoute;
|
|
590
|
+
private isGridCurrentUrl;
|
|
591
|
+
private lastPosition;
|
|
592
|
+
private ngZone;
|
|
593
|
+
private router;
|
|
594
|
+
private selectionColRealSize?;
|
|
595
|
+
protected get bodyMinHeight(): number;
|
|
596
|
+
protected get columns(): IGridColumn[];
|
|
597
|
+
protected get configs(): DataGridConfigs;
|
|
598
|
+
protected get gridColumns(): string;
|
|
599
|
+
protected get hasBeenLoaded(): boolean;
|
|
600
|
+
protected get hasLoadedRows(): boolean;
|
|
601
|
+
protected get hasMessageToDisplayWhenEmpty(): boolean;
|
|
602
|
+
protected get isHideColumns(): boolean;
|
|
603
|
+
protected get isShowMultiSelect(): boolean;
|
|
604
|
+
protected get messageToDisplayWhenEmpty(): string;
|
|
605
|
+
protected get messageToDisplayWhenLazyLoad(): string;
|
|
606
|
+
protected get messageToDisplayWhenFailed(): string;
|
|
607
|
+
protected get selectionColWidth(): string;
|
|
608
|
+
protected get shouldDisplayMessageWhenEmpty(): boolean;
|
|
609
|
+
constructor();
|
|
610
|
+
ngOnInit(): void;
|
|
611
|
+
ngAfterViewInit(): void;
|
|
612
|
+
ngOnDestroy(): void;
|
|
613
|
+
protected onSelectionResized(newSize: number): void;
|
|
614
|
+
protected isFirstVisibleRow(rowIndex: number): boolean;
|
|
615
|
+
private syncHeaderScroll;
|
|
616
|
+
protected trackByFn(index: number, item: any): number;
|
|
617
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DataGridComponent, never>;
|
|
618
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DataGridComponent, "lib-data-grid", never, { "disabled": { "alias": "disabled"; "required": false; }; "lazyLoadRows": { "alias": "lazyLoadRows"; "required": false; }; "showButtons": { "alias": "showButtons"; "required": false; }; }, {}, never, ["[buttons]"], true, never>;
|
|
619
|
+
}
|
|
620
|
+
|
|
621
|
+
declare class DataGridRowComponent extends BaseComponent implements OnInit {
|
|
622
|
+
disabled: boolean;
|
|
623
|
+
isFirstRow: boolean;
|
|
624
|
+
set rowData(value: any);
|
|
625
|
+
selectionResized: EventEmitter<number>;
|
|
626
|
+
setFocus(): void;
|
|
627
|
+
protected changeDetectorRef: ChangeDetectorRef;
|
|
628
|
+
protected dataGridDataset: DataGridDataset;
|
|
629
|
+
protected selected: boolean;
|
|
630
|
+
private _rowData;
|
|
631
|
+
private elementRef;
|
|
632
|
+
get rowData(): any;
|
|
633
|
+
protected get columns(): IGridColumn[];
|
|
634
|
+
private get isLaidOut();
|
|
635
|
+
private get isRowDataSelected();
|
|
636
|
+
protected get rowKey(): string;
|
|
637
|
+
constructor();
|
|
638
|
+
ngOnInit(): void;
|
|
639
|
+
protected onResize(colIndex: number, event: ResizeObserverEntry): void;
|
|
640
|
+
protected onResizeSelection(event: ResizeObserverEntry): void;
|
|
641
|
+
protected onToggleSelection(): void;
|
|
642
|
+
protected getValue(field: string): any;
|
|
643
|
+
private refreshSelection;
|
|
644
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DataGridRowComponent, never>;
|
|
645
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DataGridRowComponent, "lib-data-grid-row", never, { "disabled": { "alias": "disabled"; "required": false; }; "isFirstRow": { "alias": "isFirstRow"; "required": false; }; "rowData": { "alias": "rowData"; "required": false; }; }, { "selectionResized": "selectionResized"; }, never, never, true, never>;
|
|
646
|
+
}
|
|
647
|
+
|
|
648
|
+
declare class FormInputComponent extends BaseComponent implements OnInit {
|
|
649
|
+
autofocus: boolean;
|
|
650
|
+
controlName: string;
|
|
651
|
+
disabledControlName?: string;
|
|
652
|
+
displayReadOnlyAsDisabled: boolean;
|
|
653
|
+
fixedValue?: any;
|
|
654
|
+
format?: string;
|
|
655
|
+
invalid: boolean;
|
|
656
|
+
isDisabled: boolean;
|
|
657
|
+
isFullHeight: boolean;
|
|
658
|
+
maxLength?: number;
|
|
659
|
+
min?: number;
|
|
660
|
+
readOnly: boolean;
|
|
661
|
+
rows: number;
|
|
662
|
+
step: number;
|
|
663
|
+
type: string;
|
|
664
|
+
blurred: EventEmitter<void>;
|
|
665
|
+
changed: EventEmitter<any>;
|
|
666
|
+
fixedValueChanged: EventEmitter<string>;
|
|
667
|
+
focused: EventEmitter<void>;
|
|
668
|
+
inputChanged: EventEmitter<void>;
|
|
669
|
+
protected readonly formGroupDirective: FormGroupDirective;
|
|
670
|
+
protected readonly formGroupName: FormGroupName;
|
|
671
|
+
protected readonly formService: FormService;
|
|
672
|
+
protected get formControl(): FormControl<any> | null;
|
|
673
|
+
protected get formControlName(): string;
|
|
674
|
+
protected get formGroup(): FormGroup;
|
|
675
|
+
protected get isFormControl(): boolean;
|
|
676
|
+
protected get isFormEditMode(): boolean;
|
|
677
|
+
protected get parentGroups(): string[];
|
|
678
|
+
protected get stepAttributeValue(): number | null;
|
|
679
|
+
protected get minAttributeValue(): number | null;
|
|
680
|
+
constructor();
|
|
681
|
+
ngOnInit(): void;
|
|
682
|
+
protected onBlur(): void;
|
|
683
|
+
protected onChange(value: any): void;
|
|
684
|
+
protected onFocus(): void;
|
|
685
|
+
protected onInput(): void;
|
|
686
|
+
protected onValueChanged(newText: string): void;
|
|
687
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FormInputComponent, never>;
|
|
688
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FormInputComponent, "lib-form-input", never, { "autofocus": { "alias": "autofocus"; "required": false; }; "controlName": { "alias": "controlName"; "required": false; }; "disabledControlName": { "alias": "disabledControlName"; "required": false; }; "displayReadOnlyAsDisabled": { "alias": "displayReadOnlyAsDisabled"; "required": false; }; "fixedValue": { "alias": "fixedValue"; "required": false; }; "format": { "alias": "format"; "required": false; }; "invalid": { "alias": "invalid"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; "isFullHeight": { "alias": "isFullHeight"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "min": { "alias": "min"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "step": { "alias": "step"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, { "blurred": "blurred"; "changed": "changed"; "fixedValueChanged": "fixedValueChanged"; "focused": "focused"; "inputChanged": "inputChanged"; }, never, never, true, never>;
|
|
689
|
+
}
|
|
690
|
+
|
|
691
|
+
declare class FormInputGroupComponent extends BaseComponent implements OnInit {
|
|
692
|
+
autofocus: boolean;
|
|
693
|
+
alignContent: 'center' | 'end' | 'start';
|
|
694
|
+
controlName: string;
|
|
695
|
+
fixedValue?: any;
|
|
696
|
+
format?: string;
|
|
697
|
+
label: string;
|
|
698
|
+
isDisabled: boolean;
|
|
699
|
+
isFullHeight: boolean;
|
|
700
|
+
maxLength?: number;
|
|
701
|
+
min?: number;
|
|
702
|
+
notes: string;
|
|
703
|
+
readOnly: boolean;
|
|
704
|
+
rows: number;
|
|
705
|
+
showLabel: boolean;
|
|
706
|
+
step: number;
|
|
707
|
+
template: TemplateRef<any>;
|
|
708
|
+
type: string;
|
|
709
|
+
validations: {
|
|
710
|
+
[id: string]: string;
|
|
711
|
+
};
|
|
712
|
+
protected readonly formGroupDirective: FormGroupDirective;
|
|
713
|
+
protected readonly formGroupName: FormGroupName;
|
|
714
|
+
protected formService: FormService;
|
|
715
|
+
protected loadingField: boolean;
|
|
716
|
+
protected get formControl(): FormControl<any> | null;
|
|
717
|
+
protected get formGroup(): FormGroup;
|
|
718
|
+
protected get hasNotes(): boolean;
|
|
719
|
+
protected get parentGroups(): string[];
|
|
720
|
+
constructor();
|
|
721
|
+
ngOnInit(): void;
|
|
722
|
+
protected hasValidation(errorKey: string): boolean;
|
|
723
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FormInputGroupComponent, never>;
|
|
724
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FormInputGroupComponent, "lib-form-input-group", never, { "autofocus": { "alias": "autofocus"; "required": false; }; "alignContent": { "alias": "alignContent"; "required": false; }; "controlName": { "alias": "controlName"; "required": false; }; "fixedValue": { "alias": "fixedValue"; "required": false; }; "format": { "alias": "format"; "required": false; }; "label": { "alias": "label"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; "isFullHeight": { "alias": "isFullHeight"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "min": { "alias": "min"; "required": false; }; "notes": { "alias": "notes"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "showLabel": { "alias": "showLabel"; "required": false; }; "step": { "alias": "step"; "required": false; }; "template": { "alias": "template"; "required": false; }; "type": { "alias": "type"; "required": false; }; "validations": { "alias": "validations"; "required": false; }; }, {}, never, never, true, never>;
|
|
725
|
+
}
|
|
726
|
+
|
|
727
|
+
declare class FormGroupComponent {
|
|
728
|
+
shouldExpand: boolean;
|
|
729
|
+
label: string;
|
|
730
|
+
protected get hasTitle(): boolean;
|
|
731
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FormGroupComponent, never>;
|
|
732
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FormGroupComponent, "lib-form-group", never, { "shouldExpand": { "alias": "shouldExpand"; "required": false; }; "label": { "alias": "label"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
733
|
+
}
|
|
734
|
+
|
|
735
|
+
declare class GroupAccordionComponent {
|
|
736
|
+
private containerElementRef;
|
|
737
|
+
label: string;
|
|
738
|
+
private _maxHeight;
|
|
739
|
+
protected collapsed: boolean;
|
|
740
|
+
get maxHeight(): number;
|
|
741
|
+
protected onToggle(): void;
|
|
742
|
+
private clearMaxHeight;
|
|
743
|
+
private setMaxHeight;
|
|
744
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GroupAccordionComponent, never>;
|
|
745
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GroupAccordionComponent, "lib-group-accordion", never, { "label": { "alias": "label"; "required": true; }; }, {}, never, ["*"], true, never>;
|
|
746
|
+
}
|
|
747
|
+
|
|
748
|
+
declare class ScrollSpyDirective implements AfterViewInit {
|
|
749
|
+
spiedTags: Array<string>;
|
|
750
|
+
activeSectionChange: EventEmitter<number>;
|
|
751
|
+
private _el;
|
|
752
|
+
private activeSection;
|
|
753
|
+
private sections;
|
|
754
|
+
ngAfterViewInit(): void;
|
|
755
|
+
onScroll(event: any): void;
|
|
756
|
+
scrollTo(section: number): void;
|
|
757
|
+
select(section: number): void;
|
|
758
|
+
private updateSections;
|
|
759
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ScrollSpyDirective, never>;
|
|
760
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ScrollSpyDirective, "[libScrollSpy]", never, { "spiedTags": { "alias": "spiedTags"; "required": false; }; }, { "activeSectionChange": "activeSectionChange"; }, never, never, true, never>;
|
|
761
|
+
}
|
|
762
|
+
|
|
763
|
+
declare class GroupContainerComponent {
|
|
764
|
+
scrollSpy: ScrollSpyDirective;
|
|
765
|
+
sections: QueryList<GroupAccordionComponent>;
|
|
766
|
+
get titles(): string[];
|
|
767
|
+
activeSection: number;
|
|
768
|
+
title?: string;
|
|
769
|
+
icon?: string;
|
|
770
|
+
activeSectionChanged(index: number): void;
|
|
771
|
+
scrollTo(section: number): void;
|
|
772
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GroupContainerComponent, never>;
|
|
773
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GroupContainerComponent, "lib-group-container", never, { "title": { "alias": "title"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; }, {}, ["sections"], ["*"], true, never>;
|
|
774
|
+
}
|
|
775
|
+
|
|
776
|
+
declare class GroupScrollSpyComponent {
|
|
777
|
+
scrollSpy: ScrollSpyDirective;
|
|
778
|
+
sections: QueryList<GroupAccordionComponent>;
|
|
779
|
+
get titles(): string[];
|
|
780
|
+
activeSection: number;
|
|
781
|
+
activeSectionChanged(index: number): void;
|
|
782
|
+
scrollTo(section: number): void;
|
|
783
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GroupScrollSpyComponent, never>;
|
|
784
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GroupScrollSpyComponent, "lib-group-scroll-spy", never, {}, {}, ["sections"], ["*"], true, never>;
|
|
785
|
+
}
|
|
786
|
+
|
|
787
|
+
declare class ModalComponent extends BaseComponent implements IModal {
|
|
788
|
+
closeButtonText: string;
|
|
789
|
+
dialog: boolean;
|
|
790
|
+
modalProcessing: boolean;
|
|
791
|
+
position: 'top' | 'left' | 'right' | 'bottom' | 'center';
|
|
792
|
+
size: 'sm' | 'md' | 'lg' | 'xl' | '2xl' | '3xl' | '4xl' | '5xl' | '6xl' | '7xl' | 'full' | 'auto';
|
|
793
|
+
title: string;
|
|
794
|
+
closed: EventEmitter<void>;
|
|
795
|
+
private _show;
|
|
796
|
+
private clickedOutside;
|
|
797
|
+
private elementRef;
|
|
798
|
+
get isShown(): boolean;
|
|
799
|
+
constructor();
|
|
800
|
+
protected onCloseClick(): void;
|
|
801
|
+
closeModal(): void;
|
|
802
|
+
toggleModal(): void;
|
|
803
|
+
protected bodyMouseDown(event: MouseEvent): void;
|
|
804
|
+
protected bodyMouseUp(event: MouseEvent): void;
|
|
805
|
+
protected documentKeyDown(event: Event): void;
|
|
806
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ModalComponent, never>;
|
|
807
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ModalComponent, "lib-modal", never, { "closeButtonText": { "alias": "closeButtonText"; "required": false; }; "dialog": { "alias": "dialog"; "required": false; }; "modalProcessing": { "alias": "modalProcessing"; "required": false; }; "position": { "alias": "position"; "required": false; }; "size": { "alias": "size"; "required": false; }; "title": { "alias": "title"; "required": false; }; }, { "closed": "closed"; }, never, ["[body]", "[footer]"], true, never>;
|
|
808
|
+
}
|
|
809
|
+
|
|
810
|
+
declare class MultiEditorComponent extends ModalComponent implements OnInit {
|
|
811
|
+
private modal;
|
|
812
|
+
addButtonLabel: string;
|
|
813
|
+
formGroup: FormGroup<any>;
|
|
814
|
+
removeButtonLabel: string;
|
|
815
|
+
showAddButton: boolean;
|
|
816
|
+
showDeleteButton: boolean;
|
|
817
|
+
protected gridLoading: boolean;
|
|
818
|
+
private dataGridDataset;
|
|
819
|
+
private formService;
|
|
820
|
+
private multiEditorDataset;
|
|
821
|
+
private selectedKey?;
|
|
822
|
+
private selectedValue?;
|
|
823
|
+
protected get formLoading(): boolean;
|
|
824
|
+
protected get hasSelectedKey(): boolean;
|
|
825
|
+
constructor();
|
|
826
|
+
ngOnInit(): void;
|
|
827
|
+
protected onDeleteClick(): void;
|
|
828
|
+
protected onNewClick(): void;
|
|
829
|
+
protected onSaveClick(): void;
|
|
830
|
+
closeModal(): void;
|
|
831
|
+
toggleModal(): void;
|
|
832
|
+
private clearAllFormArrays;
|
|
833
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MultiEditorComponent, never>;
|
|
834
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MultiEditorComponent, "lib-multi-editor", never, { "addButtonLabel": { "alias": "addButtonLabel"; "required": false; }; "formGroup": { "alias": "formGroup"; "required": false; }; "removeButtonLabel": { "alias": "removeButtonLabel"; "required": false; }; "showAddButton": { "alias": "showAddButton"; "required": false; }; "showDeleteButton": { "alias": "showDeleteButton"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
835
|
+
}
|
|
836
|
+
|
|
837
|
+
declare class MultiSelectComponent extends ModalComponent implements OnInit {
|
|
838
|
+
private modal;
|
|
839
|
+
itemTemplate: TemplateRef<any>;
|
|
840
|
+
protected isResultGridLoading: boolean;
|
|
841
|
+
protected isSearchGridLoading: boolean;
|
|
842
|
+
protected resultDataset: MultiSelectResultDataset;
|
|
843
|
+
protected searchCriteria: string;
|
|
844
|
+
private _searchColumn;
|
|
845
|
+
private dataGridDataset;
|
|
846
|
+
private get searchColumn();
|
|
847
|
+
constructor();
|
|
848
|
+
ngOnInit(): void;
|
|
849
|
+
protected onSave(): void;
|
|
850
|
+
protected onSearch(): void;
|
|
851
|
+
closeModal(): void;
|
|
852
|
+
toggleModal(): void;
|
|
853
|
+
private clearSearch;
|
|
854
|
+
private updateSelectedItems;
|
|
855
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MultiSelectComponent, never>;
|
|
856
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MultiSelectComponent, "lib-multi-select", never, { "itemTemplate": { "alias": "itemTemplate"; "required": false; }; }, {}, never, never, true, never>;
|
|
857
|
+
}
|
|
858
|
+
|
|
859
|
+
declare class MultiSelectResultGridComponent extends BaseComponent implements OnInit {
|
|
860
|
+
isDisabled: boolean;
|
|
861
|
+
template: TemplateRef<any>;
|
|
862
|
+
protected dataGridDataset: DataGridDataset;
|
|
863
|
+
protected isLoading: boolean;
|
|
864
|
+
protected resultDataset: MultiSelectResultDataset;
|
|
865
|
+
constructor();
|
|
866
|
+
ngOnInit(): void;
|
|
867
|
+
onItemRemoved(rowIndex: number): void;
|
|
868
|
+
protected onScrolled(event: any): void;
|
|
869
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MultiSelectResultGridComponent, never>;
|
|
870
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MultiSelectResultGridComponent, "lib-multi-select-result-grid", never, { "isDisabled": { "alias": "isDisabled"; "required": false; }; "template": { "alias": "template"; "required": false; }; }, {}, never, never, true, never>;
|
|
871
|
+
}
|
|
872
|
+
|
|
873
|
+
declare class SidebarComponent extends BaseComponent implements AfterViewInit, OnInit {
|
|
874
|
+
protected onBodyMouseDown(event: MouseEvent): void;
|
|
875
|
+
protected onBodyMouseUp(_event: MouseEvent): void;
|
|
876
|
+
protected onDocumentKeyDown(event: Event): void;
|
|
877
|
+
protected onResize(_event: Event): void;
|
|
878
|
+
private sidebarConfigs;
|
|
879
|
+
protected configErrorText: string;
|
|
880
|
+
protected configLoadingText: string;
|
|
881
|
+
protected hasFailed: boolean;
|
|
882
|
+
protected menus: SidebarMenu[];
|
|
883
|
+
protected regions: SidebarRegion[];
|
|
884
|
+
private sidebarService;
|
|
885
|
+
private wasClickedOutside;
|
|
886
|
+
protected get isActive(): boolean;
|
|
887
|
+
protected get isCollapsed(): boolean;
|
|
888
|
+
protected get isLoading(): boolean;
|
|
889
|
+
constructor();
|
|
890
|
+
ngAfterViewInit(): void;
|
|
891
|
+
ngOnInit(): void;
|
|
892
|
+
collapse(): void;
|
|
893
|
+
protected trackByFn(_index: number, item: SidebarMenu): number;
|
|
894
|
+
protected trackByRegion(_index: number, region: SidebarRegion): string;
|
|
895
|
+
/** Whether this top-level menu stands for an area rather than a destination of its own. */
|
|
896
|
+
private isArea;
|
|
897
|
+
private groupByRegionLabel;
|
|
898
|
+
private groupByRootMenus;
|
|
899
|
+
private groupIntoRegions;
|
|
900
|
+
/**
|
|
901
|
+
* Fetches the children of every area up front, because they are rendered flat rather than
|
|
902
|
+
* behind a click, so the lazy load a collapsible parent relies on would never be triggered.
|
|
903
|
+
*/
|
|
904
|
+
private loadAreaChildren;
|
|
905
|
+
private deactivate;
|
|
906
|
+
private updateShouldActivate;
|
|
907
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SidebarComponent, never>;
|
|
908
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SidebarComponent, "lib-sidebar", never, {}, {}, never, ["*"], true, never>;
|
|
909
|
+
}
|
|
910
|
+
|
|
911
|
+
declare class RibbonButtonComponent {
|
|
912
|
+
color: string;
|
|
913
|
+
defaultOption: number;
|
|
914
|
+
disabled: boolean;
|
|
915
|
+
icon?: string;
|
|
916
|
+
iconSize: 'small' | 'large';
|
|
917
|
+
label: string;
|
|
918
|
+
loading: boolean;
|
|
919
|
+
options: IRibbonButtonOption[];
|
|
920
|
+
tooltip: string;
|
|
921
|
+
action: EventEmitter<string | undefined>;
|
|
922
|
+
protected bodyMouseDown(event: MouseEvent): void;
|
|
923
|
+
protected bodyMouseUp(event: MouseEvent): void;
|
|
924
|
+
protected documentKeyDown(event: Event): void;
|
|
925
|
+
protected showDropdown: boolean;
|
|
926
|
+
protected status: null | 'failure' | 'warning' | 'success';
|
|
927
|
+
private clickedOutside;
|
|
928
|
+
protected get buttonIcon(): string;
|
|
929
|
+
protected get isButtonDisabled(): boolean;
|
|
930
|
+
protected onButtonClicked(): void;
|
|
931
|
+
protected onOptionClicked(option: IRibbonButtonOption): void;
|
|
932
|
+
protected onShowHideDropdown(): void;
|
|
933
|
+
finishLoading(status: 'failure' | 'warning' | 'success'): void;
|
|
934
|
+
startLoading(): void;
|
|
935
|
+
protected isOptionDisabled(option: IRibbonButtonOption): boolean;
|
|
936
|
+
protected isOptionVisible(option: IRibbonButtonOption): boolean;
|
|
937
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RibbonButtonComponent, never>;
|
|
938
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RibbonButtonComponent, "lib-ribbon-button", never, { "color": { "alias": "color"; "required": false; }; "defaultOption": { "alias": "defaultOption"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconSize": { "alias": "iconSize"; "required": false; }; "label": { "alias": "label"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "options": { "alias": "options"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; }, { "action": "action"; }, never, never, true, never>;
|
|
939
|
+
}
|
|
940
|
+
|
|
941
|
+
declare class RibbonComponent {
|
|
942
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RibbonComponent, never>;
|
|
943
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RibbonComponent, "lib-ribbon", never, {}, {}, never, ["*", "[right]"], true, never>;
|
|
944
|
+
}
|
|
945
|
+
|
|
946
|
+
declare class RibbonGroupComponent {
|
|
947
|
+
children?: QueryList<RibbonGroupChild>;
|
|
948
|
+
label: string;
|
|
949
|
+
protected get hasChildren(): boolean;
|
|
950
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RibbonGroupComponent, never>;
|
|
951
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RibbonGroupComponent, "lib-ribbon-group", never, { "label": { "alias": "label"; "required": false; }; }, {}, ["children"], ["*"], true, never>;
|
|
952
|
+
}
|
|
953
|
+
|
|
954
|
+
declare class DateHelpers {
|
|
955
|
+
static diffDays(initialDate: Date, finalDate: Date): number;
|
|
956
|
+
}
|
|
957
|
+
|
|
958
|
+
/**
|
|
959
|
+
* Tracks the form controls that exist only to show a catalog selection's label.
|
|
960
|
+
*
|
|
961
|
+
* `lib-catalog-select` works in pairs: the control named by `controlName` holds the identifier, and
|
|
962
|
+
* the one named by `displayControlName` holds the text the user reads. The second is created by the
|
|
963
|
+
* component itself when a screen does not declare it, so a form ends up carrying controls nobody
|
|
964
|
+
* wrote down — and a filters form then submits them alongside the real filters.
|
|
965
|
+
*
|
|
966
|
+
* The mark lives in a `WeakSet` keyed by the control instance rather than by its name. That is the
|
|
967
|
+
* only scope that is actually correct: two forms may each have an `employeeName`, and only the one
|
|
968
|
+
* a catalog select drives is a display control. It also keeps nothing alive.
|
|
969
|
+
*/
|
|
970
|
+
declare class DisplayControls {
|
|
971
|
+
private static readonly marked;
|
|
972
|
+
/**
|
|
973
|
+
* Whether the control exists only to display a catalog selection's label.
|
|
974
|
+
*
|
|
975
|
+
* @param control The control, which may be absent.
|
|
976
|
+
* @returns `true` when a catalog select drives it as its display control.
|
|
977
|
+
*/
|
|
978
|
+
static isDisplayControl(control: AbstractControl | null | undefined): boolean;
|
|
979
|
+
/**
|
|
980
|
+
* Marks the control as existing only to display a catalog selection's label.
|
|
981
|
+
*
|
|
982
|
+
* @param control The control, which may be absent.
|
|
983
|
+
*/
|
|
984
|
+
static markAsDisplayControl(control: AbstractControl | null | undefined): void;
|
|
985
|
+
}
|
|
986
|
+
|
|
987
|
+
declare class GuidHelper {
|
|
988
|
+
static generateGUID(): string;
|
|
989
|
+
}
|
|
990
|
+
|
|
991
|
+
declare abstract class RouterFormatter {
|
|
992
|
+
static getURL(route: ActivatedRouteSnapshot): string;
|
|
993
|
+
}
|
|
994
|
+
|
|
995
|
+
declare class EnumTranslatePipe implements PipeTransform {
|
|
996
|
+
private translate;
|
|
997
|
+
transform(enumType: any): Array<{
|
|
998
|
+
value: any;
|
|
999
|
+
display: Observable<any>;
|
|
1000
|
+
}>;
|
|
1001
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<EnumTranslatePipe, never>;
|
|
1002
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<EnumTranslatePipe, "enumTranslate", true>;
|
|
1003
|
+
}
|
|
1004
|
+
|
|
1005
|
+
declare class ReplacePipe implements PipeTransform {
|
|
1006
|
+
transform(message: string, searchValue: string, replaceValue?: string | null): string;
|
|
1007
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ReplacePipe, never>;
|
|
1008
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<ReplacePipe, "replace", true>;
|
|
1009
|
+
}
|
|
1010
|
+
|
|
1011
|
+
declare class ReplaceManyPipe implements PipeTransform {
|
|
1012
|
+
transform(message: string, replaceArgs?: {
|
|
1013
|
+
[id: string]: string | null | undefined;
|
|
1014
|
+
}): string;
|
|
1015
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ReplaceManyPipe, never>;
|
|
1016
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<ReplaceManyPipe, "replaceMany", true>;
|
|
1017
|
+
}
|
|
1018
|
+
|
|
1019
|
+
declare class LibraryModule {
|
|
1020
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LibraryModule, never>;
|
|
1021
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<LibraryModule, never, [typeof CatalogSelectComponent, typeof DataGridComponent, typeof DataGridRowComponent, typeof FormInputComponent, typeof FormInputGroupComponent, typeof FormGroupComponent, typeof GroupAccordionComponent, typeof GroupContainerComponent, typeof GroupScrollSpyComponent, typeof SidebarComponent, typeof ModalComponent, typeof MultiEditorComponent, typeof MultiSelectComponent, typeof MultiSelectResultGridComponent, typeof RibbonComponent, typeof RibbonButtonComponent, typeof RibbonGroupComponent, typeof ScrollSpyDirective, typeof EnumTranslatePipe, typeof ReplacePipe, typeof ReplaceManyPipe], [typeof CatalogSelectComponent, typeof DataGridComponent, typeof DataGridRowComponent, typeof FormInputComponent, typeof FormInputGroupComponent, typeof FormGroupComponent, typeof GroupAccordionComponent, typeof GroupContainerComponent, typeof GroupScrollSpyComponent, typeof SidebarComponent, typeof ModalComponent, typeof MultiEditorComponent, typeof MultiSelectComponent, typeof MultiSelectResultGridComponent, typeof RibbonComponent, typeof RibbonButtonComponent, typeof RibbonGroupComponent, typeof ScrollSpyDirective, typeof EnumTranslatePipe, typeof ReplacePipe, typeof ReplaceManyPipe]>;
|
|
1022
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<LibraryModule>;
|
|
1023
|
+
}
|
|
1024
|
+
|
|
1025
|
+
declare class DataGridConfigsProvider extends GridConfigsProvider<DataGridConfigs> {
|
|
1026
|
+
constructor();
|
|
1027
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DataGridConfigsProvider, never>;
|
|
1028
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<any>;
|
|
1029
|
+
}
|
|
1030
|
+
|
|
1031
|
+
declare class DateValidators {
|
|
1032
|
+
static greaterThanControl(controlName: string): ValidatorFn;
|
|
1033
|
+
static greaterThanOrEqualControl(controlName: string): ValidatorFn;
|
|
1034
|
+
static greaterThanOrEqualToday(control: AbstractControl): ValidationErrors | null;
|
|
1035
|
+
static greaterThanToday(control: AbstractControl): ValidationErrors | null;
|
|
1036
|
+
static lessThanControl(controlName: string): ValidatorFn;
|
|
1037
|
+
static lessThanOrEqualControl(controlName: string): ValidatorFn;
|
|
1038
|
+
static lessThanOrEqualToday(control: AbstractControl): ValidationErrors | null;
|
|
1039
|
+
static lessThanToday(control: AbstractControl): ValidationErrors | null;
|
|
1040
|
+
static maxDate(maxDate: Date): ValidatorFn;
|
|
1041
|
+
static minDate(minDate: Date): ValidatorFn;
|
|
1042
|
+
}
|
|
1043
|
+
|
|
1044
|
+
export { BaseComponent, BaseDataset, CatalogSelectComponent, CatalogService, DataGridComponent, DataGridConfigsProvider, DataGridDataset, DataGridRowComponent, DataProviderService, DateHelpers, DateValidators, DisplayControls, EnumTranslatePipe, FormGroupComponent, FormGroupService, FormInputComponent, FormInputGroupComponent, FormService, GridConfigsProvider, GridDataset, GroupAccordionComponent, GroupContainerComponent, GroupScrollSpyComponent, GuidHelper, LibraryModule, ModalComponent, MultiEditorComponent, MultiEditorDataset, MultiSelectComponent, MultiSelectResultDataset, MultiSelectResultGridComponent, ReplaceManyPipe, ReplacePipe, RibbonButtonComponent, RibbonComponent, RibbonGroupChild, RibbonGroupComponent, RouterFormatter, SIDEBAR_CONFIGS, ScrollSpyDirective, SidebarComponent, SidebarConfigs, SidebarMenu, SidebarMenuOpenMode, SidebarService, toSidebarMenuOpenMode };
|
|
1045
|
+
export type { DataGridConfigs, GridConfigs, IBatchUpdate, ICatalogEntry, ICatalogResult, IGridColumn, IListParameters, IListResult, IModal, IMultiEditorChanges, IMultiSelectorChanges, IRibbonButtonOption, ISidebarProfile, ISummaryParameters, ITabView, SidebarRegion };
|