@wemake4u/form-player-se 1.0.34 → 1.0.36
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/esm2022/lib/controls/tab.mjs +47 -1
- package/esm2022/lib/directives/grid.directive.mjs +3 -1
- package/esm2022/lib/directives/recursion.directive.mjs +18 -2
- package/esm2022/lib/directives/tabcontrol.directive.mjs +11 -1
- package/esm2022/lib/directives/text.directive.mjs +20 -2
- package/esm2022/lib/directives/valuesync.directive.mjs +63 -0
- package/esm2022/lib/dynamic-fields/dynamic-fields.component.mjs +27 -22
- package/esm2022/lib/dynamic-form/dynamic-form.component.mjs +2 -2
- package/esm2022/lib/locale/locale-de.mjs +4 -2
- package/esm2022/lib/locale/locale-en.mjs +4 -2
- package/esm2022/lib/locale/locale-es.mjs +4 -2
- package/esm2022/lib/locale/locale-fr.mjs +4 -2
- package/esm2022/lib/locale/locale-it.mjs +4 -2
- package/esm2022/lib/locale/locale-pt.mjs +4 -2
- package/esm2022/lib/services/autofocus.service.mjs +22 -0
- package/esm2022/lib/services/form.service.mjs +1 -27
- package/esm2022/lib/services/grid.service.mjs +38 -4
- package/esm2022/lib/services/validation.service.mjs +30 -3
- package/esm2022/lib/utils/focusable.mjs +12 -6
- package/fesm2022/wemake4u-form-player-se.mjs +293 -69
- package/fesm2022/wemake4u-form-player-se.mjs.map +1 -1
- package/lib/components/deleteRowRenderer/deleteRowRenderer.component.d.ts +2 -0
- package/lib/components/objectURLRenderer/objectURLRenderer.component.d.ts +2 -0
- package/lib/components/setFilter/setFilter.component.d.ts +2 -0
- package/lib/controls/tab.d.ts +7 -0
- package/lib/dialog/dialog.component.d.ts +14 -0
- package/lib/directives/recursion.directive.d.ts +1 -0
- package/lib/directives/tabcontrol.directive.d.ts +1 -0
- package/lib/directives/text.directive.d.ts +3 -0
- package/lib/directives/valuesync.directive.d.ts +15 -0
- package/lib/dynamic-fields/dynamic-fields.component.d.ts +19 -2
- package/lib/dynamic-form/dynamic-form.component.d.ts +14 -0
- package/lib/locale/locale-de.d.ts +2 -0
- package/lib/locale/locale-en.d.ts +2 -0
- package/lib/locale/locale-es.d.ts +2 -0
- package/lib/locale/locale-fr.d.ts +2 -0
- package/lib/locale/locale-it.d.ts +2 -0
- package/lib/locale/locale-pt.d.ts +2 -0
- package/lib/locale/locale.d.ts +14 -0
- package/lib/services/autofocus.service.d.ts +8 -0
- package/lib/services/grid.service.d.ts +6 -0
- package/lib/services/validation.service.d.ts +5 -0
- package/lib/utils/focusable.d.ts +1 -1
- package/package.json +1 -1
|
@@ -44,6 +44,8 @@ export declare class ObjectURLRendererComponent implements ICellRendererAngularC
|
|
|
44
44
|
ConfirmDelete: string;
|
|
45
45
|
MoveUp: string;
|
|
46
46
|
MoveDown: string;
|
|
47
|
+
NoData: string;
|
|
48
|
+
RequiredField: string;
|
|
47
49
|
};
|
|
48
50
|
agInit(params: ICellRendererParams): void;
|
|
49
51
|
onClick(event: Event): void;
|
package/lib/controls/tab.d.ts
CHANGED
|
@@ -1,4 +1,11 @@
|
|
|
1
1
|
import { ContainerControl } from "./control";
|
|
2
2
|
export declare class TabControl extends ContainerControl {
|
|
3
|
+
readonly canNext: () => boolean;
|
|
4
|
+
readonly goNext: () => void;
|
|
5
|
+
readonly canPrevious: () => boolean;
|
|
6
|
+
readonly goPrevious: () => void;
|
|
7
|
+
readonly setActiveIndex: (index: number) => void;
|
|
3
8
|
private getTab;
|
|
9
|
+
private getPreviousIndex;
|
|
10
|
+
private getNextIndex;
|
|
4
11
|
}
|
|
@@ -50,6 +50,8 @@ export declare class DialogComponent extends SirioDialogElement {
|
|
|
50
50
|
ConfirmDelete: string;
|
|
51
51
|
MoveUp: string;
|
|
52
52
|
MoveDown: string;
|
|
53
|
+
NoData: string;
|
|
54
|
+
RequiredField: string;
|
|
53
55
|
};
|
|
54
56
|
en: {
|
|
55
57
|
TypeToSearch: string;
|
|
@@ -92,6 +94,8 @@ export declare class DialogComponent extends SirioDialogElement {
|
|
|
92
94
|
ConfirmDelete: string;
|
|
93
95
|
MoveUp: string;
|
|
94
96
|
MoveDown: string;
|
|
97
|
+
NoData: string;
|
|
98
|
+
RequiredField: string;
|
|
95
99
|
};
|
|
96
100
|
de: {
|
|
97
101
|
TypeToSearch: string;
|
|
@@ -134,6 +138,8 @@ export declare class DialogComponent extends SirioDialogElement {
|
|
|
134
138
|
ConfirmDelete: string;
|
|
135
139
|
MoveUp: string;
|
|
136
140
|
MoveDown: string;
|
|
141
|
+
NoData: string;
|
|
142
|
+
RequiredField: string;
|
|
137
143
|
};
|
|
138
144
|
fr: {
|
|
139
145
|
TypeToSearch: string;
|
|
@@ -176,6 +182,8 @@ export declare class DialogComponent extends SirioDialogElement {
|
|
|
176
182
|
ConfirmDelete: string;
|
|
177
183
|
MoveUp: string;
|
|
178
184
|
MoveDown: string;
|
|
185
|
+
NoData: string;
|
|
186
|
+
RequiredField: string;
|
|
179
187
|
};
|
|
180
188
|
es: {
|
|
181
189
|
TypeToSearch: string;
|
|
@@ -218,6 +226,8 @@ export declare class DialogComponent extends SirioDialogElement {
|
|
|
218
226
|
ConfirmDelete: string;
|
|
219
227
|
MoveUp: string;
|
|
220
228
|
MoveDown: string;
|
|
229
|
+
NoData: string;
|
|
230
|
+
RequiredField: string;
|
|
221
231
|
};
|
|
222
232
|
pt: {
|
|
223
233
|
TypeToSearch: string;
|
|
@@ -260,6 +270,8 @@ export declare class DialogComponent extends SirioDialogElement {
|
|
|
260
270
|
ConfirmDelete: string;
|
|
261
271
|
MoveUp: string;
|
|
262
272
|
MoveDown: string;
|
|
273
|
+
NoData: string;
|
|
274
|
+
RequiredField: string;
|
|
263
275
|
};
|
|
264
276
|
};
|
|
265
277
|
TypeToSearch: string;
|
|
@@ -302,6 +314,8 @@ export declare class DialogComponent extends SirioDialogElement {
|
|
|
302
314
|
ConfirmDelete: string;
|
|
303
315
|
MoveUp: string;
|
|
304
316
|
MoveDown: string;
|
|
317
|
+
NoData: string;
|
|
318
|
+
RequiredField: string;
|
|
305
319
|
};
|
|
306
320
|
constructor(languageService: LanguageService);
|
|
307
321
|
ngOnInit(): void;
|
|
@@ -33,6 +33,7 @@ export declare class RecursionDirective implements OnInit, OnChanges, OnDestroy
|
|
|
33
33
|
private getArrayFromExpression;
|
|
34
34
|
private createComponentRows;
|
|
35
35
|
private createNestedFormGroup;
|
|
36
|
+
private prepareChildArray;
|
|
36
37
|
static ɵfac: i0.ɵɵFactoryDeclaration<RecursionDirective, never>;
|
|
37
38
|
static ɵdir: i0.ɵɵDirectiveDeclaration<RecursionDirective, "[recursion]", ["recursion"], { "formGroup": { "alias": "formGroup"; "required": false; }; "component": { "alias": "recursion"; "required": false; }; }, {}, never, never, true, never>;
|
|
38
39
|
}
|
|
@@ -9,6 +9,7 @@ export declare class TabControlDirective implements OnInit, OnDestroy {
|
|
|
9
9
|
private tabChangeSub;
|
|
10
10
|
private HandleIndexChange;
|
|
11
11
|
private validateIndex;
|
|
12
|
+
private setFocus;
|
|
12
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<TabControlDirective, [{ host: true; }]>;
|
|
13
14
|
static ɵdir: i0.ɵɵDirectiveDeclaration<TabControlDirective, "[tabControl]", never, {}, {}, never, never, true, never>;
|
|
14
15
|
}
|
|
@@ -13,6 +13,9 @@ export declare class TextDirective implements OnChanges, AfterViewInit {
|
|
|
13
13
|
private applyCase;
|
|
14
14
|
private applyMaxLength;
|
|
15
15
|
private configureTextCase;
|
|
16
|
+
private applyTextTransform;
|
|
17
|
+
private applyTextTransformByValue;
|
|
18
|
+
private configureSpellCheck;
|
|
16
19
|
private configureMaxLength;
|
|
17
20
|
private replaceInputValue;
|
|
18
21
|
static ɵfac: i0.ɵɵFactoryDeclaration<TextDirective, [{ host: true; }, null]>;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { NgControl } from '@angular/forms';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ValueSyncDirective {
|
|
4
|
+
private ngControl;
|
|
5
|
+
valueSync: boolean | null;
|
|
6
|
+
constructor(ngControl: NgControl);
|
|
7
|
+
private sub?;
|
|
8
|
+
ngOnInit(): void;
|
|
9
|
+
ngOnChanges(): void;
|
|
10
|
+
ngOnDestroy(): void;
|
|
11
|
+
private startSync;
|
|
12
|
+
private stopSync;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ValueSyncDirective, never>;
|
|
14
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ValueSyncDirective, "[valueSync]", never, { "valueSync": { "alias": "valueSync"; "required": false; }; }, {}, never, never, true, never>;
|
|
15
|
+
}
|
|
@@ -14,6 +14,7 @@ import { GlobalService } from '../services/global.service';
|
|
|
14
14
|
import { FormService } from '../services/form.service';
|
|
15
15
|
import { GridService } from '../services/grid.service';
|
|
16
16
|
import { ChartService } from '../services/chart.service';
|
|
17
|
+
import { AutoFocusService } from '../services/autofocus.service';
|
|
17
18
|
import { ButtonColors } from 'ngx-sirio-lib';
|
|
18
19
|
import { Observable } from 'rxjs';
|
|
19
20
|
import { SirioFileUploadComponent, NgxSirioEvent } from 'ngx-sirio-lib';
|
|
@@ -36,6 +37,7 @@ export declare class DynamicFieldsComponent implements OnInit, AfterViewInit, ID
|
|
|
36
37
|
private grid;
|
|
37
38
|
private chart;
|
|
38
39
|
private dialog;
|
|
40
|
+
private autoFocus;
|
|
39
41
|
private el;
|
|
40
42
|
form: DynamicFormComponent;
|
|
41
43
|
rows: Array<any> | undefined;
|
|
@@ -86,6 +88,8 @@ export declare class DynamicFieldsComponent implements OnInit, AfterViewInit, ID
|
|
|
86
88
|
ConfirmDelete: string;
|
|
87
89
|
MoveUp: string;
|
|
88
90
|
MoveDown: string;
|
|
91
|
+
NoData: string;
|
|
92
|
+
RequiredField: string;
|
|
89
93
|
};
|
|
90
94
|
en: {
|
|
91
95
|
TypeToSearch: string;
|
|
@@ -128,6 +132,8 @@ export declare class DynamicFieldsComponent implements OnInit, AfterViewInit, ID
|
|
|
128
132
|
ConfirmDelete: string;
|
|
129
133
|
MoveUp: string;
|
|
130
134
|
MoveDown: string;
|
|
135
|
+
NoData: string;
|
|
136
|
+
RequiredField: string;
|
|
131
137
|
};
|
|
132
138
|
de: {
|
|
133
139
|
TypeToSearch: string;
|
|
@@ -170,6 +176,8 @@ export declare class DynamicFieldsComponent implements OnInit, AfterViewInit, ID
|
|
|
170
176
|
ConfirmDelete: string;
|
|
171
177
|
MoveUp: string;
|
|
172
178
|
MoveDown: string;
|
|
179
|
+
NoData: string;
|
|
180
|
+
RequiredField: string;
|
|
173
181
|
};
|
|
174
182
|
fr: {
|
|
175
183
|
TypeToSearch: string;
|
|
@@ -212,6 +220,8 @@ export declare class DynamicFieldsComponent implements OnInit, AfterViewInit, ID
|
|
|
212
220
|
ConfirmDelete: string;
|
|
213
221
|
MoveUp: string;
|
|
214
222
|
MoveDown: string;
|
|
223
|
+
NoData: string;
|
|
224
|
+
RequiredField: string;
|
|
215
225
|
};
|
|
216
226
|
es: {
|
|
217
227
|
TypeToSearch: string;
|
|
@@ -254,6 +264,8 @@ export declare class DynamicFieldsComponent implements OnInit, AfterViewInit, ID
|
|
|
254
264
|
ConfirmDelete: string;
|
|
255
265
|
MoveUp: string;
|
|
256
266
|
MoveDown: string;
|
|
267
|
+
NoData: string;
|
|
268
|
+
RequiredField: string;
|
|
257
269
|
};
|
|
258
270
|
pt: {
|
|
259
271
|
TypeToSearch: string;
|
|
@@ -296,6 +308,8 @@ export declare class DynamicFieldsComponent implements OnInit, AfterViewInit, ID
|
|
|
296
308
|
ConfirmDelete: string;
|
|
297
309
|
MoveUp: string;
|
|
298
310
|
MoveDown: string;
|
|
311
|
+
NoData: string;
|
|
312
|
+
RequiredField: string;
|
|
299
313
|
};
|
|
300
314
|
};
|
|
301
315
|
TypeToSearch: string;
|
|
@@ -338,8 +352,10 @@ export declare class DynamicFieldsComponent implements OnInit, AfterViewInit, ID
|
|
|
338
352
|
ConfirmDelete: string;
|
|
339
353
|
MoveUp: string;
|
|
340
354
|
MoveDown: string;
|
|
355
|
+
NoData: string;
|
|
356
|
+
RequiredField: string;
|
|
341
357
|
};
|
|
342
|
-
constructor(sanitizer: SanitizeService, markdown: MarkdownService, mime: MimeService, programmability: ProgrammabilityService, weak: WeakService, register: RegisterService, metadata: MetadataService, languageService: LanguageService, global: GlobalService, formService: FormService, grid: GridService, chart: ChartService, dialog: DialogService, el: ElementRef);
|
|
358
|
+
constructor(sanitizer: SanitizeService, markdown: MarkdownService, mime: MimeService, programmability: ProgrammabilityService, weak: WeakService, register: RegisterService, metadata: MetadataService, languageService: LanguageService, global: GlobalService, formService: FormService, grid: GridService, chart: ChartService, dialog: DialogService, autoFocus: AutoFocusService, el: ElementRef);
|
|
343
359
|
ngOnInit(): void;
|
|
344
360
|
ngAfterViewInit(): void;
|
|
345
361
|
getRegister(): RegisterService;
|
|
@@ -409,9 +425,10 @@ export declare class DynamicFieldsComponent implements OnInit, AfterViewInit, ID
|
|
|
409
425
|
private getAlignmentRules;
|
|
410
426
|
private invalidate;
|
|
411
427
|
private getControlFromPath;
|
|
412
|
-
private focusFirst;
|
|
413
428
|
private getAsObservable;
|
|
414
429
|
private configureDatepicker;
|
|
430
|
+
private markForAutoFocus;
|
|
431
|
+
private requireAutoFocus;
|
|
415
432
|
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicFieldsComponent, never>;
|
|
416
433
|
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicFieldsComponent, "app-dynamic-fields", never, { "form": { "alias": "form"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "formGroup": { "alias": "formGroup"; "required": false; }; "alignment": { "alias": "alignment"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "recursionLevel": { "alias": "recursionLevel"; "required": false; }; }, {}, never, never, true, never>;
|
|
417
434
|
}
|
|
@@ -86,6 +86,8 @@ export declare class DynamicFormComponent implements OnChanges, OnDestroy, IEval
|
|
|
86
86
|
ConfirmDelete: string;
|
|
87
87
|
MoveUp: string;
|
|
88
88
|
MoveDown: string;
|
|
89
|
+
NoData: string;
|
|
90
|
+
RequiredField: string;
|
|
89
91
|
};
|
|
90
92
|
en: {
|
|
91
93
|
TypeToSearch: string;
|
|
@@ -128,6 +130,8 @@ export declare class DynamicFormComponent implements OnChanges, OnDestroy, IEval
|
|
|
128
130
|
ConfirmDelete: string;
|
|
129
131
|
MoveUp: string;
|
|
130
132
|
MoveDown: string;
|
|
133
|
+
NoData: string;
|
|
134
|
+
RequiredField: string;
|
|
131
135
|
};
|
|
132
136
|
de: {
|
|
133
137
|
TypeToSearch: string;
|
|
@@ -170,6 +174,8 @@ export declare class DynamicFormComponent implements OnChanges, OnDestroy, IEval
|
|
|
170
174
|
ConfirmDelete: string;
|
|
171
175
|
MoveUp: string;
|
|
172
176
|
MoveDown: string;
|
|
177
|
+
NoData: string;
|
|
178
|
+
RequiredField: string;
|
|
173
179
|
};
|
|
174
180
|
fr: {
|
|
175
181
|
TypeToSearch: string;
|
|
@@ -212,6 +218,8 @@ export declare class DynamicFormComponent implements OnChanges, OnDestroy, IEval
|
|
|
212
218
|
ConfirmDelete: string;
|
|
213
219
|
MoveUp: string;
|
|
214
220
|
MoveDown: string;
|
|
221
|
+
NoData: string;
|
|
222
|
+
RequiredField: string;
|
|
215
223
|
};
|
|
216
224
|
es: {
|
|
217
225
|
TypeToSearch: string;
|
|
@@ -254,6 +262,8 @@ export declare class DynamicFormComponent implements OnChanges, OnDestroy, IEval
|
|
|
254
262
|
ConfirmDelete: string;
|
|
255
263
|
MoveUp: string;
|
|
256
264
|
MoveDown: string;
|
|
265
|
+
NoData: string;
|
|
266
|
+
RequiredField: string;
|
|
257
267
|
};
|
|
258
268
|
pt: {
|
|
259
269
|
TypeToSearch: string;
|
|
@@ -296,6 +306,8 @@ export declare class DynamicFormComponent implements OnChanges, OnDestroy, IEval
|
|
|
296
306
|
ConfirmDelete: string;
|
|
297
307
|
MoveUp: string;
|
|
298
308
|
MoveDown: string;
|
|
309
|
+
NoData: string;
|
|
310
|
+
RequiredField: string;
|
|
299
311
|
};
|
|
300
312
|
};
|
|
301
313
|
TypeToSearch: string;
|
|
@@ -338,6 +350,8 @@ export declare class DynamicFormComponent implements OnChanges, OnDestroy, IEval
|
|
|
338
350
|
ConfirmDelete: string;
|
|
339
351
|
MoveUp: string;
|
|
340
352
|
MoveDown: string;
|
|
353
|
+
NoData: string;
|
|
354
|
+
RequiredField: string;
|
|
341
355
|
};
|
|
342
356
|
ngOnDestroy(): void;
|
|
343
357
|
ngOnChanges(changes: SimpleChanges): void;
|
package/lib/locale/locale.d.ts
CHANGED
|
@@ -41,6 +41,8 @@ export declare const Texts: {
|
|
|
41
41
|
ConfirmDelete: string;
|
|
42
42
|
MoveUp: string;
|
|
43
43
|
MoveDown: string;
|
|
44
|
+
NoData: string;
|
|
45
|
+
RequiredField: string;
|
|
44
46
|
};
|
|
45
47
|
en: {
|
|
46
48
|
TypeToSearch: string;
|
|
@@ -83,6 +85,8 @@ export declare const Texts: {
|
|
|
83
85
|
ConfirmDelete: string;
|
|
84
86
|
MoveUp: string;
|
|
85
87
|
MoveDown: string;
|
|
88
|
+
NoData: string;
|
|
89
|
+
RequiredField: string;
|
|
86
90
|
};
|
|
87
91
|
de: {
|
|
88
92
|
TypeToSearch: string;
|
|
@@ -125,6 +129,8 @@ export declare const Texts: {
|
|
|
125
129
|
ConfirmDelete: string;
|
|
126
130
|
MoveUp: string;
|
|
127
131
|
MoveDown: string;
|
|
132
|
+
NoData: string;
|
|
133
|
+
RequiredField: string;
|
|
128
134
|
};
|
|
129
135
|
fr: {
|
|
130
136
|
TypeToSearch: string;
|
|
@@ -167,6 +173,8 @@ export declare const Texts: {
|
|
|
167
173
|
ConfirmDelete: string;
|
|
168
174
|
MoveUp: string;
|
|
169
175
|
MoveDown: string;
|
|
176
|
+
NoData: string;
|
|
177
|
+
RequiredField: string;
|
|
170
178
|
};
|
|
171
179
|
es: {
|
|
172
180
|
TypeToSearch: string;
|
|
@@ -209,6 +217,8 @@ export declare const Texts: {
|
|
|
209
217
|
ConfirmDelete: string;
|
|
210
218
|
MoveUp: string;
|
|
211
219
|
MoveDown: string;
|
|
220
|
+
NoData: string;
|
|
221
|
+
RequiredField: string;
|
|
212
222
|
};
|
|
213
223
|
pt: {
|
|
214
224
|
TypeToSearch: string;
|
|
@@ -251,6 +261,8 @@ export declare const Texts: {
|
|
|
251
261
|
ConfirmDelete: string;
|
|
252
262
|
MoveUp: string;
|
|
253
263
|
MoveDown: string;
|
|
264
|
+
NoData: string;
|
|
265
|
+
RequiredField: string;
|
|
254
266
|
};
|
|
255
267
|
};
|
|
256
268
|
TypeToSearch: string;
|
|
@@ -293,4 +305,6 @@ export declare const Texts: {
|
|
|
293
305
|
ConfirmDelete: string;
|
|
294
306
|
MoveUp: string;
|
|
295
307
|
MoveDown: string;
|
|
308
|
+
NoData: string;
|
|
309
|
+
RequiredField: string;
|
|
296
310
|
};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class AutoFocusService {
|
|
3
|
+
private map;
|
|
4
|
+
mark(target: object): void;
|
|
5
|
+
consume(target: object): boolean;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AutoFocusService, never>;
|
|
7
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AutoFocusService>;
|
|
8
|
+
}
|
|
@@ -17,6 +17,8 @@ export declare class GridService {
|
|
|
17
17
|
onSelectionChanged(component: any, formGroup: FormGroup, event: any): any;
|
|
18
18
|
getCacheKey(): string;
|
|
19
19
|
invalidateOptions(component: any): void;
|
|
20
|
+
onRowDataChanged(component: any, api: GridApi, rowData: any): void;
|
|
21
|
+
onDataSourceChanged(component: any, api: GridApi, dataSource: any): void;
|
|
20
22
|
private get language();
|
|
21
23
|
private locale;
|
|
22
24
|
resizeGrid(component: any, api: GridApi): void;
|
|
@@ -25,11 +27,13 @@ export declare class GridService {
|
|
|
25
27
|
private createColumnDefs;
|
|
26
28
|
private addActionColumnDef;
|
|
27
29
|
private addRowNumbersColumnDef;
|
|
30
|
+
private refreshRowNumbers;
|
|
28
31
|
private groupColumns;
|
|
29
32
|
private groupsToColumnDefs;
|
|
30
33
|
private setCellDataType;
|
|
31
34
|
private setStyles;
|
|
32
35
|
private setCellRenderer;
|
|
36
|
+
private setCellChangeFlash;
|
|
33
37
|
private setAutoHeight;
|
|
34
38
|
private setResizable;
|
|
35
39
|
private setSortable;
|
|
@@ -46,6 +50,8 @@ export declare class GridService {
|
|
|
46
50
|
private setWidth;
|
|
47
51
|
private setValueFormatter;
|
|
48
52
|
getRowSelection(component: any, formGroup: FormGroup): RowSelectionOptions | undefined;
|
|
53
|
+
private hasRowId;
|
|
54
|
+
private getRowId;
|
|
49
55
|
private onRowSelectable;
|
|
50
56
|
private onRowSelected;
|
|
51
57
|
private onRowSelecting;
|
|
@@ -20,6 +20,11 @@ export declare class ValidationService {
|
|
|
20
20
|
private readonly nullObserver;
|
|
21
21
|
private get language();
|
|
22
22
|
private locale;
|
|
23
|
+
private getRequiredValidator;
|
|
24
|
+
private requiredValidator;
|
|
25
|
+
private requiredTrueValidator;
|
|
26
|
+
private isTrueValidator;
|
|
27
|
+
private getRequiredMessage;
|
|
23
28
|
static ɵfac: i0.ɵɵFactoryDeclaration<ValidationService, never>;
|
|
24
29
|
static ɵprov: i0.ɵɵInjectableDeclaration<ValidationService>;
|
|
25
30
|
}
|
package/lib/utils/focusable.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export declare function getFocusables(el: HTMLElement, firstOnly?: boolean): HTMLElement[];
|
|
2
|
-
export declare function setFocus(el: HTMLElement):
|
|
2
|
+
export declare function setFocus(el: HTMLElement, preventScroll?: boolean): HTMLElement | null;
|