@quadrel-enterprise-ui/framework 20.27.1 → 21.0.0-beta.226.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -302,7 +302,6 @@ declare class QdNotificationsService {
302
302
  }
303
303
 
304
304
  declare const BACKEND_ERROR_CODES: InjectionToken<Record<string, string>>;
305
- declare const WHITELIST_ERROR_CODES: InjectionToken<number[]>;
306
305
  /**
307
306
  * The QdNotificationsHttpInterceptorService is an Angular HTTP interceptor that captures error responses from HTTP requests and generates notifications for backend errors. This Service not only intercepts error responses, but it also handles specific error codes and translates them into appropriate error messages for display.
308
307
  */
@@ -3355,7 +3354,6 @@ declare class QdMockFilterItemDateRangeComponent {
3355
3354
  timePickerConfig?: QdFormTimepickerConfiguration;
3356
3355
  testId: any;
3357
3356
  get dataTestId(): string;
3358
- open(): void;
3359
3357
  static ɵfac: i0.ɵɵFactoryDeclaration<QdMockFilterItemDateRangeComponent, never>;
3360
3358
  static ɵcmp: i0.ɵɵComponentDeclaration<QdMockFilterItemDateRangeComponent, "qd-filter-item-date-range", never, { "filterId": { "alias": "filterId"; "required": false; }; "categoryIndex": { "alias": "categoryIndex"; "required": false; }; "itemIndex": { "alias": "itemIndex"; "required": false; }; "timePickerConfig": { "alias": "timePickerConfig"; "required": false; }; "testId": { "alias": "data-test-id"; "required": false; }; }, {}, never, never, false, never>;
3361
3359
  }
@@ -3413,15 +3411,12 @@ declare class QdMockFilterService {
3413
3411
  private postBodyWithEmptyDefaultSubjects;
3414
3412
  private categoryByIdSubject;
3415
3413
  private itemByIdSubject;
3416
- private loadingSubject;
3417
3414
  initializeFilterState(): void;
3418
3415
  updateFilterState(): void;
3419
3416
  getFilterState(): void;
3420
3417
  setFilterSelection: any;
3421
3418
  updateItem: any;
3422
3419
  setItemIsActive: any;
3423
- clearCategorySelection: any;
3424
- setItemsLoading: any;
3425
3420
  selectFilterDataById$: any;
3426
3421
  getQueryString$(filterId: any): Observable<string>;
3427
3422
  getFilterUrlParameter$(filterId: any): Observable<string>;
@@ -3430,7 +3425,6 @@ declare class QdMockFilterService {
3430
3425
  getPostBodyWithEmptyDefault$(filterId: any): Observable<QdFilterPostBodyData>;
3431
3426
  getCategoryById$(filterId: any): Observable<any>;
3432
3427
  getItemById$(filterId: any): Observable<any>;
3433
- getItemsLoading$(filterId: any): Observable<boolean>;
3434
3428
  getQueryStringSubject(filterId: any): Subject<string>;
3435
3429
  getFilterUrlParameterSubject(filterId: any): Subject<string>;
3436
3430
  getPostBodySubject(filterId: any): Subject<QdFilterPostBodyData>;
@@ -3439,7 +3433,6 @@ declare class QdMockFilterService {
3439
3433
  getMaxDate$: any;
3440
3434
  emitCategory(value: any, filterId: any): void;
3441
3435
  emitItem(value: any, filterId: any): void;
3442
- emitLoading(value: any, filterId: any): void;
3443
3436
  static ɵfac: i0.ɵɵFactoryDeclaration<QdMockFilterService, never>;
3444
3437
  static ɵprov: i0.ɵɵInjectableDeclaration<QdMockFilterService>;
3445
3438
  }
@@ -5196,7 +5189,6 @@ interface QdPopoverSizeConstraints {
5196
5189
  * - The returned Observable emits `true` once initial sizing is applied and overlay is visible.
5197
5190
  * - Even if autosize is turned off, the minimum and maximum width or height constraints are always enforced as hard limits.
5198
5191
  * - This means the popover can never be smaller or larger than the values you set, no matter what content it contains.
5199
- * - The width is also capped to the current screen width, so the popover never reaches past the screen edge — even if a larger maxWidth is set.
5200
5192
  *
5201
5193
  * #### For the hidden-content measuring
5202
5194
  * @see https://stackoverflow.com/questions/1841124/find-the-potential-width-of-a-hidden-element
@@ -5216,7 +5208,6 @@ declare class QdPopoverSizingService {
5216
5208
  observe(host: HTMLElement, popover: HTMLElement, overlayRef: OverlayRef, autoSize: QdPopoverAutoSizeConfig, constraints: QdPopoverSizeConstraints): Observable<boolean>;
5217
5209
  private showOverlay;
5218
5210
  private hideOverlay;
5219
- private resolveWidthLimits;
5220
5211
  private applySize;
5221
5212
  private measureContentSize;
5222
5213
  disconnect(): void;
@@ -5231,26 +5222,6 @@ declare class QdPopoverParentService {
5231
5222
  static ɵprov: i0.ɵɵInjectableDeclaration<QdPopoverParentService>;
5232
5223
  }
5233
5224
 
5234
- /**
5235
- * **QdPopoverOnClickDirective**
5236
- *
5237
- * Shows a popover next to its host element and opens or closes it on host click.
5238
- *
5239
- * It is an internal building block. Quadrel components such as dropdowns, menu buttons and
5240
- * filters build on it; consumers do not use it directly.
5241
- *
5242
- * #### Features:
5243
- * - Opens the popover on click and closes it on the next click or an outside click.
5244
- * - With `qdPopoverEnableKeyControl`, Enter and Space open it, Escape and Tab close it.
5245
- * - Sizes the popover to its host or content within the min/max limits, and never wider than the screen.
5246
- * - Places it with the Angular CDK; with `qdPopoverFlipIntoViewport` it opens to the side that has room instead of off the screen edge.
5247
- * - Keeps only one popover open: opening one closes the others, but a nested popover keeps its parents open.
5248
- *
5249
- * #### Notes & Best Practices
5250
- * - Emits `opened` and `closed` so consumers can react.
5251
- * - The flip is opt-in, so popovers that already sit correctly stay as they are.
5252
- * - Not part of the public API; use the higher-level components like `qd-dropdown` or `qd-menu-button` instead.
5253
- */
5254
5225
  declare class QdPopoverOnClickDirective implements OnInit, OnDestroy {
5255
5226
  protected hostRef: ElementRef<HTMLElement>;
5256
5227
  protected overlayPositionBuilder: OverlayPositionBuilder;
@@ -5269,37 +5240,24 @@ declare class QdPopoverOnClickDirective implements OnInit, OnDestroy {
5269
5240
  qdPopoverMaxWidth: number | 'none';
5270
5241
  qdPopoverAutoSize: QdPopoverAutoSizeConfig;
5271
5242
  qdPopoverEnableKeyControl: boolean;
5272
- qdPopoverFlipIntoViewport: boolean;
5273
5243
  readonly opened: EventEmitter<any>;
5274
5244
  readonly closed: EventEmitter<any>;
5275
5245
  handleClick(event: MouseEvent): void;
5276
5246
  handleDocumentClick(event: PointerEvent): void;
5277
5247
  handleCloseKeys(): void;
5278
- handleOpenKey(event: KeyboardEvent): void;
5248
+ handleOpenKey(event: Event): void;
5279
5249
  overlayRef: OverlayRef;
5280
5250
  private _host;
5281
5251
  private _popoverRef;
5282
5252
  private _positionStrategyInstance;
5283
- private _resolvedPositions;
5284
5253
  private _subscriptions;
5285
5254
  constructor();
5286
5255
  ngOnInit(): void;
5287
5256
  ngOnDestroy(): void;
5288
5257
  open(): void;
5289
- /**
5290
- * Re-aligns an open overlay with its origin element.
5291
- *
5292
- * The connected position is only recomputed on scroll/resize, not when a
5293
- * layout reflow moves the origin (e.g. a chip or action buttons appearing in
5294
- * the host). Call this after such a reflow to keep the overlay attached to the
5295
- * host. Deferred by one frame so the new layout is measured, and a no-op while
5296
- * the overlay is detached, so it stays cheap to call on discrete events.
5297
- */
5298
- updatePosition(): void;
5299
5258
  close(): void;
5300
5259
  private popoverInstance;
5301
5260
  private initPositionStrategy;
5302
- private withHorizontalFallbacks;
5303
5261
  private createOverlay;
5304
5262
  private runSizingAndOpen;
5305
5263
  private setPopoverContent;
@@ -5309,7 +5267,7 @@ declare class QdPopoverOnClickDirective implements OnInit, OnDestroy {
5309
5267
  private unsubscribeAll;
5310
5268
  private cleanup;
5311
5269
  static ɵfac: i0.ɵɵFactoryDeclaration<QdPopoverOnClickDirective, never>;
5312
- static ɵdir: i0.ɵɵDirectiveDeclaration<QdPopoverOnClickDirective, "[qdPopoverOnClick]", ["qdPopoverOnClick"], { "qdPopoverOnClick": { "alias": "qdPopoverOnClick"; "required": false; }; "positionStrategy": { "alias": "positionStrategy"; "required": false; }; "qdPopoverCloseStrategy": { "alias": "qdPopoverCloseStrategy"; "required": false; }; "qdPopoverDisabled": { "alias": "qdPopoverDisabled"; "required": false; }; "qdPopoverStopPropagation": { "alias": "qdPopoverStopPropagation"; "required": false; }; "qdPopoverBackgroundColor": { "alias": "qdPopoverBackgroundColor"; "required": false; }; "qdPopoverMaxHeight": { "alias": "qdPopoverMaxHeight"; "required": false; }; "qdPopoverMinWidth": { "alias": "qdPopoverMinWidth"; "required": false; }; "qdPopoverMaxWidth": { "alias": "qdPopoverMaxWidth"; "required": false; }; "qdPopoverAutoSize": { "alias": "qdPopoverAutoSize"; "required": false; }; "qdPopoverEnableKeyControl": { "alias": "qdPopoverEnableKeyControl"; "required": false; }; "qdPopoverFlipIntoViewport": { "alias": "qdPopoverFlipIntoViewport"; "required": false; }; }, { "opened": "opened"; "closed": "closed"; }, never, never, false, never>;
5270
+ static ɵdir: i0.ɵɵDirectiveDeclaration<QdPopoverOnClickDirective, "[qdPopoverOnClick]", ["qdPopoverOnClick"], { "qdPopoverOnClick": { "alias": "qdPopoverOnClick"; "required": false; }; "positionStrategy": { "alias": "positionStrategy"; "required": false; }; "qdPopoverCloseStrategy": { "alias": "qdPopoverCloseStrategy"; "required": false; }; "qdPopoverDisabled": { "alias": "qdPopoverDisabled"; "required": false; }; "qdPopoverStopPropagation": { "alias": "qdPopoverStopPropagation"; "required": false; }; "qdPopoverBackgroundColor": { "alias": "qdPopoverBackgroundColor"; "required": false; }; "qdPopoverMaxHeight": { "alias": "qdPopoverMaxHeight"; "required": false; }; "qdPopoverMinWidth": { "alias": "qdPopoverMinWidth"; "required": false; }; "qdPopoverMaxWidth": { "alias": "qdPopoverMaxWidth"; "required": false; }; "qdPopoverAutoSize": { "alias": "qdPopoverAutoSize"; "required": false; }; "qdPopoverEnableKeyControl": { "alias": "qdPopoverEnableKeyControl"; "required": false; }; }, { "opened": "opened"; "closed": "closed"; }, never, never, false, never>;
5313
5271
  }
5314
5272
 
5315
5273
  /**
@@ -6329,7 +6287,6 @@ declare class QdDatepickerComponent implements ControlValueAccessor, OnInit, OnC
6329
6287
  registerOnTouched(fn: () => void): void;
6330
6288
  writeValue(date: Date): void;
6331
6289
  setDisabledState(disabled: boolean): void;
6332
- open(): void;
6333
6290
  handleUpdatedDate($rawValue: QdInputRawEventValue): void;
6334
6291
  handleUpdatedTime($event: string): void;
6335
6292
  handleUpdatedDateTime($rawValue: QdInputRawEventValue): void;
@@ -8995,25 +8952,10 @@ declare class QdMultiInputMenuComponent implements AfterViewInit {
8995
8952
  static ɵcmp: i0.ɵɵComponentDeclaration<QdMultiInputMenuComponent, "qd-multi-input-menu", never, { "id": { "alias": "id"; "required": false; }; "optionsListForView": { "alias": "optionsListForView"; "required": false; }; "testId": { "alias": "data-test-id"; "required": false; }; }, { "itemClick": "itemClick"; }, never, never, false, never>;
8996
8953
  }
8997
8954
 
8998
- /**
8999
- * Focuses its host element once, after the initial view init, when `qdAutofocus` is `true`.
9000
- *
9001
- * Init-only by design: the input is read in `ngAfterViewInit` only. A later `false -> true`
9002
- * change on an already-rendered element is intentionally ignored to avoid stealing focus
9003
- * mid-interaction (this mirrors the native `autofocus` attribute). An element that appears
9004
- * later (e.g. via `*ngIf`) still autofocuses, because `ngAfterViewInit` runs when it is created.
9005
- *
9006
- * Coordinated app-wide through {@link QdAutofocusService}: only one element may autofocus per
9007
- * view; the guard is released once the focused element blurs, so a newly opened view can
9008
- * autofocus again. Using it on more than one active element at a time logs a warning and is
9009
- * ignored for the surplus elements.
9010
- */
9011
8955
  declare class QdAutofocusDirective implements AfterViewInit, OnDestroy {
9012
8956
  private readonly autofocusService;
9013
8957
  private readonly elementRef;
9014
8958
  qdAutofocus: boolean;
9015
- private _timeoutId?;
9016
- private _blurHandler?;
9017
8959
  ngAfterViewInit(): void;
9018
8960
  ngOnDestroy(): void;
9019
8961
  static ɵfac: i0.ɵɵFactoryDeclaration<QdAutofocusDirective, never>;
@@ -9048,7 +8990,7 @@ declare class QdTooltipOnClickDirective implements OnDestroy {
9048
8990
  */
9049
8991
  qdTooltipContent?: QdTooltipContent;
9050
8992
  onClickToggle(event: MouseEvent): void;
9051
- onOutsideClickClose(target: HTMLElement): void;
8993
+ onOutsideClickClose(target: EventTarget | null): void;
9052
8994
  private readonly overlay;
9053
8995
  private readonly elementRef;
9054
8996
  private readonly translateService;
@@ -11563,7 +11505,6 @@ declare class QdFilterService {
11563
11505
  private queryStringSubjects;
11564
11506
  private filterUrlParameterSubjects;
11565
11507
  private postBodySubjects;
11566
- private itemsLoadingSubjects;
11567
11508
  getItems$(filterId: any, categoryIndex: any): Observable<any>;
11568
11509
  getItemById$(filterId: any, categoryIndex: any, itemIndex: any): Observable<QdFilterItem>;
11569
11510
  getMinDate$(filterId: any, categoryIndex: any, itemIndex: any): Observable<string | undefined>;
@@ -11583,7 +11524,6 @@ declare class QdFilterService {
11583
11524
  selectFilterDataById$(filterId: any): Observable<QdFilterCategory[]>;
11584
11525
  selectHasActiveCategory$(filterId: any): Observable<boolean>;
11585
11526
  getCategoryById$(filterId: any, categoryIndex: any): Observable<any>;
11586
- getItemsLoading$(filterId: any, categoryIndex: any): Observable<boolean>;
11587
11527
  getFilterCategoryValue$(filterId: any, categoryIndex: any): Observable<any>;
11588
11528
  /**
11589
11529
  * Action dispatcher
@@ -11599,9 +11539,6 @@ declare class QdFilterService {
11599
11539
  resetEmissionReplaySubjects(filterId: any): void;
11600
11540
  setCategoryFilter(filterId: any, categoryIndex: number, filter: string): void;
11601
11541
  resetCategoryFilter(filterId: string, categoryIndex: number): void;
11602
- clearCategorySelection(filterId: string, categoryIndex: number): void;
11603
- setItemsLoading(filterId: string, categoryIndex: number, loading: boolean): void;
11604
- private getItemsLoadingSubject;
11605
11542
  private getQueryStringSubject;
11606
11543
  private getFilterUrlParameterSubject;
11607
11544
  private getPostBodySubject;
@@ -11610,123 +11547,43 @@ declare class QdFilterService {
11610
11547
  }
11611
11548
 
11612
11549
  /**
11613
- * **QdFilterComponent** lets users build and apply a filter with several categories over a data set.
11614
- *
11615
- * #### **Features**
11550
+ * The **QdFilter** is responsible for the filtering of data.
11616
11551
  *
11617
- * - **Category types**: single and multi select dropdowns, a boolean toggle, date and date-time pickers, date and date-time ranges, and free text. A select dropdown can also show a filter field that narrows the item list.
11618
- * - **Outputs**: react to the applied selection through the query-string and post-body outputs, or read the current selection at any time.
11619
- * - **Multi-staging**: chain categories so one stage loads its items from the selection of another.
11620
- * - **URL sync**: the selection is kept in the URL, so a view can be shared, bookmarked, and reopened.
11552
+ * Hirarchical structure::
11553
+ * - **Filter**: Name of the component.
11554
+ * - **Categories**: A list of one or more different categories.
11555
+ * - **Items**: A list with one or more items belongs to a parent category.
11621
11556
  *
11622
- * #### **Quick start**
11557
+ * ### Filter selection ###
11623
11558
  *
11624
- * **1. Add the filter to the template**
11559
+ * To get the applied filters you can listen to the outputs `(queryStringOutput)` and `(postBodyOutput)`.
11560
+ * These outputs will be emitted when the filter is triggered. The `(queryStringOutput)` returns
11561
+ * the applied filters as an url string with an encoded *filter* parameter. The `(postBodyOutput)`
11562
+ * yields an object containing the categories and active items.
11625
11563
  *
11626
- * ```html
11627
- * <qd-filter
11628
- * [filterData]="myFilterConfig"
11629
- * (queryStringOutput)="callBackendWithQueryString($event)"
11630
- * (postBodyOutput)="callBackendWithResultObject($event)"
11631
- * ></qd-filter>
11632
- * ```
11564
+ * In addition to the outputs, you also can query the current filter selection with the
11565
+ * filter component methods `getCurrentQueryString`, `getCurrentFilterUrlParameterString` and `getCurrentPostBody`.
11633
11566
  *
11634
- * **2. Define the config in your component**
11567
+ * ### Preserve filter state ###
11635
11568
  *
11636
- * ```typescript
11637
- * myFilterConfig: QdFilterConfigData = {
11638
- * categories: [
11639
- * {
11640
- * type: 'singleSelect',
11641
- * category: 'controlObject',
11642
- * i18n: 'i18n.my.category.controlObject',
11643
- * items: [
11644
- * { item: 'vehicle', i18n: 'i18n.my.item.vehicle', active: true },
11645
- * { item: 'article', i18n: 'i18n.my.item.article' }
11646
- * ],
11647
- * filter: true
11648
- * },
11649
- * {
11650
- * type: 'multiSelect',
11651
- * category: 'enrollmentCountry',
11652
- * i18n: 'i18n.my.category.enrollmentCountry',
11653
- * items: [
11654
- * { item: 'de', i18n: 'i18n.my.item.de' },
11655
- * { item: 'ch', i18n: 'i18n.my.item.ch' }
11656
- * ]
11657
- * }
11658
- * ],
11659
- * uid: 'overview-filter'
11660
- * };
11661
- * ```
11662
- *
11663
- * The `filterData` input is the only configuration. It holds the categories and the behavior flags.
11664
- *
11665
- * #### **Category types**
11569
+ * To preserve the filter state when navigating, for example between detail and overview page, you just have to define
11570
+ * a uid in the filter data config.
11666
11571
  *
11667
- * A category sets its type to one of: singleSelect, multiSelect, boolean, date, dateTime,
11668
- * dateRange, dateTimeRange or freeText. Single and multi select show a dropdown, boolean is a
11669
- * toggle, the date types open a picker (the date-time variants add a time picker), and free text
11670
- * is a text field applied on enter.
11572
+ * ### Multi Staging Filters
11671
11573
  *
11672
- * On a single or multi select you can add a filter field above the items with `filter: true` to
11673
- * narrow the item list. It has no effect on the other types.
11574
+ * To build a dependency chain of filters you can use the `dependsOn` property of a filter that depends on
11575
+ * other filters. In the `dependsOn` property you set the names of the filter categories the category depends on.
11576
+ * Always when one of these categories change the `itemsResolver` will be called with the list
11577
+ * of categories given in `dependsOn`. The `itemsResolver` can also be defined in the config where `dependsOn`
11578
+ * is also defined.
11674
11579
  *
11675
- * #### **Filter selection**
11580
+ * If the items resolver has not been called yet or when it returns an empty array of items,
11581
+ * the corresponding filter stage won't be rendered.
11676
11582
  *
11677
- * Listen to the outputs to react when the user applies the filter. The query-string output gives
11678
- * the selection as a URL string (for example filter=...); the post-body output gives it as an
11679
- * object with the active categories and their values.
11583
+ * #### Support
11680
11584
  *
11681
- * The outputs fire when the user applies the filter, on reset (only when a preselection exists),
11682
- * when the last active item is removed, and on load if a category starts active.
11585
+ * Multi Staging Filters only work for `singleSelect` and `multiSelect` filters.
11683
11586
  *
11684
- * To read the selection without waiting for an apply, call `getCurrentQueryString` or
11685
- * `getCurrentPostBody`, or subscribe to `getFilterChanges$` for a continuous stream.
11686
- *
11687
- * #### **Multi-staging filters**
11688
- *
11689
- * To chain categories, give one a `dependsOn` list and an `itemsResolver`. In `dependsOn` you
11690
- * name the parent categories. The resolver receives the active parents and returns the items for
11691
- * this stage.
11692
- *
11693
- * ```typescript
11694
- * const cityCategory: QdDependentFilterCategory = {
11695
- * type: 'multiSelect',
11696
- * category: 'city',
11697
- * i18n: 'i18n.my.category.city',
11698
- * dependsOn: ['country'],
11699
- * itemsResolver: ([country]) =>
11700
- * loadCitiesFor(country.items.filter(item => item.active)),
11701
- * filter: true
11702
- * };
11703
- * ```
11704
- *
11705
- * The stage appears once every parent has an active item. While its items load, the open
11706
- * dropdown shows a loading text instead of the list. If the resolver returns nothing, the list
11707
- * stays empty. Multi-staging works only for single and multi select categories.
11708
- *
11709
- * #### **URL synchronization**
11710
- *
11711
- * The filter keeps its selection in the URL filter parameter: it is saved when the selection
11712
- * changes and read back when the page opens, so a user can share or bookmark the URL and return
11713
- * to the same filter.
11714
- *
11715
- * This is on by default. With more than one filter in a view, only one may own the URL, so set
11716
- * `connectWithRouter` to false on every other filter.
11717
- *
11718
- * #### **Preserve filter state**
11719
- *
11720
- * Give the config a stable `uid` to keep the selection while the user moves around the app, for
11721
- * example from an overview to a detail page and back. The selection is restored the next time a
11722
- * filter with the same `uid` is shown.
11723
- *
11724
- * #### **Reset behavior**
11725
- *
11726
- * An item set to active is a preselection. The reset button reads "Reset" when there is no
11727
- * preselection, and "Back to preselection" when the config starts with active items. It restores
11728
- * the initial state. With instant filtering (`isInstantFiltering`) the apply and reset buttons
11729
- * are hidden and the filter applies on every change.
11730
11587
  */
11731
11588
  declare class QdFilterComponent implements OnInit, OnChanges, OnDestroy {
11732
11589
  readonly filterService: QdFilterService;
@@ -11973,7 +11830,6 @@ declare class QdFilterItemDateComponent implements OnInit, OnDestroy {
11973
11830
  clickTimePlaceholder: EventEmitter<boolean>;
11974
11831
  testId: string;
11975
11832
  get dataTestId(): string;
11976
- private datepicker?;
11977
11833
  datepickerConfig: QdFormDatepickerConfiguration;
11978
11834
  item: Date;
11979
11835
  private _destroyed$;
@@ -11981,12 +11837,36 @@ declare class QdFilterItemDateComponent implements OnInit, OnDestroy {
11981
11837
  ngOnDestroy(): void;
11982
11838
  handleDateChange(date: Date): void;
11983
11839
  handleClickTimePlaceholder($event: boolean): void;
11984
- open(): void;
11985
11840
  private subscribeGetItem;
11986
11841
  static ɵfac: i0.ɵɵFactoryDeclaration<QdFilterItemDateComponent, never>;
11987
11842
  static ɵcmp: i0.ɵɵComponentDeclaration<QdFilterItemDateComponent, "qd-filter-item-date", never, { "filterId": { "alias": "filterId"; "required": false; }; "categoryIndex": { "alias": "categoryIndex"; "required": false; }; "itemIndex": { "alias": "itemIndex"; "required": false; }; "timePickerConfig": { "alias": "timePickerConfig"; "required": false; }; "testId": { "alias": "data-test-id"; "required": false; }; }, { "clickTimePlaceholder": "clickTimePlaceholder"; }, never, never, false, never>;
11988
11843
  }
11989
11844
 
11845
+ declare class QdFilterItemDateRangeCategoryComponent implements OnInit {
11846
+ private readonly filterService;
11847
+ filterId: string;
11848
+ categoryIndex: number;
11849
+ testId: string;
11850
+ timePickerConfig?: QdFormTimepickerConfiguration;
11851
+ i18n$: Observable<string>;
11852
+ fromItem$: Observable<QdFilterItem>;
11853
+ fromItemIndex: number;
11854
+ fromItemTimePickerConfig: QdFormTimepickerConfiguration;
11855
+ fromItemTimePlaceholderClicked: boolean;
11856
+ untilItem$: Observable<QdFilterItem>;
11857
+ untilItemIndex: number;
11858
+ untilItemTimePickerConfig: QdFormTimepickerConfiguration;
11859
+ untilItemTimePlaceholderClicked: boolean;
11860
+ ngOnInit(): void;
11861
+ removeItem(itemIndex: any): void;
11862
+ handleFromTimePlaceholderClicked($event: boolean): void;
11863
+ handleUntilTimePlaceholderClicked($event: boolean): void;
11864
+ private setCategoryI18n;
11865
+ private setFromItem;
11866
+ static ɵfac: i0.ɵɵFactoryDeclaration<QdFilterItemDateRangeCategoryComponent, never>;
11867
+ static ɵcmp: i0.ɵɵComponentDeclaration<QdFilterItemDateRangeCategoryComponent, "qd-filter-category-date-range", never, { "filterId": { "alias": "filterId"; "required": false; }; "categoryIndex": { "alias": "categoryIndex"; "required": false; }; "testId": { "alias": "data-test-id"; "required": false; }; "timePickerConfig": { "alias": "timePickerConfig"; "required": false; }; }, {}, never, never, false, never>;
11868
+ }
11869
+
11990
11870
  declare class QdFilterItemDateRangeComponent implements OnInit, OnDestroy {
11991
11871
  private readonly filterService;
11992
11872
  filterId: string;
@@ -12000,8 +11880,6 @@ declare class QdFilterItemDateRangeComponent implements OnInit, OnDestroy {
12000
11880
  private _destroyed$;
12001
11881
  get itemClassName(): string;
12002
11882
  get dataTestId(): string;
12003
- private datepicker?;
12004
- open(): void;
12005
11883
  get minDate$(): Observable<string | undefined>;
12006
11884
  get maxDate$(): Observable<string | undefined>;
12007
11885
  ngOnInit(): void;
@@ -12015,32 +11893,6 @@ declare class QdFilterItemDateRangeComponent implements OnInit, OnDestroy {
12015
11893
  static ɵcmp: i0.ɵɵComponentDeclaration<QdFilterItemDateRangeComponent, "qd-filter-item-date-range", never, { "filterId": { "alias": "filterId"; "required": false; }; "categoryIndex": { "alias": "categoryIndex"; "required": false; }; "itemIndex": { "alias": "itemIndex"; "required": false; }; "timePickerConfig": { "alias": "timePickerConfig"; "required": false; }; "testId": { "alias": "data-test-id"; "required": false; }; }, { "clickTimePlaceholder": "clickTimePlaceholder"; }, never, never, false, never>;
12016
11894
  }
12017
11895
 
12018
- declare class QdFilterItemDateRangeCategoryComponent implements OnInit {
12019
- private readonly filterService;
12020
- filterId: string;
12021
- categoryIndex: number;
12022
- testId: string;
12023
- timePickerConfig?: QdFormTimepickerConfiguration;
12024
- i18n$: Observable<string>;
12025
- fromItem$: Observable<QdFilterItem>;
12026
- fromItemIndex: number;
12027
- fromItemTimePickerConfig: QdFormTimepickerConfiguration;
12028
- fromItemTimePlaceholderClicked: boolean;
12029
- untilItem$: Observable<QdFilterItem>;
12030
- untilItemIndex: number;
12031
- untilItemTimePickerConfig: QdFormTimepickerConfiguration;
12032
- untilItemTimePlaceholderClicked: boolean;
12033
- ngOnInit(): void;
12034
- openItem(itemRef: QdFilterItemDateRangeComponent, event: Event): void;
12035
- removeItem(itemIndex: any): void;
12036
- handleFromTimePlaceholderClicked($event: boolean): void;
12037
- handleUntilTimePlaceholderClicked($event: boolean): void;
12038
- private setCategoryI18n;
12039
- private setFromItem;
12040
- static ɵfac: i0.ɵɵFactoryDeclaration<QdFilterItemDateRangeCategoryComponent, never>;
12041
- static ɵcmp: i0.ɵɵComponentDeclaration<QdFilterItemDateRangeCategoryComponent, "qd-filter-category-date-range", never, { "filterId": { "alias": "filterId"; "required": false; }; "categoryIndex": { "alias": "categoryIndex"; "required": false; }; "testId": { "alias": "data-test-id"; "required": false; }; "timePickerConfig": { "alias": "timePickerConfig"; "required": false; }; }, {}, never, never, false, never>;
12042
- }
12043
-
12044
11896
  declare class QdFilterItemFreeTextComponent implements OnInit, OnDestroy {
12045
11897
  private readonly filterService;
12046
11898
  filterId: string;
@@ -12053,7 +11905,6 @@ declare class QdFilterItemFreeTextComponent implements OnInit, OnDestroy {
12053
11905
  i18n: any;
12054
11906
  get dataTestId(): string;
12055
11907
  get value(): string;
12056
- inputValue: string;
12057
11908
  private _destroyed$;
12058
11909
  ngOnInit(): void;
12059
11910
  ngOnDestroy(): void;
@@ -12064,14 +11915,8 @@ declare class QdFilterItemFreeTextComponent implements OnInit, OnDestroy {
12064
11915
  static ɵcmp: i0.ɵɵComponentDeclaration<QdFilterItemFreeTextComponent, "qd-filter-item-free-text", never, { "filterId": { "alias": "filterId"; "required": false; }; "isInstantFiltering": { "alias": "isInstantFiltering"; "required": false; }; "categoryIndex": { "alias": "categoryIndex"; "required": false; }; "itemIndex": { "alias": "itemIndex"; "required": false; }; "testId": { "alias": "data-test-id"; "required": false; }; }, { "enterClick": "enterClick"; }, never, never, false, never>;
12065
11916
  }
12066
11917
 
12067
- interface QdFilterItemEntry {
12068
- item: QdFilterItem;
12069
- itemIndex: number;
12070
- }
12071
11918
  declare class QdFilterItemSelectCategoryComponent implements OnInit {
12072
11919
  private readonly filterService;
12073
- private readonly breakpointService;
12074
- readonly isMobile$: Observable<boolean>;
12075
11920
  filterId: string;
12076
11921
  categoryIndex: number;
12077
11922
  testId: string;
@@ -12083,18 +11928,10 @@ declare class QdFilterItemSelectCategoryComponent implements OnInit {
12083
11928
  items: QdFilterItem[];
12084
11929
  dependsOn: string[];
12085
11930
  showSelectButton$: Observable<boolean>;
12086
- itemsLoading$: Observable<boolean>;
12087
11931
  positionStrategy: ConnectedPosition[];
12088
11932
  maxFlyoutHeight: number;
12089
11933
  private _destroyRef;
12090
- private frozenSelectedKeys;
12091
- private frozenUnselectedKeys;
12092
11934
  get closeButton(): boolean;
12093
- get activeItemCount(): number;
12094
- get selectedDropdownEntries(): QdFilterItemEntry[];
12095
- get unselectedDropdownEntries(): QdFilterItemEntry[];
12096
- get showSelectedSeparator(): boolean;
12097
- get hasNoVisibleItems(): boolean;
12098
11935
  get buttonClassName(): string;
12099
11936
  get layerContentClassName(): string;
12100
11937
  get filterCategoryValue$(): Observable<string>;
@@ -12103,14 +11940,9 @@ declare class QdFilterItemSelectCategoryComponent implements OnInit {
12103
11940
  onLayerClosed(): void;
12104
11941
  closeLayer(): void;
12105
11942
  close(itemIndex: string): void;
12106
- clearAll(): void;
12107
- trackByItem(_index: number, entry: QdFilterItemEntry): string;
12108
- private freezeDropdownOrder;
12109
- private toEntries;
12110
11943
  changeValue($event: string): void;
12111
11944
  private initCategorySubscription;
12112
11945
  private initItemsSubscription;
12113
- private haveSameItemKeys;
12114
11946
  private initShowSelectButton;
12115
11947
  static ɵfac: i0.ɵɵFactoryDeclaration<QdFilterItemSelectCategoryComponent, never>;
12116
11948
  static ɵcmp: i0.ɵɵComponentDeclaration<QdFilterItemSelectCategoryComponent, "qd-filter-category-select", never, { "filterId": { "alias": "filterId"; "required": false; }; "categoryIndex": { "alias": "categoryIndex"; "required": false; }; "testId": { "alias": "data-test-id"; "required": false; }; }, {}, never, never, false, never>;
@@ -12546,18 +12378,6 @@ declare class QdPageControlPanelComponent {
12546
12378
  static ɵcmp: i0.ɵɵComponentDeclaration<QdPageControlPanelComponent, "qd-page-control-panel", never, { "config": { "alias": "config"; "required": true; }; }, {}, never, ["qd-text-section", "qd-panel-section", "qd-section"], false, never>;
12547
12379
  }
12548
12380
 
12549
- declare class QdPageFooterCustomContentDirective implements OnInit, OnDestroy {
12550
- private footerService;
12551
- ngOnInit(): void;
12552
- ngOnDestroy(): void;
12553
- static ɵfac: i0.ɵɵFactoryDeclaration<QdPageFooterCustomContentDirective, never>;
12554
- static ɵdir: i0.ɵɵDirectiveDeclaration<QdPageFooterCustomContentDirective, "[qdPageFooter]", never, {}, {}, never, never, false, never>;
12555
- }
12556
-
12557
- /**
12558
- * Type for the keys of footer actions.
12559
- */
12560
- type QdFooterActionKey = 'saveDraft' | 'previous' | 'next' | 'cancel' | 'submit';
12561
12381
  /**
12562
12382
  * Interface that describes the configuration of a footer action.
12563
12383
  */
@@ -13069,28 +12889,6 @@ declare class QdPageTabsAdapterDirective implements OnInit {
13069
12889
  static ɵdir: i0.ɵɵDirectiveDeclaration<QdPageTabsAdapterDirective, "[qdPageTabsAdapter]", never, {}, {}, never, never, false, never>;
13070
12890
  }
13071
12891
 
13072
- declare class QdPageFooterService {
13073
- private _pageFooterActions;
13074
- private _customContentCount;
13075
- pageFooterActions$: rxjs.Observable<Map<QdFooterActionKey, QdPageFooterAction>>;
13076
- customContentCount$: rxjs.Observable<number>;
13077
- footerHasContent$: rxjs.Observable<boolean>;
13078
- registerCustomContent(): void;
13079
- detachCustomContent(): void;
13080
- setActions(actionsArray: Array<{
13081
- key: QdFooterActionKey;
13082
- action: QdPageFooterAction;
13083
- }>): void;
13084
- updateActions(updates: {
13085
- actionKey: QdFooterActionKey;
13086
- partialAction: Partial<QdPageFooterAction>;
13087
- }[]): void;
13088
- private sortActionsByPriority;
13089
- private isAnyActionVisible;
13090
- static ɵfac: i0.ɵɵFactoryDeclaration<QdPageFooterService, never>;
13091
- static ɵprov: i0.ɵɵInjectableDeclaration<QdPageFooterService>;
13092
- }
13093
-
13094
12892
  /**
13095
12893
  * The configuration object of the tabs
13096
12894
  */
@@ -13218,8 +13016,7 @@ interface QdPageTabCounters {
13218
13016
  /**
13219
13017
  * The **QdPageTab** is a single tab inside the **QdPageTabs** within a **QdPage**.
13220
13018
  */
13221
- declare class QdPageTabComponent implements OnInit, OnChanges, OnDestroy {
13222
- private readonly _pageTabs;
13019
+ declare class QdPageTabComponent extends CdkStep implements OnInit, OnChanges, OnDestroy {
13223
13020
  private translate;
13224
13021
  /**
13225
13022
  * Configuration of QdPageTabComponent.
@@ -13231,14 +13028,8 @@ declare class QdPageTabComponent implements OnInit, OnChanges, OnDestroy {
13231
13028
  set tabControl(tabControl: AbstractControl);
13232
13029
  get tabControl(): AbstractControl;
13233
13030
  infoBanners: QueryList<QdPageInfoBannerComponent>;
13234
- content: TemplateRef<any>;
13235
- stepControl?: AbstractControl;
13236
- interacted: boolean;
13237
- editable: boolean;
13238
- get completed(): boolean;
13239
- get hasError(): boolean;
13240
13031
  private _destroyed$;
13241
- select(): void;
13032
+ constructor();
13242
13033
  ngOnInit(): void;
13243
13034
  ngOnChanges(changes?: SimpleChanges): void;
13244
13035
  ngOnDestroy(): void;
@@ -13434,14 +13225,10 @@ interface QdTabSelectionEvent {
13434
13225
  * - If an invalid tab name is provided in URL, the first available tab is selected
13435
13226
  * - If no tab parameter is present, the `selectedIndex` or first non-disabled tab is selected
13436
13227
  */
13437
- declare class QdPageTabsComponent implements OnInit, OnChanges, AfterContentInit, AfterViewInit {
13438
- readonly footerService: QdPageFooterService;
13439
- private readonly pageStoreService;
13228
+ declare class QdPageTabsComponent extends CdkStepper implements OnInit, OnChanges, AfterContentInit, AfterViewInit {
13229
+ private readonly footerService;
13230
+ private pageStoreService;
13440
13231
  private readonly routerConnector;
13441
- private readonly _changeDetectorRef;
13442
- private readonly destroyRef;
13443
- private static _idCounter;
13444
- private readonly _id;
13445
13232
  protected get hasPageFooter(): boolean;
13446
13233
  /**
13447
13234
  * Configuration of QdPageTabs.
@@ -13452,26 +13239,17 @@ declare class QdPageTabsComponent implements OnInit, OnChanges, AfterContentInit
13452
13239
  */
13453
13240
  testId: string;
13454
13241
  readonly tabSelection: EventEmitter<QdTabSelectionEvent>;
13455
- private _tabs;
13456
- linear: boolean;
13457
- private _selectedIndex;
13458
13242
  private _viewonly;
13243
+ private readonly destroyRef;
13459
13244
  get tabs(): QueryList<QdPageTabComponent>;
13460
13245
  get selected(): QdPageTabComponent | undefined;
13461
- set selected(tab: QdPageTabComponent | undefined);
13462
- get selectedIndex(): number;
13463
- set selectedIndex(newIndex: number);
13246
+ set selected(step: QdPageTabComponent | undefined);
13247
+ constructor();
13464
13248
  ngOnInit(): void;
13465
13249
  ngOnChanges(changes: SimpleChanges): void;
13250
+ _getIndicatorType(index: number, state?: StepState): StepState;
13466
13251
  ngAfterContentInit(): void;
13467
13252
  ngAfterViewInit(): void;
13468
- _stateChanged(): void;
13469
- _getIndicatorType(index: number): string;
13470
- _getTabLabelId(i: number): string;
13471
- save(): void;
13472
- selectTab(tab: QdPageTabComponent): void;
13473
- isSubmitButtonShown(): boolean;
13474
- isSubmitButtonDisabled(): boolean | undefined;
13475
13253
  private initializeTabSelection;
13476
13254
  private configureBookmarkableTabs;
13477
13255
  private isTabSelectable;
@@ -13479,9 +13257,15 @@ declare class QdPageTabsComponent implements OnInit, OnChanges, AfterContentInit
13479
13257
  * Selects the first tab that is not disabled.
13480
13258
  */
13481
13259
  private selectFirstNotDisabledTab;
13260
+ save(): void;
13261
+ selectTab(tab: QdPageTabComponent): void;
13262
+ isSubmitButtonShown(): boolean;
13263
+ isSubmitButtonDisabled(): boolean | undefined;
13264
+ _getTabLabelId(i: number): string;
13482
13265
  private blockCdkInput;
13266
+ private mapSelectionChangeToTabSelectionOutput;
13483
13267
  static ɵfac: i0.ɵɵFactoryDeclaration<QdPageTabsComponent, never>;
13484
- static ɵcmp: i0.ɵɵComponentDeclaration<QdPageTabsComponent, "qd-page-tabs", never, { "config": { "alias": "config"; "required": false; }; "testId": { "alias": "data-test-id"; "required": false; }; }, { "tabSelection": "tabSelection"; }, ["_tabs"], never, true, never>;
13268
+ static ɵcmp: i0.ɵɵComponentDeclaration<QdPageTabsComponent, "qd-page-tabs", never, { "config": { "alias": "config"; "required": false; }; "testId": { "alias": "data-test-id"; "required": false; }; }, { "tabSelection": "tabSelection"; }, never, never, true, never>;
13485
13269
  }
13486
13270
 
13487
13271
  interface QdSearchPostBodyData {
@@ -14682,6 +14466,14 @@ declare class QdReferencesFacetComponent<T> {
14682
14466
  static ɵcmp: i0.ɵɵComponentDeclaration<QdReferencesFacetComponent<any>, "qd-references-facet", never, { "facet": { "alias": "facet"; "required": false; }; "data": { "alias": "data"; "required": false; }; }, {}, never, never, false, never>;
14683
14467
  }
14684
14468
 
14469
+ declare class QdPageFooterCustomContentDirective implements OnInit, OnDestroy {
14470
+ private footerService;
14471
+ ngOnInit(): void;
14472
+ ngOnDestroy(): void;
14473
+ static ɵfac: i0.ɵɵFactoryDeclaration<QdPageFooterCustomContentDirective, never>;
14474
+ static ɵdir: i0.ɵɵDirectiveDeclaration<QdPageFooterCustomContentDirective, "[qdPageFooter]", never, {}, {}, never, never, false, never>;
14475
+ }
14476
+
14685
14477
  declare class QdContextSelectDialogComponent implements OnInit {
14686
14478
  private dialogRef;
14687
14479
  private translateService;
@@ -18272,13 +18064,18 @@ declare class QdPageStepperModule {
18272
18064
  */
18273
18065
  declare function qdPageTabParameterize(tab: QdPageTabConfig | string | undefined): QdQueryParameter;
18274
18066
 
18275
- type QdTabState = 'number' | 'edit' | 'done' | 'error' | string;
18276
18067
  /**
18277
18068
  * **QdPageTabHeader* renders the header of a single tab. It is used quadrel-internally.
18278
18069
  */
18279
- declare class QdPageTabHeaderComponent {
18070
+ declare class QdPageTabHeaderComponent extends CdkStepHeader {
18071
+ protected readonly STEP_STATE: {
18072
+ NUMBER: string;
18073
+ EDIT: string;
18074
+ DONE: string;
18075
+ ERROR: string;
18076
+ };
18280
18077
  /** State of the given tab. */
18281
- state: QdTabState;
18078
+ state: StepState;
18282
18079
  /** Label of the given tab. */
18283
18080
  label: string;
18284
18081
  /** Represents up to two numeric counters as a badge */
@@ -18293,6 +18090,7 @@ declare class QdPageTabHeaderComponent {
18293
18090
  * A static test ID for integration tests can be set.
18294
18091
  */
18295
18092
  testId: string;
18093
+ constructor();
18296
18094
  static ɵfac: i0.ɵɵFactoryDeclaration<QdPageTabHeaderComponent, never>;
18297
18095
  static ɵcmp: i0.ɵɵComponentDeclaration<QdPageTabHeaderComponent, "qd-page-tab-header", never, { "state": { "alias": "state"; "required": false; }; "label": { "alias": "label"; "required": false; }; "counters": { "alias": "counters"; "required": false; }; "index": { "alias": "index"; "required": false; }; "isSelected": { "alias": "isSelected"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; "testId": { "alias": "data-test-id"; "required": false; }; }, {}, never, never, true, never>;
18298
18096
  }
@@ -18309,7 +18107,7 @@ declare class QdPageTabHeaderCountersComponent implements OnInit {
18309
18107
 
18310
18108
  declare class QdPageTabsModule {
18311
18109
  static ɵfac: i0.ɵɵFactoryDeclaration<QdPageTabsModule, never>;
18312
- static ɵmod: i0.ɵɵNgModuleDeclaration<QdPageTabsModule, [typeof QdPageTabsAdapterDirective], [typeof i2.CommonModule, typeof i9.TranslateModule, typeof QdButtonModule, typeof QdIconModule, typeof QdPageTabsComponent, typeof QdPageTabComponent, typeof QdPageTabHeaderComponent, typeof QdPageTabHeaderCountersComponent], [typeof QdPageTabsComponent, typeof QdPageTabComponent, typeof QdPageTabsAdapterDirective]>;
18110
+ 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]>;
18313
18111
  static ɵinj: i0.ɵɵInjectorDeclaration<QdPageTabsModule>;
18314
18112
  }
18315
18113
 
@@ -18763,5 +18561,5 @@ declare class QdUiModule {
18763
18561
 
18764
18562
  declare const APP_ENVIRONMENT: InjectionToken<QdAppEnvironment>;
18765
18563
 
18766
- export { APP_ENVIRONMENT, AVAILABLE_ICONS, BACKEND_ERROR_CODES, MockLocaleDatePipe, NavigationTileComponent, NavigationTilesComponent, QD_DIALOG_CONFIRMATION_RESOLVER_TOKEN, QD_FILE_MANAGER_TOKEN, QD_FILE_UPLOAD_MANAGER_TOKEN, QD_FORM_OPTIONS_RESOLVER, QD_PAGE_OBJECT_RESOLVER_TOKEN, QD_PAGE_STEP_RESOLVER_TOKEN, QD_POPOVER_TOP_FIRST, QD_SAFE_BOTTOM_OFFSET, QD_TABLE_DATA_RESOLVER_TOKEN, QD_UPLOAD_HTTP_OPTIONS, QdButtonComponent, QdButtonGhostDirective, QdButtonGridComponent, QdButtonLinkDirective, QdButtonModule, QdButtonStackButtonComponent, QdButtonStackComponent, QdCheckboxChipsComponent, QdCheckboxComponent, QdCheckboxesComponent, QdChipComponent, QdChipModule, QdColumnAutoFillDirective, QdColumnBreakBeforeDirective, QdColumnDirective, QdColumnDisableResponsiveColspansDirective, QdColumnFullGridWidthDirective, QdColumnNextInSameRowDirective, QdColumnsDirective, QdColumnsDisableAutoFillDirective, QdColumnsDisableResponsiveColspansDirective, QdColumnsMaxDirective, QdCommentsComponent, QdCommentsModule, QdConnectFormStateToPageDirective, QdConnectorTableContextDirective, QdConnectorTableFilterDirective, QdConnectorTableSearchDirective, QdContactCardComponent, QdContactCardModule, QdContainerPairsCaptionComponent, QdContainerPairsContainerComponent, QdContainerPairsHeaderComponent, QdContainerPairsItemComponent, QdContainerPairsValueComponent, QdContextService, QdCoreModule, QdDatepickerComponent, QdDialogActionComponent, QdDialogAuthSessionEndComponent, QdDialogAuthSessionEndService, QdDialogComponent, QdDialogConfirmationComponent, QdDialogConfirmationErrorDirective, QdDialogConfirmationInfoDirective, QdDialogConfirmationSuccessDirective, QdDialogModule, QdDialogRecordStepperComponent, QdDialogService, QdDialogSize, QdDisabledDirective, QdDropdownComponent, QdFileCollectorComponent, QdFileCollectorModule, QdFileSizePipe$1 as QdFileSizePipe, QdFileUploadComponent, QdFileUploadService, QdFilterComponent, QdFilterFormItemsComponent, QdFilterModule, QdFilterRestParamBuilder, QdFilterService, QdFooterActionType, QdFormArray, QdFormBuilder, QdFormControl, QdFormGroup, QdFormModule, QdGridComponent, QdGridModule, QdHorizontalPairsCaptionComponent, QdHorizontalPairsComponent, QdHorizontalPairsItemComponent, QdHorizontalPairsValueComponent, QdIconButtonComponent, QdIconComponent, QdIconModule, QdImageComponent, QdImageModule, QdIndeterminateProgressBarComponent, QdInputComponent, QdListModule, QdMenuButtonComponent, QdMockBreakpointService, QdMockButtonComponent, QdMockButtonGhostDirective, QdMockButtonGridComponent, QdMockButtonLinkDirective, QdMockButtonModule, QdMockButtonStackButtonComponent, QdMockButtonStackComponent, QdMockCalendarComponent, QdMockCheckboxChipsComponent, QdMockCheckboxComponent, QdMockCheckboxesComponent, QdMockChipComponent, QdMockChipModule, QdMockColumnDirective, QdMockColumnsDirective, QdMockContactCardComponent, QdMockContactCardModule, QdMockContainerPairsCaptionComponent, QdMockContainerPairsContainerComponent, QdMockContainerPairsHeaderComponent, QdMockContainerPairsItemComponent, QdMockContainerPairsValueComponent, QdMockCoreModule, QdMockCounterBadgeComponent, QdMockDatepickerComponent, QdMockDisabledDirective, QdMockDropdownComponent, QdMockFileCollectorComponent, QdMockFileCollectorModule, QdMockFilterCategoryBooleanComponent, QdMockFilterCategoryComponent, QdMockFilterCategoryDateComponent, QdMockFilterCategoryDateRangeComponent, QdMockFilterCategoryFreeTextComponent, QdMockFilterCategorySelectComponent, QdMockFilterComponent, QdMockFilterFormItemsComponent, QdMockFilterItemBooleanComponent, QdMockFilterItemDateComponent, QdMockFilterItemDateRangeComponent, QdMockFilterItemFreeTextComponent, QdMockFilterItemMultiSelectComponent, QdMockFilterItemSingleSelectComponent, QdMockFilterModule, QdMockFilterService, QdMockFormErrorComponent, QdMockFormGroupErrorComponent, QdMockFormHintComponent, QdMockFormLabelComponent, QdMockFormReadonlyComponent, QdMockFormViewonlyComponent, QdMockFormsModule, QdMockGridModule, QdMockIconButtonComponent, QdMockIconComponent, QdMockIconModule, QdMockImageComponent, QdMockImageModule, QdMockIndeterminateProgressBarComponent, QdMockInputComponent, QdMockListModule, QdMockNavigationTileComponent, QdMockNavigationTilesComponent, QdMockNavigationTilesModule, QdMockNotificationComponent, QdMockNotificationContentComponent, QdMockNotificationsComponent, QdMockNotificationsModule, QdMockNotificationsService, QdMockPageComponent, QdMockPageModule, QdMockPercentageProgressBarComponent, QdMockPinCodeComponent, QdMockPlaceHolderModule, QdMockPopoverOnClickDirective, QdMockProgressBarModule, QdMockQdPlaceHolderComponent, QdMockRadioButtonsComponent, QdMockRwdDisabledDirective, QdMockSearchComponent, QdMockSearchModule, QdMockSectionComponent, QdMockSectionModule, QdMockShellComponent, QdMockShellFooterComponent, QdMockShellHeaderBannerComponent, QdMockShellHeaderComponent, QdMockShellHeaderSearchComponent, QdMockShellHeaderWidgetComponent, QdMockShellModule, QdMockShellToolbarComponent, QdMockShellToolbarItemComponent, QdMockStatusIndicatorCaptionComponent, QdMockStatusIndicatorComponent, QdMockStatusIndicatorItemComponent, QdMockStatusIndicatorModule, QdMockStatusPairsCaptionComponent, QdMockStatusPairsComponent, QdMockStatusPairsErrorComponent, QdMockStatusPairsItemComponent, QdMockStatusPairsValueComponent, QdMockSwitchComponent, QdMockSwitchesComponent, QdMockTableComponent, QdMockTableModule, QdMockTextSectionComponent, QdMockTextSectionHeadlineComponent, QdMockTextSectionModule, QdMockTextSectionParagraphComponent, QdMockTextareaComponent, QdMockTileButtonListComponent, QdMockTileComponent, QdMockTileTextListComponent, QdMockTileTextListItemComponent, QdMockTileTitleComponent, QdMockTilesContainerComponent, QdMockTilesContainerTitleComponent, QdMockTilesModule, QdMockTranslatePipe, QdMockVisuallyHiddenDirective, QdMultiInputComponent, QdNavigationTilesModule, QdNotificationComponent, QdNotificationContentComponent, QdNotificationsComponent, QdNotificationsHttpInterceptorService, QdNotificationsModule, QdNotificationsService, QdNotificationsSnackbarListenerDirective, QdNumberInputService, QdPageComponent, QdPageControlPanelComponent, QdPageFooterComponent, QdPageFooterCustomContentDirective, QdPageInfoBannerComponent, QdPageModule, QdPageStepComponent, QdPageStepperAdapterDirective, QdPageStepperComponent, QdPageStepperModule, QdPageStoreService, QdPageTabComponent, QdPageTabsAdapterDirective, QdPageTabsComponent, QdPageTabsModule, QdPanelSectionActionsComponent, QdPanelSectionComponent, QdPanelSectionModule, QdPanelSectionStatusComponent, QdPanelSectionTextParagraphComponent, QdPendingChangesGuardDirective, QdPercentageProgressBarComponent, QdPinCodeComponent, QdPlaceHolderComponent, QdPlaceHolderModule, QdPlaceholderPipe, QdProgressBarModule, QdProjectionGuardComponent, QdPushEventsService, QdQuickEditComponent, QdQuickEditModule, QdRadioButtonsComponent, QdRichtextComponent, QdRouterQueryParamHubService, QdRwdDisabledDirective, QdSearchComponent, QdSearchModule, QdSearchService, QdSectionAdapterDirective, QdSectionComponent, QdSectionModule, QdSectionToolbarComponent, QdShellComponent, QdShellModule, QdSortDirection, QdSpinnerComponent, QdSpinnerModule, QdStatusIndicatorComponent, QdStatusIndicatorModule, QdStatusPairsCaptionComponent, QdStatusPairsComponent, QdStatusPairsErrorComponent, QdStatusPairsItemComponent, QdStatusPairsValueComponent, QdSubgridComponent, QdSwitchComponent, QdSwitchesComponent, QdTableComponent, QdTableModule, QdTableSpringTools, QdTextSectionComponent, QdTextSectionHeadlineComponent, QdTextSectionModule, QdTextSectionParagraphComponent, QdTextareaComponent, QdTileButtonListComponent, QdTileComponent, QdTileTextListComponent, QdTileTextListItemComponent, QdTileTitleComponent, QdTilesComponent, QdTilesModule, QdTilesTitleComponent, QdTooltipAtIntersectionDirective, QdTooltipIconComponent, QdTreeComponent, QdTreeModule, QdTreeRowExpanderService, QdUiMockModule, QdUiModule, QdUploadErrorType, QdValidators, QdViewportAdaptiveDirective, QdVisuallyHiddenDirective, WHITELIST_ERROR_CODES, chipColorDefault, createMetadataStream, qdFilterParameterize, qdMergeParams, qdPageTabParameterize, qdPaginationParameterize, qdSearchParameterize, qdSortParameterize, qdTableQueryParameterize, qdWrapParams, quadrelIconNames, updateHtmlLang };
18564
+ export { APP_ENVIRONMENT, AVAILABLE_ICONS, BACKEND_ERROR_CODES, MockLocaleDatePipe, NavigationTileComponent, NavigationTilesComponent, QD_DIALOG_CONFIRMATION_RESOLVER_TOKEN, QD_FILE_MANAGER_TOKEN, QD_FILE_UPLOAD_MANAGER_TOKEN, QD_FORM_OPTIONS_RESOLVER, QD_PAGE_OBJECT_RESOLVER_TOKEN, QD_PAGE_STEP_RESOLVER_TOKEN, QD_POPOVER_TOP_FIRST, QD_SAFE_BOTTOM_OFFSET, QD_TABLE_DATA_RESOLVER_TOKEN, QD_UPLOAD_HTTP_OPTIONS, QdButtonComponent, QdButtonGhostDirective, QdButtonGridComponent, QdButtonLinkDirective, QdButtonModule, QdButtonStackButtonComponent, QdButtonStackComponent, QdCheckboxChipsComponent, QdCheckboxComponent, QdCheckboxesComponent, QdChipComponent, QdChipModule, QdColumnAutoFillDirective, QdColumnBreakBeforeDirective, QdColumnDirective, QdColumnDisableResponsiveColspansDirective, QdColumnFullGridWidthDirective, QdColumnNextInSameRowDirective, QdColumnsDirective, QdColumnsDisableAutoFillDirective, QdColumnsDisableResponsiveColspansDirective, QdColumnsMaxDirective, QdCommentsComponent, QdCommentsModule, QdConnectFormStateToPageDirective, QdConnectorTableContextDirective, QdConnectorTableFilterDirective, QdConnectorTableSearchDirective, QdContactCardComponent, QdContactCardModule, QdContainerPairsCaptionComponent, QdContainerPairsContainerComponent, QdContainerPairsHeaderComponent, QdContainerPairsItemComponent, QdContainerPairsValueComponent, QdContextService, QdCoreModule, QdDatepickerComponent, QdDialogActionComponent, QdDialogAuthSessionEndComponent, QdDialogAuthSessionEndService, QdDialogComponent, QdDialogConfirmationComponent, QdDialogConfirmationErrorDirective, QdDialogConfirmationInfoDirective, QdDialogConfirmationSuccessDirective, QdDialogModule, QdDialogRecordStepperComponent, QdDialogService, QdDialogSize, QdDisabledDirective, QdDropdownComponent, QdFileCollectorComponent, QdFileCollectorModule, QdFileSizePipe$1 as QdFileSizePipe, QdFileUploadComponent, QdFileUploadService, QdFilterComponent, QdFilterFormItemsComponent, QdFilterModule, QdFilterRestParamBuilder, QdFilterService, QdFooterActionType, QdFormArray, QdFormBuilder, QdFormControl, QdFormGroup, QdFormModule, QdGridComponent, QdGridModule, QdHorizontalPairsCaptionComponent, QdHorizontalPairsComponent, QdHorizontalPairsItemComponent, QdHorizontalPairsValueComponent, QdIconButtonComponent, QdIconComponent, QdIconModule, QdImageComponent, QdImageModule, QdIndeterminateProgressBarComponent, QdInputComponent, QdListModule, QdMenuButtonComponent, QdMockBreakpointService, QdMockButtonComponent, QdMockButtonGhostDirective, QdMockButtonGridComponent, QdMockButtonLinkDirective, QdMockButtonModule, QdMockButtonStackButtonComponent, QdMockButtonStackComponent, QdMockCalendarComponent, QdMockCheckboxChipsComponent, QdMockCheckboxComponent, QdMockCheckboxesComponent, QdMockChipComponent, QdMockChipModule, QdMockColumnDirective, QdMockColumnsDirective, QdMockContactCardComponent, QdMockContactCardModule, QdMockContainerPairsCaptionComponent, QdMockContainerPairsContainerComponent, QdMockContainerPairsHeaderComponent, QdMockContainerPairsItemComponent, QdMockContainerPairsValueComponent, QdMockCoreModule, QdMockCounterBadgeComponent, QdMockDatepickerComponent, QdMockDisabledDirective, QdMockDropdownComponent, QdMockFileCollectorComponent, QdMockFileCollectorModule, QdMockFilterCategoryBooleanComponent, QdMockFilterCategoryComponent, QdMockFilterCategoryDateComponent, QdMockFilterCategoryDateRangeComponent, QdMockFilterCategoryFreeTextComponent, QdMockFilterCategorySelectComponent, QdMockFilterComponent, QdMockFilterFormItemsComponent, QdMockFilterItemBooleanComponent, QdMockFilterItemDateComponent, QdMockFilterItemDateRangeComponent, QdMockFilterItemFreeTextComponent, QdMockFilterItemMultiSelectComponent, QdMockFilterItemSingleSelectComponent, QdMockFilterModule, QdMockFilterService, QdMockFormErrorComponent, QdMockFormGroupErrorComponent, QdMockFormHintComponent, QdMockFormLabelComponent, QdMockFormReadonlyComponent, QdMockFormViewonlyComponent, QdMockFormsModule, QdMockGridModule, QdMockIconButtonComponent, QdMockIconComponent, QdMockIconModule, QdMockImageComponent, QdMockImageModule, QdMockIndeterminateProgressBarComponent, QdMockInputComponent, QdMockListModule, QdMockNavigationTileComponent, QdMockNavigationTilesComponent, QdMockNavigationTilesModule, QdMockNotificationComponent, QdMockNotificationContentComponent, QdMockNotificationsComponent, QdMockNotificationsModule, QdMockNotificationsService, QdMockPageComponent, QdMockPageModule, QdMockPercentageProgressBarComponent, QdMockPinCodeComponent, QdMockPlaceHolderModule, QdMockPopoverOnClickDirective, QdMockProgressBarModule, QdMockQdPlaceHolderComponent, QdMockRadioButtonsComponent, QdMockRwdDisabledDirective, QdMockSearchComponent, QdMockSearchModule, QdMockSectionComponent, QdMockSectionModule, QdMockShellComponent, QdMockShellFooterComponent, QdMockShellHeaderBannerComponent, QdMockShellHeaderComponent, QdMockShellHeaderSearchComponent, QdMockShellHeaderWidgetComponent, QdMockShellModule, QdMockShellToolbarComponent, QdMockShellToolbarItemComponent, QdMockStatusIndicatorCaptionComponent, QdMockStatusIndicatorComponent, QdMockStatusIndicatorItemComponent, QdMockStatusIndicatorModule, QdMockStatusPairsCaptionComponent, QdMockStatusPairsComponent, QdMockStatusPairsErrorComponent, QdMockStatusPairsItemComponent, QdMockStatusPairsValueComponent, QdMockSwitchComponent, QdMockSwitchesComponent, QdMockTableComponent, QdMockTableModule, QdMockTextSectionComponent, QdMockTextSectionHeadlineComponent, QdMockTextSectionModule, QdMockTextSectionParagraphComponent, QdMockTextareaComponent, QdMockTileButtonListComponent, QdMockTileComponent, QdMockTileTextListComponent, QdMockTileTextListItemComponent, QdMockTileTitleComponent, QdMockTilesContainerComponent, QdMockTilesContainerTitleComponent, QdMockTilesModule, QdMockTranslatePipe, QdMockVisuallyHiddenDirective, QdMultiInputComponent, QdNavigationTilesModule, QdNotificationComponent, QdNotificationContentComponent, QdNotificationsComponent, QdNotificationsHttpInterceptorService, QdNotificationsModule, QdNotificationsService, QdNotificationsSnackbarListenerDirective, QdNumberInputService, QdPageComponent, QdPageControlPanelComponent, QdPageFooterComponent, QdPageFooterCustomContentDirective, QdPageInfoBannerComponent, QdPageModule, QdPageStepComponent, QdPageStepperAdapterDirective, QdPageStepperComponent, QdPageStepperModule, QdPageStoreService, QdPageTabComponent, QdPageTabsAdapterDirective, QdPageTabsComponent, QdPageTabsModule, QdPanelSectionActionsComponent, QdPanelSectionComponent, QdPanelSectionModule, QdPanelSectionStatusComponent, QdPanelSectionTextParagraphComponent, QdPendingChangesGuardDirective, QdPercentageProgressBarComponent, QdPinCodeComponent, QdPlaceHolderComponent, QdPlaceHolderModule, QdPlaceholderPipe, QdProgressBarModule, QdProjectionGuardComponent, QdPushEventsService, QdQuickEditComponent, QdQuickEditModule, QdRadioButtonsComponent, QdRichtextComponent, QdRouterQueryParamHubService, QdRwdDisabledDirective, QdSearchComponent, QdSearchModule, QdSearchService, QdSectionAdapterDirective, QdSectionComponent, QdSectionModule, QdSectionToolbarComponent, QdShellComponent, QdShellModule, QdSortDirection, QdSpinnerComponent, QdSpinnerModule, QdStatusIndicatorComponent, QdStatusIndicatorModule, QdStatusPairsCaptionComponent, QdStatusPairsComponent, QdStatusPairsErrorComponent, QdStatusPairsItemComponent, QdStatusPairsValueComponent, QdSubgridComponent, QdSwitchComponent, QdSwitchesComponent, QdTableComponent, QdTableModule, QdTableSpringTools, QdTextSectionComponent, QdTextSectionHeadlineComponent, QdTextSectionModule, QdTextSectionParagraphComponent, QdTextareaComponent, QdTileButtonListComponent, QdTileComponent, QdTileTextListComponent, QdTileTextListItemComponent, QdTileTitleComponent, QdTilesComponent, QdTilesModule, QdTilesTitleComponent, QdTooltipAtIntersectionDirective, QdTooltipIconComponent, QdTreeComponent, QdTreeModule, QdTreeRowExpanderService, QdUiMockModule, QdUiModule, QdUploadErrorType, QdValidators, QdViewportAdaptiveDirective, QdVisuallyHiddenDirective, chipColorDefault, createMetadataStream, qdFilterParameterize, qdMergeParams, qdPageTabParameterize, qdPaginationParameterize, qdSearchParameterize, qdSortParameterize, qdTableQueryParameterize, qdWrapParams, quadrelIconNames, updateHtmlLang };
18767
18565
  export type { CustomField, QdAppEnvironment, QdAudioFileType, QdButtonAdditionalInfo, QdButtonAdditionalInfoMessage, QdButtonAdditionalInfoType, QdButtonColor, QdChipColor, QdCollectedFile, QdComment, QdCommentAuthorFieldConfig, QdCommentCustomFieldConfig, QdCommentDeletedMeta, QdCommentRichtextConfig, QdCommentSecondaryActionConfig, QdCommentsAddButtonConfig, QdCommentsAddConfig, QdCommentsConfig, QdCompressedFileType, QdConfirmationStatus, QdContactAddress, QdContactCardActionConfig, QdContactCardActionLabel, QdContactCardActionsConfig, QdContactData, QdContactDataCustomField, QdContactDataCustomFieldEntry, QdContactDataCustomTranslatedEntry, QdContactFunction, QdContactPerson, QdContactTag, QdContextSelection, QdDependentFilterCategory, QdDialogAuthSessionEndResult, QdDialogCancelAction, QdDialogConfig, QdDialogConfirmConfigTranslation, QdDialogConfirmationConfig, QdDialogConfirmationResolver, QdDialogData, QdDialogPrimaryAction, QdDialogTitle, QdDisabledDates, QdDisabledDatesValidation, QdDisabledTimes, QdDisabledTimesValidation, QdDocumentFileType, QdFacetOptionMultiSelect, QdFacetOptionSingleSelect, QdFacetOptions, QdFacetOptionsDate, QdFacetOptionsIcon, QdFacetOptionsStatus, QdFacetOptionsValue, QdFileCollectorConfig, QdFileUpload$1 as QdFileCollectorUpload, QdFileManager, QdFileType, QdFileUpload, QdFileUploadManager, QdFilterCategory, QdFilterConfigData, QdFilterItem, QdFilterPostBodyCategory, QdFilterPostBodyData, QdFilterSelection, QdFilterType, QdFormArrayAsyncValidator, QdFormArrayItemAsyncValidator, QdFormArrayItemValidator, QdFormArrayItemValidatorOrOpts, QdFormArrayOptions, QdFormArrayValidator, QdFormArrayValuesOrControls, QdFormBaseOption, QdFormBaseOptions, QdFormCheckboxChipsConfiguration, QdFormCheckboxOption, QdFormCheckboxOptions, QdFormCheckboxesConfiguration, QdFormConfiguration, QdFormDatepickerConfiguration, QdFormDropdownConfiguration, QdFormFileUploadConfiguration, QdFormHint, QdFormInput, QdFormInputConfiguration, QdFormInputOption, QdFormLabel, QdFormMultiInputConfiguration, QdFormOption, QdFormOptionsDependencies, QdFormOptionsResolvedEvent, QdFormOptionsResolver, QdFormPinCodeConfiguration, QdFormRadioButtonsConfiguration, QdFormRadioButtonsOptions, QdFormResolvableOptionsConfiguration, QdFormResolvedOption, QdFormResolvedOptions, QdFormSwitchesConfiguration, QdFormTextAreaConfiguration, QdFormTimepickerConfiguration, QdGridConfig, QdHinti18n, QdImageFileType, QdInputMode, QdInputRawEventValue, QdInputType, QdInputValue, QdInputValueWithUnit, QdInspectOperationMode, QdLabeli18n, QdLegacySectionActionConfig, QdMaxColumnsCount, QdMenuButtonActionConfig, QdMenuButtonActionLabel, QdMenuButtonConfig, QdMultiInputOption, QdNotification, QdNotificationLink, QdNotificationTitle, QdNotificationTranslation, QdNotificationType, QdNotifications, QdOsNotificationOptions, QdPageArchiveAction, QdPageCancelAction, QdPageCommitAction, QdPageConfig, QdPageConfigBase, QdPageConfigCreate, QdPageConfigCustom, QdPageConfigInspect, QdPageConfigOverview, QdPageContextConfig, QdPageContextConfigBase, QdPageContextConfigCustom, QdPageContextConfigMulti, QdPageContextConfigSingle, QdPageControlPanelConfig, QdPageCreateSubmitAction, QdPageCustomActionsLabel, QdPageDeleteAction, QdPageDialogCanCloseEntry, QdPageDialogCanCloseFn, QdPageDialogCanCloseResult, QdPageDialogCloseCause, QdPageEditAction, QdPageFooterAction, QdPageHeaderFacetConfig, QdPageInfoBannerConfig, QdPageInfoBannerLink, QdPageInfoBannerTitle, QdPageInfoBannerTranslation, QdPageInfoBannerType, QdPageInspectSubmitAction, QdPageObjectResolver, QdPageObjectResolverConfig, QdPageSaveAction, QdPageSaveDraftAction, QdPageSelectedContext, QdPageStepConfig, QdPageStepResolver, QdPageStepperActionConfig, QdPageStepperConfig, QdPageStepperHandlerParams, QdPageStepperSubmitActionConfig, QdPageTabConfig, QdPageTabCounters, QdPageTabsConfig, QdPageTabsSubmitButtonConfig, QdPageTitle, QdPageTypeCreateConfig, QdPageTypeCustomConfig, QdPageTypeInspectConfig, QdPageTypeOverviewConfig, QdPaginationParams, QdPanelSectionActionConfig, QdPanelSectionConfig, QdPanelSectionStatusConfig, QdPanelSectionTextParagraphConfig, QdPanelSectionTextParagraphTitle, QdPanelSectionTitle, QdPinCodeInputType, QdPlaceholder, QdPlaceholderPrefix, QdPredefinedSectionActionConfig, QdPushEventName, QdQueryParameter, QdQuickEditColumn, QdQuickEditColumnBase, QdQuickEditColumnEnum, QdQuickEditColumnInteger, QdQuickEditColumnText, QdQuickEditConfig, QdQuickEditData, QdQuickEditDataValue, QdQuickEditEmptyStateView, QdQuickEditRow, QdQuickEditSecondaryAction, QdResolvedFilterCategory, QdRichtextConfig, QdSearchAdditionalInfo, QdSearchOptions, QdSearchPostBodyData, QdSearchPreSelectOptions, QdSearchPreSelectOptionsList, QdSearchState, QdSectionActionConfig, QdSectionActionOperationMode, QdSectionActionType, QdSectionCollapse, QdSectionConfig, QdSectionTitle, QdShellConfig, QdShellFooterCopyrightInfo, QdShellHeaderWidgetBadge, QdShellHeaderWidgetConfig, QdShellHeaderWidgetContactInfo, QdShellHeaderWidgetCustomButtonLinks, QdShellHeaderWidgetEnvironment, QdShellHeaderWidgetHrefs, QdShellHeaderWidgetInfoLink, QdShellHeaderWidgetLanguage, QdShellHeaderWidgetMultiHrefBadge, QdShellHeaderWidgetMultiHrefs, QdShellHeaderWidgetProfileLink, QdShellHeaderWidgetSingleHref, QdShellHeaderWidgetSingleHrefBadge, QdShellNavigationConfig, QdShellServiceNavigationBadge, QdShellServiceNavigationConfig, QdShellServiceNavigationContactInfo, QdShellServiceNavigationCustomButtonLinks, QdShellServiceNavigationEnvironment, QdShellServiceNavigationHrefs, QdShellServiceNavigationInfoLink, QdShellServiceNavigationLanguage, QdShellServiceNavigationMultiHrefBadge, QdShellServiceNavigationMultiHrefs, QdShellServiceNavigationProfileLink, QdShellServiceNavigationSingleHref, QdShellServiceNavigationSingleHrefBadge, QdShellToolbarConfig, QdShellToolbarItem, QdSnackbarNotificationOptions, QdStaticFilterCategory, QdStatus, QdStatusIndicator, QdStatusIndicatorCaption, QdStatusIndicatorLevel, QdStatusIndicatorType, QdStatusPairStatus, QdSubgridConfig, QdSwitchInput, QdSwitchOption, QdTabSelectionEvent, QdTableActionResult, QdTableChipDataValue, QdTableConfig, QdTableConfigColumn, QdTableConfigColumnBase, QdTableConfigColumnSort, QdTableConfigColumnType, QdTableConfigGroup, QdTableConfigSecondaryActionType, QdTableConfigSelection, QdTableConfigSelectionType, QdTableConnectorCriteria, QdTableContentDataChip, QdTableContentDataChipObject, QdTableContextDataValue, QdTableCriticalDataValue, QdTableData, QdTableDataResolver, QdTableDataResolverProps, QdTableDataRow, QdTableDataValue, QdTableEmptyStateView, QdTableFillingColumn, QdTableOptionalRefreshingEventTypes, QdTablePagination, QdTablePrimaryAction, QdTableRecentSecondaryAction, QdTableRefreshConfig, QdTableResolvedData, QdTableRowIdentifier, QdTableRowIndex, QdTableRowUid, QdTableSecondaryAction, QdTableSelectedRow, QdTableSelectedRows, QdTableSort, QdTableStateSort, QdTableStatusDataValue, QdTileConfig, QdTilesConfig, QdTooltip, QdTranslatable, QdTranslation, QdTreeActionResult, QdTreeConfig, QdTreeConfigColumn, QdTreeConfigColumnBase, QdTreeConfigColumnType, QdTreeConfigSecondaryActionType, QdTreeData, QdTreeDataRow, QdTreeDataValue, QdTreeEmptyStateView, QdTreeGroupConfig, QdTreeRowsProvider, QdTreeSecondaryAction, QdUploadError, QdUploadProgress, QdVideoFileType };