@quadrel-enterprise-ui/framework 20.10.1 → 20.11.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.d.ts CHANGED
@@ -3,13 +3,13 @@ import { Observable, BehaviorSubject, Subject, Subscription, ReplaySubject } fro
3
3
  import * as i11 from '@angular/cdk/dialog';
4
4
  import { DialogConfig, DialogRef } from '@angular/cdk/dialog';
5
5
  import * as i0 from '@angular/core';
6
- import { InjectionToken, EventEmitter, OnInit, PipeTransform, TemplateRef, AfterContentInit, AfterViewInit, OnDestroy, OnChanges, AfterViewChecked, SimpleChanges, AfterContentChecked, Injector, ElementRef, QueryList, NgIterable, ViewContainerRef, Type, DestroyRef, ModuleWithProviders } from '@angular/core';
6
+ import { InjectionToken, EventEmitter, OnInit, PipeTransform, TemplateRef, AfterContentInit, AfterViewInit, OnDestroy, OnChanges, AfterViewChecked, SimpleChanges, AfterContentChecked, Injector, ElementRef, QueryList, NgIterable, ViewContainerRef, TrackByFunction, Type, DestroyRef, ModuleWithProviders } from '@angular/core';
7
7
  import { HttpInterceptor, HttpRequest, HttpHandler, HttpEvent } from '@angular/common/http';
8
8
  import * as i2 from '@angular/common';
9
9
  import { Moment } from 'moment/moment';
10
10
  import * as i31 from '@angular/forms';
11
11
  import { AbstractControl, UntypedFormGroup, ControlValueAccessor, UntypedFormControl, ValidationErrors, FormControlOptions, AsyncValidatorFn, ValidatorFn, UntypedFormArray, AbstractControlOptions, ɵTypedOrUntyped as _TypedOrUntyped, UntypedFormBuilder, FormGroup, FormArray } from '@angular/forms';
12
- import * as i5 from '@ngx-translate/core';
12
+ import * as i9 from '@ngx-translate/core';
13
13
  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';
@@ -18,7 +18,7 @@ import * as i39 from 'ngx-editor';
18
18
  import { Editor, Toolbar } from 'ngx-editor';
19
19
  import { Moment as Moment$1 } from 'moment';
20
20
  import * as i25 from '@ngrx/store';
21
- import * as i5$1 from '@angular/cdk/stepper';
21
+ import * as i5 from '@angular/cdk/stepper';
22
22
  import { CdkStep, CdkStepper, StepState, CdkStepHeader } from '@angular/cdk/stepper';
23
23
  import * as rxjs_internal_scheduler_AsyncScheduler from 'rxjs/internal/scheduler/AsyncScheduler';
24
24
  import * as i19 from '@angular/cdk/drag-drop';
@@ -1225,6 +1225,13 @@ interface QdTooltip {
1225
1225
  hidden?: boolean;
1226
1226
  }
1227
1227
 
1228
+ declare class QdTooltipIconComponent {
1229
+ tooltip?: QdTooltip;
1230
+ get isVisible(): boolean;
1231
+ static ɵfac: i0.ɵɵFactoryDeclaration<QdTooltipIconComponent, never>;
1232
+ static ɵcmp: i0.ɵɵComponentDeclaration<QdTooltipIconComponent, "qd-tooltip-icon", never, { "tooltip": { "alias": "tooltip"; "required": false; }; }, {}, never, never, false, never>;
1233
+ }
1234
+
1228
1235
  declare const QD_SAFE_BOTTOM_OFFSET: InjectionToken<BehaviorSubject<number>>;
1229
1236
 
1230
1237
  declare const QD_POPOVER_TOP_FIRST: InjectionToken<boolean>;
@@ -1539,6 +1546,16 @@ type QdTableSelectedRows<T extends string> = QdTableSelectedRow<T>[];
1539
1546
  * @description Model for a selected row in a selection event.
1540
1547
  */
1541
1548
  type QdTableSelectedRow<T extends string> = QdTableDataRow<T> & {
1549
+ /**
1550
+ * Position of the row at the most recent moment it was visible. Refreshed for every row that
1551
+ * appears on the current page, so visible rows reflect their actual position; rows that have
1552
+ * left the current page keep the position from the last time they were seen.
1553
+ *
1554
+ * @deprecated Use the row's unique identifier (`uid` or the result of `trackRowBy`) for
1555
+ * row identification. After DAZUIC-4025 the selection output emits rows across all pages,
1556
+ * so for rows that are no longer on the current page this value can be out-of-sync with
1557
+ * their actual position. It will be removed in a future major release.
1558
+ */
1542
1559
  index: number;
1543
1560
  };
1544
1561
 
@@ -1691,6 +1708,11 @@ interface QdTableConfigSelection<T extends string> {
1691
1708
  * @description Configure the rows that are initially selected.
1692
1709
  * Rows can be identified by the `trackRowBy` function result, `uid`, or index.
1693
1710
  *
1711
+ * Note: pre-selected ids that point to rows on a non-visible page are present in the
1712
+ * paginator selection count but are not yet emitted by `selectedRowsOutput` (the row data
1713
+ * snapshot is built lazily from the visible rows). Each id will start emitting once its
1714
+ * row becomes visible at least once.
1715
+ *
1694
1716
  * * @default: []
1695
1717
  */
1696
1718
  selectedRows?: QdTableRowIdentifier[];
@@ -1704,6 +1726,24 @@ interface QdTableConfigSelection<T extends string> {
1704
1726
  * @description Defines a handler that is triggered by a selection.
1705
1727
  */
1706
1728
  handler?: (selectedRows: QdTableSelectedRows<T>) => void;
1729
+ /**
1730
+ * @description Observable that clears the entire selection across all pages when it emits.
1731
+ *
1732
+ * Typically used to reset the selection after a bulk action (delete, approve, archive) finishes.
1733
+ * Follows the same pattern as {@link QdTableConfig.refresh}: the consumer owns the observable
1734
+ * and emits whenever the selection should be dropped; the table subscribes and dispatches a
1735
+ * single internal clear action.
1736
+ *
1737
+ * Example:
1738
+ * ```typescript
1739
+ * readonly deselectAll$ = new Subject<void>();
1740
+ *
1741
+ * onBulkDelete(): void {
1742
+ * this.api.delete(...).subscribe(() => this.deselectAll$.next());
1743
+ * }
1744
+ * ```
1745
+ */
1746
+ deselectAll$?: Observable<void>;
1707
1747
  }
1708
1748
  /**
1709
1749
  * @description Defines the selection type for the table. For 'singleSelect' radio buttons will be displayed and for
@@ -2149,7 +2189,7 @@ type QdDataFacetsType = 'blank' | 'boolean' | 'chip' | 'currency' | 'date' | 'ic
2149
2189
 
2150
2190
  declare class QdDataFacetsModule {
2151
2191
  static ɵfac: i0.ɵɵFactoryDeclaration<QdDataFacetsModule, never>;
2152
- static ɵmod: i0.ɵɵNgModuleDeclaration<QdDataFacetsModule, [typeof QdDataFacetsBlankComponent, typeof QdDataFacetsBooleanComponent, typeof QdDataFacetsChipComponent, typeof QdDataFacetsCurrencyComponent, typeof QdDataFacetsDateComponent, typeof QdDataFacetsIconComponent, typeof QdDataFacetsIntegerComponent, typeof QdDataFacetsLinkComponent, typeof QdDataFacetsProgressComponent, typeof QdDataFacetsStatusComponent, typeof QdDataFacetsTextComponent, typeof QdDataFacetsChipTruncatedTooltipComponent, typeof QdDataFacetsChipTruncatedIndicatorComponent], [typeof i2.CommonModule, typeof i5.TranslateModule, typeof QdIconModule, typeof QdChipModule, typeof QdStatusIndicatorModule], never>;
2192
+ static ɵmod: i0.ɵɵNgModuleDeclaration<QdDataFacetsModule, [typeof QdDataFacetsBlankComponent, typeof QdDataFacetsBooleanComponent, typeof QdDataFacetsChipComponent, typeof QdDataFacetsCurrencyComponent, typeof QdDataFacetsDateComponent, typeof QdDataFacetsIconComponent, typeof QdDataFacetsIntegerComponent, typeof QdDataFacetsLinkComponent, typeof QdDataFacetsProgressComponent, typeof QdDataFacetsStatusComponent, typeof QdDataFacetsTextComponent, typeof QdDataFacetsChipTruncatedTooltipComponent, typeof QdDataFacetsChipTruncatedIndicatorComponent], [typeof i2.CommonModule, typeof i9.TranslateModule, typeof QdIconModule, typeof QdChipModule, typeof QdStatusIndicatorModule], never>;
2153
2193
  static ɵinj: i0.ɵɵInjectorDeclaration<QdDataFacetsModule>;
2154
2194
  }
2155
2195
 
@@ -2309,13 +2349,13 @@ declare class QdPlaceholdersPipe implements PipeTransform {
2309
2349
 
2310
2350
  declare class QdBreadcrumbsModule {
2311
2351
  static ɵfac: i0.ɵɵFactoryDeclaration<QdBreadcrumbsModule, never>;
2312
- static ɵmod: i0.ɵɵNgModuleDeclaration<QdBreadcrumbsModule, [typeof QdBreadcrumbsComponent, typeof QdPlaceholdersPipe], [typeof i2.CommonModule, typeof i4.RouterModule, typeof i5.TranslateModule], [typeof QdBreadcrumbsComponent]>;
2352
+ static ɵmod: i0.ɵɵNgModuleDeclaration<QdBreadcrumbsModule, [typeof QdBreadcrumbsComponent, typeof QdPlaceholdersPipe], [typeof i2.CommonModule, typeof i4.RouterModule, typeof i9.TranslateModule], [typeof QdBreadcrumbsComponent]>;
2313
2353
  static ɵinj: i0.ɵɵInjectorDeclaration<QdBreadcrumbsModule>;
2314
2354
  }
2315
2355
 
2316
2356
  declare class QdCoreModule {
2317
2357
  static ɵfac: i0.ɵɵFactoryDeclaration<QdCoreModule, never>;
2318
- static ɵmod: i0.ɵɵNgModuleDeclaration<QdCoreModule, [typeof QdDisabledDirective, typeof QdFileSizePipe$1, typeof QdPlaceholderPipe, typeof QdProjectionGuardComponent, typeof QdRwdDisabledDirective, typeof QdVisuallyHiddenDirective, typeof QdViewportAdaptiveDirective], [typeof i2.CommonModule, typeof i5.TranslateModule, typeof QdDataFacetsModule, typeof QdBreadcrumbsModule], [typeof QdDisabledDirective, typeof QdFileSizePipe$1, typeof QdPlaceholderPipe, typeof QdProjectionGuardComponent, typeof QdRwdDisabledDirective, typeof QdVisuallyHiddenDirective, typeof QdViewportAdaptiveDirective]>;
2358
+ static ɵmod: i0.ɵɵNgModuleDeclaration<QdCoreModule, [typeof QdDisabledDirective, typeof QdFileSizePipe$1, typeof QdPlaceholderPipe, typeof QdProjectionGuardComponent, typeof QdRwdDisabledDirective, typeof QdVisuallyHiddenDirective, typeof QdViewportAdaptiveDirective], [typeof i2.CommonModule, typeof i9.TranslateModule, typeof QdDataFacetsModule, typeof QdBreadcrumbsModule], [typeof QdDisabledDirective, typeof QdFileSizePipe$1, typeof QdPlaceholderPipe, typeof QdProjectionGuardComponent, typeof QdRwdDisabledDirective, typeof QdVisuallyHiddenDirective, typeof QdViewportAdaptiveDirective]>;
2319
2359
  static ɵinj: i0.ɵɵInjectorDeclaration<QdCoreModule>;
2320
2360
  }
2321
2361
 
@@ -4097,6 +4137,10 @@ interface QdTableConfigColumnBase<T> {
4097
4137
  * @description Defines the breakpoint at which the column is hidden. Use for mobile devices.
4098
4138
  */
4099
4139
  hiddenAt?: QdBreakpoint;
4140
+ /**
4141
+ * @description Tooltip configuration for the column header.
4142
+ */
4143
+ tooltip?: QdTooltip;
4100
4144
  }
4101
4145
  /**
4102
4146
  * @description Configuration for sorting
@@ -8091,7 +8135,6 @@ declare class QdFormLabelComponent {
8091
8135
  testId: string;
8092
8136
  get isRequired(): boolean;
8093
8137
  get isIndicatorVisible(): boolean;
8094
- get isTooltipVisible(): boolean | undefined;
8095
8138
  static ɵfac: i0.ɵɵFactoryDeclaration<QdFormLabelComponent, never>;
8096
8139
  static ɵcmp: i0.ɵɵComponentDeclaration<QdFormLabelComponent, "qd-form-label", never, { "label": { "alias": "label"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "viewonly": { "alias": "viewonly"; "required": false; }; "control": { "alias": "control"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "testId": { "alias": "data-test-id"; "required": false; }; }, {}, never, never, false, never>;
8097
8140
  }
@@ -8293,25 +8336,25 @@ declare class QdTooltipOnClickDirective implements OnDestroy {
8293
8336
 
8294
8337
  declare class QdTooltipModule {
8295
8338
  static ɵfac: i0.ɵɵFactoryDeclaration<QdTooltipModule, never>;
8296
- static ɵmod: i0.ɵɵNgModuleDeclaration<QdTooltipModule, [typeof QdTooltipComponent, typeof QdTooltipOnClickDirective, typeof QdTooltipAtIntersectionDirective], [typeof i2.CommonModule, typeof i5.TranslateModule], [typeof QdTooltipOnClickDirective, typeof QdTooltipAtIntersectionDirective]>;
8339
+ static ɵmod: i0.ɵɵNgModuleDeclaration<QdTooltipModule, [typeof QdTooltipComponent, typeof QdTooltipOnClickDirective, typeof QdTooltipAtIntersectionDirective, typeof QdTooltipIconComponent], [typeof i2.CommonModule, typeof i9.TranslateModule, typeof QdIconModule], [typeof QdTooltipOnClickDirective, typeof QdTooltipAtIntersectionDirective, typeof QdTooltipIconComponent]>;
8297
8340
  static ɵinj: i0.ɵɵInjectorDeclaration<QdTooltipModule>;
8298
8341
  }
8299
8342
 
8300
8343
  declare class QdFormModule {
8301
8344
  static ɵfac: i0.ɵɵFactoryDeclaration<QdFormModule, never>;
8302
- static ɵmod: i0.ɵɵNgModuleDeclaration<QdFormModule, [typeof QdCalendarComponent, typeof QdCheckboxChipsComponent, typeof QdCheckboxChipsItemComponent, typeof QdCheckboxComponent, typeof QdCheckboxesComponent, typeof QdDatepickerComponent, typeof QdDropdownComponent, typeof QdDropdownOptionsComponent, typeof QdFilterFormItemsComponent, typeof QdFormErrorComponent, typeof QdFormHintComponent, typeof QdFormLabelComponent, typeof QdFormReadonlyComponent, typeof QdFormViewonlyComponent, typeof QdInputComponent, typeof QdInputUnitsComponent, typeof QdInputOptionsDirective, typeof QdInputOptionsComponent, typeof QdMultiInputChipComponent, typeof QdMultiInputMenuComponent, typeof QdMultiInputComponent, typeof QdPinCodeComponent, typeof QdRadioButtonsComponent, typeof QdSwitchComponent, typeof QdSwitchesComponent, typeof QdTextareaComponent, typeof QdFormInputComponent, typeof QdRichtextComponent, typeof QdFileUploadComponent], [typeof i2.CommonModule, typeof i31.FormsModule, typeof i31.ReactiveFormsModule, typeof i5.TranslateModule, typeof QdAutofocusModule, typeof QdChipModule, typeof QdCoreModule, typeof QdIconModule, typeof QdPopoverModule, typeof QdTooltipModule, typeof i39.NgxEditorModule], [typeof QdCheckboxChipsComponent, typeof QdCheckboxComponent, typeof QdCheckboxesComponent, typeof QdDatepickerComponent, typeof QdDropdownComponent, typeof QdFilterFormItemsComponent, typeof QdInputComponent, typeof QdMultiInputComponent, typeof QdPinCodeComponent, typeof QdRadioButtonsComponent, typeof QdSwitchComponent, typeof QdSwitchesComponent, typeof QdTextareaComponent, typeof QdRichtextComponent, typeof QdFileUploadComponent]>;
8345
+ static ɵmod: i0.ɵɵNgModuleDeclaration<QdFormModule, [typeof QdCalendarComponent, typeof QdCheckboxChipsComponent, typeof QdCheckboxChipsItemComponent, typeof QdCheckboxComponent, typeof QdCheckboxesComponent, typeof QdDatepickerComponent, typeof QdDropdownComponent, typeof QdDropdownOptionsComponent, typeof QdFilterFormItemsComponent, typeof QdFormErrorComponent, typeof QdFormHintComponent, typeof QdFormLabelComponent, typeof QdFormReadonlyComponent, typeof QdFormViewonlyComponent, typeof QdInputComponent, typeof QdInputUnitsComponent, typeof QdInputOptionsDirective, typeof QdInputOptionsComponent, typeof QdMultiInputChipComponent, typeof QdMultiInputMenuComponent, typeof QdMultiInputComponent, typeof QdPinCodeComponent, typeof QdRadioButtonsComponent, typeof QdSwitchComponent, typeof QdSwitchesComponent, typeof QdTextareaComponent, typeof QdFormInputComponent, typeof QdRichtextComponent, typeof QdFileUploadComponent], [typeof i2.CommonModule, typeof i31.FormsModule, typeof i31.ReactiveFormsModule, typeof i9.TranslateModule, typeof QdAutofocusModule, typeof QdChipModule, typeof QdCoreModule, typeof QdIconModule, typeof QdPopoverModule, typeof QdTooltipModule, typeof i39.NgxEditorModule], [typeof QdCheckboxChipsComponent, typeof QdCheckboxComponent, typeof QdCheckboxesComponent, typeof QdDatepickerComponent, typeof QdDropdownComponent, typeof QdFilterFormItemsComponent, typeof QdInputComponent, typeof QdMultiInputComponent, typeof QdPinCodeComponent, typeof QdRadioButtonsComponent, typeof QdSwitchComponent, typeof QdSwitchesComponent, typeof QdTextareaComponent, typeof QdRichtextComponent, typeof QdFileUploadComponent]>;
8303
8346
  static ɵinj: i0.ɵɵInjectorDeclaration<QdFormModule>;
8304
8347
  }
8305
8348
 
8306
8349
  declare class QdNotificationsModule {
8307
8350
  static ɵfac: i0.ɵɵFactoryDeclaration<QdNotificationsModule, never>;
8308
- static ɵmod: i0.ɵɵNgModuleDeclaration<QdNotificationsModule, [typeof QdNotificationComponent, typeof QdNotificationContentComponent, typeof QdNotificationsComponent, typeof QdNotificationsSnackbarComponent, typeof QdNotificationsSnackbarListenerDirective], [typeof i2.CommonModule, typeof QdFormModule, typeof QdIconModule, typeof i5.TranslateModule], [typeof QdNotificationComponent, typeof QdNotificationContentComponent, typeof QdNotificationsComponent, typeof QdNotificationsSnackbarListenerDirective]>;
8351
+ static ɵmod: i0.ɵɵNgModuleDeclaration<QdNotificationsModule, [typeof QdNotificationComponent, typeof QdNotificationContentComponent, typeof QdNotificationsComponent, typeof QdNotificationsSnackbarComponent, typeof QdNotificationsSnackbarListenerDirective], [typeof i2.CommonModule, typeof QdFormModule, typeof QdIconModule, typeof i9.TranslateModule], [typeof QdNotificationComponent, typeof QdNotificationContentComponent, typeof QdNotificationsComponent, typeof QdNotificationsSnackbarListenerDirective]>;
8309
8352
  static ɵinj: i0.ɵɵInjectorDeclaration<QdNotificationsModule>;
8310
8353
  }
8311
8354
 
8312
8355
  declare class QdButtonModule {
8313
8356
  static ɵfac: i0.ɵɵFactoryDeclaration<QdButtonModule, never>;
8314
- static ɵmod: i0.ɵɵNgModuleDeclaration<QdButtonModule, [typeof QdButtonComponent, typeof QdButtonGhostDirective, typeof QdButtonGridComponent, typeof QdButtonLinkDirective, typeof QdButtonStackButtonComponent, typeof QdButtonStackComponent, typeof QdIconButtonComponent, typeof QdMenuButtonComponent, typeof QdButtonAdditionalInfoComponent, typeof QdSanitizeHtmlPipe], [typeof i2.CommonModule, typeof i5.TranslateModule, typeof QdIconModule, typeof QdTextSectionModule, typeof QdPopoverModule, typeof QdCoreModule, typeof QdNotificationsModule], [typeof QdButtonComponent, typeof QdButtonGhostDirective, typeof QdButtonGridComponent, typeof QdButtonLinkDirective, typeof QdButtonStackButtonComponent, typeof QdButtonStackComponent, typeof QdIconButtonComponent, typeof QdMenuButtonComponent]>;
8357
+ static ɵmod: i0.ɵɵNgModuleDeclaration<QdButtonModule, [typeof QdButtonComponent, typeof QdButtonGhostDirective, typeof QdButtonGridComponent, typeof QdButtonLinkDirective, typeof QdButtonStackButtonComponent, typeof QdButtonStackComponent, typeof QdIconButtonComponent, typeof QdMenuButtonComponent, typeof QdButtonAdditionalInfoComponent, typeof QdSanitizeHtmlPipe], [typeof i2.CommonModule, typeof i9.TranslateModule, typeof QdIconModule, typeof QdTextSectionModule, typeof QdPopoverModule, typeof QdCoreModule, typeof QdNotificationsModule], [typeof QdButtonComponent, typeof QdButtonGhostDirective, typeof QdButtonGridComponent, typeof QdButtonLinkDirective, typeof QdButtonStackButtonComponent, typeof QdButtonStackComponent, typeof QdIconButtonComponent, typeof QdMenuButtonComponent]>;
8315
8358
  static ɵinj: i0.ɵɵInjectorDeclaration<QdButtonModule>;
8316
8359
  }
8317
8360
 
@@ -8769,7 +8812,7 @@ declare class QdColumnDisableResponsiveColspansDirective implements OnInit, Afte
8769
8812
 
8770
8813
  declare class QdGridModule {
8771
8814
  static ɵfac: i0.ɵɵFactoryDeclaration<QdGridModule, never>;
8772
- static ɵmod: i0.ɵɵNgModuleDeclaration<QdGridModule, [typeof QdGridComponent, typeof QdSubgridComponent, typeof QdColumnsMaxDirective, typeof QdColumnsDisableAutoFillDirective, typeof QdColumnsDisableResponsiveColspansDirective, typeof QdColumnBreakBeforeDirective, typeof QdColumnNextInSameRowDirective, typeof QdColumnFullGridWidthDirective, typeof QdColumnAutoFillDirective, typeof QdColumnDisableResponsiveColspansDirective], [typeof i2.CommonModule, typeof QdColumnsDirective, typeof QdColumnDirective, typeof i5.TranslateModule], [typeof QdGridComponent, typeof QdSubgridComponent, typeof QdColumnDirective, typeof QdColumnsDirective, typeof QdColumnsMaxDirective, typeof QdColumnsDisableAutoFillDirective, typeof QdColumnsDisableResponsiveColspansDirective, typeof QdColumnBreakBeforeDirective, typeof QdColumnNextInSameRowDirective, typeof QdColumnFullGridWidthDirective, typeof QdColumnAutoFillDirective, typeof QdColumnDisableResponsiveColspansDirective]>;
8815
+ static ɵmod: i0.ɵɵNgModuleDeclaration<QdGridModule, [typeof QdGridComponent, typeof QdSubgridComponent, typeof QdColumnsMaxDirective, typeof QdColumnsDisableAutoFillDirective, typeof QdColumnsDisableResponsiveColspansDirective, typeof QdColumnBreakBeforeDirective, typeof QdColumnNextInSameRowDirective, typeof QdColumnFullGridWidthDirective, typeof QdColumnAutoFillDirective, typeof QdColumnDisableResponsiveColspansDirective], [typeof i2.CommonModule, typeof QdColumnsDirective, typeof QdColumnDirective, typeof i9.TranslateModule], [typeof QdGridComponent, typeof QdSubgridComponent, typeof QdColumnDirective, typeof QdColumnsDirective, typeof QdColumnsMaxDirective, typeof QdColumnsDisableAutoFillDirective, typeof QdColumnsDisableResponsiveColspansDirective, typeof QdColumnBreakBeforeDirective, typeof QdColumnNextInSameRowDirective, typeof QdColumnFullGridWidthDirective, typeof QdColumnAutoFillDirective, typeof QdColumnDisableResponsiveColspansDirective]>;
8773
8816
  static ɵinj: i0.ɵɵInjectorDeclaration<QdGridModule>;
8774
8817
  }
8775
8818
 
@@ -9051,6 +9094,33 @@ interface QdPageConfigInspect<T extends object = object> extends QdPageConfigBas
9051
9094
  * @description Information placed in the header of the page. Concerns current shown object.
9052
9095
  */
9053
9096
  headerFacets?: QdPageHeaderFacetConfig<T>[];
9097
+ /**
9098
+ * @description Observable to push partial metadata updates for header facets from outside.
9099
+ * Each emission is shallow-merged into the current object data, so only the fields that
9100
+ * changed need to be emitted. Stream-pushed fields survive subsequent resolver re-runs.
9101
+ *
9102
+ * Create the stream with `createMetadataStream<T>()` — the factory returns a
9103
+ * `ReplaySubject<Partial<T>>(1)` that buffers the latest emission so late subscribers
9104
+ * still receive it. The header subscribes during its own `ngOnInit`, so emissions fired
9105
+ * from the consuming component's `ngOnInit` would be lost without a replay buffer; dev
9106
+ * mode warns when `metadata$` is a plain `Subject`.
9107
+ *
9108
+ * @example
9109
+ * ```ts
9110
+ * private metadataUpdates$ = createMetadataStream<MyObject>();
9111
+ *
9112
+ * pageConfig: QdPageConfig<MyObject> = {
9113
+ * // ...
9114
+ * headerFacets: [...],
9115
+ * metadata$: this.metadataUpdates$
9116
+ * };
9117
+ *
9118
+ * onStatusChange() {
9119
+ * this.metadataUpdates$.next({ status: 'approved' });
9120
+ * }
9121
+ * ```
9122
+ */
9123
+ metadata$?: Observable<Partial<T>>;
9054
9124
  /**
9055
9125
  * @description Determines whether the facets in header should be collapsed and custom actions are in a menu. This mode is designed for touch devices and mobile phones only.
9056
9126
  *
@@ -9073,6 +9143,33 @@ interface QdPageConfigCustom<T extends object = object> extends QdPageConfigBase
9073
9143
  * @description Information placed in the header of the page. Concerns current shown object.
9074
9144
  */
9075
9145
  headerFacets?: QdPageHeaderFacetConfig<T>[];
9146
+ /**
9147
+ * @description Observable to push partial metadata updates for header facets from outside.
9148
+ * Each emission is shallow-merged into the current object data, so only the fields that
9149
+ * changed need to be emitted. Stream-pushed fields survive subsequent resolver re-runs.
9150
+ *
9151
+ * Create the stream with `createMetadataStream<T>()` — the factory returns a
9152
+ * `ReplaySubject<Partial<T>>(1)` that buffers the latest emission so late subscribers
9153
+ * still receive it. The header subscribes during its own `ngOnInit`, so emissions fired
9154
+ * from the consuming component's `ngOnInit` would be lost without a replay buffer; dev
9155
+ * mode warns when `metadata$` is a plain `Subject`.
9156
+ *
9157
+ * @example
9158
+ * ```ts
9159
+ * private metadataUpdates$ = createMetadataStream<MyObject>();
9160
+ *
9161
+ * pageConfig: QdPageConfig<MyObject> = {
9162
+ * // ...
9163
+ * headerFacets: [...],
9164
+ * metadata$: this.metadataUpdates$
9165
+ * };
9166
+ *
9167
+ * onStatusChange() {
9168
+ * this.metadataUpdates$.next({ status: 'approved' });
9169
+ * }
9170
+ * ```
9171
+ */
9172
+ metadata$?: Observable<Partial<T>>;
9076
9173
  /**
9077
9174
  * @description Determines whether the facets in header should be collapsed and custom actions are in a menu. This mode is designed for touch devices and mobile phones only.
9078
9175
  *
@@ -9677,7 +9774,7 @@ declare class QdContactCardMenuComponent implements OnInit, OnDestroy {
9677
9774
 
9678
9775
  declare class QdContactCardModule {
9679
9776
  static ɵfac: i0.ɵɵFactoryDeclaration<QdContactCardModule, never>;
9680
- static ɵmod: i0.ɵɵNgModuleDeclaration<QdContactCardModule, [typeof QdContactCardComponent, typeof QdContactCardMenuComponent], [typeof i2.CommonModule, typeof QdCoreModule, typeof i5.TranslateModule, typeof QdIconModule, typeof QdButtonModule, typeof QdPopoverModule], [typeof QdContactCardComponent]>;
9777
+ static ɵmod: i0.ɵɵNgModuleDeclaration<QdContactCardModule, [typeof QdContactCardComponent, typeof QdContactCardMenuComponent], [typeof i2.CommonModule, typeof QdCoreModule, typeof i9.TranslateModule, typeof QdIconModule, typeof QdButtonModule, typeof QdPopoverModule], [typeof QdContactCardComponent]>;
9681
9778
  static ɵinj: i0.ɵɵInjectorDeclaration<QdContactCardModule>;
9682
9779
  }
9683
9780
 
@@ -10215,7 +10312,7 @@ declare class QdSpinnerModule {
10215
10312
 
10216
10313
  declare class QdDialogModule {
10217
10314
  static ɵfac: i0.ɵɵFactoryDeclaration<QdDialogModule, never>;
10218
- static ɵmod: i0.ɵɵNgModuleDeclaration<QdDialogModule, [typeof QdDialogActionComponent, typeof QdDialogAuthSessionEndComponent, typeof QdDialogComponent, typeof QdDialogConfirmationComponent, typeof QdDialogConfirmationErrorDirective, typeof QdDialogConfirmationInfoDirective, typeof QdDialogConfirmationSuccessDirective, typeof QdDialogRecordStepperComponent, typeof QdPageDialogWithBreadcrumbsComponent, typeof QdPendingChangesGuardDirective], [typeof i2.CommonModule, typeof i5.TranslateModule, typeof i4.RouterModule, typeof i11.DialogModule, typeof QdButtonModule, typeof QdFormModule, typeof QdIconModule, typeof QdNotificationsModule, typeof QdSpinnerModule, typeof QdTextSectionModule, typeof QdCoreModule, typeof QdBreadcrumbsModule], [typeof QdDialogActionComponent, typeof QdDialogAuthSessionEndComponent, typeof QdDialogComponent, typeof QdDialogConfirmationComponent, typeof QdDialogConfirmationErrorDirective, typeof QdDialogConfirmationSuccessDirective, typeof QdDialogRecordStepperComponent, typeof QdPendingChangesGuardDirective]>;
10315
+ static ɵmod: i0.ɵɵNgModuleDeclaration<QdDialogModule, [typeof QdDialogActionComponent, typeof QdDialogAuthSessionEndComponent, typeof QdDialogComponent, typeof QdDialogConfirmationComponent, typeof QdDialogConfirmationErrorDirective, typeof QdDialogConfirmationInfoDirective, typeof QdDialogConfirmationSuccessDirective, typeof QdDialogRecordStepperComponent, typeof QdPageDialogWithBreadcrumbsComponent, typeof QdPendingChangesGuardDirective], [typeof i2.CommonModule, typeof i9.TranslateModule, typeof i4.RouterModule, typeof i11.DialogModule, typeof QdButtonModule, typeof QdFormModule, typeof QdIconModule, typeof QdNotificationsModule, typeof QdSpinnerModule, typeof QdTextSectionModule, typeof QdCoreModule, typeof QdBreadcrumbsModule], [typeof QdDialogActionComponent, typeof QdDialogAuthSessionEndComponent, typeof QdDialogComponent, typeof QdDialogConfirmationComponent, typeof QdDialogConfirmationErrorDirective, typeof QdDialogConfirmationSuccessDirective, typeof QdDialogRecordStepperComponent, typeof QdPendingChangesGuardDirective]>;
10219
10316
  static ɵinj: i0.ɵɵInjectorDeclaration<QdDialogModule>;
10220
10317
  }
10221
10318
 
@@ -10689,7 +10786,7 @@ declare class QdProgressBarModule {
10689
10786
 
10690
10787
  declare class QdFileCollectorModule {
10691
10788
  static ɵfac: i0.ɵɵFactoryDeclaration<QdFileCollectorModule, never>;
10692
- static ɵmod: i0.ɵɵNgModuleDeclaration<QdFileCollectorModule, [typeof QdFileCollectorComponent, typeof QdFileCollectorAllowedFilesDescriptionComponent, typeof QdFileCollectorItemComponent, typeof QdFileCollectorItemNameComponent, typeof QdFileCollectorItemSizeComponent, typeof QdFileCollectorItemToolsComponent, typeof QdFileCollectorDialogComponent, typeof QdFileCollectorDialogItemComponent, typeof QdFileCollectorDialogItemProgressComponent, typeof QdFileCollectorDialogItemErrorComponent, typeof QdFileDeleteDialogComponent, typeof QdFileCollectorUploadTimestampComponent, typeof QdFileSizePipe, typeof QdUploadTimestampPipe], [typeof i2.CommonModule, typeof i5.TranslateModule, typeof QdButtonModule, typeof QdChipModule, typeof QdDialogModule, typeof QdButtonModule, typeof QdCoreModule, typeof QdIconModule, typeof QdProgressBarModule], [typeof QdFileCollectorComponent]>;
10789
+ static ɵmod: i0.ɵɵNgModuleDeclaration<QdFileCollectorModule, [typeof QdFileCollectorComponent, typeof QdFileCollectorAllowedFilesDescriptionComponent, typeof QdFileCollectorItemComponent, typeof QdFileCollectorItemNameComponent, typeof QdFileCollectorItemSizeComponent, typeof QdFileCollectorItemToolsComponent, typeof QdFileCollectorDialogComponent, typeof QdFileCollectorDialogItemComponent, typeof QdFileCollectorDialogItemProgressComponent, typeof QdFileCollectorDialogItemErrorComponent, typeof QdFileDeleteDialogComponent, typeof QdFileCollectorUploadTimestampComponent, typeof QdFileSizePipe, typeof QdUploadTimestampPipe], [typeof i2.CommonModule, typeof i9.TranslateModule, typeof QdButtonModule, typeof QdChipModule, typeof QdDialogModule, typeof QdButtonModule, typeof QdCoreModule, typeof QdIconModule, typeof QdProgressBarModule], [typeof QdFileCollectorComponent]>;
10693
10790
  static ɵinj: i0.ɵɵInjectorDeclaration<QdFileCollectorModule>;
10694
10791
  }
10695
10792
 
@@ -11186,7 +11283,7 @@ declare class QdFilterItemSingleSelectComponent implements OnInit, OnDestroy {
11186
11283
 
11187
11284
  declare class QdFilterModule {
11188
11285
  static ɵfac: i0.ɵɵFactoryDeclaration<QdFilterModule, never>;
11189
- static ɵmod: i0.ɵɵNgModuleDeclaration<QdFilterModule, [typeof LocaleDatePipe, typeof QdFilterComponent, typeof QdFilterCategoryComponent, typeof QdFilterCategoryBooleanComponent, typeof QdFilterItemBooleanComponent, typeof QdFilterItemDateCategoryComponent, typeof QdFilterItemDateComponent, typeof QdFilterItemDateRangeCategoryComponent, typeof QdFilterItemDateRangeComponent, typeof QdFilterItemFreeTextCategoryComponent, typeof QdFilterItemFreeTextComponent, typeof QdFilterItemSelectCategoryComponent, typeof QdFilterItemMultiSelectComponent, typeof QdFilterItemSingleSelectComponent], [typeof i2.CommonModule, typeof i31.FormsModule, typeof i5.TranslateModule, typeof QdButtonModule, typeof QdChipModule, typeof QdCoreModule, typeof QdFormModule, typeof QdIconModule, typeof QdPopoverModule, typeof QdTooltipModule, typeof i25.StoreFeatureModule], [typeof QdFilterComponent]>;
11286
+ static ɵmod: i0.ɵɵNgModuleDeclaration<QdFilterModule, [typeof LocaleDatePipe, typeof QdFilterComponent, typeof QdFilterCategoryComponent, typeof QdFilterCategoryBooleanComponent, typeof QdFilterItemBooleanComponent, typeof QdFilterItemDateCategoryComponent, typeof QdFilterItemDateComponent, typeof QdFilterItemDateRangeCategoryComponent, typeof QdFilterItemDateRangeComponent, typeof QdFilterItemFreeTextCategoryComponent, typeof QdFilterItemFreeTextComponent, typeof QdFilterItemSelectCategoryComponent, typeof QdFilterItemMultiSelectComponent, typeof QdFilterItemSingleSelectComponent], [typeof i2.CommonModule, typeof i31.FormsModule, typeof i9.TranslateModule, typeof QdButtonModule, typeof QdChipModule, typeof QdCoreModule, typeof QdFormModule, typeof QdIconModule, typeof QdPopoverModule, typeof QdTooltipModule, typeof i25.StoreFeatureModule], [typeof QdFilterComponent]>;
11190
11287
  static ɵinj: i0.ɵɵInjectorDeclaration<QdFilterModule>;
11191
11288
  }
11192
11289
 
@@ -11502,7 +11599,7 @@ declare class NavigationTileComponent implements OnInit {
11502
11599
 
11503
11600
  declare class QdNavigationTilesModule {
11504
11601
  static ɵfac: i0.ɵɵFactoryDeclaration<QdNavigationTilesModule, never>;
11505
- static ɵmod: i0.ɵɵNgModuleDeclaration<QdNavigationTilesModule, [typeof NavigationTilesComponent, typeof NavigationTileComponent], [typeof i2.CommonModule, typeof QdIconModule, typeof i5.TranslateModule], [typeof NavigationTilesComponent, typeof NavigationTileComponent]>;
11602
+ static ɵmod: i0.ɵɵNgModuleDeclaration<QdNavigationTilesModule, [typeof NavigationTilesComponent, typeof NavigationTileComponent], [typeof i2.CommonModule, typeof QdIconModule, typeof i9.TranslateModule], [typeof NavigationTilesComponent, typeof NavigationTileComponent]>;
11506
11603
  static ɵinj: i0.ɵɵInjectorDeclaration<QdNavigationTilesModule>;
11507
11604
  }
11508
11605
 
@@ -11752,6 +11849,38 @@ declare class QdPageInfoBannerComponent {
11752
11849
  static ɵcmp: i0.ɵɵComponentDeclaration<QdPageInfoBannerComponent, "qd-page-info-banner", never, { "config": { "alias": "config"; "required": true; }; }, {}, never, never, false, never>;
11753
11850
  }
11754
11851
 
11852
+ /**
11853
+ * @description Creates a replay-backed stream for pushing partial header-facet
11854
+ * updates into `QdPageConfig.metadata$`.
11855
+ *
11856
+ * The returned `ReplaySubject<Partial<T>>(1)` buffers the most recent emission
11857
+ * so late subscribers still receive the latest value. The page-header component
11858
+ * subscribes to `metadata$` inside its own `ngOnInit`, which runs AFTER the
11859
+ * consuming page component's `ngOnInit`. Consumers that emit synchronously
11860
+ * during their `ngOnInit` (e.g. from a `combineLatest` over already-populated
11861
+ * store selectors) would otherwise lose that first emission if `metadata$` were
11862
+ * a plain `Subject`.
11863
+ *
11864
+ * @example
11865
+ * ```ts
11866
+ * class MyPageComponent {
11867
+ * private metadataUpdates$ = createMetadataStream<MyObject>();
11868
+ *
11869
+ * pageConfig: QdPageConfig<MyObject> = {
11870
+ * // ...
11871
+ * metadata$: this.metadataUpdates$
11872
+ * };
11873
+ *
11874
+ * ngOnInit(): void {
11875
+ * combineLatest([this.state$, this.data$])
11876
+ * .pipe(map(([state, data]) => this.mapHeader(state, data)))
11877
+ * .subscribe(header => this.metadataUpdates$.next(header));
11878
+ * }
11879
+ * }
11880
+ * ```
11881
+ */
11882
+ declare function createMetadataStream<T>(): ReplaySubject<Partial<T>>;
11883
+
11755
11884
  /**
11756
11885
  * Token for resolving page object data
11757
11886
  */
@@ -11774,6 +11903,11 @@ interface QdPageObjectResolver<T extends object> {
11774
11903
  resolve(): Observable<T>;
11775
11904
  /**
11776
11905
  * Updates the metadata of the page object model. Can be invoked with an action and accepts a partial metadata object.
11906
+ *
11907
+ * @deprecated Use `QdPageConfig.metadata$` instead. Declare an `Observable<Partial<T>>` (typically a `Subject`)
11908
+ * on the page config and emit partial updates through it — the page header subscribes to it and merges each
11909
+ * emission into the current object data. The `updateMetadata` method is kept for backward compatibility and
11910
+ * will be removed in a future major version.
11777
11911
  */
11778
11912
  updateMetadata?(metadata: Partial<T>): void;
11779
11913
  }
@@ -12966,19 +13100,44 @@ declare class QdSectionComponent implements OnInit, AfterViewInit, OnChanges, On
12966
13100
  *
12967
13101
  * #### **Updating Facets**
12968
13102
  *
12969
- * Typically, the values of the facets on a create or inspect page are set to read-only. However, there may be cases where, for example, a status change is needed, such as through a dialog. For this purpose, we have provided an update method. In the resolver service, define an empty method called `updateMetadata`. Inject this service using its type, and then call the `updateMetadata` method with the required parameter.
13103
+ * Typically, the values of the facets on a create or inspect page are set to read-only. If a facet value needs to change at runtime for instance after a status update from a dialog push the partial update through `QdPageConfig.metadata$`. The header subscribes to this observable and shallow-merges every emission into the current object data.
13104
+ *
13105
+ * Create the stream with `createMetadataStream<T>()`. The factory returns a `ReplaySubject<Partial<T>>(1)` that buffers the latest emission, so a value pushed during your component's `ngOnInit` still reaches the header, which subscribes a lifecycle step later. Plain `Subject` silently drops that first emission; dev mode warns when it detects one.
12970
13106
  *
12971
13107
  * **Please note: These values should not be modified directly within a QdPage.**
12972
13108
  *
12973
13109
  * ```ts
12974
- * @Injectable()
12975
- * class MyObjectModelResolver implements QdPageObjectResolver<MyObjectModel> {
12976
- * config: QdPageObjectResolverConfig = {
12977
- * // your configuration options here
13110
+ * @Component({
13111
+ * // ...
13112
+ * providers: [
13113
+ * {
13114
+ * provide: QD_PAGE_OBJECT_RESOLVER_TOKEN,
13115
+ * useClass: MyObjectModelResolver
13116
+ * }
13117
+ * ]
13118
+ * })
13119
+ * class MyPageComponent {
13120
+ * private metadataUpdates$ = createMetadataStream<MyObjectModel>();
13121
+ *
13122
+ * pageConfig: QdPageConfig<MyObjectModel> = {
13123
+ * title: { i18n: 'i18n.page.title' },
13124
+ * pageType: 'inspect',
13125
+ * headerFacets: [ /* ... *\/ ],
13126
+ * metadata$: this.metadataUpdates$,
13127
+ * pageTypeConfig: { /* ... *\/ }
13128
+ * };
13129
+ *
13130
+ * updateStatus() {
13131
+ * this.metadataUpdates$.next({ state: 'Updated' });
12978
13132
  * }
13133
+ * }
13134
+ * ```
12979
13135
  *
12980
- * constructor(private http: HttpClient) {}
13136
+ * Legacy approach (`@deprecated`): the resolver-level `updateMetadata` method is still wired up for backward compatibility, but prefer `metadata$` on the config for new code.
12981
13137
  *
13138
+ * ```ts
13139
+ * @Injectable()
13140
+ * class MyObjectModelResolver implements QdPageObjectResolver<MyObjectModel> {
12982
13141
  * resolve(): Observable<MyObjectModel> {
12983
13142
  * // your implementation here
12984
13143
  * }
@@ -12988,15 +13147,6 @@ declare class QdSectionComponent implements OnInit, AfterViewInit, OnChanges, On
12988
13147
  * }
12989
13148
  * }
12990
13149
  *
12991
- * @Component({
12992
- * // ...
12993
- * providers: [
12994
- * {
12995
- * provide: QD_PAGE_OBJECT_RESOLVER_TOKEN,
12996
- * useClass: MyObjectModelResolver
12997
- * }
12998
- * ]
12999
- * })
13000
13150
  * class MyPageComponent {
13001
13151
  * constructor(@Inject(QD_PAGE_OBJECT_RESOLVER_TOKEN) private objectResolver: MyObjectModelResolver) {}
13002
13152
  *
@@ -13458,6 +13608,9 @@ declare class QdPageObjectHeaderComponent<T extends object> implements OnInit, O
13458
13608
  private _isLoadingSubject;
13459
13609
  private _customActionsSubject;
13460
13610
  private _customActionsSub?;
13611
+ private _metadataSub?;
13612
+ private _pendingMetadata;
13613
+ private _metadataStreamTypeWarned;
13461
13614
  private _destroyed$;
13462
13615
  private _availableContexts;
13463
13616
  pageObjectData$: Observable<T>;
@@ -13504,6 +13657,8 @@ declare class QdPageObjectHeaderComponent<T extends object> implements OnInit, O
13504
13657
  private setupResolverTrigger;
13505
13658
  private initContexts;
13506
13659
  private updateCustomActions;
13660
+ private subscribeToMetadataStream;
13661
+ private warnOnNonReplayMetadataStream;
13507
13662
  private subscribeToViewOnlyMode;
13508
13663
  private getCustomActionsByMode;
13509
13664
  private openCancelDialog;
@@ -14067,13 +14222,13 @@ declare class QdSectionToolbarActionComponent implements OnInit, OnDestroy {
14067
14222
 
14068
14223
  declare class QdSearchModule {
14069
14224
  static ɵfac: i0.ɵɵFactoryDeclaration<QdSearchModule, never>;
14070
- static ɵmod: i0.ɵɵNgModuleDeclaration<QdSearchModule, [typeof QdSearchComponent], [typeof i2.CommonModule, typeof i5.TranslateModule, typeof i25.StoreFeatureModule, typeof QdButtonModule, typeof QdFormModule, typeof QdIconModule, typeof QdTooltipModule], [typeof QdSearchComponent]>;
14225
+ static ɵmod: i0.ɵɵNgModuleDeclaration<QdSearchModule, [typeof QdSearchComponent], [typeof i2.CommonModule, typeof i9.TranslateModule, typeof i25.StoreFeatureModule, typeof QdButtonModule, typeof QdFormModule, typeof QdIconModule, typeof QdTooltipModule], [typeof QdSearchComponent]>;
14071
14226
  static ɵinj: i0.ɵɵInjectorDeclaration<QdSearchModule>;
14072
14227
  }
14073
14228
 
14074
14229
  declare class QdSectionModule {
14075
14230
  static ɵfac: i0.ɵɵFactoryDeclaration<QdSectionModule, never>;
14076
- static ɵmod: i0.ɵɵNgModuleDeclaration<QdSectionModule, [typeof QdSectionComponent, typeof QdSectionToolbarComponent, typeof QdSectionToolbarActionComponent, typeof QdConnectorTableFilterDirective, typeof QdConnectorTableSearchDirective, typeof QdConnectorTableContextDirective, typeof QdSectionAdapterDirective], [typeof i2.CommonModule, typeof i5.TranslateModule, typeof QdButtonModule, typeof QdIconModule, typeof QdFilterModule, typeof QdSearchModule, typeof QdCoreModule, typeof QdTooltipModule], [typeof QdSectionComponent, typeof QdConnectorTableFilterDirective, typeof QdConnectorTableSearchDirective, typeof QdConnectorTableContextDirective, typeof QdSectionAdapterDirective, typeof QdSectionToolbarComponent]>;
14231
+ static ɵmod: i0.ɵɵNgModuleDeclaration<QdSectionModule, [typeof QdSectionComponent, typeof QdSectionToolbarComponent, typeof QdSectionToolbarActionComponent, typeof QdConnectorTableFilterDirective, typeof QdConnectorTableSearchDirective, typeof QdConnectorTableContextDirective, typeof QdSectionAdapterDirective], [typeof i2.CommonModule, typeof i9.TranslateModule, typeof QdButtonModule, typeof QdIconModule, typeof QdFilterModule, typeof QdSearchModule, typeof QdCoreModule, typeof QdTooltipModule], [typeof QdSectionComponent, typeof QdConnectorTableFilterDirective, typeof QdConnectorTableSearchDirective, typeof QdConnectorTableContextDirective, typeof QdSectionAdapterDirective, typeof QdSectionToolbarComponent]>;
14077
14232
  static ɵinj: i0.ɵɵInjectorDeclaration<QdSectionModule>;
14078
14233
  }
14079
14234
 
@@ -14162,6 +14317,7 @@ declare enum QdTableConnectorState {
14162
14317
  interface QdTableState<T extends string> {
14163
14318
  data: QdTableData<T>;
14164
14319
  selectedRows?: QdTableRowIdentifier[];
14320
+ selectedRowsData?: Record<QdTableRowIdentifier, QdTableSelectedRow<string>>;
14165
14321
  recentSecondaryAction?: QdTableRecentSecondaryAction<T>;
14166
14322
  hasResolver?: boolean;
14167
14323
  hasPagination?: boolean;
@@ -14222,6 +14378,7 @@ declare class QdTablePaginatorComponent<T extends string> implements OnInit, OnD
14222
14378
  currentPage$: Observable<QdTablePaginatorCurrentPage | undefined>;
14223
14379
  pageSize$: Observable<number>;
14224
14380
  totalCount$: Observable<number>;
14381
+ selectedRowsCount$: Observable<number>;
14225
14382
  pageNav?: typeof QdPaginatorDirection;
14226
14383
  private _destroyed$;
14227
14384
  get pageSizes(): number[];
@@ -14440,6 +14597,7 @@ declare class QdTableComponent<T extends string> implements OnInit, OnChanges, O
14440
14597
  private _breakpointSubscription?;
14441
14598
  private _pushEventsSubscription?;
14442
14599
  private _refreshSubscription?;
14600
+ private _deselectAllSubscription?;
14443
14601
  private _connectors;
14444
14602
  get whichColumnFillsWidth(): QdTableFillingColumn;
14445
14603
  get hasResolver(): boolean;
@@ -14888,6 +15046,7 @@ declare class QdTableBodyComponent<T extends string> implements OnInit, OnDestro
14888
15046
  testId?: string;
14889
15047
  isLoading$: Observable<boolean>;
14890
15048
  highlightedRowIdentifier: QdTableRowIdentifier | undefined;
15049
+ trackByRowIdentifier: TrackByFunction<QdTableDataRow<T>>;
14891
15050
  private _primaryActionRefreshSubscription?;
14892
15051
  constructor();
14893
15052
  ngOnInit(): void;
@@ -14929,6 +15088,7 @@ declare class QdTableHeadComponent<T extends string> implements OnInit {
14929
15088
  capitalize(head: any): string;
14930
15089
  getSortableByColumn(columnName: string): boolean;
14931
15090
  getSortConfig(columnName: string): QdTableConfigColumnSort;
15091
+ getTooltip(columnName: string): QdTooltip | undefined;
14932
15092
  static ɵfac: i0.ɵɵFactoryDeclaration<QdTableHeadComponent<any>, never>;
14933
15093
  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>;
14934
15094
  }
@@ -15028,6 +15188,7 @@ declare class QdTableRowComponent<T extends string> implements OnInit {
15028
15188
  getComponentType(item: T | string): Type<QdDataFacetsComponent> | null;
15029
15189
  getComponentInputs(item: T | string): Record<string, unknown>;
15030
15190
  findColumnType(item: T): QdDataFacetsType;
15191
+ getTooltip(item: T): QdTooltip | undefined;
15031
15192
  static ɵfac: i0.ɵɵFactoryDeclaration<QdTableRowComponent<any>, never>;
15032
15193
  static ɵcmp: i0.ɵɵComponentDeclaration<QdTableRowComponent<any>, "[qd-table-row]", never, { "config": { "alias": "config"; "required": false; }; "rowData": { "alias": "rowData"; "required": false; }; "rowIndex": { "alias": "rowIndex"; "required": false; }; "testId": { "alias": "data-test-id"; "required": false; }; }, {}, never, never, false, never>;
15033
15194
  }
@@ -15293,19 +15454,19 @@ declare class QdTreeRowActionsSecondaryMenuComponent<T extends string> implement
15293
15454
 
15294
15455
  declare class QdTreeModule {
15295
15456
  static ɵfac: i0.ɵɵFactoryDeclaration<QdTreeModule, never>;
15296
- static ɵmod: i0.ɵɵNgModuleDeclaration<QdTreeModule, [typeof QdTreeComponent, typeof QdTreeHeadComponent, typeof QdTreeBodyComponent, typeof QdTreeRowComponent, typeof QdTreeEmptyStateComponent, typeof QdTreeRowActionsSecondaryMenuComponent], [typeof i2.CommonModule, typeof i5.TranslateModule, typeof i25.StoreFeatureModule, typeof QdButtonModule, typeof QdChipModule, typeof QdDataFacetsModule, typeof QdIconModule, typeof QdPopoverModule, typeof QdStatusIndicatorModule, typeof QdSpinnerModule, typeof QdTooltipModule], [typeof QdTreeComponent]>;
15457
+ static ɵmod: i0.ɵɵNgModuleDeclaration<QdTreeModule, [typeof QdTreeComponent, typeof QdTreeHeadComponent, typeof QdTreeBodyComponent, typeof QdTreeRowComponent, typeof QdTreeEmptyStateComponent, typeof QdTreeRowActionsSecondaryMenuComponent], [typeof i2.CommonModule, typeof i9.TranslateModule, typeof i25.StoreFeatureModule, typeof QdButtonModule, typeof QdChipModule, typeof QdDataFacetsModule, typeof QdIconModule, typeof QdPopoverModule, typeof QdStatusIndicatorModule, typeof QdSpinnerModule, typeof QdTooltipModule], [typeof QdTreeComponent]>;
15297
15458
  static ɵinj: i0.ɵɵInjectorDeclaration<QdTreeModule>;
15298
15459
  }
15299
15460
 
15300
15461
  declare class QdTableModule {
15301
15462
  static ɵfac: i0.ɵɵFactoryDeclaration<QdTableModule, never>;
15302
- static ɵmod: i0.ɵɵNgModuleDeclaration<QdTableModule, [typeof QdScrollToPaginationDirective, typeof QdTableBodyComponent, typeof QdTableComponent, typeof QdTableEmptyStateComponent, typeof QdTableHeadComponent, typeof QdTablePaginatorComponent, typeof QdTablePaginatorPageSizeComponent, typeof QdTablePaginatorPageSizeDirective, typeof QdTableRowActionsSecondaryMenuComponent, typeof QdTableRowComponent, typeof QdTableRowSelectionComponent, typeof QdTableSortComponent], [typeof i2.CommonModule, typeof i5.TranslateModule, typeof i25.StoreFeatureModule, typeof QdButtonModule, typeof QdChipModule, typeof QdDataFacetsModule, typeof QdIconModule, typeof QdPopoverModule, typeof QdStatusIndicatorModule, typeof QdSpinnerModule, typeof QdTooltipModule, typeof QdTreeModule], [typeof QdTableComponent, typeof QdTreeComponent]>;
15463
+ static ɵmod: i0.ɵɵNgModuleDeclaration<QdTableModule, [typeof QdScrollToPaginationDirective, typeof QdTableBodyComponent, typeof QdTableComponent, typeof QdTableEmptyStateComponent, typeof QdTableHeadComponent, typeof QdTablePaginatorComponent, typeof QdTablePaginatorPageSizeComponent, typeof QdTablePaginatorPageSizeDirective, typeof QdTableRowActionsSecondaryMenuComponent, typeof QdTableRowComponent, typeof QdTableRowSelectionComponent, typeof QdTableSortComponent], [typeof i2.CommonModule, typeof i9.TranslateModule, typeof i25.StoreFeatureModule, typeof QdButtonModule, typeof QdChipModule, typeof QdDataFacetsModule, typeof QdIconModule, typeof QdPopoverModule, typeof QdStatusIndicatorModule, typeof QdSpinnerModule, typeof QdTooltipModule, typeof QdTreeModule], [typeof QdTableComponent, typeof QdTreeComponent]>;
15303
15464
  static ɵinj: i0.ɵɵInjectorDeclaration<QdTableModule>;
15304
15465
  }
15305
15466
 
15306
15467
  declare class QdPageModule {
15307
15468
  static ɵfac: i0.ɵɵFactoryDeclaration<QdPageModule, never>;
15308
- static ɵmod: i0.ɵɵNgModuleDeclaration<QdPageModule, [typeof QdPageComponent, typeof QdPageFooterComponent, typeof QdPageObjectHeaderComponent, typeof QdPageControlPanelComponent, typeof QdSingleSelectFacetComponent, typeof QdMultiSelectFacetComponent, typeof QdDateFacetComponent, typeof QdValueFacetComponent, typeof QdStatusFacetComponent, typeof QdDynamicFacetComponent, typeof QdDynamicFacetDirective, typeof QdCriticalityFacetComponent, typeof QdProgressFacetComponent, typeof QdReferencesFacetComponent, typeof QdConnectFormStateToPageDirective, typeof QdPageFooterCustomContentDirective, typeof QdContextSelectDialogComponent, typeof QdPageInfoBannerComponent], [typeof i2.CommonModule, typeof i5.TranslateModule, typeof QdButtonModule, typeof QdButtonModule, typeof QdChipModule, typeof QdCoreModule, typeof QdDialogModule, typeof QdIconModule, typeof QdProgressBarModule, typeof QdSectionModule, typeof QdSpinnerModule, typeof QdStatusIndicatorModule, typeof QdTableModule, typeof QdTextSectionModule, typeof QdSearchModule, typeof QdPopoverModule], [typeof QdPageComponent, typeof QdPageFooterComponent, typeof QdConnectFormStateToPageDirective, typeof QdPageControlPanelComponent, typeof QdPageFooterCustomContentDirective, typeof QdPageInfoBannerComponent]>;
15469
+ static ɵmod: i0.ɵɵNgModuleDeclaration<QdPageModule, [typeof QdPageComponent, typeof QdPageFooterComponent, typeof QdPageObjectHeaderComponent, typeof QdPageControlPanelComponent, typeof QdSingleSelectFacetComponent, typeof QdMultiSelectFacetComponent, typeof QdDateFacetComponent, typeof QdValueFacetComponent, typeof QdStatusFacetComponent, typeof QdDynamicFacetComponent, typeof QdDynamicFacetDirective, typeof QdCriticalityFacetComponent, typeof QdProgressFacetComponent, typeof QdReferencesFacetComponent, typeof QdConnectFormStateToPageDirective, typeof QdPageFooterCustomContentDirective, typeof QdContextSelectDialogComponent, typeof QdPageInfoBannerComponent], [typeof i2.CommonModule, typeof i9.TranslateModule, typeof QdButtonModule, typeof QdButtonModule, typeof QdChipModule, typeof QdCoreModule, typeof QdDialogModule, typeof QdIconModule, typeof QdProgressBarModule, typeof QdSectionModule, typeof QdSpinnerModule, typeof QdStatusIndicatorModule, typeof QdTableModule, typeof QdTextSectionModule, typeof QdSearchModule, typeof QdPopoverModule], [typeof QdPageComponent, typeof QdPageFooterComponent, typeof QdConnectFormStateToPageDirective, typeof QdPageControlPanelComponent, typeof QdPageFooterCustomContentDirective, typeof QdPageInfoBannerComponent]>;
15309
15470
  static ɵinj: i0.ɵɵInjectorDeclaration<QdPageModule>;
15310
15471
  }
15311
15472
 
@@ -15482,7 +15643,7 @@ declare class QdPanelSectionActionsComponent {
15482
15643
 
15483
15644
  declare class QdPanelSectionModule {
15484
15645
  static ɵfac: i0.ɵɵFactoryDeclaration<QdPanelSectionModule, never>;
15485
- static ɵmod: i0.ɵɵNgModuleDeclaration<QdPanelSectionModule, [typeof QdPanelSectionComponent, typeof QdPanelSectionStatusComponent, typeof QdPanelSectionActionsComponent, typeof QdPanelSectionTextParagraphComponent], [typeof i2.CommonModule, typeof i5.TranslateModule, typeof QdButtonModule, typeof QdIconModule], [typeof QdPanelSectionComponent, typeof QdPanelSectionStatusComponent, typeof QdPanelSectionActionsComponent, typeof QdPanelSectionTextParagraphComponent]>;
15646
+ static ɵmod: i0.ɵɵNgModuleDeclaration<QdPanelSectionModule, [typeof QdPanelSectionComponent, typeof QdPanelSectionStatusComponent, typeof QdPanelSectionActionsComponent, typeof QdPanelSectionTextParagraphComponent], [typeof i2.CommonModule, typeof i9.TranslateModule, typeof QdButtonModule, typeof QdIconModule], [typeof QdPanelSectionComponent, typeof QdPanelSectionStatusComponent, typeof QdPanelSectionActionsComponent, typeof QdPanelSectionTextParagraphComponent]>;
15486
15647
  static ɵinj: i0.ɵɵInjectorDeclaration<QdPanelSectionModule>;
15487
15648
  }
15488
15649
 
@@ -16820,7 +16981,7 @@ declare class QdShellServiceNavigationModule {
16820
16981
 
16821
16982
  declare class QdShellModule {
16822
16983
  static ɵfac: i0.ɵɵFactoryDeclaration<QdShellModule, never>;
16823
- static ɵmod: i0.ɵɵNgModuleDeclaration<QdShellModule, [typeof QdCounterBadgeComponent, typeof QdShellComponent, typeof QdShellFooterComponent, typeof QdShellHeaderBannerComponent, typeof QdShellHeaderComponent, typeof QdShellHeaderSearchComponent, typeof QdShellHeaderWidgetComponent, typeof QdShellLeftComponent, typeof QdShellRightComponent, typeof QdShellRightToolbarComponent, typeof QdShellNotificationsComponent, typeof QdShellNotificationComponent, typeof QdShellNavigationComponent, typeof QdShellNavigationLinkComponent, typeof QdShellToolbarComponent, typeof QdShellToolbarItemComponent], [typeof i2.CommonModule, typeof i4.RouterModule, typeof i19.CdkDrag, typeof QdIconModule, typeof QdSearchModule, typeof i5.TranslateModule, typeof QdNotificationsModule, typeof QdShellServiceNavigationModule], [typeof QdShellComponent]>;
16984
+ static ɵmod: i0.ɵɵNgModuleDeclaration<QdShellModule, [typeof QdCounterBadgeComponent, typeof QdShellComponent, typeof QdShellFooterComponent, typeof QdShellHeaderBannerComponent, typeof QdShellHeaderComponent, typeof QdShellHeaderSearchComponent, typeof QdShellHeaderWidgetComponent, typeof QdShellLeftComponent, typeof QdShellRightComponent, typeof QdShellRightToolbarComponent, typeof QdShellNotificationsComponent, typeof QdShellNotificationComponent, typeof QdShellNavigationComponent, typeof QdShellNavigationLinkComponent, typeof QdShellToolbarComponent, typeof QdShellToolbarItemComponent], [typeof i2.CommonModule, typeof i4.RouterModule, typeof i19.CdkDrag, typeof QdIconModule, typeof QdSearchModule, typeof i9.TranslateModule, typeof QdNotificationsModule, typeof QdShellServiceNavigationModule], [typeof QdShellComponent]>;
16824
16985
  static ɵinj: i0.ɵɵInjectorDeclaration<QdShellModule>;
16825
16986
  }
16826
16987
 
@@ -16963,7 +17124,7 @@ declare class QdStriphtmlPipe implements PipeTransform {
16963
17124
 
16964
17125
  declare class QdCommentsModule {
16965
17126
  static ɵfac: i0.ɵɵFactoryDeclaration<QdCommentsModule, never>;
16966
- static ɵmod: i0.ɵɵNgModuleDeclaration<QdCommentsModule, [typeof QdCommentsComponent, typeof QdCommentMenuComponent, typeof AddCommentDialogComponent, typeof QdStriphtmlPipe], [typeof i2.CommonModule, typeof i5.TranslateModule, typeof QdPopoverModule, typeof QdIconModule, typeof QdButtonModule, typeof QdFormModule, typeof QdDialogModule, typeof i31.FormsModule, typeof i31.ReactiveFormsModule, typeof QdCoreModule], [typeof QdCommentsComponent]>;
17127
+ static ɵmod: i0.ɵɵNgModuleDeclaration<QdCommentsModule, [typeof QdCommentsComponent, typeof QdCommentMenuComponent, typeof AddCommentDialogComponent, typeof QdStriphtmlPipe], [typeof i2.CommonModule, typeof i9.TranslateModule, typeof QdPopoverModule, typeof QdIconModule, typeof QdButtonModule, typeof QdFormModule, typeof QdDialogModule, typeof i31.FormsModule, typeof i31.ReactiveFormsModule, typeof QdCoreModule], [typeof QdCommentsComponent]>;
16967
17128
  static ɵinj: i0.ɵɵInjectorDeclaration<QdCommentsModule>;
16968
17129
  }
16969
17130
 
@@ -17018,7 +17179,7 @@ declare class QdPageStepHeaderComponent extends CdkStepHeader {
17018
17179
 
17019
17180
  declare class QdPageStepperModule {
17020
17181
  static ɵfac: i0.ɵɵFactoryDeclaration<QdPageStepperModule, never>;
17021
- static ɵmod: i0.ɵɵNgModuleDeclaration<QdPageStepperModule, [typeof QdPageStepperCancelDialogComponent, typeof QdPageStepperAdapterDirective], [typeof i2.CommonModule, typeof i5.TranslateModule, typeof i5$1.CdkStepperModule, typeof QdIconModule, typeof QdButtonModule, typeof QdGridModule, typeof QdDialogModule, typeof QdTextSectionModule, typeof QdPageStepperComponent, typeof QdPageStepComponent, typeof QdPageStepHeaderComponent], [typeof QdPageStepperComponent, typeof QdPageStepComponent, typeof QdPageStepperAdapterDirective]>;
17182
+ static ɵmod: i0.ɵɵNgModuleDeclaration<QdPageStepperModule, [typeof QdPageStepperCancelDialogComponent, typeof QdPageStepperAdapterDirective], [typeof i2.CommonModule, typeof i9.TranslateModule, typeof i5.CdkStepperModule, typeof QdIconModule, typeof QdButtonModule, typeof QdGridModule, typeof QdDialogModule, typeof QdTextSectionModule, typeof QdPageStepperComponent, typeof QdPageStepComponent, typeof QdPageStepHeaderComponent], [typeof QdPageStepperComponent, typeof QdPageStepComponent, typeof QdPageStepperAdapterDirective]>;
17022
17183
  static ɵinj: i0.ɵɵInjectorDeclaration<QdPageStepperModule>;
17023
17184
  }
17024
17185
 
@@ -17065,7 +17226,7 @@ declare class QdPageTabHeaderCountersComponent implements OnInit {
17065
17226
 
17066
17227
  declare class QdPageTabsModule {
17067
17228
  static ɵfac: i0.ɵɵFactoryDeclaration<QdPageTabsModule, never>;
17068
- static ɵmod: i0.ɵɵNgModuleDeclaration<QdPageTabsModule, [typeof QdPageTabsAdapterDirective], [typeof i2.CommonModule, typeof i5.TranslateModule, typeof i5$1.CdkStepperModule, typeof QdButtonModule, typeof QdIconModule, typeof QdPageTabsComponent, typeof QdPageTabComponent, typeof QdPageTabHeaderComponent, typeof QdPageTabHeaderCountersComponent], [typeof QdPageTabsComponent, typeof QdPageTabComponent, typeof QdPageTabsAdapterDirective]>;
17229
+ static ɵmod: i0.ɵɵNgModuleDeclaration<QdPageTabsModule, [typeof QdPageTabsAdapterDirective], [typeof i2.CommonModule, typeof i9.TranslateModule, typeof i5.CdkStepperModule, typeof QdButtonModule, typeof QdIconModule, typeof QdPageTabsComponent, typeof QdPageTabComponent, typeof QdPageTabHeaderComponent, typeof QdPageTabHeaderCountersComponent], [typeof QdPageTabsComponent, typeof QdPageTabComponent, typeof QdPageTabsAdapterDirective]>;
17069
17230
  static ɵinj: i0.ɵɵInjectorDeclaration<QdPageTabsModule>;
17070
17231
  }
17071
17232
 
@@ -17484,7 +17645,6 @@ declare class QdQuickEditComponent<T extends string> implements OnInit, OnChange
17484
17645
  createRow(): void;
17485
17646
  removeRow(index: number): void;
17486
17647
  private executeRemoveRow;
17487
- hasTooltip(tooltip: QdTooltip): boolean;
17488
17648
  private initRows;
17489
17649
  private initCreating;
17490
17650
  private createFormGroupRow;
@@ -17507,7 +17667,7 @@ declare class QdFocusableModule {
17507
17667
 
17508
17668
  declare class QdQuickEditModule {
17509
17669
  static ɵfac: i0.ɵɵFactoryDeclaration<QdQuickEditModule, never>;
17510
- static ɵmod: i0.ɵɵNgModuleDeclaration<QdQuickEditModule, [typeof QdQuickEditComponent, typeof QdCustomForDirective], [typeof QdCoreModule, typeof QdButtonModule, typeof i2.CommonModule, typeof QdFormModule, typeof i31.ReactiveFormsModule, typeof QdIconModule, typeof QdPopoverModule, typeof i5.TranslateModule, typeof QdPageModule, typeof QdFocusableModule, typeof QdTooltipModule], [typeof QdQuickEditComponent]>;
17670
+ static ɵmod: i0.ɵɵNgModuleDeclaration<QdQuickEditModule, [typeof QdQuickEditComponent, typeof QdCustomForDirective], [typeof QdCoreModule, typeof QdButtonModule, typeof i2.CommonModule, typeof QdFormModule, typeof i31.ReactiveFormsModule, typeof QdIconModule, typeof QdPopoverModule, typeof i9.TranslateModule, typeof QdPageModule, typeof QdFocusableModule, typeof QdTooltipModule], [typeof QdQuickEditComponent]>;
17511
17671
  static ɵinj: i0.ɵɵInjectorDeclaration<QdQuickEditModule>;
17512
17672
  }
17513
17673
 
@@ -17520,5 +17680,5 @@ declare class QdUiModule {
17520
17680
 
17521
17681
  declare const APP_ENVIRONMENT: InjectionToken<QdAppEnvironment>;
17522
17682
 
17523
- 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, 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, 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, QdRwdDisabledDirective, QdSearchComponent, QdSearchModule, 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, QdTreeComponent, QdTreeModule, QdTreeRowExpanderService, QdUiMockModule, QdUiModule, QdUploadErrorType, QdValidators, QdViewportAdaptiveDirective, QdVisuallyHiddenDirective, chipColorDefault, updateHtmlLang };
17683
+ 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, 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, 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, QdRwdDisabledDirective, QdSearchComponent, QdSearchModule, 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, updateHtmlLang };
17524
17684
  export type { CustomField, QdAppEnvironment, QdButtonAdditionalInfo, QdButtonColor, QdChipColor, QdCollectedFile, QdComment, QdCommentAuthorFieldConfig, QdCommentCustomFieldConfig, QdCommentDeletedMeta, QdCommentRichtextConfig, QdCommentSecondaryActionConfig, QdCommentsAddButtonConfig, QdCommentsAddConfig, QdCommentsConfig, QdContactAddress, QdContactData, QdContactDataCustomField, QdContactDataCustomFieldEntry, QdContactDataCustomTranslatedEntry, QdContactFunction, QdContactPerson, QdContactTag, QdContextSelection, QdDependentFilterCategory, QdDialogAuthSessionEndResult, QdDialogConfig, QdDialogConfirmationConfig, QdDialogConfirmationResolver, QdDialogData, QdDialogTitle, QdFileCollectorConfig, QdFileManager, QdFileType, QdFileUploadManager, QdFilterCategory, QdFilterConfigData, QdFilterItem, QdFilterPostBodyCategory, QdFilterPostBodyData, QdFormCheckboxChipsConfiguration, QdFormCheckboxesConfiguration, QdFormConfiguration, QdFormDatepickerConfiguration, QdFormDropdownConfiguration, QdFormFileUploadConfiguration, QdFormHint, QdFormInput, QdFormInputConfiguration, QdFormLabel, QdFormMultiInputConfiguration, QdFormOption, QdFormOptionsResolver, QdFormPinCodeConfiguration, QdFormRadioButtonsConfiguration, QdFormSwitchesConfiguration, QdFormTextAreaConfiguration, QdGridConfig, QdInputValue, QdInputValueWithUnit, QdInspectOperationMode, QdMenuButtonConfig, QdMultiInputOption, QdNotification, QdNotificationType, QdPageConfig, QdPageConfigCreate, QdPageConfigCustom, QdPageConfigInspect, QdPageConfigOverview, QdPageControlPanelConfig, QdPageHeaderFacetConfig, QdPageInfoBannerConfig, QdPageObjectResolver, QdPageObjectResolverConfig, QdPageSelectedContext, QdPageStepConfig, QdPageStepResolver, QdPageStepperConfig, QdPageTabConfig, QdPageTabCounters, QdPageTabsConfig, QdPageTypeCreateConfig, QdPageTypeCustomConfig, QdPageTypeInspectConfig, QdPageTypeOverviewConfig, QdPlaceholder, QdPushEventName, QdQuickEditConfig, QdQuickEditData, QdRichtextConfig, QdSearchOptions, QdSearchPostBodyData, QdSectionActionType, QdSectionConfig, QdShellConfig, QdShellServiceNavigationConfig, QdStatusIndicator, QdSwitchOption, QdTabSelectionEvent, QdTableChipDataValue, QdTableConfig, QdTableConfigColumn, QdTableConfigSelection, QdTableContentDataChip, QdTableContentDataChipObject, QdTableData, QdTableDataResolver, QdTableDataResolverProps, QdTableDataRow, QdTableDataValue, QdTableEmptyStateView, QdTableOptionalRefreshingEventTypes, QdTablePagination, QdTablePrimaryAction, QdTableRecentSecondaryAction, QdTableResolvedData, QdTableRowIdentifier, QdTableRowIndex, QdTableRowUid, QdTableSecondaryAction, QdTableSelectedRow, QdTableSelectedRows, QdTableStateSort, QdTableStatusDataValue, QdTileConfig, QdTilesConfig, QdTooltip, QdTranslatable, QdTranslation, QdTreeConfig, QdTreeData, QdTreeDataRow, QdTreeDataValue, QdUploadError, QdUploadProgress };