@quadrel-enterprise-ui/framework 20.8.0 → 20.9.0

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
@@ -1,6 +1,6 @@
1
1
  import * as rxjs from 'rxjs';
2
2
  import { Observable, BehaviorSubject, Subject, Subscription, ReplaySubject } from 'rxjs';
3
- import * as i12 from '@angular/cdk/dialog';
3
+ import * as i11 from '@angular/cdk/dialog';
4
4
  import { DialogConfig, DialogRef } from '@angular/cdk/dialog';
5
5
  import * as i0 from '@angular/core';
6
6
  import { InjectionToken, EventEmitter, OnInit, PipeTransform, TemplateRef, AfterContentInit, AfterViewInit, OnDestroy, OnChanges, AfterViewChecked, SimpleChanges, AfterContentChecked, Injector, ElementRef, QueryList, NgIterable, ViewContainerRef, Type, DestroyRef, ModuleWithProviders } from '@angular/core';
@@ -1639,6 +1639,24 @@ interface QdTableSecondaryAction<T extends string> {
1639
1639
  * ```
1640
1640
  */
1641
1641
  operationMode?: 'edit' | 'view';
1642
+ /**
1643
+ * @description An optional confirmation message displayed in a dialog before the action handler is executed.
1644
+ *
1645
+ * When provided, a confirmation dialog is shown to the user. The handler is only called if the user confirms.
1646
+ * If not provided, the handler is called directly.
1647
+ *
1648
+ * @example
1649
+ * ```ts
1650
+ * {
1651
+ * type: 'delete',
1652
+ * confirmationMessage: { i18n: 'i18n.app.remove.entry.confirmation' },
1653
+ * handler: ({ rowData }) => this.service.delete(rowData.id)
1654
+ * }
1655
+ * ```
1656
+ */
1657
+ confirmationMessage?: {
1658
+ i18n: string;
1659
+ };
1642
1660
  }
1643
1661
  /**
1644
1662
  * @description Defines the secondaryAction type for the table. For 'edit', 'delete' & 'view' types, an icon will be provided.
@@ -10125,17 +10143,6 @@ declare class QdPageDialogWithBreadcrumbsComponent {
10125
10143
  static ɵcmp: i0.ɵɵComponentDeclaration<QdPageDialogWithBreadcrumbsComponent, "ng-component", never, {}, {}, never, never, false, never>;
10126
10144
  }
10127
10145
 
10128
- declare class QdCancelDialogComponent implements OnInit {
10129
- private dialogRef;
10130
- i18n: string;
10131
- handler: () => void;
10132
- ngOnInit(): void;
10133
- close(): void;
10134
- confirm(): void;
10135
- static ɵfac: i0.ɵɵFactoryDeclaration<QdCancelDialogComponent, never>;
10136
- static ɵcmp: i0.ɵɵComponentDeclaration<QdCancelDialogComponent, "qd-cancel-dialog", never, {}, {}, never, never, false, never>;
10137
- }
10138
-
10139
10146
  declare class QdSpinnerComponent {
10140
10147
  static ɵfac: i0.ɵɵFactoryDeclaration<QdSpinnerComponent, never>;
10141
10148
  static ɵcmp: i0.ɵɵComponentDeclaration<QdSpinnerComponent, "qd-spinner", never, {}, {}, never, never, false, never>;
@@ -10149,7 +10156,7 @@ declare class QdSpinnerModule {
10149
10156
 
10150
10157
  declare class QdDialogModule {
10151
10158
  static ɵfac: i0.ɵɵFactoryDeclaration<QdDialogModule, never>;
10152
- static ɵmod: i0.ɵɵNgModuleDeclaration<QdDialogModule, [typeof QdDialogActionComponent, typeof QdDialogAuthSessionEndComponent, typeof QdDialogComponent, typeof QdDialogConfirmationComponent, typeof QdDialogConfirmationErrorDirective, typeof QdDialogConfirmationInfoDirective, typeof QdDialogConfirmationSuccessDirective, typeof QdDialogRecordStepperComponent, typeof QdPageDialogWithBreadcrumbsComponent, typeof QdPendingChangesGuardDirective, typeof QdCancelDialogComponent], [typeof i2.CommonModule, typeof i5.TranslateModule, typeof i4.RouterModule, typeof i12.DialogModule, typeof QdButtonModule, typeof QdFormModule, typeof QdIconModule, typeof QdNotificationsModule, typeof QdSpinnerModule, typeof QdTextSectionModule, typeof QdCoreModule, typeof QdBreadcrumbsModule], [typeof QdDialogActionComponent, typeof QdDialogAuthSessionEndComponent, typeof QdDialogComponent, typeof QdDialogConfirmationComponent, typeof QdDialogConfirmationErrorDirective, typeof QdDialogConfirmationSuccessDirective, typeof QdDialogRecordStepperComponent, typeof QdPendingChangesGuardDirective]>;
10159
+ static ɵmod: i0.ɵɵNgModuleDeclaration<QdDialogModule, [typeof QdDialogActionComponent, typeof QdDialogAuthSessionEndComponent, typeof QdDialogComponent, typeof QdDialogConfirmationComponent, typeof QdDialogConfirmationErrorDirective, typeof QdDialogConfirmationInfoDirective, typeof QdDialogConfirmationSuccessDirective, typeof QdDialogRecordStepperComponent, typeof QdPageDialogWithBreadcrumbsComponent, typeof QdPendingChangesGuardDirective], [typeof i2.CommonModule, typeof i5.TranslateModule, typeof i4.RouterModule, typeof i11.DialogModule, typeof QdButtonModule, typeof QdFormModule, typeof QdIconModule, typeof QdNotificationsModule, typeof QdSpinnerModule, typeof QdTextSectionModule, typeof QdCoreModule, typeof QdBreadcrumbsModule], [typeof QdDialogActionComponent, typeof QdDialogAuthSessionEndComponent, typeof QdDialogComponent, typeof QdDialogConfirmationComponent, typeof QdDialogConfirmationErrorDirective, typeof QdDialogConfirmationSuccessDirective, typeof QdDialogRecordStepperComponent, typeof QdPendingChangesGuardDirective]>;
10153
10160
  static ɵinj: i0.ɵɵInjectorDeclaration<QdDialogModule>;
10154
10161
  }
10155
10162
 
@@ -13147,6 +13154,7 @@ declare class QdPageComponent<T extends object> implements OnInit, OnChanges, Af
13147
13154
  private bottomOffset$;
13148
13155
  private readonly dialogRef;
13149
13156
  private readonly navigationInterceptor;
13157
+ private readonly confirmationDialogService;
13150
13158
  /**
13151
13159
  * This property defines the configuration for the QdPage component, including the page type,
13152
13160
  * title, and specific configurations for each type of page.
@@ -13318,6 +13326,7 @@ declare class QdPageObjectHeaderComponent<T extends object> implements OnInit, O
13318
13326
  private formGroupManagerService;
13319
13327
  private dialogComponent;
13320
13328
  private dialog;
13329
+ private confirmationDialogService;
13321
13330
  private contextService;
13322
13331
  private resolverTriggerService;
13323
13332
  private pageStoreService;
@@ -13507,17 +13516,6 @@ declare class QdContextSelectDialogComponent implements OnInit {
13507
13516
  static ɵcmp: i0.ɵɵComponentDeclaration<QdContextSelectDialogComponent, "qd-context-select-dialog", never, {}, {}, never, never, false, never>;
13508
13517
  }
13509
13518
 
13510
- declare class QdPageCancelConfirmationDialogComponent implements OnInit {
13511
- private dialogRef;
13512
- i18n: string;
13513
- handler: () => void;
13514
- ngOnInit(): void;
13515
- close(): void;
13516
- confirm(): void;
13517
- static ɵfac: i0.ɵɵFactoryDeclaration<QdPageCancelConfirmationDialogComponent, never>;
13518
- static ɵcmp: i0.ɵɵComponentDeclaration<QdPageCancelConfirmationDialogComponent, "qd-page-cancel-confirmation-dialog", never, {}, {}, never, never, false, never>;
13519
- }
13520
-
13521
13519
  /**
13522
13520
  * **Context**
13523
13521
  *
@@ -14239,6 +14237,7 @@ declare class QdTableComponent<T extends string> implements OnInit, OnChanges, O
14239
14237
  private readonly fillingWidthService;
14240
14238
  private readonly breakpointService;
14241
14239
  private readonly resolverService;
14240
+ private readonly confirmationDialogService;
14242
14241
  /**
14243
14242
  * Configuration of the table. The generic type specifies the column definition. <br />
14244
14243
  *
@@ -15188,7 +15187,7 @@ declare class QdTableModule {
15188
15187
 
15189
15188
  declare class QdPageModule {
15190
15189
  static ɵfac: i0.ɵɵFactoryDeclaration<QdPageModule, never>;
15191
- static ɵmod: i0.ɵɵNgModuleDeclaration<QdPageModule, [typeof QdPageComponent, typeof QdPageFooterComponent, typeof QdPageObjectHeaderComponent, typeof QdPageControlPanelComponent, typeof QdSingleSelectFacetComponent, typeof QdMultiSelectFacetComponent, typeof QdDateFacetComponent, typeof QdValueFacetComponent, typeof QdStatusFacetComponent, typeof QdDynamicFacetComponent, typeof QdDynamicFacetDirective, typeof QdCriticalityFacetComponent, typeof QdProgressFacetComponent, typeof QdReferencesFacetComponent, typeof QdConnectFormStateToPageDirective, typeof QdPageFooterCustomContentDirective, typeof QdContextSelectDialogComponent, typeof QdPageCancelConfirmationDialogComponent, typeof QdPageInfoBannerComponent], [typeof i2.CommonModule, typeof i5.TranslateModule, typeof QdButtonModule, typeof QdButtonModule, typeof QdChipModule, typeof QdCoreModule, typeof QdDialogModule, typeof QdIconModule, typeof QdProgressBarModule, typeof QdSectionModule, typeof QdSpinnerModule, typeof QdStatusIndicatorModule, typeof QdTableModule, typeof QdTextSectionModule, typeof QdSearchModule, typeof QdPopoverModule], [typeof QdPageComponent, typeof QdPageFooterComponent, typeof QdConnectFormStateToPageDirective, typeof QdPageControlPanelComponent, typeof QdPageFooterCustomContentDirective, typeof QdPageInfoBannerComponent]>;
15190
+ static ɵmod: i0.ɵɵNgModuleDeclaration<QdPageModule, [typeof QdPageComponent, typeof QdPageFooterComponent, typeof QdPageObjectHeaderComponent, typeof QdPageControlPanelComponent, typeof QdSingleSelectFacetComponent, typeof QdMultiSelectFacetComponent, typeof QdDateFacetComponent, typeof QdValueFacetComponent, typeof QdStatusFacetComponent, typeof QdDynamicFacetComponent, typeof QdDynamicFacetDirective, typeof QdCriticalityFacetComponent, typeof QdProgressFacetComponent, typeof QdReferencesFacetComponent, typeof QdConnectFormStateToPageDirective, typeof QdPageFooterCustomContentDirective, typeof QdContextSelectDialogComponent, typeof QdPageInfoBannerComponent], [typeof i2.CommonModule, typeof i5.TranslateModule, typeof QdButtonModule, typeof QdButtonModule, typeof QdChipModule, typeof QdCoreModule, typeof QdDialogModule, typeof QdIconModule, typeof QdProgressBarModule, typeof QdSectionModule, typeof QdSpinnerModule, typeof QdStatusIndicatorModule, typeof QdTableModule, typeof QdTextSectionModule, typeof QdSearchModule, typeof QdPopoverModule], [typeof QdPageComponent, typeof QdPageFooterComponent, typeof QdConnectFormStateToPageDirective, typeof QdPageControlPanelComponent, typeof QdPageFooterCustomContentDirective, typeof QdPageInfoBannerComponent]>;
15192
15191
  static ɵinj: i0.ɵɵInjectorDeclaration<QdPageModule>;
15193
15192
  }
15194
15193
 
@@ -17014,6 +17013,25 @@ interface QdQuickEditConfig<T extends string> {
17014
17013
  * will be rendered either in quick edit itself when being used standalone. For usage in section, configure section with add button.
17015
17014
  */
17016
17015
  canAdd?: boolean;
17016
+ /**
17017
+ * @description An optional confirmation message displayed in a dialog before a row is removed via the built-in remove button.
17018
+ *
17019
+ * When provided, a confirmation dialog is shown to the user. The row is only removed if the user confirms.
17020
+ * If not provided, the row is removed directly.
17021
+ * Only applies when `canAdd` is true and the remove button is visible.
17022
+ *
17023
+ * @example
17024
+ * ```ts
17025
+ * {
17026
+ * columns: [...],
17027
+ * canAdd: true,
17028
+ * removeConfirmationMessage: { i18n: 'i18n.app.remove.entry.confirmation' }
17029
+ * }
17030
+ * ```
17031
+ */
17032
+ removeConfirmationMessage?: {
17033
+ i18n: string;
17034
+ };
17017
17035
  /**
17018
17036
  * Allows to change the label of the create button.
17019
17037
  */
@@ -17254,6 +17272,7 @@ declare class QdQuickEditComponent<T extends string> implements OnInit, OnChange
17254
17272
  private readonly eventBrokerService;
17255
17273
  private changeDetectorRef;
17256
17274
  private controlContainer;
17275
+ private confirmationDialogService;
17257
17276
  /**
17258
17277
  * Configuration of the QuickEdit. The generic type specifies the column definition. <br />
17259
17278
  *
@@ -17328,6 +17347,7 @@ declare class QdQuickEditComponent<T extends string> implements OnInit, OnChange
17328
17347
  getComponentInputs(column: QdQuickEditColumn<T>, row: QdQuickEditRow<T>): any;
17329
17348
  createRow(): void;
17330
17349
  removeRow(index: number): void;
17350
+ private executeRemoveRow;
17331
17351
  hasTooltip(tooltip: QdTooltip): boolean;
17332
17352
  private initRows;
17333
17353
  private initCreating;
@@ -17365,4 +17385,4 @@ declare class QdUiModule {
17365
17385
  declare const APP_ENVIRONMENT: InjectionToken<QdAppEnvironment>;
17366
17386
 
17367
17387
  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, QdTreeComponent, QdTreeModule, QdTreeRowExpanderService, QdUiMockModule, QdUiModule, QdUploadErrorType, QdValidators, QdViewportAdaptiveDirective, QdVisuallyHiddenDirective, chipColorDefault, updateHtmlLang };
17368
- 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, QdPageInfoBannerConfig, QdPageObjectResolver, QdPageObjectResolverConfig, QdPageSelectedContext, QdPageStepConfig, QdPageStepResolver, QdPageStepperConfig, QdPageTabConfig, QdPageTabCounters, QdPageTabsConfig, QdPageTypeCreateConfig, QdPageTypeCustomConfig, QdPageTypeInspectConfig, QdPageTypeOverviewConfig, QdPlaceholder, QdPushEventName, QdQuickEditConfig, QdQuickEditData, QdRichtextConfig, QdSearchOptions, QdSearchPostBodyData, QdSectionActionType, QdSectionConfig, QdShellConfig, 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, QdTableStatusDataValue, QdTileConfig, QdTilesConfig, QdTooltip, QdTranslatable, QdTranslation, QdTreeConfig, QdTreeData, QdTreeDataRow, QdTreeDataValue, QdUploadError, QdUploadProgress };
17388
+ 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 };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quadrel-enterprise-ui/framework",
3
- "version": "20.8.0",
3
+ "version": "20.9.0",
4
4
  "exports": {
5
5
  "./jest-preset": "./jest-preset.js",
6
6
  "./package.json": {
@@ -160,6 +160,8 @@
160
160
  "i18n.qd.page.cancel.confirmation.dialog.message": "Sie haben nicht gespeicherte Eingaben. Wenn Sie diese verwerfen, gehen diese unwiderruflich verloren.",
161
161
  "i18n.qd.page.cancel.confirmation.dialog.close": "Abbrechen",
162
162
  "i18n.qd.page.cancel.confirmation.dialog.proceed": "Verwerfen",
163
+ "i18n.qd.dialog.confirm.title": "Aktion bestätigen",
164
+ "i18n.qd.dialog.confirm.proceed": "Bestätigen",
163
165
  "i18n.qd.page.context.button.change": "Ändern",
164
166
  "i18n.qd.page.context.button.select": "Auswählen",
165
167
  "i18n.qd.page.context.noSelectionPlaceholder": "Keine Auswahl",
@@ -159,6 +159,8 @@
159
159
  "i18n.qd.page.cancel.confirmation.dialog.message": "You have unsaved entries. If you discard them, they will be permanently lost.",
160
160
  "i18n.qd.page.cancel.confirmation.dialog.close": "Cancel",
161
161
  "i18n.qd.page.cancel.confirmation.dialog.proceed": "Discard",
162
+ "i18n.qd.dialog.confirm.title": "Confirm action",
163
+ "i18n.qd.dialog.confirm.proceed": "Confirm",
162
164
  "i18n.qd.page.context.button.change": "Change",
163
165
  "i18n.qd.page.context.button.select": "Select",
164
166
  "i18n.qd.page.context.noSelectionPlaceholder": "No selection",
@@ -159,6 +159,8 @@
159
159
  "i18n.qd.page.cancel.confirmation.dialog.message": "Vous avez des entrées non enregistrées. Si vous les rejetez, elles seront irrémédiablement perdues.",
160
160
  "i18n.qd.page.cancel.confirmation.dialog.close": "Annuler",
161
161
  "i18n.qd.page.cancel.confirmation.dialog.proceed": "Rejeter",
162
+ "i18n.qd.dialog.confirm.title": "Confirmer l'action",
163
+ "i18n.qd.dialog.confirm.proceed": "Confirmer",
162
164
  "i18n.qd.page.context.button.change": "Changer",
163
165
  "i18n.qd.page.context.button.select": "Choisir",
164
166
  "i18n.qd.page.context.noSelectionPlaceholder": "Aucune sélection",
@@ -159,6 +159,8 @@
159
159
  "i18n.qd.page.cancel.confirmation.dialog.message": "Hai inserito dei dati che non sono stati salvati. Se li elimini, andranno persi irrevocabilmente.",
160
160
  "i18n.qd.page.cancel.confirmation.dialog.close": "Annulla",
161
161
  "i18n.qd.page.cancel.confirmation.dialog.proceed": "Elimina",
162
+ "i18n.qd.dialog.confirm.title": "Confermare l'azione",
163
+ "i18n.qd.dialog.confirm.proceed": "Conferma",
162
164
  "i18n.qd.page.context.button.change": "Modifica",
163
165
  "i18n.qd.page.context.button.select": "Scegliere",
164
166
  "i18n.qd.page.context.noSelectionPlaceholder": "Nessuna scelta",