@quadrel-enterprise-ui/framework 20.26.0 → 20.26.2
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
|
*/
|
|
@@ -8952,10 +8953,25 @@ declare class QdMultiInputMenuComponent implements AfterViewInit {
|
|
|
8952
8953
|
static ɵcmp: i0.ɵɵComponentDeclaration<QdMultiInputMenuComponent, "qd-multi-input-menu", never, { "id": { "alias": "id"; "required": false; }; "optionsListForView": { "alias": "optionsListForView"; "required": false; }; "testId": { "alias": "data-test-id"; "required": false; }; }, { "itemClick": "itemClick"; }, never, never, false, never>;
|
|
8953
8954
|
}
|
|
8954
8955
|
|
|
8956
|
+
/**
|
|
8957
|
+
* Focuses its host element once, after the initial view init, when `qdAutofocus` is `true`.
|
|
8958
|
+
*
|
|
8959
|
+
* Init-only by design: the input is read in `ngAfterViewInit` only. A later `false -> true`
|
|
8960
|
+
* change on an already-rendered element is intentionally ignored to avoid stealing focus
|
|
8961
|
+
* mid-interaction (this mirrors the native `autofocus` attribute). An element that appears
|
|
8962
|
+
* later (e.g. via `*ngIf`) still autofocuses, because `ngAfterViewInit` runs when it is created.
|
|
8963
|
+
*
|
|
8964
|
+
* Coordinated app-wide through {@link QdAutofocusService}: only one element may autofocus per
|
|
8965
|
+
* view; the guard is released once the focused element blurs, so a newly opened view can
|
|
8966
|
+
* autofocus again. Using it on more than one active element at a time logs a warning and is
|
|
8967
|
+
* ignored for the surplus elements.
|
|
8968
|
+
*/
|
|
8955
8969
|
declare class QdAutofocusDirective implements AfterViewInit, OnDestroy {
|
|
8956
8970
|
private readonly autofocusService;
|
|
8957
8971
|
private readonly elementRef;
|
|
8958
8972
|
qdAutofocus: boolean;
|
|
8973
|
+
private _timeoutId?;
|
|
8974
|
+
private _blurHandler?;
|
|
8959
8975
|
ngAfterViewInit(): void;
|
|
8960
8976
|
ngOnDestroy(): void;
|
|
8961
8977
|
static ɵfac: i0.ɵɵFactoryDeclaration<QdAutofocusDirective, never>;
|
|
@@ -12378,6 +12394,18 @@ declare class QdPageControlPanelComponent {
|
|
|
12378
12394
|
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>;
|
|
12379
12395
|
}
|
|
12380
12396
|
|
|
12397
|
+
declare class QdPageFooterCustomContentDirective implements OnInit, OnDestroy {
|
|
12398
|
+
private footerService;
|
|
12399
|
+
ngOnInit(): void;
|
|
12400
|
+
ngOnDestroy(): void;
|
|
12401
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<QdPageFooterCustomContentDirective, never>;
|
|
12402
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<QdPageFooterCustomContentDirective, "[qdPageFooter]", never, {}, {}, never, never, false, never>;
|
|
12403
|
+
}
|
|
12404
|
+
|
|
12405
|
+
/**
|
|
12406
|
+
* Type for the keys of footer actions.
|
|
12407
|
+
*/
|
|
12408
|
+
type QdFooterActionKey = 'saveDraft' | 'previous' | 'next' | 'cancel' | 'submit';
|
|
12381
12409
|
/**
|
|
12382
12410
|
* Interface that describes the configuration of a footer action.
|
|
12383
12411
|
*/
|
|
@@ -12889,6 +12917,28 @@ declare class QdPageTabsAdapterDirective implements OnInit {
|
|
|
12889
12917
|
static ɵdir: i0.ɵɵDirectiveDeclaration<QdPageTabsAdapterDirective, "[qdPageTabsAdapter]", never, {}, {}, never, never, false, never>;
|
|
12890
12918
|
}
|
|
12891
12919
|
|
|
12920
|
+
declare class QdPageFooterService {
|
|
12921
|
+
private _pageFooterActions;
|
|
12922
|
+
private _customContentCount;
|
|
12923
|
+
pageFooterActions$: rxjs.Observable<Map<QdFooterActionKey, QdPageFooterAction>>;
|
|
12924
|
+
customContentCount$: rxjs.Observable<number>;
|
|
12925
|
+
footerHasContent$: rxjs.Observable<boolean>;
|
|
12926
|
+
registerCustomContent(): void;
|
|
12927
|
+
detachCustomContent(): void;
|
|
12928
|
+
setActions(actionsArray: Array<{
|
|
12929
|
+
key: QdFooterActionKey;
|
|
12930
|
+
action: QdPageFooterAction;
|
|
12931
|
+
}>): void;
|
|
12932
|
+
updateActions(updates: {
|
|
12933
|
+
actionKey: QdFooterActionKey;
|
|
12934
|
+
partialAction: Partial<QdPageFooterAction>;
|
|
12935
|
+
}[]): void;
|
|
12936
|
+
private sortActionsByPriority;
|
|
12937
|
+
private isAnyActionVisible;
|
|
12938
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<QdPageFooterService, never>;
|
|
12939
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<QdPageFooterService>;
|
|
12940
|
+
}
|
|
12941
|
+
|
|
12892
12942
|
/**
|
|
12893
12943
|
* The configuration object of the tabs
|
|
12894
12944
|
*/
|
|
@@ -13016,7 +13066,8 @@ interface QdPageTabCounters {
|
|
|
13016
13066
|
/**
|
|
13017
13067
|
* The **QdPageTab** is a single tab inside the **QdPageTabs** within a **QdPage**.
|
|
13018
13068
|
*/
|
|
13019
|
-
declare class QdPageTabComponent
|
|
13069
|
+
declare class QdPageTabComponent implements OnInit, OnChanges, OnDestroy {
|
|
13070
|
+
private readonly _pageTabs;
|
|
13020
13071
|
private translate;
|
|
13021
13072
|
/**
|
|
13022
13073
|
* Configuration of QdPageTabComponent.
|
|
@@ -13028,8 +13079,14 @@ declare class QdPageTabComponent extends CdkStep implements OnInit, OnChanges, O
|
|
|
13028
13079
|
set tabControl(tabControl: AbstractControl);
|
|
13029
13080
|
get tabControl(): AbstractControl;
|
|
13030
13081
|
infoBanners: QueryList<QdPageInfoBannerComponent>;
|
|
13082
|
+
content: TemplateRef<any>;
|
|
13083
|
+
stepControl?: AbstractControl;
|
|
13084
|
+
interacted: boolean;
|
|
13085
|
+
editable: boolean;
|
|
13086
|
+
get completed(): boolean;
|
|
13087
|
+
get hasError(): boolean;
|
|
13031
13088
|
private _destroyed$;
|
|
13032
|
-
|
|
13089
|
+
select(): void;
|
|
13033
13090
|
ngOnInit(): void;
|
|
13034
13091
|
ngOnChanges(changes?: SimpleChanges): void;
|
|
13035
13092
|
ngOnDestroy(): void;
|
|
@@ -13225,10 +13282,14 @@ interface QdTabSelectionEvent {
|
|
|
13225
13282
|
* - If an invalid tab name is provided in URL, the first available tab is selected
|
|
13226
13283
|
* - If no tab parameter is present, the `selectedIndex` or first non-disabled tab is selected
|
|
13227
13284
|
*/
|
|
13228
|
-
declare class QdPageTabsComponent
|
|
13229
|
-
|
|
13230
|
-
private pageStoreService;
|
|
13285
|
+
declare class QdPageTabsComponent implements OnInit, OnChanges, AfterContentInit, AfterViewInit {
|
|
13286
|
+
readonly footerService: QdPageFooterService;
|
|
13287
|
+
private readonly pageStoreService;
|
|
13231
13288
|
private readonly routerConnector;
|
|
13289
|
+
private readonly _changeDetectorRef;
|
|
13290
|
+
private readonly destroyRef;
|
|
13291
|
+
private static _idCounter;
|
|
13292
|
+
private readonly _id;
|
|
13232
13293
|
protected get hasPageFooter(): boolean;
|
|
13233
13294
|
/**
|
|
13234
13295
|
* Configuration of QdPageTabs.
|
|
@@ -13239,17 +13300,26 @@ declare class QdPageTabsComponent extends CdkStepper implements OnInit, OnChange
|
|
|
13239
13300
|
*/
|
|
13240
13301
|
testId: string;
|
|
13241
13302
|
readonly tabSelection: EventEmitter<QdTabSelectionEvent>;
|
|
13303
|
+
private _tabs;
|
|
13304
|
+
linear: boolean;
|
|
13305
|
+
private _selectedIndex;
|
|
13242
13306
|
private _viewonly;
|
|
13243
|
-
private readonly destroyRef;
|
|
13244
13307
|
get tabs(): QueryList<QdPageTabComponent>;
|
|
13245
13308
|
get selected(): QdPageTabComponent | undefined;
|
|
13246
|
-
set selected(
|
|
13247
|
-
|
|
13309
|
+
set selected(tab: QdPageTabComponent | undefined);
|
|
13310
|
+
get selectedIndex(): number;
|
|
13311
|
+
set selectedIndex(newIndex: number);
|
|
13248
13312
|
ngOnInit(): void;
|
|
13249
13313
|
ngOnChanges(changes: SimpleChanges): void;
|
|
13250
|
-
_getIndicatorType(index: number, state?: StepState): StepState;
|
|
13251
13314
|
ngAfterContentInit(): void;
|
|
13252
13315
|
ngAfterViewInit(): void;
|
|
13316
|
+
_stateChanged(): void;
|
|
13317
|
+
_getIndicatorType(index: number): string;
|
|
13318
|
+
_getTabLabelId(i: number): string;
|
|
13319
|
+
save(): void;
|
|
13320
|
+
selectTab(tab: QdPageTabComponent): void;
|
|
13321
|
+
isSubmitButtonShown(): boolean;
|
|
13322
|
+
isSubmitButtonDisabled(): boolean | undefined;
|
|
13253
13323
|
private initializeTabSelection;
|
|
13254
13324
|
private configureBookmarkableTabs;
|
|
13255
13325
|
private isTabSelectable;
|
|
@@ -13257,15 +13327,9 @@ declare class QdPageTabsComponent extends CdkStepper implements OnInit, OnChange
|
|
|
13257
13327
|
* Selects the first tab that is not disabled.
|
|
13258
13328
|
*/
|
|
13259
13329
|
private selectFirstNotDisabledTab;
|
|
13260
|
-
save(): void;
|
|
13261
|
-
selectTab(tab: QdPageTabComponent): void;
|
|
13262
|
-
isSubmitButtonShown(): boolean;
|
|
13263
|
-
isSubmitButtonDisabled(): boolean | undefined;
|
|
13264
|
-
_getTabLabelId(i: number): string;
|
|
13265
13330
|
private blockCdkInput;
|
|
13266
|
-
private mapSelectionChangeToTabSelectionOutput;
|
|
13267
13331
|
static ɵfac: i0.ɵɵFactoryDeclaration<QdPageTabsComponent, never>;
|
|
13268
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<QdPageTabsComponent, "qd-page-tabs", never, { "config": { "alias": "config"; "required": false; }; "testId": { "alias": "data-test-id"; "required": false; }; }, { "tabSelection": "tabSelection"; },
|
|
13332
|
+
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>;
|
|
13269
13333
|
}
|
|
13270
13334
|
|
|
13271
13335
|
interface QdSearchPostBodyData {
|
|
@@ -14466,14 +14530,6 @@ declare class QdReferencesFacetComponent<T> {
|
|
|
14466
14530
|
static ɵcmp: i0.ɵɵComponentDeclaration<QdReferencesFacetComponent<any>, "qd-references-facet", never, { "facet": { "alias": "facet"; "required": false; }; "data": { "alias": "data"; "required": false; }; }, {}, never, never, false, never>;
|
|
14467
14531
|
}
|
|
14468
14532
|
|
|
14469
|
-
declare class QdPageFooterCustomContentDirective implements OnInit, OnDestroy {
|
|
14470
|
-
private footerService;
|
|
14471
|
-
ngOnInit(): void;
|
|
14472
|
-
ngOnDestroy(): void;
|
|
14473
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<QdPageFooterCustomContentDirective, never>;
|
|
14474
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<QdPageFooterCustomContentDirective, "[qdPageFooter]", never, {}, {}, never, never, false, never>;
|
|
14475
|
-
}
|
|
14476
|
-
|
|
14477
14533
|
declare class QdContextSelectDialogComponent implements OnInit {
|
|
14478
14534
|
private dialogRef;
|
|
14479
14535
|
private translateService;
|
|
@@ -18064,18 +18120,13 @@ declare class QdPageStepperModule {
|
|
|
18064
18120
|
*/
|
|
18065
18121
|
declare function qdPageTabParameterize(tab: QdPageTabConfig | string | undefined): QdQueryParameter;
|
|
18066
18122
|
|
|
18123
|
+
type QdTabState = 'number' | 'edit' | 'done' | 'error' | string;
|
|
18067
18124
|
/**
|
|
18068
18125
|
* **QdPageTabHeader* renders the header of a single tab. It is used quadrel-internally.
|
|
18069
18126
|
*/
|
|
18070
|
-
declare class QdPageTabHeaderComponent
|
|
18071
|
-
protected readonly STEP_STATE: {
|
|
18072
|
-
NUMBER: string;
|
|
18073
|
-
EDIT: string;
|
|
18074
|
-
DONE: string;
|
|
18075
|
-
ERROR: string;
|
|
18076
|
-
};
|
|
18127
|
+
declare class QdPageTabHeaderComponent {
|
|
18077
18128
|
/** State of the given tab. */
|
|
18078
|
-
state:
|
|
18129
|
+
state: QdTabState;
|
|
18079
18130
|
/** Label of the given tab. */
|
|
18080
18131
|
label: string;
|
|
18081
18132
|
/** Represents up to two numeric counters as a badge */
|
|
@@ -18090,7 +18141,6 @@ declare class QdPageTabHeaderComponent extends CdkStepHeader {
|
|
|
18090
18141
|
* A static test ID for integration tests can be set.
|
|
18091
18142
|
*/
|
|
18092
18143
|
testId: string;
|
|
18093
|
-
constructor();
|
|
18094
18144
|
static ɵfac: i0.ɵɵFactoryDeclaration<QdPageTabHeaderComponent, never>;
|
|
18095
18145
|
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>;
|
|
18096
18146
|
}
|
|
@@ -18107,7 +18157,7 @@ declare class QdPageTabHeaderCountersComponent implements OnInit {
|
|
|
18107
18157
|
|
|
18108
18158
|
declare class QdPageTabsModule {
|
|
18109
18159
|
static ɵfac: i0.ɵɵFactoryDeclaration<QdPageTabsModule, never>;
|
|
18110
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<QdPageTabsModule, [typeof QdPageTabsAdapterDirective], [typeof i2.CommonModule, typeof i9.TranslateModule, typeof
|
|
18160
|
+
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]>;
|
|
18111
18161
|
static ɵinj: i0.ɵɵInjectorDeclaration<QdPageTabsModule>;
|
|
18112
18162
|
}
|
|
18113
18163
|
|
|
@@ -18561,5 +18611,5 @@ declare class QdUiModule {
|
|
|
18561
18611
|
|
|
18562
18612
|
declare const APP_ENVIRONMENT: InjectionToken<QdAppEnvironment>;
|
|
18563
18613
|
|
|
18564
|
-
export { APP_ENVIRONMENT, AVAILABLE_ICONS, BACKEND_ERROR_CODES, MockLocaleDatePipe, NavigationTileComponent, NavigationTilesComponent, QD_DIALOG_CONFIRMATION_RESOLVER_TOKEN, QD_FILE_MANAGER_TOKEN, QD_FILE_UPLOAD_MANAGER_TOKEN, QD_FORM_OPTIONS_RESOLVER, QD_PAGE_OBJECT_RESOLVER_TOKEN, QD_PAGE_STEP_RESOLVER_TOKEN, QD_POPOVER_TOP_FIRST, QD_SAFE_BOTTOM_OFFSET, QD_TABLE_DATA_RESOLVER_TOKEN, QD_UPLOAD_HTTP_OPTIONS, QdButtonComponent, QdButtonGhostDirective, QdButtonGridComponent, QdButtonLinkDirective, QdButtonModule, QdButtonStackButtonComponent, QdButtonStackComponent, QdCheckboxChipsComponent, QdCheckboxComponent, QdCheckboxesComponent, QdChipComponent, QdChipModule, QdColumnAutoFillDirective, QdColumnBreakBeforeDirective, QdColumnDirective, QdColumnDisableResponsiveColspansDirective, QdColumnFullGridWidthDirective, QdColumnNextInSameRowDirective, QdColumnsDirective, QdColumnsDisableAutoFillDirective, QdColumnsDisableResponsiveColspansDirective, QdColumnsMaxDirective, QdCommentsComponent, QdCommentsModule, QdConnectFormStateToPageDirective, QdConnectorTableContextDirective, QdConnectorTableFilterDirective, QdConnectorTableSearchDirective, QdContactCardComponent, QdContactCardModule, QdContainerPairsCaptionComponent, QdContainerPairsContainerComponent, QdContainerPairsHeaderComponent, QdContainerPairsItemComponent, QdContainerPairsValueComponent, QdContextService, QdCoreModule, QdDatepickerComponent, QdDialogActionComponent, QdDialogAuthSessionEndComponent, QdDialogAuthSessionEndService, QdDialogComponent, QdDialogConfirmationComponent, QdDialogConfirmationErrorDirective, QdDialogConfirmationInfoDirective, QdDialogConfirmationSuccessDirective, QdDialogModule, QdDialogRecordStepperComponent, QdDialogService, QdDialogSize, QdDisabledDirective, QdDropdownComponent, QdFileCollectorComponent, QdFileCollectorModule, QdFileSizePipe$1 as QdFileSizePipe, QdFileUploadComponent, QdFileUploadService, QdFilterComponent, QdFilterFormItemsComponent, QdFilterModule, QdFilterRestParamBuilder, QdFilterService, QdFooterActionType, QdFormArray, QdFormBuilder, QdFormControl, QdFormGroup, QdFormModule, QdGridComponent, QdGridModule, QdHorizontalPairsCaptionComponent, QdHorizontalPairsComponent, QdHorizontalPairsItemComponent, QdHorizontalPairsValueComponent, QdIconButtonComponent, QdIconComponent, QdIconModule, QdImageComponent, QdImageModule, QdIndeterminateProgressBarComponent, QdInputComponent, QdListModule, QdMenuButtonComponent, QdMockBreakpointService, QdMockButtonComponent, QdMockButtonGhostDirective, QdMockButtonGridComponent, QdMockButtonLinkDirective, QdMockButtonModule, QdMockButtonStackButtonComponent, QdMockButtonStackComponent, QdMockCalendarComponent, QdMockCheckboxChipsComponent, QdMockCheckboxComponent, QdMockCheckboxesComponent, QdMockChipComponent, QdMockChipModule, QdMockColumnDirective, QdMockColumnsDirective, QdMockContactCardComponent, QdMockContactCardModule, QdMockContainerPairsCaptionComponent, QdMockContainerPairsContainerComponent, QdMockContainerPairsHeaderComponent, QdMockContainerPairsItemComponent, QdMockContainerPairsValueComponent, QdMockCoreModule, QdMockCounterBadgeComponent, QdMockDatepickerComponent, QdMockDisabledDirective, QdMockDropdownComponent, QdMockFileCollectorComponent, QdMockFileCollectorModule, QdMockFilterCategoryBooleanComponent, QdMockFilterCategoryComponent, QdMockFilterCategoryDateComponent, QdMockFilterCategoryDateRangeComponent, QdMockFilterCategoryFreeTextComponent, QdMockFilterCategorySelectComponent, QdMockFilterComponent, QdMockFilterFormItemsComponent, QdMockFilterItemBooleanComponent, QdMockFilterItemDateComponent, QdMockFilterItemDateRangeComponent, QdMockFilterItemFreeTextComponent, QdMockFilterItemMultiSelectComponent, QdMockFilterItemSingleSelectComponent, QdMockFilterModule, QdMockFilterService, QdMockFormErrorComponent, QdMockFormGroupErrorComponent, QdMockFormHintComponent, QdMockFormLabelComponent, QdMockFormReadonlyComponent, QdMockFormViewonlyComponent, QdMockFormsModule, QdMockGridModule, QdMockIconButtonComponent, QdMockIconComponent, QdMockIconModule, QdMockImageComponent, QdMockImageModule, QdMockIndeterminateProgressBarComponent, QdMockInputComponent, QdMockListModule, QdMockNavigationTileComponent, QdMockNavigationTilesComponent, QdMockNavigationTilesModule, QdMockNotificationComponent, QdMockNotificationContentComponent, QdMockNotificationsComponent, QdMockNotificationsModule, QdMockNotificationsService, QdMockPageComponent, QdMockPageModule, QdMockPercentageProgressBarComponent, QdMockPinCodeComponent, QdMockPlaceHolderModule, QdMockPopoverOnClickDirective, QdMockProgressBarModule, QdMockQdPlaceHolderComponent, QdMockRadioButtonsComponent, QdMockRwdDisabledDirective, QdMockSearchComponent, QdMockSearchModule, QdMockSectionComponent, QdMockSectionModule, QdMockShellComponent, QdMockShellFooterComponent, QdMockShellHeaderBannerComponent, QdMockShellHeaderComponent, QdMockShellHeaderSearchComponent, QdMockShellHeaderWidgetComponent, QdMockShellModule, QdMockShellToolbarComponent, QdMockShellToolbarItemComponent, QdMockStatusIndicatorCaptionComponent, QdMockStatusIndicatorComponent, QdMockStatusIndicatorItemComponent, QdMockStatusIndicatorModule, QdMockStatusPairsCaptionComponent, QdMockStatusPairsComponent, QdMockStatusPairsErrorComponent, QdMockStatusPairsItemComponent, QdMockStatusPairsValueComponent, QdMockSwitchComponent, QdMockSwitchesComponent, QdMockTableComponent, QdMockTableModule, QdMockTextSectionComponent, QdMockTextSectionHeadlineComponent, QdMockTextSectionModule, QdMockTextSectionParagraphComponent, QdMockTextareaComponent, QdMockTileButtonListComponent, QdMockTileComponent, QdMockTileTextListComponent, QdMockTileTextListItemComponent, QdMockTileTitleComponent, QdMockTilesContainerComponent, QdMockTilesContainerTitleComponent, QdMockTilesModule, QdMockTranslatePipe, QdMockVisuallyHiddenDirective, QdMultiInputComponent, QdNavigationTilesModule, QdNotificationComponent, QdNotificationContentComponent, QdNotificationsComponent, QdNotificationsHttpInterceptorService, QdNotificationsModule, QdNotificationsService, QdNotificationsSnackbarListenerDirective, QdNumberInputService, QdPageComponent, QdPageControlPanelComponent, QdPageFooterComponent, QdPageFooterCustomContentDirective, QdPageInfoBannerComponent, QdPageModule, QdPageStepComponent, QdPageStepperAdapterDirective, QdPageStepperComponent, QdPageStepperModule, QdPageStoreService, QdPageTabComponent, QdPageTabsAdapterDirective, QdPageTabsComponent, QdPageTabsModule, QdPanelSectionActionsComponent, QdPanelSectionComponent, QdPanelSectionModule, QdPanelSectionStatusComponent, QdPanelSectionTextParagraphComponent, QdPendingChangesGuardDirective, QdPercentageProgressBarComponent, QdPinCodeComponent, QdPlaceHolderComponent, QdPlaceHolderModule, QdPlaceholderPipe, QdProgressBarModule, QdProjectionGuardComponent, QdPushEventsService, QdQuickEditComponent, QdQuickEditModule, QdRadioButtonsComponent, QdRichtextComponent, QdRouterQueryParamHubService, QdRwdDisabledDirective, QdSearchComponent, QdSearchModule, QdSearchService, QdSectionAdapterDirective, QdSectionComponent, QdSectionModule, QdSectionToolbarComponent, QdShellComponent, QdShellModule, QdSortDirection, QdSpinnerComponent, QdSpinnerModule, QdStatusIndicatorComponent, QdStatusIndicatorModule, QdStatusPairsCaptionComponent, QdStatusPairsComponent, QdStatusPairsErrorComponent, QdStatusPairsItemComponent, QdStatusPairsValueComponent, QdSubgridComponent, QdSwitchComponent, QdSwitchesComponent, QdTableComponent, QdTableModule, QdTableSpringTools, QdTextSectionComponent, QdTextSectionHeadlineComponent, QdTextSectionModule, QdTextSectionParagraphComponent, QdTextareaComponent, QdTileButtonListComponent, QdTileComponent, QdTileTextListComponent, QdTileTextListItemComponent, QdTileTitleComponent, QdTilesComponent, QdTilesModule, QdTilesTitleComponent, QdTooltipAtIntersectionDirective, QdTooltipIconComponent, QdTreeComponent, QdTreeModule, QdTreeRowExpanderService, QdUiMockModule, QdUiModule, QdUploadErrorType, QdValidators, QdViewportAdaptiveDirective, QdVisuallyHiddenDirective, chipColorDefault, createMetadataStream, qdFilterParameterize, qdMergeParams, qdPageTabParameterize, qdPaginationParameterize, qdSearchParameterize, qdSortParameterize, qdTableQueryParameterize, qdWrapParams, quadrelIconNames, updateHtmlLang };
|
|
18614
|
+
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 };
|
|
18565
18615
|
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 };
|