@quadrel-enterprise-ui/framework 20.11.2 → 20.13.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.d.ts CHANGED
@@ -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, NgIterable, ViewContainerRef, TrackByFunction, Type, DestroyRef, ModuleWithProviders } from '@angular/core';
6
+ import { InjectionToken, EventEmitter, OnInit, PipeTransform, TemplateRef, AfterContentInit, AfterViewInit, OnDestroy, DestroyRef, 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';
@@ -860,6 +861,11 @@ interface QdFilterConfigData {
860
861
  * this property has to be set to false except for one filter
861
862
  * because only one filter per page can be connected with the router.
862
863
  *
864
+ * When mounting multiple filters in the same view, set `connectWithRouter: false` on every
865
+ * filter except the one that should own the URL.
866
+ *
867
+ * Note: This is the only router connector that defaults to `true` for historical reasons; all other router connectors default to `false`.
868
+ *
863
869
  * * @default true
864
870
  */
865
871
  connectWithRouter?: boolean;
@@ -1190,6 +1196,224 @@ declare class QdPushEventsService {
1190
1196
  static ɵprov: i0.ɵɵInjectableDeclaration<QdPushEventsService>;
1191
1197
  }
1192
1198
 
1199
+ /**
1200
+ * Display label for an adapter's owning feature, used by the hub to format ownership-conflict
1201
+ * error messages in user-facing terms (no internal service names leak into logs).
1202
+ */
1203
+ interface QdRouterQueryParamFeatureLabel {
1204
+ /**
1205
+ * Title-cased noun phrase identifying the feature in user-facing framework messages,
1206
+ * e.g. `"Page Tabs"`.
1207
+ */
1208
+ readonly name: string;
1209
+ /**
1210
+ * Lowercase plural noun phrase for inline prose in user-facing framework messages,
1211
+ * e.g. `"page tabs"`.
1212
+ */
1213
+ readonly plural: string;
1214
+ }
1215
+ /**
1216
+ * Options for `QdRouterQueryParamHubService.write()`.
1217
+ */
1218
+ interface QdRouterQueryParamWriteOptions {
1219
+ /**
1220
+ * `true` replaces the current history entry; `false` pushes a new entry. When several
1221
+ * `write()` calls in the same microtask disagree, `true` wins (so an initial replace is
1222
+ * preserved when a follow-up write would otherwise push). The escalation is per-batch —
1223
+ * after each flush the pending flag resets to `false`, so writes that arrive in the next
1224
+ * microtask start a fresh batch with their own `replaceUrl` value.
1225
+ */
1226
+ readonly replaceUrl: boolean;
1227
+ }
1228
+ /**
1229
+ * Framework-wide funnel for syncing application state with the URL `?key=value` query string.
1230
+ *
1231
+ * Several Quadrel features mirror their state to the URL via per-feature adapters. Without
1232
+ * coordination they each call `router.navigate(...)` directly, which produces two failure modes:
1233
+ *
1234
+ * 1. **Race**: two navigates issued in the same JS turn cancel each other. Only the last writer
1235
+ * wins; the URL silently loses the cancelled feature's params.
1236
+ * 2. **History pollution**: a single user action that changes two features (e.g. clicking a sort
1237
+ * header resets the page index) ends up as two history entries. Browser-back only undoes one.
1238
+ *
1239
+ * `QdRouterQueryParamHubService` is the single funnel through which features run their query-param
1240
+ * reads and writes. It does three jobs:
1241
+ *
1242
+ * - **Ownership** — `claim()` / `release()` enforce one writer per param key, app-wide.
1243
+ * - **Shared reads** — `queryParams()` and `snapshotQueryParam()` expose the route state without
1244
+ * each feature needing its own `ActivatedRoute` subscription.
1245
+ * - **Coordinated writes** — `write()` buffers param updates within a microtask and serializes
1246
+ * navigations via a Promise chain, so two writes in the same JS turn become one history entry
1247
+ * and concurrent writes never race.
1248
+ *
1249
+ * The hub is feature-agnostic. Per-feature adapters (e.g. `QdTableSortRouterConnectorService`)
1250
+ * own their parsing/serialization and delegate the URL plumbing to the hub.
1251
+ *
1252
+ * ### Usage
1253
+ *
1254
+ * ```ts
1255
+ * @Injectable()
1256
+ * export class FilterRouterAdapterService {
1257
+ * private readonly _hub = inject(QdRouterQueryParamHubService);
1258
+ * private readonly _destroyRef = inject(DestroyRef);
1259
+ *
1260
+ * connect(state$: Observable<FilterState>, dispatch: (state: FilterState) => void): void {
1261
+ * if (!this._hub.isAvailable()) return;
1262
+ * if (!this._hub.claim(['filter'], this, this._destroyRef, { name: 'Filter', plural: 'filters' })) return;
1263
+ *
1264
+ * this._hub
1265
+ * .queryParams()
1266
+ * .pipe(takeUntilDestroyed(this._destroyRef))
1267
+ * .subscribe(params => dispatch(parseFilter(params['filter'])));
1268
+ *
1269
+ * state$
1270
+ * .pipe(takeUntilDestroyed(this._destroyRef))
1271
+ * .subscribe(state => this._hub.write({ filter: serializeFilter(state) }, { replaceUrl: false }));
1272
+ * }
1273
+ * }
1274
+ * ```
1275
+ */
1276
+ declare class QdRouterQueryParamHubService {
1277
+ /**
1278
+ * Replays whenever the router has finished a navigation (`NavigationEnd`, `NavigationCancel`
1279
+ * or `NavigationError` — every event that ends a navigation, regardless of outcome).
1280
+ * Adapters that want to delay a write until any in-flight navigation has settled can take(1)
1281
+ * on this stream before calling `write()`.
1282
+ *
1283
+ * Late subscribers receive the most recent settling event immediately, so an adapter that
1284
+ * mounts after the initial route navigation can observe the route as already-settled. The
1285
+ * first replayed tick may represent that initial route navigation rather than a user-driven
1286
+ * settling event — adapters that need to distinguish "the route just changed" should compare
1287
+ * `ActivatedRoute.snapshot` themselves.
1288
+ *
1289
+ * **When the hub is unavailable** (no `Router` / `ActivatedRoute` in the injector — see
1290
+ * `isAvailable()`) this observable never emits. Adapters that compose `navigationSettled$`
1291
+ * via operators like `switchMap` or `concat` must guard with `isAvailable()` first, otherwise
1292
+ * their pipelines hang silently.
1293
+ */
1294
+ readonly navigationSettled$: Observable<void>;
1295
+ private readonly _router;
1296
+ private readonly _activatedRoute;
1297
+ private readonly _destroyRef;
1298
+ private readonly _ownership;
1299
+ private readonly _ownerLabels;
1300
+ private readonly _destroyClaims;
1301
+ private readonly _navigationSettledSubject;
1302
+ private _pendingParams;
1303
+ private _pendingReplaceUrl;
1304
+ private _flushScheduled;
1305
+ private _navigationChain;
1306
+ constructor();
1307
+ /**
1308
+ * Returns whether the hub can sync at all. False when the consuming injector has neither a
1309
+ * `Router` nor an `ActivatedRoute` available — for example in unit tests that omit
1310
+ * `RouterTestingModule`. Adapters should bail out early when this returns false.
1311
+ */
1312
+ isAvailable(): boolean;
1313
+ /**
1314
+ * Reserves exclusive write access to the given query-param keys for `owner`.
1315
+ *
1316
+ * The same `owner` may claim the same keys repeatedly without conflict — claims are idempotent
1317
+ * per owner. A different owner attempting to claim an already-claimed key fails: the hub logs
1318
+ * a `console.error` listing every contested key and returns `false`. The original owner keeps
1319
+ * the keys until it calls `release()` (or until its `DestroyRef` fires, if a `destroyRef` is
1320
+ * passed here).
1321
+ *
1322
+ * Atomicity: when the call fails, no keys are claimed, even partially. The hub checks every
1323
+ * requested key against the registry before mutating anything.
1324
+ *
1325
+ * **Pass `destroyRef` to opt into auto-release.** Without it, the hub keeps a strong reference
1326
+ * to `owner` until `release()` is called manually — a destroyed adapter that forgets to release
1327
+ * pins itself in the registry. Passing the adapter's `DestroyRef` registers an `onDestroy`
1328
+ * callback that releases exactly the keys claimed via this call (and any later claims that
1329
+ * reuse the same `destroyRef`), which is the recommended path.
1330
+ *
1331
+ * Each `destroyRef` releases only the keys it owns. If the same owner uses two different
1332
+ * `DestroyRef`s in two `claim()` calls, each fires independently and only releases its own
1333
+ * keys — keys claimed via the still-alive `destroyRef` stay reserved.
1334
+ *
1335
+ * Re-claiming with the same `destroyRef` appends to the same destroy listener — no duplicate
1336
+ * listeners are registered, even when the second claim names a different owner. Each appended
1337
+ * entry carries its own owner, so when the `destroyRef` fires the hub releases each entry's
1338
+ * keys against that entry's owner. An empty `keys` array is a no-op even when `destroyRef`
1339
+ * is provided: no listener is attached, so the hub does not pin a destroy hook that would
1340
+ * release nothing.
1341
+ *
1342
+ * @param keys The query-param keys this adapter wants to own (e.g. `['sort']`, `['page', 'size']`).
1343
+ * @param owner Stable identity of the caller — usually `this`. Used as the registry key.
1344
+ * @param destroyRef Optional. If provided, the hub releases the keys automatically when the
1345
+ * `DestroyRef` fires. Pass the adapter's `inject(DestroyRef)` to make leaks impossible.
1346
+ * @param featureLabel Optional. User-facing display label for the adapter's owning feature. The
1347
+ * hub uses it to format ownership-conflict error messages so application developers see the
1348
+ * feature names they configured (e.g. `Filter`, `Page Tabs`, `Table`) instead of internal
1349
+ * adapter class names. When omitted, the hub falls back to a generic `another adapter` phrase.
1350
+ * @returns `true` if every requested key is now owned by `owner`. `false` if at least one key
1351
+ * was already owned by a different adapter; the registry is left untouched and `destroyRef`
1352
+ * is not registered.
1353
+ */
1354
+ claim(keys: readonly string[], owner: object, destroyRef?: DestroyRef, featureLabel?: QdRouterQueryParamFeatureLabel): boolean;
1355
+ private formatOwnershipConflictMessage;
1356
+ /**
1357
+ * Drops `owner`'s claim on the given keys. Keys not owned by `owner` are left untouched —
1358
+ * a foreign release call cannot steal another adapter's ownership.
1359
+ *
1360
+ * Adapters typically release in their `DestroyRef.onDestroy` callback so a destroyed component
1361
+ * frees its keys for the next adapter that mounts.
1362
+ */
1363
+ release(keys: readonly string[], owner: object): void;
1364
+ /**
1365
+ * Reactive view of `ActivatedRoute.queryParams`. Returns the empty observable if the hub is
1366
+ * not available (no Router/ActivatedRoute). Adapters subscribe here instead of injecting
1367
+ * `ActivatedRoute` themselves so the hub stays the single read funnel.
1368
+ *
1369
+ * The observable is hot — late subscribers receive the current params immediately.
1370
+ */
1371
+ queryParams(): Observable<Params>;
1372
+ /**
1373
+ * Synchronous read of a single query param from the latest `ActivatedRoute` snapshot.
1374
+ * Adapters use this to detect "URL already matches the desired state" and skip a redundant
1375
+ * `write()`.
1376
+ *
1377
+ * @returns The param value, or `undefined` if the param is missing or the hub is unavailable.
1378
+ */
1379
+ snapshotQueryParam(key: string): string | undefined;
1380
+ /**
1381
+ * Schedules a query-param update.
1382
+ *
1383
+ * Two coordination guarantees:
1384
+ *
1385
+ * - **Microtask batching** — every `write()` issued in the same JavaScript turn is merged into
1386
+ * a single `router.navigate(...)` call. A user action that changes two features at once
1387
+ * (e.g. sort change resets the page) becomes one history entry, not two. Note: batching is
1388
+ * per JS turn, not per logical user action — writes that fall into the next microtask after
1389
+ * a settled navigation produce a separate history entry, even when they belong to the same
1390
+ * conceptual gesture.
1391
+ * - **Serialized navigations** — flushes are chained on a Promise so a second flush only fires
1392
+ * after the previous `router.navigate` has settled. Concurrent navigates can therefore not
1393
+ * cancel each other. A rejected `router.navigate` (cancelled by a guard, redirected, or
1394
+ * failed) does not stop the chain — the next pending flush still runs. Rejections are not
1395
+ * logged here; consumers that need routing diagnostics should subscribe to `router.events`.
1396
+ *
1397
+ * Adapters are still responsible for skipping no-op writes (compare the desired value against
1398
+ * `snapshotQueryParam()` first), since the hub does not deduplicate identical values.
1399
+ *
1400
+ * Setting a param value to `undefined` removes the param from the URL via Angular Router's
1401
+ * `merge` behavior. Other params not mentioned in the call are preserved.
1402
+ *
1403
+ * @param params Partial map of query-param keys to their new values. Missing keys are not touched.
1404
+ * An empty object short-circuits and is a no-op.
1405
+ * @param options Write options — see `QdRouterQueryParamWriteOptions` for the `replaceUrl`
1406
+ * semantics and per-batch escalation rules.
1407
+ */
1408
+ write(params: Record<string, string | undefined>, options: QdRouterQueryParamWriteOptions): void;
1409
+ private replayCurrentRouterStateForLateSubscribers;
1410
+ private forwardSettlingRouterEventsToNavigationSettled;
1411
+ private registerAutoRelease;
1412
+ private flush;
1413
+ static ɵfac: i0.ɵɵFactoryDeclaration<QdRouterQueryParamHubService, never>;
1414
+ static ɵprov: i0.ɵɵInjectableDeclaration<QdRouterQueryParamHubService>;
1415
+ }
1416
+
1193
1417
  declare class QdViewportAdaptiveDirective {
1194
1418
  static ɵfac: i0.ɵɵFactoryDeclaration<QdViewportAdaptiveDirective, never>;
1195
1419
  static ɵdir: i0.ɵɵDirectiveDeclaration<QdViewportAdaptiveDirective, "[qdViewportAdaptive]", never, {}, {}, never, never, false, never>;
@@ -3962,6 +4186,13 @@ interface QdTableConfig<T extends string> {
3962
4186
  * @description Activates a pagination with configurable available page sizes
3963
4187
  */
3964
4188
  pagination?: true | QdTablePagination;
4189
+ /**
4190
+ * @description Configures table-level sorting behavior. Per-column sortability
4191
+ * remains configured via the `sort` property on each column (see
4192
+ * `QdTableConfigColumnSort`). Pass `true` to enable defaults, or an object to
4193
+ * tune individual options such as `connectWithRouter`.
4194
+ */
4195
+ sort?: true | QdTableSort;
3965
4196
  /**
3966
4197
  * @description Sets an alternative view if no elements are available in QdTableData
3967
4198
  */
@@ -4188,6 +4419,59 @@ interface QdTablePagination {
4188
4419
  * * @default: false
4189
4420
  */
4190
4421
  hasFirstLastPageNavigation?: boolean;
4422
+ /**
4423
+ * @description Synchronizes pagination state with URL query params (`?page=1&size=25`),
4424
+ * making the table state shareable, bookmarkable and reload-safe.
4425
+ *
4426
+ * **Behavior**
4427
+ * - URL is 1-based, the internal store stays 0-based.
4428
+ * - Initial sync writes defaults via `replaceUrl: true` (no extra history entry).
4429
+ * - User-driven page/size changes push a regular history entry, so browser back works.
4430
+ * - Filter, search and sort reset the page to 1 — the URL syncs accordingly.
4431
+ *
4432
+ * **Validation**
4433
+ * - `page`: positive integer, otherwise falls back to 1.
4434
+ * - `size`: must be one of `pageSizes`; if `pageSizes` is omitted, an internal sanity range applies.
4435
+ * - Invalid values are ignored; the default is used instead.
4436
+ * - Out-of-range pages (e.g. `?page=99` with 5 pages) auto-correct via the resolver.
4437
+ *
4438
+ * **Limitations**
4439
+ * - Only one paginator per view may enable this. Additional paginators stay functional
4440
+ * but skip URL sync and log an error.
4441
+ * - Requires `Router` and `ActivatedRoute` to be available; otherwise the option is
4442
+ * silently ignored and the table paginates locally.
4443
+ * - Multi-table URL sync via param namespacing is not supported.
4444
+ *
4445
+ * * @default false — URL sync is opt-in. Plain `pagination: true` and pagination
4446
+ * objects without `connectWithRouter` stay URL-disconnected. Set
4447
+ * `connectWithRouter: true` to opt in.
4448
+ */
4449
+ connectWithRouter?: boolean;
4450
+ }
4451
+ /**
4452
+ * @description Configuration model for table-level sorting behavior. Configures
4453
+ * how table-wide sorting interacts with the application — for example whether
4454
+ * the active sort is mirrored to the URL.
4455
+ *
4456
+ * Per-column sortability is configured separately via `QdTableConfigColumnSort`
4457
+ * on each column.
4458
+ */
4459
+ interface QdTableSort {
4460
+ /**
4461
+ * @description When `true`, the active sort state is mirrored to the URL
4462
+ * query parameter `sort` and read back from the URL on table init. The data
4463
+ * resolver receives the URL-driven sort on its initial call so deep links
4464
+ * restore the sorted view exactly.
4465
+ *
4466
+ * Only one sort-router connection per page is allowed. Subsequent tables
4467
+ * with `connectWithRouter: true` stay URL-disconnected and a console error
4468
+ * is logged.
4469
+ *
4470
+ * @default false — URL sync is opt-in. Plain `sort: true`, an omitted
4471
+ * `sort` block, or a sort object without `connectWithRouter` stay
4472
+ * URL-disconnected. Set `connectWithRouter: true` to opt in.
4473
+ */
4474
+ connectWithRouter?: boolean;
4191
4475
  }
4192
4476
  /**
4193
4477
  * @description Configuration model for empty state view
@@ -5769,7 +6053,7 @@ type QdInputRawEventValue = QdInputValue | QdInputValueWithUnit | undefined;
5769
6053
  * <qd-datepicker [(value)]="value" [config]="config"></qd-datepicker>
5770
6054
  * ```
5771
6055
  */
5772
- declare class QdDatepickerComponent implements ControlValueAccessor, OnInit, OnChanges, OnDestroy {
6056
+ declare class QdDatepickerComponent implements ControlValueAccessor, OnInit, OnChanges, DoCheck, OnDestroy {
5773
6057
  private readonly actionEmitterService;
5774
6058
  private readonly timePickerService;
5775
6059
  private readonly translateService;
@@ -5861,11 +6145,14 @@ declare class QdDatepickerComponent implements ControlValueAccessor, OnInit, OnC
5861
6145
  timePicker?: QdFormTimepickerConfiguration;
5862
6146
  private _disabledDatesValidator;
5863
6147
  private _disabledTimesValidator;
6148
+ private _boundDisabledDates;
6149
+ private _boundDisabledTimes;
5864
6150
  private _subs;
5865
6151
  private _onChange;
5866
6152
  private _onTouched;
5867
6153
  ngOnInit(): void;
5868
6154
  ngOnChanges(changes: any): void;
6155
+ ngDoCheck(): void;
5869
6156
  ngOnDestroy(): void;
5870
6157
  registerOnChange(fn: () => void): void;
5871
6158
  registerOnTouched(fn: () => void): void;
@@ -5881,6 +6168,8 @@ declare class QdDatepickerComponent implements ControlValueAccessor, OnInit, OnC
5881
6168
  private updateConfiguration;
5882
6169
  private updateDisplayedDate;
5883
6170
  private updateDisplayedDateTime;
6171
+ private rebindDisabledDatesValidatorIfChanged;
6172
+ private rebindDisabledTimesValidatorIfChanged;
5884
6173
  private validateDisabledDates;
5885
6174
  private validateDisabledTimes;
5886
6175
  private isValidDateInput;
@@ -10884,21 +11173,27 @@ declare class QdFilterService {
10884
11173
  static ɵprov: i0.ɵɵInjectableDeclaration<QdFilterService>;
10885
11174
  }
10886
11175
 
11176
+ /**
11177
+ * Per-view adapter that syncs `QdFilterComponent` selection with the URL `?filter=` query
11178
+ * param via `QdRouterQueryParamHubService`. Reads/parses on activation, writes on selection
11179
+ * change. Coordination, ownership, and write batching are delegated to the hub — see its
11180
+ * JSDoc for details. Behavior contracts live in `filter-router-connector.service.spec.ts`
11181
+ * and `router-query-param-hub.integration.cy.ts`.
11182
+ */
10887
11183
  declare class QdFilterRouterConnectorService {
10888
- private readonly filterService;
10889
- private readonly router;
10890
- private readonly activatedRoute;
11184
+ private readonly _filterService;
11185
+ private readonly _hub;
11186
+ private readonly _destroyRef;
10891
11187
  private _connectedFilter?;
10892
- private _activatedRouteSubscription;
10893
- private _filterUrlParameterSubscription;
10894
- private _navigationEnded$;
11188
+ private _readSubscription?;
11189
+ private _writeSubscription?;
10895
11190
  private _activatedRouteCheckedSubject;
10896
11191
  private _activatedRouteChecked$;
10897
11192
  constructor();
10898
11193
  connectFilterWithRouter(filterComponent: QdFilterComponent): Observable<boolean>;
10899
- private setFilterSelectionFromUrl;
10900
- private setUrlOnFilterSelection;
10901
- disconnectFilterFromRouter(filterComponent: QdFilterComponent): void;
11194
+ private tearDownConnection;
11195
+ private subscribeToUrlChanges;
11196
+ private subscribeToFilterChanges;
10902
11197
  static ɵfac: i0.ɵɵFactoryDeclaration<QdFilterRouterConnectorService, never>;
10903
11198
  static ɵprov: i0.ɵɵInjectableDeclaration<QdFilterRouterConnectorService>;
10904
11199
  }
@@ -12416,13 +12711,16 @@ interface QdTabSelectionEvent {
12416
12711
  *
12417
12712
  * #### **Submit Button Configuration**
12418
12713
  *
12419
- * The submit button at the bottom of the tab system can be configured via `QdPageTabsConfig`:
12714
+ * The submit button at the bottom of the tab system can be configured via `QdPageTabsConfig.submitButton`:
12420
12715
  *
12421
12716
  * - **i18n**: The translated label for the submit button.
12422
12717
  * - **handler**: A callback function that receives form data upon submission.
12423
12718
  * - **isDisabled**: Controls whether the button should be active or not.
12424
12719
  * - **isHidden**: Determines whether the button is visible.
12425
- * - **connectWithRouter**: If set to true, the tab will be connected to the URL and will be bookmarked. It is obligatory to set the `name` attribute for each tab.
12720
+ *
12721
+ * #### **Router Integration**
12722
+ *
12723
+ * - **connectWithRouter**: If set to true, the active tab is synced with the URL via the `?tab=<name>` query param and becomes bookmarkable. Each `<qd-page-tab>` then needs a unique `name`.
12426
12724
  *
12427
12725
  * #### **Usage**
12428
12726
  *
@@ -12538,11 +12836,10 @@ interface QdTabSelectionEvent {
12538
12836
  * - If an invalid tab name is provided in URL, the first available tab is selected
12539
12837
  * - If no tab parameter is present, the `selectedIndex` or first non-disabled tab is selected
12540
12838
  */
12541
- declare class QdPageTabsComponent extends CdkStepper implements OnInit, OnChanges, AfterContentInit, AfterViewInit, OnDestroy {
12839
+ declare class QdPageTabsComponent extends CdkStepper implements OnInit, OnChanges, AfterContentInit, AfterViewInit {
12542
12840
  readonly footerService: QdPageFooterService;
12543
12841
  private pageStoreService;
12544
- private readonly router;
12545
- private readonly route;
12842
+ private readonly routerConnector;
12546
12843
  /**
12547
12844
  * Configuration of QdPageTabs.
12548
12845
  */
@@ -12565,22 +12862,9 @@ declare class QdPageTabsComponent extends CdkStepper implements OnInit, OnChange
12565
12862
  ngAfterViewInit(): void;
12566
12863
  private initializeTabSelection;
12567
12864
  private configureBookmarkableTabs;
12568
- /**
12569
- * Initializes the tab selection based on the URL parameter 'tab'.
12570
- * @private
12571
- */
12572
- private initializeTabFromUrl;
12573
- /**
12574
- * If the user navigates to a page with a tab selected, the tab will be selected automatically in {@link initializeTabFromUrl()} method.
12575
- * If the user navigates to a page without a tab selected, the first active tab will be selected.
12576
- * @private
12577
- */
12578
- private initializeFirstTabSelection;
12579
- ngOnDestroy(): void;
12580
12865
  private isTabSelectable;
12581
12866
  /**
12582
12867
  * Selects the first tab that is not disabled.
12583
- * @param updateUrl if true, the URL will be updated to reflect the selected tab.
12584
12868
  */
12585
12869
  private selectFirstNotDisabledTab;
12586
12870
  save(): void;
@@ -14362,6 +14646,7 @@ declare enum QdPaginatorDirection {
14362
14646
  declare class QdTablePaginatorComponent<T extends string> implements OnInit, OnDestroy {
14363
14647
  private readonly tableDataResolver;
14364
14648
  private readonly tableStoreService;
14649
+ private readonly routerConnector;
14365
14650
  /**
14366
14651
  * @description Configuration Model for Qd-Table.
14367
14652
  */
@@ -14385,10 +14670,25 @@ declare class QdTablePaginatorComponent<T extends string> implements OnInit, OnD
14385
14670
  get hasData$(): Observable<boolean>;
14386
14671
  ngOnInit(): void;
14387
14672
  ngOnDestroy(): void;
14673
+ /**
14674
+ * @description Whether this paginator should sync its state with the URL. Reads
14675
+ * `pagination.connectWithRouter` (default `false` — URL sync is opt-in and
14676
+ * requires an explicit `pagination: { connectWithRouter: true }`).
14677
+ *
14678
+ * Used by `QdTablePaginationRouterConnectorService` to decide whether to claim
14679
+ * the router-singleton for this paginator.
14680
+ */
14681
+ shouldConnectWithRouter(): boolean;
14682
+ /**
14683
+ * @description The effective default page size for this paginator. Resolves
14684
+ * `pagination.pageSizeDefault` first, then falls back to the first entry of
14685
+ * `pagination.pageSizes`, finally to the framework constant `PAGE_SIZE_DEFAULT`.
14686
+ */
14687
+ getPageSizeDefault(): number;
14388
14688
  navigateToPage(direction: QdPaginatorDirection): void;
14389
14689
  private isConfigValid;
14690
+ private startPagination;
14390
14691
  private initPagination;
14391
- private getPageSizeDefault;
14392
14692
  private calculatePageNumber;
14393
14693
  static ɵfac: i0.ɵɵFactoryDeclaration<QdTablePaginatorComponent<any>, never>;
14394
14694
  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>;
@@ -14513,6 +14813,7 @@ declare class QdTableComponent<T extends string> implements OnInit, OnChanges, O
14513
14813
  private readonly breakpointService;
14514
14814
  private readonly resolverService;
14515
14815
  private readonly confirmationDialogService;
14816
+ private readonly sortRouterConnector;
14516
14817
  /**
14517
14818
  * Configuration of the table. The generic type specifies the column definition. <br />
14518
14819
  *
@@ -17680,5 +17981,5 @@ declare class QdUiModule {
17680
17981
 
17681
17982
  declare const APP_ENVIRONMENT: InjectionToken<QdAppEnvironment>;
17682
17983
 
17683
- export { APP_ENVIRONMENT, AVAILABLE_ICONS, BACKEND_ERROR_CODES, MockLocaleDatePipe, NavigationTileComponent, NavigationTilesComponent, QD_DIALOG_CONFIRMATION_RESOLVER_TOKEN, QD_FILE_MANAGER_TOKEN, QD_FILE_UPLOAD_MANAGER_TOKEN, QD_FORM_OPTIONS_RESOLVER, QD_PAGE_OBJECT_RESOLVER_TOKEN, QD_PAGE_STEP_RESOLVER_TOKEN, QD_POPOVER_TOP_FIRST, QD_SAFE_BOTTOM_OFFSET, QD_TABLE_DATA_RESOLVER_TOKEN, QD_UPLOAD_HTTP_OPTIONS, QdButtonComponent, QdButtonGhostDirective, QdButtonGridComponent, QdButtonLinkDirective, QdButtonModule, QdButtonStackButtonComponent, QdButtonStackComponent, QdCheckboxChipsComponent, QdCheckboxComponent, QdCheckboxesComponent, QdChipComponent, QdChipModule, QdColumnAutoFillDirective, QdColumnBreakBeforeDirective, QdColumnDirective, QdColumnDisableResponsiveColspansDirective, QdColumnFullGridWidthDirective, QdColumnNextInSameRowDirective, QdColumnsDirective, QdColumnsDisableAutoFillDirective, QdColumnsDisableResponsiveColspansDirective, QdColumnsMaxDirective, QdCommentsComponent, QdCommentsModule, QdConnectFormStateToPageDirective, QdConnectorTableContextDirective, QdConnectorTableFilterDirective, QdConnectorTableSearchDirective, QdContactCardComponent, QdContactCardModule, QdContainerPairsCaptionComponent, QdContainerPairsContainerComponent, QdContainerPairsHeaderComponent, QdContainerPairsItemComponent, QdContainerPairsValueComponent, QdContextService, QdCoreModule, QdDatepickerComponent, QdDialogActionComponent, QdDialogAuthSessionEndComponent, QdDialogAuthSessionEndService, QdDialogComponent, QdDialogConfirmationComponent, QdDialogConfirmationErrorDirective, QdDialogConfirmationInfoDirective, QdDialogConfirmationSuccessDirective, QdDialogModule, QdDialogRecordStepperComponent, QdDialogService, QdDialogSize, QdDisabledDirective, QdDropdownComponent, QdFileCollectorComponent, QdFileCollectorModule, QdFileSizePipe$1 as QdFileSizePipe, QdFileUploadComponent, QdFileUploadService, QdFilterComponent, QdFilterFormItemsComponent, QdFilterModule, QdFilterRestParamBuilder, QdFilterService, QdFormArray, QdFormBuilder, QdFormControl, QdFormGroup, QdFormModule, QdGridComponent, QdGridModule, QdHorizontalPairsCaptionComponent, QdHorizontalPairsComponent, QdHorizontalPairsItemComponent, QdHorizontalPairsValueComponent, QdIconButtonComponent, QdIconComponent, QdIconModule, QdImageComponent, QdImageModule, QdIndeterminateProgressBarComponent, QdInputComponent, QdListModule, QdMenuButtonComponent, QdMockBreakpointService, QdMockButtonComponent, QdMockButtonGhostDirective, QdMockButtonGridComponent, QdMockButtonLinkDirective, QdMockButtonModule, QdMockButtonStackButtonComponent, QdMockButtonStackComponent, QdMockCalendarComponent, QdMockCheckboxChipsComponent, QdMockCheckboxComponent, QdMockCheckboxesComponent, QdMockChipComponent, QdMockChipModule, QdMockColumnDirective, QdMockColumnsDirective, QdMockContactCardComponent, QdMockContactCardModule, QdMockContainerPairsCaptionComponent, QdMockContainerPairsContainerComponent, QdMockContainerPairsHeaderComponent, QdMockContainerPairsItemComponent, QdMockContainerPairsValueComponent, QdMockCoreModule, QdMockCounterBadgeComponent, QdMockDatepickerComponent, QdMockDisabledDirective, QdMockDropdownComponent, QdMockFileCollectorComponent, QdMockFileCollectorModule, QdMockFilterCategoryBooleanComponent, QdMockFilterCategoryComponent, QdMockFilterCategoryDateComponent, QdMockFilterCategoryDateRangeComponent, QdMockFilterCategoryFreeTextComponent, QdMockFilterCategorySelectComponent, QdMockFilterComponent, QdMockFilterFormItemsComponent, QdMockFilterItemBooleanComponent, QdMockFilterItemDateComponent, QdMockFilterItemDateRangeComponent, QdMockFilterItemFreeTextComponent, QdMockFilterItemMultiSelectComponent, QdMockFilterItemSingleSelectComponent, QdMockFilterModule, QdMockFilterService, QdMockFormErrorComponent, QdMockFormGroupErrorComponent, QdMockFormHintComponent, QdMockFormLabelComponent, QdMockFormReadonlyComponent, QdMockFormViewonlyComponent, QdMockFormsModule, QdMockGridModule, QdMockIconButtonComponent, QdMockIconComponent, QdMockIconModule, QdMockImageComponent, QdMockImageModule, QdMockIndeterminateProgressBarComponent, QdMockInputComponent, QdMockListModule, QdMockNavigationTileComponent, QdMockNavigationTilesComponent, QdMockNavigationTilesModule, QdMockNotificationComponent, QdMockNotificationContentComponent, QdMockNotificationsComponent, QdMockNotificationsModule, QdMockNotificationsService, QdMockPageComponent, QdMockPageModule, QdMockPercentageProgressBarComponent, QdMockPinCodeComponent, QdMockPlaceHolderModule, QdMockPopoverOnClickDirective, QdMockProgressBarModule, QdMockQdPlaceHolderComponent, QdMockRadioButtonsComponent, QdMockRwdDisabledDirective, QdMockSearchComponent, QdMockSearchModule, QdMockSectionComponent, QdMockSectionModule, QdMockShellComponent, QdMockShellFooterComponent, QdMockShellHeaderBannerComponent, QdMockShellHeaderComponent, QdMockShellHeaderSearchComponent, QdMockShellHeaderWidgetComponent, QdMockShellModule, QdMockShellToolbarComponent, QdMockShellToolbarItemComponent, QdMockStatusIndicatorCaptionComponent, QdMockStatusIndicatorComponent, QdMockStatusIndicatorItemComponent, QdMockStatusIndicatorModule, QdMockStatusPairsCaptionComponent, QdMockStatusPairsComponent, QdMockStatusPairsErrorComponent, QdMockStatusPairsItemComponent, QdMockStatusPairsValueComponent, QdMockSwitchComponent, QdMockSwitchesComponent, QdMockTableComponent, QdMockTableModule, QdMockTextSectionComponent, QdMockTextSectionHeadlineComponent, QdMockTextSectionModule, QdMockTextSectionParagraphComponent, QdMockTextareaComponent, QdMockTileButtonListComponent, QdMockTileComponent, QdMockTileTextListComponent, QdMockTileTextListItemComponent, QdMockTileTitleComponent, QdMockTilesContainerComponent, QdMockTilesContainerTitleComponent, QdMockTilesModule, QdMockTranslatePipe, QdMockVisuallyHiddenDirective, QdMultiInputComponent, QdNavigationTilesModule, QdNotificationComponent, QdNotificationContentComponent, QdNotificationsComponent, QdNotificationsHttpInterceptorService, QdNotificationsModule, QdNotificationsService, QdNotificationsSnackbarListenerDirective, QdPageComponent, QdPageControlPanelComponent, QdPageFooterComponent, QdPageFooterCustomContentDirective, QdPageInfoBannerComponent, QdPageModule, QdPageStepComponent, QdPageStepperAdapterDirective, QdPageStepperComponent, QdPageStepperModule, QdPageStoreService, QdPageTabComponent, QdPageTabsAdapterDirective, QdPageTabsComponent, QdPageTabsModule, QdPanelSectionActionsComponent, QdPanelSectionComponent, QdPanelSectionModule, QdPanelSectionStatusComponent, QdPanelSectionTextParagraphComponent, QdPendingChangesGuardDirective, QdPercentageProgressBarComponent, QdPinCodeComponent, QdPlaceHolderComponent, QdPlaceHolderModule, QdPlaceholderPipe, QdProgressBarModule, QdProjectionGuardComponent, QdPushEventsService, QdQuickEditComponent, QdQuickEditModule, QdRadioButtonsComponent, QdRichtextComponent, QdRwdDisabledDirective, QdSearchComponent, QdSearchModule, QdSectionAdapterDirective, QdSectionComponent, QdSectionModule, QdSectionToolbarComponent, QdShellComponent, QdShellModule, QdSortDirection, QdSpinnerComponent, QdSpinnerModule, QdStatusIndicatorComponent, QdStatusIndicatorModule, QdStatusPairsCaptionComponent, QdStatusPairsComponent, QdStatusPairsErrorComponent, QdStatusPairsItemComponent, QdStatusPairsValueComponent, QdSubgridComponent, QdSwitchComponent, QdSwitchesComponent, QdTableComponent, QdTableModule, QdTableSpringTools, QdTextSectionComponent, QdTextSectionHeadlineComponent, QdTextSectionModule, QdTextSectionParagraphComponent, QdTextareaComponent, QdTileButtonListComponent, QdTileComponent, QdTileTextListComponent, QdTileTextListItemComponent, QdTileTitleComponent, QdTilesComponent, QdTilesModule, QdTilesTitleComponent, QdTooltipAtIntersectionDirective, QdTooltipIconComponent, QdTreeComponent, QdTreeModule, QdTreeRowExpanderService, QdUiMockModule, QdUiModule, QdUploadErrorType, QdValidators, QdViewportAdaptiveDirective, QdVisuallyHiddenDirective, chipColorDefault, createMetadataStream, updateHtmlLang };
17684
- export type { CustomField, QdAppEnvironment, QdButtonAdditionalInfo, QdButtonColor, QdChipColor, QdCollectedFile, QdComment, QdCommentAuthorFieldConfig, QdCommentCustomFieldConfig, QdCommentDeletedMeta, QdCommentRichtextConfig, QdCommentSecondaryActionConfig, QdCommentsAddButtonConfig, QdCommentsAddConfig, QdCommentsConfig, QdContactAddress, QdContactData, QdContactDataCustomField, QdContactDataCustomFieldEntry, QdContactDataCustomTranslatedEntry, QdContactFunction, QdContactPerson, QdContactTag, QdContextSelection, QdDependentFilterCategory, QdDialogAuthSessionEndResult, QdDialogConfig, QdDialogConfirmationConfig, QdDialogConfirmationResolver, QdDialogData, QdDialogTitle, QdFileCollectorConfig, QdFileManager, QdFileType, QdFileUploadManager, QdFilterCategory, QdFilterConfigData, QdFilterItem, QdFilterPostBodyCategory, QdFilterPostBodyData, QdFormCheckboxChipsConfiguration, QdFormCheckboxesConfiguration, QdFormConfiguration, QdFormDatepickerConfiguration, QdFormDropdownConfiguration, QdFormFileUploadConfiguration, QdFormHint, QdFormInput, QdFormInputConfiguration, QdFormLabel, QdFormMultiInputConfiguration, QdFormOption, QdFormOptionsResolver, QdFormPinCodeConfiguration, QdFormRadioButtonsConfiguration, QdFormSwitchesConfiguration, QdFormTextAreaConfiguration, QdGridConfig, QdInputValue, QdInputValueWithUnit, QdInspectOperationMode, QdMenuButtonConfig, QdMultiInputOption, QdNotification, QdNotificationType, QdPageConfig, QdPageConfigCreate, QdPageConfigCustom, QdPageConfigInspect, QdPageConfigOverview, QdPageControlPanelConfig, QdPageHeaderFacetConfig, QdPageInfoBannerConfig, QdPageObjectResolver, QdPageObjectResolverConfig, QdPageSelectedContext, QdPageStepConfig, QdPageStepResolver, QdPageStepperConfig, QdPageTabConfig, QdPageTabCounters, QdPageTabsConfig, QdPageTypeCreateConfig, QdPageTypeCustomConfig, QdPageTypeInspectConfig, QdPageTypeOverviewConfig, QdPlaceholder, QdPushEventName, QdQuickEditConfig, QdQuickEditData, QdRichtextConfig, QdSearchOptions, QdSearchPostBodyData, QdSectionActionType, QdSectionConfig, QdShellConfig, QdShellServiceNavigationConfig, QdStatusIndicator, QdSwitchOption, QdTabSelectionEvent, QdTableChipDataValue, QdTableConfig, QdTableConfigColumn, QdTableConfigSelection, QdTableContentDataChip, QdTableContentDataChipObject, QdTableData, QdTableDataResolver, QdTableDataResolverProps, QdTableDataRow, QdTableDataValue, QdTableEmptyStateView, QdTableOptionalRefreshingEventTypes, QdTablePagination, QdTablePrimaryAction, QdTableRecentSecondaryAction, QdTableResolvedData, QdTableRowIdentifier, QdTableRowIndex, QdTableRowUid, QdTableSecondaryAction, QdTableSelectedRow, QdTableSelectedRows, QdTableStateSort, QdTableStatusDataValue, QdTileConfig, QdTilesConfig, QdTooltip, QdTranslatable, QdTranslation, QdTreeConfig, QdTreeData, QdTreeDataRow, QdTreeDataValue, QdUploadError, QdUploadProgress };
17984
+ 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, 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 };
17985
+ 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",
3
+ "version": "20.13.0",
4
4
  "exports": {
5
5
  "./jest-preset": "./jest-preset.js",
6
6
  "./package.json": {