@quadrel-enterprise-ui/framework 20.5.0 → 20.6.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
@@ -682,9 +682,14 @@ interface QdCollectedFile {
682
682
  */
683
683
  downloadUrl: string;
684
684
  /**
685
- * @description Upload Timestamp
685
+ * @description Timestamp of when the file was uploaded.
686
+ * When provided, the file collector displays the formatted date and time
687
+ * next to the file name using the current application locale.
686
688
  *
687
- * @example new Date('1996-04-22 20:04')
689
+ * The value should be supplied by the backend (e.g. `fileStoredAt` from the API response).
690
+ * If omitted, no timestamp is shown.
691
+ *
692
+ * @example new Date('2025-03-20T14:30:00Z')
688
693
  */
689
694
  uploadTimestamp?: Date;
690
695
  }
@@ -740,7 +745,7 @@ declare class QdMockFileCollectorItemComponent {
740
745
  progress: number;
741
746
  newlyUploaded: boolean;
742
747
  collectedFile: QdCollectedFile;
743
- error: QdUploadError;
748
+ error: QdUploadError | undefined;
744
749
  readonly: boolean;
745
750
  viewonly: boolean;
746
751
  downloadFilesWithHttpClient: boolean;
@@ -751,47 +756,53 @@ declare class QdMockFileCollectorItemComponent {
751
756
  }
752
757
 
753
758
  declare class QdMockFileCollectorItemNameComponent {
754
- name: QdCollectedFile['name'];
759
+ name: string;
760
+ testId: string;
755
761
  static ɵfac: i0.ɵɵFactoryDeclaration<QdMockFileCollectorItemNameComponent, never>;
756
- static ɵcmp: i0.ɵɵComponentDeclaration<QdMockFileCollectorItemNameComponent, "qd-file-collector-item-name", never, { "name": { "alias": "name"; "required": false; }; }, {}, never, never, false, never>;
762
+ static ɵcmp: i0.ɵɵComponentDeclaration<QdMockFileCollectorItemNameComponent, "qd-file-collector-item-name", never, { "name": { "alias": "name"; "required": false; }; "testId": { "alias": "data-test-id"; "required": false; }; }, {}, never, never, false, never>;
757
763
  }
758
764
 
759
765
  declare class QdMockFileCollectorItemSizeComponent {
760
- size: QdCollectedFile['size'];
766
+ size: number;
767
+ testId: string;
761
768
  static ɵfac: i0.ɵɵFactoryDeclaration<QdMockFileCollectorItemSizeComponent, never>;
762
- static ɵcmp: i0.ɵɵComponentDeclaration<QdMockFileCollectorItemSizeComponent, "qd-file-collector-item-size", never, { "size": { "alias": "size"; "required": false; }; }, {}, never, never, false, never>;
769
+ static ɵcmp: i0.ɵɵComponentDeclaration<QdMockFileCollectorItemSizeComponent, "qd-file-collector-item-size", never, { "size": { "alias": "size"; "required": false; }; "testId": { "alias": "data-test-id"; "required": false; }; }, {}, never, never, false, never>;
763
770
  }
764
771
 
765
772
  declare class QdMockFileCollectorItemToolsComponent {
766
773
  progress: number;
767
774
  collectedFile: QdCollectedFile;
768
- error: QdUploadError;
775
+ error: QdUploadError | undefined;
769
776
  readonly: boolean;
770
777
  viewonly: boolean;
771
778
  downloadFilesWithHttpClient: boolean;
779
+ testId: string;
772
780
  static ɵfac: i0.ɵɵFactoryDeclaration<QdMockFileCollectorItemToolsComponent, never>;
773
- static ɵcmp: i0.ɵɵComponentDeclaration<QdMockFileCollectorItemToolsComponent, "qd-file-collector-item-tools", never, { "progress": { "alias": "progress"; "required": false; }; "collectedFile": { "alias": "collectedFile"; "required": false; }; "error": { "alias": "error"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "viewonly": { "alias": "viewonly"; "required": false; }; "downloadFilesWithHttpClient": { "alias": "downloadFilesWithHttpClient"; "required": false; }; }, {}, never, never, false, never>;
781
+ static ɵcmp: i0.ɵɵComponentDeclaration<QdMockFileCollectorItemToolsComponent, "qd-file-collector-item-tools", never, { "progress": { "alias": "progress"; "required": false; }; "collectedFile": { "alias": "collectedFile"; "required": false; }; "error": { "alias": "error"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "viewonly": { "alias": "viewonly"; "required": false; }; "downloadFilesWithHttpClient": { "alias": "downloadFilesWithHttpClient"; "required": false; }; "testId": { "alias": "data-test-id"; "required": false; }; }, {}, never, never, false, never>;
774
782
  }
775
783
 
776
784
  declare class QdMockFileCollectorDialogItemComponent {
777
785
  progress: number;
778
786
  collectedFile: QdCollectedFile;
779
- error: QdUploadError;
787
+ error: QdUploadError | undefined;
788
+ testId: string;
780
789
  static ɵfac: i0.ɵɵFactoryDeclaration<QdMockFileCollectorDialogItemComponent, never>;
781
- static ɵcmp: i0.ɵɵComponentDeclaration<QdMockFileCollectorDialogItemComponent, "qd-file-collector-dialog-item", never, { "progress": { "alias": "progress"; "required": false; }; "collectedFile": { "alias": "collectedFile"; "required": false; }; "error": { "alias": "error"; "required": false; }; }, {}, never, never, false, never>;
790
+ static ɵcmp: i0.ɵɵComponentDeclaration<QdMockFileCollectorDialogItemComponent, "qd-file-collector-dialog-item", never, { "progress": { "alias": "progress"; "required": false; }; "collectedFile": { "alias": "collectedFile"; "required": false; }; "error": { "alias": "error"; "required": false; }; "testId": { "alias": "data-test-id"; "required": false; }; }, {}, never, never, false, never>;
782
791
  }
783
792
 
784
793
  declare class QdMockFileCollectorDialogItemErrorComponent {
785
794
  error: QdUploadError;
795
+ testId: string;
786
796
  static ɵfac: i0.ɵɵFactoryDeclaration<QdMockFileCollectorDialogItemErrorComponent, never>;
787
- static ɵcmp: i0.ɵɵComponentDeclaration<QdMockFileCollectorDialogItemErrorComponent, "qd-file-collector-dialog-item-error", never, { "error": { "alias": "error"; "required": false; }; }, {}, never, never, false, never>;
797
+ static ɵcmp: i0.ɵɵComponentDeclaration<QdMockFileCollectorDialogItemErrorComponent, "qd-file-collector-dialog-item-error", never, { "error": { "alias": "error"; "required": false; }; "testId": { "alias": "data-test-id"; "required": false; }; }, {}, never, never, false, never>;
788
798
  }
789
799
 
790
800
  declare class QdMockFileCollectorDialogItemProgressComponent {
791
- progress: any;
792
- error: any;
801
+ progress: number;
802
+ error: QdUploadError | undefined;
803
+ testId: string;
793
804
  static ɵfac: i0.ɵɵFactoryDeclaration<QdMockFileCollectorDialogItemProgressComponent, never>;
794
- static ɵcmp: i0.ɵɵComponentDeclaration<QdMockFileCollectorDialogItemProgressComponent, "qd-file-collector-dialog-item-progress", never, { "progress": { "alias": "progress"; "required": false; }; "error": { "alias": "error"; "required": false; }; }, {}, never, never, false, never>;
805
+ static ɵcmp: i0.ɵɵComponentDeclaration<QdMockFileCollectorDialogItemProgressComponent, "qd-file-collector-dialog-item-progress", never, { "progress": { "alias": "progress"; "required": false; }; "error": { "alias": "error"; "required": false; }; "testId": { "alias": "data-test-id"; "required": false; }; }, {}, never, never, false, never>;
795
806
  }
796
807
 
797
808
  declare class QdMockFileCollectorModule {
@@ -1524,6 +1535,19 @@ interface QdTablePrimaryAction<T extends string> {
1524
1535
  * @description Refresh configuration for the table after the action completes.
1525
1536
  */
1526
1537
  refresh?: QdTableRefreshConfig;
1538
+ /**
1539
+ * @description Highlights the visited row when the user returns to the table.
1540
+ *
1541
+ * When enabled, the table remembers which row triggered this action.
1542
+ * Upon revisiting the table, that row is briefly highlighted to help the user regain orientation.
1543
+ *
1544
+ * **Requirements:**
1545
+ * - A `uid` must be set on the table configuration to persist the state across navigation.
1546
+ * - Set `trackRowBy` on the table config or provide a `uid` on each row for reliable identification.
1547
+ *
1548
+ * @default false
1549
+ */
1550
+ highlightOnRevisit?: boolean;
1527
1551
  }
1528
1552
  /**
1529
1553
  * @description Defines a secondary action that is shown in the menu. Can be disabled.
@@ -1553,6 +1577,19 @@ interface QdTableSecondaryAction<T extends string> {
1553
1577
  * @description Refresh configuration for the table after the action completes.
1554
1578
  */
1555
1579
  refresh?: QdTableRefreshConfig;
1580
+ /**
1581
+ * @description Highlights the visited row when the user returns to the table.
1582
+ *
1583
+ * When enabled, the table remembers which row triggered this action.
1584
+ * Upon revisiting the table, that row is briefly highlighted to help the user regain orientation.
1585
+ *
1586
+ * **Requirements:**
1587
+ * - A `uid` must be set on the table configuration to persist the state across navigation.
1588
+ * - Set `trackRowBy` on the table config or provide a `uid` on each row for reliable identification.
1589
+ *
1590
+ * @default false
1591
+ */
1592
+ highlightOnRevisit?: boolean;
1556
1593
  /**
1557
1594
  * @description Controls in which operation mode this action is shown. May be set by the Quadrel Framework ('edit' or 'view').
1558
1595
  *
@@ -1603,8 +1640,8 @@ interface QdTableConfigSelection<T extends string> {
1603
1640
  */
1604
1641
  type?: QdTableConfigSelectionType;
1605
1642
  /**
1606
- * @description Configure the rows that are initially selected. You can indicate a row by its uid or its index.
1607
- * The uids can be defined in the table data row objects.
1643
+ * @description Configure the rows that are initially selected.
1644
+ * Rows can be identified by the `trackRowBy` function result, `uid`, or index.
1608
1645
  *
1609
1646
  * * @default: []
1610
1647
  */
@@ -3981,6 +4018,17 @@ interface QdTableConfig<T extends string> {
3981
4018
  * additional events to ensure that the displayed data remains up-to-date.
3982
4019
  */
3983
4020
  refreshingEvents?: QdTableOptionalRefreshingEventTypes[];
4021
+ /**
4022
+ * @description Specifies a function to derive the row identity for features like selection and highlightOnRevisit.
4023
+ *
4024
+ * When set, the function is called with the row data to produce a unique identifier.
4025
+ * The returned value **must be unique** across all rows in the table.
4026
+ *
4027
+ * Fallback chain: `trackRowBy(row)` → `row.uid` → `rowIndex`
4028
+ *
4029
+ * @example trackRowBy: row => row.reference
4030
+ */
4031
+ trackRowBy?: (row: QdTableDataRow<T>) => string | number;
3984
4032
  /**
3985
4033
  * @description Sets a unique identifier for the table. Used as key to hold in NgRx store.
3986
4034
  *
@@ -10157,86 +10205,151 @@ interface QdFileCollectorConfig {
10157
10205
  }
10158
10206
 
10159
10207
  /**
10160
- * **QdFileCollectorComponent** is a flexible component for managing files within an application.
10161
- * It supports uploading, downloading, and displaying files, offering various options for customization and configuration.
10208
+ * **QdFileCollectorComponent** lets users view, upload, download, and remove files.
10162
10209
  *
10163
10210
  * #### **Features**
10164
10211
  *
10165
- * - **Upload**: Allows users to add new files with restrictions on file type and size.
10166
- * - **Download**: Enables downloads directly via URL or, if needed, through Angular’s `HttpClient`, for example, to support authorization.
10167
- * - **Customizable Error Handling**: Validates file size, type, and name pattern, with customizable error messages for user guidance.
10168
- * - **Read-only Mode**: Disables interactions in read-only mode, allowing only viewing or downloading of files.
10169
- * - **Standalone Enabled**: Detects if used within or outside a QLS section structure and, if outside, enables file uploads in standalone mode.
10212
+ * - **Upload**: select files, validate them, and upload with progress tracking via a custom file manager
10213
+ * - **Download**: directly via URL or through `HttpClient` (e.g. for authorization)
10214
+ * - **Delete**: with confirmation dialog
10215
+ * - **Upload Timestamp**: shows the upload date next to the file name when `uploadTimestamp` is set
10216
+ * - **Validation**: restricts file type, size, and name pattern with customizable error messages
10217
+ * - **Readonly / Viewonly**: disables upload and delete, allows only viewing and downloading
10218
+ * - **Standalone / Section**: works independently with its own add button, or inside a `QdSection` via the toolbar action
10170
10219
  *
10171
- * #### **Interactions**
10172
- *
10173
- * File interactions are managed through several key functions:
10174
- *
10175
- * - **upload**: Adds a file to the files list if validation is successful.
10176
- * - **delete**: Opens a confirmation dialog that, if confirmed, removes the file from the list.
10177
- * - **readonly/viewonly**: In read-only or view-only mode, upload and delete functions are disabled, limiting user actions.
10220
+ * #### **Quick start**
10178
10221
  *
10179
- * #### **Standalone Mode**
10222
+ * **1. Add the collector to the template**
10180
10223
  *
10181
- * Following Quadrel’s design principles, QdFileCollector includes a standalone mode, allowing it to work independently.
10182
- * It automatically detects when used outside a QLS section structure and, in standalone mode, displays an "Add New" button to support file uploads.
10183
- *
10184
- * #### **File Restrictions**
10185
- *
10186
- * - **allowedFileTypes** and **allowedMimeTypes** should not be used together; using both will trigger an error log.
10187
- * - **maxFileSizeInBytes** sets a maximum file size allowed for uploads.
10188
- * - **allowedFileNamePattern** defines a regex pattern for file names; files that don’t match the pattern are rejected.
10224
+ * ```html
10225
+ * <qd-file-collector [config]="myFileCollectorConfig"></qd-file-collector>
10226
+ * ```
10189
10227
  *
10190
- * #### **Error Handling**
10228
+ * **2. Define the config in your component**
10191
10229
  *
10192
- * Upload errors can occur in the following cases:
10193
- * - **Invalid MIME Type**: When the file type is not in `allowedMimeTypes`.
10194
- * - **Invalid File Size**: When the file size exceeds `maxFileSizeInBytes`.
10195
- * - **Invalid File Name Pattern**: When the file name does not match `allowedFileNamePattern`.
10230
+ * ```typescript
10231
+ * @Component({
10232
+ * template: `<qd-file-collector [config]="myFileCollectorConfig"></qd-file-collector>`
10233
+ * })
10234
+ * export class MyComponent {
10235
+ * myFiles: QdCollectedFile[] = [
10236
+ * {
10237
+ * name: 'report.pdf',
10238
+ * size: 9432,
10239
+ * type: 'application/pdf',
10240
+ * downloadUrl: '/api/files/report.pdf',
10241
+ * uploadTimestamp: new Date()
10242
+ * }
10243
+ * ];
10196
10244
  *
10197
- * Error messages can be customized:
10198
- * - **invalidMimeTypeErrorMessageI18n**: Custom message for unsupported MIME types.
10199
- * - **invalidFileNameErrorMessageI18n**: Custom message for unsupported file names.
10245
+ * myFileCollectorConfig: QdFileCollectorConfig = {
10246
+ * files: this.myFiles
10247
+ * };
10248
+ * }
10249
+ * ```
10200
10250
  *
10201
- * #### **File Manager**
10251
+ * This is enough to show already existing files.
10202
10252
  *
10203
- * QdFileManager is an interface that provides methods for uploading and deleting files.
10204
- * To use it with QdFileCollectorComponent, implement this interface in a custom service and provide it via the `QD_FILE_MANAGER_TOKEN` token.
10205
- * This service enables you to create custom file-handling logic.
10253
+ * **3. Connect a file manager**
10206
10254
  *
10207
- * #### **Usage**
10255
+ * To enable upload and delete, provide a `QdFileManager` via `QD_FILE_MANAGER_TOKEN`.
10208
10256
  *
10209
10257
  * ```typescript
10210
10258
  * @Injectable()
10211
10259
  * export class MyFileManager implements QdFileManager {
10260
+ * private http = inject(HttpClient);
10261
+ *
10212
10262
  * upload(file: File): Observable<QdUploadProgress> {
10213
- * // custom implementation here
10263
+ * // Emit progress values from 0 to 100.
10264
+ * // When done, return the final QdCollectedFile from your backend response.
10265
+ * return this.http.post('/api/files', file).pipe(
10266
+ * map(response => {
10267
+ *
10268
+ * const myCollectedFile: QdCollectedFile = {
10269
+ * name: response.fileName,
10270
+ * size: response.fileSize,
10271
+ * type: response.mimeType,
10272
+ * downloadUrl: response.downloadUrl,
10273
+ * uploadTimestamp: new Date(response.storedAt)
10274
+ * };
10275
+ *
10276
+ * return { progress: 100, collectedFile: myCollectedFile };
10277
+ * })
10278
+ * );
10214
10279
  * }
10215
10280
  *
10216
10281
  * delete(collectedFile: QdCollectedFile): Observable<boolean> {
10217
- * // custom implementation here
10282
+ * return this.http.delete('/api/files/' + collectedFile.name).pipe(map(() => true));
10218
10283
  * }
10219
10284
  * }
10285
+ * ```
10286
+ *
10287
+ * Register the file manager in your component:
10220
10288
  *
10289
+ * ```typescript
10221
10290
  * @Component({
10222
- * selector: 'my-file-collector',
10223
- * providers: [
10224
- * {
10225
- * provide: QD_FILE_MANAGER_TOKEN,
10226
- * useClass: MyFileManager
10227
- * }
10228
- * ]
10291
+ * template: `<qd-file-collector [config]="myFileCollectorConfig"></qd-file-collector>`,
10292
+ * // Add the file manager here to connect the collector to your backend.
10293
+ * providers: [{ provide: QD_FILE_MANAGER_TOKEN, useClass: MyFileManager }]
10229
10294
  * })
10230
- * class MyFileCollectorComponent {
10231
- * fileCollectorConfig: QdFileCollectorConfig = {
10232
- * // configuration options here
10233
- * };
10295
+ * export class MyComponent {
10296
+ * // ...
10234
10297
  * }
10235
10298
  * ```
10236
10299
  *
10237
- * ```html
10238
- * <qd-file-collector [config]="fileCollectorConfig"></qd-file-collector>
10239
- * ```
10300
+ * #### **How the file manager works**
10301
+ *
10302
+ * The file manager connects the collector to your backend.
10303
+ *
10304
+ * It must support these two actions:
10305
+ *
10306
+ * - `upload(file)`: uploads a file and emits upload progress
10307
+ * - `delete(collectedFile)`: deletes a file and emits `true` if the deletion was successful
10308
+ *
10309
+ * For uploads:
10310
+ *
10311
+ * - emit `{ progress }` values from `0` to `100`
10312
+ * - when the upload is complete, return the final `collectedFile`
10313
+ *
10314
+ * > The example above uses a simple POST and returns one final result with `progress: 100`.
10315
+ * If you need a progress bar, use `HttpClient` with `reportProgress: true` to emit intermediate progress values.
10316
+ *
10317
+ * #### **Validation and file type rules**
10318
+ *
10319
+ * A file is rejected if:
10320
+ *
10321
+ * - its type is not allowed
10322
+ * - it is too large
10323
+ * - its name does not match the expected pattern
10324
+ *
10325
+ * You can provide custom error messages in the config.
10326
+ *
10327
+ * For file type validation, use one of these approaches:
10328
+ *
10329
+ * - `allowedFileTypes`
10330
+ * - `allowedMimeTypes` together with `allowedFileNamePattern`
10331
+ *
10332
+ * > Do not mix both approaches unless they describe the same rules.
10333
+ * > If the settings do not match, the component logs an error and does not use the config.
10334
+ *
10335
+ * #### **Upload behavior**
10336
+ *
10337
+ * Upload is triggered differently depending on where the component is used:
10338
+ *
10339
+ * - **outside a `QdSection`**: the component shows its own add button
10340
+ * - **inside a `QdSection`**: the component listens to the section action and opens the file picker when `addNew` is triggered
10341
+ *
10342
+ * In `readonly` or `viewonly` mode, upload and delete are disabled.
10343
+ *
10344
+ * If the component is connected to operation mode changes through the event broker,
10345
+ * `viewonly` can also change dynamically.
10346
+ *
10347
+ * #### **Download**
10348
+ *
10349
+ * Files can be downloaded directly from their `downloadUrl`.
10350
+ *
10351
+ * If your application needs authorization or custom download logic,
10352
+ * handle the download through your backend or file manager.
10240
10353
  */
10241
10354
  declare class QdFileCollectorComponent implements OnInit, OnChanges, OnDestroy {
10242
10355
  private readonly sectionActionService;
@@ -10262,7 +10375,7 @@ declare class QdFileCollectorComponent implements OnInit, OnChanges, OnDestroy {
10262
10375
  ngOnInit(): void;
10263
10376
  ngOnChanges(changes: SimpleChanges): void;
10264
10377
  ngOnDestroy(): void;
10265
- handleFiles(event: any): void;
10378
+ handleFiles(event: Event): void;
10266
10379
  clickFileInput(): void;
10267
10380
  private initializeConfig;
10268
10381
  private validateConfig;
@@ -10294,8 +10407,8 @@ declare const QD_FILE_MANAGER_TOKEN: InjectionToken<string>;
10294
10407
  declare class QdFileCollectorAllowedFilesDescriptionComponent {
10295
10408
  private readonly fileCollectorService;
10296
10409
  get allowedFileTypes(): QdFileType[];
10297
- get maxFileSizeInBytes(): number;
10298
- get allowedFilesDescriptionI18n(): string;
10410
+ get maxFileSizeInBytes(): number | undefined;
10411
+ get allowedFilesDescriptionI18n(): string | undefined;
10299
10412
  private get config();
10300
10413
  static ɵfac: i0.ɵɵFactoryDeclaration<QdFileCollectorAllowedFilesDescriptionComponent, never>;
10301
10414
  static ɵcmp: i0.ɵɵComponentDeclaration<QdFileCollectorAllowedFilesDescriptionComponent, "qd-file-collector-allowed-files-description", never, {}, {}, never, never, false, never>;
@@ -10305,7 +10418,7 @@ declare class QdFileCollectorItemComponent {
10305
10418
  progress: number;
10306
10419
  newlyUploaded: boolean;
10307
10420
  collectedFile: QdCollectedFile;
10308
- error: QdUploadError;
10421
+ error: QdUploadError | undefined;
10309
10422
  readonly: boolean;
10310
10423
  viewonly: boolean;
10311
10424
  downloadFilesWithHttpClient: boolean;
@@ -10338,14 +10451,13 @@ declare class QdFileCollectorItemToolsComponent {
10338
10451
  private httpClient;
10339
10452
  progress: number;
10340
10453
  collectedFile: QdCollectedFile;
10341
- error: QdUploadError;
10454
+ error: QdUploadError | undefined;
10342
10455
  readonly: boolean;
10343
10456
  viewonly: boolean;
10344
10457
  downloadFilesWithHttpClient: boolean;
10345
10458
  testId: string;
10346
10459
  get dataTestId(): string;
10347
- canDownload(): boolean;
10348
- downloadFile(event: any): void;
10460
+ downloadFile(event: Event): void;
10349
10461
  deleteFile(): void;
10350
10462
  static ɵfac: i0.ɵɵFactoryDeclaration<QdFileCollectorItemToolsComponent, never>;
10351
10463
  static ɵcmp: i0.ɵɵComponentDeclaration<QdFileCollectorItemToolsComponent, "qd-file-collector-item-tools", never, { "progress": { "alias": "progress"; "required": false; }; "collectedFile": { "alias": "collectedFile"; "required": false; }; "error": { "alias": "error"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "viewonly": { "alias": "viewonly"; "required": false; }; "downloadFilesWithHttpClient": { "alias": "downloadFilesWithHttpClient"; "required": false; }; "testId": { "alias": "data-test-id"; "required": true; }; }, {}, never, never, false, never>;
@@ -10360,7 +10472,7 @@ declare class QdFileCollectorDialogComponent {
10360
10472
  uploadFiles(files: File[]): void;
10361
10473
  close(): void;
10362
10474
  isCloseButtonDisabled(): boolean;
10363
- private _isFileUploadCompleted;
10475
+ private isFileUploadCompleted;
10364
10476
  static ɵfac: i0.ɵɵFactoryDeclaration<QdFileCollectorDialogComponent, never>;
10365
10477
  static ɵcmp: i0.ɵɵComponentDeclaration<QdFileCollectorDialogComponent, "qd-file-collector-dialog", never, {}, {}, never, never, false, never>;
10366
10478
  }
@@ -10368,17 +10480,20 @@ declare class QdFileCollectorDialogComponent {
10368
10480
  declare class QdFileCollectorDialogItemComponent {
10369
10481
  progress: number;
10370
10482
  collectedFile: QdCollectedFile;
10371
- error: QdUploadError;
10483
+ error: QdUploadError | undefined;
10484
+ testId: string;
10485
+ get hostTestId(): string;
10372
10486
  get isSuccessful(): boolean;
10373
10487
  get hasError(): boolean;
10374
- canUpload(): boolean;
10375
10488
  static ɵfac: i0.ɵɵFactoryDeclaration<QdFileCollectorDialogItemComponent, never>;
10376
- static ɵcmp: i0.ɵɵComponentDeclaration<QdFileCollectorDialogItemComponent, "qd-file-collector-dialog-item", never, { "progress": { "alias": "progress"; "required": false; }; "collectedFile": { "alias": "collectedFile"; "required": false; }; "error": { "alias": "error"; "required": false; }; }, {}, never, never, false, never>;
10489
+ static ɵcmp: i0.ɵɵComponentDeclaration<QdFileCollectorDialogItemComponent, "qd-file-collector-dialog-item", never, { "progress": { "alias": "progress"; "required": false; }; "collectedFile": { "alias": "collectedFile"; "required": false; }; "error": { "alias": "error"; "required": false; }; "testId": { "alias": "data-test-id"; "required": true; }; }, {}, never, never, false, never>;
10377
10490
  }
10378
10491
 
10379
10492
  declare class QdFileCollectorDialogItemProgressComponent implements OnInit, OnDestroy, OnChanges {
10380
10493
  progress: number;
10381
- error: QdUploadError;
10494
+ error: QdUploadError | undefined;
10495
+ testId: string;
10496
+ get hostTestId(): string;
10382
10497
  private _uploadStateSubject;
10383
10498
  private _destroyed$;
10384
10499
  uploadState$: rxjs.Observable<QdUploadProgressState>;
@@ -10391,19 +10506,21 @@ declare class QdFileCollectorDialogItemProgressComponent implements OnInit, OnDe
10391
10506
  private getUploadState;
10392
10507
  protected readonly QdUploadState: typeof QdUploadProgressState;
10393
10508
  static ɵfac: i0.ɵɵFactoryDeclaration<QdFileCollectorDialogItemProgressComponent, never>;
10394
- static ɵcmp: i0.ɵɵComponentDeclaration<QdFileCollectorDialogItemProgressComponent, "qd-file-collector-dialog-item-progress", never, { "progress": { "alias": "progress"; "required": false; }; "error": { "alias": "error"; "required": false; }; }, {}, never, never, false, never>;
10509
+ static ɵcmp: i0.ɵɵComponentDeclaration<QdFileCollectorDialogItemProgressComponent, "qd-file-collector-dialog-item-progress", never, { "progress": { "alias": "progress"; "required": false; }; "error": { "alias": "error"; "required": false; }; "testId": { "alias": "data-test-id"; "required": true; }; }, {}, never, never, false, never>;
10395
10510
  }
10396
10511
 
10397
10512
  declare class QdFileCollectorDialogItemErrorComponent {
10398
10513
  private readonly fileCollectorService;
10399
10514
  error: QdUploadError;
10515
+ testId: string;
10516
+ get hostTestId(): string;
10400
10517
  protected readonly QdUploadErrorType: typeof QdUploadErrorType;
10401
- get maxFileSizeInBytes(): number;
10402
- get invalidMimeTypeErrorMessageI18n(): string;
10403
- get invalidFileNameErrorMessageI18n(): string;
10518
+ get maxFileSizeInBytes(): number | undefined;
10519
+ get invalidMimeTypeErrorMessageI18n(): string | undefined;
10520
+ get invalidFileNameErrorMessageI18n(): string | undefined;
10404
10521
  private get config();
10405
10522
  static ɵfac: i0.ɵɵFactoryDeclaration<QdFileCollectorDialogItemErrorComponent, never>;
10406
- static ɵcmp: i0.ɵɵComponentDeclaration<QdFileCollectorDialogItemErrorComponent, "qd-file-collector-dialog-item-error", never, { "error": { "alias": "error"; "required": false; }; }, {}, never, never, false, never>;
10523
+ static ɵcmp: i0.ɵɵComponentDeclaration<QdFileCollectorDialogItemErrorComponent, "qd-file-collector-dialog-item-error", never, { "error": { "alias": "error"; "required": false; }; "testId": { "alias": "data-test-id"; "required": true; }; }, {}, never, never, false, never>;
10407
10524
  }
10408
10525
 
10409
10526
  declare class QdFileDeleteDialogComponent {
@@ -13025,6 +13142,7 @@ declare class QdPageComponent<T extends object> implements OnInit, OnChanges, Af
13025
13142
  projectionGuardMessage: string;
13026
13143
  private _isInitialized;
13027
13144
  private _destroyed$;
13145
+ private _cancelSubmitValidation$;
13028
13146
  get isControlPanelVisible(): boolean;
13029
13147
  get isControlPanelBroad(): boolean;
13030
13148
  get hasNavigation(): boolean;
@@ -13181,6 +13299,7 @@ declare class QdPageObjectHeaderComponent<T extends object> implements OnInit, O
13181
13299
  private _pageObjectDataSubject;
13182
13300
  private _isLoadingSubject;
13183
13301
  private _customActionsSubject;
13302
+ private _customActionsSub?;
13184
13303
  private _destroyed$;
13185
13304
  private _availableContexts;
13186
13305
  pageObjectData$: Observable<T>;
@@ -13227,6 +13346,7 @@ declare class QdPageObjectHeaderComponent<T extends object> implements OnInit, O
13227
13346
  private setupResolverTrigger;
13228
13347
  private initContexts;
13229
13348
  private updateCustomActions;
13349
+ private subscribeToViewOnlyMode;
13230
13350
  private getCustomActionsByMode;
13231
13351
  private openCancelDialog;
13232
13352
  static ɵfac: i0.ɵɵFactoryDeclaration<QdPageObjectHeaderComponent<any>, never>;
@@ -13905,6 +14025,7 @@ interface QdTableState<T extends string> {
13905
14025
  requestState?: QdTableRequestState;
13906
14026
  connectors?: QdTableConnector[];
13907
14027
  connectorCriteria?: QdTableConnectorCriteria;
14028
+ lastVisitedRowIdentifier?: QdTableRowIdentifier;
13908
14029
  }
13909
14030
  interface QdTablePaginatorCurrentPage {
13910
14031
  start: number;
@@ -14192,6 +14313,7 @@ declare class QdTableComponent<T extends string> implements OnInit, OnChanges, O
14192
14313
  private initRefresh;
14193
14314
  private triggerRefresh;
14194
14315
  private validateConfig;
14316
+ private hasHighlightOnRevisit;
14195
14317
  /**
14196
14318
  * @description Can be deleted when the property "mainColumnNotFillingWidth" is dropped.
14197
14319
  *
@@ -14609,17 +14731,22 @@ declare class QdScrollToPaginationDirective<T extends string> implements OnInit,
14609
14731
  static ɵdir: i0.ɵɵDirectiveDeclaration<QdScrollToPaginationDirective<any>, "[qdScrollToPagination]", never, {}, {}, never, never, false, never>;
14610
14732
  }
14611
14733
 
14612
- declare class QdTableBodyComponent<T extends string> implements OnDestroy {
14734
+ declare class QdTableBodyComponent<T extends string> implements OnInit, OnDestroy {
14613
14735
  private tableStoreService;
14614
14736
  private resolverService;
14737
+ private cdr;
14615
14738
  config: QdTableConfig<T>;
14616
14739
  data: QdTableDataRow<T>[];
14617
14740
  testId?: string;
14618
14741
  isLoading$: Observable<boolean>;
14742
+ highlightedRowIdentifier: QdTableRowIdentifier | undefined;
14619
14743
  private _primaryActionRefreshSubscription?;
14620
14744
  constructor();
14745
+ ngOnInit(): void;
14621
14746
  ngOnDestroy(): void;
14747
+ isLastVisitedRow(rowData: QdTableDataRow<T>, rowIndex: number): boolean;
14622
14748
  primaryAction(rowData: QdTableDataRow<T>, index: number): void;
14749
+ private initHighlight;
14623
14750
  private triggerRefresh;
14624
14751
  static ɵfac: i0.ɵɵFactoryDeclaration<QdTableBodyComponent<any>, never>;
14625
14752
  static ɵcmp: i0.ɵɵComponentDeclaration<QdTableBodyComponent<any>, "[qd-table-body]", never, { "config": { "alias": "config"; "required": false; }; "data": { "alias": "data"; "required": false; }; "testId": { "alias": "data-test-id"; "required": false; }; }, {}, never, never, false, never>;
@@ -14760,6 +14887,7 @@ declare class QdTableRowComponent<T extends string> implements OnInit {
14760
14887
  declare class QdTableRowSelectionComponent<T extends string> {
14761
14888
  private rowSelectionService;
14762
14889
  rowIndex: QdTableRowIndex;
14890
+ rowData: QdTableDataRow<T>;
14763
14891
  testId: string;
14764
14892
  get dataTestId(): string;
14765
14893
  get selectionType(): string;
@@ -14768,7 +14896,7 @@ declare class QdTableRowSelectionComponent<T extends string> {
14768
14896
  stopPropagation(event: Event): void;
14769
14897
  handleChange(event: Event): void;
14770
14898
  static ɵfac: i0.ɵɵFactoryDeclaration<QdTableRowSelectionComponent<any>, never>;
14771
- static ɵcmp: i0.ɵɵComponentDeclaration<QdTableRowSelectionComponent<any>, "[qd-table-row-selection]", never, { "rowIndex": { "alias": "rowIndex"; "required": false; }; "testId": { "alias": "data-test-id"; "required": false; }; }, {}, never, never, false, never>;
14899
+ static ɵcmp: i0.ɵɵComponentDeclaration<QdTableRowSelectionComponent<any>, "[qd-table-row-selection]", never, { "rowIndex": { "alias": "rowIndex"; "required": false; }; "rowData": { "alias": "rowData"; "required": false; }; "testId": { "alias": "data-test-id"; "required": false; }; }, {}, never, never, false, never>;
14772
14900
  }
14773
14901
 
14774
14902
  declare class QdTableSortComponent<T extends string> implements OnInit, OnDestroy {
@@ -17206,4 +17334,4 @@ declare class QdUiModule {
17206
17334
  declare const APP_ENVIRONMENT: InjectionToken<QdAppEnvironment>;
17207
17335
 
17208
17336
  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 };
17209
- 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, 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, 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 };
17337
+ 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, 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 };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quadrel-enterprise-ui/framework",
3
- "version": "20.5.0",
3
+ "version": "20.6.1",
4
4
  "exports": {
5
5
  "./jest-preset": "./jest-preset.js",
6
6
  "./package.json": {
@@ -156,10 +156,10 @@
156
156
  "i18n.qd.page.header.cancel": "Abbrechen",
157
157
  "i18n.qd.page.header.save": "Speichern",
158
158
  "i18n.qd.page.submit.invalidForm": "Die Daten wurden noch nicht vollständig erfasst.",
159
- "i18n.qd.page.cancel.confirmation.dialog.title": "Abbrechen bestätigen",
160
- "i18n.qd.page.cancel.confirmation.dialog.message": "Das Abbrechen führt zum Verlust ungespeicherter Änderungen. Sind Sie sicher, dass Sie fortfahren möchten?",
161
- "i18n.qd.page.cancel.confirmation.dialog.close": "Schliessen",
162
- "i18n.qd.page.cancel.confirmation.dialog.proceed": "Fortfahren",
159
+ "i18n.qd.page.cancel.confirmation.dialog.title": "Eingaben verwerfen?",
160
+ "i18n.qd.page.cancel.confirmation.dialog.message": "Sie haben nicht gespeicherte Eingaben. Wenn Sie diese verwerfen, gehen diese unwiderruflich verloren.",
161
+ "i18n.qd.page.cancel.confirmation.dialog.close": "Abbrechen",
162
+ "i18n.qd.page.cancel.confirmation.dialog.proceed": "Verwerfen",
163
163
  "i18n.qd.page.context.button.change": "Ändern",
164
164
  "i18n.qd.page.context.button.select": "Auswählen",
165
165
  "i18n.qd.page.context.noSelectionPlaceholder": "Keine Auswahl",
@@ -155,10 +155,10 @@
155
155
  "i18n.qd.page.header.cancel": "Cancel",
156
156
  "i18n.qd.page.header.save": "Save",
157
157
  "i18n.qd.page.submit.invalidForm": "The data has not yet been fully recorded.",
158
- "i18n.qd.page.cancel.confirmation.dialog.title": "Confirm Cancel",
159
- "i18n.qd.page.cancel.confirmation.dialog.message": "Canceling will result in loss of unsaved changes. Are you sure you want to continue?",
160
- "i18n.qd.page.cancel.confirmation.dialog.close": "Close",
161
- "i18n.qd.page.cancel.confirmation.dialog.proceed": "Proceed",
158
+ "i18n.qd.page.cancel.confirmation.dialog.title": "Discard entries?",
159
+ "i18n.qd.page.cancel.confirmation.dialog.message": "You have unsaved entries. If you discard them, they will be permanently lost.",
160
+ "i18n.qd.page.cancel.confirmation.dialog.close": "Cancel",
161
+ "i18n.qd.page.cancel.confirmation.dialog.proceed": "Discard",
162
162
  "i18n.qd.page.context.button.change": "Change",
163
163
  "i18n.qd.page.context.button.select": "Select",
164
164
  "i18n.qd.page.context.noSelectionPlaceholder": "No selection",