@quadrel-enterprise-ui/framework 20.23.1 → 20.24.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/index.d.ts
CHANGED
|
@@ -14,10 +14,10 @@ import { TranslateService } from '@ngx-translate/core';
|
|
|
14
14
|
import { OverlayRef, OverlayPositionBuilder, Overlay, ConnectedPosition } from '@angular/cdk/overlay';
|
|
15
15
|
import * as i4 from '@angular/router';
|
|
16
16
|
import { Params } from '@angular/router';
|
|
17
|
-
import { Highlightable, ActiveDescendantKeyManager } from '@angular/cdk/a11y';
|
|
18
17
|
import * as i39 from 'ngx-editor';
|
|
19
18
|
import { Editor, Toolbar } from 'ngx-editor';
|
|
20
19
|
import { Moment as Moment$1 } from 'moment';
|
|
20
|
+
import { Highlightable, ActiveDescendantKeyManager } from '@angular/cdk/a11y';
|
|
21
21
|
import * as _quadrel_enterprise_ui_framework from '@quadrel-enterprise-ui/framework';
|
|
22
22
|
import * as i25 from '@ngrx/store';
|
|
23
23
|
import * as i5 from '@angular/cdk/stepper';
|
|
@@ -2955,13 +2955,6 @@ interface QdFormInputConfiguration extends QdFormConfiguration, QdFormResolvable
|
|
|
2955
2955
|
* * @default: false
|
|
2956
2956
|
*/
|
|
2957
2957
|
hasAutofocus?: boolean;
|
|
2958
|
-
/**
|
|
2959
|
-
* @description Set to "true" when a focusable control is projected into the input suffix (e.g. an icon
|
|
2960
|
-
* button). Ensures its keyboard-focus indicator is not clipped by the input box.
|
|
2961
|
-
*
|
|
2962
|
-
* * @default: false
|
|
2963
|
-
*/
|
|
2964
|
-
hasFocusableSuffix?: boolean;
|
|
2965
2958
|
/**
|
|
2966
2959
|
* @description specifies the interval between legal numbers in an <input> element.
|
|
2967
2960
|
*
|
|
@@ -3290,12 +3283,6 @@ interface QdSwitchOption extends QdFormOption {
|
|
|
3290
3283
|
}
|
|
3291
3284
|
interface QdMultiInputOption extends QdFormOption, QdTranslatable {
|
|
3292
3285
|
}
|
|
3293
|
-
/**
|
|
3294
|
-
* @description The pincode component receives numeric values as strings as values.
|
|
3295
|
-
*
|
|
3296
|
-
* * @default: ''
|
|
3297
|
-
*/
|
|
3298
|
-
type QdPinCodeValue = '' | '0' | '1' | '2' | '3' | '4' | '5' | '6' | '7' | '8' | '9';
|
|
3299
3286
|
|
|
3300
3287
|
declare class QdMockFilterCategoryDateComponent {
|
|
3301
3288
|
filterId: string;
|
|
@@ -6257,7 +6244,7 @@ declare class QdDatepickerComponent implements ControlValueAccessor, OnInit, OnC
|
|
|
6257
6244
|
* No Parameter here.
|
|
6258
6245
|
*/
|
|
6259
6246
|
readonly clickViewonly: EventEmitter<null>;
|
|
6260
|
-
popover
|
|
6247
|
+
private popover;
|
|
6261
6248
|
readonly: boolean;
|
|
6262
6249
|
viewonly: boolean;
|
|
6263
6250
|
hintAction: boolean;
|
|
@@ -6271,7 +6258,6 @@ declare class QdDatepickerComponent implements ControlValueAccessor, OnInit, OnC
|
|
|
6271
6258
|
readonlyAction: boolean;
|
|
6272
6259
|
viewonlyAction: boolean;
|
|
6273
6260
|
language: string;
|
|
6274
|
-
qdPopoverOnClick: QdPopoverOnClickDirective;
|
|
6275
6261
|
control: AbstractControl;
|
|
6276
6262
|
timePicker?: QdFormTimepickerConfiguration;
|
|
6277
6263
|
private _disabledDatesValidator;
|
|
@@ -6416,43 +6402,6 @@ declare enum QdFormOptionsRequestState {
|
|
|
6416
6402
|
ERROR = 3
|
|
6417
6403
|
}
|
|
6418
6404
|
|
|
6419
|
-
declare class QdFormInputComponent implements Highlightable {
|
|
6420
|
-
private readonly translateService;
|
|
6421
|
-
option?: QdFormResolvedOption;
|
|
6422
|
-
private _isActive;
|
|
6423
|
-
get isActive(): boolean;
|
|
6424
|
-
private element;
|
|
6425
|
-
scrollIntoView(): void;
|
|
6426
|
-
setActiveStyles(): void;
|
|
6427
|
-
setInactiveStyles(): void;
|
|
6428
|
-
getLabel(): string;
|
|
6429
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<QdFormInputComponent, never>;
|
|
6430
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<QdFormInputComponent, "qd-form-input", never, { "option": { "alias": "option"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
6431
|
-
}
|
|
6432
|
-
|
|
6433
|
-
declare class QdDropdownOptionsComponent implements AfterViewInit {
|
|
6434
|
-
private keyboardService;
|
|
6435
|
-
private optionsService;
|
|
6436
|
-
filter: boolean;
|
|
6437
|
-
filterText: string;
|
|
6438
|
-
testId: string;
|
|
6439
|
-
id: string;
|
|
6440
|
-
readonly filterChange: EventEmitter<string>;
|
|
6441
|
-
readonly optionClick: EventEmitter<any>;
|
|
6442
|
-
optionComponents: QueryList<QdFormInputComponent>;
|
|
6443
|
-
filterElement: ElementRef;
|
|
6444
|
-
onKeyDown(event: KeyboardEvent): void;
|
|
6445
|
-
selectedOptionValue: string;
|
|
6446
|
-
filteredOptions$: Observable<QdFormResolvedOption[] | QdFormOption[]>;
|
|
6447
|
-
optionSelected: EventEmitter<any>;
|
|
6448
|
-
constructor();
|
|
6449
|
-
ngAfterViewInit(): void;
|
|
6450
|
-
onOpen(): void;
|
|
6451
|
-
onFilterInputChange(value: string): void;
|
|
6452
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<QdDropdownOptionsComponent, never>;
|
|
6453
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<QdDropdownOptionsComponent, "qd-dropdown-options", never, { "filter": { "alias": "filter"; "required": false; }; "filterText": { "alias": "filterText"; "required": false; }; "testId": { "alias": "testId"; "required": false; }; "id": { "alias": "id"; "required": false; }; }, { "filterChange": "filterChange"; "optionClick": "optionClick"; }, never, never, false, never>;
|
|
6454
|
-
}
|
|
6455
|
-
|
|
6456
6405
|
/**
|
|
6457
6406
|
* The **QdDropdown** is an component that provides a dropdown form element.<br />
|
|
6458
6407
|
* It can be used with Quadrel Reactive Forms or with model binding.
|
|
@@ -6602,8 +6551,8 @@ declare class QdDropdownComponent implements ControlValueAccessor, OnInit, OnCha
|
|
|
6602
6551
|
private _subs;
|
|
6603
6552
|
private _onChange;
|
|
6604
6553
|
private _onTouch;
|
|
6605
|
-
dropdownOptions
|
|
6606
|
-
dropdownDirective
|
|
6554
|
+
private dropdownOptions;
|
|
6555
|
+
private dropdownDirective;
|
|
6607
6556
|
box: ElementRef;
|
|
6608
6557
|
isOpen: boolean;
|
|
6609
6558
|
get hasError(): boolean;
|
|
@@ -7469,34 +7418,6 @@ interface QdFormArrayOptions extends AbstractControlOptions {
|
|
|
7469
7418
|
itemInitialValueIsDefault?: boolean;
|
|
7470
7419
|
}
|
|
7471
7420
|
|
|
7472
|
-
type Direction = 'up' | 'down';
|
|
7473
|
-
declare class QdMultiInputMenuComponent implements AfterViewInit {
|
|
7474
|
-
private readonly multiInputService;
|
|
7475
|
-
/**
|
|
7476
|
-
* Here an id can be assigned, with which a value can be linked to a corresponding label.
|
|
7477
|
-
*/
|
|
7478
|
-
id: any;
|
|
7479
|
-
optionsListForView: QdMultiInputOption[];
|
|
7480
|
-
/**
|
|
7481
|
-
* A static test ID for integration tests can be set. <br />
|
|
7482
|
-
* The value for the HTML attribute [data-test-id].
|
|
7483
|
-
*/
|
|
7484
|
-
testId: string;
|
|
7485
|
-
readonly itemClick: EventEmitter<any>;
|
|
7486
|
-
selectBox: ElementRef;
|
|
7487
|
-
dropdownOptions: QueryList<ElementRef>;
|
|
7488
|
-
optionComponents: QueryList<QdFormInputComponent>;
|
|
7489
|
-
keyManager: ActiveDescendantKeyManager<QdFormInputComponent>;
|
|
7490
|
-
ngAfterViewInit(): void;
|
|
7491
|
-
getTranslation(option: QdMultiInputOption): string;
|
|
7492
|
-
handleClick(option: QdMultiInputOption): void;
|
|
7493
|
-
resetCheckedOption(): number;
|
|
7494
|
-
handleArrowKey(direction: Direction, event: KeyboardEvent): void;
|
|
7495
|
-
getHeight(): number;
|
|
7496
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<QdMultiInputMenuComponent, never>;
|
|
7497
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<QdMultiInputMenuComponent, "qd-multi-input-menu", never, { "id": { "alias": "id"; "required": false; }; "optionsListForView": { "alias": "optionsListForView"; "required": false; }; "testId": { "alias": "data-test-id"; "required": false; }; }, { "itemClick": "itemClick"; }, never, never, false, never>;
|
|
7498
|
-
}
|
|
7499
|
-
|
|
7500
7421
|
/**
|
|
7501
7422
|
* The **QdMultiInput** is a component that provides a user interface for entering multiple inputs.<br />
|
|
7502
7423
|
* It is designed to enhance the user experience when dealing with multiple inputs and can be used with Quadrel Reactive Forms or with model binding.
|
|
@@ -7587,8 +7508,8 @@ declare class QdMultiInputComponent implements ControlValueAccessor, OnInit, OnC
|
|
|
7587
7508
|
*/
|
|
7588
7509
|
readonly clickViewonly: EventEmitter<any>;
|
|
7589
7510
|
inputField: ElementRef;
|
|
7590
|
-
multiInputMenu
|
|
7591
|
-
popoverOnClickDirective
|
|
7511
|
+
private multiInputMenu;
|
|
7512
|
+
private popoverOnClickDirective;
|
|
7592
7513
|
errorTooltips: QueryList<ElementRef>;
|
|
7593
7514
|
dropdownOptions: QueryList<ElementRef>;
|
|
7594
7515
|
readonly: boolean;
|
|
@@ -7653,33 +7574,6 @@ declare class QdMultiInputComponent implements ControlValueAccessor, OnInit, OnC
|
|
|
7653
7574
|
static ɵcmp: i0.ɵɵComponentDeclaration<QdMultiInputComponent, "qd-multi-input", never, { "id": { "alias": "id"; "required": false; }; "values": { "alias": "values"; "required": false; }; "formControlName": { "alias": "formControlName"; "required": false; }; "formArrayName": { "alias": "formArrayName"; "required": false; }; "config": { "alias": "config"; "required": false; }; "testId": { "alias": "data-test-id"; "required": false; }; }, { "valuesChange": "valuesChange"; "clickHint": "clickHint"; "clickReadonly": "clickReadonly"; "clickViewonly": "clickViewonly"; }, never, never, false, never>;
|
|
7654
7575
|
}
|
|
7655
7576
|
|
|
7656
|
-
declare class QdPinCodeService {
|
|
7657
|
-
private _values;
|
|
7658
|
-
private _currentIndex;
|
|
7659
|
-
private _filledTill;
|
|
7660
|
-
private _codeLength;
|
|
7661
|
-
set currentIndex(index: number);
|
|
7662
|
-
get currentIndex(): number;
|
|
7663
|
-
set filledTill(index: number);
|
|
7664
|
-
get filledTill(): number;
|
|
7665
|
-
set codeLength(length: number);
|
|
7666
|
-
get codeLength(): number;
|
|
7667
|
-
get firstEmpty(): number;
|
|
7668
|
-
get lastIndex(): number;
|
|
7669
|
-
get allEmpty(): boolean;
|
|
7670
|
-
get allFilled(): boolean;
|
|
7671
|
-
set values(values: QdPinCodeValue[] | string[]);
|
|
7672
|
-
get values(): QdPinCodeValue[] | string[];
|
|
7673
|
-
get joinedValues(): string;
|
|
7674
|
-
addValue(value: QdPinCodeValue | string): void;
|
|
7675
|
-
addValues(values: any): void;
|
|
7676
|
-
stepPrevious(): void;
|
|
7677
|
-
stepNext(): void;
|
|
7678
|
-
reset(): void;
|
|
7679
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<QdPinCodeService, never>;
|
|
7680
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<QdPinCodeService>;
|
|
7681
|
-
}
|
|
7682
|
-
|
|
7683
7577
|
/**
|
|
7684
7578
|
* **QdPinCode** component provides a FormElement.
|
|
7685
7579
|
* The **QdPinCode** is a component that provides a form element for entering a PIN code.<br />
|
|
@@ -7707,7 +7601,7 @@ declare class QdPinCodeService {
|
|
|
7707
7601
|
* ```
|
|
7708
7602
|
*/
|
|
7709
7603
|
declare class QdPinCodeComponent implements OnInit, OnChanges, AfterViewInit, OnDestroy, ControlValueAccessor {
|
|
7710
|
-
readonly pinCodeService
|
|
7604
|
+
private readonly pinCodeService;
|
|
7711
7605
|
private readonly changeDetectorRef;
|
|
7712
7606
|
private readonly actionEmitterService;
|
|
7713
7607
|
private readonly controlContainer;
|
|
@@ -7783,6 +7677,8 @@ declare class QdPinCodeComponent implements OnInit, OnChanges, AfterViewInit, On
|
|
|
7783
7677
|
private _subs;
|
|
7784
7678
|
private _onChange;
|
|
7785
7679
|
private _onTouch;
|
|
7680
|
+
protected get firstEmptyIndex(): number;
|
|
7681
|
+
protected get joinedValues(): string;
|
|
7786
7682
|
get errors(): ValidationErrors;
|
|
7787
7683
|
get required(): boolean;
|
|
7788
7684
|
ngOnInit(): void;
|
|
@@ -8759,6 +8655,43 @@ declare class QdCheckboxChipsItemComponent {
|
|
|
8759
8655
|
static ɵcmp: i0.ɵɵComponentDeclaration<QdCheckboxChipsItemComponent, "qd-checkbox-chips-item", never, { "data": { "alias": "data"; "required": false; }; "testId": { "alias": "data-test-id"; "required": false; }; }, {}, never, never, false, never>;
|
|
8760
8656
|
}
|
|
8761
8657
|
|
|
8658
|
+
declare class QdFormInputComponent implements Highlightable {
|
|
8659
|
+
private readonly translateService;
|
|
8660
|
+
option?: QdFormResolvedOption;
|
|
8661
|
+
private _isActive;
|
|
8662
|
+
get isActive(): boolean;
|
|
8663
|
+
private element;
|
|
8664
|
+
scrollIntoView(): void;
|
|
8665
|
+
setActiveStyles(): void;
|
|
8666
|
+
setInactiveStyles(): void;
|
|
8667
|
+
getLabel(): string;
|
|
8668
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<QdFormInputComponent, never>;
|
|
8669
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<QdFormInputComponent, "qd-form-input", never, { "option": { "alias": "option"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
8670
|
+
}
|
|
8671
|
+
|
|
8672
|
+
declare class QdDropdownOptionsComponent implements AfterViewInit {
|
|
8673
|
+
private keyboardService;
|
|
8674
|
+
private optionsService;
|
|
8675
|
+
filter: boolean;
|
|
8676
|
+
filterText: string;
|
|
8677
|
+
testId: string;
|
|
8678
|
+
id: string;
|
|
8679
|
+
readonly filterChange: EventEmitter<string>;
|
|
8680
|
+
readonly optionClick: EventEmitter<any>;
|
|
8681
|
+
optionComponents: QueryList<QdFormInputComponent>;
|
|
8682
|
+
filterElement: ElementRef;
|
|
8683
|
+
onKeyDown(event: KeyboardEvent): void;
|
|
8684
|
+
selectedOptionValue: string;
|
|
8685
|
+
filteredOptions$: Observable<QdFormResolvedOption[] | QdFormOption[]>;
|
|
8686
|
+
optionSelected: EventEmitter<any>;
|
|
8687
|
+
constructor();
|
|
8688
|
+
ngAfterViewInit(): void;
|
|
8689
|
+
onOpen(): void;
|
|
8690
|
+
onFilterInputChange(value: string): void;
|
|
8691
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<QdDropdownOptionsComponent, never>;
|
|
8692
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<QdDropdownOptionsComponent, "qd-dropdown-options", never, { "filter": { "alias": "filter"; "required": false; }; "filterText": { "alias": "filterText"; "required": false; }; "testId": { "alias": "testId"; "required": false; }; "id": { "alias": "id"; "required": false; }; }, { "filterChange": "filterChange"; "optionClick": "optionClick"; }, never, never, false, never>;
|
|
8693
|
+
}
|
|
8694
|
+
|
|
8762
8695
|
declare class QdFormErrorComponent {
|
|
8763
8696
|
control?: AbstractControl;
|
|
8764
8697
|
get errorArr(): {
|
|
@@ -8979,6 +8912,34 @@ declare class QdMultiInputChipComponent {
|
|
|
8979
8912
|
static ɵcmp: i0.ɵɵComponentDeclaration<QdMultiInputChipComponent, "qd-multi-input-chip", never, { "itemControl": { "alias": "itemControl"; "required": false; }; "value": { "alias": "value"; "required": false; }; "close": { "alias": "close"; "required": false; }; "testId": { "alias": "data-test-id"; "required": false; }; }, { "closeClickEmitter": "closeClickEmitter"; }, never, never, false, never>;
|
|
8980
8913
|
}
|
|
8981
8914
|
|
|
8915
|
+
type Direction = 'up' | 'down';
|
|
8916
|
+
declare class QdMultiInputMenuComponent implements AfterViewInit {
|
|
8917
|
+
private readonly multiInputService;
|
|
8918
|
+
/**
|
|
8919
|
+
* Here an id can be assigned, with which a value can be linked to a corresponding label.
|
|
8920
|
+
*/
|
|
8921
|
+
id: any;
|
|
8922
|
+
optionsListForView: QdMultiInputOption[];
|
|
8923
|
+
/**
|
|
8924
|
+
* A static test ID for integration tests can be set. <br />
|
|
8925
|
+
* The value for the HTML attribute [data-test-id].
|
|
8926
|
+
*/
|
|
8927
|
+
testId: string;
|
|
8928
|
+
readonly itemClick: EventEmitter<any>;
|
|
8929
|
+
selectBox: ElementRef;
|
|
8930
|
+
dropdownOptions: QueryList<ElementRef>;
|
|
8931
|
+
optionComponents: QueryList<QdFormInputComponent>;
|
|
8932
|
+
keyManager: ActiveDescendantKeyManager<QdFormInputComponent>;
|
|
8933
|
+
ngAfterViewInit(): void;
|
|
8934
|
+
getTranslation(option: QdMultiInputOption): string;
|
|
8935
|
+
handleClick(option: QdMultiInputOption): void;
|
|
8936
|
+
resetCheckedOption(): number;
|
|
8937
|
+
handleArrowKey(direction: Direction, event: KeyboardEvent): void;
|
|
8938
|
+
getHeight(): number;
|
|
8939
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<QdMultiInputMenuComponent, never>;
|
|
8940
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<QdMultiInputMenuComponent, "qd-multi-input-menu", never, { "id": { "alias": "id"; "required": false; }; "optionsListForView": { "alias": "optionsListForView"; "required": false; }; "testId": { "alias": "data-test-id"; "required": false; }; }, { "itemClick": "itemClick"; }, never, never, false, never>;
|
|
8941
|
+
}
|
|
8942
|
+
|
|
8982
8943
|
declare class QdAutofocusDirective implements AfterViewInit, OnDestroy {
|
|
8983
8944
|
private readonly autofocusService;
|
|
8984
8945
|
private readonly elementRef;
|
|
@@ -11526,53 +11487,6 @@ declare class QdFileCollectorModule {
|
|
|
11526
11487
|
static ɵinj: i0.ɵɵInjectorDeclaration<QdFileCollectorModule>;
|
|
11527
11488
|
}
|
|
11528
11489
|
|
|
11529
|
-
declare class QdFilterItemFreeTextCategoryComponent implements OnInit {
|
|
11530
|
-
private readonly filterService;
|
|
11531
|
-
filterId: string;
|
|
11532
|
-
isInstantFiltering: boolean;
|
|
11533
|
-
categoryIndex: number;
|
|
11534
|
-
testId: string;
|
|
11535
|
-
itemIndex: number;
|
|
11536
|
-
itemData: any;
|
|
11537
|
-
ngOnInit(): void;
|
|
11538
|
-
private updateState;
|
|
11539
|
-
refreshItems(): void;
|
|
11540
|
-
handleReset(): void;
|
|
11541
|
-
handleEnter(): void;
|
|
11542
|
-
close(): void;
|
|
11543
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<QdFilterItemFreeTextCategoryComponent, never>;
|
|
11544
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<QdFilterItemFreeTextCategoryComponent, "qd-filter-category-free-text", never, { "filterId": { "alias": "filterId"; "required": false; }; "isInstantFiltering": { "alias": "isInstantFiltering"; "required": false; }; "categoryIndex": { "alias": "categoryIndex"; "required": false; }; "testId": { "alias": "data-test-id"; "required": false; }; }, {}, never, never, false, never>;
|
|
11545
|
-
}
|
|
11546
|
-
|
|
11547
|
-
declare class QdFilterCategoryComponent implements OnInit {
|
|
11548
|
-
private readonly filterService;
|
|
11549
|
-
readonly translateService: TranslateService;
|
|
11550
|
-
filterId: string;
|
|
11551
|
-
isInstantFiltering: boolean;
|
|
11552
|
-
categoryIndex: number;
|
|
11553
|
-
lastCategory: boolean;
|
|
11554
|
-
testId: string;
|
|
11555
|
-
timePickerConfig: QdFormDatepickerConfiguration;
|
|
11556
|
-
private type;
|
|
11557
|
-
itemFreeTextCategory: QueryList<QdFilterItemFreeTextCategoryComponent>;
|
|
11558
|
-
get categoryIndexAttribute(): string;
|
|
11559
|
-
get categoryNumberClassName(): string;
|
|
11560
|
-
get dataTestId(): string;
|
|
11561
|
-
ngOnInit(): void;
|
|
11562
|
-
get isBoolean(): boolean;
|
|
11563
|
-
get isSelect(): boolean;
|
|
11564
|
-
get isFreeText(): boolean;
|
|
11565
|
-
get isDate(): boolean;
|
|
11566
|
-
get isDateTime(): boolean;
|
|
11567
|
-
get isDateRange(): boolean;
|
|
11568
|
-
get isDateTimeRange(): boolean;
|
|
11569
|
-
get buttonClassName(): string;
|
|
11570
|
-
refreshItems(): void;
|
|
11571
|
-
handleReset(): void;
|
|
11572
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<QdFilterCategoryComponent, never>;
|
|
11573
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<QdFilterCategoryComponent, "qd-filter-category", never, { "filterId": { "alias": "filterId"; "required": false; }; "isInstantFiltering": { "alias": "isInstantFiltering"; "required": false; }; "categoryIndex": { "alias": "categoryIndex"; "required": false; }; "lastCategory": { "alias": "lastCategory"; "required": false; }; "testId": { "alias": "data-test-id"; "required": false; }; }, {}, never, never, false, never>;
|
|
11574
|
-
}
|
|
11575
|
-
|
|
11576
11490
|
declare class QdFilterService {
|
|
11577
11491
|
private readonly store;
|
|
11578
11492
|
readonly translateService: TranslateService;
|
|
@@ -11620,47 +11534,6 @@ declare class QdFilterService {
|
|
|
11620
11534
|
static ɵprov: i0.ɵɵInjectableDeclaration<QdFilterService>;
|
|
11621
11535
|
}
|
|
11622
11536
|
|
|
11623
|
-
/**
|
|
11624
|
-
* Per-view adapter that syncs `QdFilterComponent` selection with the URL `?filter=` query
|
|
11625
|
-
* param via `QdRouterQueryParamHubService`. Reads/parses on activation, writes on selection
|
|
11626
|
-
* change. Coordination, ownership, and write batching are delegated to the hub — see its
|
|
11627
|
-
* JSDoc for details. Behavior contracts live in `filter-router-connector.service.spec.ts`
|
|
11628
|
-
* and `router-query-param-hub.integration.cy.ts`.
|
|
11629
|
-
*/
|
|
11630
|
-
declare class QdFilterRouterConnectorService {
|
|
11631
|
-
private readonly _filterService;
|
|
11632
|
-
private readonly _hub;
|
|
11633
|
-
private readonly _destroyRef;
|
|
11634
|
-
private _connectedFilter?;
|
|
11635
|
-
private _readSubscription?;
|
|
11636
|
-
private _writeSubscription?;
|
|
11637
|
-
private _activatedRouteCheckedSubject;
|
|
11638
|
-
private _activatedRouteChecked$;
|
|
11639
|
-
constructor();
|
|
11640
|
-
connectFilterWithRouter(filterComponent: QdFilterComponent): Observable<boolean>;
|
|
11641
|
-
private tearDownConnection;
|
|
11642
|
-
private subscribeToUrlChanges;
|
|
11643
|
-
private subscribeToFilterChanges;
|
|
11644
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<QdFilterRouterConnectorService, never>;
|
|
11645
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<QdFilterRouterConnectorService>;
|
|
11646
|
-
}
|
|
11647
|
-
|
|
11648
|
-
declare class QdDependentFiltersService {
|
|
11649
|
-
private readonly filterService;
|
|
11650
|
-
private _filterComponent;
|
|
11651
|
-
private _subscription?;
|
|
11652
|
-
private get filterData();
|
|
11653
|
-
private get categories();
|
|
11654
|
-
private get filterId();
|
|
11655
|
-
initialize(filterComponent: QdFilterComponent): void;
|
|
11656
|
-
reinitialize(): void;
|
|
11657
|
-
destroy(): void;
|
|
11658
|
-
private getDependentCategories;
|
|
11659
|
-
private resolveItemsWhenDependsOnCategoriesChange;
|
|
11660
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<QdDependentFiltersService, never>;
|
|
11661
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<QdDependentFiltersService>;
|
|
11662
|
-
}
|
|
11663
|
-
|
|
11664
11537
|
/**
|
|
11665
11538
|
* The **QdFilter** is responsible for the filtering of data.
|
|
11666
11539
|
*
|
|
@@ -11702,8 +11575,8 @@ declare class QdDependentFiltersService {
|
|
|
11702
11575
|
*/
|
|
11703
11576
|
declare class QdFilterComponent implements OnInit, OnChanges, OnDestroy {
|
|
11704
11577
|
readonly filterService: QdFilterService;
|
|
11705
|
-
readonly filterRouterConnectorService
|
|
11706
|
-
readonly dependentFiltersService
|
|
11578
|
+
private readonly filterRouterConnectorService;
|
|
11579
|
+
private readonly dependentFiltersService;
|
|
11707
11580
|
/**
|
|
11708
11581
|
* The configuration of the filter
|
|
11709
11582
|
*/
|
|
@@ -11728,7 +11601,7 @@ declare class QdFilterComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
11728
11601
|
* Emits event when the values of the filter change. Return value matches the current object of the filter.
|
|
11729
11602
|
*/
|
|
11730
11603
|
valueChange: EventEmitter<QdFilterPostBodyData>;
|
|
11731
|
-
filterCategory
|
|
11604
|
+
private filterCategory;
|
|
11732
11605
|
get dataTestId(): string;
|
|
11733
11606
|
disableFilterButton$: Observable<boolean>;
|
|
11734
11607
|
disableResetButton$: Observable<boolean>;
|
|
@@ -11839,6 +11712,53 @@ declare class LocaleDatePipe implements PipeTransform, OnDestroy {
|
|
|
11839
11712
|
static ɵpipe: i0.ɵɵPipeDeclaration<LocaleDatePipe, "localeDate", false>;
|
|
11840
11713
|
}
|
|
11841
11714
|
|
|
11715
|
+
declare class QdFilterItemFreeTextCategoryComponent implements OnInit {
|
|
11716
|
+
private readonly filterService;
|
|
11717
|
+
filterId: string;
|
|
11718
|
+
isInstantFiltering: boolean;
|
|
11719
|
+
categoryIndex: number;
|
|
11720
|
+
testId: string;
|
|
11721
|
+
itemIndex: number;
|
|
11722
|
+
itemData: any;
|
|
11723
|
+
ngOnInit(): void;
|
|
11724
|
+
private updateState;
|
|
11725
|
+
refreshItems(): void;
|
|
11726
|
+
handleReset(): void;
|
|
11727
|
+
handleEnter(): void;
|
|
11728
|
+
close(): void;
|
|
11729
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<QdFilterItemFreeTextCategoryComponent, never>;
|
|
11730
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<QdFilterItemFreeTextCategoryComponent, "qd-filter-category-free-text", never, { "filterId": { "alias": "filterId"; "required": false; }; "isInstantFiltering": { "alias": "isInstantFiltering"; "required": false; }; "categoryIndex": { "alias": "categoryIndex"; "required": false; }; "testId": { "alias": "data-test-id"; "required": false; }; }, {}, never, never, false, never>;
|
|
11731
|
+
}
|
|
11732
|
+
|
|
11733
|
+
declare class QdFilterCategoryComponent implements OnInit {
|
|
11734
|
+
private readonly filterService;
|
|
11735
|
+
readonly translateService: TranslateService;
|
|
11736
|
+
filterId: string;
|
|
11737
|
+
isInstantFiltering: boolean;
|
|
11738
|
+
categoryIndex: number;
|
|
11739
|
+
lastCategory: boolean;
|
|
11740
|
+
testId: string;
|
|
11741
|
+
timePickerConfig: QdFormDatepickerConfiguration;
|
|
11742
|
+
private type;
|
|
11743
|
+
itemFreeTextCategory: QueryList<QdFilterItemFreeTextCategoryComponent>;
|
|
11744
|
+
get categoryIndexAttribute(): string;
|
|
11745
|
+
get categoryNumberClassName(): string;
|
|
11746
|
+
get dataTestId(): string;
|
|
11747
|
+
ngOnInit(): void;
|
|
11748
|
+
get isBoolean(): boolean;
|
|
11749
|
+
get isSelect(): boolean;
|
|
11750
|
+
get isFreeText(): boolean;
|
|
11751
|
+
get isDate(): boolean;
|
|
11752
|
+
get isDateTime(): boolean;
|
|
11753
|
+
get isDateRange(): boolean;
|
|
11754
|
+
get isDateTimeRange(): boolean;
|
|
11755
|
+
get buttonClassName(): string;
|
|
11756
|
+
refreshItems(): void;
|
|
11757
|
+
handleReset(): void;
|
|
11758
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<QdFilterCategoryComponent, never>;
|
|
11759
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<QdFilterCategoryComponent, "qd-filter-category", never, { "filterId": { "alias": "filterId"; "required": false; }; "isInstantFiltering": { "alias": "isInstantFiltering"; "required": false; }; "categoryIndex": { "alias": "categoryIndex"; "required": false; }; "lastCategory": { "alias": "lastCategory"; "required": false; }; "testId": { "alias": "data-test-id"; "required": false; }; }, {}, never, never, false, never>;
|
|
11760
|
+
}
|
|
11761
|
+
|
|
11842
11762
|
declare class QdFilterCategoryBooleanComponent implements OnInit {
|
|
11843
11763
|
private readonly filterService;
|
|
11844
11764
|
filterId: string;
|
|
@@ -12445,10 +12365,6 @@ declare class QdPageControlPanelComponent {
|
|
|
12445
12365
|
static ɵcmp: i0.ɵɵComponentDeclaration<QdPageControlPanelComponent, "qd-page-control-panel", never, { "config": { "alias": "config"; "required": true; }; }, {}, never, ["qd-text-section", "qd-panel-section", "qd-section"], false, never>;
|
|
12446
12366
|
}
|
|
12447
12367
|
|
|
12448
|
-
/**
|
|
12449
|
-
* Type for the keys of footer actions.
|
|
12450
|
-
*/
|
|
12451
|
-
type QdFooterActionKey = 'saveDraft' | 'previous' | 'next' | 'cancel' | 'submit';
|
|
12452
12368
|
/**
|
|
12453
12369
|
* Interface that describes the configuration of a footer action.
|
|
12454
12370
|
*/
|
|
@@ -12493,7 +12409,7 @@ declare enum QdFooterActionType {
|
|
|
12493
12409
|
declare class QdPageFooterComponent {
|
|
12494
12410
|
private readonly footerService;
|
|
12495
12411
|
protected readonly QdFooterActionType: typeof QdFooterActionType;
|
|
12496
|
-
actions$: Observable<(QdPageFooterAction & {
|
|
12412
|
+
protected actions$: Observable<(QdPageFooterAction & {
|
|
12497
12413
|
key: string;
|
|
12498
12414
|
})[]>;
|
|
12499
12415
|
constructor();
|
|
@@ -12751,28 +12667,6 @@ declare class QdPageStepperAdapterDirective implements OnInit {
|
|
|
12751
12667
|
static ɵdir: i0.ɵɵDirectiveDeclaration<QdPageStepperAdapterDirective, "[qdPageStepperAdapter]", never, {}, {}, never, never, false, never>;
|
|
12752
12668
|
}
|
|
12753
12669
|
|
|
12754
|
-
declare class QdPageFooterService {
|
|
12755
|
-
private _pageFooterActions;
|
|
12756
|
-
private _customContentCount;
|
|
12757
|
-
pageFooterActions$: rxjs.Observable<Map<QdFooterActionKey, QdPageFooterAction>>;
|
|
12758
|
-
customContentCount$: rxjs.Observable<number>;
|
|
12759
|
-
footerHasContent$: rxjs.Observable<boolean>;
|
|
12760
|
-
registerCustomContent(): void;
|
|
12761
|
-
detachCustomContent(): void;
|
|
12762
|
-
setActions(actionsArray: Array<{
|
|
12763
|
-
key: QdFooterActionKey;
|
|
12764
|
-
action: QdPageFooterAction;
|
|
12765
|
-
}>): void;
|
|
12766
|
-
updateActions(updates: {
|
|
12767
|
-
actionKey: QdFooterActionKey;
|
|
12768
|
-
partialAction: Partial<QdPageFooterAction>;
|
|
12769
|
-
}[]): void;
|
|
12770
|
-
private sortActionsByPriority;
|
|
12771
|
-
private isAnyActionVisible;
|
|
12772
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<QdPageFooterService, never>;
|
|
12773
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<QdPageFooterService>;
|
|
12774
|
-
}
|
|
12775
|
-
|
|
12776
12670
|
/**
|
|
12777
12671
|
* Interface for the configuration of the page stepper
|
|
12778
12672
|
*/
|
|
@@ -12887,7 +12781,7 @@ declare class QdPageStepComponent extends CdkStep implements OnInit, OnChanges,
|
|
|
12887
12781
|
* The **QdPageStepper** allows linear navigation through process steps within a **QdPage**.
|
|
12888
12782
|
*/
|
|
12889
12783
|
declare class QdPageStepperComponent extends CdkStepper implements OnInit, AfterContentInit, OnChanges, OnDestroy {
|
|
12890
|
-
readonly footerService
|
|
12784
|
+
private readonly footerService;
|
|
12891
12785
|
private readonly pageStepResolver;
|
|
12892
12786
|
private readonly router;
|
|
12893
12787
|
private readonly dialog;
|
|
@@ -12911,6 +12805,7 @@ declare class QdPageStepperComponent extends CdkStepper implements OnInit, After
|
|
|
12911
12805
|
allStepsValid$: Observable<boolean>;
|
|
12912
12806
|
private _destroyed$;
|
|
12913
12807
|
private isGoingToNextStep;
|
|
12808
|
+
protected get hasPageFooter(): boolean;
|
|
12914
12809
|
constructor();
|
|
12915
12810
|
ngOnInit(): void;
|
|
12916
12811
|
ngOnChanges(changes: SimpleChanges): void;
|
|
@@ -13318,9 +13213,10 @@ interface QdTabSelectionEvent {
|
|
|
13318
13213
|
* - If no tab parameter is present, the `selectedIndex` or first non-disabled tab is selected
|
|
13319
13214
|
*/
|
|
13320
13215
|
declare class QdPageTabsComponent extends CdkStepper implements OnInit, OnChanges, AfterContentInit, AfterViewInit {
|
|
13321
|
-
readonly footerService
|
|
13216
|
+
private readonly footerService;
|
|
13322
13217
|
private pageStoreService;
|
|
13323
13218
|
private readonly routerConnector;
|
|
13219
|
+
protected get hasPageFooter(): boolean;
|
|
13324
13220
|
/**
|
|
13325
13221
|
* Configuration of QdPageTabs.
|
|
13326
13222
|
*/
|
|
@@ -14948,10 +14844,27 @@ declare class QdSectionAdapterDirective implements OnInit {
|
|
|
14948
14844
|
static ɵdir: i0.ɵɵDirectiveDeclaration<QdSectionAdapterDirective, "[qdSectionAdapter]", never, {}, {}, never, never, false, never>;
|
|
14949
14845
|
}
|
|
14950
14846
|
|
|
14951
|
-
|
|
14952
|
-
|
|
14953
|
-
|
|
14954
|
-
|
|
14847
|
+
declare class QdSectionToolbarComponent implements AfterViewInit {
|
|
14848
|
+
private toolbarComponentsService;
|
|
14849
|
+
private changeDetectorRef;
|
|
14850
|
+
config: QdSectionConfig;
|
|
14851
|
+
private toolbarComponents;
|
|
14852
|
+
get searchConfigData(): QdSearchOptions | undefined;
|
|
14853
|
+
get filterData(): QdFilterConfigData;
|
|
14854
|
+
get collapseConfig(): QdSectionCollapse | undefined;
|
|
14855
|
+
get isCollapsed(): boolean;
|
|
14856
|
+
set isCollapsed(value: boolean);
|
|
14857
|
+
get isTooltipVisible(): boolean;
|
|
14858
|
+
get tooltipContent(): QdTooltipContent | undefined;
|
|
14859
|
+
ngAfterViewInit(): void;
|
|
14860
|
+
toggleCollapse(): void;
|
|
14861
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<QdSectionToolbarComponent, never>;
|
|
14862
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<QdSectionToolbarComponent, "qd-section-toolbar", never, { "config": { "alias": "config"; "required": false; }; }, {}, never, never, false, never>;
|
|
14863
|
+
}
|
|
14864
|
+
|
|
14865
|
+
interface QdSingleActionConfig {
|
|
14866
|
+
/**
|
|
14867
|
+
* @description Translation key for the action's label displayed in the UI.
|
|
14955
14868
|
*/
|
|
14956
14869
|
label: {
|
|
14957
14870
|
i18n: string;
|
|
@@ -14974,24 +14887,6 @@ interface QdSingleActionConfig {
|
|
|
14974
14887
|
isHidden?: boolean;
|
|
14975
14888
|
}
|
|
14976
14889
|
|
|
14977
|
-
declare class QdSectionToolbarComponent implements AfterViewInit {
|
|
14978
|
-
private toolbarComponentsService;
|
|
14979
|
-
private changeDetectorRef;
|
|
14980
|
-
config: QdSectionConfig;
|
|
14981
|
-
toolbarComponents: QueryList<QdToolbarComponent>;
|
|
14982
|
-
get searchConfigData(): QdSearchOptions | undefined;
|
|
14983
|
-
get filterData(): QdFilterConfigData;
|
|
14984
|
-
get collapseConfig(): QdSectionCollapse | undefined;
|
|
14985
|
-
get isCollapsed(): boolean;
|
|
14986
|
-
set isCollapsed(value: boolean);
|
|
14987
|
-
get isTooltipVisible(): boolean;
|
|
14988
|
-
get tooltipContent(): QdTooltipContent | undefined;
|
|
14989
|
-
ngAfterViewInit(): void;
|
|
14990
|
-
toggleCollapse(): void;
|
|
14991
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<QdSectionToolbarComponent, never>;
|
|
14992
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<QdSectionToolbarComponent, "qd-section-toolbar", never, { "config": { "alias": "config"; "required": false; }; }, {}, never, never, false, never>;
|
|
14993
|
-
}
|
|
14994
|
-
|
|
14995
14890
|
/**
|
|
14996
14891
|
* Renders the configured section actions in the toolbar.
|
|
14997
14892
|
*
|
|
@@ -15298,64 +15193,6 @@ declare function qdSortParameterize<T extends string>(sort: QdTableStateSort<T>[
|
|
|
15298
15193
|
*/
|
|
15299
15194
|
declare function qdTableQueryParameterize<T extends string>(props: QdTableDataResolverProps<T>): QdQueryParameter;
|
|
15300
15195
|
|
|
15301
|
-
declare enum QdPaginatorDirection {
|
|
15302
|
-
FirstPage = 0,
|
|
15303
|
-
NextPage = 1,
|
|
15304
|
-
PreviousPage = 2,
|
|
15305
|
-
LastPage = 3
|
|
15306
|
-
}
|
|
15307
|
-
|
|
15308
|
-
declare class QdTablePaginatorComponent<T extends string> implements OnInit, OnDestroy {
|
|
15309
|
-
private readonly tableDataResolver;
|
|
15310
|
-
private readonly tableStoreService;
|
|
15311
|
-
private readonly routerConnector;
|
|
15312
|
-
/**
|
|
15313
|
-
* @description Configuration Model for Qd-Table.
|
|
15314
|
-
*/
|
|
15315
|
-
config: QdTableConfig<T>;
|
|
15316
|
-
/**
|
|
15317
|
-
* A static test ID for integration tests can be set. <br />
|
|
15318
|
-
* The value for the HTML attribute [data-test-id].
|
|
15319
|
-
*/
|
|
15320
|
-
testId?: string;
|
|
15321
|
-
paginatorButtons: ElementRef | undefined;
|
|
15322
|
-
table$: Observable<QdTableState<string> | undefined>;
|
|
15323
|
-
canPageForward$: Observable<boolean>;
|
|
15324
|
-
canPageBackward$: Observable<boolean>;
|
|
15325
|
-
currentPage$: Observable<QdTablePaginatorCurrentPage | undefined>;
|
|
15326
|
-
pageSize$: Observable<number>;
|
|
15327
|
-
totalCount$: Observable<number>;
|
|
15328
|
-
selectedRowsCount$: Observable<number>;
|
|
15329
|
-
pageNav?: typeof QdPaginatorDirection;
|
|
15330
|
-
private _destroyed$;
|
|
15331
|
-
get pageSizes(): number[];
|
|
15332
|
-
get hasData$(): Observable<boolean>;
|
|
15333
|
-
ngOnInit(): void;
|
|
15334
|
-
ngOnDestroy(): void;
|
|
15335
|
-
/**
|
|
15336
|
-
* @description Whether this paginator should sync its state with the URL. Reads
|
|
15337
|
-
* `pagination.connectWithRouter` (default `false` — URL sync is opt-in and
|
|
15338
|
-
* requires an explicit `pagination: { connectWithRouter: true }`).
|
|
15339
|
-
*
|
|
15340
|
-
* Used by `QdTablePaginationRouterConnectorService` to decide whether to claim
|
|
15341
|
-
* the router-singleton for this paginator.
|
|
15342
|
-
*/
|
|
15343
|
-
shouldConnectWithRouter(): boolean;
|
|
15344
|
-
/**
|
|
15345
|
-
* @description The effective default page size for this paginator. Resolves
|
|
15346
|
-
* `pagination.pageSizeDefault` first, then falls back to the first entry of
|
|
15347
|
-
* `pagination.pageSizes`, finally to the framework constant `PAGE_SIZE_DEFAULT`.
|
|
15348
|
-
*/
|
|
15349
|
-
getPageSizeDefault(): number;
|
|
15350
|
-
navigateToPage(direction: QdPaginatorDirection): void;
|
|
15351
|
-
private isConfigValid;
|
|
15352
|
-
private startPagination;
|
|
15353
|
-
private initPagination;
|
|
15354
|
-
private calculatePageNumber;
|
|
15355
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<QdTablePaginatorComponent<any>, never>;
|
|
15356
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<QdTablePaginatorComponent<any>, "qd-table-paginator", never, { "config": { "alias": "config"; "required": false; }; "testId": { "alias": "data-test-id"; "required": false; }; }, {}, never, never, false, never>;
|
|
15357
|
-
}
|
|
15358
|
-
|
|
15359
15196
|
/**
|
|
15360
15197
|
* QdTableComponent is a responsive and highly configurable table component designed for effective data display and user interaction.
|
|
15361
15198
|
* It supports pagination, sorting, actions, selections, and customizable columns.
|
|
@@ -15547,7 +15384,7 @@ declare class QdTableComponent<T extends string> implements OnInit, OnChanges, O
|
|
|
15547
15384
|
* The `emptyStateView` must be enabled in the table configuration.
|
|
15548
15385
|
*/
|
|
15549
15386
|
emptyStateActionOutput: EventEmitter<any>;
|
|
15550
|
-
paginator
|
|
15387
|
+
private paginator?;
|
|
15551
15388
|
get dataTestId(): string;
|
|
15552
15389
|
data$: Observable<QdTableData<T> | undefined>;
|
|
15553
15390
|
hasData$: Observable<boolean>;
|
|
@@ -16056,6 +15893,64 @@ declare class QdTableHeadComponent<T extends string> implements OnInit {
|
|
|
16056
15893
|
static ɵcmp: i0.ɵɵComponentDeclaration<QdTableHeadComponent<any>, "[qd-table-head]", never, { "config": { "alias": "config"; "required": false; }; "testId": { "alias": "data-test-id"; "required": false; }; }, {}, never, never, false, never>;
|
|
16057
15894
|
}
|
|
16058
15895
|
|
|
15896
|
+
declare enum QdPaginatorDirection {
|
|
15897
|
+
FirstPage = 0,
|
|
15898
|
+
NextPage = 1,
|
|
15899
|
+
PreviousPage = 2,
|
|
15900
|
+
LastPage = 3
|
|
15901
|
+
}
|
|
15902
|
+
|
|
15903
|
+
declare class QdTablePaginatorComponent<T extends string> implements OnInit, OnDestroy {
|
|
15904
|
+
private readonly tableDataResolver;
|
|
15905
|
+
private readonly tableStoreService;
|
|
15906
|
+
private readonly routerConnector;
|
|
15907
|
+
/**
|
|
15908
|
+
* @description Configuration Model for Qd-Table.
|
|
15909
|
+
*/
|
|
15910
|
+
config: QdTableConfig<T>;
|
|
15911
|
+
/**
|
|
15912
|
+
* A static test ID for integration tests can be set. <br />
|
|
15913
|
+
* The value for the HTML attribute [data-test-id].
|
|
15914
|
+
*/
|
|
15915
|
+
testId?: string;
|
|
15916
|
+
paginatorButtons: ElementRef | undefined;
|
|
15917
|
+
table$: Observable<QdTableState<string> | undefined>;
|
|
15918
|
+
canPageForward$: Observable<boolean>;
|
|
15919
|
+
canPageBackward$: Observable<boolean>;
|
|
15920
|
+
currentPage$: Observable<QdTablePaginatorCurrentPage | undefined>;
|
|
15921
|
+
pageSize$: Observable<number>;
|
|
15922
|
+
totalCount$: Observable<number>;
|
|
15923
|
+
selectedRowsCount$: Observable<number>;
|
|
15924
|
+
pageNav?: typeof QdPaginatorDirection;
|
|
15925
|
+
private _destroyed$;
|
|
15926
|
+
get pageSizes(): number[];
|
|
15927
|
+
get hasData$(): Observable<boolean>;
|
|
15928
|
+
ngOnInit(): void;
|
|
15929
|
+
ngOnDestroy(): void;
|
|
15930
|
+
/**
|
|
15931
|
+
* @description Whether this paginator should sync its state with the URL. Reads
|
|
15932
|
+
* `pagination.connectWithRouter` (default `false` — URL sync is opt-in and
|
|
15933
|
+
* requires an explicit `pagination: { connectWithRouter: true }`).
|
|
15934
|
+
*
|
|
15935
|
+
* Used by `QdTablePaginationRouterConnectorService` to decide whether to claim
|
|
15936
|
+
* the router-singleton for this paginator.
|
|
15937
|
+
*/
|
|
15938
|
+
shouldConnectWithRouter(): boolean;
|
|
15939
|
+
/**
|
|
15940
|
+
* @description The effective default page size for this paginator. Resolves
|
|
15941
|
+
* `pagination.pageSizeDefault` first, then falls back to the first entry of
|
|
15942
|
+
* `pagination.pageSizes`, finally to the framework constant `PAGE_SIZE_DEFAULT`.
|
|
15943
|
+
*/
|
|
15944
|
+
getPageSizeDefault(): number;
|
|
15945
|
+
navigateToPage(direction: QdPaginatorDirection): void;
|
|
15946
|
+
private isConfigValid;
|
|
15947
|
+
private startPagination;
|
|
15948
|
+
private initPagination;
|
|
15949
|
+
private calculatePageNumber;
|
|
15950
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<QdTablePaginatorComponent<any>, never>;
|
|
15951
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<QdTablePaginatorComponent<any>, "qd-table-paginator", never, { "config": { "alias": "config"; "required": false; }; "testId": { "alias": "data-test-id"; "required": false; }; }, {}, never, never, false, never>;
|
|
15952
|
+
}
|
|
15953
|
+
|
|
16059
15954
|
type PageSize = {
|
|
16060
15955
|
value: number;
|
|
16061
15956
|
disabled: boolean;
|
|
@@ -16204,80 +16099,19 @@ declare class QdTableSortComponent<T extends string> implements OnInit, OnDestro
|
|
|
16204
16099
|
}
|
|
16205
16100
|
|
|
16206
16101
|
/**
|
|
16207
|
-
*
|
|
16208
|
-
*
|
|
16209
|
-
*/
|
|
16210
|
-
type QdColumnsDetails<T extends string> = Array<QdColumnDetails<T> | QdGroupColumnDetails<T>>;
|
|
16211
|
-
/**
|
|
16212
|
-
* @description View model for a table column.
|
|
16213
|
-
*/
|
|
16214
|
-
type QdColumnDetails<T extends string> = {
|
|
16215
|
-
/**
|
|
16216
|
-
* @description Contains the index of the column.
|
|
16217
|
-
*/
|
|
16218
|
-
index: number;
|
|
16219
|
-
/**
|
|
16220
|
-
* @description Contains the type of the column that is set in the config.
|
|
16221
|
-
*/
|
|
16222
|
-
type: Omit<QdTableConfigColumnType['type'], 'group'>;
|
|
16223
|
-
/**
|
|
16224
|
-
* @description Indicates whether this column is the main column.
|
|
16225
|
-
*/
|
|
16226
|
-
isMainColumn: boolean;
|
|
16227
|
-
/**
|
|
16228
|
-
* @description Indicates whether this column is the last column.
|
|
16229
|
-
*/
|
|
16230
|
-
isLastColumn: boolean;
|
|
16231
|
-
/**
|
|
16232
|
-
* @description Contains the name of the column that is given in the config.
|
|
16233
|
-
*/
|
|
16234
|
-
column?: T;
|
|
16235
|
-
/**
|
|
16236
|
-
* @description Contains additional options for the column that are set in the config.
|
|
16237
|
-
*/
|
|
16238
|
-
options?: any;
|
|
16239
|
-
/**
|
|
16240
|
-
* @description Contains the composed translation key of the column.
|
|
16241
|
-
*/
|
|
16242
|
-
i18n?: string;
|
|
16243
|
-
};
|
|
16244
|
-
/**
|
|
16245
|
-
* @description View model for the group column.
|
|
16102
|
+
* Minimal contract the QdTreeRowExpanderService requires from the rows store of a tree.
|
|
16103
|
+
* The QdTree wires itself up with this contract internally; consumers never implement or register it themselves.
|
|
16246
16104
|
*/
|
|
16247
|
-
|
|
16105
|
+
interface QdTreeRowsProvider<T extends string> {
|
|
16248
16106
|
/**
|
|
16249
|
-
*
|
|
16107
|
+
* Stream of the current rows of the tree.
|
|
16250
16108
|
*/
|
|
16251
|
-
|
|
16109
|
+
treeRow$: Observable<QdTreeData<T>>;
|
|
16252
16110
|
/**
|
|
16253
|
-
*
|
|
16111
|
+
* Replaces the rows of the tree with the given rows.
|
|
16254
16112
|
*/
|
|
16255
|
-
|
|
16256
|
-
};
|
|
16257
|
-
|
|
16258
|
-
declare class QdTreeRowsService<T extends string> {
|
|
16259
|
-
private groupService;
|
|
16260
|
-
private expanderService;
|
|
16261
|
-
config: QdTreeConfig<T>;
|
|
16262
|
-
private treeRowSubject;
|
|
16263
|
-
treeRow$: rxjs.Observable<QdTreeData<T>>;
|
|
16264
|
-
get groupColumn(): QdGroupColumnDetails<T>;
|
|
16265
|
-
initializeRows(data: QdTreeData<T>): void;
|
|
16266
|
-
initializeConfig(config: QdTreeConfig<T>): void;
|
|
16267
|
-
updateRows(data: QdTreeData<T>): void;
|
|
16268
|
-
get ungroupedColumns(): QdColumnDetails<T>[];
|
|
16269
|
-
private splitRowsByTree;
|
|
16270
|
-
private splitRowByTree;
|
|
16271
|
-
private nestRowsIntoOneAnother;
|
|
16272
|
-
private aggregateRows;
|
|
16273
|
-
private groupArray;
|
|
16274
|
-
private areRowsEqual;
|
|
16275
|
-
private getRowsProperties;
|
|
16276
|
-
private sortRowsByNumbers;
|
|
16277
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<QdTreeRowsService<any>, never>;
|
|
16278
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<QdTreeRowsService<any>>;
|
|
16113
|
+
updateRows(rows: QdTreeData<T>): void;
|
|
16279
16114
|
}
|
|
16280
|
-
|
|
16281
16115
|
/**
|
|
16282
16116
|
* The **QdTreeRowExpanderService** allows you to expand certain rows by conditions and close all rows.
|
|
16283
16117
|
*
|
|
@@ -16299,12 +16133,9 @@ declare class QdTreeRowsService<T extends string> {
|
|
|
16299
16133
|
* Please be aware that a record will only be provided for the rows that are leafs / have no children.
|
|
16300
16134
|
*/
|
|
16301
16135
|
declare class QdTreeRowExpanderService<T extends string> {
|
|
16302
|
-
trees
|
|
16303
|
-
treeRows: QdTreeDataRow<T>[];
|
|
16304
|
-
rowService: QdTreeRowsService<T>;
|
|
16305
|
-
}>;
|
|
16136
|
+
private trees;
|
|
16306
16137
|
destroyRef: DestroyRef;
|
|
16307
|
-
init(treeId: string, rowService:
|
|
16138
|
+
init(treeId: string, rowService: QdTreeRowsProvider<T>): void;
|
|
16308
16139
|
/**
|
|
16309
16140
|
* Expands all rows.
|
|
16310
16141
|
* @param treeId The QdTree's ID
|
|
@@ -16346,6 +16177,58 @@ declare class QdTreeHeadComponent<T extends string> implements OnInit {
|
|
|
16346
16177
|
static ɵcmp: i0.ɵɵComponentDeclaration<QdTreeHeadComponent<any>, "[qd-tree-head]", never, { "config": { "alias": "config"; "required": false; }; "testId": { "alias": "data-test-id"; "required": false; }; }, {}, never, never, false, never>;
|
|
16347
16178
|
}
|
|
16348
16179
|
|
|
16180
|
+
/**
|
|
16181
|
+
* @description View model for table columns.
|
|
16182
|
+
* This type is only used internally to simplify the rendering in the template.
|
|
16183
|
+
*/
|
|
16184
|
+
type QdColumnsDetails<T extends string> = Array<QdColumnDetails<T> | QdGroupColumnDetails<T>>;
|
|
16185
|
+
/**
|
|
16186
|
+
* @description View model for a table column.
|
|
16187
|
+
*/
|
|
16188
|
+
type QdColumnDetails<T extends string> = {
|
|
16189
|
+
/**
|
|
16190
|
+
* @description Contains the index of the column.
|
|
16191
|
+
*/
|
|
16192
|
+
index: number;
|
|
16193
|
+
/**
|
|
16194
|
+
* @description Contains the type of the column that is set in the config.
|
|
16195
|
+
*/
|
|
16196
|
+
type: Omit<QdTableConfigColumnType['type'], 'group'>;
|
|
16197
|
+
/**
|
|
16198
|
+
* @description Indicates whether this column is the main column.
|
|
16199
|
+
*/
|
|
16200
|
+
isMainColumn: boolean;
|
|
16201
|
+
/**
|
|
16202
|
+
* @description Indicates whether this column is the last column.
|
|
16203
|
+
*/
|
|
16204
|
+
isLastColumn: boolean;
|
|
16205
|
+
/**
|
|
16206
|
+
* @description Contains the name of the column that is given in the config.
|
|
16207
|
+
*/
|
|
16208
|
+
column?: T;
|
|
16209
|
+
/**
|
|
16210
|
+
* @description Contains additional options for the column that are set in the config.
|
|
16211
|
+
*/
|
|
16212
|
+
options?: any;
|
|
16213
|
+
/**
|
|
16214
|
+
* @description Contains the composed translation key of the column.
|
|
16215
|
+
*/
|
|
16216
|
+
i18n?: string;
|
|
16217
|
+
};
|
|
16218
|
+
/**
|
|
16219
|
+
* @description View model for the group column.
|
|
16220
|
+
*/
|
|
16221
|
+
type QdGroupColumnDetails<T extends string> = QdColumnDetails<T> & {
|
|
16222
|
+
/**
|
|
16223
|
+
* @description The column type of the group column is 'group'.
|
|
16224
|
+
*/
|
|
16225
|
+
type: 'group';
|
|
16226
|
+
/**
|
|
16227
|
+
* @description Contains the originally defined columns that are grouped in this column.
|
|
16228
|
+
*/
|
|
16229
|
+
groupedColumns: QdColumnDetails<T>[];
|
|
16230
|
+
};
|
|
16231
|
+
|
|
16349
16232
|
declare class QdTreeBodyComponent<T extends string> implements OnInit, OnChanges {
|
|
16350
16233
|
private groupService;
|
|
16351
16234
|
private treeRowsService;
|
|
@@ -17578,69 +17461,6 @@ declare class QdCommentsComponent {
|
|
|
17578
17461
|
static ɵcmp: i0.ɵɵComponentDeclaration<QdCommentsComponent, "qd-comments", never, { "config": { "alias": "config"; "required": true; }; "comments": { "alias": "comments"; "required": false; }; }, {}, never, never, false, never>;
|
|
17579
17462
|
}
|
|
17580
17463
|
|
|
17581
|
-
declare class QdShellHeaderComponent implements OnInit, OnDestroy {
|
|
17582
|
-
private navigationService;
|
|
17583
|
-
private shellHeaderMinimizationService;
|
|
17584
|
-
private shellLeftService;
|
|
17585
|
-
private shellRightService;
|
|
17586
|
-
private breakpointService;
|
|
17587
|
-
/**
|
|
17588
|
-
* @description The configuration of the shell.
|
|
17589
|
-
*/
|
|
17590
|
-
config: QdShellConfig;
|
|
17591
|
-
/**
|
|
17592
|
-
* @description Indicates whether the header was displayed wide or narrow.
|
|
17593
|
-
*/
|
|
17594
|
-
isMinimized: boolean;
|
|
17595
|
-
/**
|
|
17596
|
-
* @description Indicates whether the comments are used.
|
|
17597
|
-
* TODO: Remove in v17!
|
|
17598
|
-
*
|
|
17599
|
-
* * @deprecated This property is deprecated and will be removed in v17. The comments will then be integrated via the QdPage.
|
|
17600
|
-
*/
|
|
17601
|
-
isCommentsUsed: boolean;
|
|
17602
|
-
/**
|
|
17603
|
-
* @description Indicates whether comments are available.
|
|
17604
|
-
* TODO: Remove in v17!
|
|
17605
|
-
*
|
|
17606
|
-
* * @deprecated This property is deprecated and will be removed in v17. The comments will be integrated in the QdPage.
|
|
17607
|
-
*/
|
|
17608
|
-
hasComments: boolean;
|
|
17609
|
-
menuIconChange: EventEmitter<boolean>;
|
|
17610
|
-
get minimized(): boolean;
|
|
17611
|
-
get sticky(): boolean;
|
|
17612
|
-
get expanded(): boolean;
|
|
17613
|
-
backLinkDisplayed$: Observable<boolean>;
|
|
17614
|
-
logoIconDisplayed$: Observable<boolean>;
|
|
17615
|
-
hasNavigation$: Observable<boolean>;
|
|
17616
|
-
isNavigationPinned$: Observable<boolean>;
|
|
17617
|
-
hasNotificationsToggle$: Observable<boolean>;
|
|
17618
|
-
hasNotifications$: Observable<boolean>;
|
|
17619
|
-
isCommentsOpened$: Observable<boolean>;
|
|
17620
|
-
isNotificationsOpened$: Observable<boolean>;
|
|
17621
|
-
isCommentsDisplayed: boolean;
|
|
17622
|
-
isServiceNavigationOpened: boolean;
|
|
17623
|
-
private _previousHref;
|
|
17624
|
-
private _routeParams;
|
|
17625
|
-
private _routeParamsSubscription;
|
|
17626
|
-
private _breakpointSubscription;
|
|
17627
|
-
constructor();
|
|
17628
|
-
handleBackClick(): void;
|
|
17629
|
-
private insertRouteParams;
|
|
17630
|
-
togglePinnedNavigation(): void;
|
|
17631
|
-
toggleNotifications(): void;
|
|
17632
|
-
toggleComments(): void;
|
|
17633
|
-
toggleServiceNavigation(): void;
|
|
17634
|
-
ngOnInit(): void;
|
|
17635
|
-
ngOnDestroy(): void;
|
|
17636
|
-
isPlainTitle(title: QdShellConfig['title']): boolean;
|
|
17637
|
-
extractI18nTitle(title: QdShellConfig['title']): string;
|
|
17638
|
-
private validateTitle;
|
|
17639
|
-
protected readonly async: rxjs_internal_scheduler_AsyncScheduler.AsyncScheduler;
|
|
17640
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<QdShellHeaderComponent, never>;
|
|
17641
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<QdShellHeaderComponent, "[qd-shell-header]", never, { "config": { "alias": "config"; "required": false; }; "isMinimized": { "alias": "isMinimized"; "required": false; }; "isCommentsUsed": { "alias": "isCommentsUsed"; "required": false; }; "hasComments": { "alias": "hasComments"; "required": false; }; }, { "menuIconChange": "menuIconChange"; }, never, never, false, never>;
|
|
17642
|
-
}
|
|
17643
|
-
|
|
17644
17464
|
/**
|
|
17645
17465
|
* **QdShell** is located in the very top level of an Application UI. It includes the router outlet to allow rendering pages configured in your application's routing.<br />
|
|
17646
17466
|
*
|
|
@@ -17708,8 +17528,9 @@ declare class QdShellComponent implements OnInit, AfterViewInit, OnDestroy {
|
|
|
17708
17528
|
/**
|
|
17709
17529
|
* TODO: Remove in v17! The comments will be integrated in the QdPage.
|
|
17710
17530
|
*/
|
|
17711
|
-
shellHeaderComponent
|
|
17531
|
+
private shellHeaderComponent;
|
|
17712
17532
|
commentsComponent: QueryList<QdCommentsComponent>;
|
|
17533
|
+
protected get isCommentsDisplayed(): boolean;
|
|
17713
17534
|
hasNavigation$: Observable<boolean>;
|
|
17714
17535
|
isNavigationPinned$: Observable<boolean>;
|
|
17715
17536
|
isNavigationRolledOver$: Observable<boolean>;
|
|
@@ -17768,6 +17589,69 @@ declare class QdShellHeaderBannerComponent {
|
|
|
17768
17589
|
static ɵcmp: i0.ɵɵComponentDeclaration<QdShellHeaderBannerComponent, "qd-shell-header-banner", never, {}, {}, never, never, false, never>;
|
|
17769
17590
|
}
|
|
17770
17591
|
|
|
17592
|
+
declare class QdShellHeaderComponent implements OnInit, OnDestroy {
|
|
17593
|
+
private navigationService;
|
|
17594
|
+
private shellHeaderMinimizationService;
|
|
17595
|
+
private shellLeftService;
|
|
17596
|
+
private shellRightService;
|
|
17597
|
+
private breakpointService;
|
|
17598
|
+
/**
|
|
17599
|
+
* @description The configuration of the shell.
|
|
17600
|
+
*/
|
|
17601
|
+
config: QdShellConfig;
|
|
17602
|
+
/**
|
|
17603
|
+
* @description Indicates whether the header was displayed wide or narrow.
|
|
17604
|
+
*/
|
|
17605
|
+
isMinimized: boolean;
|
|
17606
|
+
/**
|
|
17607
|
+
* @description Indicates whether the comments are used.
|
|
17608
|
+
* TODO: Remove in v17!
|
|
17609
|
+
*
|
|
17610
|
+
* * @deprecated This property is deprecated and will be removed in v17. The comments will then be integrated via the QdPage.
|
|
17611
|
+
*/
|
|
17612
|
+
isCommentsUsed: boolean;
|
|
17613
|
+
/**
|
|
17614
|
+
* @description Indicates whether comments are available.
|
|
17615
|
+
* TODO: Remove in v17!
|
|
17616
|
+
*
|
|
17617
|
+
* * @deprecated This property is deprecated and will be removed in v17. The comments will be integrated in the QdPage.
|
|
17618
|
+
*/
|
|
17619
|
+
hasComments: boolean;
|
|
17620
|
+
menuIconChange: EventEmitter<boolean>;
|
|
17621
|
+
get minimized(): boolean;
|
|
17622
|
+
get sticky(): boolean;
|
|
17623
|
+
get expanded(): boolean;
|
|
17624
|
+
backLinkDisplayed$: Observable<boolean>;
|
|
17625
|
+
logoIconDisplayed$: Observable<boolean>;
|
|
17626
|
+
hasNavigation$: Observable<boolean>;
|
|
17627
|
+
isNavigationPinned$: Observable<boolean>;
|
|
17628
|
+
hasNotificationsToggle$: Observable<boolean>;
|
|
17629
|
+
hasNotifications$: Observable<boolean>;
|
|
17630
|
+
isCommentsOpened$: Observable<boolean>;
|
|
17631
|
+
isNotificationsOpened$: Observable<boolean>;
|
|
17632
|
+
isCommentsDisplayed: boolean;
|
|
17633
|
+
isServiceNavigationOpened: boolean;
|
|
17634
|
+
private _previousHref;
|
|
17635
|
+
private _routeParams;
|
|
17636
|
+
private _routeParamsSubscription;
|
|
17637
|
+
private _breakpointSubscription;
|
|
17638
|
+
constructor();
|
|
17639
|
+
handleBackClick(): void;
|
|
17640
|
+
private insertRouteParams;
|
|
17641
|
+
togglePinnedNavigation(): void;
|
|
17642
|
+
toggleNotifications(): void;
|
|
17643
|
+
toggleComments(): void;
|
|
17644
|
+
toggleServiceNavigation(): void;
|
|
17645
|
+
ngOnInit(): void;
|
|
17646
|
+
ngOnDestroy(): void;
|
|
17647
|
+
isPlainTitle(title: QdShellConfig['title']): boolean;
|
|
17648
|
+
extractI18nTitle(title: QdShellConfig['title']): string;
|
|
17649
|
+
private validateTitle;
|
|
17650
|
+
protected readonly async: rxjs_internal_scheduler_AsyncScheduler.AsyncScheduler;
|
|
17651
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<QdShellHeaderComponent, never>;
|
|
17652
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<QdShellHeaderComponent, "[qd-shell-header]", never, { "config": { "alias": "config"; "required": false; }; "isMinimized": { "alias": "isMinimized"; "required": false; }; "isCommentsUsed": { "alias": "isCommentsUsed"; "required": false; }; "hasComments": { "alias": "hasComments"; "required": false; }; }, { "menuIconChange": "menuIconChange"; }, never, never, false, never>;
|
|
17653
|
+
}
|
|
17654
|
+
|
|
17771
17655
|
declare class QdShellHeaderSearchComponent {
|
|
17772
17656
|
private _config;
|
|
17773
17657
|
get config(): object;
|
|
@@ -18434,27 +18318,6 @@ interface QdQuickEditSecondaryAction<T extends string> {
|
|
|
18434
18318
|
operationMode?: 'edit' | 'view';
|
|
18435
18319
|
}
|
|
18436
18320
|
|
|
18437
|
-
declare class QdFocusableDirective {
|
|
18438
|
-
private focusable;
|
|
18439
|
-
focus(): void;
|
|
18440
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<QdFocusableDirective, never>;
|
|
18441
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<QdFocusableDirective, "[qdFocusable]", never, {}, {}, never, never, false, never>;
|
|
18442
|
-
}
|
|
18443
|
-
|
|
18444
|
-
declare class QdCustomForDirective implements OnChanges, OnInit {
|
|
18445
|
-
private templateRef;
|
|
18446
|
-
private viewContainer;
|
|
18447
|
-
qdCustomForOf: unknown[];
|
|
18448
|
-
qdCustomForToggler: boolean;
|
|
18449
|
-
private isRendered;
|
|
18450
|
-
ngOnInit(): void;
|
|
18451
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
18452
|
-
renderItems(): void;
|
|
18453
|
-
resetRendering(): void;
|
|
18454
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<QdCustomForDirective, never>;
|
|
18455
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<QdCustomForDirective, "[qdCustomFor]", never, { "qdCustomForOf": { "alias": "qdCustomForOf"; "required": false; }; "qdCustomForToggler": { "alias": "qdCustomForToggler"; "required": false; }; }, {}, never, never, false, never>;
|
|
18456
|
-
}
|
|
18457
|
-
|
|
18458
18321
|
/**
|
|
18459
18322
|
* The **QdQuickEditComponent** is a dynamic tool that enables users to swiftly edit data without the need for traditional forms.
|
|
18460
18323
|
* It is specifically designed for inline editing, providing a more seamless and efficient user experience.
|
|
@@ -18547,7 +18410,7 @@ declare class QdCustomForDirective implements OnChanges, OnInit {
|
|
|
18547
18410
|
*/
|
|
18548
18411
|
declare class QdQuickEditComponent<T extends string> implements OnInit, OnChanges, OnDestroy {
|
|
18549
18412
|
private fb;
|
|
18550
|
-
readonly footerService
|
|
18413
|
+
private readonly footerService;
|
|
18551
18414
|
readonly pageService: QdPageStoreService<any>;
|
|
18552
18415
|
private readonly sectionActionService;
|
|
18553
18416
|
private readonly eventBrokerService;
|
|
@@ -18603,8 +18466,8 @@ declare class QdQuickEditComponent<T extends string> implements OnInit, OnChange
|
|
|
18603
18466
|
*/
|
|
18604
18467
|
formGroupChange: EventEmitter<any>;
|
|
18605
18468
|
addNewClicked: EventEmitter<void>;
|
|
18606
|
-
focusables
|
|
18607
|
-
customForDirective
|
|
18469
|
+
private focusables;
|
|
18470
|
+
private customForDirective;
|
|
18608
18471
|
quickEditFormGroup: FormGroup;
|
|
18609
18472
|
viewonly$: Observable<boolean>;
|
|
18610
18473
|
actions$: Observable<QdQuickEditSecondaryAction<T>[]>;
|
|
@@ -18643,6 +18506,27 @@ declare class QdQuickEditComponent<T extends string> implements OnInit, OnChange
|
|
|
18643
18506
|
static ɵcmp: i0.ɵɵComponentDeclaration<QdQuickEditComponent<any>, "qd-quick-edit", never, { "config": { "alias": "config"; "required": true; }; "data": { "alias": "data"; "required": false; }; "testId": { "alias": "data-test-id"; "required": false; }; }, { "formGroupChange": "formGroupChange"; "addNewClicked": "addNewClicked"; }, never, never, false, never>;
|
|
18644
18507
|
}
|
|
18645
18508
|
|
|
18509
|
+
declare class QdCustomForDirective implements OnChanges, OnInit {
|
|
18510
|
+
private templateRef;
|
|
18511
|
+
private viewContainer;
|
|
18512
|
+
qdCustomForOf: unknown[];
|
|
18513
|
+
qdCustomForToggler: boolean;
|
|
18514
|
+
private isRendered;
|
|
18515
|
+
ngOnInit(): void;
|
|
18516
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
18517
|
+
renderItems(): void;
|
|
18518
|
+
resetRendering(): void;
|
|
18519
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<QdCustomForDirective, never>;
|
|
18520
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<QdCustomForDirective, "[qdCustomFor]", never, { "qdCustomForOf": { "alias": "qdCustomForOf"; "required": false; }; "qdCustomForToggler": { "alias": "qdCustomForToggler"; "required": false; }; }, {}, never, never, false, never>;
|
|
18521
|
+
}
|
|
18522
|
+
|
|
18523
|
+
declare class QdFocusableDirective {
|
|
18524
|
+
private focusable;
|
|
18525
|
+
focus(): void;
|
|
18526
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<QdFocusableDirective, never>;
|
|
18527
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<QdFocusableDirective, "[qdFocusable]", never, {}, {}, never, never, false, never>;
|
|
18528
|
+
}
|
|
18529
|
+
|
|
18646
18530
|
declare class QdFocusableModule {
|
|
18647
18531
|
static ɵfac: i0.ɵɵFactoryDeclaration<QdFocusableModule, never>;
|
|
18648
18532
|
static ɵmod: i0.ɵɵNgModuleDeclaration<QdFocusableModule, [typeof QdFocusableDirective], never, [typeof QdFocusableDirective]>;
|
|
@@ -18665,4 +18549,4 @@ declare class QdUiModule {
|
|
|
18665
18549
|
declare const APP_ENVIRONMENT: InjectionToken<QdAppEnvironment>;
|
|
18666
18550
|
|
|
18667
18551
|
export { APP_ENVIRONMENT, AVAILABLE_ICONS, BACKEND_ERROR_CODES, MockLocaleDatePipe, NavigationTileComponent, NavigationTilesComponent, QD_DIALOG_CONFIRMATION_RESOLVER_TOKEN, QD_FILE_MANAGER_TOKEN, QD_FILE_UPLOAD_MANAGER_TOKEN, QD_FORM_OPTIONS_RESOLVER, QD_PAGE_OBJECT_RESOLVER_TOKEN, QD_PAGE_STEP_RESOLVER_TOKEN, QD_POPOVER_TOP_FIRST, QD_SAFE_BOTTOM_OFFSET, QD_TABLE_DATA_RESOLVER_TOKEN, QD_UPLOAD_HTTP_OPTIONS, QdButtonComponent, QdButtonGhostDirective, QdButtonGridComponent, QdButtonLinkDirective, QdButtonModule, QdButtonStackButtonComponent, QdButtonStackComponent, QdCheckboxChipsComponent, QdCheckboxComponent, QdCheckboxesComponent, QdChipComponent, QdChipModule, QdColumnAutoFillDirective, QdColumnBreakBeforeDirective, QdColumnDirective, QdColumnDisableResponsiveColspansDirective, QdColumnFullGridWidthDirective, QdColumnNextInSameRowDirective, QdColumnsDirective, QdColumnsDisableAutoFillDirective, QdColumnsDisableResponsiveColspansDirective, QdColumnsMaxDirective, QdCommentsComponent, QdCommentsModule, QdConnectFormStateToPageDirective, QdConnectorTableContextDirective, QdConnectorTableFilterDirective, QdConnectorTableSearchDirective, QdContactCardComponent, QdContactCardModule, QdContainerPairsCaptionComponent, QdContainerPairsContainerComponent, QdContainerPairsHeaderComponent, QdContainerPairsItemComponent, QdContainerPairsValueComponent, QdContextService, QdCoreModule, QdDatepickerComponent, QdDialogActionComponent, QdDialogAuthSessionEndComponent, QdDialogAuthSessionEndService, QdDialogComponent, QdDialogConfirmationComponent, QdDialogConfirmationErrorDirective, QdDialogConfirmationInfoDirective, QdDialogConfirmationSuccessDirective, QdDialogModule, QdDialogRecordStepperComponent, QdDialogService, QdDialogSize, QdDisabledDirective, QdDropdownComponent, QdFileCollectorComponent, QdFileCollectorModule, QdFileSizePipe$1 as QdFileSizePipe, QdFileUploadComponent, QdFileUploadService, QdFilterComponent, QdFilterFormItemsComponent, QdFilterModule, QdFilterRestParamBuilder, QdFilterService, QdFooterActionType, QdFormArray, QdFormBuilder, QdFormControl, QdFormGroup, QdFormModule, QdGridComponent, QdGridModule, QdHorizontalPairsCaptionComponent, QdHorizontalPairsComponent, QdHorizontalPairsItemComponent, QdHorizontalPairsValueComponent, QdIconButtonComponent, QdIconComponent, QdIconModule, QdImageComponent, QdImageModule, QdIndeterminateProgressBarComponent, QdInputComponent, QdListModule, QdMenuButtonComponent, QdMockBreakpointService, QdMockButtonComponent, QdMockButtonGhostDirective, QdMockButtonGridComponent, QdMockButtonLinkDirective, QdMockButtonModule, QdMockButtonStackButtonComponent, QdMockButtonStackComponent, QdMockCalendarComponent, QdMockCheckboxChipsComponent, QdMockCheckboxComponent, QdMockCheckboxesComponent, QdMockChipComponent, QdMockChipModule, QdMockColumnDirective, QdMockColumnsDirective, QdMockContactCardComponent, QdMockContactCardModule, QdMockContainerPairsCaptionComponent, QdMockContainerPairsContainerComponent, QdMockContainerPairsHeaderComponent, QdMockContainerPairsItemComponent, QdMockContainerPairsValueComponent, QdMockCoreModule, QdMockCounterBadgeComponent, QdMockDatepickerComponent, QdMockDisabledDirective, QdMockDropdownComponent, QdMockFileCollectorComponent, QdMockFileCollectorModule, QdMockFilterCategoryBooleanComponent, QdMockFilterCategoryComponent, QdMockFilterCategoryDateComponent, QdMockFilterCategoryDateRangeComponent, QdMockFilterCategoryFreeTextComponent, QdMockFilterCategorySelectComponent, QdMockFilterComponent, QdMockFilterFormItemsComponent, QdMockFilterItemBooleanComponent, QdMockFilterItemDateComponent, QdMockFilterItemDateRangeComponent, QdMockFilterItemFreeTextComponent, QdMockFilterItemMultiSelectComponent, QdMockFilterItemSingleSelectComponent, QdMockFilterModule, QdMockFilterService, QdMockFormErrorComponent, QdMockFormGroupErrorComponent, QdMockFormHintComponent, QdMockFormLabelComponent, QdMockFormReadonlyComponent, QdMockFormViewonlyComponent, QdMockFormsModule, QdMockGridModule, QdMockIconButtonComponent, QdMockIconComponent, QdMockIconModule, QdMockImageComponent, QdMockImageModule, QdMockIndeterminateProgressBarComponent, QdMockInputComponent, QdMockListModule, QdMockNavigationTileComponent, QdMockNavigationTilesComponent, QdMockNavigationTilesModule, QdMockNotificationComponent, QdMockNotificationContentComponent, QdMockNotificationsComponent, QdMockNotificationsModule, QdMockNotificationsService, QdMockPageComponent, QdMockPageModule, QdMockPercentageProgressBarComponent, QdMockPinCodeComponent, QdMockPlaceHolderModule, QdMockPopoverOnClickDirective, QdMockProgressBarModule, QdMockQdPlaceHolderComponent, QdMockRadioButtonsComponent, QdMockRwdDisabledDirective, QdMockSearchComponent, QdMockSearchModule, QdMockSectionComponent, QdMockSectionModule, QdMockShellComponent, QdMockShellFooterComponent, QdMockShellHeaderBannerComponent, QdMockShellHeaderComponent, QdMockShellHeaderSearchComponent, QdMockShellHeaderWidgetComponent, QdMockShellModule, QdMockShellToolbarComponent, QdMockShellToolbarItemComponent, QdMockStatusIndicatorCaptionComponent, QdMockStatusIndicatorComponent, QdMockStatusIndicatorItemComponent, QdMockStatusIndicatorModule, QdMockStatusPairsCaptionComponent, QdMockStatusPairsComponent, QdMockStatusPairsErrorComponent, QdMockStatusPairsItemComponent, QdMockStatusPairsValueComponent, QdMockSwitchComponent, QdMockSwitchesComponent, QdMockTableComponent, QdMockTableModule, QdMockTextSectionComponent, QdMockTextSectionHeadlineComponent, QdMockTextSectionModule, QdMockTextSectionParagraphComponent, QdMockTextareaComponent, QdMockTileButtonListComponent, QdMockTileComponent, QdMockTileTextListComponent, QdMockTileTextListItemComponent, QdMockTileTitleComponent, QdMockTilesContainerComponent, QdMockTilesContainerTitleComponent, QdMockTilesModule, QdMockTranslatePipe, QdMockVisuallyHiddenDirective, QdMultiInputComponent, QdNavigationTilesModule, QdNotificationComponent, QdNotificationContentComponent, QdNotificationsComponent, QdNotificationsHttpInterceptorService, QdNotificationsModule, QdNotificationsService, QdNotificationsSnackbarListenerDirective, QdNumberInputService, QdPageComponent, QdPageControlPanelComponent, QdPageFooterComponent, QdPageFooterCustomContentDirective, QdPageInfoBannerComponent, QdPageModule, QdPageStepComponent, QdPageStepperAdapterDirective, QdPageStepperComponent, QdPageStepperModule, QdPageStoreService, QdPageTabComponent, QdPageTabsAdapterDirective, QdPageTabsComponent, QdPageTabsModule, QdPanelSectionActionsComponent, QdPanelSectionComponent, QdPanelSectionModule, QdPanelSectionStatusComponent, QdPanelSectionTextParagraphComponent, QdPendingChangesGuardDirective, QdPercentageProgressBarComponent, QdPinCodeComponent, QdPlaceHolderComponent, QdPlaceHolderModule, QdPlaceholderPipe, QdProgressBarModule, QdProjectionGuardComponent, QdPushEventsService, QdQuickEditComponent, QdQuickEditModule, QdRadioButtonsComponent, QdRichtextComponent, QdRouterQueryParamHubService, QdRwdDisabledDirective, QdSearchComponent, QdSearchModule, QdSearchService, QdSectionAdapterDirective, QdSectionComponent, QdSectionModule, QdSectionToolbarComponent, QdShellComponent, QdShellModule, QdSortDirection, QdSpinnerComponent, QdSpinnerModule, QdStatusIndicatorComponent, QdStatusIndicatorModule, QdStatusPairsCaptionComponent, QdStatusPairsComponent, QdStatusPairsErrorComponent, QdStatusPairsItemComponent, QdStatusPairsValueComponent, QdSubgridComponent, QdSwitchComponent, QdSwitchesComponent, QdTableComponent, QdTableModule, QdTableSpringTools, QdTextSectionComponent, QdTextSectionHeadlineComponent, QdTextSectionModule, QdTextSectionParagraphComponent, QdTextareaComponent, QdTileButtonListComponent, QdTileComponent, QdTileTextListComponent, QdTileTextListItemComponent, QdTileTitleComponent, QdTilesComponent, QdTilesModule, QdTilesTitleComponent, QdTooltipAtIntersectionDirective, QdTooltipIconComponent, QdTreeComponent, QdTreeModule, QdTreeRowExpanderService, QdUiMockModule, QdUiModule, QdUploadErrorType, QdValidators, QdViewportAdaptiveDirective, QdVisuallyHiddenDirective, chipColorDefault, createMetadataStream, qdFilterParameterize, qdMergeParams, qdPageTabParameterize, qdPaginationParameterize, qdSearchParameterize, qdSortParameterize, qdTableQueryParameterize, qdWrapParams, updateHtmlLang };
|
|
18668
|
-
export type { CustomField, QdAppEnvironment, QdAudioFileType, QdButtonAdditionalInfo, QdButtonAdditionalInfoMessage, QdButtonAdditionalInfoType, QdButtonColor, QdChipColor, QdCollectedFile, QdComment, QdCommentAuthorFieldConfig, QdCommentCustomFieldConfig, QdCommentDeletedMeta, QdCommentRichtextConfig, QdCommentSecondaryActionConfig, QdCommentsAddButtonConfig, QdCommentsAddConfig, QdCommentsConfig, QdCompressedFileType, QdConfirmationStatus, QdContactAddress, QdContactCardActionConfig, QdContactCardActionLabel, QdContactCardActionsConfig, QdContactData, QdContactDataCustomField, QdContactDataCustomFieldEntry, QdContactDataCustomTranslatedEntry, QdContactFunction, QdContactPerson, QdContactTag, QdContextSelection, QdDependentFilterCategory, QdDialogAuthSessionEndResult, QdDialogCancelAction, QdDialogConfig, QdDialogConfirmConfigTranslation, QdDialogConfirmationConfig, QdDialogConfirmationResolver, QdDialogData, QdDialogPrimaryAction, QdDialogTitle, QdDisabledDates, QdDisabledDatesValidation, QdDisabledTimes, QdDisabledTimesValidation, QdDocumentFileType, QdFacetOptionMultiSelect, QdFacetOptionSingleSelect, QdFacetOptions, QdFacetOptionsDate, QdFacetOptionsIcon, QdFacetOptionsStatus, QdFacetOptionsValue, QdFileCollectorConfig, QdFileUpload$1 as QdFileCollectorUpload, QdFileManager, QdFileType, QdFileUpload, QdFileUploadManager, QdFilterCategory, QdFilterConfigData, QdFilterItem, QdFilterPostBodyCategory, QdFilterPostBodyData, QdFilterSelection, QdFilterType, QdFormArrayAsyncValidator, QdFormArrayItemAsyncValidator, QdFormArrayItemValidator, QdFormArrayItemValidatorOrOpts, QdFormArrayOptions, QdFormArrayValidator, QdFormArrayValuesOrControls, QdFormBaseOption, QdFormBaseOptions, QdFormCheckboxChipsConfiguration, QdFormCheckboxOption, QdFormCheckboxOptions, QdFormCheckboxesConfiguration, QdFormConfiguration, QdFormDatepickerConfiguration, QdFormDropdownConfiguration, QdFormFileUploadConfiguration, QdFormHint, QdFormInput, QdFormInputConfiguration, QdFormInputOption, QdFormLabel, QdFormMultiInputConfiguration, QdFormOption, QdFormOptionsDependencies, QdFormOptionsResolvedEvent, QdFormOptionsResolver, QdFormPinCodeConfiguration, QdFormRadioButtonsConfiguration, QdFormRadioButtonsOptions, QdFormResolvableOptionsConfiguration, QdFormResolvedOption, QdFormResolvedOptions, QdFormSwitchesConfiguration, QdFormTextAreaConfiguration, QdFormTimepickerConfiguration, QdGridConfig, QdHinti18n, QdImageFileType, QdInputMode, QdInputRawEventValue, QdInputType, QdInputValue, QdInputValueWithUnit, QdInspectOperationMode, QdLabeli18n, QdLegacySectionActionConfig, QdMaxColumnsCount, QdMenuButtonActionConfig, QdMenuButtonActionLabel, QdMenuButtonConfig, QdMultiInputOption, QdNotification, QdNotificationLink, QdNotificationTitle, QdNotificationTranslation, QdNotificationType, QdNotifications, QdOsNotificationOptions, QdPageArchiveAction, QdPageCancelAction, QdPageCommitAction, QdPageConfig, QdPageConfigBase, QdPageConfigCreate, QdPageConfigCustom, QdPageConfigInspect, QdPageConfigOverview, QdPageContextConfig, QdPageContextConfigBase, QdPageContextConfigCustom, QdPageContextConfigMulti, QdPageContextConfigSingle, QdPageControlPanelConfig, QdPageCreateSubmitAction, QdPageCustomActionsLabel, QdPageDeleteAction, QdPageDialogCanCloseEntry, QdPageDialogCanCloseFn, QdPageDialogCanCloseResult, QdPageDialogCloseCause, QdPageEditAction, QdPageFooterAction, QdPageHeaderFacetConfig, QdPageInfoBannerConfig, QdPageInfoBannerLink, QdPageInfoBannerTitle, QdPageInfoBannerTranslation, QdPageInfoBannerType, QdPageInspectSubmitAction, QdPageObjectResolver, QdPageObjectResolverConfig, QdPageSaveAction, QdPageSaveDraftAction, QdPageSelectedContext, QdPageStepConfig, QdPageStepResolver, QdPageStepperActionConfig, QdPageStepperConfig, QdPageStepperHandlerParams, QdPageStepperSubmitActionConfig, QdPageTabConfig, QdPageTabCounters, QdPageTabsConfig, QdPageTabsSubmitButtonConfig, QdPageTitle, QdPageTypeCreateConfig, QdPageTypeCustomConfig, QdPageTypeInspectConfig, QdPageTypeOverviewConfig, QdPaginationParams, QdPanelSectionActionConfig, QdPanelSectionConfig, QdPanelSectionStatusConfig, QdPanelSectionTextParagraphConfig, QdPanelSectionTextParagraphTitle, QdPanelSectionTitle, QdPinCodeInputType, QdPlaceholder, QdPlaceholderPrefix, QdPredefinedSectionActionConfig, QdPushEventName, QdQueryParameter, QdQuickEditColumn, QdQuickEditColumnBase, QdQuickEditColumnEnum, QdQuickEditColumnInteger, QdQuickEditColumnText, QdQuickEditConfig, QdQuickEditData, QdQuickEditDataValue, QdQuickEditEmptyStateView, QdQuickEditRow, QdQuickEditSecondaryAction, QdResolvedFilterCategory, QdRichtextConfig, QdSearchAdditionalInfo, QdSearchOptions, QdSearchPostBodyData, QdSearchPreSelectOptions, QdSearchPreSelectOptionsList, QdSearchState, QdSectionActionConfig, QdSectionActionOperationMode, QdSectionActionType, QdSectionCollapse, QdSectionConfig, QdSectionTitle, QdShellConfig, QdShellFooterCopyrightInfo, QdShellHeaderWidgetBadge, QdShellHeaderWidgetConfig, QdShellHeaderWidgetContactInfo, QdShellHeaderWidgetCustomButtonLinks, QdShellHeaderWidgetEnvironment, QdShellHeaderWidgetHrefs, QdShellHeaderWidgetInfoLink, QdShellHeaderWidgetLanguage, QdShellHeaderWidgetMultiHrefBadge, QdShellHeaderWidgetMultiHrefs, QdShellHeaderWidgetProfileLink, QdShellHeaderWidgetSingleHref, QdShellHeaderWidgetSingleHrefBadge, QdShellNavigationConfig, QdShellServiceNavigationBadge, QdShellServiceNavigationConfig, QdShellServiceNavigationContactInfo, QdShellServiceNavigationCustomButtonLinks, QdShellServiceNavigationEnvironment, QdShellServiceNavigationHrefs, QdShellServiceNavigationInfoLink, QdShellServiceNavigationLanguage, QdShellServiceNavigationMultiHrefBadge, QdShellServiceNavigationMultiHrefs, QdShellServiceNavigationProfileLink, QdShellServiceNavigationSingleHref, QdShellServiceNavigationSingleHrefBadge, QdShellToolbarConfig, QdShellToolbarItem, QdSnackbarNotificationOptions, QdStaticFilterCategory, QdStatus, QdStatusIndicator, QdStatusIndicatorCaption, QdStatusIndicatorLevel, QdStatusIndicatorType, QdStatusPairStatus, QdSubgridConfig, QdSwitchInput, QdSwitchOption, QdTabSelectionEvent, QdTableActionResult, QdTableChipDataValue, QdTableConfig, QdTableConfigColumn, QdTableConfigColumnBase, QdTableConfigColumnSort, QdTableConfigColumnType, QdTableConfigGroup, QdTableConfigSecondaryActionType, QdTableConfigSelection, QdTableConfigSelectionType, QdTableConnectorCriteria, QdTableContentDataChip, QdTableContentDataChipObject, QdTableContextDataValue, QdTableCriticalDataValue, QdTableData, QdTableDataResolver, QdTableDataResolverProps, QdTableDataRow, QdTableDataValue, QdTableEmptyStateView, QdTableFillingColumn, QdTableOptionalRefreshingEventTypes, QdTablePagination, QdTablePrimaryAction, QdTableRecentSecondaryAction, QdTableRefreshConfig, QdTableResolvedData, QdTableRowIdentifier, QdTableRowIndex, QdTableRowUid, QdTableSecondaryAction, QdTableSelectedRow, QdTableSelectedRows, QdTableSort, QdTableStateSort, QdTableStatusDataValue, QdTileConfig, QdTilesConfig, QdTooltip, QdTranslatable, QdTranslation, QdTreeActionResult, QdTreeConfig, QdTreeConfigColumn, QdTreeConfigColumnBase, QdTreeConfigColumnType, QdTreeConfigSecondaryActionType, QdTreeData, QdTreeDataRow, QdTreeDataValue, QdTreeEmptyStateView, QdTreeGroupConfig, QdTreeSecondaryAction, QdUploadError, QdUploadProgress, QdVideoFileType };
|
|
18552
|
+
export type { CustomField, QdAppEnvironment, QdAudioFileType, QdButtonAdditionalInfo, QdButtonAdditionalInfoMessage, QdButtonAdditionalInfoType, QdButtonColor, QdChipColor, QdCollectedFile, QdComment, QdCommentAuthorFieldConfig, QdCommentCustomFieldConfig, QdCommentDeletedMeta, QdCommentRichtextConfig, QdCommentSecondaryActionConfig, QdCommentsAddButtonConfig, QdCommentsAddConfig, QdCommentsConfig, QdCompressedFileType, QdConfirmationStatus, QdContactAddress, QdContactCardActionConfig, QdContactCardActionLabel, QdContactCardActionsConfig, QdContactData, QdContactDataCustomField, QdContactDataCustomFieldEntry, QdContactDataCustomTranslatedEntry, QdContactFunction, QdContactPerson, QdContactTag, QdContextSelection, QdDependentFilterCategory, QdDialogAuthSessionEndResult, QdDialogCancelAction, QdDialogConfig, QdDialogConfirmConfigTranslation, QdDialogConfirmationConfig, QdDialogConfirmationResolver, QdDialogData, QdDialogPrimaryAction, QdDialogTitle, QdDisabledDates, QdDisabledDatesValidation, QdDisabledTimes, QdDisabledTimesValidation, QdDocumentFileType, QdFacetOptionMultiSelect, QdFacetOptionSingleSelect, QdFacetOptions, QdFacetOptionsDate, QdFacetOptionsIcon, QdFacetOptionsStatus, QdFacetOptionsValue, QdFileCollectorConfig, QdFileUpload$1 as QdFileCollectorUpload, QdFileManager, QdFileType, QdFileUpload, QdFileUploadManager, QdFilterCategory, QdFilterConfigData, QdFilterItem, QdFilterPostBodyCategory, QdFilterPostBodyData, QdFilterSelection, QdFilterType, QdFormArrayAsyncValidator, QdFormArrayItemAsyncValidator, QdFormArrayItemValidator, QdFormArrayItemValidatorOrOpts, QdFormArrayOptions, QdFormArrayValidator, QdFormArrayValuesOrControls, QdFormBaseOption, QdFormBaseOptions, QdFormCheckboxChipsConfiguration, QdFormCheckboxOption, QdFormCheckboxOptions, QdFormCheckboxesConfiguration, QdFormConfiguration, QdFormDatepickerConfiguration, QdFormDropdownConfiguration, QdFormFileUploadConfiguration, QdFormHint, QdFormInput, QdFormInputConfiguration, QdFormInputOption, QdFormLabel, QdFormMultiInputConfiguration, QdFormOption, QdFormOptionsDependencies, QdFormOptionsResolvedEvent, QdFormOptionsResolver, QdFormPinCodeConfiguration, QdFormRadioButtonsConfiguration, QdFormRadioButtonsOptions, QdFormResolvableOptionsConfiguration, QdFormResolvedOption, QdFormResolvedOptions, QdFormSwitchesConfiguration, QdFormTextAreaConfiguration, QdFormTimepickerConfiguration, QdGridConfig, QdHinti18n, QdImageFileType, QdInputMode, QdInputRawEventValue, QdInputType, QdInputValue, QdInputValueWithUnit, QdInspectOperationMode, QdLabeli18n, QdLegacySectionActionConfig, QdMaxColumnsCount, QdMenuButtonActionConfig, QdMenuButtonActionLabel, QdMenuButtonConfig, QdMultiInputOption, QdNotification, QdNotificationLink, QdNotificationTitle, QdNotificationTranslation, QdNotificationType, QdNotifications, QdOsNotificationOptions, QdPageArchiveAction, QdPageCancelAction, QdPageCommitAction, QdPageConfig, QdPageConfigBase, QdPageConfigCreate, QdPageConfigCustom, QdPageConfigInspect, QdPageConfigOverview, QdPageContextConfig, QdPageContextConfigBase, QdPageContextConfigCustom, QdPageContextConfigMulti, QdPageContextConfigSingle, QdPageControlPanelConfig, QdPageCreateSubmitAction, QdPageCustomActionsLabel, QdPageDeleteAction, QdPageDialogCanCloseEntry, QdPageDialogCanCloseFn, QdPageDialogCanCloseResult, QdPageDialogCloseCause, QdPageEditAction, QdPageFooterAction, QdPageHeaderFacetConfig, QdPageInfoBannerConfig, QdPageInfoBannerLink, QdPageInfoBannerTitle, QdPageInfoBannerTranslation, QdPageInfoBannerType, QdPageInspectSubmitAction, QdPageObjectResolver, QdPageObjectResolverConfig, QdPageSaveAction, QdPageSaveDraftAction, QdPageSelectedContext, QdPageStepConfig, QdPageStepResolver, QdPageStepperActionConfig, QdPageStepperConfig, QdPageStepperHandlerParams, QdPageStepperSubmitActionConfig, QdPageTabConfig, QdPageTabCounters, QdPageTabsConfig, QdPageTabsSubmitButtonConfig, QdPageTitle, QdPageTypeCreateConfig, QdPageTypeCustomConfig, QdPageTypeInspectConfig, QdPageTypeOverviewConfig, QdPaginationParams, QdPanelSectionActionConfig, QdPanelSectionConfig, QdPanelSectionStatusConfig, QdPanelSectionTextParagraphConfig, QdPanelSectionTextParagraphTitle, QdPanelSectionTitle, QdPinCodeInputType, QdPlaceholder, QdPlaceholderPrefix, QdPredefinedSectionActionConfig, QdPushEventName, QdQueryParameter, QdQuickEditColumn, QdQuickEditColumnBase, QdQuickEditColumnEnum, QdQuickEditColumnInteger, QdQuickEditColumnText, QdQuickEditConfig, QdQuickEditData, QdQuickEditDataValue, QdQuickEditEmptyStateView, QdQuickEditRow, QdQuickEditSecondaryAction, QdResolvedFilterCategory, QdRichtextConfig, QdSearchAdditionalInfo, QdSearchOptions, QdSearchPostBodyData, QdSearchPreSelectOptions, QdSearchPreSelectOptionsList, QdSearchState, QdSectionActionConfig, QdSectionActionOperationMode, QdSectionActionType, QdSectionCollapse, QdSectionConfig, QdSectionTitle, QdShellConfig, QdShellFooterCopyrightInfo, QdShellHeaderWidgetBadge, QdShellHeaderWidgetConfig, QdShellHeaderWidgetContactInfo, QdShellHeaderWidgetCustomButtonLinks, QdShellHeaderWidgetEnvironment, QdShellHeaderWidgetHrefs, QdShellHeaderWidgetInfoLink, QdShellHeaderWidgetLanguage, QdShellHeaderWidgetMultiHrefBadge, QdShellHeaderWidgetMultiHrefs, QdShellHeaderWidgetProfileLink, QdShellHeaderWidgetSingleHref, QdShellHeaderWidgetSingleHrefBadge, QdShellNavigationConfig, QdShellServiceNavigationBadge, QdShellServiceNavigationConfig, QdShellServiceNavigationContactInfo, QdShellServiceNavigationCustomButtonLinks, QdShellServiceNavigationEnvironment, QdShellServiceNavigationHrefs, QdShellServiceNavigationInfoLink, QdShellServiceNavigationLanguage, QdShellServiceNavigationMultiHrefBadge, QdShellServiceNavigationMultiHrefs, QdShellServiceNavigationProfileLink, QdShellServiceNavigationSingleHref, QdShellServiceNavigationSingleHrefBadge, QdShellToolbarConfig, QdShellToolbarItem, QdSnackbarNotificationOptions, QdStaticFilterCategory, QdStatus, QdStatusIndicator, QdStatusIndicatorCaption, QdStatusIndicatorLevel, QdStatusIndicatorType, QdStatusPairStatus, QdSubgridConfig, QdSwitchInput, QdSwitchOption, QdTabSelectionEvent, QdTableActionResult, QdTableChipDataValue, QdTableConfig, QdTableConfigColumn, QdTableConfigColumnBase, QdTableConfigColumnSort, QdTableConfigColumnType, QdTableConfigGroup, QdTableConfigSecondaryActionType, QdTableConfigSelection, QdTableConfigSelectionType, QdTableConnectorCriteria, QdTableContentDataChip, QdTableContentDataChipObject, QdTableContextDataValue, QdTableCriticalDataValue, QdTableData, QdTableDataResolver, QdTableDataResolverProps, QdTableDataRow, QdTableDataValue, QdTableEmptyStateView, QdTableFillingColumn, QdTableOptionalRefreshingEventTypes, QdTablePagination, QdTablePrimaryAction, QdTableRecentSecondaryAction, QdTableRefreshConfig, QdTableResolvedData, QdTableRowIdentifier, QdTableRowIndex, QdTableRowUid, QdTableSecondaryAction, QdTableSelectedRow, QdTableSelectedRows, QdTableSort, QdTableStateSort, QdTableStatusDataValue, QdTileConfig, QdTilesConfig, QdTooltip, QdTranslatable, QdTranslation, QdTreeActionResult, QdTreeConfig, QdTreeConfigColumn, QdTreeConfigColumnBase, QdTreeConfigColumnType, QdTreeConfigSecondaryActionType, QdTreeData, QdTreeDataRow, QdTreeDataValue, QdTreeEmptyStateView, QdTreeGroupConfig, QdTreeRowsProvider, QdTreeSecondaryAction, QdUploadError, QdUploadProgress, QdVideoFileType };
|