@quadrel-enterprise-ui/framework 20.23.1 → 20.25.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;
|
|
@@ -3477,12 +3464,13 @@ declare class QdMockCheckboxComponent {
|
|
|
3477
3464
|
inputData: QdFormCheckboxOption;
|
|
3478
3465
|
value: string;
|
|
3479
3466
|
disabled: boolean;
|
|
3467
|
+
hasAutofocus: boolean;
|
|
3480
3468
|
testId: string;
|
|
3481
3469
|
valueChange: EventEmitter<string>;
|
|
3482
3470
|
get dataTestId(): string;
|
|
3483
3471
|
handleClick(): void;
|
|
3484
3472
|
static ɵfac: i0.ɵɵFactoryDeclaration<QdMockCheckboxComponent, never>;
|
|
3485
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<QdMockCheckboxComponent, "qd-checkbox", never, { "inputData": { "alias": "inputData"; "required": false; }; "value": { "alias": "value"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "testId": { "alias": "data-test-id"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, false, never>;
|
|
3473
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<QdMockCheckboxComponent, "qd-checkbox", never, { "inputData": { "alias": "inputData"; "required": false; }; "value": { "alias": "value"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "hasAutofocus": { "alias": "hasAutofocus"; "required": false; }; "testId": { "alias": "data-test-id"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, false, never>;
|
|
3486
3474
|
}
|
|
3487
3475
|
|
|
3488
3476
|
declare class QdMockCheckboxesComponent {
|
|
@@ -6016,6 +6004,14 @@ declare class QdCheckboxComponent implements ControlValueAccessor {
|
|
|
6016
6004
|
value: string;
|
|
6017
6005
|
testId: string;
|
|
6018
6006
|
disabled: boolean;
|
|
6007
|
+
/**
|
|
6008
|
+
* @description Set to "true", this checkbox's native input will be focused when the application is
|
|
6009
|
+
* initially loaded. Within a checkbox group, the group passes this only to its first checkbox.
|
|
6010
|
+
* Note: hasAutofocus can only be used once per view. No matter in which pattern it is used.
|
|
6011
|
+
*
|
|
6012
|
+
* * @default: false
|
|
6013
|
+
*/
|
|
6014
|
+
hasAutofocus: boolean;
|
|
6019
6015
|
valueChange: EventEmitter<string>;
|
|
6020
6016
|
get checked(): boolean;
|
|
6021
6017
|
get isDisabled(): boolean;
|
|
@@ -6029,7 +6025,7 @@ declare class QdCheckboxComponent implements ControlValueAccessor {
|
|
|
6029
6025
|
writeValue(value: any): void;
|
|
6030
6026
|
handleClick(value: string, event: MouseEvent): void;
|
|
6031
6027
|
static ɵfac: i0.ɵɵFactoryDeclaration<QdCheckboxComponent, never>;
|
|
6032
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<QdCheckboxComponent, "qd-checkbox", never, { "inputData": { "alias": "inputData"; "required": false; }; "value": { "alias": "value"; "required": false; }; "testId": { "alias": "data-test-id"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, false, never>;
|
|
6028
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<QdCheckboxComponent, "qd-checkbox", never, { "inputData": { "alias": "inputData"; "required": false; }; "value": { "alias": "value"; "required": false; }; "testId": { "alias": "data-test-id"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "hasAutofocus": { "alias": "hasAutofocus"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, false, never>;
|
|
6033
6029
|
}
|
|
6034
6030
|
|
|
6035
6031
|
/**
|
|
@@ -6122,6 +6118,7 @@ declare class QdCheckboxesComponent implements OnInit, OnChanges, OnDestroy, Con
|
|
|
6122
6118
|
get isVertical(): boolean;
|
|
6123
6119
|
get isHorizontal(): boolean;
|
|
6124
6120
|
filter: boolean;
|
|
6121
|
+
hasAutofocus: boolean;
|
|
6125
6122
|
label: string;
|
|
6126
6123
|
hint: string;
|
|
6127
6124
|
align: any;
|
|
@@ -6257,7 +6254,7 @@ declare class QdDatepickerComponent implements ControlValueAccessor, OnInit, OnC
|
|
|
6257
6254
|
* No Parameter here.
|
|
6258
6255
|
*/
|
|
6259
6256
|
readonly clickViewonly: EventEmitter<null>;
|
|
6260
|
-
popover
|
|
6257
|
+
private popover;
|
|
6261
6258
|
readonly: boolean;
|
|
6262
6259
|
viewonly: boolean;
|
|
6263
6260
|
hintAction: boolean;
|
|
@@ -6271,7 +6268,6 @@ declare class QdDatepickerComponent implements ControlValueAccessor, OnInit, OnC
|
|
|
6271
6268
|
readonlyAction: boolean;
|
|
6272
6269
|
viewonlyAction: boolean;
|
|
6273
6270
|
language: string;
|
|
6274
|
-
qdPopoverOnClick: QdPopoverOnClickDirective;
|
|
6275
6271
|
control: AbstractControl;
|
|
6276
6272
|
timePicker?: QdFormTimepickerConfiguration;
|
|
6277
6273
|
private _disabledDatesValidator;
|
|
@@ -6416,43 +6412,6 @@ declare enum QdFormOptionsRequestState {
|
|
|
6416
6412
|
ERROR = 3
|
|
6417
6413
|
}
|
|
6418
6414
|
|
|
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
6415
|
/**
|
|
6457
6416
|
* The **QdDropdown** is an component that provides a dropdown form element.<br />
|
|
6458
6417
|
* It can be used with Quadrel Reactive Forms or with model binding.
|
|
@@ -6602,8 +6561,8 @@ declare class QdDropdownComponent implements ControlValueAccessor, OnInit, OnCha
|
|
|
6602
6561
|
private _subs;
|
|
6603
6562
|
private _onChange;
|
|
6604
6563
|
private _onTouch;
|
|
6605
|
-
dropdownOptions
|
|
6606
|
-
dropdownDirective
|
|
6564
|
+
private dropdownOptions;
|
|
6565
|
+
private dropdownDirective;
|
|
6607
6566
|
box: ElementRef;
|
|
6608
6567
|
isOpen: boolean;
|
|
6609
6568
|
get hasError(): boolean;
|
|
@@ -7469,34 +7428,6 @@ interface QdFormArrayOptions extends AbstractControlOptions {
|
|
|
7469
7428
|
itemInitialValueIsDefault?: boolean;
|
|
7470
7429
|
}
|
|
7471
7430
|
|
|
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
7431
|
/**
|
|
7501
7432
|
* The **QdMultiInput** is a component that provides a user interface for entering multiple inputs.<br />
|
|
7502
7433
|
* 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 +7518,8 @@ declare class QdMultiInputComponent implements ControlValueAccessor, OnInit, OnC
|
|
|
7587
7518
|
*/
|
|
7588
7519
|
readonly clickViewonly: EventEmitter<any>;
|
|
7589
7520
|
inputField: ElementRef;
|
|
7590
|
-
multiInputMenu
|
|
7591
|
-
popoverOnClickDirective
|
|
7521
|
+
private multiInputMenu;
|
|
7522
|
+
private popoverOnClickDirective;
|
|
7592
7523
|
errorTooltips: QueryList<ElementRef>;
|
|
7593
7524
|
dropdownOptions: QueryList<ElementRef>;
|
|
7594
7525
|
readonly: boolean;
|
|
@@ -7653,33 +7584,6 @@ declare class QdMultiInputComponent implements ControlValueAccessor, OnInit, OnC
|
|
|
7653
7584
|
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
7585
|
}
|
|
7655
7586
|
|
|
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
7587
|
/**
|
|
7684
7588
|
* **QdPinCode** component provides a FormElement.
|
|
7685
7589
|
* The **QdPinCode** is a component that provides a form element for entering a PIN code.<br />
|
|
@@ -7707,7 +7611,7 @@ declare class QdPinCodeService {
|
|
|
7707
7611
|
* ```
|
|
7708
7612
|
*/
|
|
7709
7613
|
declare class QdPinCodeComponent implements OnInit, OnChanges, AfterViewInit, OnDestroy, ControlValueAccessor {
|
|
7710
|
-
readonly pinCodeService
|
|
7614
|
+
private readonly pinCodeService;
|
|
7711
7615
|
private readonly changeDetectorRef;
|
|
7712
7616
|
private readonly actionEmitterService;
|
|
7713
7617
|
private readonly controlContainer;
|
|
@@ -7783,6 +7687,8 @@ declare class QdPinCodeComponent implements OnInit, OnChanges, AfterViewInit, On
|
|
|
7783
7687
|
private _subs;
|
|
7784
7688
|
private _onChange;
|
|
7785
7689
|
private _onTouch;
|
|
7690
|
+
protected get firstEmptyIndex(): number;
|
|
7691
|
+
protected get joinedValues(): string;
|
|
7786
7692
|
get errors(): ValidationErrors;
|
|
7787
7693
|
get required(): boolean;
|
|
7788
7694
|
ngOnInit(): void;
|
|
@@ -8759,6 +8665,43 @@ declare class QdCheckboxChipsItemComponent {
|
|
|
8759
8665
|
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
8666
|
}
|
|
8761
8667
|
|
|
8668
|
+
declare class QdFormInputComponent implements Highlightable {
|
|
8669
|
+
private readonly translateService;
|
|
8670
|
+
option?: QdFormResolvedOption;
|
|
8671
|
+
private _isActive;
|
|
8672
|
+
get isActive(): boolean;
|
|
8673
|
+
private element;
|
|
8674
|
+
scrollIntoView(): void;
|
|
8675
|
+
setActiveStyles(): void;
|
|
8676
|
+
setInactiveStyles(): void;
|
|
8677
|
+
getLabel(): string;
|
|
8678
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<QdFormInputComponent, never>;
|
|
8679
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<QdFormInputComponent, "qd-form-input", never, { "option": { "alias": "option"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
8680
|
+
}
|
|
8681
|
+
|
|
8682
|
+
declare class QdDropdownOptionsComponent implements AfterViewInit {
|
|
8683
|
+
private keyboardService;
|
|
8684
|
+
private optionsService;
|
|
8685
|
+
filter: boolean;
|
|
8686
|
+
filterText: string;
|
|
8687
|
+
testId: string;
|
|
8688
|
+
id: string;
|
|
8689
|
+
readonly filterChange: EventEmitter<string>;
|
|
8690
|
+
readonly optionClick: EventEmitter<any>;
|
|
8691
|
+
optionComponents: QueryList<QdFormInputComponent>;
|
|
8692
|
+
filterElement: ElementRef;
|
|
8693
|
+
onKeyDown(event: KeyboardEvent): void;
|
|
8694
|
+
selectedOptionValue: string;
|
|
8695
|
+
filteredOptions$: Observable<QdFormResolvedOption[] | QdFormOption[]>;
|
|
8696
|
+
optionSelected: EventEmitter<any>;
|
|
8697
|
+
constructor();
|
|
8698
|
+
ngAfterViewInit(): void;
|
|
8699
|
+
onOpen(): void;
|
|
8700
|
+
onFilterInputChange(value: string): void;
|
|
8701
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<QdDropdownOptionsComponent, never>;
|
|
8702
|
+
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>;
|
|
8703
|
+
}
|
|
8704
|
+
|
|
8762
8705
|
declare class QdFormErrorComponent {
|
|
8763
8706
|
control?: AbstractControl;
|
|
8764
8707
|
get errorArr(): {
|
|
@@ -8979,6 +8922,34 @@ declare class QdMultiInputChipComponent {
|
|
|
8979
8922
|
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
8923
|
}
|
|
8981
8924
|
|
|
8925
|
+
type Direction = 'up' | 'down';
|
|
8926
|
+
declare class QdMultiInputMenuComponent implements AfterViewInit {
|
|
8927
|
+
private readonly multiInputService;
|
|
8928
|
+
/**
|
|
8929
|
+
* Here an id can be assigned, with which a value can be linked to a corresponding label.
|
|
8930
|
+
*/
|
|
8931
|
+
id: any;
|
|
8932
|
+
optionsListForView: QdMultiInputOption[];
|
|
8933
|
+
/**
|
|
8934
|
+
* A static test ID for integration tests can be set. <br />
|
|
8935
|
+
* The value for the HTML attribute [data-test-id].
|
|
8936
|
+
*/
|
|
8937
|
+
testId: string;
|
|
8938
|
+
readonly itemClick: EventEmitter<any>;
|
|
8939
|
+
selectBox: ElementRef;
|
|
8940
|
+
dropdownOptions: QueryList<ElementRef>;
|
|
8941
|
+
optionComponents: QueryList<QdFormInputComponent>;
|
|
8942
|
+
keyManager: ActiveDescendantKeyManager<QdFormInputComponent>;
|
|
8943
|
+
ngAfterViewInit(): void;
|
|
8944
|
+
getTranslation(option: QdMultiInputOption): string;
|
|
8945
|
+
handleClick(option: QdMultiInputOption): void;
|
|
8946
|
+
resetCheckedOption(): number;
|
|
8947
|
+
handleArrowKey(direction: Direction, event: KeyboardEvent): void;
|
|
8948
|
+
getHeight(): number;
|
|
8949
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<QdMultiInputMenuComponent, never>;
|
|
8950
|
+
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>;
|
|
8951
|
+
}
|
|
8952
|
+
|
|
8982
8953
|
declare class QdAutofocusDirective implements AfterViewInit, OnDestroy {
|
|
8983
8954
|
private readonly autofocusService;
|
|
8984
8955
|
private readonly elementRef;
|
|
@@ -11526,53 +11497,6 @@ declare class QdFileCollectorModule {
|
|
|
11526
11497
|
static ɵinj: i0.ɵɵInjectorDeclaration<QdFileCollectorModule>;
|
|
11527
11498
|
}
|
|
11528
11499
|
|
|
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
11500
|
declare class QdFilterService {
|
|
11577
11501
|
private readonly store;
|
|
11578
11502
|
readonly translateService: TranslateService;
|
|
@@ -11620,47 +11544,6 @@ declare class QdFilterService {
|
|
|
11620
11544
|
static ɵprov: i0.ɵɵInjectableDeclaration<QdFilterService>;
|
|
11621
11545
|
}
|
|
11622
11546
|
|
|
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
11547
|
/**
|
|
11665
11548
|
* The **QdFilter** is responsible for the filtering of data.
|
|
11666
11549
|
*
|
|
@@ -11702,8 +11585,8 @@ declare class QdDependentFiltersService {
|
|
|
11702
11585
|
*/
|
|
11703
11586
|
declare class QdFilterComponent implements OnInit, OnChanges, OnDestroy {
|
|
11704
11587
|
readonly filterService: QdFilterService;
|
|
11705
|
-
readonly filterRouterConnectorService
|
|
11706
|
-
readonly dependentFiltersService
|
|
11588
|
+
private readonly filterRouterConnectorService;
|
|
11589
|
+
private readonly dependentFiltersService;
|
|
11707
11590
|
/**
|
|
11708
11591
|
* The configuration of the filter
|
|
11709
11592
|
*/
|
|
@@ -11728,7 +11611,7 @@ declare class QdFilterComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
11728
11611
|
* Emits event when the values of the filter change. Return value matches the current object of the filter.
|
|
11729
11612
|
*/
|
|
11730
11613
|
valueChange: EventEmitter<QdFilterPostBodyData>;
|
|
11731
|
-
filterCategory
|
|
11614
|
+
private filterCategory;
|
|
11732
11615
|
get dataTestId(): string;
|
|
11733
11616
|
disableFilterButton$: Observable<boolean>;
|
|
11734
11617
|
disableResetButton$: Observable<boolean>;
|
|
@@ -11839,6 +11722,53 @@ declare class LocaleDatePipe implements PipeTransform, OnDestroy {
|
|
|
11839
11722
|
static ɵpipe: i0.ɵɵPipeDeclaration<LocaleDatePipe, "localeDate", false>;
|
|
11840
11723
|
}
|
|
11841
11724
|
|
|
11725
|
+
declare class QdFilterItemFreeTextCategoryComponent implements OnInit {
|
|
11726
|
+
private readonly filterService;
|
|
11727
|
+
filterId: string;
|
|
11728
|
+
isInstantFiltering: boolean;
|
|
11729
|
+
categoryIndex: number;
|
|
11730
|
+
testId: string;
|
|
11731
|
+
itemIndex: number;
|
|
11732
|
+
itemData: any;
|
|
11733
|
+
ngOnInit(): void;
|
|
11734
|
+
private updateState;
|
|
11735
|
+
refreshItems(): void;
|
|
11736
|
+
handleReset(): void;
|
|
11737
|
+
handleEnter(): void;
|
|
11738
|
+
close(): void;
|
|
11739
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<QdFilterItemFreeTextCategoryComponent, never>;
|
|
11740
|
+
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>;
|
|
11741
|
+
}
|
|
11742
|
+
|
|
11743
|
+
declare class QdFilterCategoryComponent implements OnInit {
|
|
11744
|
+
private readonly filterService;
|
|
11745
|
+
readonly translateService: TranslateService;
|
|
11746
|
+
filterId: string;
|
|
11747
|
+
isInstantFiltering: boolean;
|
|
11748
|
+
categoryIndex: number;
|
|
11749
|
+
lastCategory: boolean;
|
|
11750
|
+
testId: string;
|
|
11751
|
+
timePickerConfig: QdFormDatepickerConfiguration;
|
|
11752
|
+
private type;
|
|
11753
|
+
itemFreeTextCategory: QueryList<QdFilterItemFreeTextCategoryComponent>;
|
|
11754
|
+
get categoryIndexAttribute(): string;
|
|
11755
|
+
get categoryNumberClassName(): string;
|
|
11756
|
+
get dataTestId(): string;
|
|
11757
|
+
ngOnInit(): void;
|
|
11758
|
+
get isBoolean(): boolean;
|
|
11759
|
+
get isSelect(): boolean;
|
|
11760
|
+
get isFreeText(): boolean;
|
|
11761
|
+
get isDate(): boolean;
|
|
11762
|
+
get isDateTime(): boolean;
|
|
11763
|
+
get isDateRange(): boolean;
|
|
11764
|
+
get isDateTimeRange(): boolean;
|
|
11765
|
+
get buttonClassName(): string;
|
|
11766
|
+
refreshItems(): void;
|
|
11767
|
+
handleReset(): void;
|
|
11768
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<QdFilterCategoryComponent, never>;
|
|
11769
|
+
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>;
|
|
11770
|
+
}
|
|
11771
|
+
|
|
11842
11772
|
declare class QdFilterCategoryBooleanComponent implements OnInit {
|
|
11843
11773
|
private readonly filterService;
|
|
11844
11774
|
filterId: string;
|
|
@@ -12446,11 +12376,7 @@ declare class QdPageControlPanelComponent {
|
|
|
12446
12376
|
}
|
|
12447
12377
|
|
|
12448
12378
|
/**
|
|
12449
|
-
*
|
|
12450
|
-
*/
|
|
12451
|
-
type QdFooterActionKey = 'saveDraft' | 'previous' | 'next' | 'cancel' | 'submit';
|
|
12452
|
-
/**
|
|
12453
|
-
* Interface that describes the configuration of a footer action.
|
|
12379
|
+
* Interface that describes the configuration of a footer action.
|
|
12454
12380
|
*/
|
|
12455
12381
|
interface QdPageFooterAction {
|
|
12456
12382
|
/**
|
|
@@ -12493,7 +12419,7 @@ declare enum QdFooterActionType {
|
|
|
12493
12419
|
declare class QdPageFooterComponent {
|
|
12494
12420
|
private readonly footerService;
|
|
12495
12421
|
protected readonly QdFooterActionType: typeof QdFooterActionType;
|
|
12496
|
-
actions$: Observable<(QdPageFooterAction & {
|
|
12422
|
+
protected actions$: Observable<(QdPageFooterAction & {
|
|
12497
12423
|
key: string;
|
|
12498
12424
|
})[]>;
|
|
12499
12425
|
constructor();
|
|
@@ -12751,28 +12677,6 @@ declare class QdPageStepperAdapterDirective implements OnInit {
|
|
|
12751
12677
|
static ɵdir: i0.ɵɵDirectiveDeclaration<QdPageStepperAdapterDirective, "[qdPageStepperAdapter]", never, {}, {}, never, never, false, never>;
|
|
12752
12678
|
}
|
|
12753
12679
|
|
|
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
12680
|
/**
|
|
12777
12681
|
* Interface for the configuration of the page stepper
|
|
12778
12682
|
*/
|
|
@@ -12887,7 +12791,7 @@ declare class QdPageStepComponent extends CdkStep implements OnInit, OnChanges,
|
|
|
12887
12791
|
* The **QdPageStepper** allows linear navigation through process steps within a **QdPage**.
|
|
12888
12792
|
*/
|
|
12889
12793
|
declare class QdPageStepperComponent extends CdkStepper implements OnInit, AfterContentInit, OnChanges, OnDestroy {
|
|
12890
|
-
readonly footerService
|
|
12794
|
+
private readonly footerService;
|
|
12891
12795
|
private readonly pageStepResolver;
|
|
12892
12796
|
private readonly router;
|
|
12893
12797
|
private readonly dialog;
|
|
@@ -12911,6 +12815,7 @@ declare class QdPageStepperComponent extends CdkStepper implements OnInit, After
|
|
|
12911
12815
|
allStepsValid$: Observable<boolean>;
|
|
12912
12816
|
private _destroyed$;
|
|
12913
12817
|
private isGoingToNextStep;
|
|
12818
|
+
protected get hasPageFooter(): boolean;
|
|
12914
12819
|
constructor();
|
|
12915
12820
|
ngOnInit(): void;
|
|
12916
12821
|
ngOnChanges(changes: SimpleChanges): void;
|
|
@@ -13318,9 +13223,10 @@ interface QdTabSelectionEvent {
|
|
|
13318
13223
|
* - If no tab parameter is present, the `selectedIndex` or first non-disabled tab is selected
|
|
13319
13224
|
*/
|
|
13320
13225
|
declare class QdPageTabsComponent extends CdkStepper implements OnInit, OnChanges, AfterContentInit, AfterViewInit {
|
|
13321
|
-
readonly footerService
|
|
13226
|
+
private readonly footerService;
|
|
13322
13227
|
private pageStoreService;
|
|
13323
13228
|
private readonly routerConnector;
|
|
13229
|
+
protected get hasPageFooter(): boolean;
|
|
13324
13230
|
/**
|
|
13325
13231
|
* Configuration of QdPageTabs.
|
|
13326
13232
|
*/
|
|
@@ -14948,7 +14854,24 @@ declare class QdSectionAdapterDirective implements OnInit {
|
|
|
14948
14854
|
static ɵdir: i0.ɵɵDirectiveDeclaration<QdSectionAdapterDirective, "[qdSectionAdapter]", never, {}, {}, never, never, false, never>;
|
|
14949
14855
|
}
|
|
14950
14856
|
|
|
14951
|
-
|
|
14857
|
+
declare class QdSectionToolbarComponent implements AfterViewInit {
|
|
14858
|
+
private toolbarComponentsService;
|
|
14859
|
+
private changeDetectorRef;
|
|
14860
|
+
config: QdSectionConfig;
|
|
14861
|
+
private toolbarComponents;
|
|
14862
|
+
get searchConfigData(): QdSearchOptions | undefined;
|
|
14863
|
+
get filterData(): QdFilterConfigData;
|
|
14864
|
+
get collapseConfig(): QdSectionCollapse | undefined;
|
|
14865
|
+
get isCollapsed(): boolean;
|
|
14866
|
+
set isCollapsed(value: boolean);
|
|
14867
|
+
get isTooltipVisible(): boolean;
|
|
14868
|
+
get tooltipContent(): QdTooltipContent | undefined;
|
|
14869
|
+
ngAfterViewInit(): void;
|
|
14870
|
+
toggleCollapse(): void;
|
|
14871
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<QdSectionToolbarComponent, never>;
|
|
14872
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<QdSectionToolbarComponent, "qd-section-toolbar", never, { "config": { "alias": "config"; "required": false; }; }, {}, never, never, false, never>;
|
|
14873
|
+
}
|
|
14874
|
+
|
|
14952
14875
|
interface QdSingleActionConfig {
|
|
14953
14876
|
/**
|
|
14954
14877
|
* @description Translation key for the action's label displayed in the UI.
|
|
@@ -14974,24 +14897,6 @@ interface QdSingleActionConfig {
|
|
|
14974
14897
|
isHidden?: boolean;
|
|
14975
14898
|
}
|
|
14976
14899
|
|
|
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
14900
|
/**
|
|
14996
14901
|
* Renders the configured section actions in the toolbar.
|
|
14997
14902
|
*
|
|
@@ -15298,64 +15203,6 @@ declare function qdSortParameterize<T extends string>(sort: QdTableStateSort<T>[
|
|
|
15298
15203
|
*/
|
|
15299
15204
|
declare function qdTableQueryParameterize<T extends string>(props: QdTableDataResolverProps<T>): QdQueryParameter;
|
|
15300
15205
|
|
|
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
15206
|
/**
|
|
15360
15207
|
* QdTableComponent is a responsive and highly configurable table component designed for effective data display and user interaction.
|
|
15361
15208
|
* It supports pagination, sorting, actions, selections, and customizable columns.
|
|
@@ -15547,7 +15394,7 @@ declare class QdTableComponent<T extends string> implements OnInit, OnChanges, O
|
|
|
15547
15394
|
* The `emptyStateView` must be enabled in the table configuration.
|
|
15548
15395
|
*/
|
|
15549
15396
|
emptyStateActionOutput: EventEmitter<any>;
|
|
15550
|
-
paginator
|
|
15397
|
+
private paginator?;
|
|
15551
15398
|
get dataTestId(): string;
|
|
15552
15399
|
data$: Observable<QdTableData<T> | undefined>;
|
|
15553
15400
|
hasData$: Observable<boolean>;
|
|
@@ -16056,6 +15903,64 @@ declare class QdTableHeadComponent<T extends string> implements OnInit {
|
|
|
16056
15903
|
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
15904
|
}
|
|
16058
15905
|
|
|
15906
|
+
declare enum QdPaginatorDirection {
|
|
15907
|
+
FirstPage = 0,
|
|
15908
|
+
NextPage = 1,
|
|
15909
|
+
PreviousPage = 2,
|
|
15910
|
+
LastPage = 3
|
|
15911
|
+
}
|
|
15912
|
+
|
|
15913
|
+
declare class QdTablePaginatorComponent<T extends string> implements OnInit, OnDestroy {
|
|
15914
|
+
private readonly tableDataResolver;
|
|
15915
|
+
private readonly tableStoreService;
|
|
15916
|
+
private readonly routerConnector;
|
|
15917
|
+
/**
|
|
15918
|
+
* @description Configuration Model for Qd-Table.
|
|
15919
|
+
*/
|
|
15920
|
+
config: QdTableConfig<T>;
|
|
15921
|
+
/**
|
|
15922
|
+
* A static test ID for integration tests can be set. <br />
|
|
15923
|
+
* The value for the HTML attribute [data-test-id].
|
|
15924
|
+
*/
|
|
15925
|
+
testId?: string;
|
|
15926
|
+
paginatorButtons: ElementRef | undefined;
|
|
15927
|
+
table$: Observable<QdTableState<string> | undefined>;
|
|
15928
|
+
canPageForward$: Observable<boolean>;
|
|
15929
|
+
canPageBackward$: Observable<boolean>;
|
|
15930
|
+
currentPage$: Observable<QdTablePaginatorCurrentPage | undefined>;
|
|
15931
|
+
pageSize$: Observable<number>;
|
|
15932
|
+
totalCount$: Observable<number>;
|
|
15933
|
+
selectedRowsCount$: Observable<number>;
|
|
15934
|
+
pageNav?: typeof QdPaginatorDirection;
|
|
15935
|
+
private _destroyed$;
|
|
15936
|
+
get pageSizes(): number[];
|
|
15937
|
+
get hasData$(): Observable<boolean>;
|
|
15938
|
+
ngOnInit(): void;
|
|
15939
|
+
ngOnDestroy(): void;
|
|
15940
|
+
/**
|
|
15941
|
+
* @description Whether this paginator should sync its state with the URL. Reads
|
|
15942
|
+
* `pagination.connectWithRouter` (default `false` — URL sync is opt-in and
|
|
15943
|
+
* requires an explicit `pagination: { connectWithRouter: true }`).
|
|
15944
|
+
*
|
|
15945
|
+
* Used by `QdTablePaginationRouterConnectorService` to decide whether to claim
|
|
15946
|
+
* the router-singleton for this paginator.
|
|
15947
|
+
*/
|
|
15948
|
+
shouldConnectWithRouter(): boolean;
|
|
15949
|
+
/**
|
|
15950
|
+
* @description The effective default page size for this paginator. Resolves
|
|
15951
|
+
* `pagination.pageSizeDefault` first, then falls back to the first entry of
|
|
15952
|
+
* `pagination.pageSizes`, finally to the framework constant `PAGE_SIZE_DEFAULT`.
|
|
15953
|
+
*/
|
|
15954
|
+
getPageSizeDefault(): number;
|
|
15955
|
+
navigateToPage(direction: QdPaginatorDirection): void;
|
|
15956
|
+
private isConfigValid;
|
|
15957
|
+
private startPagination;
|
|
15958
|
+
private initPagination;
|
|
15959
|
+
private calculatePageNumber;
|
|
15960
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<QdTablePaginatorComponent<any>, never>;
|
|
15961
|
+
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>;
|
|
15962
|
+
}
|
|
15963
|
+
|
|
16059
15964
|
type PageSize = {
|
|
16060
15965
|
value: number;
|
|
16061
15966
|
disabled: boolean;
|
|
@@ -16204,80 +16109,19 @@ declare class QdTableSortComponent<T extends string> implements OnInit, OnDestro
|
|
|
16204
16109
|
}
|
|
16205
16110
|
|
|
16206
16111
|
/**
|
|
16207
|
-
*
|
|
16208
|
-
*
|
|
16112
|
+
* Minimal contract the QdTreeRowExpanderService requires from the rows store of a tree.
|
|
16113
|
+
* The QdTree wires itself up with this contract internally; consumers never implement or register it themselves.
|
|
16209
16114
|
*/
|
|
16210
|
-
|
|
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;
|
|
16115
|
+
interface QdTreeRowsProvider<T extends string> {
|
|
16219
16116
|
/**
|
|
16220
|
-
*
|
|
16117
|
+
* Stream of the current rows of the tree.
|
|
16221
16118
|
*/
|
|
16222
|
-
|
|
16119
|
+
treeRow$: Observable<QdTreeData<T>>;
|
|
16223
16120
|
/**
|
|
16224
|
-
*
|
|
16225
|
-
*/
|
|
16226
|
-
isMainColumn: boolean;
|
|
16227
|
-
/**
|
|
16228
|
-
* @description Indicates whether this column is the last column.
|
|
16121
|
+
* Replaces the rows of the tree with the given rows.
|
|
16229
16122
|
*/
|
|
16230
|
-
|
|
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.
|
|
16246
|
-
*/
|
|
16247
|
-
type QdGroupColumnDetails<T extends string> = QdColumnDetails<T> & {
|
|
16248
|
-
/**
|
|
16249
|
-
* @description The column type of the group column is 'group'.
|
|
16250
|
-
*/
|
|
16251
|
-
type: 'group';
|
|
16252
|
-
/**
|
|
16253
|
-
* @description Contains the originally defined columns that are grouped in this column.
|
|
16254
|
-
*/
|
|
16255
|
-
groupedColumns: QdColumnDetails<T>[];
|
|
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>>;
|
|
16123
|
+
updateRows(rows: QdTreeData<T>): void;
|
|
16279
16124
|
}
|
|
16280
|
-
|
|
16281
16125
|
/**
|
|
16282
16126
|
* The **QdTreeRowExpanderService** allows you to expand certain rows by conditions and close all rows.
|
|
16283
16127
|
*
|
|
@@ -16299,12 +16143,9 @@ declare class QdTreeRowsService<T extends string> {
|
|
|
16299
16143
|
* Please be aware that a record will only be provided for the rows that are leafs / have no children.
|
|
16300
16144
|
*/
|
|
16301
16145
|
declare class QdTreeRowExpanderService<T extends string> {
|
|
16302
|
-
trees
|
|
16303
|
-
treeRows: QdTreeDataRow<T>[];
|
|
16304
|
-
rowService: QdTreeRowsService<T>;
|
|
16305
|
-
}>;
|
|
16146
|
+
private trees;
|
|
16306
16147
|
destroyRef: DestroyRef;
|
|
16307
|
-
init(treeId: string, rowService:
|
|
16148
|
+
init(treeId: string, rowService: QdTreeRowsProvider<T>): void;
|
|
16308
16149
|
/**
|
|
16309
16150
|
* Expands all rows.
|
|
16310
16151
|
* @param treeId The QdTree's ID
|
|
@@ -16346,6 +16187,58 @@ declare class QdTreeHeadComponent<T extends string> implements OnInit {
|
|
|
16346
16187
|
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
16188
|
}
|
|
16348
16189
|
|
|
16190
|
+
/**
|
|
16191
|
+
* @description View model for table columns.
|
|
16192
|
+
* This type is only used internally to simplify the rendering in the template.
|
|
16193
|
+
*/
|
|
16194
|
+
type QdColumnsDetails<T extends string> = Array<QdColumnDetails<T> | QdGroupColumnDetails<T>>;
|
|
16195
|
+
/**
|
|
16196
|
+
* @description View model for a table column.
|
|
16197
|
+
*/
|
|
16198
|
+
type QdColumnDetails<T extends string> = {
|
|
16199
|
+
/**
|
|
16200
|
+
* @description Contains the index of the column.
|
|
16201
|
+
*/
|
|
16202
|
+
index: number;
|
|
16203
|
+
/**
|
|
16204
|
+
* @description Contains the type of the column that is set in the config.
|
|
16205
|
+
*/
|
|
16206
|
+
type: Omit<QdTableConfigColumnType['type'], 'group'>;
|
|
16207
|
+
/**
|
|
16208
|
+
* @description Indicates whether this column is the main column.
|
|
16209
|
+
*/
|
|
16210
|
+
isMainColumn: boolean;
|
|
16211
|
+
/**
|
|
16212
|
+
* @description Indicates whether this column is the last column.
|
|
16213
|
+
*/
|
|
16214
|
+
isLastColumn: boolean;
|
|
16215
|
+
/**
|
|
16216
|
+
* @description Contains the name of the column that is given in the config.
|
|
16217
|
+
*/
|
|
16218
|
+
column?: T;
|
|
16219
|
+
/**
|
|
16220
|
+
* @description Contains additional options for the column that are set in the config.
|
|
16221
|
+
*/
|
|
16222
|
+
options?: any;
|
|
16223
|
+
/**
|
|
16224
|
+
* @description Contains the composed translation key of the column.
|
|
16225
|
+
*/
|
|
16226
|
+
i18n?: string;
|
|
16227
|
+
};
|
|
16228
|
+
/**
|
|
16229
|
+
* @description View model for the group column.
|
|
16230
|
+
*/
|
|
16231
|
+
type QdGroupColumnDetails<T extends string> = QdColumnDetails<T> & {
|
|
16232
|
+
/**
|
|
16233
|
+
* @description The column type of the group column is 'group'.
|
|
16234
|
+
*/
|
|
16235
|
+
type: 'group';
|
|
16236
|
+
/**
|
|
16237
|
+
* @description Contains the originally defined columns that are grouped in this column.
|
|
16238
|
+
*/
|
|
16239
|
+
groupedColumns: QdColumnDetails<T>[];
|
|
16240
|
+
};
|
|
16241
|
+
|
|
16349
16242
|
declare class QdTreeBodyComponent<T extends string> implements OnInit, OnChanges {
|
|
16350
16243
|
private groupService;
|
|
16351
16244
|
private treeRowsService;
|
|
@@ -17578,69 +17471,6 @@ declare class QdCommentsComponent {
|
|
|
17578
17471
|
static ɵcmp: i0.ɵɵComponentDeclaration<QdCommentsComponent, "qd-comments", never, { "config": { "alias": "config"; "required": true; }; "comments": { "alias": "comments"; "required": false; }; }, {}, never, never, false, never>;
|
|
17579
17472
|
}
|
|
17580
17473
|
|
|
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
17474
|
/**
|
|
17645
17475
|
* **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
17476
|
*
|
|
@@ -17708,8 +17538,9 @@ declare class QdShellComponent implements OnInit, AfterViewInit, OnDestroy {
|
|
|
17708
17538
|
/**
|
|
17709
17539
|
* TODO: Remove in v17! The comments will be integrated in the QdPage.
|
|
17710
17540
|
*/
|
|
17711
|
-
shellHeaderComponent
|
|
17541
|
+
private shellHeaderComponent;
|
|
17712
17542
|
commentsComponent: QueryList<QdCommentsComponent>;
|
|
17543
|
+
protected get isCommentsDisplayed(): boolean;
|
|
17713
17544
|
hasNavigation$: Observable<boolean>;
|
|
17714
17545
|
isNavigationPinned$: Observable<boolean>;
|
|
17715
17546
|
isNavigationRolledOver$: Observable<boolean>;
|
|
@@ -17768,6 +17599,69 @@ declare class QdShellHeaderBannerComponent {
|
|
|
17768
17599
|
static ɵcmp: i0.ɵɵComponentDeclaration<QdShellHeaderBannerComponent, "qd-shell-header-banner", never, {}, {}, never, never, false, never>;
|
|
17769
17600
|
}
|
|
17770
17601
|
|
|
17602
|
+
declare class QdShellHeaderComponent implements OnInit, OnDestroy {
|
|
17603
|
+
private navigationService;
|
|
17604
|
+
private shellHeaderMinimizationService;
|
|
17605
|
+
private shellLeftService;
|
|
17606
|
+
private shellRightService;
|
|
17607
|
+
private breakpointService;
|
|
17608
|
+
/**
|
|
17609
|
+
* @description The configuration of the shell.
|
|
17610
|
+
*/
|
|
17611
|
+
config: QdShellConfig;
|
|
17612
|
+
/**
|
|
17613
|
+
* @description Indicates whether the header was displayed wide or narrow.
|
|
17614
|
+
*/
|
|
17615
|
+
isMinimized: boolean;
|
|
17616
|
+
/**
|
|
17617
|
+
* @description Indicates whether the comments are used.
|
|
17618
|
+
* TODO: Remove in v17!
|
|
17619
|
+
*
|
|
17620
|
+
* * @deprecated This property is deprecated and will be removed in v17. The comments will then be integrated via the QdPage.
|
|
17621
|
+
*/
|
|
17622
|
+
isCommentsUsed: boolean;
|
|
17623
|
+
/**
|
|
17624
|
+
* @description Indicates whether comments are available.
|
|
17625
|
+
* TODO: Remove in v17!
|
|
17626
|
+
*
|
|
17627
|
+
* * @deprecated This property is deprecated and will be removed in v17. The comments will be integrated in the QdPage.
|
|
17628
|
+
*/
|
|
17629
|
+
hasComments: boolean;
|
|
17630
|
+
menuIconChange: EventEmitter<boolean>;
|
|
17631
|
+
get minimized(): boolean;
|
|
17632
|
+
get sticky(): boolean;
|
|
17633
|
+
get expanded(): boolean;
|
|
17634
|
+
backLinkDisplayed$: Observable<boolean>;
|
|
17635
|
+
logoIconDisplayed$: Observable<boolean>;
|
|
17636
|
+
hasNavigation$: Observable<boolean>;
|
|
17637
|
+
isNavigationPinned$: Observable<boolean>;
|
|
17638
|
+
hasNotificationsToggle$: Observable<boolean>;
|
|
17639
|
+
hasNotifications$: Observable<boolean>;
|
|
17640
|
+
isCommentsOpened$: Observable<boolean>;
|
|
17641
|
+
isNotificationsOpened$: Observable<boolean>;
|
|
17642
|
+
isCommentsDisplayed: boolean;
|
|
17643
|
+
isServiceNavigationOpened: boolean;
|
|
17644
|
+
private _previousHref;
|
|
17645
|
+
private _routeParams;
|
|
17646
|
+
private _routeParamsSubscription;
|
|
17647
|
+
private _breakpointSubscription;
|
|
17648
|
+
constructor();
|
|
17649
|
+
handleBackClick(): void;
|
|
17650
|
+
private insertRouteParams;
|
|
17651
|
+
togglePinnedNavigation(): void;
|
|
17652
|
+
toggleNotifications(): void;
|
|
17653
|
+
toggleComments(): void;
|
|
17654
|
+
toggleServiceNavigation(): void;
|
|
17655
|
+
ngOnInit(): void;
|
|
17656
|
+
ngOnDestroy(): void;
|
|
17657
|
+
isPlainTitle(title: QdShellConfig['title']): boolean;
|
|
17658
|
+
extractI18nTitle(title: QdShellConfig['title']): string;
|
|
17659
|
+
private validateTitle;
|
|
17660
|
+
protected readonly async: rxjs_internal_scheduler_AsyncScheduler.AsyncScheduler;
|
|
17661
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<QdShellHeaderComponent, never>;
|
|
17662
|
+
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>;
|
|
17663
|
+
}
|
|
17664
|
+
|
|
17771
17665
|
declare class QdShellHeaderSearchComponent {
|
|
17772
17666
|
private _config;
|
|
17773
17667
|
get config(): object;
|
|
@@ -18434,27 +18328,6 @@ interface QdQuickEditSecondaryAction<T extends string> {
|
|
|
18434
18328
|
operationMode?: 'edit' | 'view';
|
|
18435
18329
|
}
|
|
18436
18330
|
|
|
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
18331
|
/**
|
|
18459
18332
|
* The **QdQuickEditComponent** is a dynamic tool that enables users to swiftly edit data without the need for traditional forms.
|
|
18460
18333
|
* It is specifically designed for inline editing, providing a more seamless and efficient user experience.
|
|
@@ -18547,7 +18420,7 @@ declare class QdCustomForDirective implements OnChanges, OnInit {
|
|
|
18547
18420
|
*/
|
|
18548
18421
|
declare class QdQuickEditComponent<T extends string> implements OnInit, OnChanges, OnDestroy {
|
|
18549
18422
|
private fb;
|
|
18550
|
-
readonly footerService
|
|
18423
|
+
private readonly footerService;
|
|
18551
18424
|
readonly pageService: QdPageStoreService<any>;
|
|
18552
18425
|
private readonly sectionActionService;
|
|
18553
18426
|
private readonly eventBrokerService;
|
|
@@ -18603,8 +18476,8 @@ declare class QdQuickEditComponent<T extends string> implements OnInit, OnChange
|
|
|
18603
18476
|
*/
|
|
18604
18477
|
formGroupChange: EventEmitter<any>;
|
|
18605
18478
|
addNewClicked: EventEmitter<void>;
|
|
18606
|
-
focusables
|
|
18607
|
-
customForDirective
|
|
18479
|
+
private focusables;
|
|
18480
|
+
private customForDirective;
|
|
18608
18481
|
quickEditFormGroup: FormGroup;
|
|
18609
18482
|
viewonly$: Observable<boolean>;
|
|
18610
18483
|
actions$: Observable<QdQuickEditSecondaryAction<T>[]>;
|
|
@@ -18643,6 +18516,27 @@ declare class QdQuickEditComponent<T extends string> implements OnInit, OnChange
|
|
|
18643
18516
|
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
18517
|
}
|
|
18645
18518
|
|
|
18519
|
+
declare class QdCustomForDirective implements OnChanges, OnInit {
|
|
18520
|
+
private templateRef;
|
|
18521
|
+
private viewContainer;
|
|
18522
|
+
qdCustomForOf: unknown[];
|
|
18523
|
+
qdCustomForToggler: boolean;
|
|
18524
|
+
private isRendered;
|
|
18525
|
+
ngOnInit(): void;
|
|
18526
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
18527
|
+
renderItems(): void;
|
|
18528
|
+
resetRendering(): void;
|
|
18529
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<QdCustomForDirective, never>;
|
|
18530
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<QdCustomForDirective, "[qdCustomFor]", never, { "qdCustomForOf": { "alias": "qdCustomForOf"; "required": false; }; "qdCustomForToggler": { "alias": "qdCustomForToggler"; "required": false; }; }, {}, never, never, false, never>;
|
|
18531
|
+
}
|
|
18532
|
+
|
|
18533
|
+
declare class QdFocusableDirective {
|
|
18534
|
+
private focusable;
|
|
18535
|
+
focus(): void;
|
|
18536
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<QdFocusableDirective, never>;
|
|
18537
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<QdFocusableDirective, "[qdFocusable]", never, {}, {}, never, never, false, never>;
|
|
18538
|
+
}
|
|
18539
|
+
|
|
18646
18540
|
declare class QdFocusableModule {
|
|
18647
18541
|
static ɵfac: i0.ɵɵFactoryDeclaration<QdFocusableModule, never>;
|
|
18648
18542
|
static ɵmod: i0.ɵɵNgModuleDeclaration<QdFocusableModule, [typeof QdFocusableDirective], never, [typeof QdFocusableDirective]>;
|
|
@@ -18665,4 +18559,4 @@ declare class QdUiModule {
|
|
|
18665
18559
|
declare const APP_ENVIRONMENT: InjectionToken<QdAppEnvironment>;
|
|
18666
18560
|
|
|
18667
18561
|
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 };
|
|
18562
|
+
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 };
|