osl-base-extended 0.1.11 → 0.1.13
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/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { TemplateRef, EventEmitter, OnInit, OnChanges, SimpleChanges, ElementRef } from '@angular/core';
|
|
3
|
-
import * as
|
|
2
|
+
import { TemplateRef, EventEmitter, OnInit, OnChanges, ChangeDetectorRef, SimpleChanges, ElementRef } from '@angular/core';
|
|
3
|
+
import * as i22 from '@angular/material/dialog';
|
|
4
4
|
import { MatDialogRef } from '@angular/material/dialog';
|
|
5
|
-
import { HttpClient } from '@angular/common/http';
|
|
6
|
-
import * as
|
|
5
|
+
import { HttpHeaders, HttpClient } from '@angular/common/http';
|
|
6
|
+
import * as i18 from '@angular/forms';
|
|
7
7
|
import { FormControl } from '@angular/forms';
|
|
8
|
-
import * as
|
|
9
|
-
import * as
|
|
10
|
-
import * as
|
|
11
|
-
import * as
|
|
12
|
-
import * as
|
|
8
|
+
import * as i17 from '@angular/common';
|
|
9
|
+
import * as i19 from '@angular/material/form-field';
|
|
10
|
+
import * as i20 from '@angular/material/input';
|
|
11
|
+
import * as i21 from '@angular/material/icon';
|
|
12
|
+
import * as i23 from '@angular/material/button';
|
|
13
13
|
|
|
14
14
|
declare class OslBaseExtended {
|
|
15
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<OslBaseExtended, never>;
|
|
@@ -39,7 +39,7 @@ declare class baseComponent {
|
|
|
39
39
|
protected showError(error: string | string[]): void;
|
|
40
40
|
protected navigate(url: string): void;
|
|
41
41
|
private showSnack;
|
|
42
|
-
protected openDialog(header
|
|
42
|
+
protected openDialog(header?: string | TemplateRef<any>, formBody?: TemplateRef<any>, formFooter?: TemplateRef<any>, width?: string, data?: any, component?: any): MatDialogRef<any>;
|
|
43
43
|
protected openDeleteDialog(message?: string, title?: string, confirmText?: string, cancelText?: string, data?: any): MatDialogRef<DeleteConfirmation>;
|
|
44
44
|
static ɵfac: i0.ɵɵFactoryDeclaration<baseComponent, never>;
|
|
45
45
|
static ɵprov: i0.ɵɵInjectableDeclaration<baseComponent>;
|
|
@@ -50,6 +50,7 @@ interface HttpResponse<T = any> {
|
|
|
50
50
|
statusCode: number;
|
|
51
51
|
error: string;
|
|
52
52
|
result: T;
|
|
53
|
+
headers?: HttpHeaders;
|
|
53
54
|
}
|
|
54
55
|
interface myParams {
|
|
55
56
|
property: string;
|
|
@@ -60,6 +61,8 @@ declare abstract class Httpbase {
|
|
|
60
61
|
private controllerName;
|
|
61
62
|
constructor(controller: string);
|
|
62
63
|
private getEndPoint;
|
|
64
|
+
getConfig(): Promise<HttpResponse<unknown>>;
|
|
65
|
+
search(body: any): Promise<HttpResponse<unknown>>;
|
|
63
66
|
private getHeaders;
|
|
64
67
|
private handleSuccess;
|
|
65
68
|
private handleError;
|
|
@@ -80,10 +83,12 @@ declare class DialogWrapper {
|
|
|
80
83
|
static ɵcmp: i0.ɵɵComponentDeclaration<DialogWrapper, "dialog-wrapper", never, {}, {}, never, never, true, never>;
|
|
81
84
|
}
|
|
82
85
|
declare class Dialog {
|
|
83
|
-
header
|
|
84
|
-
formBody
|
|
85
|
-
formFooter
|
|
86
|
+
header?: string | TemplateRef<any>;
|
|
87
|
+
formBody?: TemplateRef<any> | undefined;
|
|
88
|
+
formFooter?: TemplateRef<any> | undefined;
|
|
86
89
|
data?: any;
|
|
90
|
+
component?: any;
|
|
91
|
+
dialogRef?: any;
|
|
87
92
|
}
|
|
88
93
|
|
|
89
94
|
type InputType = 'text' | 'password' | 'email' | 'number' | 'tel' | 'url';
|
|
@@ -155,10 +160,12 @@ declare class Osltextarea {
|
|
|
155
160
|
}
|
|
156
161
|
|
|
157
162
|
declare class DynamicForm implements OnInit, OnChanges {
|
|
163
|
+
cdr: ChangeDetectorRef;
|
|
158
164
|
elements: elements[];
|
|
159
165
|
model: any;
|
|
160
166
|
modelChange: EventEmitter<any>;
|
|
161
167
|
private datasourceCache;
|
|
168
|
+
constructor(cdr: ChangeDetectorRef);
|
|
162
169
|
ngOnInit(): void;
|
|
163
170
|
ngOnChanges(changes: SimpleChanges): void;
|
|
164
171
|
private loadApiDatasources;
|
|
@@ -188,6 +195,7 @@ interface elements {
|
|
|
188
195
|
/** API-based datasource loading */
|
|
189
196
|
apiService?: any;
|
|
190
197
|
apiMethod?: string;
|
|
198
|
+
apiConfigMethod?: string;
|
|
191
199
|
apiBody?: any;
|
|
192
200
|
inputType?: InputType;
|
|
193
201
|
placeholder?: string;
|
|
@@ -217,6 +225,8 @@ interface elements {
|
|
|
217
225
|
indeterminate?: boolean;
|
|
218
226
|
autocompletePlaceholder?: string;
|
|
219
227
|
templateRef?: TemplateRef<any>;
|
|
228
|
+
searchType?: 'Api' | 'Local';
|
|
229
|
+
objectName?: string;
|
|
220
230
|
}
|
|
221
231
|
|
|
222
232
|
declare class OslSelect {
|
|
@@ -278,8 +288,9 @@ declare class OslSlideToggle {
|
|
|
278
288
|
static ɵcmp: i0.ɵɵComponentDeclaration<OslSlideToggle, "osl-slide-toggle", never, { "label": { "alias": "label"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "model": { "alias": "model"; "required": false; }; "labelPosition": { "alias": "labelPosition"; "required": false; }; "trueLabel": { "alias": "trueLabel"; "required": false; }; "falseLabel": { "alias": "falseLabel"; "required": false; }; }, { "modelChange": "modelChange"; "changeEv": "changeEv"; }, never, never, false, never>;
|
|
279
289
|
}
|
|
280
290
|
|
|
281
|
-
declare class OslAutocomplete implements OnInit, OnChanges {
|
|
291
|
+
declare class OslAutocomplete extends baseComponent implements OnInit, OnChanges {
|
|
282
292
|
private elRef;
|
|
293
|
+
cdr: ChangeDetectorRef;
|
|
283
294
|
label: string;
|
|
284
295
|
required: boolean;
|
|
285
296
|
disabled: boolean;
|
|
@@ -289,13 +300,21 @@ declare class OslAutocomplete implements OnInit, OnChanges {
|
|
|
289
300
|
valueField: string;
|
|
290
301
|
placeholder: string;
|
|
291
302
|
loading: boolean;
|
|
303
|
+
searchType: 'Local' | 'Api';
|
|
304
|
+
methodName: string;
|
|
305
|
+
configMethodName: string;
|
|
306
|
+
service: any;
|
|
307
|
+
object: any;
|
|
292
308
|
modelChange: EventEmitter<any>;
|
|
293
309
|
changeEv: EventEmitter<any>;
|
|
310
|
+
private listerComponent;
|
|
311
|
+
inputControl: FormControl<string | null>;
|
|
294
312
|
inputValue: string;
|
|
295
313
|
showDropdown: boolean;
|
|
296
314
|
filteredItems: any[];
|
|
297
315
|
touched: boolean;
|
|
298
|
-
constructor(elRef: ElementRef);
|
|
316
|
+
constructor(elRef: ElementRef, cdr: ChangeDetectorRef);
|
|
317
|
+
openLister(): void;
|
|
299
318
|
ngOnInit(): void;
|
|
300
319
|
ngOnChanges(): void;
|
|
301
320
|
private syncInputFromModel;
|
|
@@ -304,12 +323,13 @@ declare class OslAutocomplete implements OnInit, OnChanges {
|
|
|
304
323
|
get isInvalid(): boolean;
|
|
305
324
|
onInput(val: string): void;
|
|
306
325
|
onFocus(): void;
|
|
326
|
+
onFocusOut(): void;
|
|
307
327
|
onBlur(): void;
|
|
308
|
-
clearValue(event
|
|
328
|
+
clearValue(event?: Event): void;
|
|
309
329
|
selectItem(item: any): void;
|
|
310
330
|
onDocumentClick(event: MouseEvent): void;
|
|
311
331
|
static ɵfac: i0.ɵɵFactoryDeclaration<OslAutocomplete, never>;
|
|
312
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<OslAutocomplete, "osl-autocomplete", never, { "label": { "alias": "label"; "required": false; }; "required": { "alias": "required"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "model": { "alias": "model"; "required": false; }; "datasource": { "alias": "datasource"; "required": false; }; "displayField": { "alias": "displayField"; "required": false; }; "valueField": { "alias": "valueField"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; }, { "modelChange": "modelChange"; "changeEv": "changeEv"; }, never, never, false, never>;
|
|
332
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OslAutocomplete, "osl-autocomplete", never, { "label": { "alias": "label"; "required": false; }; "required": { "alias": "required"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "model": { "alias": "model"; "required": false; }; "datasource": { "alias": "datasource"; "required": false; }; "displayField": { "alias": "displayField"; "required": false; }; "valueField": { "alias": "valueField"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "searchType": { "alias": "searchType"; "required": false; }; "methodName": { "alias": "methodName"; "required": false; }; "configMethodName": { "alias": "configMethodName"; "required": false; }; "service": { "alias": "service"; "required": false; }; "object": { "alias": "object"; "required": false; }; }, { "modelChange": "modelChange"; "changeEv": "changeEv"; }, never, never, false, never>;
|
|
313
333
|
}
|
|
314
334
|
|
|
315
335
|
declare class OslFileUpload {
|
|
@@ -394,6 +414,7 @@ interface OslSortEvent {
|
|
|
394
414
|
interface OslPageEvent {
|
|
395
415
|
page: number;
|
|
396
416
|
pageSize: number;
|
|
417
|
+
searchValue?: any;
|
|
397
418
|
}
|
|
398
419
|
declare class OslGrid implements OnChanges {
|
|
399
420
|
columns: OslGridColumn[];
|
|
@@ -410,16 +431,19 @@ declare class OslGrid implements OnChanges {
|
|
|
410
431
|
tableHeight: string;
|
|
411
432
|
/** When true, shows skeleton loading rows instead of data. */
|
|
412
433
|
loading: boolean;
|
|
434
|
+
isSelectable: boolean;
|
|
413
435
|
pageChange: EventEmitter<OslPageEvent>;
|
|
414
436
|
pageSizeChange: EventEmitter<OslPageEvent>;
|
|
415
437
|
sortChange: EventEmitter<OslSortEvent>;
|
|
416
438
|
editClick: EventEmitter<any>;
|
|
417
439
|
deleteClick: EventEmitter<any>;
|
|
440
|
+
onRowClick: EventEmitter<any>;
|
|
418
441
|
currentPage: number;
|
|
419
442
|
sortKey: string;
|
|
420
443
|
sortAsc: boolean;
|
|
421
444
|
pageSizeOptions: number[];
|
|
422
445
|
get skeletonRows(): number[];
|
|
446
|
+
get skeletonColumns(): number[];
|
|
423
447
|
get _total(): number;
|
|
424
448
|
get totalPages(): number;
|
|
425
449
|
get sortedData(): any[];
|
|
@@ -433,7 +457,17 @@ declare class OslGrid implements OnChanges {
|
|
|
433
457
|
onPageSizeChange(size: number): void;
|
|
434
458
|
getCellValue(row: any, col: OslGridColumn): string;
|
|
435
459
|
static ɵfac: i0.ɵɵFactoryDeclaration<OslGrid, never>;
|
|
436
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<OslGrid, "osl-grid", never, { "columns": { "alias": "columns"; "required": false; }; "datasource": { "alias": "datasource"; "required": false; }; "isPaginated": { "alias": "isPaginated"; "required": false; }; "pageSize": { "alias": "pageSize"; "required": false; }; "autoMode": { "alias": "autoMode"; "required": false; }; "totalRecords": { "alias": "totalRecords"; "required": false; }; "tableHeight": { "alias": "tableHeight"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; }, { "datasourceChange": "datasourceChange"; "pageChange": "pageChange"; "pageSizeChange": "pageSizeChange"; "sortChange": "sortChange"; "editClick": "editClick"; "deleteClick": "deleteClick"; }, never, never, false, never>;
|
|
460
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OslGrid, "osl-grid", never, { "columns": { "alias": "columns"; "required": false; }; "datasource": { "alias": "datasource"; "required": false; }; "isPaginated": { "alias": "isPaginated"; "required": false; }; "pageSize": { "alias": "pageSize"; "required": false; }; "autoMode": { "alias": "autoMode"; "required": false; }; "totalRecords": { "alias": "totalRecords"; "required": false; }; "tableHeight": { "alias": "tableHeight"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "isSelectable": { "alias": "isSelectable"; "required": false; }; }, { "datasourceChange": "datasourceChange"; "pageChange": "pageChange"; "pageSizeChange": "pageSizeChange"; "sortChange": "sortChange"; "editClick": "editClick"; "deleteClick": "deleteClick"; "onRowClick": "onRowClick"; }, never, never, false, never>;
|
|
461
|
+
}
|
|
462
|
+
|
|
463
|
+
declare class OslSearchbar {
|
|
464
|
+
label: string;
|
|
465
|
+
onSearch: EventEmitter<any>;
|
|
466
|
+
searchQuery: string;
|
|
467
|
+
searchControl: FormControl<string | null>;
|
|
468
|
+
ngOnInit(): void;
|
|
469
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OslSearchbar, never>;
|
|
470
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OslSearchbar, "osl-searchbar", never, { "label": { "alias": "label"; "required": false; }; }, { "onSearch": "onSearch"; }, never, never, false, never>;
|
|
437
471
|
}
|
|
438
472
|
|
|
439
473
|
interface OslSetupSaveEvent {
|
|
@@ -444,7 +478,8 @@ declare class OslSetup {
|
|
|
444
478
|
private _injector;
|
|
445
479
|
formBodyTpl: TemplateRef<any>;
|
|
446
480
|
formFooterTpl: TemplateRef<any>;
|
|
447
|
-
|
|
481
|
+
searchbar?: OslSearchbar;
|
|
482
|
+
title: string | undefined;
|
|
448
483
|
columns: OslGridColumn[];
|
|
449
484
|
datasource: any[];
|
|
450
485
|
isPaginated: boolean;
|
|
@@ -456,7 +491,9 @@ declare class OslSetup {
|
|
|
456
491
|
dialogWidth: string;
|
|
457
492
|
/** Dynamic form elements — when provided, enables Add/Edit dialog and action column. */
|
|
458
493
|
formElements: elements[];
|
|
494
|
+
beforeDisplay: ((model: any) => any | undefined) | undefined;
|
|
459
495
|
onAddEditFn: ((row?: any) => void | undefined) | undefined;
|
|
496
|
+
isLister: boolean;
|
|
460
497
|
onSearch: EventEmitter<string>;
|
|
461
498
|
onAdd: EventEmitter<void>;
|
|
462
499
|
onSave: EventEmitter<OslSetupSaveEvent>;
|
|
@@ -465,12 +502,14 @@ declare class OslSetup {
|
|
|
465
502
|
pageChange: EventEmitter<OslPageEvent>;
|
|
466
503
|
pageSizeChange: EventEmitter<OslPageEvent>;
|
|
467
504
|
sortChange: EventEmitter<OslSortEvent>;
|
|
505
|
+
onRowClick: EventEmitter<any>;
|
|
468
506
|
dialogModel: any;
|
|
469
507
|
dialogMode: 'add' | 'edit';
|
|
470
508
|
private _dialogRef;
|
|
471
509
|
get hasForm(): boolean;
|
|
472
510
|
/** Prepends the actions column when formElements are provided. */
|
|
473
511
|
get columnsWithActions(): OslGridColumn[];
|
|
512
|
+
onPageChange(eventEmitter: EventEmitter<OslPageEvent>, event: OslPageEvent): void;
|
|
474
513
|
openAddDialog(): void;
|
|
475
514
|
openEditDialog(row: any): void;
|
|
476
515
|
onDeleteClick(row: any): void;
|
|
@@ -478,17 +517,7 @@ declare class OslSetup {
|
|
|
478
517
|
saveDialog(): void;
|
|
479
518
|
private _openDialog;
|
|
480
519
|
static ɵfac: i0.ɵɵFactoryDeclaration<OslSetup, never>;
|
|
481
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<OslSetup, "osl-setup", never, { "title": { "alias": "title"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "datasource": { "alias": "datasource"; "required": false; }; "isPaginated": { "alias": "isPaginated"; "required": false; }; "pageSize": { "alias": "pageSize"; "required": false; }; "autoMode": { "alias": "autoMode"; "required": false; }; "tableHeight": { "alias": "tableHeight"; "required": false; }; "totalRecords": { "alias": "totalRecords"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "dialogWidth": { "alias": "dialogWidth"; "required": false; }; "formElements": { "alias": "formElements"; "required": false; }; "onAddEditFn": { "alias": "onAddEditFn"; "required": false; }; }, { "onSearch": "onSearch"; "onAdd": "onAdd"; "onSave": "onSave"; "onEdit": "onEdit"; "onDelete": "onDelete"; "pageChange": "pageChange"; "pageSizeChange": "pageSizeChange"; "sortChange": "sortChange"; }, never, never, false, never>;
|
|
482
|
-
}
|
|
483
|
-
|
|
484
|
-
declare class OslSearchbar {
|
|
485
|
-
label: string;
|
|
486
|
-
onSearch: EventEmitter<any>;
|
|
487
|
-
searchQuery: string;
|
|
488
|
-
searchControl: FormControl<string | null>;
|
|
489
|
-
ngOnInit(): void;
|
|
490
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<OslSearchbar, never>;
|
|
491
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<OslSearchbar, "osl-searchbar", never, { "label": { "alias": "label"; "required": false; }; }, { "onSearch": "onSearch"; }, never, never, false, never>;
|
|
520
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OslSetup, "osl-setup", never, { "title": { "alias": "title"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "datasource": { "alias": "datasource"; "required": false; }; "isPaginated": { "alias": "isPaginated"; "required": false; }; "pageSize": { "alias": "pageSize"; "required": false; }; "autoMode": { "alias": "autoMode"; "required": false; }; "tableHeight": { "alias": "tableHeight"; "required": false; }; "totalRecords": { "alias": "totalRecords"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "dialogWidth": { "alias": "dialogWidth"; "required": false; }; "formElements": { "alias": "formElements"; "required": false; }; "beforeDisplay": { "alias": "beforeDisplay"; "required": false; }; "onAddEditFn": { "alias": "onAddEditFn"; "required": false; }; "isLister": { "alias": "isLister"; "required": false; }; }, { "onSearch": "onSearch"; "onAdd": "onAdd"; "onSave": "onSave"; "onEdit": "onEdit"; "onDelete": "onDelete"; "pageChange": "pageChange"; "pageSizeChange": "pageSizeChange"; "sortChange": "sortChange"; "onRowClick": "onRowClick"; }, never, never, false, never>;
|
|
492
521
|
}
|
|
493
522
|
|
|
494
523
|
interface OslFormGridColumn {
|
|
@@ -538,11 +567,38 @@ declare class OslFormGrid {
|
|
|
538
567
|
static ɵcmp: i0.ɵɵComponentDeclaration<OslFormGrid, "osl-form-grid", never, { "columns": { "alias": "columns"; "required": false; }; "datasource": { "alias": "datasource"; "required": false; }; "isPaginated": { "alias": "isPaginated"; "required": false; }; "pageSize": { "alias": "pageSize"; "required": false; }; "canAdd": { "alias": "canAdd"; "required": false; }; "canDelete": { "alias": "canDelete"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "tableHeight": { "alias": "tableHeight"; "required": false; }; }, { "datasourceChange": "datasourceChange"; "rowAdd": "rowAdd"; "rowDelete": "rowDelete"; }, never, never, false, never>;
|
|
539
568
|
}
|
|
540
569
|
|
|
570
|
+
interface oslListerData {
|
|
571
|
+
title: string;
|
|
572
|
+
methodName: string;
|
|
573
|
+
service: any;
|
|
574
|
+
configMethodName: string;
|
|
575
|
+
}
|
|
576
|
+
|
|
577
|
+
declare class OslAutocompleteLister {
|
|
578
|
+
dialogRef: MatDialogRef<OslAutocompleteLister>;
|
|
579
|
+
cd: ChangeDetectorRef;
|
|
580
|
+
data: any;
|
|
581
|
+
column: OslGridColumn[];
|
|
582
|
+
datasource: never[];
|
|
583
|
+
autocompleteData: any;
|
|
584
|
+
recordCount: number;
|
|
585
|
+
loader: boolean;
|
|
586
|
+
constructor(dialogRef: MatDialogRef<OslAutocompleteLister>, cd: ChangeDetectorRef);
|
|
587
|
+
ngAfterViewInit(): Promise<void>;
|
|
588
|
+
getConfig(): Promise<void>;
|
|
589
|
+
search(searchValue?: any, page?: number, pageSize?: number): Promise<void>;
|
|
590
|
+
onPageChange(event: OslPageEvent): void;
|
|
591
|
+
onSearch(value: string): void;
|
|
592
|
+
onRowClick(event: any): void;
|
|
593
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OslAutocompleteLister, never>;
|
|
594
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OslAutocompleteLister, "osl-autocomplete-lister", never, { "data": { "alias": "data"; "required": false; }; }, {}, never, never, false, never>;
|
|
595
|
+
}
|
|
596
|
+
|
|
541
597
|
declare class FormStructureModule {
|
|
542
598
|
static ɵfac: i0.ɵɵFactoryDeclaration<FormStructureModule, never>;
|
|
543
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<FormStructureModule, [typeof DynamicForm, typeof Oslinput, typeof Osltextarea, typeof OslSelect, typeof OslRadio, typeof OslSlideToggle, typeof OslAutocomplete, typeof OslFileUpload, typeof OslDatepicker, typeof OslCheckbox, typeof OslButton, typeof OslSetup, typeof OslSearchbar, typeof OslGrid, typeof OslFormGrid], [typeof
|
|
599
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<FormStructureModule, [typeof DynamicForm, typeof Oslinput, typeof Osltextarea, typeof OslSelect, typeof OslRadio, typeof OslSlideToggle, typeof OslAutocomplete, typeof OslFileUpload, typeof OslDatepicker, typeof OslCheckbox, typeof OslButton, typeof OslSetup, typeof OslSearchbar, typeof OslGrid, typeof OslFormGrid, typeof OslAutocompleteLister], [typeof i17.NgTemplateOutlet, typeof i18.FormsModule, typeof i18.ReactiveFormsModule, typeof i19.MatFormFieldModule, typeof i20.MatInputModule, typeof i19.MatHint, typeof i21.MatIconModule, typeof i22.MatDialogModule, typeof i23.MatButtonModule], [typeof DynamicForm, typeof OslSetup, typeof OslGrid, typeof OslFormGrid, typeof Oslinput, typeof Osltextarea, typeof OslSelect, typeof OslRadio, typeof OslSlideToggle, typeof OslAutocomplete, typeof OslFileUpload, typeof OslDatepicker, typeof OslCheckbox, typeof OslButton, typeof OslSetup, typeof OslSearchbar, typeof OslAutocompleteLister]>;
|
|
544
600
|
static ɵinj: i0.ɵɵInjectorDeclaration<FormStructureModule>;
|
|
545
601
|
}
|
|
546
602
|
|
|
547
|
-
export { DeleteConfirmation, DeleteConfirmationData, Dialog, DialogWrapper, DynamicForm, FormStructureModule, Httpbase, OslAutocomplete, OslBaseExtended, OslButton, OslCheckbox, OslDatepicker, OslFileUpload, OslFormGrid, OslGrid, OslRadio, OslSearchbar, OslSelect, OslSetup, OslSlideToggle, Oslinput, Osltextarea, baseComponent };
|
|
548
|
-
export type { ButtonSize, ButtonVariant, DateInputType, HttpResponse, InputType, OslFormGridColumn, OslFormGridRowEvent, OslGridColumn, OslPageEvent, OslSetupSaveEvent, OslSortEvent, TextareaResize, elements, myParams };
|
|
603
|
+
export { DeleteConfirmation, DeleteConfirmationData, Dialog, DialogWrapper, DynamicForm, FormStructureModule, Httpbase, OslAutocomplete, OslAutocompleteLister, OslBaseExtended, OslButton, OslCheckbox, OslDatepicker, OslFileUpload, OslFormGrid, OslGrid, OslRadio, OslSearchbar, OslSelect, OslSetup, OslSlideToggle, Oslinput, Osltextarea, baseComponent };
|
|
604
|
+
export type { ButtonSize, ButtonVariant, DateInputType, HttpResponse, InputType, OslFormGridColumn, OslFormGridRowEvent, OslGridColumn, OslPageEvent, OslSetupSaveEvent, OslSortEvent, TextareaResize, elements, myParams, oslListerData };
|