@quadrel-enterprise-ui/framework 20.8.0 → 20.9.1-beta.137.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/fesm2022/quadrel-enterprise-ui-framework-dialog-confirm.module-BQLiEzSo.mjs +42 -0
- package/fesm2022/quadrel-enterprise-ui-framework-dialog-confirm.module-BQLiEzSo.mjs.map +1 -0
- package/fesm2022/quadrel-enterprise-ui-framework.mjs +353 -249
- package/fesm2022/quadrel-enterprise-ui-framework.mjs.map +1 -1
- package/index.d.ts +186 -36
- package/package.json +1 -1
- package/src/assets/i18n/de.json +2 -0
- package/src/assets/i18n/en.json +2 -0
- package/src/assets/i18n/fr.json +2 -0
- package/src/assets/i18n/it.json +2 -0
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
|
|
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.
|
|
@@ -6644,6 +6662,7 @@ declare class QdInputComponent implements OnInit, OnChanges, OnDestroy, ControlV
|
|
|
6644
6662
|
hasAutofocus: boolean;
|
|
6645
6663
|
hasOptions: boolean;
|
|
6646
6664
|
_value: QdInputValueWithUnit;
|
|
6665
|
+
_displayValue: string;
|
|
6647
6666
|
control: AbstractControl | QdFormControl<any>;
|
|
6648
6667
|
private _optionsResolver;
|
|
6649
6668
|
private _subs;
|
|
@@ -9229,6 +9248,28 @@ interface QdPageSaveAction {
|
|
|
9229
9248
|
* * This flag is useful in scenarios where form validation is not needed or should be bypassed, but it ensures that only modified forms can be saved.
|
|
9230
9249
|
*/
|
|
9231
9250
|
hasValidation?: boolean;
|
|
9251
|
+
/**
|
|
9252
|
+
* @description Optional callback invoked after the framework advances the form baseline on a successful save.
|
|
9253
|
+
*
|
|
9254
|
+
* * Runs in the framework's navigation-bypass window, so router navigation from this hook does **not**
|
|
9255
|
+
* raise the unsaved-changes dialog.
|
|
9256
|
+
*
|
|
9257
|
+
* * For async handlers (returning `Observable<boolean>`), this hook is the **only** race-free place to
|
|
9258
|
+
* navigate. Side effects in `tap` run *before* the framework commits the baseline; navigation from
|
|
9259
|
+
* there would still see a dirty form and trigger the dialog.
|
|
9260
|
+
*
|
|
9261
|
+
* @example
|
|
9262
|
+
* ```ts
|
|
9263
|
+
* save: {
|
|
9264
|
+
* handler: () => api.update(form.value).pipe(
|
|
9265
|
+
* tap(result => notifications.success('Saved')),
|
|
9266
|
+
* map(() => true)
|
|
9267
|
+
* ),
|
|
9268
|
+
* onSuccess: () => router.navigateByUrl('/list')
|
|
9269
|
+
* }
|
|
9270
|
+
* ```
|
|
9271
|
+
*/
|
|
9272
|
+
onSuccess?: () => void;
|
|
9232
9273
|
}
|
|
9233
9274
|
/**
|
|
9234
9275
|
* @description Interface for the safe draft action.
|
|
@@ -9243,9 +9284,39 @@ interface QdPageSaveDraftAction {
|
|
|
9243
9284
|
i18n: string;
|
|
9244
9285
|
};
|
|
9245
9286
|
/**
|
|
9246
|
-
* @description
|
|
9287
|
+
* @description Triggered when the save draft action is executed.
|
|
9288
|
+
*
|
|
9289
|
+
* Success criteria:
|
|
9290
|
+
* - If the handler returns an `Observable<boolean>`, only the first emission counts:
|
|
9291
|
+
* - **true:** success — the framework advances the form baseline so the page is no longer dirty.
|
|
9292
|
+
* - **false:** failure/cancel — the form stays dirty.
|
|
9293
|
+
* - If the handler returns `void`, the action is treated as instant success and the baseline is committed immediately.
|
|
9294
|
+
*
|
|
9295
|
+
* Errors emitted by the Observable are not caught by the framework — handle them via `catchError` in the handler.
|
|
9296
|
+
*/
|
|
9297
|
+
handler: (formValues?: any) => void | Observable<boolean>;
|
|
9298
|
+
/**
|
|
9299
|
+
* @description Optional callback invoked after the framework advances the form baseline on a successful save draft.
|
|
9300
|
+
*
|
|
9301
|
+
* * Runs in the framework's navigation-bypass window, so router navigation from this hook does **not**
|
|
9302
|
+
* raise the unsaved-changes dialog.
|
|
9303
|
+
*
|
|
9304
|
+
* * For async handlers (returning `Observable<boolean>`), this hook is the **only** race-free place to
|
|
9305
|
+
* navigate. Side effects in `tap` run *before* the framework commits the baseline; navigation from
|
|
9306
|
+
* there would still see a dirty form and trigger the dialog.
|
|
9307
|
+
*
|
|
9308
|
+
* @example
|
|
9309
|
+
* ```ts
|
|
9310
|
+
* saveDraft: {
|
|
9311
|
+
* handler: () => api.saveDraft(form.value).pipe(
|
|
9312
|
+
* tap(result => notifications.success('Draft saved')),
|
|
9313
|
+
* map(() => true)
|
|
9314
|
+
* ),
|
|
9315
|
+
* onSuccess: () => router.navigateByUrl('/drafts')
|
|
9316
|
+
* }
|
|
9317
|
+
* ```
|
|
9247
9318
|
*/
|
|
9248
|
-
|
|
9319
|
+
onSuccess?: () => void;
|
|
9249
9320
|
}
|
|
9250
9321
|
/**
|
|
9251
9322
|
* @description Interface for the cancel action, including an optional confirmation message.
|
|
@@ -9288,9 +9359,39 @@ interface QdPageCreateSubmitAction {
|
|
|
9288
9359
|
i18n: string;
|
|
9289
9360
|
};
|
|
9290
9361
|
/**
|
|
9291
|
-
* @description
|
|
9362
|
+
* @description Triggered when the submit action is executed.
|
|
9363
|
+
*
|
|
9364
|
+
* Success criteria:
|
|
9365
|
+
* - If the handler returns an `Observable<boolean>`, only the first emission counts:
|
|
9366
|
+
* - **true:** success — the framework advances the form baseline so the page is no longer dirty.
|
|
9367
|
+
* - **false:** failure/cancel — the form stays dirty.
|
|
9368
|
+
* - If the handler returns `void`, the action is treated as instant success and the baseline is committed immediately.
|
|
9369
|
+
*
|
|
9370
|
+
* Errors emitted by the Observable are not caught by the framework — handle them via `catchError` in the handler.
|
|
9292
9371
|
*/
|
|
9293
|
-
handler: (formValues?: any) => void
|
|
9372
|
+
handler: (formValues?: any) => void | Observable<boolean>;
|
|
9373
|
+
/**
|
|
9374
|
+
* @description Optional callback invoked after the framework advances the form baseline on a successful submit.
|
|
9375
|
+
*
|
|
9376
|
+
* * Runs in the framework's navigation-bypass window, so router navigation from this hook does **not**
|
|
9377
|
+
* raise the unsaved-changes dialog.
|
|
9378
|
+
*
|
|
9379
|
+
* * For async handlers (returning `Observable<boolean>`), this hook is the **only** race-free place to
|
|
9380
|
+
* navigate. Side effects in `tap` run *before* the framework commits the baseline; navigation from
|
|
9381
|
+
* there would still see a dirty form and trigger the dialog.
|
|
9382
|
+
*
|
|
9383
|
+
* @example
|
|
9384
|
+
* ```ts
|
|
9385
|
+
* submit: {
|
|
9386
|
+
* handler: (formValues) => api.create(formValues).pipe(
|
|
9387
|
+
* tap(result => notifications.success('Created')),
|
|
9388
|
+
* map(() => true)
|
|
9389
|
+
* ),
|
|
9390
|
+
* onSuccess: () => router.navigateByUrl('/')
|
|
9391
|
+
* }
|
|
9392
|
+
* ```
|
|
9393
|
+
*/
|
|
9394
|
+
onSuccess?: () => void;
|
|
9294
9395
|
}
|
|
9295
9396
|
/**
|
|
9296
9397
|
* @description Interface for the submit action.
|
|
@@ -9305,9 +9406,17 @@ interface QdPageSubmitAction {
|
|
|
9305
9406
|
i18n: string;
|
|
9306
9407
|
};
|
|
9307
9408
|
/**
|
|
9308
|
-
* @description
|
|
9409
|
+
* @description Triggered when the submit action is executed.
|
|
9410
|
+
*
|
|
9411
|
+
* Success criteria:
|
|
9412
|
+
* - If the handler returns an `Observable<boolean>`, only the first emission counts:
|
|
9413
|
+
* - **true:** success — the framework advances the form baseline so the page is no longer dirty.
|
|
9414
|
+
* - **false:** failure/cancel — the form stays dirty.
|
|
9415
|
+
* - If the handler returns `void`, the action is treated as instant success and the baseline is committed immediately.
|
|
9416
|
+
*
|
|
9417
|
+
* Errors emitted by the Observable are not caught by the framework — handle them via `catchError` in the handler.
|
|
9309
9418
|
*/
|
|
9310
|
-
handler: (formValues?: any) => void
|
|
9419
|
+
handler: (formValues?: any) => void | Observable<boolean>;
|
|
9311
9420
|
/**
|
|
9312
9421
|
* @description By default, the visibility of the submit button depends on the page type and the operation mode.
|
|
9313
9422
|
* To completely hide the submit button, you can set this isHidden flag.
|
|
@@ -9315,6 +9424,28 @@ interface QdPageSubmitAction {
|
|
|
9315
9424
|
* @default false
|
|
9316
9425
|
*/
|
|
9317
9426
|
isHidden?: boolean;
|
|
9427
|
+
/**
|
|
9428
|
+
* @description Optional callback invoked after the framework advances the form baseline on a successful submit.
|
|
9429
|
+
*
|
|
9430
|
+
* * Runs in the framework's navigation-bypass window, so router navigation from this hook does **not**
|
|
9431
|
+
* raise the unsaved-changes dialog.
|
|
9432
|
+
*
|
|
9433
|
+
* * For async handlers (returning `Observable<boolean>`), this hook is the **only** race-free place to
|
|
9434
|
+
* navigate. Side effects in `tap` run *before* the framework commits the baseline; navigation from
|
|
9435
|
+
* there would still see a dirty form and trigger the dialog.
|
|
9436
|
+
*
|
|
9437
|
+
* @example
|
|
9438
|
+
* ```ts
|
|
9439
|
+
* submit: {
|
|
9440
|
+
* handler: (formValues) => api.update(formValues).pipe(
|
|
9441
|
+
* tap(result => notifications.success('Updated')),
|
|
9442
|
+
* map(() => true)
|
|
9443
|
+
* ),
|
|
9444
|
+
* onSuccess: () => router.navigateByUrl('/list')
|
|
9445
|
+
* }
|
|
9446
|
+
* ```
|
|
9447
|
+
*/
|
|
9448
|
+
onSuccess?: () => void;
|
|
9318
9449
|
}
|
|
9319
9450
|
/**
|
|
9320
9451
|
* @description Interface for the edit action.
|
|
@@ -10125,17 +10256,6 @@ declare class QdPageDialogWithBreadcrumbsComponent {
|
|
|
10125
10256
|
static ɵcmp: i0.ɵɵComponentDeclaration<QdPageDialogWithBreadcrumbsComponent, "ng-component", never, {}, {}, never, never, false, never>;
|
|
10126
10257
|
}
|
|
10127
10258
|
|
|
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
10259
|
declare class QdSpinnerComponent {
|
|
10140
10260
|
static ɵfac: i0.ɵɵFactoryDeclaration<QdSpinnerComponent, never>;
|
|
10141
10261
|
static ɵcmp: i0.ɵɵComponentDeclaration<QdSpinnerComponent, "qd-spinner", never, {}, {}, never, never, false, never>;
|
|
@@ -10149,7 +10269,7 @@ declare class QdSpinnerModule {
|
|
|
10149
10269
|
|
|
10150
10270
|
declare class QdDialogModule {
|
|
10151
10271
|
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
|
|
10272
|
+
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
10273
|
static ɵinj: i0.ɵɵInjectorDeclaration<QdDialogModule>;
|
|
10154
10274
|
}
|
|
10155
10275
|
|
|
@@ -12867,7 +12987,15 @@ declare class QdSectionComponent implements OnInit, AfterViewInit, OnChanges, On
|
|
|
12867
12987
|
* handler: () => handleCancel()
|
|
12868
12988
|
* },
|
|
12869
12989
|
* save: {
|
|
12870
|
-
* handler: (
|
|
12990
|
+
* handler: () => saveApi.save(form.value).pipe(
|
|
12991
|
+
* tap(result => notifications.success('Saved')),
|
|
12992
|
+
* map(() => true),
|
|
12993
|
+
* catchError(err => {
|
|
12994
|
+
* notifications.showError(err);
|
|
12995
|
+
* return of(false);
|
|
12996
|
+
* })
|
|
12997
|
+
* ),
|
|
12998
|
+
* onSuccess: () => router.navigate(['/overview'])
|
|
12871
12999
|
* }
|
|
12872
13000
|
* }
|
|
12873
13001
|
* };
|
|
@@ -12985,7 +13113,8 @@ declare class QdSectionComponent implements OnInit, AfterViewInit, OnChanges, On
|
|
|
12985
13113
|
* pageType: 'create',
|
|
12986
13114
|
* pageTypeConfig: {
|
|
12987
13115
|
* submit: {
|
|
12988
|
-
* handler: (formValues) =>
|
|
13116
|
+
* handler: (formValues) => createApi.create(formValues).pipe(map(() => true)),
|
|
13117
|
+
* onSuccess: () => router.navigate(['/items'])
|
|
12989
13118
|
* }
|
|
12990
13119
|
* }
|
|
12991
13120
|
* };
|
|
@@ -13078,7 +13207,14 @@ declare class QdSectionComponent implements OnInit, AfterViewInit, OnChanges, On
|
|
|
13078
13207
|
* handler: () => handleCancel()
|
|
13079
13208
|
* },
|
|
13080
13209
|
* save: {
|
|
13081
|
-
* handler: (formValues) =>
|
|
13210
|
+
* handler: (formValues) => saveApi.save(formValues).pipe(
|
|
13211
|
+
* map(() => true),
|
|
13212
|
+
* catchError(err => {
|
|
13213
|
+
* notifications.showError(err);
|
|
13214
|
+
* return of(false);
|
|
13215
|
+
* })
|
|
13216
|
+
* ),
|
|
13217
|
+
* onSuccess: () => router.navigate(['/overview'])
|
|
13082
13218
|
* }
|
|
13083
13219
|
* }
|
|
13084
13220
|
* };
|
|
@@ -13147,6 +13283,7 @@ declare class QdPageComponent<T extends object> implements OnInit, OnChanges, Af
|
|
|
13147
13283
|
private bottomOffset$;
|
|
13148
13284
|
private readonly dialogRef;
|
|
13149
13285
|
private readonly navigationInterceptor;
|
|
13286
|
+
private readonly confirmationDialogService;
|
|
13150
13287
|
/**
|
|
13151
13288
|
* This property defines the configuration for the QdPage component, including the page type,
|
|
13152
13289
|
* title, and specific configurations for each type of page.
|
|
@@ -13189,7 +13326,7 @@ declare class QdPageComponent<T extends object> implements OnInit, OnChanges, Af
|
|
|
13189
13326
|
private handleCancelActionWithFormChanges;
|
|
13190
13327
|
private initSaveDraftFooterAction;
|
|
13191
13328
|
private updateInspectPageOperationMode;
|
|
13192
|
-
private
|
|
13329
|
+
private generateCommitActionHandler;
|
|
13193
13330
|
private setupCancelConfirmation;
|
|
13194
13331
|
private initSubmitValidation;
|
|
13195
13332
|
private setupPageDialogCloseContract;
|
|
@@ -13316,8 +13453,10 @@ declare class QdPageStoreService<T extends object> {
|
|
|
13316
13453
|
declare class QdPageObjectHeaderComponent<T extends object> implements OnInit, OnChanges, OnDestroy {
|
|
13317
13454
|
private pageObjectResolver;
|
|
13318
13455
|
private formGroupManagerService;
|
|
13456
|
+
private navigationInterceptor;
|
|
13319
13457
|
private dialogComponent;
|
|
13320
13458
|
private dialog;
|
|
13459
|
+
private confirmationDialogService;
|
|
13321
13460
|
private contextService;
|
|
13322
13461
|
private resolverTriggerService;
|
|
13323
13462
|
private pageStoreService;
|
|
@@ -13507,17 +13646,6 @@ declare class QdContextSelectDialogComponent implements OnInit {
|
|
|
13507
13646
|
static ɵcmp: i0.ɵɵComponentDeclaration<QdContextSelectDialogComponent, "qd-context-select-dialog", never, {}, {}, never, never, false, never>;
|
|
13508
13647
|
}
|
|
13509
13648
|
|
|
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
13649
|
/**
|
|
13522
13650
|
* **Context**
|
|
13523
13651
|
*
|
|
@@ -14239,6 +14367,7 @@ declare class QdTableComponent<T extends string> implements OnInit, OnChanges, O
|
|
|
14239
14367
|
private readonly fillingWidthService;
|
|
14240
14368
|
private readonly breakpointService;
|
|
14241
14369
|
private readonly resolverService;
|
|
14370
|
+
private readonly confirmationDialogService;
|
|
14242
14371
|
/**
|
|
14243
14372
|
* Configuration of the table. The generic type specifies the column definition. <br />
|
|
14244
14373
|
*
|
|
@@ -15188,7 +15317,7 @@ declare class QdTableModule {
|
|
|
15188
15317
|
|
|
15189
15318
|
declare class QdPageModule {
|
|
15190
15319
|
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
|
|
15320
|
+
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
15321
|
static ɵinj: i0.ɵɵInjectorDeclaration<QdPageModule>;
|
|
15193
15322
|
}
|
|
15194
15323
|
|
|
@@ -17014,6 +17143,25 @@ interface QdQuickEditConfig<T extends string> {
|
|
|
17014
17143
|
* will be rendered either in quick edit itself when being used standalone. For usage in section, configure section with add button.
|
|
17015
17144
|
*/
|
|
17016
17145
|
canAdd?: boolean;
|
|
17146
|
+
/**
|
|
17147
|
+
* @description An optional confirmation message displayed in a dialog before a row is removed via the built-in remove button.
|
|
17148
|
+
*
|
|
17149
|
+
* When provided, a confirmation dialog is shown to the user. The row is only removed if the user confirms.
|
|
17150
|
+
* If not provided, the row is removed directly.
|
|
17151
|
+
* Only applies when `canAdd` is true and the remove button is visible.
|
|
17152
|
+
*
|
|
17153
|
+
* @example
|
|
17154
|
+
* ```ts
|
|
17155
|
+
* {
|
|
17156
|
+
* columns: [...],
|
|
17157
|
+
* canAdd: true,
|
|
17158
|
+
* removeConfirmationMessage: { i18n: 'i18n.app.remove.entry.confirmation' }
|
|
17159
|
+
* }
|
|
17160
|
+
* ```
|
|
17161
|
+
*/
|
|
17162
|
+
removeConfirmationMessage?: {
|
|
17163
|
+
i18n: string;
|
|
17164
|
+
};
|
|
17017
17165
|
/**
|
|
17018
17166
|
* Allows to change the label of the create button.
|
|
17019
17167
|
*/
|
|
@@ -17254,6 +17402,7 @@ declare class QdQuickEditComponent<T extends string> implements OnInit, OnChange
|
|
|
17254
17402
|
private readonly eventBrokerService;
|
|
17255
17403
|
private changeDetectorRef;
|
|
17256
17404
|
private controlContainer;
|
|
17405
|
+
private confirmationDialogService;
|
|
17257
17406
|
/**
|
|
17258
17407
|
* Configuration of the QuickEdit. The generic type specifies the column definition. <br />
|
|
17259
17408
|
*
|
|
@@ -17328,6 +17477,7 @@ declare class QdQuickEditComponent<T extends string> implements OnInit, OnChange
|
|
|
17328
17477
|
getComponentInputs(column: QdQuickEditColumn<T>, row: QdQuickEditRow<T>): any;
|
|
17329
17478
|
createRow(): void;
|
|
17330
17479
|
removeRow(index: number): void;
|
|
17480
|
+
private executeRemoveRow;
|
|
17331
17481
|
hasTooltip(tooltip: QdTooltip): boolean;
|
|
17332
17482
|
private initRows;
|
|
17333
17483
|
private initCreating;
|
|
@@ -17365,4 +17515,4 @@ declare class QdUiModule {
|
|
|
17365
17515
|
declare const APP_ENVIRONMENT: InjectionToken<QdAppEnvironment>;
|
|
17366
17516
|
|
|
17367
17517
|
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 };
|
|
17518
|
+
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
package/src/assets/i18n/de.json
CHANGED
|
@@ -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",
|
package/src/assets/i18n/en.json
CHANGED
|
@@ -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",
|
package/src/assets/i18n/fr.json
CHANGED
|
@@ -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",
|
package/src/assets/i18n/it.json
CHANGED
|
@@ -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",
|