@quadrel-enterprise-ui/framework 20.17.0 → 20.17.2-beta.169.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.d.ts CHANGED
@@ -4,7 +4,7 @@ import * as i11 from '@angular/cdk/dialog';
4
4
  import { DialogConfig, DialogRef } from '@angular/cdk/dialog';
5
5
  import * as i0 from '@angular/core';
6
6
  import { InjectionToken, EventEmitter, OnInit, PipeTransform, TemplateRef, AfterContentInit, AfterViewInit, DestroyRef, OnDestroy, OnChanges, AfterViewChecked, SimpleChanges, AfterContentChecked, Injector, ElementRef, QueryList, DoCheck, NgIterable, ViewContainerRef, TrackByFunction, Type, ModuleWithProviders } from '@angular/core';
7
- import { HttpInterceptor, HttpRequest, HttpHandler, HttpEvent } from '@angular/common/http';
7
+ import { HttpInterceptor, HttpRequest, HttpHandler, HttpEvent, HttpParams } from '@angular/common/http';
8
8
  import * as i2 from '@angular/common';
9
9
  import { Moment } from 'moment/moment';
10
10
  import * as i31 from '@angular/forms';
@@ -1045,6 +1045,54 @@ declare class QdProjectionGuardComponent implements AfterContentInit, AfterViewI
1045
1045
  static ɵcmp: i0.ɵɵComponentDeclaration<QdProjectionGuardComponent, "qd-projection-guard", never, { "isDisabled": { "alias": "isDisabled"; "required": false; }; "warningMessage": { "alias": "warningMessage"; "required": false; }; }, {}, never, ["*"], false, never>;
1046
1046
  }
1047
1047
 
1048
+ /**
1049
+ * Result type every query serializer returns. Holds one dimension (sort, filter, search,
1050
+ * paging, or tab) as `params` for `HttpClient` and as `toQueryString()` for logs.
1051
+ *
1052
+ * @remarks
1053
+ * Always send `.params`; it encodes the value the backend expects. `toQueryString()` is only
1054
+ * for logging — for filter and search it leaves `$`, `,` and `+` as-is, so do not re-encode it.
1055
+ */
1056
+ interface QdQueryParameter {
1057
+ /** `HttpParams` for one dimension; empty when the input was empty or `undefined`. */
1058
+ readonly params: HttpParams;
1059
+ /** The parameters as a query string for logging, e.g. `sort=name,asc`; empty when nothing to send. */
1060
+ toQueryString(): string;
1061
+ }
1062
+ /**
1063
+ * **qdQueryParameter** wraps an `HttpParams` in the {@link QdQueryParameter} contract. Every serializer returns
1064
+ * through this, so `.params` and `toQueryString()` always match.
1065
+ *
1066
+ * ### Usage
1067
+ *
1068
+ * ```ts
1069
+ * qdQueryParameter(new HttpParams().set('page', '0')).toQueryString(); // 'page=0'
1070
+ * ```
1071
+ *
1072
+ * @param params - The query parameters for one dimension.
1073
+ * @returns A {@link QdQueryParameter} with both forms.
1074
+ */
1075
+ declare function qdQueryParameter(params: HttpParams): QdQueryParameter;
1076
+ /**
1077
+ * **mergeQdQueryParameters** combines several {@link QdQueryParameter} parts into one. Repeated keys such as `sort` are
1078
+ * kept, and the parts stay in the order you pass them.
1079
+ *
1080
+ * ### Usage
1081
+ *
1082
+ * ```ts
1083
+ * const params = mergeQdQueryParameters([qdFilterParameterize(props.filter), qdSearchParameterize(props.search)]).params;
1084
+ * this.http.get('/api/companies', { params });
1085
+ * ```
1086
+ *
1087
+ * @remarks
1088
+ * Each part must use its own keys. If two parts share a key, both values are kept and nothing
1089
+ * warns you. Do not rely on key order — backends treat query parameters as unordered.
1090
+ *
1091
+ * @param parts - The dimensions to merge.
1092
+ * @returns One {@link QdQueryParameter} with every key of every part.
1093
+ */
1094
+ declare function mergeQdQueryParameters(parts: readonly QdQueryParameter[]): QdQueryParameter;
1095
+
1048
1096
  /**
1049
1097
  * Display label for an adapter's owning feature, used by the hub to format ownership-conflict
1050
1098
  * error messages in user-facing terms (no internal service names leak into logs).
@@ -11409,11 +11457,42 @@ declare class QdFilterComponent implements OnInit, OnChanges, OnDestroy {
11409
11457
  * // Use it in an HTTP call
11410
11458
  * httpClient.get(`/api/resource?filter=${filterParam}`);
11411
11459
  * ```
11460
+ *
11461
+ * @deprecated For the resolver post-body path use the free function `qdFilterParameterize`
11462
+ * (filter module), which takes the canonical `QdFilterPostBodyData` handed over in
11463
+ * `QdTableDataResolverProps.filter` and returns a `QdQueryParameter`. This builder is
11464
+ * retained because it genuinely differs: it takes the config-shape `QdFilterCategory[]`,
11465
+ * returns a bare value without a key, and still supports the legacy separator format that
11466
+ * `qdFilterParameterize` does not.
11412
11467
  */
11413
11468
  declare class QdFilterRestParamBuilder {
11414
11469
  static build(filter: QdFilterCategory[] | undefined, legacy?: boolean): string;
11415
11470
  }
11416
11471
 
11472
+ /**
11473
+ * **qdFilterParameterize** turns filter state into the `filter` parameter read by the backend `QdFilterParser`. It
11474
+ * builds the new-format value `category$item§item2|category2$item` and backslash-escapes any
11475
+ * reserved symbol inside an item.
11476
+ *
11477
+ * ### Usage
11478
+ *
11479
+ * ```ts
11480
+ * const filter = { categories: [{ category: 'country', items: ['de', 'usa'] }], uid: 'x' };
11481
+ * qdFilterParameterize(filter).params.get('filter'); // 'country$de§usa'
11482
+ * ```
11483
+ *
11484
+ * @remarks
11485
+ * The input is the post-body from `QdTableDataResolverProps.filter`, not the full filter
11486
+ * config. Categories without a name or items are skipped and `uid` is ignored. Items are
11487
+ * written as-is (only escaped); the post-body has no category type, so the date-range
11488
+ * placeholder cannot be rebuilt here. Empty input gives empty parameters. For the legacy
11489
+ * format or the config shape, use the deprecated `QdFilterRestParamBuilder.build`.
11490
+ *
11491
+ * @param filter - The filter post-body from the resolver.
11492
+ * @returns A {@link QdQueryParameter} with the single `filter` key.
11493
+ */
11494
+ declare function qdFilterParameterize(filter: QdFilterPostBodyData | undefined): QdQueryParameter;
11495
+
11417
11496
  declare class LocaleDatePipe implements PipeTransform, OnDestroy {
11418
11497
  private readonly translateService;
11419
11498
  currentLanguage: ReplaySubject<string>;
@@ -12973,10 +13052,25 @@ interface QdSectionConfig {
12973
13052
  */
12974
13053
  action?: QdLegacySectionActionConfig;
12975
13054
  /**
12976
- * @description Configures the actions of the section
13055
+ * @description Configures the actions shown on the right of the section toolbar.
12977
13056
  *
12978
- * - **Single Action**: If only one action is defined, a standard QdButton is displayed with an optional specified icon.
12979
- * - **Multiple Actions**: If multiple action types are defined, a QdMenuButton is used, showing each action as a dropdown menu item.
13057
+ * The toolbar has two layouts that depend on the screen width.
13058
+ * "Mobile" means the screen is narrower than 960px (the `md` breakpoint).
13059
+ * "Desktop" means it is 960px or wider.
13060
+ *
13061
+ * **One action:**
13062
+ * - Desktop: a single button showing the label, plus the icon if one is set.
13063
+ * - Mobile: if the action has an icon, the button shrinks to show only that icon.
13064
+ * If it has no icon, the full text button stays visible. The button is never hidden.
13065
+ *
13066
+ * **Two or more actions:**
13067
+ * - Desktop: one menu button that opens a dropdown listing every action. Icons are not shown inside the dropdown.
13068
+ * - Mobile: the same dropdown, but an `addNew` action (if present) is taken out of the dropdown
13069
+ * and shown next to it as a separate compact plus button.
13070
+ *
13071
+ * **The `addNew` action:**
13072
+ * - It uses a plus icon by default. On desktop it shows the plus icon with its label;
13073
+ * on mobile it shrinks to the plus icon only.
12980
13074
  */
12981
13075
  actions?: (QdPredefinedSectionActionConfig | QdSectionActionConfig)[];
12982
13076
  /**
@@ -13050,6 +13144,7 @@ interface QdPredefinedSectionActionConfig {
13050
13144
  *
13051
13145
  * - By default, a plus icon is applied, but this can be overridden by specifying a custom icon.
13052
13146
  * - If left undefined, the `plus` icon will be used.
13147
+ * - Desktop: the button shows the icon next to the label. Mobile (screen narrower than 960px): the button shrinks to show only the icon.
13053
13148
  */
13054
13149
  icon?: string;
13055
13150
  /**
@@ -13131,10 +13226,17 @@ interface QdSectionActionConfig {
13131
13226
  */
13132
13227
  handler: () => void;
13133
13228
  /**
13134
- * @description Defines the icon to display for the action.
13229
+ * @description Defines the icon to display for this action. Leave it empty if no icon is needed.
13135
13230
  *
13136
- * - The icon visually represents the action in the UI.
13137
- * - **Note**: If multiple actions are present, the icon is ignored because the actions are displayed in a dropdown menu (MenuButton).
13231
+ * The icon is only used when this is the **only** action (a single button).
13232
+ * With two or more actions it is ignored, because they are shown in a dropdown menu.
13233
+ *
13234
+ * For a single action:
13235
+ * - Desktop: the button shows the icon next to the label.
13236
+ * - Mobile (screen narrower than 960px): the button shrinks to show only the icon.
13237
+ * If no icon is set, the text button stays visible instead.
13238
+ *
13239
+ * - For a list of available icons, see {@link https://quadrel.ezv.admin.ch/?path=/story/components-icon--icons-set}.
13138
13240
  */
13139
13241
  icon?: string;
13140
13242
  /**
@@ -14545,6 +14647,17 @@ declare class QdSectionToolbarComponent implements AfterViewInit {
14545
14647
  static ɵcmp: i0.ɵɵComponentDeclaration<QdSectionToolbarComponent, "qd-section-toolbar", never, { "config": { "alias": "config"; "required": false; }; }, {}, never, never, false, never>;
14546
14648
  }
14547
14649
 
14650
+ /**
14651
+ * Renders the configured section actions in the toolbar.
14652
+ *
14653
+ * The presentation is viewport-adaptive, expressed through three streams:
14654
+ * - Below `md` (mobile): one action is shown directly (`singleAction$`); if an
14655
+ * `addNew` action is paired with exactly one other action, that one remaining
14656
+ * action is shown directly as well (`remainingSingleAction$`); any larger set
14657
+ * collapses into a dropdown (`groupedActionsMenu$`).
14658
+ * - At or above `md` (desktop): every action is shown directly, and the dropdown
14659
+ * (`groupedActionsMenu$`) appears only when more than one action exists.
14660
+ */
14548
14661
  declare class QdSectionToolbarActionComponent implements OnInit, OnDestroy {
14549
14662
  private readonly actionService;
14550
14663
  private readonly changeDetectorRef;
@@ -14552,7 +14665,8 @@ declare class QdSectionToolbarActionComponent implements OnInit, OnDestroy {
14552
14665
  private readonly eventBroker;
14553
14666
  set config(config: QdSectionConfig);
14554
14667
  singleAction$: Observable<QdSingleActionConfig | null>;
14555
- multipleActions$: Observable<QdMenuButtonConfig | null>;
14668
+ remainingSingleAction$: Observable<QdSingleActionConfig | null>;
14669
+ groupedActionsMenu$: Observable<QdMenuButtonConfig | null>;
14556
14670
  private _config;
14557
14671
  private readonly _viewonly$;
14558
14672
  private readonly _destroy$;
@@ -14562,7 +14676,8 @@ declare class QdSectionToolbarActionComponent implements OnInit, OnDestroy {
14562
14676
  private initActionStreams;
14563
14677
  private createVisibleActionsStream;
14564
14678
  private createSingleActionStream;
14565
- private createMultipleActionsStream;
14679
+ private createRemainingSingleActionStream;
14680
+ private createGroupedActionsMenuStream;
14566
14681
  private getLabel;
14567
14682
  private executeAction;
14568
14683
  private validateConfig;
@@ -14571,6 +14686,28 @@ declare class QdSectionToolbarActionComponent implements OnInit, OnDestroy {
14571
14686
  static ɵcmp: i0.ɵɵComponentDeclaration<QdSectionToolbarActionComponent, "qd-section-toolbar-action", never, { "config": { "alias": "config"; "required": false; }; }, {}, never, never, false, never>;
14572
14687
  }
14573
14688
 
14689
+ /**
14690
+ * **qdSearchParameterize** turns search state into the `search` parameter read by the backend `QdSearchParser`. The
14691
+ * value is `phrase$<phrase>`, or `phrase$<phrase>&preSelect$<preSelect>` when a pre-select is
14692
+ * set.
14693
+ *
14694
+ * ### Usage
14695
+ *
14696
+ * ```ts
14697
+ * qdSearchParameterize({ phrase: 'acme corp', preSelect: '' }).params.get('search'); // 'phrase$acme+corp'
14698
+ * ```
14699
+ *
14700
+ * @remarks
14701
+ * Like `QdSearchService.getQueryString`, it shrinks runs of whitespace to one space and turns
14702
+ * each space into `+`. `preSelect` is only added when both fields have a value. An empty
14703
+ * `phrase` gives empty parameters. Confirm with `QdSearchParser` whether it expects `+` or
14704
+ * `%20`.
14705
+ *
14706
+ * @param search - The search post-body from `QdTableDataResolverProps.search`.
14707
+ * @returns A {@link QdQueryParameter} with the single `search` key.
14708
+ */
14709
+ declare function qdSearchParameterize(search: QdSearchPostBodyData | undefined): QdQueryParameter;
14710
+
14574
14711
  declare class QdSearchModule {
14575
14712
  static ɵfac: i0.ɵɵFactoryDeclaration<QdSearchModule, never>;
14576
14713
  static ɵmod: i0.ɵɵNgModuleDeclaration<QdSearchModule, [typeof QdSearchComponent], [typeof i2.CommonModule, typeof i9.TranslateModule, typeof i25.StoreFeatureModule, typeof QdButtonModule, typeof QdFormModule, typeof QdIconModule, typeof QdTooltipModule], [typeof QdSearchComponent]>;
@@ -14615,6 +14752,11 @@ interface QdTableResolvedData<T extends string> {
14615
14752
  /**
14616
14753
  * Represents the properties for resolving data, following the conventions of Spring Boot's Pageable API.
14617
14754
  *
14755
+ * To serialize this whole bundle into a backend query in one call, use
14756
+ * `qdTableQueryParameterize(props).params` (table module); for a single dimension use the
14757
+ * matching `qdSortParameterize` / `qdPaginationParameterize` / `qdFilterParameterize` /
14758
+ * `qdSearchParameterize` helper.
14759
+ *
14618
14760
  * @template T - The type representing column names.
14619
14761
  */
14620
14762
  interface QdTableDataResolverProps<T extends string> {
@@ -14627,7 +14769,8 @@ interface QdTableDataResolverProps<T extends string> {
14627
14769
  */
14628
14770
  size?: number;
14629
14771
  /**
14630
- * The Sort object. To obtain the query string compliant with Spring Boot's conventions, use the helper method "QdTableSpringTools.sortParameterize".
14772
+ * The Sort object. To obtain the query string compliant with Spring Boot's conventions, use the free
14773
+ * function `qdSortParameterize(sort)`, or `qdTableQueryParameterize(props)` to serialize the whole bundle.
14631
14774
  */
14632
14775
  sort?: QdTableStateSort<T>[];
14633
14776
  /**
@@ -14698,10 +14841,117 @@ interface QdTableConnectorCriteria {
14698
14841
  [criteria: string]: unknown;
14699
14842
  }
14700
14843
 
14844
+ /**
14845
+ * Spring-compatible serialization helpers for table query state.
14846
+ *
14847
+ * @deprecated Use the free function {@link qdSortParameterize} instead, which returns a
14848
+ * `QdQueryParameter`. This compatibility shell is retained only so the static method stays
14849
+ * importable.
14850
+ */
14701
14851
  declare class QdTableSpringTools {
14702
- static sortParameterize(sort: QdTableStateSort<string>[] | undefined): string;
14703
- private static mapSortDirection;
14852
+ /**
14853
+ * Serializes table sort state into the Spring `sort=column,direction` wire format.
14854
+ *
14855
+ * @deprecated Returns a string. Use the free function `qdSortParameterize(sort)` which
14856
+ * returns a `QdQueryParameter`. For identical string output use
14857
+ * `qdSortParameterize(sort).toQueryString()`; for an `HttpClient` request use
14858
+ * `qdSortParameterize(sort).params`. Note that dropping the class prefix without
14859
+ * `.toQueryString()` changes the return type from `string` to `QdQueryParameter`.
14860
+ *
14861
+ * @param sort - The sort state to serialize.
14862
+ * @returns The Spring sort query string, or the empty string when there is nothing to sort.
14863
+ */
14864
+ static qdSortParameterize(sort: QdTableStateSort<string>[] | undefined): string;
14865
+ }
14866
+
14867
+ /**
14868
+ * The pagination slice of `QdTableDataResolverProps`, following Spring Boot's `Pageable`
14869
+ * conventions.
14870
+ */
14871
+ interface QdPaginationParams {
14872
+ /**
14873
+ * The zero-indexed page number, passed through verbatim (no off-by-one adjustment).
14874
+ */
14875
+ page?: number;
14876
+ /**
14877
+ * The number of items per page.
14878
+ */
14879
+ size?: number;
14704
14880
  }
14881
+ /**
14882
+ * **qdPaginationParameterize** turns pagination state into the `page` and `size` parameters read by the backend
14883
+ * `QdPaginationParser`.
14884
+ *
14885
+ * ### Usage
14886
+ *
14887
+ * ```ts
14888
+ * qdPaginationParameterize({ page: 0, size: 25 }).toQueryString(); // 'page=0&size=25'
14889
+ * ```
14890
+ *
14891
+ * @remarks
14892
+ * `page` stays zero-indexed and is sent as-is (no `+1`/`-1`), so `page=0` is kept. Each key is
14893
+ * only set for a real number; `size` is trusted, not checked. Missing input gives empty
14894
+ * parameters.
14895
+ *
14896
+ * @param input - The page and size from the resolver props.
14897
+ * @returns A {@link QdQueryParameter} with the `page` and/or `size` keys.
14898
+ */
14899
+ declare function qdPaginationParameterize(input: QdPaginationParams | undefined): QdQueryParameter;
14900
+
14901
+ /**
14902
+ * **qdSortParameterize** turns table sort state into the Spring `sort=column,direction` format read by the backend
14903
+ * `QdSortParser`. Each active column adds one `sort` key, so several columns become repeated
14904
+ * keys (`sort=name,asc&sort=age,desc`).
14905
+ *
14906
+ * ### Usage
14907
+ *
14908
+ * ```ts
14909
+ * qdSortParameterize([{ column: 'name', direction: QdSortDirection.ASC }]).toQueryString(); // 'sort=name,asc'
14910
+ * ```
14911
+ *
14912
+ * @remarks
14913
+ * Columns with direction {@link QdSortDirection.NONE} are skipped. An empty array, a
14914
+ * non-array, or `undefined` gives empty parameters.
14915
+ *
14916
+ * @typeParam T - The sortable column names.
14917
+ * @param sort - The sort state from `QdTableDataResolverProps.sort`.
14918
+ * @returns A {@link QdQueryParameter} with the repeated `sort` keys.
14919
+ */
14920
+ declare function qdSortParameterize<T extends string>(sort: QdTableStateSort<T>[] | undefined): QdQueryParameter;
14921
+
14922
+ /**
14923
+ * **qdTableQueryParameterize** turns a full {@link QdTableDataResolverProps} bundle into one
14924
+ * {@link QdQueryParameter}.
14925
+ *
14926
+ * It is the one-line helper for a `QdTableDataResolver`. It serializes every table dimension
14927
+ * and merges the results into a single value:
14928
+ *
14929
+ * - `page` and `size` for paging
14930
+ * - `sort` for the sort order
14931
+ * - `filter` for the active filters
14932
+ * - `search` for the search phrase
14933
+ *
14934
+ * Page-level parameters such as `?tab` stay out. Add them with `mergeQdQueryParameters`.
14935
+ *
14936
+ * ### Usage
14937
+ *
14938
+ * ```ts
14939
+ * resolve(props: QdTableDataResolverProps<MyColumns>) {
14940
+ * const params = qdTableQueryParameterize(props).params;
14941
+ * return this.http.get<QdTableResolvedData<MyColumns>>('/api/companies', { params });
14942
+ * }
14943
+ * ```
14944
+ *
14945
+ * @remarks
14946
+ * For maintainers: the serializers are imported from their leaf `*-param.tools` files, never
14947
+ * the module barrels — a barrel import would pull the filter and search `StoreModule` into
14948
+ * table resolution and break tree-shaking.
14949
+ *
14950
+ * @typeParam T - The column names.
14951
+ * @param props - The resolver props bundle.
14952
+ * @returns A {@link QdQueryParameter} with every dimension that has a value.
14953
+ */
14954
+ declare function qdTableQueryParameterize<T extends string>(props: QdTableDataResolverProps<T>): QdQueryParameter;
14705
14955
 
14706
14956
  declare enum QdPaginatorDirection {
14707
14957
  FirstPage = 0,
@@ -17552,6 +17802,26 @@ declare class QdPageStepperModule {
17552
17802
  static ɵinj: i0.ɵɵInjectorDeclaration<QdPageStepperModule>;
17553
17803
  }
17554
17804
 
17805
+ /**
17806
+ * **qdPageTabParameterize** turns the active page tab into the `tab` query parameter
17807
+ * (`?tab=<name>`).
17808
+ *
17809
+ * Pass the whole {@link QdPageTabConfig} or just its `name`. The tab is a page-level
17810
+ * parameter, so `qdTableQueryParameterize` leaves it out. Combine both with
17811
+ * `mergeQdQueryParameters` at the page level. A missing or unnamed tab returns empty
17812
+ * parameters.
17813
+ *
17814
+ * ### Usage
17815
+ *
17816
+ * ```ts
17817
+ * qdPageTabParameterize('overview').toQueryString(); // 'tab=overview'
17818
+ * ```
17819
+ *
17820
+ * @param tab - The active tab config or its `name`.
17821
+ * @returns A {@link QdQueryParameter} with the single `tab` key.
17822
+ */
17823
+ declare function qdPageTabParameterize(tab: QdPageTabConfig | string | undefined): QdQueryParameter;
17824
+
17555
17825
  /**
17556
17826
  * **QdPageTabHeader* renders the header of a single tab. It is used quadrel-internally.
17557
17827
  */
@@ -18049,5 +18319,5 @@ declare class QdUiModule {
18049
18319
 
18050
18320
  declare const APP_ENVIRONMENT: InjectionToken<QdAppEnvironment>;
18051
18321
 
18052
- export { APP_ENVIRONMENT, AVAILABLE_ICONS, BACKEND_ERROR_CODES, MockLocaleDatePipe, NavigationTileComponent, NavigationTilesComponent, QD_DIALOG_CONFIRMATION_RESOLVER_TOKEN, QD_FILE_MANAGER_TOKEN, QD_FILE_UPLOAD_MANAGER_TOKEN, QD_FORM_OPTIONS_RESOLVER, QD_PAGE_OBJECT_RESOLVER_TOKEN, QD_PAGE_STEP_RESOLVER_TOKEN, QD_POPOVER_TOP_FIRST, QD_SAFE_BOTTOM_OFFSET, QD_TABLE_DATA_RESOLVER_TOKEN, QD_UPLOAD_HTTP_OPTIONS, QdButtonComponent, QdButtonGhostDirective, QdButtonGridComponent, QdButtonLinkDirective, QdButtonModule, QdButtonStackButtonComponent, QdButtonStackComponent, QdCheckboxChipsComponent, QdCheckboxComponent, QdCheckboxesComponent, QdChipComponent, QdChipModule, QdColumnAutoFillDirective, QdColumnBreakBeforeDirective, QdColumnDirective, QdColumnDisableResponsiveColspansDirective, QdColumnFullGridWidthDirective, QdColumnNextInSameRowDirective, QdColumnsDirective, QdColumnsDisableAutoFillDirective, QdColumnsDisableResponsiveColspansDirective, QdColumnsMaxDirective, QdCommentsComponent, QdCommentsModule, QdConnectFormStateToPageDirective, QdConnectorTableContextDirective, QdConnectorTableFilterDirective, QdConnectorTableSearchDirective, QdContactCardComponent, QdContactCardModule, QdContainerPairsCaptionComponent, QdContainerPairsContainerComponent, QdContainerPairsHeaderComponent, QdContainerPairsItemComponent, QdContainerPairsValueComponent, QdContextService, QdCoreModule, QdDatepickerComponent, QdDialogActionComponent, QdDialogAuthSessionEndComponent, QdDialogAuthSessionEndService, QdDialogComponent, QdDialogConfirmationComponent, QdDialogConfirmationErrorDirective, QdDialogConfirmationInfoDirective, QdDialogConfirmationSuccessDirective, QdDialogModule, QdDialogRecordStepperComponent, QdDialogService, QdDialogSize, QdDisabledDirective, QdDropdownComponent, QdFileCollectorComponent, QdFileCollectorModule, QdFileSizePipe$1 as QdFileSizePipe, QdFileUploadComponent, QdFileUploadService, QdFilterComponent, QdFilterFormItemsComponent, QdFilterModule, QdFilterRestParamBuilder, QdFilterService, QdFormArray, QdFormBuilder, QdFormControl, QdFormGroup, QdFormModule, QdGridComponent, QdGridModule, QdHorizontalPairsCaptionComponent, QdHorizontalPairsComponent, QdHorizontalPairsItemComponent, QdHorizontalPairsValueComponent, QdIconButtonComponent, QdIconComponent, QdIconModule, QdImageComponent, QdImageModule, QdIndeterminateProgressBarComponent, QdInputComponent, QdListModule, QdMenuButtonComponent, QdMockBreakpointService, QdMockButtonComponent, QdMockButtonGhostDirective, QdMockButtonGridComponent, QdMockButtonLinkDirective, QdMockButtonModule, QdMockButtonStackButtonComponent, QdMockButtonStackComponent, QdMockCalendarComponent, QdMockCheckboxChipsComponent, QdMockCheckboxComponent, QdMockCheckboxesComponent, QdMockChipComponent, QdMockChipModule, QdMockColumnDirective, QdMockColumnsDirective, QdMockContactCardComponent, QdMockContactCardModule, QdMockContainerPairsCaptionComponent, QdMockContainerPairsContainerComponent, QdMockContainerPairsHeaderComponent, QdMockContainerPairsItemComponent, QdMockContainerPairsValueComponent, QdMockCoreModule, QdMockCounterBadgeComponent, QdMockDatepickerComponent, QdMockDisabledDirective, QdMockDropdownComponent, QdMockFileCollectorComponent, QdMockFileCollectorModule, QdMockFilterCategoryBooleanComponent, QdMockFilterCategoryComponent, QdMockFilterCategoryDateComponent, QdMockFilterCategoryDateRangeComponent, QdMockFilterCategoryFreeTextComponent, QdMockFilterCategorySelectComponent, QdMockFilterComponent, QdMockFilterFormItemsComponent, QdMockFilterItemBooleanComponent, QdMockFilterItemDateComponent, QdMockFilterItemDateRangeComponent, QdMockFilterItemFreeTextComponent, QdMockFilterItemMultiSelectComponent, QdMockFilterItemSingleSelectComponent, QdMockFilterModule, QdMockFilterService, QdMockFormErrorComponent, QdMockFormGroupErrorComponent, QdMockFormHintComponent, QdMockFormLabelComponent, QdMockFormReadonlyComponent, QdMockFormViewonlyComponent, QdMockFormsModule, QdMockGridModule, QdMockIconButtonComponent, QdMockIconComponent, QdMockIconModule, QdMockImageComponent, QdMockImageModule, QdMockIndeterminateProgressBarComponent, QdMockInputComponent, QdMockListModule, QdMockNavigationTileComponent, QdMockNavigationTilesComponent, QdMockNavigationTilesModule, QdMockNotificationComponent, QdMockNotificationContentComponent, QdMockNotificationsComponent, QdMockNotificationsModule, QdMockNotificationsService, QdMockPageComponent, QdMockPageModule, QdMockPercentageProgressBarComponent, QdMockPinCodeComponent, QdMockPlaceHolderModule, QdMockPopoverOnClickDirective, QdMockProgressBarModule, QdMockQdPlaceHolderComponent, QdMockRadioButtonsComponent, QdMockRwdDisabledDirective, QdMockSearchComponent, QdMockSearchModule, QdMockSectionComponent, QdMockSectionModule, QdMockShellComponent, QdMockShellFooterComponent, QdMockShellHeaderBannerComponent, QdMockShellHeaderComponent, QdMockShellHeaderSearchComponent, QdMockShellHeaderWidgetComponent, QdMockShellModule, QdMockShellToolbarComponent, QdMockShellToolbarItemComponent, QdMockStatusIndicatorCaptionComponent, QdMockStatusIndicatorComponent, QdMockStatusIndicatorItemComponent, QdMockStatusIndicatorModule, QdMockStatusPairsCaptionComponent, QdMockStatusPairsComponent, QdMockStatusPairsErrorComponent, QdMockStatusPairsItemComponent, QdMockStatusPairsValueComponent, QdMockSwitchComponent, QdMockSwitchesComponent, QdMockTableComponent, QdMockTableModule, QdMockTextSectionComponent, QdMockTextSectionHeadlineComponent, QdMockTextSectionModule, QdMockTextSectionParagraphComponent, QdMockTextareaComponent, QdMockTileButtonListComponent, QdMockTileComponent, QdMockTileTextListComponent, QdMockTileTextListItemComponent, QdMockTileTitleComponent, QdMockTilesContainerComponent, QdMockTilesContainerTitleComponent, QdMockTilesModule, QdMockTranslatePipe, QdMockVisuallyHiddenDirective, QdMultiInputComponent, QdNavigationTilesModule, QdNotificationComponent, QdNotificationContentComponent, QdNotificationsComponent, QdNotificationsHttpInterceptorService, QdNotificationsModule, QdNotificationsService, QdNotificationsSnackbarListenerDirective, 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, QdSectionAdapterDirective, QdSectionComponent, QdSectionModule, QdSectionToolbarComponent, QdShellComponent, QdShellModule, QdSortDirection, QdSpinnerComponent, QdSpinnerModule, QdStatusIndicatorComponent, QdStatusIndicatorModule, QdStatusPairsCaptionComponent, QdStatusPairsComponent, QdStatusPairsErrorComponent, QdStatusPairsItemComponent, QdStatusPairsValueComponent, QdSubgridComponent, QdSwitchComponent, QdSwitchesComponent, QdTableComponent, QdTableModule, QdTableSpringTools, QdTextSectionComponent, QdTextSectionHeadlineComponent, QdTextSectionModule, QdTextSectionParagraphComponent, QdTextareaComponent, QdTileButtonListComponent, QdTileComponent, QdTileTextListComponent, QdTileTextListItemComponent, QdTileTitleComponent, QdTilesComponent, QdTilesModule, QdTilesTitleComponent, QdTooltipAtIntersectionDirective, QdTooltipIconComponent, QdTreeComponent, QdTreeModule, QdTreeRowExpanderService, QdUiMockModule, QdUiModule, QdUploadErrorType, QdValidators, QdViewportAdaptiveDirective, QdVisuallyHiddenDirective, chipColorDefault, createMetadataStream, updateHtmlLang };
18053
- export type { CustomField, QdAppEnvironment, QdButtonAdditionalInfo, QdButtonColor, QdChipColor, QdCollectedFile, QdComment, QdCommentAuthorFieldConfig, QdCommentCustomFieldConfig, QdCommentDeletedMeta, QdCommentRichtextConfig, QdCommentSecondaryActionConfig, QdCommentsAddButtonConfig, QdCommentsAddConfig, QdCommentsConfig, QdContactAddress, QdContactData, QdContactDataCustomField, QdContactDataCustomFieldEntry, QdContactDataCustomTranslatedEntry, QdContactFunction, QdContactPerson, QdContactTag, QdContextSelection, QdDependentFilterCategory, QdDialogAuthSessionEndResult, QdDialogConfig, QdDialogConfirmationConfig, QdDialogConfirmationResolver, QdDialogData, QdDialogTitle, QdFileCollectorConfig, QdFileManager, QdFileType, QdFileUploadManager, QdFilterCategory, QdFilterConfigData, QdFilterItem, QdFilterPostBodyCategory, QdFilterPostBodyData, QdFormCheckboxChipsConfiguration, QdFormCheckboxesConfiguration, QdFormConfiguration, QdFormDatepickerConfiguration, QdFormDropdownConfiguration, QdFormFileUploadConfiguration, QdFormHint, QdFormInput, QdFormInputConfiguration, QdFormLabel, QdFormMultiInputConfiguration, QdFormOption, QdFormOptionsResolver, QdFormPinCodeConfiguration, QdFormRadioButtonsConfiguration, QdFormSwitchesConfiguration, QdFormTextAreaConfiguration, QdGridConfig, QdInputValue, QdInputValueWithUnit, QdInspectOperationMode, QdMenuButtonConfig, QdMultiInputOption, QdNotification, QdNotificationType, QdPageConfig, QdPageConfigCreate, QdPageConfigCustom, QdPageConfigInspect, QdPageConfigOverview, QdPageControlPanelConfig, QdPageHeaderFacetConfig, QdPageInfoBannerConfig, QdPageObjectResolver, QdPageObjectResolverConfig, QdPageSelectedContext, QdPageStepConfig, QdPageStepResolver, QdPageStepperConfig, QdPageTabConfig, QdPageTabCounters, QdPageTabsConfig, QdPageTypeCreateConfig, QdPageTypeCustomConfig, QdPageTypeInspectConfig, QdPageTypeOverviewConfig, QdPlaceholder, QdPushEventName, QdQuickEditConfig, QdQuickEditData, QdRichtextConfig, QdSearchOptions, QdSearchPostBodyData, QdSectionActionType, QdSectionConfig, QdShellConfig, QdShellFooterCopyrightInfo, QdShellNavigationConfig, QdShellServiceNavigationBadge, QdShellServiceNavigationConfig, QdShellServiceNavigationContactInfo, QdShellServiceNavigationCustomButtonLinks, QdShellServiceNavigationEnvironment, QdShellServiceNavigationHrefs, QdShellServiceNavigationInfoLink, QdShellServiceNavigationLanguage, QdShellServiceNavigationMultiHrefs, QdShellServiceNavigationProfileLink, QdShellServiceNavigationSingleHref, QdShellToolbarConfig, QdShellToolbarItem, QdStatus, QdStatusIndicator, QdSwitchOption, QdTabSelectionEvent, QdTableChipDataValue, QdTableConfig, QdTableConfigColumn, QdTableConfigSelection, QdTableContentDataChip, QdTableContentDataChipObject, QdTableData, QdTableDataResolver, QdTableDataResolverProps, QdTableDataRow, QdTableDataValue, QdTableEmptyStateView, QdTableOptionalRefreshingEventTypes, QdTablePagination, QdTablePrimaryAction, QdTableRecentSecondaryAction, QdTableResolvedData, QdTableRowIdentifier, QdTableRowIndex, QdTableRowUid, QdTableSecondaryAction, QdTableSelectedRow, QdTableSelectedRows, QdTableStateSort, QdTableStatusDataValue, QdTileConfig, QdTilesConfig, QdTooltip, QdTranslatable, QdTranslation, QdTreeConfig, QdTreeData, QdTreeDataRow, QdTreeDataValue, QdUploadError, QdUploadProgress };
18322
+ export { APP_ENVIRONMENT, AVAILABLE_ICONS, BACKEND_ERROR_CODES, MockLocaleDatePipe, NavigationTileComponent, NavigationTilesComponent, QD_DIALOG_CONFIRMATION_RESOLVER_TOKEN, QD_FILE_MANAGER_TOKEN, QD_FILE_UPLOAD_MANAGER_TOKEN, QD_FORM_OPTIONS_RESOLVER, QD_PAGE_OBJECT_RESOLVER_TOKEN, QD_PAGE_STEP_RESOLVER_TOKEN, QD_POPOVER_TOP_FIRST, QD_SAFE_BOTTOM_OFFSET, QD_TABLE_DATA_RESOLVER_TOKEN, QD_UPLOAD_HTTP_OPTIONS, QdButtonComponent, QdButtonGhostDirective, QdButtonGridComponent, QdButtonLinkDirective, QdButtonModule, QdButtonStackButtonComponent, QdButtonStackComponent, QdCheckboxChipsComponent, QdCheckboxComponent, QdCheckboxesComponent, QdChipComponent, QdChipModule, QdColumnAutoFillDirective, QdColumnBreakBeforeDirective, QdColumnDirective, QdColumnDisableResponsiveColspansDirective, QdColumnFullGridWidthDirective, QdColumnNextInSameRowDirective, QdColumnsDirective, QdColumnsDisableAutoFillDirective, QdColumnsDisableResponsiveColspansDirective, QdColumnsMaxDirective, QdCommentsComponent, QdCommentsModule, QdConnectFormStateToPageDirective, QdConnectorTableContextDirective, QdConnectorTableFilterDirective, QdConnectorTableSearchDirective, QdContactCardComponent, QdContactCardModule, QdContainerPairsCaptionComponent, QdContainerPairsContainerComponent, QdContainerPairsHeaderComponent, QdContainerPairsItemComponent, QdContainerPairsValueComponent, QdContextService, QdCoreModule, QdDatepickerComponent, QdDialogActionComponent, QdDialogAuthSessionEndComponent, QdDialogAuthSessionEndService, QdDialogComponent, QdDialogConfirmationComponent, QdDialogConfirmationErrorDirective, QdDialogConfirmationInfoDirective, QdDialogConfirmationSuccessDirective, QdDialogModule, QdDialogRecordStepperComponent, QdDialogService, QdDialogSize, QdDisabledDirective, QdDropdownComponent, QdFileCollectorComponent, QdFileCollectorModule, QdFileSizePipe$1 as QdFileSizePipe, QdFileUploadComponent, QdFileUploadService, QdFilterComponent, QdFilterFormItemsComponent, QdFilterModule, QdFilterRestParamBuilder, QdFilterService, QdFormArray, QdFormBuilder, QdFormControl, QdFormGroup, QdFormModule, QdGridComponent, QdGridModule, QdHorizontalPairsCaptionComponent, QdHorizontalPairsComponent, QdHorizontalPairsItemComponent, QdHorizontalPairsValueComponent, QdIconButtonComponent, QdIconComponent, QdIconModule, QdImageComponent, QdImageModule, QdIndeterminateProgressBarComponent, QdInputComponent, QdListModule, QdMenuButtonComponent, QdMockBreakpointService, QdMockButtonComponent, QdMockButtonGhostDirective, QdMockButtonGridComponent, QdMockButtonLinkDirective, QdMockButtonModule, QdMockButtonStackButtonComponent, QdMockButtonStackComponent, QdMockCalendarComponent, QdMockCheckboxChipsComponent, QdMockCheckboxComponent, QdMockCheckboxesComponent, QdMockChipComponent, QdMockChipModule, QdMockColumnDirective, QdMockColumnsDirective, QdMockContactCardComponent, QdMockContactCardModule, QdMockContainerPairsCaptionComponent, QdMockContainerPairsContainerComponent, QdMockContainerPairsHeaderComponent, QdMockContainerPairsItemComponent, QdMockContainerPairsValueComponent, QdMockCoreModule, QdMockCounterBadgeComponent, QdMockDatepickerComponent, QdMockDisabledDirective, QdMockDropdownComponent, QdMockFileCollectorComponent, QdMockFileCollectorModule, QdMockFilterCategoryBooleanComponent, QdMockFilterCategoryComponent, QdMockFilterCategoryDateComponent, QdMockFilterCategoryDateRangeComponent, QdMockFilterCategoryFreeTextComponent, QdMockFilterCategorySelectComponent, QdMockFilterComponent, QdMockFilterFormItemsComponent, QdMockFilterItemBooleanComponent, QdMockFilterItemDateComponent, QdMockFilterItemDateRangeComponent, QdMockFilterItemFreeTextComponent, QdMockFilterItemMultiSelectComponent, QdMockFilterItemSingleSelectComponent, QdMockFilterModule, QdMockFilterService, QdMockFormErrorComponent, QdMockFormGroupErrorComponent, QdMockFormHintComponent, QdMockFormLabelComponent, QdMockFormReadonlyComponent, QdMockFormViewonlyComponent, QdMockFormsModule, QdMockGridModule, QdMockIconButtonComponent, QdMockIconComponent, QdMockIconModule, QdMockImageComponent, QdMockImageModule, QdMockIndeterminateProgressBarComponent, QdMockInputComponent, QdMockListModule, QdMockNavigationTileComponent, QdMockNavigationTilesComponent, QdMockNavigationTilesModule, QdMockNotificationComponent, QdMockNotificationContentComponent, QdMockNotificationsComponent, QdMockNotificationsModule, QdMockNotificationsService, QdMockPageComponent, QdMockPageModule, QdMockPercentageProgressBarComponent, QdMockPinCodeComponent, QdMockPlaceHolderModule, QdMockPopoverOnClickDirective, QdMockProgressBarModule, QdMockQdPlaceHolderComponent, QdMockRadioButtonsComponent, QdMockRwdDisabledDirective, QdMockSearchComponent, QdMockSearchModule, QdMockSectionComponent, QdMockSectionModule, QdMockShellComponent, QdMockShellFooterComponent, QdMockShellHeaderBannerComponent, QdMockShellHeaderComponent, QdMockShellHeaderSearchComponent, QdMockShellHeaderWidgetComponent, QdMockShellModule, QdMockShellToolbarComponent, QdMockShellToolbarItemComponent, QdMockStatusIndicatorCaptionComponent, QdMockStatusIndicatorComponent, QdMockStatusIndicatorItemComponent, QdMockStatusIndicatorModule, QdMockStatusPairsCaptionComponent, QdMockStatusPairsComponent, QdMockStatusPairsErrorComponent, QdMockStatusPairsItemComponent, QdMockStatusPairsValueComponent, QdMockSwitchComponent, QdMockSwitchesComponent, QdMockTableComponent, QdMockTableModule, QdMockTextSectionComponent, QdMockTextSectionHeadlineComponent, QdMockTextSectionModule, QdMockTextSectionParagraphComponent, QdMockTextareaComponent, QdMockTileButtonListComponent, QdMockTileComponent, QdMockTileTextListComponent, QdMockTileTextListItemComponent, QdMockTileTitleComponent, QdMockTilesContainerComponent, QdMockTilesContainerTitleComponent, QdMockTilesModule, QdMockTranslatePipe, QdMockVisuallyHiddenDirective, QdMultiInputComponent, QdNavigationTilesModule, QdNotificationComponent, QdNotificationContentComponent, QdNotificationsComponent, QdNotificationsHttpInterceptorService, QdNotificationsModule, QdNotificationsService, QdNotificationsSnackbarListenerDirective, 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, 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, mergeQdQueryParameters, qdFilterParameterize, qdPageTabParameterize, qdPaginationParameterize, qdQueryParameter, qdSearchParameterize, qdSortParameterize, qdTableQueryParameterize, updateHtmlLang };
18323
+ export type { CustomField, QdAppEnvironment, QdButtonAdditionalInfo, QdButtonColor, QdChipColor, QdCollectedFile, QdComment, QdCommentAuthorFieldConfig, QdCommentCustomFieldConfig, QdCommentDeletedMeta, QdCommentRichtextConfig, QdCommentSecondaryActionConfig, QdCommentsAddButtonConfig, QdCommentsAddConfig, QdCommentsConfig, QdContactAddress, QdContactData, QdContactDataCustomField, QdContactDataCustomFieldEntry, QdContactDataCustomTranslatedEntry, QdContactFunction, QdContactPerson, QdContactTag, QdContextSelection, QdDependentFilterCategory, QdDialogAuthSessionEndResult, QdDialogConfig, QdDialogConfirmationConfig, QdDialogConfirmationResolver, QdDialogData, QdDialogTitle, QdFileCollectorConfig, QdFileManager, QdFileType, QdFileUploadManager, QdFilterCategory, QdFilterConfigData, QdFilterItem, QdFilterPostBodyCategory, QdFilterPostBodyData, QdFormCheckboxChipsConfiguration, QdFormCheckboxesConfiguration, QdFormConfiguration, QdFormDatepickerConfiguration, QdFormDropdownConfiguration, QdFormFileUploadConfiguration, QdFormHint, QdFormInput, QdFormInputConfiguration, QdFormLabel, QdFormMultiInputConfiguration, QdFormOption, QdFormOptionsResolver, QdFormPinCodeConfiguration, QdFormRadioButtonsConfiguration, QdFormSwitchesConfiguration, QdFormTextAreaConfiguration, QdGridConfig, QdInputValue, QdInputValueWithUnit, QdInspectOperationMode, QdMenuButtonConfig, QdMultiInputOption, QdNotification, QdNotificationType, QdPageConfig, QdPageConfigCreate, QdPageConfigCustom, QdPageConfigInspect, QdPageConfigOverview, QdPageControlPanelConfig, QdPageHeaderFacetConfig, QdPageInfoBannerConfig, QdPageObjectResolver, QdPageObjectResolverConfig, QdPageSelectedContext, QdPageStepConfig, QdPageStepResolver, QdPageStepperConfig, QdPageTabConfig, QdPageTabCounters, QdPageTabsConfig, QdPageTypeCreateConfig, QdPageTypeCustomConfig, QdPageTypeInspectConfig, QdPageTypeOverviewConfig, QdPlaceholder, QdPushEventName, QdQueryParameter, QdQuickEditConfig, QdQuickEditData, QdRichtextConfig, QdSearchOptions, QdSearchPostBodyData, QdSectionActionType, QdSectionConfig, QdShellConfig, QdShellFooterCopyrightInfo, QdShellNavigationConfig, QdShellServiceNavigationBadge, QdShellServiceNavigationConfig, QdShellServiceNavigationContactInfo, QdShellServiceNavigationCustomButtonLinks, QdShellServiceNavigationEnvironment, QdShellServiceNavigationHrefs, QdShellServiceNavigationInfoLink, QdShellServiceNavigationLanguage, QdShellServiceNavigationMultiHrefs, QdShellServiceNavigationProfileLink, QdShellServiceNavigationSingleHref, QdShellToolbarConfig, QdShellToolbarItem, QdStatus, QdStatusIndicator, QdSwitchOption, QdTabSelectionEvent, QdTableChipDataValue, QdTableConfig, QdTableConfigColumn, QdTableConfigSelection, QdTableContentDataChip, QdTableContentDataChipObject, QdTableData, QdTableDataResolver, QdTableDataResolverProps, QdTableDataRow, QdTableDataValue, QdTableEmptyStateView, QdTableOptionalRefreshingEventTypes, QdTablePagination, QdTablePrimaryAction, QdTableRecentSecondaryAction, QdTableResolvedData, QdTableRowIdentifier, QdTableRowIndex, QdTableRowUid, QdTableSecondaryAction, QdTableSelectedRow, QdTableSelectedRows, QdTableStateSort, QdTableStatusDataValue, QdTileConfig, QdTilesConfig, QdTooltip, QdTranslatable, QdTranslation, QdTreeConfig, QdTreeData, QdTreeDataRow, QdTreeDataValue, QdUploadError, QdUploadProgress };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quadrel-enterprise-ui/framework",
3
- "version": "20.17.0",
3
+ "version": "20.17.2-beta.169.1",
4
4
  "exports": {
5
5
  "./jest-preset": "./jest-preset.js",
6
6
  "./package.json": {