@quadrel-enterprise-ui/framework 20.11.2-beta.150.1 → 20.11.2-beta.152.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
@@ -3,7 +3,7 @@ import { Observable, BehaviorSubject, Subject, Subscription, ReplaySubject } fro
3
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
- import { InjectionToken, EventEmitter, OnInit, PipeTransform, TemplateRef, AfterContentInit, AfterViewInit, OnDestroy, OnChanges, AfterViewChecked, SimpleChanges, AfterContentChecked, Injector, ElementRef, QueryList, DoCheck, NgIterable, ViewContainerRef, TrackByFunction, Type, DestroyRef, ModuleWithProviders } from '@angular/core';
6
+ import { InjectionToken, EventEmitter, OnInit, PipeTransform, TemplateRef, AfterContentInit, AfterViewInit, DestroyRef, OnDestroy, OnChanges, AfterViewChecked, SimpleChanges, AfterContentChecked, Injector, ElementRef, QueryList, DoCheck, NgIterable, ViewContainerRef, TrackByFunction, Type, ModuleWithProviders } from '@angular/core';
7
7
  import { HttpInterceptor, HttpRequest, HttpHandler, HttpEvent } from '@angular/common/http';
8
8
  import * as i2 from '@angular/common';
9
9
  import { Moment } from 'moment/moment';
@@ -13,6 +13,7 @@ import * as i9 from '@ngx-translate/core';
13
13
  import { TranslateService } from '@ngx-translate/core';
14
14
  import { OverlayRef, OverlayPositionBuilder, Overlay, ConnectedPosition } from '@angular/cdk/overlay';
15
15
  import * as i4 from '@angular/router';
16
+ import { Params } from '@angular/router';
16
17
  import { Highlightable, ActiveDescendantKeyManager } from '@angular/cdk/a11y';
17
18
  import * as i39 from 'ngx-editor';
18
19
  import { Editor, Toolbar } from 'ngx-editor';
@@ -1188,6 +1189,193 @@ declare class QdPushEventsService {
1188
1189
  static ɵprov: i0.ɵɵInjectableDeclaration<QdPushEventsService>;
1189
1190
  }
1190
1191
 
1192
+ /**
1193
+ * Framework-wide funnel for syncing application state with the URL `?key=value` query string.
1194
+ *
1195
+ * Several Quadrel features mirror their state to the URL — the table's sort and pagination today,
1196
+ * filter, search, and `qd-page-tabs` over time. Without coordination they each call
1197
+ * `router.navigate(...)` directly, which produces two failure modes:
1198
+ *
1199
+ * 1. **Race**: two navigates issued in the same JS turn cancel each other. Only the last writer
1200
+ * wins; the URL silently loses the cancelled feature's params.
1201
+ * 2. **History pollution**: a single user action that changes two features (e.g. clicking a sort
1202
+ * header resets the page index) ends up as two history entries. Browser-back only undoes one.
1203
+ *
1204
+ * `QdRouterQueryParamHubService` is the single funnel through which features run their query-param
1205
+ * reads and writes. It does three jobs:
1206
+ *
1207
+ * - **Ownership** — `claim()` / `release()` enforce one writer per param key, app-wide.
1208
+ * - **Shared reads** — `queryParams()` and `snapshotQueryParam()` expose the route state without
1209
+ * each feature needing its own `ActivatedRoute` subscription.
1210
+ * - **Coordinated writes** — `write()` buffers param updates within a microtask and serializes
1211
+ * navigations via a Promise chain, so two writes in the same JS turn become one history entry
1212
+ * and concurrent writes never race.
1213
+ *
1214
+ * The hub is feature-agnostic. Per-feature adapters (e.g. `QdTableSortRouterConnectorService`)
1215
+ * own their parsing/serialization and delegate the URL plumbing to the hub.
1216
+ *
1217
+ * ### Usage
1218
+ *
1219
+ * ```ts
1220
+ * @Injectable()
1221
+ * export class FilterRouterAdapterService {
1222
+ * private readonly _hub = inject(QdRouterQueryParamHubService);
1223
+ * private readonly _destroyRef = inject(DestroyRef);
1224
+ *
1225
+ * connect(state$: Observable<FilterState>, dispatch: (state: FilterState) => void): void {
1226
+ * if (!this._hub.isAvailable()) return;
1227
+ * if (!this._hub.claim(['filter'], this, this._destroyRef)) return;
1228
+ *
1229
+ * this._hub
1230
+ * .queryParams()
1231
+ * .pipe(takeUntilDestroyed(this._destroyRef))
1232
+ * .subscribe(params => dispatch(parseFilter(params['filter'])));
1233
+ *
1234
+ * state$
1235
+ * .pipe(takeUntilDestroyed(this._destroyRef))
1236
+ * .subscribe(state => this._hub.write({ filter: serializeFilter(state) }, false));
1237
+ * }
1238
+ * }
1239
+ * ```
1240
+ */
1241
+ declare class QdRouterQueryParamHubService {
1242
+ /**
1243
+ * Replays whenever the router has finished a navigation (`NavigationEnd`, `NavigationCancel`
1244
+ * or `NavigationError` — every event that ends a navigation, regardless of outcome).
1245
+ * Adapters that want to delay a write until any in-flight navigation has settled can take(1)
1246
+ * on this stream before calling `write()`.
1247
+ *
1248
+ * Late subscribers receive the most recent settling event immediately, so an adapter that
1249
+ * mounts after the initial route navigation can observe the route as already-settled. The
1250
+ * first replayed tick may represent that initial route navigation rather than a user-driven
1251
+ * settling event — adapters that need to distinguish "the route just changed" should compare
1252
+ * `ActivatedRoute.snapshot` themselves.
1253
+ *
1254
+ * **When the hub is unavailable** (no `Router` / `ActivatedRoute` in the injector — see
1255
+ * `isAvailable()`) this observable never emits. Adapters that compose `navigationSettled$`
1256
+ * via operators like `switchMap` or `concat` must guard with `isAvailable()` first, otherwise
1257
+ * their pipelines hang silently.
1258
+ */
1259
+ readonly navigationSettled$: Observable<void>;
1260
+ private readonly _router;
1261
+ private readonly _activatedRoute;
1262
+ private readonly _destroyRef;
1263
+ private readonly _ownership;
1264
+ private readonly _destroyClaims;
1265
+ private readonly _navigationSettledSubject;
1266
+ private _pendingParams;
1267
+ private _pendingReplaceUrl;
1268
+ private _flushScheduled;
1269
+ private _navigationChain;
1270
+ constructor();
1271
+ /**
1272
+ * Returns whether the hub can sync at all. False when the consuming injector has neither a
1273
+ * `Router` nor an `ActivatedRoute` available — for example in unit tests that omit
1274
+ * `RouterTestingModule`. Adapters should bail out early when this returns false.
1275
+ */
1276
+ isAvailable(): boolean;
1277
+ /**
1278
+ * Reserves exclusive write access to the given query-param keys for `owner`.
1279
+ *
1280
+ * The same `owner` may claim the same keys repeatedly without conflict — claims are idempotent
1281
+ * per owner. A different owner attempting to claim an already-claimed key fails: the hub logs
1282
+ * a `console.error` listing every contested key and returns `false`. The original owner keeps
1283
+ * the keys until it calls `release()` (or until its `DestroyRef` fires, if a `destroyRef` is
1284
+ * passed here).
1285
+ *
1286
+ * Atomicity: when the call fails, no keys are claimed, even partially. The hub checks every
1287
+ * requested key against the registry before mutating anything.
1288
+ *
1289
+ * **Pass `destroyRef` to opt into auto-release.** Without it, the hub keeps a strong reference
1290
+ * to `owner` until `release()` is called manually — a destroyed adapter that forgets to release
1291
+ * pins itself in the registry. Passing the adapter's `DestroyRef` registers an `onDestroy`
1292
+ * callback that releases exactly the keys claimed via this call (and any later claims that
1293
+ * reuse the same `destroyRef`), which is the recommended path.
1294
+ *
1295
+ * Each `destroyRef` releases only the keys it owns. If the same owner uses two different
1296
+ * `DestroyRef`s in two `claim()` calls, each fires independently and only releases its own
1297
+ * keys — keys claimed via the still-alive `destroyRef` stay reserved.
1298
+ *
1299
+ * Re-claiming with the same `destroyRef` appends to the same destroy listener — no duplicate
1300
+ * listeners are registered, even when the second claim names a different owner. Each appended
1301
+ * entry carries its own owner, so when the `destroyRef` fires the hub releases each entry's
1302
+ * keys against that entry's owner. An empty `keys` array is a no-op even when `destroyRef`
1303
+ * is provided: no listener is attached, so the hub does not pin a destroy hook that would
1304
+ * release nothing.
1305
+ *
1306
+ * @param keys The query-param keys this adapter wants to own (e.g. `['sort']`, `['page', 'size']`).
1307
+ * @param owner Stable identity of the caller — usually `this`. Used as the registry key.
1308
+ * @param destroyRef Optional. If provided, the hub releases the keys automatically when the
1309
+ * `DestroyRef` fires. Pass the adapter's `inject(DestroyRef)` to make leaks impossible.
1310
+ * @returns `true` if every requested key is now owned by `owner`. `false` if at least one key
1311
+ * was already owned by a different adapter; the registry is left untouched and `destroyRef`
1312
+ * is not registered.
1313
+ */
1314
+ claim(keys: readonly string[], owner: object, destroyRef?: DestroyRef): boolean;
1315
+ /**
1316
+ * Drops `owner`'s claim on the given keys. Keys not owned by `owner` are left untouched —
1317
+ * a foreign release call cannot steal another adapter's ownership.
1318
+ *
1319
+ * Adapters typically release in their `DestroyRef.onDestroy` callback so a destroyed component
1320
+ * frees its keys for the next adapter that mounts.
1321
+ */
1322
+ release(keys: readonly string[], owner: object): void;
1323
+ /**
1324
+ * Reactive view of `ActivatedRoute.queryParams`. Returns the empty observable if the hub is
1325
+ * not available (no Router/ActivatedRoute). Adapters subscribe here instead of injecting
1326
+ * `ActivatedRoute` themselves so the hub stays the single read funnel.
1327
+ *
1328
+ * The observable is hot — late subscribers receive the current params immediately.
1329
+ */
1330
+ queryParams(): Observable<Params>;
1331
+ /**
1332
+ * Synchronous read of a single query param from the latest `ActivatedRoute` snapshot.
1333
+ * Adapters use this to detect "URL already matches the desired state" and skip a redundant
1334
+ * `write()`.
1335
+ *
1336
+ * @returns The param value, or `undefined` if the param is missing or the hub is unavailable.
1337
+ */
1338
+ snapshotQueryParam(key: string): string | undefined;
1339
+ /**
1340
+ * Schedules a query-param update.
1341
+ *
1342
+ * Two coordination guarantees:
1343
+ *
1344
+ * - **Microtask batching** — every `write()` issued in the same JavaScript turn is merged into
1345
+ * a single `router.navigate(...)` call. A user action that changes two features at once
1346
+ * (e.g. sort change resets the page) becomes one history entry, not two. Note: batching is
1347
+ * per JS turn, not per logical user action — writes that fall into the next microtask after
1348
+ * a settled navigation produce a separate history entry, even when they belong to the same
1349
+ * conceptual gesture.
1350
+ * - **Serialized navigations** — flushes are chained on a Promise so a second flush only fires
1351
+ * after the previous `router.navigate` has settled. Concurrent navigates can therefore not
1352
+ * cancel each other. A rejected `router.navigate` (cancelled by a guard, redirected, or
1353
+ * failed) does not stop the chain — the next pending flush still runs. Rejections are not
1354
+ * logged here; consumers that need routing diagnostics should subscribe to `router.events`.
1355
+ *
1356
+ * Adapters are still responsible for skipping no-op writes (compare the desired value against
1357
+ * `snapshotQueryParam()` first), since the hub does not deduplicate identical values.
1358
+ *
1359
+ * Setting a param value to `undefined` removes the param from the URL via Angular Router's
1360
+ * `merge` behavior. Other params not mentioned in the call are preserved.
1361
+ *
1362
+ * @param params Partial map of query-param keys to their new values. Missing keys are not touched.
1363
+ * An empty object short-circuits and is a no-op.
1364
+ * @param replaceUrl `true` replaces the current history entry; `false` pushes a new entry.
1365
+ * When several `write()` calls in the same microtask disagree, `true` wins (so an initial
1366
+ * replace is preserved when a follow-up write would otherwise push). The escalation is
1367
+ * per-batch — after each flush the pending flag resets to `false`, so writes that arrive
1368
+ * in the next microtask start a fresh batch with their own `replaceUrl` argument.
1369
+ */
1370
+ write(params: Record<string, string | undefined>, replaceUrl: boolean): void;
1371
+ private replayCurrentRouterStateForLateSubscribers;
1372
+ private forwardSettlingRouterEventsToNavigationSettled;
1373
+ private registerAutoRelease;
1374
+ private flush;
1375
+ static ɵfac: i0.ɵɵFactoryDeclaration<QdRouterQueryParamHubService, never>;
1376
+ static ɵprov: i0.ɵɵInjectableDeclaration<QdRouterQueryParamHubService>;
1377
+ }
1378
+
1191
1379
  /**
1192
1380
  * @description Defines the content.
1193
1381
  */
@@ -3989,6 +4177,13 @@ interface QdTableConfig<T extends string> {
3989
4177
  * @description Activates a pagination with configurable available page sizes
3990
4178
  */
3991
4179
  pagination?: true | QdTablePagination;
4180
+ /**
4181
+ * @description Configures table-level sorting behavior. Per-column sortability
4182
+ * remains configured via the `sort` property on each column (see
4183
+ * `QdTableConfigColumnSort`). Pass `true` to enable defaults, or an object to
4184
+ * tune individual options such as `connectWithRouter`.
4185
+ */
4186
+ sort?: true | QdTableSort;
3992
4187
  /**
3993
4188
  * @description Sets an alternative view if no elements are available in QdTableData
3994
4189
  */
@@ -4215,6 +4410,59 @@ interface QdTablePagination {
4215
4410
  * * @default: false
4216
4411
  */
4217
4412
  hasFirstLastPageNavigation?: boolean;
4413
+ /**
4414
+ * @description Synchronizes pagination state with URL query params (`?page=1&size=25`),
4415
+ * making the table state shareable, bookmarkable and reload-safe.
4416
+ *
4417
+ * **Behavior**
4418
+ * - URL is 1-based, the internal store stays 0-based.
4419
+ * - Initial sync writes defaults via `replaceUrl: true` (no extra history entry).
4420
+ * - User-driven page/size changes push a regular history entry, so browser back works.
4421
+ * - Filter, search and sort reset the page to 1 — the URL syncs accordingly.
4422
+ *
4423
+ * **Validation**
4424
+ * - `page`: positive integer, otherwise falls back to 1.
4425
+ * - `size`: must be one of `pageSizes`; if `pageSizes` is omitted, an internal sanity range applies.
4426
+ * - Invalid values are ignored; the default is used instead.
4427
+ * - Out-of-range pages (e.g. `?page=99` with 5 pages) auto-correct via the resolver.
4428
+ *
4429
+ * **Limitations**
4430
+ * - Only one paginator per view may enable this. Additional paginators stay functional
4431
+ * but skip URL sync and log an error.
4432
+ * - Requires `Router` and `ActivatedRoute` to be available; otherwise the option is
4433
+ * silently ignored and the table paginates locally.
4434
+ * - Multi-table URL sync via param namespacing is not supported.
4435
+ *
4436
+ * * @default false — URL sync is opt-in. Plain `pagination: true` and pagination
4437
+ * objects without `connectWithRouter` stay URL-disconnected. Set
4438
+ * `connectWithRouter: true` to opt in.
4439
+ */
4440
+ connectWithRouter?: boolean;
4441
+ }
4442
+ /**
4443
+ * @description Configuration model for table-level sorting behavior. Configures
4444
+ * how table-wide sorting interacts with the application — for example whether
4445
+ * the active sort is mirrored to the URL.
4446
+ *
4447
+ * Per-column sortability is configured separately via `QdTableConfigColumnSort`
4448
+ * on each column.
4449
+ */
4450
+ interface QdTableSort {
4451
+ /**
4452
+ * @description When `true`, the active sort state is mirrored to the URL
4453
+ * query parameter `sort` and read back from the URL on table init. The data
4454
+ * resolver receives the URL-driven sort on its initial call so deep links
4455
+ * restore the sorted view exactly.
4456
+ *
4457
+ * Only one sort-router connection per page is allowed. Subsequent tables
4458
+ * with `connectWithRouter: true` stay URL-disconnected and a console error
4459
+ * is logged.
4460
+ *
4461
+ * @default false — URL sync is opt-in. Plain `sort: true`, an omitted
4462
+ * `sort` block, or a sort object without `connectWithRouter` stay
4463
+ * URL-disconnected. Set `connectWithRouter: true` to opt in.
4464
+ */
4465
+ connectWithRouter?: boolean;
4218
4466
  }
4219
4467
  /**
4220
4468
  * @description Configuration model for empty state view
@@ -14400,6 +14648,7 @@ declare enum QdPaginatorDirection {
14400
14648
  declare class QdTablePaginatorComponent<T extends string> implements OnInit, OnDestroy {
14401
14649
  private readonly tableDataResolver;
14402
14650
  private readonly tableStoreService;
14651
+ private readonly routerConnector;
14403
14652
  /**
14404
14653
  * @description Configuration Model for Qd-Table.
14405
14654
  */
@@ -14423,10 +14672,25 @@ declare class QdTablePaginatorComponent<T extends string> implements OnInit, OnD
14423
14672
  get hasData$(): Observable<boolean>;
14424
14673
  ngOnInit(): void;
14425
14674
  ngOnDestroy(): void;
14675
+ /**
14676
+ * @description Whether this paginator should sync its state with the URL. Reads
14677
+ * `pagination.connectWithRouter` (default `false` — URL sync is opt-in and
14678
+ * requires an explicit `pagination: { connectWithRouter: true }`).
14679
+ *
14680
+ * Used by `QdTablePaginationRouterConnectorService` to decide whether to claim
14681
+ * the router-singleton for this paginator.
14682
+ */
14683
+ shouldConnectWithRouter(): boolean;
14684
+ /**
14685
+ * @description The effective default page size for this paginator. Resolves
14686
+ * `pagination.pageSizeDefault` first, then falls back to the first entry of
14687
+ * `pagination.pageSizes`, finally to the framework constant `PAGE_SIZE_DEFAULT`.
14688
+ */
14689
+ getPageSizeDefault(): number;
14426
14690
  navigateToPage(direction: QdPaginatorDirection): void;
14427
14691
  private isConfigValid;
14692
+ private startPagination;
14428
14693
  private initPagination;
14429
- private getPageSizeDefault;
14430
14694
  private calculatePageNumber;
14431
14695
  static ɵfac: i0.ɵɵFactoryDeclaration<QdTablePaginatorComponent<any>, never>;
14432
14696
  static ɵcmp: i0.ɵɵComponentDeclaration<QdTablePaginatorComponent<any>, "qd-table-paginator", never, { "config": { "alias": "config"; "required": false; }; "testId": { "alias": "data-test-id"; "required": false; }; }, {}, never, never, false, never>;
@@ -14551,6 +14815,7 @@ declare class QdTableComponent<T extends string> implements OnInit, OnChanges, O
14551
14815
  private readonly breakpointService;
14552
14816
  private readonly resolverService;
14553
14817
  private readonly confirmationDialogService;
14818
+ private readonly sortRouterConnector;
14554
14819
  /**
14555
14820
  * Configuration of the table. The generic type specifies the column definition. <br />
14556
14821
  *
@@ -17719,5 +17984,5 @@ declare class QdUiModule {
17719
17984
 
17720
17985
  declare const APP_ENVIRONMENT: InjectionToken<QdAppEnvironment>;
17721
17986
 
17722
- 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, QdNumberInputService, QdPageComponent, QdPageControlPanelComponent, QdPageFooterComponent, QdPageFooterCustomContentDirective, QdPageInfoBannerComponent, QdPageModule, QdPageStepComponent, QdPageStepperAdapterDirective, QdPageStepperComponent, QdPageStepperModule, QdPageStoreService, QdPageTabComponent, QdPageTabsAdapterDirective, QdPageTabsComponent, QdPageTabsModule, QdPanelSectionActionsComponent, QdPanelSectionComponent, QdPanelSectionModule, QdPanelSectionStatusComponent, QdPanelSectionTextParagraphComponent, QdPendingChangesGuardDirective, QdPercentageProgressBarComponent, QdPinCodeComponent, QdPlaceHolderComponent, QdPlaceHolderModule, QdPlaceholderPipe, QdProgressBarModule, QdProjectionGuardComponent, QdPushEventsService, QdQuickEditComponent, QdQuickEditModule, QdRadioButtonsComponent, QdRichtextComponent, QdRwdDisabledDirective, QdSearchComponent, QdSearchModule, QdSectionAdapterDirective, QdSectionComponent, QdSectionModule, QdSectionToolbarComponent, QdShellComponent, QdShellModule, QdSortDirection, QdSpinnerComponent, QdSpinnerModule, QdStatusIndicatorComponent, QdStatusIndicatorModule, QdStatusPairsCaptionComponent, QdStatusPairsComponent, QdStatusPairsErrorComponent, QdStatusPairsItemComponent, QdStatusPairsValueComponent, QdSubgridComponent, QdSwitchComponent, QdSwitchesComponent, QdTableComponent, QdTableModule, QdTableSpringTools, QdTextSectionComponent, QdTextSectionHeadlineComponent, QdTextSectionModule, QdTextSectionParagraphComponent, QdTextareaComponent, QdTileButtonListComponent, QdTileComponent, QdTileTextListComponent, QdTileTextListItemComponent, QdTileTitleComponent, QdTilesComponent, QdTilesModule, QdTilesTitleComponent, QdTooltipAtIntersectionDirective, QdTooltipIconComponent, QdTreeComponent, QdTreeModule, QdTreeRowExpanderService, QdUiMockModule, QdUiModule, QdUploadErrorType, QdValidators, QdViewportAdaptiveDirective, QdVisuallyHiddenDirective, chipColorDefault, createMetadataStream, updateHtmlLang };
17723
- 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 };
17987
+ 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, QdNumberInputService, QdPageComponent, QdPageControlPanelComponent, QdPageFooterComponent, QdPageFooterCustomContentDirective, QdPageInfoBannerComponent, QdPageModule, QdPageStepComponent, QdPageStepperAdapterDirective, QdPageStepperComponent, QdPageStepperModule, QdPageStoreService, QdPageTabComponent, QdPageTabsAdapterDirective, QdPageTabsComponent, QdPageTabsModule, QdPanelSectionActionsComponent, QdPanelSectionComponent, QdPanelSectionModule, QdPanelSectionStatusComponent, QdPanelSectionTextParagraphComponent, QdPendingChangesGuardDirective, QdPercentageProgressBarComponent, QdPinCodeComponent, QdPlaceHolderComponent, QdPlaceHolderModule, QdPlaceholderPipe, QdProgressBarModule, QdProjectionGuardComponent, QdPushEventsService, QdQuickEditComponent, QdQuickEditModule, QdRadioButtonsComponent, QdRichtextComponent, QdRouterQueryParamHubService, QdRwdDisabledDirective, QdSearchComponent, QdSearchModule, QdSectionAdapterDirective, QdSectionComponent, QdSectionModule, QdSectionToolbarComponent, QdShellComponent, QdShellModule, QdSortDirection, QdSpinnerComponent, QdSpinnerModule, QdStatusIndicatorComponent, QdStatusIndicatorModule, QdStatusPairsCaptionComponent, QdStatusPairsComponent, QdStatusPairsErrorComponent, QdStatusPairsItemComponent, QdStatusPairsValueComponent, QdSubgridComponent, QdSwitchComponent, QdSwitchesComponent, QdTableComponent, QdTableModule, QdTableSpringTools, QdTextSectionComponent, QdTextSectionHeadlineComponent, QdTextSectionModule, QdTextSectionParagraphComponent, QdTextareaComponent, QdTileButtonListComponent, QdTileComponent, QdTileTextListComponent, QdTileTextListItemComponent, QdTileTitleComponent, QdTilesComponent, QdTilesModule, QdTilesTitleComponent, QdTooltipAtIntersectionDirective, QdTooltipIconComponent, QdTreeComponent, QdTreeModule, QdTreeRowExpanderService, QdUiMockModule, QdUiModule, QdUploadErrorType, QdValidators, QdViewportAdaptiveDirective, QdVisuallyHiddenDirective, chipColorDefault, createMetadataStream, updateHtmlLang };
17988
+ 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, QdShellFooterCopyrightInfo, QdShellNavigationConfig, QdShellServiceNavigationBadge, QdShellServiceNavigationConfig, QdShellServiceNavigationContactInfo, QdShellServiceNavigationCustomButtonLinks, QdShellServiceNavigationEnvironment, QdShellServiceNavigationHrefs, QdShellServiceNavigationInfoLink, QdShellServiceNavigationLanguage, QdShellServiceNavigationMultiHrefs, QdShellServiceNavigationProfileLink, QdShellServiceNavigationSingleHref, QdShellToolbarConfig, QdShellToolbarItem, 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.11.2-beta.150.1",
3
+ "version": "20.11.2-beta.152.1",
4
4
  "exports": {
5
5
  "./jest-preset": "./jest-preset.js",
6
6
  "./package.json": {