@abp/ng.components 10.1.0 → 10.2.0-rc.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/abp-ng.components-chart.js.mjs +40 -53
- package/fesm2022/abp-ng.components-chart.js.mjs.map +1 -1
- package/fesm2022/abp-ng.components-dynamic-form.mjs +7 -9
- package/fesm2022/abp-ng.components-dynamic-form.mjs.map +1 -1
- package/fesm2022/abp-ng.components-extensible.mjs +383 -361
- package/fesm2022/abp-ng.components-extensible.mjs.map +1 -1
- package/fesm2022/abp-ng.components-lookup.mjs +4 -5
- package/fesm2022/abp-ng.components-lookup.mjs.map +1 -1
- package/fesm2022/abp-ng.components-page.mjs +45 -52
- package/fesm2022/abp-ng.components-page.mjs.map +1 -1
- package/fesm2022/abp-ng.components-tree.mjs +59 -69
- package/fesm2022/abp-ng.components-tree.mjs.map +1 -1
- package/package.json +3 -3
- package/types/abp-ng.components-chart.js.d.ts +18 -18
- package/types/abp-ng.components-dynamic-form.d.ts +1 -1
- package/types/abp-ng.components-extensible.d.ts +147 -105
- package/types/abp-ng.components-page.d.ts +17 -18
- package/types/abp-ng.components-tree.d.ts +47 -33
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
import { Type, InjectionToken, InjectOptions, Injector, ChangeDetectorRef,
|
|
1
|
+
import * as _angular_core from '@angular/core';
|
|
2
|
+
import { Type, InjectionToken, InjectOptions, InputSignal, Injector, ChangeDetectorRef, AfterViewInit, TemplateRef, OnDestroy, TrackByFunction, PipeTransform } from '@angular/core';
|
|
3
3
|
import * as i4 from '@ng-bootstrap/ng-bootstrap';
|
|
4
4
|
import { Placement, NgbInputDatepicker, NgbTimepicker } from '@ng-bootstrap/ng-bootstrap';
|
|
5
5
|
import * as i1 from '@abp/ng.core';
|
|
@@ -8,7 +8,7 @@ import { ValidatorFn, AsyncValidatorFn, UntypedFormGroup, ControlValueAccessor,
|
|
|
8
8
|
import * as rxjs from 'rxjs';
|
|
9
9
|
import { Observable } from 'rxjs';
|
|
10
10
|
import { LinkedList } from '@abp/utils';
|
|
11
|
-
import { SelectionType } from '@swimlane/ngx-datatable';
|
|
11
|
+
import { SelectionType, DatatableComponent } from '@swimlane/ngx-datatable';
|
|
12
12
|
import * as i2 from '@abp/ng.theme.shared';
|
|
13
13
|
import * as i3 from '@ngx-validate/core';
|
|
14
14
|
|
|
@@ -33,11 +33,15 @@ declare abstract class PropList<R = any, A = Prop<R>> extends LinkedList<A> {
|
|
|
33
33
|
}
|
|
34
34
|
declare abstract class PropData<R = any> {
|
|
35
35
|
abstract getInjected: <T>(token: Type<T> | InjectionToken<T>, notFoundValue?: T, options?: InjectOptions) => T;
|
|
36
|
-
index?: number
|
|
37
|
-
abstract record: R
|
|
36
|
+
index?: number | InputSignal<number | undefined>;
|
|
37
|
+
abstract record: R | InputSignal<R>;
|
|
38
38
|
get data(): ReadonlyPropData<R>;
|
|
39
39
|
}
|
|
40
|
-
type ReadonlyPropData<R = any> = Readonly<
|
|
40
|
+
type ReadonlyPropData<R = any> = Readonly<{
|
|
41
|
+
getInjected: <T>(token: Type<T> | InjectionToken<T>, notFoundValue?: T, options?: InjectOptions) => T;
|
|
42
|
+
index?: number;
|
|
43
|
+
record: R;
|
|
44
|
+
}>;
|
|
41
45
|
declare abstract class Prop<R = any> {
|
|
42
46
|
readonly type: ePropType;
|
|
43
47
|
readonly name: string;
|
|
@@ -52,9 +56,9 @@ declare abstract class Prop<R = any> {
|
|
|
52
56
|
readonly displayTextResolver?: PropDisplayTextResolver<R>;
|
|
53
57
|
constructor(type: ePropType, name: string, displayName: string, permission: string, visible?: PropPredicate<R>, isExtra?: boolean, template?: Type<any>, className?: string, formText?: string, tooltip?: FormPropTooltip, displayTextResolver?: PropDisplayTextResolver<R>);
|
|
54
58
|
}
|
|
55
|
-
type PropCallback<T, R = any> = (data:
|
|
56
|
-
type PropPredicate<T> = (data?:
|
|
57
|
-
type PropDisplayTextResolver<T> = (data?:
|
|
59
|
+
type PropCallback<T, R = any> = (data: ReadonlyPropData<T>, auxData?: any) => R;
|
|
60
|
+
type PropPredicate<T> = (data?: ReadonlyPropData<T>, auxData?: any) => boolean;
|
|
61
|
+
type PropDisplayTextResolver<T> = (data?: ReadonlyPropData<T>) => string;
|
|
58
62
|
declare abstract class PropsFactory<C extends Props<any>> {
|
|
59
63
|
protected abstract _ctor: Type<C>;
|
|
60
64
|
private contributorCallbacks;
|
|
@@ -86,6 +90,7 @@ interface FormPropGroup {
|
|
|
86
90
|
}
|
|
87
91
|
interface FormPropTooltip {
|
|
88
92
|
text: string;
|
|
93
|
+
params?: string[];
|
|
89
94
|
placement?: 'top' | 'end' | 'bottom' | 'start';
|
|
90
95
|
}
|
|
91
96
|
declare class GroupedFormPropList<R = any> {
|
|
@@ -138,15 +143,15 @@ type EditFormPropContributorCallbacks<R = any> = PropContributorCallbacks<FormPr
|
|
|
138
143
|
|
|
139
144
|
declare class ExtensibleDateTimePickerComponent {
|
|
140
145
|
readonly cdRef: ChangeDetectorRef;
|
|
141
|
-
prop:
|
|
142
|
-
meridian:
|
|
143
|
-
placement:
|
|
144
|
-
date: NgbInputDatepicker
|
|
145
|
-
time: NgbTimepicker
|
|
146
|
+
prop: _angular_core.InputSignal<FormProp<any>>;
|
|
147
|
+
meridian: _angular_core.InputSignal<boolean>;
|
|
148
|
+
placement: _angular_core.InputSignal<Placement>;
|
|
149
|
+
readonly date: _angular_core.Signal<NgbInputDatepicker>;
|
|
150
|
+
readonly time: _angular_core.Signal<NgbTimepicker>;
|
|
146
151
|
setDate(dateStr: string): void;
|
|
147
152
|
setTime(dateStr: string): void;
|
|
148
|
-
static ɵfac:
|
|
149
|
-
static ɵcmp:
|
|
153
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ExtensibleDateTimePickerComponent, never>;
|
|
154
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ExtensibleDateTimePickerComponent, "abp-extensible-date-time-picker", ["abpExtensibleDateTimePicker"], { "prop": { "alias": "prop"; "required": false; "isSignal": true; }; "meridian": { "alias": "meridian"; "required": false; "isSignal": true; }; "placement": { "alias": "placement"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
150
155
|
}
|
|
151
156
|
|
|
152
157
|
declare const enum eExtensibleComponents {
|
|
@@ -160,22 +165,26 @@ declare class ExtensibleFormPropService {
|
|
|
160
165
|
getComponent(prop: FormProp): "date" | "hidden" | "multiselect" | "passwordinputgroup" | "time" | "typeahead" | "template" | "checkbox" | "dateTime" | "textarea" | "select" | "input";
|
|
161
166
|
getType(prop: FormProp): "email" | "hidden" | "number" | "password" | "passwordinputgroup" | "text" | "checkbox";
|
|
162
167
|
calcAsterisks(validators: ValidatorFn[]): "" | "*";
|
|
163
|
-
static ɵfac:
|
|
164
|
-
static ɵprov:
|
|
168
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ExtensibleFormPropService, never>;
|
|
169
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<ExtensibleFormPropService>;
|
|
165
170
|
}
|
|
166
171
|
|
|
167
|
-
declare class ExtensibleFormPropComponent implements
|
|
172
|
+
declare class ExtensibleFormPropComponent implements AfterViewInit {
|
|
168
173
|
#private;
|
|
169
174
|
protected service: ExtensibleFormPropService;
|
|
170
175
|
readonly cdRef: ChangeDetectorRef;
|
|
171
176
|
readonly track: TrackByService<any>;
|
|
172
177
|
private injector;
|
|
173
178
|
private readonly form;
|
|
174
|
-
data:
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
+
readonly data: _angular_core.InputSignal<Readonly<{
|
|
180
|
+
getInjected: <T>(token: _angular_core.Type<T> | _angular_core.InjectionToken<T>, notFoundValue?: T, options?: _angular_core.InjectOptions) => T;
|
|
181
|
+
index?: number;
|
|
182
|
+
record: any;
|
|
183
|
+
}>>;
|
|
184
|
+
readonly prop: _angular_core.InputSignal<FormProp<any>>;
|
|
185
|
+
readonly first: _angular_core.InputSignal<boolean>;
|
|
186
|
+
readonly isFirstGroup: _angular_core.InputSignal<boolean>;
|
|
187
|
+
private readonly fieldRef;
|
|
179
188
|
injectorForCustomComponent?: Injector;
|
|
180
189
|
asterisk: string;
|
|
181
190
|
containerClassName: string;
|
|
@@ -185,8 +194,9 @@ declare class ExtensibleFormPropComponent implements OnChanges, AfterViewInit {
|
|
|
185
194
|
readonly: boolean;
|
|
186
195
|
typeaheadModel: any;
|
|
187
196
|
passwordKey: eExtensibleComponents;
|
|
188
|
-
disabledFn: (data:
|
|
197
|
+
disabledFn: (data: ReadonlyPropData) => boolean;
|
|
189
198
|
get disabled(): boolean;
|
|
199
|
+
constructor();
|
|
190
200
|
setTypeaheadValue(selectedOption: ABP.Option<string>): void;
|
|
191
201
|
search: (text$: Observable<string>) => Observable<any[]>;
|
|
192
202
|
typeaheadFormatter: (option: ABP.Option<any>) => string;
|
|
@@ -197,9 +207,8 @@ declare class ExtensibleFormPropComponent implements OnChanges, AfterViewInit {
|
|
|
197
207
|
ngAfterViewInit(): void;
|
|
198
208
|
getComponent(prop: FormProp): string;
|
|
199
209
|
getType(prop: FormProp): string;
|
|
200
|
-
|
|
201
|
-
static
|
|
202
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ExtensibleFormPropComponent, "abp-extensible-form-prop", never, { "data": { "alias": "data"; "required": false; }; "prop": { "alias": "prop"; "required": false; }; "first": { "alias": "first"; "required": false; }; "isFirstGroup": { "alias": "isFirstGroup"; "required": false; }; }, {}, never, never, true, never>;
|
|
210
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ExtensibleFormPropComponent, never>;
|
|
211
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ExtensibleFormPropComponent, "abp-extensible-form-prop", never, { "data": { "alias": "data"; "required": true; "isSignal": true; }; "prop": { "alias": "prop"; "required": true; "isSignal": true; }; "first": { "alias": "first"; "required": false; "isSignal": true; }; "isFirstGroup": { "alias": "isFirstGroup"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
203
212
|
}
|
|
204
213
|
|
|
205
214
|
declare class ExtensibleFormComponent<R = any> {
|
|
@@ -208,29 +217,34 @@ declare class ExtensibleFormComponent<R = any> {
|
|
|
208
217
|
private readonly container;
|
|
209
218
|
private readonly extensions;
|
|
210
219
|
private readonly identifier;
|
|
211
|
-
formProps:
|
|
212
|
-
|
|
220
|
+
readonly formProps: _angular_core.Signal<readonly ExtensibleFormPropComponent[]>;
|
|
221
|
+
readonly selectedRecord: _angular_core.InputSignal<R>;
|
|
213
222
|
extraPropertiesKey: string;
|
|
214
|
-
groupedPropList: GroupedFormPropList
|
|
223
|
+
readonly groupedPropList: _angular_core.WritableSignal<GroupedFormPropList<any>>;
|
|
215
224
|
groupedPropListOfArray: FormProp<any>[][];
|
|
216
|
-
record: R
|
|
225
|
+
readonly record: _angular_core.WritableSignal<R>;
|
|
226
|
+
constructor();
|
|
217
227
|
get form(): UntypedFormGroup;
|
|
218
228
|
get extraProperties(): UntypedFormGroup;
|
|
219
229
|
createGroupedList(propList: FormPropList<R>): GroupedFormPropList<any>;
|
|
220
230
|
isAnyGroupMemberVisible(index: number, data: any): boolean;
|
|
221
|
-
static ɵfac:
|
|
222
|
-
static ɵcmp:
|
|
231
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ExtensibleFormComponent<any>, never>;
|
|
232
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ExtensibleFormComponent<any>, "abp-extensible-form", ["abpExtensibleForm"], { "selectedRecord": { "alias": "selectedRecord"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
223
233
|
}
|
|
224
234
|
|
|
225
235
|
declare abstract class ActionList<R = any, A = Action<R>> extends LinkedList<A> {
|
|
226
236
|
}
|
|
227
237
|
declare abstract class ActionData<R = any> {
|
|
228
238
|
abstract getInjected: <T>(token: Type<T> | InjectionToken<T>, notFoundValue?: T, flags?: InjectOptions) => T;
|
|
229
|
-
index?: number
|
|
230
|
-
abstract record: R
|
|
239
|
+
index?: number | InputSignal<number | undefined>;
|
|
240
|
+
abstract record: R | InputSignal<R>;
|
|
231
241
|
get data(): ReadonlyActionData<R>;
|
|
232
242
|
}
|
|
233
|
-
type ReadonlyActionData<R = any> = Readonly<
|
|
243
|
+
type ReadonlyActionData<R = any> = Readonly<{
|
|
244
|
+
getInjected: <T>(token: Type<T> | InjectionToken<T>, notFoundValue?: T, flags?: InjectOptions) => T;
|
|
245
|
+
index?: number;
|
|
246
|
+
record: R;
|
|
247
|
+
}>;
|
|
234
248
|
declare abstract class Action<R = any> {
|
|
235
249
|
readonly permission: string;
|
|
236
250
|
readonly visible: ActionPredicate<R>;
|
|
@@ -239,8 +253,8 @@ declare abstract class Action<R = any> {
|
|
|
239
253
|
readonly btnStyle?: string;
|
|
240
254
|
constructor(permission: string, visible?: ActionPredicate<R>, action?: ActionCallback<R>, btnClass?: string, btnStyle?: string);
|
|
241
255
|
}
|
|
242
|
-
type ActionCallback<T, R = any> = (data:
|
|
243
|
-
type ActionPredicate<T> = (data?:
|
|
256
|
+
type ActionCallback<T, R = any> = (data: ReadonlyActionData<T>) => R;
|
|
257
|
+
type ActionPredicate<T> = (data?: ReadonlyActionData<T>) => boolean;
|
|
244
258
|
declare abstract class ActionsFactory<C extends Actions<any>> {
|
|
245
259
|
protected abstract _ctor: Type<C>;
|
|
246
260
|
private contributorCallbacks;
|
|
@@ -312,7 +326,19 @@ type EntityPropContributorCallbacks<R = any> = PropContributorCallbacks<EntityPr
|
|
|
312
326
|
type ColumnPredicate = (getInjected: GetInjected, auxData?: any) => boolean;
|
|
313
327
|
type GetInjected = <T>(token: Type<T> | InjectionToken<T>, notFoundValue?: T, options?: InjectOptions) => T;
|
|
314
328
|
|
|
315
|
-
declare class
|
|
329
|
+
declare class ExtensibleTableRowDetailComponent<R = any> {
|
|
330
|
+
readonly rowHeight: _angular_core.InputSignal<string | number>;
|
|
331
|
+
readonly template: _angular_core.Signal<TemplateRef<any>>;
|
|
332
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ExtensibleTableRowDetailComponent<any>, never>;
|
|
333
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ExtensibleTableRowDetailComponent<any>, "abp-extensible-table-row-detail", never, { "rowHeight": { "alias": "rowHeight"; "required": false; "isSignal": true; }; }, {}, ["template"], never, true, never>;
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
interface RowDetailContext<R = any> {
|
|
337
|
+
row: R;
|
|
338
|
+
expanded: boolean;
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
declare class ExtensibleTableComponent<R = any> implements AfterViewInit, OnDestroy {
|
|
316
342
|
#private;
|
|
317
343
|
readonly getInjected: any;
|
|
318
344
|
protected readonly cdr: ChangeDetectorRef;
|
|
@@ -338,51 +364,61 @@ declare class ExtensibleTableComponent<R = any> implements OnChanges, AfterViewI
|
|
|
338
364
|
protected readonly permissionService: PermissionService;
|
|
339
365
|
private platformId;
|
|
340
366
|
protected isBrowser: boolean;
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
loadMore:
|
|
359
|
-
|
|
367
|
+
readonly actionsTextInput: _angular_core.InputSignal<string>;
|
|
368
|
+
readonly dataInput: _angular_core.InputSignal<R[]>;
|
|
369
|
+
readonly list: _angular_core.InputSignal<ListService<any>>;
|
|
370
|
+
readonly recordsTotal: _angular_core.InputSignal<number>;
|
|
371
|
+
readonly actionsColumnWidthInput: _angular_core.InputSignal<number>;
|
|
372
|
+
readonly actionsTemplate: _angular_core.InputSignal<TemplateRef<any>>;
|
|
373
|
+
readonly selectable: _angular_core.InputSignal<boolean>;
|
|
374
|
+
readonly selectionTypeInput: _angular_core.InputSignal<"checkbox" | SelectionType | "single" | "multi" | "multiClick" | "cell">;
|
|
375
|
+
readonly selected: _angular_core.InputSignal<any[]>;
|
|
376
|
+
readonly infiniteScroll: _angular_core.InputSignal<boolean>;
|
|
377
|
+
readonly isLoading: _angular_core.InputSignal<boolean>;
|
|
378
|
+
readonly scrollThreshold: _angular_core.InputSignal<number>;
|
|
379
|
+
readonly tableHeight: _angular_core.InputSignal<number>;
|
|
380
|
+
readonly rowDetailTemplate: _angular_core.InputSignal<TemplateRef<RowDetailContext<R>>>;
|
|
381
|
+
readonly rowDetailHeight: _angular_core.InputSignal<string | number>;
|
|
382
|
+
readonly tableActivate: _angular_core.OutputEmitterRef<any>;
|
|
383
|
+
readonly selectionChange: _angular_core.OutputEmitterRef<any[]>;
|
|
384
|
+
readonly loadMore: _angular_core.OutputEmitterRef<void>;
|
|
385
|
+
readonly rowDetailToggle: _angular_core.OutputEmitterRef<R>;
|
|
386
|
+
protected readonly _data: _angular_core.WritableSignal<R[]>;
|
|
387
|
+
private readonly _actionsColumnWidth;
|
|
388
|
+
readonly rowDetailComponent: _angular_core.Signal<ExtensibleTableRowDetailComponent<any>>;
|
|
389
|
+
readonly table: _angular_core.Signal<DatatableComponent<any>>;
|
|
390
|
+
protected readonly actionsText: _angular_core.Signal<string>;
|
|
391
|
+
protected readonly selectionType: _angular_core.Signal<SelectionType>;
|
|
392
|
+
protected get data(): R[];
|
|
393
|
+
protected set data(value: R[]);
|
|
394
|
+
protected get effectiveRowDetailTemplate(): TemplateRef<RowDetailContext<R>> | undefined;
|
|
395
|
+
protected get effectiveRowDetailHeight(): string | number;
|
|
360
396
|
hasAtLeastOnePermittedAction: boolean;
|
|
361
397
|
readonly propList: EntityPropList<R>;
|
|
362
398
|
readonly actionList: EntityActionList<R>;
|
|
363
399
|
readonly trackByFn: TrackByFunction<EntityProp<R>>;
|
|
364
|
-
private readonly _actionsColumnWidth;
|
|
365
400
|
private readonly loadMoreSubject;
|
|
366
401
|
private readonly loadMoreSubscription;
|
|
367
|
-
readonly columnWidths:
|
|
402
|
+
readonly columnWidths: _angular_core.Signal<number[]>;
|
|
368
403
|
constructor();
|
|
404
|
+
private prepareRecord;
|
|
369
405
|
private getIcon;
|
|
370
406
|
private getEnum;
|
|
371
|
-
getContent(prop: EntityProp<R>, data:
|
|
372
|
-
ngOnChanges({ data }: SimpleChanges): void;
|
|
407
|
+
getContent(prop: EntityProp<R>, data: ReadonlyPropData): Observable<string>;
|
|
373
408
|
isVisibleActions(rowData: any): boolean;
|
|
374
409
|
onSelect({ selected }: {
|
|
375
|
-
selected: any;
|
|
410
|
+
selected: any[];
|
|
376
411
|
}): void;
|
|
377
412
|
onScroll(scrollEvent: Event): void;
|
|
378
413
|
private shouldHandleScroll;
|
|
379
414
|
private isNearScrollBottom;
|
|
380
415
|
private triggerLoadMore;
|
|
381
416
|
getTableHeight(): string;
|
|
417
|
+
toggleExpandRow(row: R): void;
|
|
382
418
|
ngAfterViewInit(): void;
|
|
383
419
|
ngOnDestroy(): void;
|
|
384
|
-
static ɵfac:
|
|
385
|
-
static ɵcmp:
|
|
420
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ExtensibleTableComponent<any>, never>;
|
|
421
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ExtensibleTableComponent<any>, "abp-extensible-table", ["abpExtensibleTable"], { "actionsTextInput": { "alias": "actionsText"; "required": false; "isSignal": true; }; "dataInput": { "alias": "data"; "required": false; "isSignal": true; }; "list": { "alias": "list"; "required": true; "isSignal": true; }; "recordsTotal": { "alias": "recordsTotal"; "required": true; "isSignal": true; }; "actionsColumnWidthInput": { "alias": "actionsColumnWidth"; "required": false; "isSignal": true; }; "actionsTemplate": { "alias": "actionsTemplate"; "required": false; "isSignal": true; }; "selectable": { "alias": "selectable"; "required": false; "isSignal": true; }; "selectionTypeInput": { "alias": "selectionType"; "required": false; "isSignal": true; }; "selected": { "alias": "selected"; "required": false; "isSignal": true; }; "infiniteScroll": { "alias": "infiniteScroll"; "required": false; "isSignal": true; }; "isLoading": { "alias": "isLoading"; "required": false; "isSignal": true; }; "scrollThreshold": { "alias": "scrollThreshold"; "required": false; "isSignal": true; }; "tableHeight": { "alias": "tableHeight"; "required": false; "isSignal": true; }; "rowDetailTemplate": { "alias": "rowDetailTemplate"; "required": false; "isSignal": true; }; "rowDetailHeight": { "alias": "rowDetailHeight"; "required": false; "isSignal": true; }; }, { "tableActivate": "tableActivate"; "selectionChange": "selectionChange"; "loadMore": "loadMore"; "rowDetailToggle": "rowDetailToggle"; }, ["rowDetailComponent"], never, true, never>;
|
|
386
422
|
}
|
|
387
423
|
|
|
388
424
|
declare class ToolbarActionList<R = any> extends ActionList<R, ToolbarActionDefault<R>> {
|
|
@@ -415,49 +451,53 @@ type ToolbarActionDefault<R = any> = ToolbarAction<R> | ToolbarComponent<R>;
|
|
|
415
451
|
type ToolbarActionDefaults<R = any> = Record<string, Array<ToolbarActionDefault<R>>>;
|
|
416
452
|
type ToolbarActionContributorCallback<R = any> = ActionContributorCallback<ToolbarActionList<R>>;
|
|
417
453
|
type ToolbarActionContributorCallbacks<R = any> = ActionContributorCallbacks<ToolbarActionList<R>>;
|
|
418
|
-
type InferredData
|
|
454
|
+
type InferredData<L> = ActionData<InferredRecord$1<L>>;
|
|
419
455
|
type InferredRecord$1<L> = L extends ActionList<infer R> ? R : any;
|
|
420
456
|
interface HasCreateInjectorPipe<R> {
|
|
421
457
|
getData: () => ReadonlyActionData<R>;
|
|
422
458
|
injector: Injector;
|
|
423
|
-
getInjected: InferredData
|
|
459
|
+
getInjected: InferredData<ToolbarActionList<R>>['getInjected'];
|
|
424
460
|
}
|
|
425
461
|
|
|
426
462
|
declare abstract class AbstractActionsComponent<L extends ActionList<any, InferredAction<L>>> extends ActionData<InferredRecord$1<L>> {
|
|
427
463
|
readonly actionList: L;
|
|
428
|
-
readonly getInjected: InferredData
|
|
429
|
-
record:
|
|
464
|
+
readonly getInjected: InferredData<L>['getInjected'];
|
|
465
|
+
record: _angular_core.InputSignal<InferredRecord$1<L>>;
|
|
430
466
|
protected constructor();
|
|
431
|
-
static ɵfac:
|
|
432
|
-
static ɵdir:
|
|
467
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AbstractActionsComponent<any>, never>;
|
|
468
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<AbstractActionsComponent<any>, never, never, { "record": { "alias": "record"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
433
469
|
}
|
|
434
470
|
|
|
435
471
|
declare class GridActionsComponent<R = any> extends AbstractActionsComponent<EntityActionList<R>> {
|
|
436
|
-
icon: string
|
|
437
|
-
readonly index
|
|
438
|
-
text: string
|
|
472
|
+
readonly icon: _angular_core.InputSignal<string>;
|
|
473
|
+
readonly index: _angular_core.InputSignal<number>;
|
|
474
|
+
readonly text: _angular_core.InputSignal<string>;
|
|
439
475
|
readonly trackByFn: TrackByFunction<EntityAction<R>>;
|
|
440
476
|
constructor();
|
|
441
|
-
static ɵfac:
|
|
442
|
-
static ɵcmp:
|
|
477
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GridActionsComponent<any>, never>;
|
|
478
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<GridActionsComponent<any>, "abp-grid-actions", ["abpGridActions"], { "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "index": { "alias": "index"; "required": false; "isSignal": true; }; "text": { "alias": "text"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
443
479
|
}
|
|
444
480
|
|
|
445
481
|
declare class PageToolbarComponent<R = any> extends AbstractActionsComponent<ToolbarActionList<R>> implements HasCreateInjectorPipe<R> {
|
|
446
482
|
readonly injector: Injector;
|
|
447
483
|
defaultBtnClass: string;
|
|
448
|
-
getData: () => Readonly<
|
|
484
|
+
getData: () => Readonly<{
|
|
485
|
+
getInjected: <T>(token: _angular_core.Type<T> | _angular_core.InjectionToken<T>, notFoundValue?: T, flags?: _angular_core.InjectOptions) => T;
|
|
486
|
+
index?: number;
|
|
487
|
+
record: R;
|
|
488
|
+
}>;
|
|
449
489
|
readonly trackByFn: TrackByFunction<ToolbarComponent<R>>;
|
|
450
490
|
constructor();
|
|
451
491
|
asToolbarAction(value: ToolbarActionDefault): {
|
|
452
492
|
value: ToolbarAction;
|
|
453
493
|
};
|
|
454
|
-
static ɵfac:
|
|
455
|
-
static ɵcmp:
|
|
494
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PageToolbarComponent<any>, never>;
|
|
495
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PageToolbarComponent<any>, "abp-page-toolbar", ["abpPageToolbar"], {}, {}, never, never, true, never>;
|
|
456
496
|
}
|
|
457
497
|
|
|
458
498
|
declare class ExtensibleFormMultiselectComponent implements ControlValueAccessor {
|
|
459
|
-
prop:
|
|
460
|
-
options:
|
|
499
|
+
prop: _angular_core.InputSignal<FormProp<any>>;
|
|
500
|
+
options: _angular_core.InputSignal<ABP.Option<any>[]>;
|
|
461
501
|
selectedValues: any[];
|
|
462
502
|
disabled: boolean;
|
|
463
503
|
private onChange;
|
|
@@ -468,27 +508,25 @@ declare class ExtensibleFormMultiselectComponent implements ControlValueAccessor
|
|
|
468
508
|
writeValue(value: any[]): void;
|
|
469
509
|
registerOnChange(fn: any): void;
|
|
470
510
|
registerOnTouched(fn: any): void;
|
|
471
|
-
static ɵfac:
|
|
472
|
-
static ɵcmp:
|
|
511
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ExtensibleFormMultiselectComponent, never>;
|
|
512
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ExtensibleFormMultiselectComponent, "abp-extensible-form-multi-select", never, { "prop": { "alias": "prop"; "required": true; "isSignal": true; }; "options": { "alias": "options"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
473
513
|
}
|
|
474
514
|
|
|
475
515
|
declare const EXTRA_PROPERTIES_KEY = "extraProperties";
|
|
476
516
|
|
|
477
|
-
|
|
517
|
+
type InferredRecord<L> = L extends PropList<infer R> ? R : never;
|
|
518
|
+
declare class PropDataDirective<L extends PropList<any>> extends PropData<InferredRecord<L>> implements OnDestroy {
|
|
478
519
|
private tempRef;
|
|
479
520
|
private vcRef;
|
|
480
|
-
propList
|
|
481
|
-
record:
|
|
482
|
-
index
|
|
483
|
-
readonly getInjected:
|
|
521
|
+
readonly propList: _angular_core.InputSignal<L>;
|
|
522
|
+
readonly record: _angular_core.InputSignal<InferredRecord<L>>;
|
|
523
|
+
readonly index: _angular_core.InputSignal<number>;
|
|
524
|
+
readonly getInjected: PropData<InferredRecord<L>>['getInjected'];
|
|
484
525
|
constructor();
|
|
485
|
-
ngOnChanges(): void;
|
|
486
526
|
ngOnDestroy(): void;
|
|
487
|
-
static ɵfac:
|
|
488
|
-
static ɵdir:
|
|
527
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PropDataDirective<any>, never>;
|
|
528
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<PropDataDirective<any>, "[abpPropData]", ["abpPropData"], { "propList": { "alias": "abpPropDataFromList"; "required": false; "isSignal": true; }; "record": { "alias": "abpPropDataWithRecord"; "required": true; "isSignal": true; }; "index": { "alias": "abpPropDataAtIndex"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
489
529
|
}
|
|
490
|
-
type InferredData<L> = PropData<InferredRecord<L>>;
|
|
491
|
-
type InferredRecord<L> = L extends PropList<infer R> ? R : never;
|
|
492
530
|
|
|
493
531
|
type DisplayNameGeneratorFn = (displayName: LocalizableStringDto, fallback: LocalizableStringDto) => string | undefined;
|
|
494
532
|
type EntityExtensions = Record<string, EntityExtensionDto>;
|
|
@@ -618,8 +656,8 @@ declare namespace objectExtensions_d {
|
|
|
618
656
|
|
|
619
657
|
declare class CreateInjectorPipe<R> implements PipeTransform {
|
|
620
658
|
transform(_: any, action: ToolbarComponent<R>, context: HasCreateInjectorPipe<R>): Injector;
|
|
621
|
-
static ɵfac:
|
|
622
|
-
static ɵpipe:
|
|
659
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<CreateInjectorPipe<any>, never>;
|
|
660
|
+
static ɵpipe: _angular_core.ɵɵPipeDeclaration<CreateInjectorPipe<any>, "createInjector", true>;
|
|
623
661
|
}
|
|
624
662
|
|
|
625
663
|
declare class ExtensionsService<R = any> {
|
|
@@ -628,14 +666,18 @@ declare class ExtensionsService<R = any> {
|
|
|
628
666
|
readonly entityProps: EntityPropsFactory<R>;
|
|
629
667
|
readonly createFormProps: CreateFormPropsFactory<R>;
|
|
630
668
|
readonly editFormProps: EditFormPropsFactory<R>;
|
|
631
|
-
static ɵfac:
|
|
632
|
-
static ɵprov:
|
|
669
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ExtensionsService<any>, never>;
|
|
670
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<ExtensionsService<any>>;
|
|
633
671
|
}
|
|
634
672
|
|
|
635
673
|
declare const EXTENSIONS_IDENTIFIER: InjectionToken<string>;
|
|
636
674
|
type ActionKeys = Extract<'entityActions' | 'toolbarActions', keyof ExtensionsService>;
|
|
637
675
|
declare const EXTENSIONS_ACTION_TYPE: InjectionToken<ActionKeys>;
|
|
638
|
-
declare const EXTENSIONS_ACTION_DATA: InjectionToken<Readonly<
|
|
676
|
+
declare const EXTENSIONS_ACTION_DATA: InjectionToken<Readonly<{
|
|
677
|
+
getInjected: <T>(token: _angular_core.Type<T> | InjectionToken<T>, notFoundValue?: T, flags?: _angular_core.InjectOptions) => T;
|
|
678
|
+
index?: number;
|
|
679
|
+
record: any;
|
|
680
|
+
}>>;
|
|
639
681
|
declare const EXTENSIONS_ACTION_CALLBACK: InjectionToken<ActionCallback<unknown>>;
|
|
640
682
|
declare const PROP_DATA_STREAM: InjectionToken<Observable<any>>;
|
|
641
683
|
type EntityPropTypeClassMap = {
|
|
@@ -656,7 +698,7 @@ declare function mergeWithDefaultActions<F extends ActionsFactory<any>>(extensio
|
|
|
656
698
|
type InferredActionDefaults<F> = F extends EntityActionsFactory<infer RE> ? EntityActionDefaults<RE> : F extends ToolbarActionsFactory<infer RT> ? ToolbarActionDefaults<RT> : never;
|
|
657
699
|
type InferredActionContributorCallbacks<F> = F extends EntityActionsFactory<infer RE> ? EntityActionContributorCallbacks<RE> : F extends ToolbarActionsFactory<infer RT> ? ToolbarActionContributorCallbacks<RT> : never;
|
|
658
700
|
|
|
659
|
-
declare function generateFormFromProps<R = any>(
|
|
701
|
+
declare function generateFormFromProps<R = any>(propData: PropData<R>): UntypedFormGroup;
|
|
660
702
|
|
|
661
703
|
declare function createExtraPropertyValueResolver<T>(name: string): PropCallback<T, Observable<any>>;
|
|
662
704
|
declare function mergeWithDefaultProps<F extends PropsFactory<any>>(extension: F, defaultProps: InferredPropDefaults<F>, ...contributors: InferredPropContributorCallbacks<F>[]): void;
|
|
@@ -668,10 +710,10 @@ declare function getObjectExtensionEntitiesFromStore(injector: Injector, moduleK
|
|
|
668
710
|
declare function mapEntitiesToContributors<T = any>(injector: Injector, resource: string): rxjs.UnaryFunction<Observable<any>, Observable<PropContributors<any>>>;
|
|
669
711
|
|
|
670
712
|
declare class ExtensibleModule {
|
|
671
|
-
static ɵfac:
|
|
672
|
-
static ɵmod:
|
|
673
|
-
static ɵinj:
|
|
713
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ExtensibleModule, never>;
|
|
714
|
+
static ɵmod: _angular_core.ɵɵNgModuleDeclaration<ExtensibleModule, never, [typeof i1.CoreModule, typeof i2.ThemeSharedModule, typeof i3.NgxValidateCoreModule, typeof i4.NgbDatepickerModule, typeof i4.NgbDropdownModule, typeof i4.NgbTimepickerModule, typeof i4.NgbTypeaheadModule, typeof i4.NgbTooltipModule, typeof i2.DisabledDirective, typeof ExtensibleDateTimePickerComponent, typeof ExtensibleFormPropComponent, typeof GridActionsComponent, typeof PropDataDirective, typeof PageToolbarComponent, typeof CreateInjectorPipe, typeof ExtensibleFormComponent, typeof ExtensibleTableComponent, typeof ExtensibleTableRowDetailComponent, typeof ExtensibleFormMultiselectComponent], [typeof i2.DisabledDirective, typeof ExtensibleDateTimePickerComponent, typeof ExtensibleFormPropComponent, typeof GridActionsComponent, typeof PropDataDirective, typeof PageToolbarComponent, typeof CreateInjectorPipe, typeof ExtensibleFormComponent, typeof ExtensibleTableComponent, typeof ExtensibleTableRowDetailComponent, typeof ExtensibleFormMultiselectComponent]>;
|
|
715
|
+
static ɵinj: _angular_core.ɵɵInjectorDeclaration<ExtensibleModule>;
|
|
674
716
|
}
|
|
675
717
|
|
|
676
|
-
export { ActionList, CreateFormPropsFactory, CreateInjectorPipe, ENTITY_PROP_TYPE_CLASSES, EXTENSIBLE_FORM_VIEW_PROVIDER, EXTENSIONS_ACTION_CALLBACK, EXTENSIONS_ACTION_DATA, EXTENSIONS_ACTION_TYPE, EXTENSIONS_FORM_PROP, EXTENSIONS_FORM_PROP_DATA, EXTENSIONS_IDENTIFIER, EXTRA_PROPERTIES_KEY, EditFormPropsFactory, EntityAction, EntityActionList, EntityActions, EntityActionsFactory, EntityProp, EntityPropList, EntityProps, EntityPropsFactory, ExtensibleDateTimePickerComponent, ExtensibleFormComponent, ExtensibleFormMultiselectComponent, ExtensibleFormPropComponent, ExtensibleModule, ExtensibleTableComponent, ExtensionsService, FormProp, FormPropData, FormPropList, FormProps, GridActionsComponent, objectExtensions_d as ObjectExtensions, PROP_DATA_STREAM, PageToolbarComponent, PropDataDirective, PropList, ROW_RECORD, ToolbarAction, ToolbarActionList, ToolbarActions, ToolbarActionsFactory, ToolbarComponent, checkPolicies, createExtraPropertyValueResolver, eExtensibleComponents, ePropType, generateFormFromProps, getObjectExtensionEntitiesFromStore, mapEntitiesToContributors, mergeWithDefaultActions, mergeWithDefaultProps };
|
|
677
|
-
export type { ActionCallback, ReadonlyActionData as ActionData, ActionKeys, ActionPredicate, CreateFormPropContributorCallback, EditFormPropContributorCallback, EntityActionContributorCallback, EntityActionOptions, EntityPropContributorCallback, EntityPropOptions, EntityPropTypeClass, FilteredWithOptions, FormPropOptions, PartialWithOptions, PropCallback, ReadonlyPropData as PropData, PropPredicate, ToolbarActionContributorCallback, ToolbarActionOptions, ToolbarComponentOptions };
|
|
718
|
+
export { ActionList, CreateFormPropsFactory, CreateInjectorPipe, ENTITY_PROP_TYPE_CLASSES, EXTENSIBLE_FORM_VIEW_PROVIDER, EXTENSIONS_ACTION_CALLBACK, EXTENSIONS_ACTION_DATA, EXTENSIONS_ACTION_TYPE, EXTENSIONS_FORM_PROP, EXTENSIONS_FORM_PROP_DATA, EXTENSIONS_IDENTIFIER, EXTRA_PROPERTIES_KEY, EditFormPropsFactory, EntityAction, EntityActionList, EntityActions, EntityActionsFactory, EntityProp, EntityPropList, EntityProps, EntityPropsFactory, ExtensibleDateTimePickerComponent, ExtensibleFormComponent, ExtensibleFormMultiselectComponent, ExtensibleFormPropComponent, ExtensibleModule, ExtensibleTableComponent, ExtensibleTableRowDetailComponent, ExtensionsService, FormProp, FormPropData, FormPropList, FormProps, GridActionsComponent, objectExtensions_d as ObjectExtensions, PROP_DATA_STREAM, PageToolbarComponent, PropDataDirective, PropList, ROW_RECORD, ToolbarAction, ToolbarActionList, ToolbarActions, ToolbarActionsFactory, ToolbarComponent, checkPolicies, createExtraPropertyValueResolver, eExtensibleComponents, ePropType, generateFormFromProps, getObjectExtensionEntitiesFromStore, mapEntitiesToContributors, mergeWithDefaultActions, mergeWithDefaultProps };
|
|
719
|
+
export type { ActionCallback, ReadonlyActionData as ActionData, ActionKeys, ActionPredicate, CreateFormPropContributorCallback, EditFormPropContributorCallback, EntityActionContributorCallback, EntityActionOptions, EntityPropContributorCallback, EntityPropOptions, EntityPropTypeClass, FilteredWithOptions, FormPropOptions, PartialWithOptions, PropCallback, ReadonlyPropData as PropData, PropPredicate, RowDetailContext, ToolbarActionContributorCallback, ToolbarActionOptions, ToolbarComponentOptions };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { InjectionToken, Injector,
|
|
2
|
+
import { InjectionToken, Injector, OnInit, OnDestroy } from '@angular/core';
|
|
3
3
|
import { Observable, Subscription } from 'rxjs';
|
|
4
4
|
|
|
5
5
|
declare enum PageParts {
|
|
@@ -21,51 +21,50 @@ declare class PageToolbarContainerComponent {
|
|
|
21
21
|
}
|
|
22
22
|
|
|
23
23
|
declare class PageComponent {
|
|
24
|
-
title
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
breadcrumb: boolean;
|
|
24
|
+
readonly title: i0.InputSignal<string>;
|
|
25
|
+
readonly toolbarInput: i0.InputSignal<any>;
|
|
26
|
+
readonly breadcrumb: i0.InputSignal<boolean>;
|
|
27
|
+
protected readonly toolbarVisible: i0.WritableSignal<boolean>;
|
|
28
|
+
protected readonly toolbarData: i0.WritableSignal<any>;
|
|
30
29
|
pageParts: {
|
|
31
30
|
title: PageParts;
|
|
32
31
|
breadcrumb: PageParts;
|
|
33
32
|
toolbar: PageParts;
|
|
34
33
|
};
|
|
35
|
-
customTitle
|
|
36
|
-
customBreadcrumb
|
|
37
|
-
customToolbar
|
|
34
|
+
readonly customTitle: i0.Signal<PageTitleContainerComponent>;
|
|
35
|
+
readonly customBreadcrumb: i0.Signal<PageBreadcrumbContainerComponent>;
|
|
36
|
+
readonly customToolbar: i0.Signal<PageToolbarContainerComponent>;
|
|
37
|
+
constructor();
|
|
38
38
|
get shouldRenderRow(): boolean;
|
|
39
39
|
static ɵfac: i0.ɵɵFactoryDeclaration<PageComponent, never>;
|
|
40
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PageComponent, "abp-page", never, { "title": { "alias": "title"; "required": false; }; "
|
|
40
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PageComponent, "abp-page", never, { "title": { "alias": "title"; "required": false; "isSignal": true; }; "toolbarInput": { "alias": "toolbar"; "required": false; "isSignal": true; }; "breadcrumb": { "alias": "breadcrumb"; "required": false; "isSignal": true; }; }, {}, ["customTitle", "customBreadcrumb", "customToolbar"], ["abp-page-title-container", "abp-page-breadcrumb-container", "abp-page-toolbar-container", "*"], true, never>;
|
|
41
41
|
}
|
|
42
42
|
|
|
43
43
|
interface PageRenderStrategy {
|
|
44
44
|
shouldRender(type?: string): boolean | Observable<boolean>;
|
|
45
45
|
onInit?(type?: string, injector?: Injector, context?: any): void;
|
|
46
46
|
onDestroy?(type?: string, injector?: Injector, context?: any): void;
|
|
47
|
-
onContextUpdate?(
|
|
47
|
+
onContextUpdate?(context?: any): void;
|
|
48
48
|
}
|
|
49
49
|
declare const PAGE_RENDER_STRATEGY: InjectionToken<PageRenderStrategy>;
|
|
50
|
-
declare class PagePartDirective implements OnInit, OnDestroy
|
|
50
|
+
declare class PagePartDirective implements OnInit, OnDestroy {
|
|
51
51
|
private templateRef;
|
|
52
52
|
private viewContainer;
|
|
53
53
|
private renderLogic;
|
|
54
54
|
private injector;
|
|
55
55
|
hasRendered: boolean;
|
|
56
|
-
type: string;
|
|
57
56
|
subscription: Subscription;
|
|
58
|
-
context: any
|
|
59
|
-
|
|
57
|
+
readonly context: i0.InputSignal<any>;
|
|
58
|
+
readonly abpPagePart: i0.InputSignal<string>;
|
|
59
|
+
constructor();
|
|
60
60
|
render: (shouldRender: boolean) => void;
|
|
61
|
-
ngOnChanges({ context }: SimpleChanges): void;
|
|
62
61
|
ngOnInit(): void;
|
|
63
62
|
ngOnDestroy(): void;
|
|
64
63
|
shouldRender(type: string): Observable<boolean>;
|
|
65
64
|
protected createRenderStream(type: string): void;
|
|
66
65
|
protected clearSubscription(): void;
|
|
67
66
|
static ɵfac: i0.ɵɵFactoryDeclaration<PagePartDirective, never>;
|
|
68
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<PagePartDirective, "[abpPagePart]", never, { "context": { "alias": "abpPagePartContext"; "required": false; }; "abpPagePart": { "alias": "abpPagePart"; "required": false; }; }, {}, never, never, true, never>;
|
|
67
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<PagePartDirective, "[abpPagePart]", never, { "context": { "alias": "abpPagePartContext"; "required": false; "isSignal": true; }; "abpPagePart": { "alias": "abpPagePart"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
69
68
|
}
|
|
70
69
|
|
|
71
70
|
declare const PAGE_EXPORTS: (typeof PageTitleContainerComponent)[];
|