@quadrel-enterprise-ui/framework 20.26.1 → 20.27.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
@@ -302,6 +302,7 @@ 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[]>;
305
306
  /**
306
307
  * 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.
307
308
  */
@@ -3354,6 +3355,7 @@ declare class QdMockFilterItemDateRangeComponent {
3354
3355
  timePickerConfig?: QdFormTimepickerConfiguration;
3355
3356
  testId: any;
3356
3357
  get dataTestId(): string;
3358
+ open(): void;
3357
3359
  static ɵfac: i0.ɵɵFactoryDeclaration<QdMockFilterItemDateRangeComponent, never>;
3358
3360
  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>;
3359
3361
  }
@@ -3411,12 +3413,15 @@ declare class QdMockFilterService {
3411
3413
  private postBodyWithEmptyDefaultSubjects;
3412
3414
  private categoryByIdSubject;
3413
3415
  private itemByIdSubject;
3416
+ private loadingSubject;
3414
3417
  initializeFilterState(): void;
3415
3418
  updateFilterState(): void;
3416
3419
  getFilterState(): void;
3417
3420
  setFilterSelection: any;
3418
3421
  updateItem: any;
3419
3422
  setItemIsActive: any;
3423
+ clearCategorySelection: any;
3424
+ setItemsLoading: any;
3420
3425
  selectFilterDataById$: any;
3421
3426
  getQueryString$(filterId: any): Observable<string>;
3422
3427
  getFilterUrlParameter$(filterId: any): Observable<string>;
@@ -3425,6 +3430,7 @@ declare class QdMockFilterService {
3425
3430
  getPostBodyWithEmptyDefault$(filterId: any): Observable<QdFilterPostBodyData>;
3426
3431
  getCategoryById$(filterId: any): Observable<any>;
3427
3432
  getItemById$(filterId: any): Observable<any>;
3433
+ getItemsLoading$(filterId: any): Observable<boolean>;
3428
3434
  getQueryStringSubject(filterId: any): Subject<string>;
3429
3435
  getFilterUrlParameterSubject(filterId: any): Subject<string>;
3430
3436
  getPostBodySubject(filterId: any): Subject<QdFilterPostBodyData>;
@@ -3433,6 +3439,7 @@ declare class QdMockFilterService {
3433
3439
  getMaxDate$: any;
3434
3440
  emitCategory(value: any, filterId: any): void;
3435
3441
  emitItem(value: any, filterId: any): void;
3442
+ emitLoading(value: any, filterId: any): void;
3436
3443
  static ɵfac: i0.ɵɵFactoryDeclaration<QdMockFilterService, never>;
3437
3444
  static ɵprov: i0.ɵɵInjectableDeclaration<QdMockFilterService>;
3438
3445
  }
@@ -5255,6 +5262,16 @@ declare class QdPopoverOnClickDirective implements OnInit, OnDestroy {
5255
5262
  ngOnInit(): void;
5256
5263
  ngOnDestroy(): void;
5257
5264
  open(): void;
5265
+ /**
5266
+ * Re-aligns an open overlay with its origin element.
5267
+ *
5268
+ * The connected position is only recomputed on scroll/resize, not when a
5269
+ * layout reflow moves the origin (e.g. a chip or action buttons appearing in
5270
+ * the host). Call this after such a reflow to keep the overlay attached to the
5271
+ * host. Deferred by one frame so the new layout is measured, and a no-op while
5272
+ * the overlay is detached, so it stays cheap to call on discrete events.
5273
+ */
5274
+ updatePosition(): void;
5258
5275
  close(): void;
5259
5276
  private popoverInstance;
5260
5277
  private initPositionStrategy;
@@ -6287,6 +6304,7 @@ declare class QdDatepickerComponent implements ControlValueAccessor, OnInit, OnC
6287
6304
  registerOnTouched(fn: () => void): void;
6288
6305
  writeValue(date: Date): void;
6289
6306
  setDisabledState(disabled: boolean): void;
6307
+ open(): void;
6290
6308
  handleUpdatedDate($rawValue: QdInputRawEventValue): void;
6291
6309
  handleUpdatedTime($event: string): void;
6292
6310
  handleUpdatedDateTime($rawValue: QdInputRawEventValue): void;
@@ -11520,6 +11538,7 @@ declare class QdFilterService {
11520
11538
  private queryStringSubjects;
11521
11539
  private filterUrlParameterSubjects;
11522
11540
  private postBodySubjects;
11541
+ private itemsLoadingSubjects;
11523
11542
  getItems$(filterId: any, categoryIndex: any): Observable<any>;
11524
11543
  getItemById$(filterId: any, categoryIndex: any, itemIndex: any): Observable<QdFilterItem>;
11525
11544
  getMinDate$(filterId: any, categoryIndex: any, itemIndex: any): Observable<string | undefined>;
@@ -11539,6 +11558,7 @@ declare class QdFilterService {
11539
11558
  selectFilterDataById$(filterId: any): Observable<QdFilterCategory[]>;
11540
11559
  selectHasActiveCategory$(filterId: any): Observable<boolean>;
11541
11560
  getCategoryById$(filterId: any, categoryIndex: any): Observable<any>;
11561
+ getItemsLoading$(filterId: any, categoryIndex: any): Observable<boolean>;
11542
11562
  getFilterCategoryValue$(filterId: any, categoryIndex: any): Observable<any>;
11543
11563
  /**
11544
11564
  * Action dispatcher
@@ -11554,6 +11574,9 @@ declare class QdFilterService {
11554
11574
  resetEmissionReplaySubjects(filterId: any): void;
11555
11575
  setCategoryFilter(filterId: any, categoryIndex: number, filter: string): void;
11556
11576
  resetCategoryFilter(filterId: string, categoryIndex: number): void;
11577
+ clearCategorySelection(filterId: string, categoryIndex: number): void;
11578
+ setItemsLoading(filterId: string, categoryIndex: number, loading: boolean): void;
11579
+ private getItemsLoadingSubject;
11557
11580
  private getQueryStringSubject;
11558
11581
  private getFilterUrlParameterSubject;
11559
11582
  private getPostBodySubject;
@@ -11562,43 +11585,123 @@ declare class QdFilterService {
11562
11585
  }
11563
11586
 
11564
11587
  /**
11565
- * The **QdFilter** is responsible for the filtering of data.
11588
+ * **QdFilterComponent** lets users build and apply a filter with several categories over a data set.
11566
11589
  *
11567
- * Hirarchical structure::
11568
- * - **Filter**: Name of the component.
11569
- * - **Categories**: A list of one or more different categories.
11570
- * - **Items**: A list with one or more items belongs to a parent category.
11590
+ * #### **Features**
11591
+ *
11592
+ * - **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.
11593
+ * - **Outputs**: react to the applied selection through the query-string and post-body outputs, or read the current selection at any time.
11594
+ * - **Multi-staging**: chain categories so one stage loads its items from the selection of another.
11595
+ * - **URL sync**: the selection is kept in the URL, so a view can be shared, bookmarked, and reopened.
11596
+ *
11597
+ * #### **Quick start**
11571
11598
  *
11572
- * ### Filter selection ###
11599
+ * **1. Add the filter to the template**
11573
11600
  *
11574
- * To get the applied filters you can listen to the outputs `(queryStringOutput)` and `(postBodyOutput)`.
11575
- * These outputs will be emitted when the filter is triggered. The `(queryStringOutput)` returns
11576
- * the applied filters as an url string with an encoded *filter* parameter. The `(postBodyOutput)`
11577
- * yields an object containing the categories and active items.
11601
+ * ```html
11602
+ * <qd-filter
11603
+ * [filterData]="myFilterConfig"
11604
+ * (queryStringOutput)="callBackendWithQueryString($event)"
11605
+ * (postBodyOutput)="callBackendWithResultObject($event)"
11606
+ * ></qd-filter>
11607
+ * ```
11578
11608
  *
11579
- * In addition to the outputs, you also can query the current filter selection with the
11580
- * filter component methods `getCurrentQueryString`, `getCurrentFilterUrlParameterString` and `getCurrentPostBody`.
11609
+ * **2. Define the config in your component**
11581
11610
  *
11582
- * ### Preserve filter state ###
11611
+ * ```typescript
11612
+ * myFilterConfig: QdFilterConfigData = {
11613
+ * categories: [
11614
+ * {
11615
+ * type: 'singleSelect',
11616
+ * category: 'controlObject',
11617
+ * i18n: 'i18n.my.category.controlObject',
11618
+ * items: [
11619
+ * { item: 'vehicle', i18n: 'i18n.my.item.vehicle', active: true },
11620
+ * { item: 'article', i18n: 'i18n.my.item.article' }
11621
+ * ],
11622
+ * filter: true
11623
+ * },
11624
+ * {
11625
+ * type: 'multiSelect',
11626
+ * category: 'enrollmentCountry',
11627
+ * i18n: 'i18n.my.category.enrollmentCountry',
11628
+ * items: [
11629
+ * { item: 'de', i18n: 'i18n.my.item.de' },
11630
+ * { item: 'ch', i18n: 'i18n.my.item.ch' }
11631
+ * ]
11632
+ * }
11633
+ * ],
11634
+ * uid: 'overview-filter'
11635
+ * };
11636
+ * ```
11637
+ *
11638
+ * The `filterData` input is the only configuration. It holds the categories and the behavior flags.
11639
+ *
11640
+ * #### **Category types**
11641
+ *
11642
+ * A category sets its type to one of: singleSelect, multiSelect, boolean, date, dateTime,
11643
+ * dateRange, dateTimeRange or freeText. Single and multi select show a dropdown, boolean is a
11644
+ * toggle, the date types open a picker (the date-time variants add a time picker), and free text
11645
+ * is a text field applied on enter.
11646
+ *
11647
+ * On a single or multi select you can add a filter field above the items with `filter: true` to
11648
+ * narrow the item list. It has no effect on the other types.
11649
+ *
11650
+ * #### **Filter selection**
11651
+ *
11652
+ * Listen to the outputs to react when the user applies the filter. The query-string output gives
11653
+ * the selection as a URL string (for example filter=...); the post-body output gives it as an
11654
+ * object with the active categories and their values.
11655
+ *
11656
+ * The outputs fire when the user applies the filter, on reset (only when a preselection exists),
11657
+ * when the last active item is removed, and on load if a category starts active.
11658
+ *
11659
+ * To read the selection without waiting for an apply, call `getCurrentQueryString` or
11660
+ * `getCurrentPostBody`, or subscribe to `getFilterChanges$` for a continuous stream.
11661
+ *
11662
+ * #### **Multi-staging filters**
11663
+ *
11664
+ * To chain categories, give one a `dependsOn` list and an `itemsResolver`. In `dependsOn` you
11665
+ * name the parent categories. The resolver receives the active parents and returns the items for
11666
+ * this stage.
11667
+ *
11668
+ * ```typescript
11669
+ * const cityCategory: QdDependentFilterCategory = {
11670
+ * type: 'multiSelect',
11671
+ * category: 'city',
11672
+ * i18n: 'i18n.my.category.city',
11673
+ * dependsOn: ['country'],
11674
+ * itemsResolver: ([country]) =>
11675
+ * loadCitiesFor(country.items.filter(item => item.active)),
11676
+ * filter: true
11677
+ * };
11678
+ * ```
11583
11679
  *
11584
- * To preserve the filter state when navigating, for example between detail and overview page, you just have to define
11585
- * a uid in the filter data config.
11680
+ * The stage appears once every parent has an active item. While its items load, the open
11681
+ * dropdown shows a loading text instead of the list. If the resolver returns nothing, the list
11682
+ * stays empty. Multi-staging works only for single and multi select categories.
11586
11683
  *
11587
- * ### Multi Staging Filters
11684
+ * #### **URL synchronization**
11588
11685
  *
11589
- * To build a dependency chain of filters you can use the `dependsOn` property of a filter that depends on
11590
- * other filters. In the `dependsOn` property you set the names of the filter categories the category depends on.
11591
- * Always when one of these categories change the `itemsResolver` will be called with the list
11592
- * of categories given in `dependsOn`. The `itemsResolver` can also be defined in the config where `dependsOn`
11593
- * is also defined.
11686
+ * The filter keeps its selection in the URL filter parameter: it is saved when the selection
11687
+ * changes and read back when the page opens, so a user can share or bookmark the URL and return
11688
+ * to the same filter.
11594
11689
  *
11595
- * If the items resolver has not been called yet or when it returns an empty array of items,
11596
- * the corresponding filter stage won't be rendered.
11690
+ * This is on by default. With more than one filter in a view, only one may own the URL, so set
11691
+ * `connectWithRouter` to false on every other filter.
11597
11692
  *
11598
- * #### Support
11693
+ * #### **Preserve filter state**
11599
11694
  *
11600
- * Multi Staging Filters only work for `singleSelect` and `multiSelect` filters.
11695
+ * Give the config a stable `uid` to keep the selection while the user moves around the app, for
11696
+ * example from an overview to a detail page and back. The selection is restored the next time a
11697
+ * filter with the same `uid` is shown.
11601
11698
  *
11699
+ * #### **Reset behavior**
11700
+ *
11701
+ * An item set to active is a preselection. The reset button reads "Reset" when there is no
11702
+ * preselection, and "Back to preselection" when the config starts with active items. It restores
11703
+ * the initial state. With instant filtering (`isInstantFiltering`) the apply and reset buttons
11704
+ * are hidden and the filter applies on every change.
11602
11705
  */
11603
11706
  declare class QdFilterComponent implements OnInit, OnChanges, OnDestroy {
11604
11707
  readonly filterService: QdFilterService;
@@ -11845,6 +11948,7 @@ declare class QdFilterItemDateComponent implements OnInit, OnDestroy {
11845
11948
  clickTimePlaceholder: EventEmitter<boolean>;
11846
11949
  testId: string;
11847
11950
  get dataTestId(): string;
11951
+ private datepicker?;
11848
11952
  datepickerConfig: QdFormDatepickerConfiguration;
11849
11953
  item: Date;
11850
11954
  private _destroyed$;
@@ -11852,36 +11956,12 @@ declare class QdFilterItemDateComponent implements OnInit, OnDestroy {
11852
11956
  ngOnDestroy(): void;
11853
11957
  handleDateChange(date: Date): void;
11854
11958
  handleClickTimePlaceholder($event: boolean): void;
11959
+ open(): void;
11855
11960
  private subscribeGetItem;
11856
11961
  static ɵfac: i0.ɵɵFactoryDeclaration<QdFilterItemDateComponent, never>;
11857
11962
  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>;
11858
11963
  }
11859
11964
 
11860
- declare class QdFilterItemDateRangeCategoryComponent implements OnInit {
11861
- private readonly filterService;
11862
- filterId: string;
11863
- categoryIndex: number;
11864
- testId: string;
11865
- timePickerConfig?: QdFormTimepickerConfiguration;
11866
- i18n$: Observable<string>;
11867
- fromItem$: Observable<QdFilterItem>;
11868
- fromItemIndex: number;
11869
- fromItemTimePickerConfig: QdFormTimepickerConfiguration;
11870
- fromItemTimePlaceholderClicked: boolean;
11871
- untilItem$: Observable<QdFilterItem>;
11872
- untilItemIndex: number;
11873
- untilItemTimePickerConfig: QdFormTimepickerConfiguration;
11874
- untilItemTimePlaceholderClicked: boolean;
11875
- ngOnInit(): void;
11876
- removeItem(itemIndex: any): void;
11877
- handleFromTimePlaceholderClicked($event: boolean): void;
11878
- handleUntilTimePlaceholderClicked($event: boolean): void;
11879
- private setCategoryI18n;
11880
- private setFromItem;
11881
- static ɵfac: i0.ɵɵFactoryDeclaration<QdFilterItemDateRangeCategoryComponent, never>;
11882
- 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>;
11883
- }
11884
-
11885
11965
  declare class QdFilterItemDateRangeComponent implements OnInit, OnDestroy {
11886
11966
  private readonly filterService;
11887
11967
  filterId: string;
@@ -11895,6 +11975,8 @@ declare class QdFilterItemDateRangeComponent implements OnInit, OnDestroy {
11895
11975
  private _destroyed$;
11896
11976
  get itemClassName(): string;
11897
11977
  get dataTestId(): string;
11978
+ private datepicker?;
11979
+ open(): void;
11898
11980
  get minDate$(): Observable<string | undefined>;
11899
11981
  get maxDate$(): Observable<string | undefined>;
11900
11982
  ngOnInit(): void;
@@ -11908,6 +11990,32 @@ declare class QdFilterItemDateRangeComponent implements OnInit, OnDestroy {
11908
11990
  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>;
11909
11991
  }
11910
11992
 
11993
+ declare class QdFilterItemDateRangeCategoryComponent implements OnInit {
11994
+ private readonly filterService;
11995
+ filterId: string;
11996
+ categoryIndex: number;
11997
+ testId: string;
11998
+ timePickerConfig?: QdFormTimepickerConfiguration;
11999
+ i18n$: Observable<string>;
12000
+ fromItem$: Observable<QdFilterItem>;
12001
+ fromItemIndex: number;
12002
+ fromItemTimePickerConfig: QdFormTimepickerConfiguration;
12003
+ fromItemTimePlaceholderClicked: boolean;
12004
+ untilItem$: Observable<QdFilterItem>;
12005
+ untilItemIndex: number;
12006
+ untilItemTimePickerConfig: QdFormTimepickerConfiguration;
12007
+ untilItemTimePlaceholderClicked: boolean;
12008
+ ngOnInit(): void;
12009
+ openItem(itemRef: QdFilterItemDateRangeComponent, event: Event): void;
12010
+ removeItem(itemIndex: any): void;
12011
+ handleFromTimePlaceholderClicked($event: boolean): void;
12012
+ handleUntilTimePlaceholderClicked($event: boolean): void;
12013
+ private setCategoryI18n;
12014
+ private setFromItem;
12015
+ static ɵfac: i0.ɵɵFactoryDeclaration<QdFilterItemDateRangeCategoryComponent, never>;
12016
+ 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>;
12017
+ }
12018
+
11911
12019
  declare class QdFilterItemFreeTextComponent implements OnInit, OnDestroy {
11912
12020
  private readonly filterService;
11913
12021
  filterId: string;
@@ -11920,6 +12028,7 @@ declare class QdFilterItemFreeTextComponent implements OnInit, OnDestroy {
11920
12028
  i18n: any;
11921
12029
  get dataTestId(): string;
11922
12030
  get value(): string;
12031
+ inputValue: string;
11923
12032
  private _destroyed$;
11924
12033
  ngOnInit(): void;
11925
12034
  ngOnDestroy(): void;
@@ -11930,8 +12039,14 @@ declare class QdFilterItemFreeTextComponent implements OnInit, OnDestroy {
11930
12039
  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>;
11931
12040
  }
11932
12041
 
12042
+ interface QdFilterItemEntry {
12043
+ item: QdFilterItem;
12044
+ itemIndex: number;
12045
+ }
11933
12046
  declare class QdFilterItemSelectCategoryComponent implements OnInit {
11934
12047
  private readonly filterService;
12048
+ private readonly breakpointService;
12049
+ readonly isMobile$: Observable<boolean>;
11935
12050
  filterId: string;
11936
12051
  categoryIndex: number;
11937
12052
  testId: string;
@@ -11943,10 +12058,18 @@ declare class QdFilterItemSelectCategoryComponent implements OnInit {
11943
12058
  items: QdFilterItem[];
11944
12059
  dependsOn: string[];
11945
12060
  showSelectButton$: Observable<boolean>;
12061
+ itemsLoading$: Observable<boolean>;
11946
12062
  positionStrategy: ConnectedPosition[];
11947
12063
  maxFlyoutHeight: number;
11948
12064
  private _destroyRef;
12065
+ private frozenSelectedKeys;
12066
+ private frozenUnselectedKeys;
11949
12067
  get closeButton(): boolean;
12068
+ get activeItemCount(): number;
12069
+ get selectedDropdownEntries(): QdFilterItemEntry[];
12070
+ get unselectedDropdownEntries(): QdFilterItemEntry[];
12071
+ get showSelectedSeparator(): boolean;
12072
+ get hasNoVisibleItems(): boolean;
11950
12073
  get buttonClassName(): string;
11951
12074
  get layerContentClassName(): string;
11952
12075
  get filterCategoryValue$(): Observable<string>;
@@ -11955,9 +12078,14 @@ declare class QdFilterItemSelectCategoryComponent implements OnInit {
11955
12078
  onLayerClosed(): void;
11956
12079
  closeLayer(): void;
11957
12080
  close(itemIndex: string): void;
12081
+ clearAll(): void;
12082
+ trackByItem(_index: number, entry: QdFilterItemEntry): string;
12083
+ private freezeDropdownOrder;
12084
+ private toEntries;
11958
12085
  changeValue($event: string): void;
11959
12086
  private initCategorySubscription;
11960
12087
  private initItemsSubscription;
12088
+ private haveSameItemKeys;
11961
12089
  private initShowSelectButton;
11962
12090
  static ɵfac: i0.ɵɵFactoryDeclaration<QdFilterItemSelectCategoryComponent, never>;
11963
12091
  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>;
@@ -12393,6 +12521,18 @@ declare class QdPageControlPanelComponent {
12393
12521
  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>;
12394
12522
  }
12395
12523
 
12524
+ declare class QdPageFooterCustomContentDirective implements OnInit, OnDestroy {
12525
+ private footerService;
12526
+ ngOnInit(): void;
12527
+ ngOnDestroy(): void;
12528
+ static ɵfac: i0.ɵɵFactoryDeclaration<QdPageFooterCustomContentDirective, never>;
12529
+ static ɵdir: i0.ɵɵDirectiveDeclaration<QdPageFooterCustomContentDirective, "[qdPageFooter]", never, {}, {}, never, never, false, never>;
12530
+ }
12531
+
12532
+ /**
12533
+ * Type for the keys of footer actions.
12534
+ */
12535
+ type QdFooterActionKey = 'saveDraft' | 'previous' | 'next' | 'cancel' | 'submit';
12396
12536
  /**
12397
12537
  * Interface that describes the configuration of a footer action.
12398
12538
  */
@@ -12904,6 +13044,28 @@ declare class QdPageTabsAdapterDirective implements OnInit {
12904
13044
  static ɵdir: i0.ɵɵDirectiveDeclaration<QdPageTabsAdapterDirective, "[qdPageTabsAdapter]", never, {}, {}, never, never, false, never>;
12905
13045
  }
12906
13046
 
13047
+ declare class QdPageFooterService {
13048
+ private _pageFooterActions;
13049
+ private _customContentCount;
13050
+ pageFooterActions$: rxjs.Observable<Map<QdFooterActionKey, QdPageFooterAction>>;
13051
+ customContentCount$: rxjs.Observable<number>;
13052
+ footerHasContent$: rxjs.Observable<boolean>;
13053
+ registerCustomContent(): void;
13054
+ detachCustomContent(): void;
13055
+ setActions(actionsArray: Array<{
13056
+ key: QdFooterActionKey;
13057
+ action: QdPageFooterAction;
13058
+ }>): void;
13059
+ updateActions(updates: {
13060
+ actionKey: QdFooterActionKey;
13061
+ partialAction: Partial<QdPageFooterAction>;
13062
+ }[]): void;
13063
+ private sortActionsByPriority;
13064
+ private isAnyActionVisible;
13065
+ static ɵfac: i0.ɵɵFactoryDeclaration<QdPageFooterService, never>;
13066
+ static ɵprov: i0.ɵɵInjectableDeclaration<QdPageFooterService>;
13067
+ }
13068
+
12907
13069
  /**
12908
13070
  * The configuration object of the tabs
12909
13071
  */
@@ -13031,7 +13193,8 @@ interface QdPageTabCounters {
13031
13193
  /**
13032
13194
  * The **QdPageTab** is a single tab inside the **QdPageTabs** within a **QdPage**.
13033
13195
  */
13034
- declare class QdPageTabComponent extends CdkStep implements OnInit, OnChanges, OnDestroy {
13196
+ declare class QdPageTabComponent implements OnInit, OnChanges, OnDestroy {
13197
+ private readonly _pageTabs;
13035
13198
  private translate;
13036
13199
  /**
13037
13200
  * Configuration of QdPageTabComponent.
@@ -13043,8 +13206,14 @@ declare class QdPageTabComponent extends CdkStep implements OnInit, OnChanges, O
13043
13206
  set tabControl(tabControl: AbstractControl);
13044
13207
  get tabControl(): AbstractControl;
13045
13208
  infoBanners: QueryList<QdPageInfoBannerComponent>;
13209
+ content: TemplateRef<any>;
13210
+ stepControl?: AbstractControl;
13211
+ interacted: boolean;
13212
+ editable: boolean;
13213
+ get completed(): boolean;
13214
+ get hasError(): boolean;
13046
13215
  private _destroyed$;
13047
- constructor();
13216
+ select(): void;
13048
13217
  ngOnInit(): void;
13049
13218
  ngOnChanges(changes?: SimpleChanges): void;
13050
13219
  ngOnDestroy(): void;
@@ -13240,10 +13409,14 @@ interface QdTabSelectionEvent {
13240
13409
  * - If an invalid tab name is provided in URL, the first available tab is selected
13241
13410
  * - If no tab parameter is present, the `selectedIndex` or first non-disabled tab is selected
13242
13411
  */
13243
- declare class QdPageTabsComponent extends CdkStepper implements OnInit, OnChanges, AfterContentInit, AfterViewInit {
13244
- private readonly footerService;
13245
- private pageStoreService;
13412
+ declare class QdPageTabsComponent implements OnInit, OnChanges, AfterContentInit, AfterViewInit {
13413
+ readonly footerService: QdPageFooterService;
13414
+ private readonly pageStoreService;
13246
13415
  private readonly routerConnector;
13416
+ private readonly _changeDetectorRef;
13417
+ private readonly destroyRef;
13418
+ private static _idCounter;
13419
+ private readonly _id;
13247
13420
  protected get hasPageFooter(): boolean;
13248
13421
  /**
13249
13422
  * Configuration of QdPageTabs.
@@ -13254,17 +13427,26 @@ declare class QdPageTabsComponent extends CdkStepper implements OnInit, OnChange
13254
13427
  */
13255
13428
  testId: string;
13256
13429
  readonly tabSelection: EventEmitter<QdTabSelectionEvent>;
13430
+ private _tabs;
13431
+ linear: boolean;
13432
+ private _selectedIndex;
13257
13433
  private _viewonly;
13258
- private readonly destroyRef;
13259
13434
  get tabs(): QueryList<QdPageTabComponent>;
13260
13435
  get selected(): QdPageTabComponent | undefined;
13261
- set selected(step: QdPageTabComponent | undefined);
13262
- constructor();
13436
+ set selected(tab: QdPageTabComponent | undefined);
13437
+ get selectedIndex(): number;
13438
+ set selectedIndex(newIndex: number);
13263
13439
  ngOnInit(): void;
13264
13440
  ngOnChanges(changes: SimpleChanges): void;
13265
- _getIndicatorType(index: number, state?: StepState): StepState;
13266
13441
  ngAfterContentInit(): void;
13267
13442
  ngAfterViewInit(): void;
13443
+ _stateChanged(): void;
13444
+ _getIndicatorType(index: number): string;
13445
+ _getTabLabelId(i: number): string;
13446
+ save(): void;
13447
+ selectTab(tab: QdPageTabComponent): void;
13448
+ isSubmitButtonShown(): boolean;
13449
+ isSubmitButtonDisabled(): boolean | undefined;
13268
13450
  private initializeTabSelection;
13269
13451
  private configureBookmarkableTabs;
13270
13452
  private isTabSelectable;
@@ -13272,15 +13454,9 @@ declare class QdPageTabsComponent extends CdkStepper implements OnInit, OnChange
13272
13454
  * Selects the first tab that is not disabled.
13273
13455
  */
13274
13456
  private selectFirstNotDisabledTab;
13275
- save(): void;
13276
- selectTab(tab: QdPageTabComponent): void;
13277
- isSubmitButtonShown(): boolean;
13278
- isSubmitButtonDisabled(): boolean | undefined;
13279
- _getTabLabelId(i: number): string;
13280
13457
  private blockCdkInput;
13281
- private mapSelectionChangeToTabSelectionOutput;
13282
13458
  static ɵfac: i0.ɵɵFactoryDeclaration<QdPageTabsComponent, never>;
13283
- 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>;
13459
+ 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>;
13284
13460
  }
13285
13461
 
13286
13462
  interface QdSearchPostBodyData {
@@ -14481,14 +14657,6 @@ declare class QdReferencesFacetComponent<T> {
14481
14657
  static ɵcmp: i0.ɵɵComponentDeclaration<QdReferencesFacetComponent<any>, "qd-references-facet", never, { "facet": { "alias": "facet"; "required": false; }; "data": { "alias": "data"; "required": false; }; }, {}, never, never, false, never>;
14482
14658
  }
14483
14659
 
14484
- declare class QdPageFooterCustomContentDirective implements OnInit, OnDestroy {
14485
- private footerService;
14486
- ngOnInit(): void;
14487
- ngOnDestroy(): void;
14488
- static ɵfac: i0.ɵɵFactoryDeclaration<QdPageFooterCustomContentDirective, never>;
14489
- static ɵdir: i0.ɵɵDirectiveDeclaration<QdPageFooterCustomContentDirective, "[qdPageFooter]", never, {}, {}, never, never, false, never>;
14490
- }
14491
-
14492
14660
  declare class QdContextSelectDialogComponent implements OnInit {
14493
14661
  private dialogRef;
14494
14662
  private translateService;
@@ -18079,18 +18247,13 @@ declare class QdPageStepperModule {
18079
18247
  */
18080
18248
  declare function qdPageTabParameterize(tab: QdPageTabConfig | string | undefined): QdQueryParameter;
18081
18249
 
18250
+ type QdTabState = 'number' | 'edit' | 'done' | 'error' | string;
18082
18251
  /**
18083
18252
  * **QdPageTabHeader* renders the header of a single tab. It is used quadrel-internally.
18084
18253
  */
18085
- declare class QdPageTabHeaderComponent extends CdkStepHeader {
18086
- protected readonly STEP_STATE: {
18087
- NUMBER: string;
18088
- EDIT: string;
18089
- DONE: string;
18090
- ERROR: string;
18091
- };
18254
+ declare class QdPageTabHeaderComponent {
18092
18255
  /** State of the given tab. */
18093
- state: StepState;
18256
+ state: QdTabState;
18094
18257
  /** Label of the given tab. */
18095
18258
  label: string;
18096
18259
  /** Represents up to two numeric counters as a badge */
@@ -18105,7 +18268,6 @@ declare class QdPageTabHeaderComponent extends CdkStepHeader {
18105
18268
  * A static test ID for integration tests can be set.
18106
18269
  */
18107
18270
  testId: string;
18108
- constructor();
18109
18271
  static ɵfac: i0.ɵɵFactoryDeclaration<QdPageTabHeaderComponent, never>;
18110
18272
  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>;
18111
18273
  }
@@ -18122,7 +18284,7 @@ declare class QdPageTabHeaderCountersComponent implements OnInit {
18122
18284
 
18123
18285
  declare class QdPageTabsModule {
18124
18286
  static ɵfac: i0.ɵɵFactoryDeclaration<QdPageTabsModule, never>;
18125
- 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]>;
18287
+ 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]>;
18126
18288
  static ɵinj: i0.ɵɵInjectorDeclaration<QdPageTabsModule>;
18127
18289
  }
18128
18290
 
@@ -18576,5 +18738,5 @@ declare class QdUiModule {
18576
18738
 
18577
18739
  declare const APP_ENVIRONMENT: InjectionToken<QdAppEnvironment>;
18578
18740
 
18579
- 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 };
18741
+ 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 };
18580
18742
  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 };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quadrel-enterprise-ui/framework",
3
- "version": "20.26.1",
3
+ "version": "20.27.0",
4
4
  "exports": {
5
5
  "./jest-preset": "./jest-preset.js",
6
6
  "./package.json": {