@quadrel-enterprise-ui/framework 20.17.2 → 20.18.0-beta.183.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
+ * **qdWrapParams** 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
+ * qdWrapParams(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 qdWrapParams(params: HttpParams): QdQueryParameter;
1076
+ /**
1077
+ * **qdMergeParams** 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 = qdMergeParams([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 qdMergeParams(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>;
@@ -14607,6 +14686,28 @@ declare class QdSectionToolbarActionComponent implements OnInit, OnDestroy {
14607
14686
  static ɵcmp: i0.ɵɵComponentDeclaration<QdSectionToolbarActionComponent, "qd-section-toolbar-action", never, { "config": { "alias": "config"; "required": false; }; }, {}, never, never, false, never>;
14608
14687
  }
14609
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
+
14610
14711
  declare class QdSearchModule {
14611
14712
  static ɵfac: i0.ɵɵFactoryDeclaration<QdSearchModule, never>;
14612
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]>;
@@ -14651,6 +14752,11 @@ interface QdTableResolvedData<T extends string> {
14651
14752
  /**
14652
14753
  * Represents the properties for resolving data, following the conventions of Spring Boot's Pageable API.
14653
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
+ *
14654
14760
  * @template T - The type representing column names.
14655
14761
  */
14656
14762
  interface QdTableDataResolverProps<T extends string> {
@@ -14663,7 +14769,8 @@ interface QdTableDataResolverProps<T extends string> {
14663
14769
  */
14664
14770
  size?: number;
14665
14771
  /**
14666
- * 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.
14667
14774
  */
14668
14775
  sort?: QdTableStateSort<T>[];
14669
14776
  /**
@@ -14734,11 +14841,118 @@ interface QdTableConnectorCriteria {
14734
14841
  [criteria: string]: unknown;
14735
14842
  }
14736
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
+ */
14737
14851
  declare class QdTableSpringTools {
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
+ */
14738
14864
  static sortParameterize(sort: QdTableStateSort<string>[] | undefined): string;
14739
- private static mapSortDirection;
14740
14865
  }
14741
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;
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 `qdMergeParams`.
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;
14955
+
14742
14956
  declare enum QdPaginatorDirection {
14743
14957
  FirstPage = 0,
14744
14958
  NextPage = 1,
@@ -17588,6 +17802,26 @@ declare class QdPageStepperModule {
17588
17802
  static ɵinj: i0.ɵɵInjectorDeclaration<QdPageStepperModule>;
17589
17803
  }
17590
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
+ * `qdMergeParams` 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
+
17591
17825
  /**
17592
17826
  * **QdPageTabHeader* renders the header of a single tab. It is used quadrel-internally.
17593
17827
  */
@@ -18085,5 +18319,5 @@ declare class QdUiModule {
18085
18319
 
18086
18320
  declare const APP_ENVIRONMENT: InjectionToken<QdAppEnvironment>;
18087
18321
 
18088
- 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 };
18089
- 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, qdFilterParameterize, qdMergeParams, qdPageTabParameterize, qdPaginationParameterize, qdSearchParameterize, qdSortParameterize, qdTableQueryParameterize, qdWrapParams, 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.2",
3
+ "version": "20.18.0-beta.183.1",
4
4
  "exports": {
5
5
  "./jest-preset": "./jest-preset.js",
6
6
  "./package.json": {