@quadrel-enterprise-ui/framework 20.11.2 → 20.12.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';
@@ -1190,6 +1191,193 @@ declare class QdPushEventsService {
1190
1191
  static ɵprov: i0.ɵɵInjectableDeclaration<QdPushEventsService>;
1191
1192
  }
1192
1193
 
1194
+ /**
1195
+ * Framework-wide funnel for syncing application state with the URL `?key=value` query string.
1196
+ *
1197
+ * Several Quadrel features mirror their state to the URL — the table's sort and pagination today,
1198
+ * filter, search, and `qd-page-tabs` over time. Without coordination they each call
1199
+ * `router.navigate(...)` directly, which produces two failure modes:
1200
+ *
1201
+ * 1. **Race**: two navigates issued in the same JS turn cancel each other. Only the last writer
1202
+ * wins; the URL silently loses the cancelled feature's params.
1203
+ * 2. **History pollution**: a single user action that changes two features (e.g. clicking a sort
1204
+ * header resets the page index) ends up as two history entries. Browser-back only undoes one.
1205
+ *
1206
+ * `QdRouterQueryParamHubService` is the single funnel through which features run their query-param
1207
+ * reads and writes. It does three jobs:
1208
+ *
1209
+ * - **Ownership** — `claim()` / `release()` enforce one writer per param key, app-wide.
1210
+ * - **Shared reads** — `queryParams()` and `snapshotQueryParam()` expose the route state without
1211
+ * each feature needing its own `ActivatedRoute` subscription.
1212
+ * - **Coordinated writes** — `write()` buffers param updates within a microtask and serializes
1213
+ * navigations via a Promise chain, so two writes in the same JS turn become one history entry
1214
+ * and concurrent writes never race.
1215
+ *
1216
+ * The hub is feature-agnostic. Per-feature adapters (e.g. `QdTableSortRouterConnectorService`)
1217
+ * own their parsing/serialization and delegate the URL plumbing to the hub.
1218
+ *
1219
+ * ### Usage
1220
+ *
1221
+ * ```ts
1222
+ * @Injectable()
1223
+ * export class FilterRouterAdapterService {
1224
+ * private readonly _hub = inject(QdRouterQueryParamHubService);
1225
+ * private readonly _destroyRef = inject(DestroyRef);
1226
+ *
1227
+ * connect(state$: Observable<FilterState>, dispatch: (state: FilterState) => void): void {
1228
+ * if (!this._hub.isAvailable()) return;
1229
+ * if (!this._hub.claim(['filter'], this, this._destroyRef)) return;
1230
+ *
1231
+ * this._hub
1232
+ * .queryParams()
1233
+ * .pipe(takeUntilDestroyed(this._destroyRef))
1234
+ * .subscribe(params => dispatch(parseFilter(params['filter'])));
1235
+ *
1236
+ * state$
1237
+ * .pipe(takeUntilDestroyed(this._destroyRef))
1238
+ * .subscribe(state => this._hub.write({ filter: serializeFilter(state) }, false));
1239
+ * }
1240
+ * }
1241
+ * ```
1242
+ */
1243
+ declare class QdRouterQueryParamHubService {
1244
+ /**
1245
+ * Replays whenever the router has finished a navigation (`NavigationEnd`, `NavigationCancel`
1246
+ * or `NavigationError` — every event that ends a navigation, regardless of outcome).
1247
+ * Adapters that want to delay a write until any in-flight navigation has settled can take(1)
1248
+ * on this stream before calling `write()`.
1249
+ *
1250
+ * Late subscribers receive the most recent settling event immediately, so an adapter that
1251
+ * mounts after the initial route navigation can observe the route as already-settled. The
1252
+ * first replayed tick may represent that initial route navigation rather than a user-driven
1253
+ * settling event — adapters that need to distinguish "the route just changed" should compare
1254
+ * `ActivatedRoute.snapshot` themselves.
1255
+ *
1256
+ * **When the hub is unavailable** (no `Router` / `ActivatedRoute` in the injector — see
1257
+ * `isAvailable()`) this observable never emits. Adapters that compose `navigationSettled$`
1258
+ * via operators like `switchMap` or `concat` must guard with `isAvailable()` first, otherwise
1259
+ * their pipelines hang silently.
1260
+ */
1261
+ readonly navigationSettled$: Observable<void>;
1262
+ private readonly _router;
1263
+ private readonly _activatedRoute;
1264
+ private readonly _destroyRef;
1265
+ private readonly _ownership;
1266
+ private readonly _destroyClaims;
1267
+ private readonly _navigationSettledSubject;
1268
+ private _pendingParams;
1269
+ private _pendingReplaceUrl;
1270
+ private _flushScheduled;
1271
+ private _navigationChain;
1272
+ constructor();
1273
+ /**
1274
+ * Returns whether the hub can sync at all. False when the consuming injector has neither a
1275
+ * `Router` nor an `ActivatedRoute` available — for example in unit tests that omit
1276
+ * `RouterTestingModule`. Adapters should bail out early when this returns false.
1277
+ */
1278
+ isAvailable(): boolean;
1279
+ /**
1280
+ * Reserves exclusive write access to the given query-param keys for `owner`.
1281
+ *
1282
+ * The same `owner` may claim the same keys repeatedly without conflict — claims are idempotent
1283
+ * per owner. A different owner attempting to claim an already-claimed key fails: the hub logs
1284
+ * a `console.error` listing every contested key and returns `false`. The original owner keeps
1285
+ * the keys until it calls `release()` (or until its `DestroyRef` fires, if a `destroyRef` is
1286
+ * passed here).
1287
+ *
1288
+ * Atomicity: when the call fails, no keys are claimed, even partially. The hub checks every
1289
+ * requested key against the registry before mutating anything.
1290
+ *
1291
+ * **Pass `destroyRef` to opt into auto-release.** Without it, the hub keeps a strong reference
1292
+ * to `owner` until `release()` is called manually — a destroyed adapter that forgets to release
1293
+ * pins itself in the registry. Passing the adapter's `DestroyRef` registers an `onDestroy`
1294
+ * callback that releases exactly the keys claimed via this call (and any later claims that
1295
+ * reuse the same `destroyRef`), which is the recommended path.
1296
+ *
1297
+ * Each `destroyRef` releases only the keys it owns. If the same owner uses two different
1298
+ * `DestroyRef`s in two `claim()` calls, each fires independently and only releases its own
1299
+ * keys — keys claimed via the still-alive `destroyRef` stay reserved.
1300
+ *
1301
+ * Re-claiming with the same `destroyRef` appends to the same destroy listener — no duplicate
1302
+ * listeners are registered, even when the second claim names a different owner. Each appended
1303
+ * entry carries its own owner, so when the `destroyRef` fires the hub releases each entry's
1304
+ * keys against that entry's owner. An empty `keys` array is a no-op even when `destroyRef`
1305
+ * is provided: no listener is attached, so the hub does not pin a destroy hook that would
1306
+ * release nothing.
1307
+ *
1308
+ * @param keys The query-param keys this adapter wants to own (e.g. `['sort']`, `['page', 'size']`).
1309
+ * @param owner Stable identity of the caller — usually `this`. Used as the registry key.
1310
+ * @param destroyRef Optional. If provided, the hub releases the keys automatically when the
1311
+ * `DestroyRef` fires. Pass the adapter's `inject(DestroyRef)` to make leaks impossible.
1312
+ * @returns `true` if every requested key is now owned by `owner`. `false` if at least one key
1313
+ * was already owned by a different adapter; the registry is left untouched and `destroyRef`
1314
+ * is not registered.
1315
+ */
1316
+ claim(keys: readonly string[], owner: object, destroyRef?: DestroyRef): boolean;
1317
+ /**
1318
+ * Drops `owner`'s claim on the given keys. Keys not owned by `owner` are left untouched —
1319
+ * a foreign release call cannot steal another adapter's ownership.
1320
+ *
1321
+ * Adapters typically release in their `DestroyRef.onDestroy` callback so a destroyed component
1322
+ * frees its keys for the next adapter that mounts.
1323
+ */
1324
+ release(keys: readonly string[], owner: object): void;
1325
+ /**
1326
+ * Reactive view of `ActivatedRoute.queryParams`. Returns the empty observable if the hub is
1327
+ * not available (no Router/ActivatedRoute). Adapters subscribe here instead of injecting
1328
+ * `ActivatedRoute` themselves so the hub stays the single read funnel.
1329
+ *
1330
+ * The observable is hot — late subscribers receive the current params immediately.
1331
+ */
1332
+ queryParams(): Observable<Params>;
1333
+ /**
1334
+ * Synchronous read of a single query param from the latest `ActivatedRoute` snapshot.
1335
+ * Adapters use this to detect "URL already matches the desired state" and skip a redundant
1336
+ * `write()`.
1337
+ *
1338
+ * @returns The param value, or `undefined` if the param is missing or the hub is unavailable.
1339
+ */
1340
+ snapshotQueryParam(key: string): string | undefined;
1341
+ /**
1342
+ * Schedules a query-param update.
1343
+ *
1344
+ * Two coordination guarantees:
1345
+ *
1346
+ * - **Microtask batching** — every `write()` issued in the same JavaScript turn is merged into
1347
+ * a single `router.navigate(...)` call. A user action that changes two features at once
1348
+ * (e.g. sort change resets the page) becomes one history entry, not two. Note: batching is
1349
+ * per JS turn, not per logical user action — writes that fall into the next microtask after
1350
+ * a settled navigation produce a separate history entry, even when they belong to the same
1351
+ * conceptual gesture.
1352
+ * - **Serialized navigations** — flushes are chained on a Promise so a second flush only fires
1353
+ * after the previous `router.navigate` has settled. Concurrent navigates can therefore not
1354
+ * cancel each other. A rejected `router.navigate` (cancelled by a guard, redirected, or
1355
+ * failed) does not stop the chain — the next pending flush still runs. Rejections are not
1356
+ * logged here; consumers that need routing diagnostics should subscribe to `router.events`.
1357
+ *
1358
+ * Adapters are still responsible for skipping no-op writes (compare the desired value against
1359
+ * `snapshotQueryParam()` first), since the hub does not deduplicate identical values.
1360
+ *
1361
+ * Setting a param value to `undefined` removes the param from the URL via Angular Router's
1362
+ * `merge` behavior. Other params not mentioned in the call are preserved.
1363
+ *
1364
+ * @param params Partial map of query-param keys to their new values. Missing keys are not touched.
1365
+ * An empty object short-circuits and is a no-op.
1366
+ * @param replaceUrl `true` replaces the current history entry; `false` pushes a new entry.
1367
+ * When several `write()` calls in the same microtask disagree, `true` wins (so an initial
1368
+ * replace is preserved when a follow-up write would otherwise push). The escalation is
1369
+ * per-batch — after each flush the pending flag resets to `false`, so writes that arrive
1370
+ * in the next microtask start a fresh batch with their own `replaceUrl` argument.
1371
+ */
1372
+ write(params: Record<string, string | undefined>, replaceUrl: boolean): void;
1373
+ private replayCurrentRouterStateForLateSubscribers;
1374
+ private forwardSettlingRouterEventsToNavigationSettled;
1375
+ private registerAutoRelease;
1376
+ private flush;
1377
+ static ɵfac: i0.ɵɵFactoryDeclaration<QdRouterQueryParamHubService, never>;
1378
+ static ɵprov: i0.ɵɵInjectableDeclaration<QdRouterQueryParamHubService>;
1379
+ }
1380
+
1193
1381
  declare class QdViewportAdaptiveDirective {
1194
1382
  static ɵfac: i0.ɵɵFactoryDeclaration<QdViewportAdaptiveDirective, never>;
1195
1383
  static ɵdir: i0.ɵɵDirectiveDeclaration<QdViewportAdaptiveDirective, "[qdViewportAdaptive]", never, {}, {}, never, never, false, never>;
@@ -3962,6 +4150,13 @@ interface QdTableConfig<T extends string> {
3962
4150
  * @description Activates a pagination with configurable available page sizes
3963
4151
  */
3964
4152
  pagination?: true | QdTablePagination;
4153
+ /**
4154
+ * @description Configures table-level sorting behavior. Per-column sortability
4155
+ * remains configured via the `sort` property on each column (see
4156
+ * `QdTableConfigColumnSort`). Pass `true` to enable defaults, or an object to
4157
+ * tune individual options such as `connectWithRouter`.
4158
+ */
4159
+ sort?: true | QdTableSort;
3965
4160
  /**
3966
4161
  * @description Sets an alternative view if no elements are available in QdTableData
3967
4162
  */
@@ -4188,6 +4383,59 @@ interface QdTablePagination {
4188
4383
  * * @default: false
4189
4384
  */
4190
4385
  hasFirstLastPageNavigation?: boolean;
4386
+ /**
4387
+ * @description Synchronizes pagination state with URL query params (`?page=1&size=25`),
4388
+ * making the table state shareable, bookmarkable and reload-safe.
4389
+ *
4390
+ * **Behavior**
4391
+ * - URL is 1-based, the internal store stays 0-based.
4392
+ * - Initial sync writes defaults via `replaceUrl: true` (no extra history entry).
4393
+ * - User-driven page/size changes push a regular history entry, so browser back works.
4394
+ * - Filter, search and sort reset the page to 1 — the URL syncs accordingly.
4395
+ *
4396
+ * **Validation**
4397
+ * - `page`: positive integer, otherwise falls back to 1.
4398
+ * - `size`: must be one of `pageSizes`; if `pageSizes` is omitted, an internal sanity range applies.
4399
+ * - Invalid values are ignored; the default is used instead.
4400
+ * - Out-of-range pages (e.g. `?page=99` with 5 pages) auto-correct via the resolver.
4401
+ *
4402
+ * **Limitations**
4403
+ * - Only one paginator per view may enable this. Additional paginators stay functional
4404
+ * but skip URL sync and log an error.
4405
+ * - Requires `Router` and `ActivatedRoute` to be available; otherwise the option is
4406
+ * silently ignored and the table paginates locally.
4407
+ * - Multi-table URL sync via param namespacing is not supported.
4408
+ *
4409
+ * * @default false — URL sync is opt-in. Plain `pagination: true` and pagination
4410
+ * objects without `connectWithRouter` stay URL-disconnected. Set
4411
+ * `connectWithRouter: true` to opt in.
4412
+ */
4413
+ connectWithRouter?: boolean;
4414
+ }
4415
+ /**
4416
+ * @description Configuration model for table-level sorting behavior. Configures
4417
+ * how table-wide sorting interacts with the application — for example whether
4418
+ * the active sort is mirrored to the URL.
4419
+ *
4420
+ * Per-column sortability is configured separately via `QdTableConfigColumnSort`
4421
+ * on each column.
4422
+ */
4423
+ interface QdTableSort {
4424
+ /**
4425
+ * @description When `true`, the active sort state is mirrored to the URL
4426
+ * query parameter `sort` and read back from the URL on table init. The data
4427
+ * resolver receives the URL-driven sort on its initial call so deep links
4428
+ * restore the sorted view exactly.
4429
+ *
4430
+ * Only one sort-router connection per page is allowed. Subsequent tables
4431
+ * with `connectWithRouter: true` stay URL-disconnected and a console error
4432
+ * is logged.
4433
+ *
4434
+ * @default false — URL sync is opt-in. Plain `sort: true`, an omitted
4435
+ * `sort` block, or a sort object without `connectWithRouter` stay
4436
+ * URL-disconnected. Set `connectWithRouter: true` to opt in.
4437
+ */
4438
+ connectWithRouter?: boolean;
4191
4439
  }
4192
4440
  /**
4193
4441
  * @description Configuration model for empty state view
@@ -5769,7 +6017,7 @@ type QdInputRawEventValue = QdInputValue | QdInputValueWithUnit | undefined;
5769
6017
  * <qd-datepicker [(value)]="value" [config]="config"></qd-datepicker>
5770
6018
  * ```
5771
6019
  */
5772
- declare class QdDatepickerComponent implements ControlValueAccessor, OnInit, OnChanges, OnDestroy {
6020
+ declare class QdDatepickerComponent implements ControlValueAccessor, OnInit, OnChanges, DoCheck, OnDestroy {
5773
6021
  private readonly actionEmitterService;
5774
6022
  private readonly timePickerService;
5775
6023
  private readonly translateService;
@@ -5861,11 +6109,14 @@ declare class QdDatepickerComponent implements ControlValueAccessor, OnInit, OnC
5861
6109
  timePicker?: QdFormTimepickerConfiguration;
5862
6110
  private _disabledDatesValidator;
5863
6111
  private _disabledTimesValidator;
6112
+ private _boundDisabledDates;
6113
+ private _boundDisabledTimes;
5864
6114
  private _subs;
5865
6115
  private _onChange;
5866
6116
  private _onTouched;
5867
6117
  ngOnInit(): void;
5868
6118
  ngOnChanges(changes: any): void;
6119
+ ngDoCheck(): void;
5869
6120
  ngOnDestroy(): void;
5870
6121
  registerOnChange(fn: () => void): void;
5871
6122
  registerOnTouched(fn: () => void): void;
@@ -5881,6 +6132,8 @@ declare class QdDatepickerComponent implements ControlValueAccessor, OnInit, OnC
5881
6132
  private updateConfiguration;
5882
6133
  private updateDisplayedDate;
5883
6134
  private updateDisplayedDateTime;
6135
+ private rebindDisabledDatesValidatorIfChanged;
6136
+ private rebindDisabledTimesValidatorIfChanged;
5884
6137
  private validateDisabledDates;
5885
6138
  private validateDisabledTimes;
5886
6139
  private isValidDateInput;
@@ -14362,6 +14615,7 @@ declare enum QdPaginatorDirection {
14362
14615
  declare class QdTablePaginatorComponent<T extends string> implements OnInit, OnDestroy {
14363
14616
  private readonly tableDataResolver;
14364
14617
  private readonly tableStoreService;
14618
+ private readonly routerConnector;
14365
14619
  /**
14366
14620
  * @description Configuration Model for Qd-Table.
14367
14621
  */
@@ -14385,10 +14639,25 @@ declare class QdTablePaginatorComponent<T extends string> implements OnInit, OnD
14385
14639
  get hasData$(): Observable<boolean>;
14386
14640
  ngOnInit(): void;
14387
14641
  ngOnDestroy(): void;
14642
+ /**
14643
+ * @description Whether this paginator should sync its state with the URL. Reads
14644
+ * `pagination.connectWithRouter` (default `false` — URL sync is opt-in and
14645
+ * requires an explicit `pagination: { connectWithRouter: true }`).
14646
+ *
14647
+ * Used by `QdTablePaginationRouterConnectorService` to decide whether to claim
14648
+ * the router-singleton for this paginator.
14649
+ */
14650
+ shouldConnectWithRouter(): boolean;
14651
+ /**
14652
+ * @description The effective default page size for this paginator. Resolves
14653
+ * `pagination.pageSizeDefault` first, then falls back to the first entry of
14654
+ * `pagination.pageSizes`, finally to the framework constant `PAGE_SIZE_DEFAULT`.
14655
+ */
14656
+ getPageSizeDefault(): number;
14388
14657
  navigateToPage(direction: QdPaginatorDirection): void;
14389
14658
  private isConfigValid;
14659
+ private startPagination;
14390
14660
  private initPagination;
14391
- private getPageSizeDefault;
14392
14661
  private calculatePageNumber;
14393
14662
  static ɵfac: i0.ɵɵFactoryDeclaration<QdTablePaginatorComponent<any>, never>;
14394
14663
  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 +14782,7 @@ declare class QdTableComponent<T extends string> implements OnInit, OnChanges, O
14513
14782
  private readonly breakpointService;
14514
14783
  private readonly resolverService;
14515
14784
  private readonly confirmationDialogService;
14785
+ private readonly sortRouterConnector;
14516
14786
  /**
14517
14787
  * Configuration of the table. The generic type specifies the column definition. <br />
14518
14788
  *
@@ -17680,5 +17950,5 @@ declare class QdUiModule {
17680
17950
 
17681
17951
  declare const APP_ENVIRONMENT: InjectionToken<QdAppEnvironment>;
17682
17952
 
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 };
17953
+ 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 };
17954
+ 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.12.0",
4
4
  "exports": {
5
5
  "./jest-preset": "./jest-preset.js",
6
6
  "./package.json": {