@quadrel-enterprise-ui/framework 20.10.1-beta.145.1 → 20.11.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
@@ -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,31 +9094,6 @@ 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>[];
9054
- /**
9055
- * @description Observable to push partial metadata updates for header facets from outside.
9056
- * Each emission is shallow-merged into the current object data, so only the fields that
9057
- * changed need to be emitted. Stream-pushed fields survive subsequent resolver re-runs.
9058
- *
9059
- * Prefer a `ReplaySubject<Partial<T>>(1)` or `BehaviorSubject` over a plain `Subject`:
9060
- * the header subscribes during its own `ngOnInit`, so emissions fired earlier (e.g. from
9061
- * the page component's `ngOnInit`) would be lost without a replay buffer.
9062
- *
9063
- * @example
9064
- * ```ts
9065
- * private metadataUpdates$ = new ReplaySubject<Partial<MyObject>>(1);
9066
- *
9067
- * pageConfig: QdPageConfig<MyObject> = {
9068
- * // ...
9069
- * headerFacets: [...],
9070
- * metadata$: this.metadataUpdates$
9071
- * };
9072
- *
9073
- * onStatusChange() {
9074
- * this.metadataUpdates$.next({ status: 'approved' });
9075
- * }
9076
- * ```
9077
- */
9078
- metadata$?: Observable<Partial<T>>;
9079
9097
  /**
9080
9098
  * @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.
9081
9099
  *
@@ -9098,31 +9116,6 @@ interface QdPageConfigCustom<T extends object = object> extends QdPageConfigBase
9098
9116
  * @description Information placed in the header of the page. Concerns current shown object.
9099
9117
  */
9100
9118
  headerFacets?: QdPageHeaderFacetConfig<T>[];
9101
- /**
9102
- * @description Observable to push partial metadata updates for header facets from outside.
9103
- * Each emission is shallow-merged into the current object data, so only the fields that
9104
- * changed need to be emitted. Stream-pushed fields survive subsequent resolver re-runs.
9105
- *
9106
- * Prefer a `ReplaySubject<Partial<T>>(1)` or `BehaviorSubject` over a plain `Subject`:
9107
- * the header subscribes during its own `ngOnInit`, so emissions fired earlier (e.g. from
9108
- * the page component's `ngOnInit`) would be lost without a replay buffer.
9109
- *
9110
- * @example
9111
- * ```ts
9112
- * private metadataUpdates$ = new ReplaySubject<Partial<MyObject>>(1);
9113
- *
9114
- * pageConfig: QdPageConfig<MyObject> = {
9115
- * // ...
9116
- * headerFacets: [...],
9117
- * metadata$: this.metadataUpdates$
9118
- * };
9119
- *
9120
- * onStatusChange() {
9121
- * this.metadataUpdates$.next({ status: 'approved' });
9122
- * }
9123
- * ```
9124
- */
9125
- metadata$?: Observable<Partial<T>>;
9126
9119
  /**
9127
9120
  * @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.
9128
9121
  *
@@ -9727,7 +9720,7 @@ declare class QdContactCardMenuComponent implements OnInit, OnDestroy {
9727
9720
 
9728
9721
  declare class QdContactCardModule {
9729
9722
  static ɵfac: i0.ɵɵFactoryDeclaration<QdContactCardModule, never>;
9730
- 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]>;
9723
+ 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]>;
9731
9724
  static ɵinj: i0.ɵɵInjectorDeclaration<QdContactCardModule>;
9732
9725
  }
9733
9726
 
@@ -10265,7 +10258,7 @@ declare class QdSpinnerModule {
10265
10258
 
10266
10259
  declare class QdDialogModule {
10267
10260
  static ɵfac: i0.ɵɵFactoryDeclaration<QdDialogModule, never>;
10268
- 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]>;
10261
+ 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]>;
10269
10262
  static ɵinj: i0.ɵɵInjectorDeclaration<QdDialogModule>;
10270
10263
  }
10271
10264
 
@@ -10739,7 +10732,7 @@ declare class QdProgressBarModule {
10739
10732
 
10740
10733
  declare class QdFileCollectorModule {
10741
10734
  static ɵfac: i0.ɵɵFactoryDeclaration<QdFileCollectorModule, never>;
10742
- 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]>;
10735
+ 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]>;
10743
10736
  static ɵinj: i0.ɵɵInjectorDeclaration<QdFileCollectorModule>;
10744
10737
  }
10745
10738
 
@@ -11236,7 +11229,7 @@ declare class QdFilterItemSingleSelectComponent implements OnInit, OnDestroy {
11236
11229
 
11237
11230
  declare class QdFilterModule {
11238
11231
  static ɵfac: i0.ɵɵFactoryDeclaration<QdFilterModule, never>;
11239
- 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]>;
11232
+ 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]>;
11240
11233
  static ɵinj: i0.ɵɵInjectorDeclaration<QdFilterModule>;
11241
11234
  }
11242
11235
 
@@ -11552,7 +11545,7 @@ declare class NavigationTileComponent implements OnInit {
11552
11545
 
11553
11546
  declare class QdNavigationTilesModule {
11554
11547
  static ɵfac: i0.ɵɵFactoryDeclaration<QdNavigationTilesModule, never>;
11555
- static ɵmod: i0.ɵɵNgModuleDeclaration<QdNavigationTilesModule, [typeof NavigationTilesComponent, typeof NavigationTileComponent], [typeof i2.CommonModule, typeof QdIconModule, typeof i5.TranslateModule], [typeof NavigationTilesComponent, typeof NavigationTileComponent]>;
11548
+ static ɵmod: i0.ɵɵNgModuleDeclaration<QdNavigationTilesModule, [typeof NavigationTilesComponent, typeof NavigationTileComponent], [typeof i2.CommonModule, typeof QdIconModule, typeof i9.TranslateModule], [typeof NavigationTilesComponent, typeof NavigationTileComponent]>;
11556
11549
  static ɵinj: i0.ɵɵInjectorDeclaration<QdNavigationTilesModule>;
11557
11550
  }
11558
11551
 
@@ -11824,11 +11817,6 @@ interface QdPageObjectResolver<T extends object> {
11824
11817
  resolve(): Observable<T>;
11825
11818
  /**
11826
11819
  * Updates the metadata of the page object model. Can be invoked with an action and accepts a partial metadata object.
11827
- *
11828
- * @deprecated Use `QdPageConfig.metadata$` instead. Declare an `Observable<Partial<T>>` (typically a `Subject`)
11829
- * on the page config and emit partial updates through it — the page header subscribes to it and merges each
11830
- * emission into the current object data. The `updateMetadata` method is kept for backward compatibility and
11831
- * will be removed in a future major version.
11832
11820
  */
11833
11821
  updateMetadata?(metadata: Partial<T>): void;
11834
11822
  }
@@ -13021,42 +13009,19 @@ declare class QdSectionComponent implements OnInit, AfterViewInit, OnChanges, On
13021
13009
  *
13022
13010
  * #### **Updating Facets**
13023
13011
  *
13024
- * 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 an observable on the page config. The header subscribes to `QdPageConfig.metadata$` and shallow-merges every emission into the current object data.
13012
+ * 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.
13025
13013
  *
13026
13014
  * **Please note: These values should not be modified directly within a QdPage.**
13027
13015
  *
13028
13016
  * ```ts
13029
- * @Component({
13030
- * // ...
13031
- * providers: [
13032
- * {
13033
- * provide: QD_PAGE_OBJECT_RESOLVER_TOKEN,
13034
- * useClass: MyObjectModelResolver
13035
- * }
13036
- * ]
13037
- * })
13038
- * class MyPageComponent {
13039
- * private metadataUpdates$ = new Subject<Partial<MyObjectModel>>();
13040
- *
13041
- * pageConfig: QdPageConfig<MyObjectModel> = {
13042
- * title: { i18n: 'i18n.page.title' },
13043
- * pageType: 'inspect',
13044
- * headerFacets: [ /* ... *\/ ],
13045
- * metadata$: this.metadataUpdates$,
13046
- * pageTypeConfig: { /* ... *\/ }
13047
- * };
13048
- *
13049
- * updateStatus() {
13050
- * this.metadataUpdates$.next({ state: 'Updated' });
13017
+ * @Injectable()
13018
+ * class MyObjectModelResolver implements QdPageObjectResolver<MyObjectModel> {
13019
+ * config: QdPageObjectResolverConfig = {
13020
+ * // your configuration options here
13051
13021
  * }
13052
- * }
13053
- * ```
13054
13022
  *
13055
- * Legacy approach (`@deprecated`): the resolver-level `updateMetadata` method is still wired up for backward compatibility, but prefer `metadata$` on the config for new code.
13023
+ * constructor(private http: HttpClient) {}
13056
13024
  *
13057
- * ```ts
13058
- * @Injectable()
13059
- * class MyObjectModelResolver implements QdPageObjectResolver<MyObjectModel> {
13060
13025
  * resolve(): Observable<MyObjectModel> {
13061
13026
  * // your implementation here
13062
13027
  * }
@@ -13066,6 +13031,15 @@ declare class QdSectionComponent implements OnInit, AfterViewInit, OnChanges, On
13066
13031
  * }
13067
13032
  * }
13068
13033
  *
13034
+ * @Component({
13035
+ * // ...
13036
+ * providers: [
13037
+ * {
13038
+ * provide: QD_PAGE_OBJECT_RESOLVER_TOKEN,
13039
+ * useClass: MyObjectModelResolver
13040
+ * }
13041
+ * ]
13042
+ * })
13069
13043
  * class MyPageComponent {
13070
13044
  * constructor(@Inject(QD_PAGE_OBJECT_RESOLVER_TOKEN) private objectResolver: MyObjectModelResolver) {}
13071
13045
  *
@@ -13527,8 +13501,6 @@ declare class QdPageObjectHeaderComponent<T extends object> implements OnInit, O
13527
13501
  private _isLoadingSubject;
13528
13502
  private _customActionsSubject;
13529
13503
  private _customActionsSub?;
13530
- private _metadataSub?;
13531
- private _streamPartial;
13532
13504
  private _destroyed$;
13533
13505
  private _availableContexts;
13534
13506
  pageObjectData$: Observable<T>;
@@ -13575,7 +13547,6 @@ declare class QdPageObjectHeaderComponent<T extends object> implements OnInit, O
13575
13547
  private setupResolverTrigger;
13576
13548
  private initContexts;
13577
13549
  private updateCustomActions;
13578
- private subscribeToMetadataStream;
13579
13550
  private subscribeToViewOnlyMode;
13580
13551
  private getCustomActionsByMode;
13581
13552
  private openCancelDialog;
@@ -14139,13 +14110,13 @@ declare class QdSectionToolbarActionComponent implements OnInit, OnDestroy {
14139
14110
 
14140
14111
  declare class QdSearchModule {
14141
14112
  static ɵfac: i0.ɵɵFactoryDeclaration<QdSearchModule, never>;
14142
- 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]>;
14113
+ 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]>;
14143
14114
  static ɵinj: i0.ɵɵInjectorDeclaration<QdSearchModule>;
14144
14115
  }
14145
14116
 
14146
14117
  declare class QdSectionModule {
14147
14118
  static ɵfac: i0.ɵɵFactoryDeclaration<QdSectionModule, never>;
14148
- 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]>;
14119
+ 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]>;
14149
14120
  static ɵinj: i0.ɵɵInjectorDeclaration<QdSectionModule>;
14150
14121
  }
14151
14122
 
@@ -14234,6 +14205,7 @@ declare enum QdTableConnectorState {
14234
14205
  interface QdTableState<T extends string> {
14235
14206
  data: QdTableData<T>;
14236
14207
  selectedRows?: QdTableRowIdentifier[];
14208
+ selectedRowsData?: Record<QdTableRowIdentifier, QdTableSelectedRow<string>>;
14237
14209
  recentSecondaryAction?: QdTableRecentSecondaryAction<T>;
14238
14210
  hasResolver?: boolean;
14239
14211
  hasPagination?: boolean;
@@ -14294,6 +14266,7 @@ declare class QdTablePaginatorComponent<T extends string> implements OnInit, OnD
14294
14266
  currentPage$: Observable<QdTablePaginatorCurrentPage | undefined>;
14295
14267
  pageSize$: Observable<number>;
14296
14268
  totalCount$: Observable<number>;
14269
+ selectedRowsCount$: Observable<number>;
14297
14270
  pageNav?: typeof QdPaginatorDirection;
14298
14271
  private _destroyed$;
14299
14272
  get pageSizes(): number[];
@@ -14512,6 +14485,7 @@ declare class QdTableComponent<T extends string> implements OnInit, OnChanges, O
14512
14485
  private _breakpointSubscription?;
14513
14486
  private _pushEventsSubscription?;
14514
14487
  private _refreshSubscription?;
14488
+ private _deselectAllSubscription?;
14515
14489
  private _connectors;
14516
14490
  get whichColumnFillsWidth(): QdTableFillingColumn;
14517
14491
  get hasResolver(): boolean;
@@ -14960,6 +14934,7 @@ declare class QdTableBodyComponent<T extends string> implements OnInit, OnDestro
14960
14934
  testId?: string;
14961
14935
  isLoading$: Observable<boolean>;
14962
14936
  highlightedRowIdentifier: QdTableRowIdentifier | undefined;
14937
+ trackByRowIdentifier: TrackByFunction<QdTableDataRow<T>>;
14963
14938
  private _primaryActionRefreshSubscription?;
14964
14939
  constructor();
14965
14940
  ngOnInit(): void;
@@ -15001,6 +14976,7 @@ declare class QdTableHeadComponent<T extends string> implements OnInit {
15001
14976
  capitalize(head: any): string;
15002
14977
  getSortableByColumn(columnName: string): boolean;
15003
14978
  getSortConfig(columnName: string): QdTableConfigColumnSort;
14979
+ getTooltip(columnName: string): QdTooltip | undefined;
15004
14980
  static ɵfac: i0.ɵɵFactoryDeclaration<QdTableHeadComponent<any>, never>;
15005
14981
  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>;
15006
14982
  }
@@ -15100,6 +15076,7 @@ declare class QdTableRowComponent<T extends string> implements OnInit {
15100
15076
  getComponentType(item: T | string): Type<QdDataFacetsComponent> | null;
15101
15077
  getComponentInputs(item: T | string): Record<string, unknown>;
15102
15078
  findColumnType(item: T): QdDataFacetsType;
15079
+ getTooltip(item: T): QdTooltip | undefined;
15103
15080
  static ɵfac: i0.ɵɵFactoryDeclaration<QdTableRowComponent<any>, never>;
15104
15081
  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>;
15105
15082
  }
@@ -15365,19 +15342,19 @@ declare class QdTreeRowActionsSecondaryMenuComponent<T extends string> implement
15365
15342
 
15366
15343
  declare class QdTreeModule {
15367
15344
  static ɵfac: i0.ɵɵFactoryDeclaration<QdTreeModule, never>;
15368
- 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]>;
15345
+ 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]>;
15369
15346
  static ɵinj: i0.ɵɵInjectorDeclaration<QdTreeModule>;
15370
15347
  }
15371
15348
 
15372
15349
  declare class QdTableModule {
15373
15350
  static ɵfac: i0.ɵɵFactoryDeclaration<QdTableModule, never>;
15374
- 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]>;
15351
+ 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]>;
15375
15352
  static ɵinj: i0.ɵɵInjectorDeclaration<QdTableModule>;
15376
15353
  }
15377
15354
 
15378
15355
  declare class QdPageModule {
15379
15356
  static ɵfac: i0.ɵɵFactoryDeclaration<QdPageModule, never>;
15380
- 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]>;
15357
+ 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]>;
15381
15358
  static ɵinj: i0.ɵɵInjectorDeclaration<QdPageModule>;
15382
15359
  }
15383
15360
 
@@ -15554,7 +15531,7 @@ declare class QdPanelSectionActionsComponent {
15554
15531
 
15555
15532
  declare class QdPanelSectionModule {
15556
15533
  static ɵfac: i0.ɵɵFactoryDeclaration<QdPanelSectionModule, never>;
15557
- 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]>;
15534
+ 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]>;
15558
15535
  static ɵinj: i0.ɵɵInjectorDeclaration<QdPanelSectionModule>;
15559
15536
  }
15560
15537
 
@@ -16892,7 +16869,7 @@ declare class QdShellServiceNavigationModule {
16892
16869
 
16893
16870
  declare class QdShellModule {
16894
16871
  static ɵfac: i0.ɵɵFactoryDeclaration<QdShellModule, never>;
16895
- 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]>;
16872
+ 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]>;
16896
16873
  static ɵinj: i0.ɵɵInjectorDeclaration<QdShellModule>;
16897
16874
  }
16898
16875
 
@@ -17035,7 +17012,7 @@ declare class QdStriphtmlPipe implements PipeTransform {
17035
17012
 
17036
17013
  declare class QdCommentsModule {
17037
17014
  static ɵfac: i0.ɵɵFactoryDeclaration<QdCommentsModule, never>;
17038
- 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]>;
17015
+ 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]>;
17039
17016
  static ɵinj: i0.ɵɵInjectorDeclaration<QdCommentsModule>;
17040
17017
  }
17041
17018
 
@@ -17090,7 +17067,7 @@ declare class QdPageStepHeaderComponent extends CdkStepHeader {
17090
17067
 
17091
17068
  declare class QdPageStepperModule {
17092
17069
  static ɵfac: i0.ɵɵFactoryDeclaration<QdPageStepperModule, never>;
17093
- 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]>;
17070
+ 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]>;
17094
17071
  static ɵinj: i0.ɵɵInjectorDeclaration<QdPageStepperModule>;
17095
17072
  }
17096
17073
 
@@ -17137,7 +17114,7 @@ declare class QdPageTabHeaderCountersComponent implements OnInit {
17137
17114
 
17138
17115
  declare class QdPageTabsModule {
17139
17116
  static ɵfac: i0.ɵɵFactoryDeclaration<QdPageTabsModule, never>;
17140
- 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]>;
17117
+ 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]>;
17141
17118
  static ɵinj: i0.ɵɵInjectorDeclaration<QdPageTabsModule>;
17142
17119
  }
17143
17120
 
@@ -17556,7 +17533,6 @@ declare class QdQuickEditComponent<T extends string> implements OnInit, OnChange
17556
17533
  createRow(): void;
17557
17534
  removeRow(index: number): void;
17558
17535
  private executeRemoveRow;
17559
- hasTooltip(tooltip: QdTooltip): boolean;
17560
17536
  private initRows;
17561
17537
  private initCreating;
17562
17538
  private createFormGroupRow;
@@ -17579,7 +17555,7 @@ declare class QdFocusableModule {
17579
17555
 
17580
17556
  declare class QdQuickEditModule {
17581
17557
  static ɵfac: i0.ɵɵFactoryDeclaration<QdQuickEditModule, never>;
17582
- 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]>;
17558
+ 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]>;
17583
17559
  static ɵinj: i0.ɵɵInjectorDeclaration<QdQuickEditModule>;
17584
17560
  }
17585
17561
 
@@ -17592,5 +17568,5 @@ declare class QdUiModule {
17592
17568
 
17593
17569
  declare const APP_ENVIRONMENT: InjectionToken<QdAppEnvironment>;
17594
17570
 
17595
- 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 };
17571
+ 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, updateHtmlLang };
17596
17572
  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 };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quadrel-enterprise-ui/framework",
3
- "version": "20.10.1-beta.145.1",
3
+ "version": "20.11.0",
4
4
  "exports": {
5
5
  "./jest-preset": "./jest-preset.js",
6
6
  "./package.json": {
@@ -123,6 +123,8 @@
123
123
  "i18n.qd.table.pagination.of": "von",
124
124
  "i18n.qd.table.pagination.entries": "Einträgen",
125
125
  "i18n.qd.table.pagination.entry": "Eintrag",
126
+ "i18n.qd.table.pagination.selectedSingular": "1 Zeile ausgewählt",
127
+ "i18n.qd.table.pagination.selectedPlural": "{{count}} Zeilen ausgewählt",
126
128
  "i18n.qd.stepper.step.one": "Consignee",
127
129
  "i18n.qd.stepper.step.two": "Cargo",
128
130
  "i18n.qd.stepper.step.three": "Transport",