@quadrel-enterprise-ui/framework 20.26.1 → 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
|
*/
|
|
@@ -12393,6 +12394,18 @@ declare class QdPageControlPanelComponent {
|
|
|
12393
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>;
|
|
12394
12395
|
}
|
|
12395
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';
|
|
12396
12409
|
/**
|
|
12397
12410
|
* Interface that describes the configuration of a footer action.
|
|
12398
12411
|
*/
|
|
@@ -12904,6 +12917,28 @@ declare class QdPageTabsAdapterDirective implements OnInit {
|
|
|
12904
12917
|
static ɵdir: i0.ɵɵDirectiveDeclaration<QdPageTabsAdapterDirective, "[qdPageTabsAdapter]", never, {}, {}, never, never, false, never>;
|
|
12905
12918
|
}
|
|
12906
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
|
+
|
|
12907
12942
|
/**
|
|
12908
12943
|
* The configuration object of the tabs
|
|
12909
12944
|
*/
|
|
@@ -13031,7 +13066,8 @@ interface QdPageTabCounters {
|
|
|
13031
13066
|
/**
|
|
13032
13067
|
* The **QdPageTab** is a single tab inside the **QdPageTabs** within a **QdPage**.
|
|
13033
13068
|
*/
|
|
13034
|
-
declare class QdPageTabComponent
|
|
13069
|
+
declare class QdPageTabComponent implements OnInit, OnChanges, OnDestroy {
|
|
13070
|
+
private readonly _pageTabs;
|
|
13035
13071
|
private translate;
|
|
13036
13072
|
/**
|
|
13037
13073
|
* Configuration of QdPageTabComponent.
|
|
@@ -13043,8 +13079,14 @@ declare class QdPageTabComponent extends CdkStep implements OnInit, OnChanges, O
|
|
|
13043
13079
|
set tabControl(tabControl: AbstractControl);
|
|
13044
13080
|
get tabControl(): AbstractControl;
|
|
13045
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;
|
|
13046
13088
|
private _destroyed$;
|
|
13047
|
-
|
|
13089
|
+
select(): void;
|
|
13048
13090
|
ngOnInit(): void;
|
|
13049
13091
|
ngOnChanges(changes?: SimpleChanges): void;
|
|
13050
13092
|
ngOnDestroy(): void;
|
|
@@ -13240,10 +13282,14 @@ interface QdTabSelectionEvent {
|
|
|
13240
13282
|
* - If an invalid tab name is provided in URL, the first available tab is selected
|
|
13241
13283
|
* - If no tab parameter is present, the `selectedIndex` or first non-disabled tab is selected
|
|
13242
13284
|
*/
|
|
13243
|
-
declare class QdPageTabsComponent
|
|
13244
|
-
|
|
13245
|
-
private pageStoreService;
|
|
13285
|
+
declare class QdPageTabsComponent implements OnInit, OnChanges, AfterContentInit, AfterViewInit {
|
|
13286
|
+
readonly footerService: QdPageFooterService;
|
|
13287
|
+
private readonly pageStoreService;
|
|
13246
13288
|
private readonly routerConnector;
|
|
13289
|
+
private readonly _changeDetectorRef;
|
|
13290
|
+
private readonly destroyRef;
|
|
13291
|
+
private static _idCounter;
|
|
13292
|
+
private readonly _id;
|
|
13247
13293
|
protected get hasPageFooter(): boolean;
|
|
13248
13294
|
/**
|
|
13249
13295
|
* Configuration of QdPageTabs.
|
|
@@ -13254,17 +13300,26 @@ declare class QdPageTabsComponent extends CdkStepper implements OnInit, OnChange
|
|
|
13254
13300
|
*/
|
|
13255
13301
|
testId: string;
|
|
13256
13302
|
readonly tabSelection: EventEmitter<QdTabSelectionEvent>;
|
|
13303
|
+
private _tabs;
|
|
13304
|
+
linear: boolean;
|
|
13305
|
+
private _selectedIndex;
|
|
13257
13306
|
private _viewonly;
|
|
13258
|
-
private readonly destroyRef;
|
|
13259
13307
|
get tabs(): QueryList<QdPageTabComponent>;
|
|
13260
13308
|
get selected(): QdPageTabComponent | undefined;
|
|
13261
|
-
set selected(
|
|
13262
|
-
|
|
13309
|
+
set selected(tab: QdPageTabComponent | undefined);
|
|
13310
|
+
get selectedIndex(): number;
|
|
13311
|
+
set selectedIndex(newIndex: number);
|
|
13263
13312
|
ngOnInit(): void;
|
|
13264
13313
|
ngOnChanges(changes: SimpleChanges): void;
|
|
13265
|
-
_getIndicatorType(index: number, state?: StepState): StepState;
|
|
13266
13314
|
ngAfterContentInit(): void;
|
|
13267
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;
|
|
13268
13323
|
private initializeTabSelection;
|
|
13269
13324
|
private configureBookmarkableTabs;
|
|
13270
13325
|
private isTabSelectable;
|
|
@@ -13272,15 +13327,9 @@ declare class QdPageTabsComponent extends CdkStepper implements OnInit, OnChange
|
|
|
13272
13327
|
* Selects the first tab that is not disabled.
|
|
13273
13328
|
*/
|
|
13274
13329
|
private selectFirstNotDisabledTab;
|
|
13275
|
-
save(): void;
|
|
13276
|
-
selectTab(tab: QdPageTabComponent): void;
|
|
13277
|
-
isSubmitButtonShown(): boolean;
|
|
13278
|
-
isSubmitButtonDisabled(): boolean | undefined;
|
|
13279
|
-
_getTabLabelId(i: number): string;
|
|
13280
13330
|
private blockCdkInput;
|
|
13281
|
-
private mapSelectionChangeToTabSelectionOutput;
|
|
13282
13331
|
static ɵfac: i0.ɵɵFactoryDeclaration<QdPageTabsComponent, never>;
|
|
13283
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<QdPageTabsComponent, "qd-page-tabs", never, { "config": { "alias": "config"; "required": false; }; "testId": { "alias": "data-test-id"; "required": false; }; }, { "tabSelection": "tabSelection"; },
|
|
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>;
|
|
13284
13333
|
}
|
|
13285
13334
|
|
|
13286
13335
|
interface QdSearchPostBodyData {
|
|
@@ -14481,14 +14530,6 @@ declare class QdReferencesFacetComponent<T> {
|
|
|
14481
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>;
|
|
14482
14531
|
}
|
|
14483
14532
|
|
|
14484
|
-
declare class QdPageFooterCustomContentDirective implements OnInit, OnDestroy {
|
|
14485
|
-
private footerService;
|
|
14486
|
-
ngOnInit(): void;
|
|
14487
|
-
ngOnDestroy(): void;
|
|
14488
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<QdPageFooterCustomContentDirective, never>;
|
|
14489
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<QdPageFooterCustomContentDirective, "[qdPageFooter]", never, {}, {}, never, never, false, never>;
|
|
14490
|
-
}
|
|
14491
|
-
|
|
14492
14533
|
declare class QdContextSelectDialogComponent implements OnInit {
|
|
14493
14534
|
private dialogRef;
|
|
14494
14535
|
private translateService;
|
|
@@ -18079,18 +18120,13 @@ declare class QdPageStepperModule {
|
|
|
18079
18120
|
*/
|
|
18080
18121
|
declare function qdPageTabParameterize(tab: QdPageTabConfig | string | undefined): QdQueryParameter;
|
|
18081
18122
|
|
|
18123
|
+
type QdTabState = 'number' | 'edit' | 'done' | 'error' | string;
|
|
18082
18124
|
/**
|
|
18083
18125
|
* **QdPageTabHeader* renders the header of a single tab. It is used quadrel-internally.
|
|
18084
18126
|
*/
|
|
18085
|
-
declare class QdPageTabHeaderComponent
|
|
18086
|
-
protected readonly STEP_STATE: {
|
|
18087
|
-
NUMBER: string;
|
|
18088
|
-
EDIT: string;
|
|
18089
|
-
DONE: string;
|
|
18090
|
-
ERROR: string;
|
|
18091
|
-
};
|
|
18127
|
+
declare class QdPageTabHeaderComponent {
|
|
18092
18128
|
/** State of the given tab. */
|
|
18093
|
-
state:
|
|
18129
|
+
state: QdTabState;
|
|
18094
18130
|
/** Label of the given tab. */
|
|
18095
18131
|
label: string;
|
|
18096
18132
|
/** Represents up to two numeric counters as a badge */
|
|
@@ -18105,7 +18141,6 @@ declare class QdPageTabHeaderComponent extends CdkStepHeader {
|
|
|
18105
18141
|
* A static test ID for integration tests can be set.
|
|
18106
18142
|
*/
|
|
18107
18143
|
testId: string;
|
|
18108
|
-
constructor();
|
|
18109
18144
|
static ɵfac: i0.ɵɵFactoryDeclaration<QdPageTabHeaderComponent, never>;
|
|
18110
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>;
|
|
18111
18146
|
}
|
|
@@ -18122,7 +18157,7 @@ declare class QdPageTabHeaderCountersComponent implements OnInit {
|
|
|
18122
18157
|
|
|
18123
18158
|
declare class QdPageTabsModule {
|
|
18124
18159
|
static ɵfac: i0.ɵɵFactoryDeclaration<QdPageTabsModule, never>;
|
|
18125
|
-
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]>;
|
|
18126
18161
|
static ɵinj: i0.ɵɵInjectorDeclaration<QdPageTabsModule>;
|
|
18127
18162
|
}
|
|
18128
18163
|
|
|
@@ -18576,5 +18611,5 @@ declare class QdUiModule {
|
|
|
18576
18611
|
|
|
18577
18612
|
declare const APP_ENVIRONMENT: InjectionToken<QdAppEnvironment>;
|
|
18578
18613
|
|
|
18579
|
-
export { APP_ENVIRONMENT, AVAILABLE_ICONS, BACKEND_ERROR_CODES, MockLocaleDatePipe, NavigationTileComponent, NavigationTilesComponent, QD_DIALOG_CONFIRMATION_RESOLVER_TOKEN, QD_FILE_MANAGER_TOKEN, QD_FILE_UPLOAD_MANAGER_TOKEN, QD_FORM_OPTIONS_RESOLVER, QD_PAGE_OBJECT_RESOLVER_TOKEN, QD_PAGE_STEP_RESOLVER_TOKEN, QD_POPOVER_TOP_FIRST, QD_SAFE_BOTTOM_OFFSET, QD_TABLE_DATA_RESOLVER_TOKEN, QD_UPLOAD_HTTP_OPTIONS, QdButtonComponent, QdButtonGhostDirective, QdButtonGridComponent, QdButtonLinkDirective, QdButtonModule, QdButtonStackButtonComponent, QdButtonStackComponent, QdCheckboxChipsComponent, QdCheckboxComponent, QdCheckboxesComponent, QdChipComponent, QdChipModule, QdColumnAutoFillDirective, QdColumnBreakBeforeDirective, QdColumnDirective, QdColumnDisableResponsiveColspansDirective, QdColumnFullGridWidthDirective, QdColumnNextInSameRowDirective, QdColumnsDirective, QdColumnsDisableAutoFillDirective, QdColumnsDisableResponsiveColspansDirective, QdColumnsMaxDirective, QdCommentsComponent, QdCommentsModule, QdConnectFormStateToPageDirective, QdConnectorTableContextDirective, QdConnectorTableFilterDirective, QdConnectorTableSearchDirective, QdContactCardComponent, QdContactCardModule, QdContainerPairsCaptionComponent, QdContainerPairsContainerComponent, QdContainerPairsHeaderComponent, QdContainerPairsItemComponent, QdContainerPairsValueComponent, QdContextService, QdCoreModule, QdDatepickerComponent, QdDialogActionComponent, QdDialogAuthSessionEndComponent, QdDialogAuthSessionEndService, QdDialogComponent, QdDialogConfirmationComponent, QdDialogConfirmationErrorDirective, QdDialogConfirmationInfoDirective, QdDialogConfirmationSuccessDirective, QdDialogModule, QdDialogRecordStepperComponent, QdDialogService, QdDialogSize, QdDisabledDirective, QdDropdownComponent, QdFileCollectorComponent, QdFileCollectorModule, QdFileSizePipe$1 as QdFileSizePipe, QdFileUploadComponent, QdFileUploadService, QdFilterComponent, QdFilterFormItemsComponent, QdFilterModule, QdFilterRestParamBuilder, QdFilterService, QdFooterActionType, QdFormArray, QdFormBuilder, QdFormControl, QdFormGroup, QdFormModule, QdGridComponent, QdGridModule, QdHorizontalPairsCaptionComponent, QdHorizontalPairsComponent, QdHorizontalPairsItemComponent, QdHorizontalPairsValueComponent, QdIconButtonComponent, QdIconComponent, QdIconModule, QdImageComponent, QdImageModule, QdIndeterminateProgressBarComponent, QdInputComponent, QdListModule, QdMenuButtonComponent, QdMockBreakpointService, QdMockButtonComponent, QdMockButtonGhostDirective, QdMockButtonGridComponent, QdMockButtonLinkDirective, QdMockButtonModule, QdMockButtonStackButtonComponent, QdMockButtonStackComponent, QdMockCalendarComponent, QdMockCheckboxChipsComponent, QdMockCheckboxComponent, QdMockCheckboxesComponent, QdMockChipComponent, QdMockChipModule, QdMockColumnDirective, QdMockColumnsDirective, QdMockContactCardComponent, QdMockContactCardModule, QdMockContainerPairsCaptionComponent, QdMockContainerPairsContainerComponent, QdMockContainerPairsHeaderComponent, QdMockContainerPairsItemComponent, QdMockContainerPairsValueComponent, QdMockCoreModule, QdMockCounterBadgeComponent, QdMockDatepickerComponent, QdMockDisabledDirective, QdMockDropdownComponent, QdMockFileCollectorComponent, QdMockFileCollectorModule, QdMockFilterCategoryBooleanComponent, QdMockFilterCategoryComponent, QdMockFilterCategoryDateComponent, QdMockFilterCategoryDateRangeComponent, QdMockFilterCategoryFreeTextComponent, QdMockFilterCategorySelectComponent, QdMockFilterComponent, QdMockFilterFormItemsComponent, QdMockFilterItemBooleanComponent, QdMockFilterItemDateComponent, QdMockFilterItemDateRangeComponent, QdMockFilterItemFreeTextComponent, QdMockFilterItemMultiSelectComponent, QdMockFilterItemSingleSelectComponent, QdMockFilterModule, QdMockFilterService, QdMockFormErrorComponent, QdMockFormGroupErrorComponent, QdMockFormHintComponent, QdMockFormLabelComponent, QdMockFormReadonlyComponent, QdMockFormViewonlyComponent, QdMockFormsModule, QdMockGridModule, QdMockIconButtonComponent, QdMockIconComponent, QdMockIconModule, QdMockImageComponent, QdMockImageModule, QdMockIndeterminateProgressBarComponent, QdMockInputComponent, QdMockListModule, QdMockNavigationTileComponent, QdMockNavigationTilesComponent, QdMockNavigationTilesModule, QdMockNotificationComponent, QdMockNotificationContentComponent, QdMockNotificationsComponent, QdMockNotificationsModule, QdMockNotificationsService, QdMockPageComponent, QdMockPageModule, QdMockPercentageProgressBarComponent, QdMockPinCodeComponent, QdMockPlaceHolderModule, QdMockPopoverOnClickDirective, QdMockProgressBarModule, QdMockQdPlaceHolderComponent, QdMockRadioButtonsComponent, QdMockRwdDisabledDirective, QdMockSearchComponent, QdMockSearchModule, QdMockSectionComponent, QdMockSectionModule, QdMockShellComponent, QdMockShellFooterComponent, QdMockShellHeaderBannerComponent, QdMockShellHeaderComponent, QdMockShellHeaderSearchComponent, QdMockShellHeaderWidgetComponent, QdMockShellModule, QdMockShellToolbarComponent, QdMockShellToolbarItemComponent, QdMockStatusIndicatorCaptionComponent, QdMockStatusIndicatorComponent, QdMockStatusIndicatorItemComponent, QdMockStatusIndicatorModule, QdMockStatusPairsCaptionComponent, QdMockStatusPairsComponent, QdMockStatusPairsErrorComponent, QdMockStatusPairsItemComponent, QdMockStatusPairsValueComponent, QdMockSwitchComponent, QdMockSwitchesComponent, QdMockTableComponent, QdMockTableModule, QdMockTextSectionComponent, QdMockTextSectionHeadlineComponent, QdMockTextSectionModule, QdMockTextSectionParagraphComponent, QdMockTextareaComponent, QdMockTileButtonListComponent, QdMockTileComponent, QdMockTileTextListComponent, QdMockTileTextListItemComponent, QdMockTileTitleComponent, QdMockTilesContainerComponent, QdMockTilesContainerTitleComponent, QdMockTilesModule, QdMockTranslatePipe, QdMockVisuallyHiddenDirective, QdMultiInputComponent, QdNavigationTilesModule, QdNotificationComponent, QdNotificationContentComponent, QdNotificationsComponent, QdNotificationsHttpInterceptorService, QdNotificationsModule, QdNotificationsService, QdNotificationsSnackbarListenerDirective, QdNumberInputService, QdPageComponent, QdPageControlPanelComponent, QdPageFooterComponent, QdPageFooterCustomContentDirective, QdPageInfoBannerComponent, QdPageModule, QdPageStepComponent, QdPageStepperAdapterDirective, QdPageStepperComponent, QdPageStepperModule, QdPageStoreService, QdPageTabComponent, QdPageTabsAdapterDirective, QdPageTabsComponent, QdPageTabsModule, QdPanelSectionActionsComponent, QdPanelSectionComponent, QdPanelSectionModule, QdPanelSectionStatusComponent, QdPanelSectionTextParagraphComponent, QdPendingChangesGuardDirective, QdPercentageProgressBarComponent, QdPinCodeComponent, QdPlaceHolderComponent, QdPlaceHolderModule, QdPlaceholderPipe, QdProgressBarModule, QdProjectionGuardComponent, QdPushEventsService, QdQuickEditComponent, QdQuickEditModule, QdRadioButtonsComponent, QdRichtextComponent, QdRouterQueryParamHubService, QdRwdDisabledDirective, QdSearchComponent, QdSearchModule, QdSearchService, QdSectionAdapterDirective, QdSectionComponent, QdSectionModule, QdSectionToolbarComponent, QdShellComponent, QdShellModule, QdSortDirection, QdSpinnerComponent, QdSpinnerModule, QdStatusIndicatorComponent, QdStatusIndicatorModule, QdStatusPairsCaptionComponent, QdStatusPairsComponent, QdStatusPairsErrorComponent, QdStatusPairsItemComponent, QdStatusPairsValueComponent, QdSubgridComponent, QdSwitchComponent, QdSwitchesComponent, QdTableComponent, QdTableModule, QdTableSpringTools, QdTextSectionComponent, QdTextSectionHeadlineComponent, QdTextSectionModule, QdTextSectionParagraphComponent, QdTextareaComponent, QdTileButtonListComponent, QdTileComponent, QdTileTextListComponent, QdTileTextListItemComponent, QdTileTitleComponent, QdTilesComponent, QdTilesModule, QdTilesTitleComponent, QdTooltipAtIntersectionDirective, QdTooltipIconComponent, QdTreeComponent, QdTreeModule, QdTreeRowExpanderService, QdUiMockModule, QdUiModule, QdUploadErrorType, QdValidators, QdViewportAdaptiveDirective, QdVisuallyHiddenDirective, chipColorDefault, createMetadataStream, qdFilterParameterize, qdMergeParams, qdPageTabParameterize, qdPaginationParameterize, qdSearchParameterize, qdSortParameterize, qdTableQueryParameterize, qdWrapParams, quadrelIconNames, updateHtmlLang };
|
|
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 };
|
|
18580
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 };
|