@quadrel-enterprise-ui/framework 20.10.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
 
@@ -9677,7 +9720,7 @@ declare class QdContactCardMenuComponent implements OnInit, OnDestroy {
9677
9720
 
9678
9721
  declare class QdContactCardModule {
9679
9722
  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]>;
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]>;
9681
9724
  static ɵinj: i0.ɵɵInjectorDeclaration<QdContactCardModule>;
9682
9725
  }
9683
9726
 
@@ -10215,7 +10258,7 @@ declare class QdSpinnerModule {
10215
10258
 
10216
10259
  declare class QdDialogModule {
10217
10260
  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]>;
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]>;
10219
10262
  static ɵinj: i0.ɵɵInjectorDeclaration<QdDialogModule>;
10220
10263
  }
10221
10264
 
@@ -10689,7 +10732,7 @@ declare class QdProgressBarModule {
10689
10732
 
10690
10733
  declare class QdFileCollectorModule {
10691
10734
  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]>;
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]>;
10693
10736
  static ɵinj: i0.ɵɵInjectorDeclaration<QdFileCollectorModule>;
10694
10737
  }
10695
10738
 
@@ -11186,7 +11229,7 @@ declare class QdFilterItemSingleSelectComponent implements OnInit, OnDestroy {
11186
11229
 
11187
11230
  declare class QdFilterModule {
11188
11231
  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]>;
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]>;
11190
11233
  static ɵinj: i0.ɵɵInjectorDeclaration<QdFilterModule>;
11191
11234
  }
11192
11235
 
@@ -11502,7 +11545,7 @@ declare class NavigationTileComponent implements OnInit {
11502
11545
 
11503
11546
  declare class QdNavigationTilesModule {
11504
11547
  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]>;
11548
+ static ɵmod: i0.ɵɵNgModuleDeclaration<QdNavigationTilesModule, [typeof NavigationTilesComponent, typeof NavigationTileComponent], [typeof i2.CommonModule, typeof QdIconModule, typeof i9.TranslateModule], [typeof NavigationTilesComponent, typeof NavigationTileComponent]>;
11506
11549
  static ɵinj: i0.ɵɵInjectorDeclaration<QdNavigationTilesModule>;
11507
11550
  }
11508
11551
 
@@ -14067,13 +14110,13 @@ declare class QdSectionToolbarActionComponent implements OnInit, OnDestroy {
14067
14110
 
14068
14111
  declare class QdSearchModule {
14069
14112
  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]>;
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]>;
14071
14114
  static ɵinj: i0.ɵɵInjectorDeclaration<QdSearchModule>;
14072
14115
  }
14073
14116
 
14074
14117
  declare class QdSectionModule {
14075
14118
  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]>;
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]>;
14077
14120
  static ɵinj: i0.ɵɵInjectorDeclaration<QdSectionModule>;
14078
14121
  }
14079
14122
 
@@ -14162,6 +14205,7 @@ declare enum QdTableConnectorState {
14162
14205
  interface QdTableState<T extends string> {
14163
14206
  data: QdTableData<T>;
14164
14207
  selectedRows?: QdTableRowIdentifier[];
14208
+ selectedRowsData?: Record<QdTableRowIdentifier, QdTableSelectedRow<string>>;
14165
14209
  recentSecondaryAction?: QdTableRecentSecondaryAction<T>;
14166
14210
  hasResolver?: boolean;
14167
14211
  hasPagination?: boolean;
@@ -14222,6 +14266,7 @@ declare class QdTablePaginatorComponent<T extends string> implements OnInit, OnD
14222
14266
  currentPage$: Observable<QdTablePaginatorCurrentPage | undefined>;
14223
14267
  pageSize$: Observable<number>;
14224
14268
  totalCount$: Observable<number>;
14269
+ selectedRowsCount$: Observable<number>;
14225
14270
  pageNav?: typeof QdPaginatorDirection;
14226
14271
  private _destroyed$;
14227
14272
  get pageSizes(): number[];
@@ -14440,6 +14485,7 @@ declare class QdTableComponent<T extends string> implements OnInit, OnChanges, O
14440
14485
  private _breakpointSubscription?;
14441
14486
  private _pushEventsSubscription?;
14442
14487
  private _refreshSubscription?;
14488
+ private _deselectAllSubscription?;
14443
14489
  private _connectors;
14444
14490
  get whichColumnFillsWidth(): QdTableFillingColumn;
14445
14491
  get hasResolver(): boolean;
@@ -14888,6 +14934,7 @@ declare class QdTableBodyComponent<T extends string> implements OnInit, OnDestro
14888
14934
  testId?: string;
14889
14935
  isLoading$: Observable<boolean>;
14890
14936
  highlightedRowIdentifier: QdTableRowIdentifier | undefined;
14937
+ trackByRowIdentifier: TrackByFunction<QdTableDataRow<T>>;
14891
14938
  private _primaryActionRefreshSubscription?;
14892
14939
  constructor();
14893
14940
  ngOnInit(): void;
@@ -14929,6 +14976,7 @@ declare class QdTableHeadComponent<T extends string> implements OnInit {
14929
14976
  capitalize(head: any): string;
14930
14977
  getSortableByColumn(columnName: string): boolean;
14931
14978
  getSortConfig(columnName: string): QdTableConfigColumnSort;
14979
+ getTooltip(columnName: string): QdTooltip | undefined;
14932
14980
  static ɵfac: i0.ɵɵFactoryDeclaration<QdTableHeadComponent<any>, never>;
14933
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>;
14934
14982
  }
@@ -15028,6 +15076,7 @@ declare class QdTableRowComponent<T extends string> implements OnInit {
15028
15076
  getComponentType(item: T | string): Type<QdDataFacetsComponent> | null;
15029
15077
  getComponentInputs(item: T | string): Record<string, unknown>;
15030
15078
  findColumnType(item: T): QdDataFacetsType;
15079
+ getTooltip(item: T): QdTooltip | undefined;
15031
15080
  static ɵfac: i0.ɵɵFactoryDeclaration<QdTableRowComponent<any>, never>;
15032
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>;
15033
15082
  }
@@ -15293,19 +15342,19 @@ declare class QdTreeRowActionsSecondaryMenuComponent<T extends string> implement
15293
15342
 
15294
15343
  declare class QdTreeModule {
15295
15344
  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]>;
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]>;
15297
15346
  static ɵinj: i0.ɵɵInjectorDeclaration<QdTreeModule>;
15298
15347
  }
15299
15348
 
15300
15349
  declare class QdTableModule {
15301
15350
  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]>;
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]>;
15303
15352
  static ɵinj: i0.ɵɵInjectorDeclaration<QdTableModule>;
15304
15353
  }
15305
15354
 
15306
15355
  declare class QdPageModule {
15307
15356
  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]>;
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]>;
15309
15358
  static ɵinj: i0.ɵɵInjectorDeclaration<QdPageModule>;
15310
15359
  }
15311
15360
 
@@ -15482,7 +15531,7 @@ declare class QdPanelSectionActionsComponent {
15482
15531
 
15483
15532
  declare class QdPanelSectionModule {
15484
15533
  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]>;
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]>;
15486
15535
  static ɵinj: i0.ɵɵInjectorDeclaration<QdPanelSectionModule>;
15487
15536
  }
15488
15537
 
@@ -16820,7 +16869,7 @@ declare class QdShellServiceNavigationModule {
16820
16869
 
16821
16870
  declare class QdShellModule {
16822
16871
  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]>;
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]>;
16824
16873
  static ɵinj: i0.ɵɵInjectorDeclaration<QdShellModule>;
16825
16874
  }
16826
16875
 
@@ -16963,7 +17012,7 @@ declare class QdStriphtmlPipe implements PipeTransform {
16963
17012
 
16964
17013
  declare class QdCommentsModule {
16965
17014
  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]>;
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]>;
16967
17016
  static ɵinj: i0.ɵɵInjectorDeclaration<QdCommentsModule>;
16968
17017
  }
16969
17018
 
@@ -17018,7 +17067,7 @@ declare class QdPageStepHeaderComponent extends CdkStepHeader {
17018
17067
 
17019
17068
  declare class QdPageStepperModule {
17020
17069
  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]>;
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]>;
17022
17071
  static ɵinj: i0.ɵɵInjectorDeclaration<QdPageStepperModule>;
17023
17072
  }
17024
17073
 
@@ -17065,7 +17114,7 @@ declare class QdPageTabHeaderCountersComponent implements OnInit {
17065
17114
 
17066
17115
  declare class QdPageTabsModule {
17067
17116
  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]>;
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]>;
17069
17118
  static ɵinj: i0.ɵɵInjectorDeclaration<QdPageTabsModule>;
17070
17119
  }
17071
17120
 
@@ -17484,7 +17533,6 @@ declare class QdQuickEditComponent<T extends string> implements OnInit, OnChange
17484
17533
  createRow(): void;
17485
17534
  removeRow(index: number): void;
17486
17535
  private executeRemoveRow;
17487
- hasTooltip(tooltip: QdTooltip): boolean;
17488
17536
  private initRows;
17489
17537
  private initCreating;
17490
17538
  private createFormGroupRow;
@@ -17507,7 +17555,7 @@ declare class QdFocusableModule {
17507
17555
 
17508
17556
  declare class QdQuickEditModule {
17509
17557
  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]>;
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]>;
17511
17559
  static ɵinj: i0.ɵɵInjectorDeclaration<QdQuickEditModule>;
17512
17560
  }
17513
17561
 
@@ -17520,5 +17568,5 @@ declare class QdUiModule {
17520
17568
 
17521
17569
  declare const APP_ENVIRONMENT: InjectionToken<QdAppEnvironment>;
17522
17570
 
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 };
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 };
17524
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",
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",
@@ -111,6 +111,8 @@
111
111
  "i18n.qd.table.pagination.of": "of",
112
112
  "i18n.qd.table.pagination.entries": "entries",
113
113
  "i18n.qd.table.pagination.entry": "entry",
114
+ "i18n.qd.table.pagination.selectedSingular": "1 row selected",
115
+ "i18n.qd.table.pagination.selectedPlural": "{{count}} rows selected",
114
116
  "i18n.contact.function.sender": "Sender",
115
117
  "i18n.contact.companyName.placeholder": "Company Name",
116
118
  "i18n.contact.businessPartnerId.placeholder": "GP-Number",
@@ -111,6 +111,8 @@
111
111
  "i18n.qd.table.pagination.of": "des",
112
112
  "i18n.qd.table.pagination.entries": "entrées",
113
113
  "i18n.qd.table.pagination.entry": "entrée",
114
+ "i18n.qd.table.pagination.selectedSingular": "1 ligne sélectionnée",
115
+ "i18n.qd.table.pagination.selectedPlural": "{{count}} lignes sélectionnées",
114
116
  "i18n.contact.function.sender": "Envoyeur",
115
117
  "i18n.contact.companyName.placeholder": "Raison Familiale",
116
118
  "i18n.contact.businessPartnerId.placeholder": "Numéro GP",
@@ -111,6 +111,8 @@
111
111
  "i18n.qd.table.pagination.of": "di",
112
112
  "i18n.qd.table.pagination.entries": "voci",
113
113
  "i18n.qd.table.pagination.entry": "voce",
114
+ "i18n.qd.table.pagination.selectedSingular": "1 riga selezionata",
115
+ "i18n.qd.table.pagination.selectedPlural": "{{count}} righe selezionate",
114
116
  "i18n.contact.function.sender": "Speditore",
115
117
  "i18n.contact.companyName.placeholder": "Ragione Sociale",
116
118
  "i18n.contact.businessPartnerId.placeholder": "Numero GP",