@quadrel-enterprise-ui/framework 20.11.0 → 20.11.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
|
@@ -9094,6 +9094,33 @@ interface QdPageConfigInspect<T extends object = object> extends QdPageConfigBas
|
|
|
9094
9094
|
* @description Information placed in the header of the page. Concerns current shown object.
|
|
9095
9095
|
*/
|
|
9096
9096
|
headerFacets?: QdPageHeaderFacetConfig<T>[];
|
|
9097
|
+
/**
|
|
9098
|
+
* @description Observable to push partial metadata updates for header facets from outside.
|
|
9099
|
+
* Each emission is shallow-merged into the current object data, so only the fields that
|
|
9100
|
+
* changed need to be emitted. Stream-pushed fields survive subsequent resolver re-runs.
|
|
9101
|
+
*
|
|
9102
|
+
* Create the stream with `createMetadataStream<T>()` — the factory returns a
|
|
9103
|
+
* `ReplaySubject<Partial<T>>(1)` that buffers the latest emission so late subscribers
|
|
9104
|
+
* still receive it. The header subscribes during its own `ngOnInit`, so emissions fired
|
|
9105
|
+
* from the consuming component's `ngOnInit` would be lost without a replay buffer; dev
|
|
9106
|
+
* mode warns when `metadata$` is a plain `Subject`.
|
|
9107
|
+
*
|
|
9108
|
+
* @example
|
|
9109
|
+
* ```ts
|
|
9110
|
+
* private metadataUpdates$ = createMetadataStream<MyObject>();
|
|
9111
|
+
*
|
|
9112
|
+
* pageConfig: QdPageConfig<MyObject> = {
|
|
9113
|
+
* // ...
|
|
9114
|
+
* headerFacets: [...],
|
|
9115
|
+
* metadata$: this.metadataUpdates$
|
|
9116
|
+
* };
|
|
9117
|
+
*
|
|
9118
|
+
* onStatusChange() {
|
|
9119
|
+
* this.metadataUpdates$.next({ status: 'approved' });
|
|
9120
|
+
* }
|
|
9121
|
+
* ```
|
|
9122
|
+
*/
|
|
9123
|
+
metadata$?: Observable<Partial<T>>;
|
|
9097
9124
|
/**
|
|
9098
9125
|
* @description Determines whether the facets in header should be collapsed and custom actions are in a menu. This mode is designed for touch devices and mobile phones only.
|
|
9099
9126
|
*
|
|
@@ -9116,6 +9143,33 @@ interface QdPageConfigCustom<T extends object = object> extends QdPageConfigBase
|
|
|
9116
9143
|
* @description Information placed in the header of the page. Concerns current shown object.
|
|
9117
9144
|
*/
|
|
9118
9145
|
headerFacets?: QdPageHeaderFacetConfig<T>[];
|
|
9146
|
+
/**
|
|
9147
|
+
* @description Observable to push partial metadata updates for header facets from outside.
|
|
9148
|
+
* Each emission is shallow-merged into the current object data, so only the fields that
|
|
9149
|
+
* changed need to be emitted. Stream-pushed fields survive subsequent resolver re-runs.
|
|
9150
|
+
*
|
|
9151
|
+
* Create the stream with `createMetadataStream<T>()` — the factory returns a
|
|
9152
|
+
* `ReplaySubject<Partial<T>>(1)` that buffers the latest emission so late subscribers
|
|
9153
|
+
* still receive it. The header subscribes during its own `ngOnInit`, so emissions fired
|
|
9154
|
+
* from the consuming component's `ngOnInit` would be lost without a replay buffer; dev
|
|
9155
|
+
* mode warns when `metadata$` is a plain `Subject`.
|
|
9156
|
+
*
|
|
9157
|
+
* @example
|
|
9158
|
+
* ```ts
|
|
9159
|
+
* private metadataUpdates$ = createMetadataStream<MyObject>();
|
|
9160
|
+
*
|
|
9161
|
+
* pageConfig: QdPageConfig<MyObject> = {
|
|
9162
|
+
* // ...
|
|
9163
|
+
* headerFacets: [...],
|
|
9164
|
+
* metadata$: this.metadataUpdates$
|
|
9165
|
+
* };
|
|
9166
|
+
*
|
|
9167
|
+
* onStatusChange() {
|
|
9168
|
+
* this.metadataUpdates$.next({ status: 'approved' });
|
|
9169
|
+
* }
|
|
9170
|
+
* ```
|
|
9171
|
+
*/
|
|
9172
|
+
metadata$?: Observable<Partial<T>>;
|
|
9119
9173
|
/**
|
|
9120
9174
|
* @description Determines whether the facets in header should be collapsed and custom actions are in a menu. This mode is designed for touch devices and mobile phones only.
|
|
9121
9175
|
*
|
|
@@ -11795,6 +11849,38 @@ declare class QdPageInfoBannerComponent {
|
|
|
11795
11849
|
static ɵcmp: i0.ɵɵComponentDeclaration<QdPageInfoBannerComponent, "qd-page-info-banner", never, { "config": { "alias": "config"; "required": true; }; }, {}, never, never, false, never>;
|
|
11796
11850
|
}
|
|
11797
11851
|
|
|
11852
|
+
/**
|
|
11853
|
+
* @description Creates a replay-backed stream for pushing partial header-facet
|
|
11854
|
+
* updates into `QdPageConfig.metadata$`.
|
|
11855
|
+
*
|
|
11856
|
+
* The returned `ReplaySubject<Partial<T>>(1)` buffers the most recent emission
|
|
11857
|
+
* so late subscribers still receive the latest value. The page-header component
|
|
11858
|
+
* subscribes to `metadata$` inside its own `ngOnInit`, which runs AFTER the
|
|
11859
|
+
* consuming page component's `ngOnInit`. Consumers that emit synchronously
|
|
11860
|
+
* during their `ngOnInit` (e.g. from a `combineLatest` over already-populated
|
|
11861
|
+
* store selectors) would otherwise lose that first emission if `metadata$` were
|
|
11862
|
+
* a plain `Subject`.
|
|
11863
|
+
*
|
|
11864
|
+
* @example
|
|
11865
|
+
* ```ts
|
|
11866
|
+
* class MyPageComponent {
|
|
11867
|
+
* private metadataUpdates$ = createMetadataStream<MyObject>();
|
|
11868
|
+
*
|
|
11869
|
+
* pageConfig: QdPageConfig<MyObject> = {
|
|
11870
|
+
* // ...
|
|
11871
|
+
* metadata$: this.metadataUpdates$
|
|
11872
|
+
* };
|
|
11873
|
+
*
|
|
11874
|
+
* ngOnInit(): void {
|
|
11875
|
+
* combineLatest([this.state$, this.data$])
|
|
11876
|
+
* .pipe(map(([state, data]) => this.mapHeader(state, data)))
|
|
11877
|
+
* .subscribe(header => this.metadataUpdates$.next(header));
|
|
11878
|
+
* }
|
|
11879
|
+
* }
|
|
11880
|
+
* ```
|
|
11881
|
+
*/
|
|
11882
|
+
declare function createMetadataStream<T>(): ReplaySubject<Partial<T>>;
|
|
11883
|
+
|
|
11798
11884
|
/**
|
|
11799
11885
|
* Token for resolving page object data
|
|
11800
11886
|
*/
|
|
@@ -11817,6 +11903,11 @@ interface QdPageObjectResolver<T extends object> {
|
|
|
11817
11903
|
resolve(): Observable<T>;
|
|
11818
11904
|
/**
|
|
11819
11905
|
* Updates the metadata of the page object model. Can be invoked with an action and accepts a partial metadata object.
|
|
11906
|
+
*
|
|
11907
|
+
* @deprecated Use `QdPageConfig.metadata$` instead. Declare an `Observable<Partial<T>>` (typically a `Subject`)
|
|
11908
|
+
* on the page config and emit partial updates through it — the page header subscribes to it and merges each
|
|
11909
|
+
* emission into the current object data. The `updateMetadata` method is kept for backward compatibility and
|
|
11910
|
+
* will be removed in a future major version.
|
|
11820
11911
|
*/
|
|
11821
11912
|
updateMetadata?(metadata: Partial<T>): void;
|
|
11822
11913
|
}
|
|
@@ -13009,19 +13100,44 @@ declare class QdSectionComponent implements OnInit, AfterViewInit, OnChanges, On
|
|
|
13009
13100
|
*
|
|
13010
13101
|
* #### **Updating Facets**
|
|
13011
13102
|
*
|
|
13012
|
-
* Typically, the values of the facets on a create or inspect page are set to read-only.
|
|
13103
|
+
* Typically, the values of the facets on a create or inspect page are set to read-only. If a facet value needs to change at runtime — for instance after a status update from a dialog — push the partial update through `QdPageConfig.metadata$`. The header subscribes to this observable and shallow-merges every emission into the current object data.
|
|
13104
|
+
*
|
|
13105
|
+
* Create the stream with `createMetadataStream<T>()`. The factory returns a `ReplaySubject<Partial<T>>(1)` that buffers the latest emission, so a value pushed during your component's `ngOnInit` still reaches the header, which subscribes a lifecycle step later. Plain `Subject` silently drops that first emission; dev mode warns when it detects one.
|
|
13013
13106
|
*
|
|
13014
13107
|
* **Please note: These values should not be modified directly within a QdPage.**
|
|
13015
13108
|
*
|
|
13016
13109
|
* ```ts
|
|
13017
|
-
* @
|
|
13018
|
-
*
|
|
13019
|
-
*
|
|
13020
|
-
*
|
|
13110
|
+
* @Component({
|
|
13111
|
+
* // ...
|
|
13112
|
+
* providers: [
|
|
13113
|
+
* {
|
|
13114
|
+
* provide: QD_PAGE_OBJECT_RESOLVER_TOKEN,
|
|
13115
|
+
* useClass: MyObjectModelResolver
|
|
13116
|
+
* }
|
|
13117
|
+
* ]
|
|
13118
|
+
* })
|
|
13119
|
+
* class MyPageComponent {
|
|
13120
|
+
* private metadataUpdates$ = createMetadataStream<MyObjectModel>();
|
|
13121
|
+
*
|
|
13122
|
+
* pageConfig: QdPageConfig<MyObjectModel> = {
|
|
13123
|
+
* title: { i18n: 'i18n.page.title' },
|
|
13124
|
+
* pageType: 'inspect',
|
|
13125
|
+
* headerFacets: [ /* ... *\/ ],
|
|
13126
|
+
* metadata$: this.metadataUpdates$,
|
|
13127
|
+
* pageTypeConfig: { /* ... *\/ }
|
|
13128
|
+
* };
|
|
13129
|
+
*
|
|
13130
|
+
* updateStatus() {
|
|
13131
|
+
* this.metadataUpdates$.next({ state: 'Updated' });
|
|
13021
13132
|
* }
|
|
13133
|
+
* }
|
|
13134
|
+
* ```
|
|
13022
13135
|
*
|
|
13023
|
-
*
|
|
13136
|
+
* Legacy approach (`@deprecated`): the resolver-level `updateMetadata` method is still wired up for backward compatibility, but prefer `metadata$` on the config for new code.
|
|
13024
13137
|
*
|
|
13138
|
+
* ```ts
|
|
13139
|
+
* @Injectable()
|
|
13140
|
+
* class MyObjectModelResolver implements QdPageObjectResolver<MyObjectModel> {
|
|
13025
13141
|
* resolve(): Observable<MyObjectModel> {
|
|
13026
13142
|
* // your implementation here
|
|
13027
13143
|
* }
|
|
@@ -13031,15 +13147,6 @@ declare class QdSectionComponent implements OnInit, AfterViewInit, OnChanges, On
|
|
|
13031
13147
|
* }
|
|
13032
13148
|
* }
|
|
13033
13149
|
*
|
|
13034
|
-
* @Component({
|
|
13035
|
-
* // ...
|
|
13036
|
-
* providers: [
|
|
13037
|
-
* {
|
|
13038
|
-
* provide: QD_PAGE_OBJECT_RESOLVER_TOKEN,
|
|
13039
|
-
* useClass: MyObjectModelResolver
|
|
13040
|
-
* }
|
|
13041
|
-
* ]
|
|
13042
|
-
* })
|
|
13043
13150
|
* class MyPageComponent {
|
|
13044
13151
|
* constructor(@Inject(QD_PAGE_OBJECT_RESOLVER_TOKEN) private objectResolver: MyObjectModelResolver) {}
|
|
13045
13152
|
*
|
|
@@ -13501,6 +13608,9 @@ declare class QdPageObjectHeaderComponent<T extends object> implements OnInit, O
|
|
|
13501
13608
|
private _isLoadingSubject;
|
|
13502
13609
|
private _customActionsSubject;
|
|
13503
13610
|
private _customActionsSub?;
|
|
13611
|
+
private _metadataSub?;
|
|
13612
|
+
private _pendingMetadata;
|
|
13613
|
+
private _metadataStreamTypeWarned;
|
|
13504
13614
|
private _destroyed$;
|
|
13505
13615
|
private _availableContexts;
|
|
13506
13616
|
pageObjectData$: Observable<T>;
|
|
@@ -13547,6 +13657,8 @@ declare class QdPageObjectHeaderComponent<T extends object> implements OnInit, O
|
|
|
13547
13657
|
private setupResolverTrigger;
|
|
13548
13658
|
private initContexts;
|
|
13549
13659
|
private updateCustomActions;
|
|
13660
|
+
private subscribeToMetadataStream;
|
|
13661
|
+
private warnOnNonReplayMetadataStream;
|
|
13550
13662
|
private subscribeToViewOnlyMode;
|
|
13551
13663
|
private getCustomActionsByMode;
|
|
13552
13664
|
private openCancelDialog;
|
|
@@ -17568,5 +17680,5 @@ declare class QdUiModule {
|
|
|
17568
17680
|
|
|
17569
17681
|
declare const APP_ENVIRONMENT: InjectionToken<QdAppEnvironment>;
|
|
17570
17682
|
|
|
17571
|
-
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, 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, 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, updateHtmlLang };
|
|
17683
|
+
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, 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, 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 };
|
|
17572
17684
|
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, QdShellServiceNavigationConfig, 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 };
|