@quadrel-enterprise-ui/framework 20.11.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, 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';
@@ -957,6 +958,16 @@ declare enum QdCalendarMode {
957
958
  MonthPicker = 2
958
959
  }
959
960
 
961
+ declare class QdViewportAdaptiveDirective {
962
+ static ɵfac: i0.ɵɵFactoryDeclaration<QdViewportAdaptiveDirective, never>;
963
+ static ɵdir: i0.ɵɵDirectiveDeclaration<QdViewportAdaptiveDirective, "[qdViewportAdaptive]", never, {}, {}, never, never, false, never>;
964
+ }
965
+
966
+ declare class QdDisabledDirective {
967
+ static ɵfac: i0.ɵɵFactoryDeclaration<QdDisabledDirective, never>;
968
+ static ɵdir: i0.ɵɵDirectiveDeclaration<QdDisabledDirective, "[qdDisabled]", never, {}, {}, never, never, false, never>;
969
+ }
970
+
960
971
  /**
961
972
  * Represents the QdAppEnvironment configuration.
962
973
  */
@@ -981,9 +992,27 @@ type QdAppEnvironment = {
981
992
  disableBackendNotifications?: boolean;
982
993
  };
983
994
 
984
- declare class QdDisabledDirective {
985
- static ɵfac: i0.ɵɵFactoryDeclaration<QdDisabledDirective, never>;
986
- static ɵdir: i0.ɵɵDirectiveDeclaration<QdDisabledDirective, "[qdDisabled]", never, {}, {}, never, never, false, never>;
995
+ declare const QD_SAFE_BOTTOM_OFFSET: InjectionToken<BehaviorSubject<number>>;
996
+
997
+ type i18n = string;
998
+ interface QdTranslatable {
999
+ /**
1000
+ * @description Defines the translation key
1001
+ */
1002
+ i18n: i18n;
1003
+ /**
1004
+ * @description Alternative to i18n translations, used when translations are provided from the backend
1005
+ */
1006
+ translation?: QdTranslation;
1007
+ }
1008
+ /**
1009
+ * @description Translations originating from the backend
1010
+ */
1011
+ interface QdTranslation {
1012
+ de: string;
1013
+ fr: string;
1014
+ it: string;
1015
+ en: string;
987
1016
  }
988
1017
 
989
1018
  declare class QdFileSizePipe$1 implements PipeTransform {
@@ -999,6 +1028,8 @@ declare class QdPlaceholderPipe implements PipeTransform {
999
1028
  static ɵpipe: i0.ɵɵPipeDeclaration<QdPlaceholderPipe, "placeholder", false>;
1000
1029
  }
1001
1030
 
1031
+ declare const QD_POPOVER_TOP_FIRST: InjectionToken<boolean>;
1032
+
1002
1033
  declare class QdProjectionGuardComponent implements AfterContentInit, AfterViewInit {
1003
1034
  private elementRef;
1004
1035
  isDisabled: boolean;
@@ -1015,63 +1046,31 @@ declare class QdRwdDisabledDirective {
1015
1046
  static ɵdir: i0.ɵɵDirectiveDeclaration<QdRwdDisabledDirective, "[qdRwdDisabled]", never, {}, {}, never, never, false, never>;
1016
1047
  }
1017
1048
 
1018
- /**
1019
- * QdTooltipAtIntersectionDirective provides a tooltip. This will be triggered if the content is intersected.
1020
- *
1021
- * * Selector: [qdTooltipAtIntersection]
1022
- * * Target Selector: .qd-intersection-target
1023
- *
1024
- * The IntersectionObserver API is used for the implementation.
1025
- * * @see https://developer.mozilla.org/en-US/docs/Web/API/IntersectionObserver
1026
- *
1027
- * * Note: The intersection of the target is calculated by the IntersectionObserver only once, initially (can be extended later if required). After that it will be unsubscribed immediately.
1028
- * */
1029
- declare class QdTooltipAtIntersectionDirective implements AfterViewInit, OnDestroy {
1030
- private _host;
1031
- private _positionBuilder;
1032
- private _overlay;
1033
- private _overlayRef;
1034
- private _target;
1035
- private _observer$;
1036
- private _isIntersected;
1037
- private _destroyed$;
1038
- ngAfterViewInit(): void;
1039
- ngOnDestroy(): void;
1040
- private setTarget;
1041
- private observeTarget;
1042
- private _setStyles;
1043
- private createOverlay;
1044
- private subscribeShow;
1045
- private subscribeHide;
1046
- private getContent;
1047
- static ɵfac: i0.ɵɵFactoryDeclaration<QdTooltipAtIntersectionDirective, never>;
1048
- static ɵdir: i0.ɵɵDirectiveDeclaration<QdTooltipAtIntersectionDirective, "[qdTooltipAtIntersection]", never, {}, {}, never, never, false, never>;
1049
- }
1050
-
1051
- type i18n = string;
1052
- interface QdTranslatable {
1053
- /**
1054
- * @description Defines the translation key
1055
- */
1056
- i18n: i18n;
1057
- /**
1058
- * @description Alternative to i18n translations, used when translations are provided from the backend
1059
- */
1060
- translation?: QdTranslation;
1061
- }
1062
- /**
1063
- * @description Translations originating from the backend
1064
- */
1065
- interface QdTranslation {
1066
- de: string;
1067
- fr: string;
1068
- it: string;
1069
- en: string;
1070
- }
1071
-
1072
- declare class QdVisuallyHiddenDirective {
1073
- static ɵfac: i0.ɵɵFactoryDeclaration<QdVisuallyHiddenDirective, never>;
1074
- static ɵdir: i0.ɵɵDirectiveDeclaration<QdVisuallyHiddenDirective, "[qdVisuallyHidden]", never, {}, {}, never, never, false, never>;
1049
+ declare class QdNumberInputService {
1050
+ private _locale;
1051
+ private _decimalSeparator;
1052
+ private _groupSeparator;
1053
+ private readonly localeService;
1054
+ private readonly destroyRef;
1055
+ readonly ambiguityHintKeyDot = "i18n.qd.input.number.ambiguousHint.dot";
1056
+ readonly ambiguityHintKeyComma = "i18n.qd.input.number.ambiguousHint.comma";
1057
+ readonly invalidCharactersErrorKeyComma = "i18n.qd.input.number.invalidCharacters.comma";
1058
+ readonly invalidCharactersErrorKeyDot = "i18n.qd.input.number.invalidCharacters.dot";
1059
+ get invalidCharactersErrorKey(): string;
1060
+ get decimalSeparator(): string;
1061
+ get groupSeparator(): string;
1062
+ constructor();
1063
+ detectSeparators(): void;
1064
+ isValidNumber(value: string): boolean;
1065
+ private detectSeparatorsForLocale;
1066
+ filterValue(value: string): string;
1067
+ parseValue(value: string): number | string;
1068
+ isAmbiguous(value: QdInputValue): boolean;
1069
+ getAmbiguityHintKey(value: QdInputValue): string;
1070
+ formatNumberForViewonly(value: QdInputValue): string;
1071
+ formatValueForDisplay(value: QdInputValue): string;
1072
+ static ɵfac: i0.ɵɵFactoryDeclaration<QdNumberInputService, never>;
1073
+ static ɵprov: i0.ɵɵInjectableDeclaration<QdNumberInputService>;
1075
1074
  }
1076
1075
 
1077
1076
  type QdPushEventName = 'RESOURCE_CREATED' | 'RESOURCE_UPDATED' | 'RESOURCE_DELETED';
@@ -1190,9 +1189,191 @@ declare class QdPushEventsService {
1190
1189
  static ɵprov: i0.ɵɵInjectableDeclaration<QdPushEventsService>;
1191
1190
  }
1192
1191
 
1193
- declare class QdViewportAdaptiveDirective {
1194
- static ɵfac: i0.ɵɵFactoryDeclaration<QdViewportAdaptiveDirective, never>;
1195
- static ɵdir: i0.ɵɵDirectiveDeclaration<QdViewportAdaptiveDirective, "[qdViewportAdaptive]", never, {}, {}, never, never, false, never>;
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>;
1196
1377
  }
1197
1378
 
1198
1379
  /**
@@ -1225,6 +1406,39 @@ interface QdTooltip {
1225
1406
  hidden?: boolean;
1226
1407
  }
1227
1408
 
1409
+ /**
1410
+ * QdTooltipAtIntersectionDirective provides a tooltip. This will be triggered if the content is intersected.
1411
+ *
1412
+ * * Selector: [qdTooltipAtIntersection]
1413
+ * * Target Selector: .qd-intersection-target
1414
+ *
1415
+ * The IntersectionObserver API is used for the implementation.
1416
+ * * @see https://developer.mozilla.org/en-US/docs/Web/API/IntersectionObserver
1417
+ *
1418
+ * * Note: The intersection of the target is calculated by the IntersectionObserver only once, initially (can be extended later if required). After that it will be unsubscribed immediately.
1419
+ * */
1420
+ declare class QdTooltipAtIntersectionDirective implements AfterViewInit, OnDestroy {
1421
+ private _host;
1422
+ private _positionBuilder;
1423
+ private _overlay;
1424
+ private _overlayRef;
1425
+ private _target;
1426
+ private _observer$;
1427
+ private _isIntersected;
1428
+ private _destroyed$;
1429
+ ngAfterViewInit(): void;
1430
+ ngOnDestroy(): void;
1431
+ private setTarget;
1432
+ private observeTarget;
1433
+ private _setStyles;
1434
+ private createOverlay;
1435
+ private subscribeShow;
1436
+ private subscribeHide;
1437
+ private getContent;
1438
+ static ɵfac: i0.ɵɵFactoryDeclaration<QdTooltipAtIntersectionDirective, never>;
1439
+ static ɵdir: i0.ɵɵDirectiveDeclaration<QdTooltipAtIntersectionDirective, "[qdTooltipAtIntersection]", never, {}, {}, never, never, false, never>;
1440
+ }
1441
+
1228
1442
  declare class QdTooltipIconComponent {
1229
1443
  tooltip?: QdTooltip;
1230
1444
  get isVisible(): boolean;
@@ -1232,9 +1446,10 @@ declare class QdTooltipIconComponent {
1232
1446
  static ɵcmp: i0.ɵɵComponentDeclaration<QdTooltipIconComponent, "qd-tooltip-icon", never, { "tooltip": { "alias": "tooltip"; "required": false; }; }, {}, never, never, false, never>;
1233
1447
  }
1234
1448
 
1235
- declare const QD_SAFE_BOTTOM_OFFSET: InjectionToken<BehaviorSubject<number>>;
1236
-
1237
- declare const QD_POPOVER_TOP_FIRST: InjectionToken<boolean>;
1449
+ declare class QdVisuallyHiddenDirective {
1450
+ static ɵfac: i0.ɵɵFactoryDeclaration<QdVisuallyHiddenDirective, never>;
1451
+ static ɵdir: i0.ɵɵDirectiveDeclaration<QdVisuallyHiddenDirective, "[qdVisuallyHidden]", never, {}, {}, never, never, false, never>;
1452
+ }
1238
1453
 
1239
1454
  /**
1240
1455
  * The **QdChip** component can visualize different statuses.
@@ -3962,6 +4177,13 @@ interface QdTableConfig<T extends string> {
3962
4177
  * @description Activates a pagination with configurable available page sizes
3963
4178
  */
3964
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;
3965
4187
  /**
3966
4188
  * @description Sets an alternative view if no elements are available in QdTableData
3967
4189
  */
@@ -4188,6 +4410,59 @@ interface QdTablePagination {
4188
4410
  * * @default: false
4189
4411
  */
4190
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;
4191
4466
  }
4192
4467
  /**
4193
4468
  * @description Configuration model for empty state view
@@ -5769,7 +6044,7 @@ type QdInputRawEventValue = QdInputValue | QdInputValueWithUnit | undefined;
5769
6044
  * <qd-datepicker [(value)]="value" [config]="config"></qd-datepicker>
5770
6045
  * ```
5771
6046
  */
5772
- declare class QdDatepickerComponent implements ControlValueAccessor, OnInit, OnChanges, OnDestroy {
6047
+ declare class QdDatepickerComponent implements ControlValueAccessor, OnInit, OnChanges, DoCheck, OnDestroy {
5773
6048
  private readonly actionEmitterService;
5774
6049
  private readonly timePickerService;
5775
6050
  private readonly translateService;
@@ -5861,11 +6136,14 @@ declare class QdDatepickerComponent implements ControlValueAccessor, OnInit, OnC
5861
6136
  timePicker?: QdFormTimepickerConfiguration;
5862
6137
  private _disabledDatesValidator;
5863
6138
  private _disabledTimesValidator;
6139
+ private _boundDisabledDates;
6140
+ private _boundDisabledTimes;
5864
6141
  private _subs;
5865
6142
  private _onChange;
5866
6143
  private _onTouched;
5867
6144
  ngOnInit(): void;
5868
6145
  ngOnChanges(changes: any): void;
6146
+ ngDoCheck(): void;
5869
6147
  ngOnDestroy(): void;
5870
6148
  registerOnChange(fn: () => void): void;
5871
6149
  registerOnTouched(fn: () => void): void;
@@ -5881,6 +6159,8 @@ declare class QdDatepickerComponent implements ControlValueAccessor, OnInit, OnC
5881
6159
  private updateConfiguration;
5882
6160
  private updateDisplayedDate;
5883
6161
  private updateDisplayedDateTime;
6162
+ private rebindDisabledDatesValidatorIfChanged;
6163
+ private rebindDisabledTimesValidatorIfChanged;
5884
6164
  private validateDisabledDates;
5885
6165
  private validateDisabledTimes;
5886
6166
  private isValidDateInput;
@@ -6626,6 +6906,7 @@ declare class QdInputComponent implements OnInit, OnChanges, OnDestroy, ControlV
6626
6906
  private readonly resolverRegistry;
6627
6907
  private readonly controlContainer;
6628
6908
  private readonly eventBrokerService;
6909
+ private readonly numberInputService;
6629
6910
  /**
6630
6911
  * The form control name can be assigned here if you want to use Reactive Forms.
6631
6912
  */
@@ -6696,9 +6977,11 @@ declare class QdInputComponent implements OnInit, OnChanges, OnDestroy, ControlV
6696
6977
  areUnitsOpened: boolean;
6697
6978
  get hasError(): boolean;
6698
6979
  get isErrorFromOutside(): boolean;
6980
+ get isAmbiguousState(): boolean;
6699
6981
  inputElement: ElementRef;
6700
6982
  inputType: QdInputType;
6701
6983
  inputMode: QdInputMode;
6984
+ htmlInputType: string;
6702
6985
  placeholder: string;
6703
6986
  label: string;
6704
6987
  hint: string;
@@ -6710,10 +6993,13 @@ declare class QdInputComponent implements OnInit, OnChanges, OnDestroy, ControlV
6710
6993
  control: AbstractControl | QdFormControl<any>;
6711
6994
  private _optionsResolver;
6712
6995
  private _subs;
6996
+ private _isUserTyped;
6713
6997
  private _onChange;
6714
6998
  private _onTouch;
6715
6999
  get hasOnlyUnitsError(): boolean;
6716
7000
  get hasUnits(): boolean;
7001
+ get ambiguityHintKey(): string;
7002
+ get isAmbiguousInput(): boolean;
6717
7003
  get numberOfCharacters(): number;
6718
7004
  get hasMaxLength(): boolean;
6719
7005
  get maxLength(): number;
@@ -14362,6 +14648,7 @@ declare enum QdPaginatorDirection {
14362
14648
  declare class QdTablePaginatorComponent<T extends string> implements OnInit, OnDestroy {
14363
14649
  private readonly tableDataResolver;
14364
14650
  private readonly tableStoreService;
14651
+ private readonly routerConnector;
14365
14652
  /**
14366
14653
  * @description Configuration Model for Qd-Table.
14367
14654
  */
@@ -14385,10 +14672,25 @@ declare class QdTablePaginatorComponent<T extends string> implements OnInit, OnD
14385
14672
  get hasData$(): Observable<boolean>;
14386
14673
  ngOnInit(): void;
14387
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;
14388
14690
  navigateToPage(direction: QdPaginatorDirection): void;
14389
14691
  private isConfigValid;
14692
+ private startPagination;
14390
14693
  private initPagination;
14391
- private getPageSizeDefault;
14392
14694
  private calculatePageNumber;
14393
14695
  static ɵfac: i0.ɵɵFactoryDeclaration<QdTablePaginatorComponent<any>, never>;
14394
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>;
@@ -14513,6 +14815,7 @@ declare class QdTableComponent<T extends string> implements OnInit, OnChanges, O
14513
14815
  private readonly breakpointService;
14514
14816
  private readonly resolverService;
14515
14817
  private readonly confirmationDialogService;
14818
+ private readonly sortRouterConnector;
14516
14819
  /**
14517
14820
  * Configuration of the table. The generic type specifies the column definition. <br />
14518
14821
  *
@@ -16956,6 +17259,7 @@ declare class QdShellServiceNavigationComponent implements OnInit, OnDestroy, Af
16956
17259
  private _config;
16957
17260
  private _destroyed$;
16958
17261
  private _attributesHaveBeenSet$;
17262
+ private readonly localeService;
16959
17263
  ngOnInit(): void;
16960
17264
  private setPamsEnvironment;
16961
17265
  private logPamsEnvironmentMissingError;
@@ -17680,5 +17984,5 @@ declare class QdUiModule {
17680
17984
 
17681
17985
  declare const APP_ENVIRONMENT: InjectionToken<QdAppEnvironment>;
17682
17986
 
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 };
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.1",
3
+ "version": "20.11.2-beta.152.1",
4
4
  "exports": {
5
5
  "./jest-preset": "./jest-preset.js",
6
6
  "./package.json": {