@quadrel-enterprise-ui/framework 20.11.0 → 20.11.2-beta.150.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, OnDestroy, OnChanges, AfterViewChecked, SimpleChanges, AfterContentChecked, Injector, ElementRef, QueryList, DoCheck, NgIterable, ViewContainerRef, TrackByFunction, Type, DestroyRef, 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';
@@ -957,6 +957,16 @@ declare enum QdCalendarMode {
957
957
  MonthPicker = 2
958
958
  }
959
959
 
960
+ declare class QdViewportAdaptiveDirective {
961
+ static ɵfac: i0.ɵɵFactoryDeclaration<QdViewportAdaptiveDirective, never>;
962
+ static ɵdir: i0.ɵɵDirectiveDeclaration<QdViewportAdaptiveDirective, "[qdViewportAdaptive]", never, {}, {}, never, never, false, never>;
963
+ }
964
+
965
+ declare class QdDisabledDirective {
966
+ static ɵfac: i0.ɵɵFactoryDeclaration<QdDisabledDirective, never>;
967
+ static ɵdir: i0.ɵɵDirectiveDeclaration<QdDisabledDirective, "[qdDisabled]", never, {}, {}, never, never, false, never>;
968
+ }
969
+
960
970
  /**
961
971
  * Represents the QdAppEnvironment configuration.
962
972
  */
@@ -981,9 +991,27 @@ type QdAppEnvironment = {
981
991
  disableBackendNotifications?: boolean;
982
992
  };
983
993
 
984
- declare class QdDisabledDirective {
985
- static ɵfac: i0.ɵɵFactoryDeclaration<QdDisabledDirective, never>;
986
- static ɵdir: i0.ɵɵDirectiveDeclaration<QdDisabledDirective, "[qdDisabled]", never, {}, {}, never, never, false, never>;
994
+ declare const QD_SAFE_BOTTOM_OFFSET: InjectionToken<BehaviorSubject<number>>;
995
+
996
+ type i18n = string;
997
+ interface QdTranslatable {
998
+ /**
999
+ * @description Defines the translation key
1000
+ */
1001
+ i18n: i18n;
1002
+ /**
1003
+ * @description Alternative to i18n translations, used when translations are provided from the backend
1004
+ */
1005
+ translation?: QdTranslation;
1006
+ }
1007
+ /**
1008
+ * @description Translations originating from the backend
1009
+ */
1010
+ interface QdTranslation {
1011
+ de: string;
1012
+ fr: string;
1013
+ it: string;
1014
+ en: string;
987
1015
  }
988
1016
 
989
1017
  declare class QdFileSizePipe$1 implements PipeTransform {
@@ -999,6 +1027,8 @@ declare class QdPlaceholderPipe implements PipeTransform {
999
1027
  static ɵpipe: i0.ɵɵPipeDeclaration<QdPlaceholderPipe, "placeholder", false>;
1000
1028
  }
1001
1029
 
1030
+ declare const QD_POPOVER_TOP_FIRST: InjectionToken<boolean>;
1031
+
1002
1032
  declare class QdProjectionGuardComponent implements AfterContentInit, AfterViewInit {
1003
1033
  private elementRef;
1004
1034
  isDisabled: boolean;
@@ -1015,63 +1045,31 @@ declare class QdRwdDisabledDirective {
1015
1045
  static ɵdir: i0.ɵɵDirectiveDeclaration<QdRwdDisabledDirective, "[qdRwdDisabled]", never, {}, {}, never, never, false, never>;
1016
1046
  }
1017
1047
 
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>;
1048
+ declare class QdNumberInputService {
1049
+ private _locale;
1050
+ private _decimalSeparator;
1051
+ private _groupSeparator;
1052
+ private readonly localeService;
1053
+ private readonly destroyRef;
1054
+ readonly ambiguityHintKeyDot = "i18n.qd.input.number.ambiguousHint.dot";
1055
+ readonly ambiguityHintKeyComma = "i18n.qd.input.number.ambiguousHint.comma";
1056
+ readonly invalidCharactersErrorKeyComma = "i18n.qd.input.number.invalidCharacters.comma";
1057
+ readonly invalidCharactersErrorKeyDot = "i18n.qd.input.number.invalidCharacters.dot";
1058
+ get invalidCharactersErrorKey(): string;
1059
+ get decimalSeparator(): string;
1060
+ get groupSeparator(): string;
1061
+ constructor();
1062
+ detectSeparators(): void;
1063
+ isValidNumber(value: string): boolean;
1064
+ private detectSeparatorsForLocale;
1065
+ filterValue(value: string): string;
1066
+ parseValue(value: string): number | string;
1067
+ isAmbiguous(value: QdInputValue): boolean;
1068
+ getAmbiguityHintKey(value: QdInputValue): string;
1069
+ formatNumberForViewonly(value: QdInputValue): string;
1070
+ formatValueForDisplay(value: QdInputValue): string;
1071
+ static ɵfac: i0.ɵɵFactoryDeclaration<QdNumberInputService, never>;
1072
+ static ɵprov: i0.ɵɵInjectableDeclaration<QdNumberInputService>;
1075
1073
  }
1076
1074
 
1077
1075
  type QdPushEventName = 'RESOURCE_CREATED' | 'RESOURCE_UPDATED' | 'RESOURCE_DELETED';
@@ -1190,11 +1188,6 @@ declare class QdPushEventsService {
1190
1188
  static ɵprov: i0.ɵɵInjectableDeclaration<QdPushEventsService>;
1191
1189
  }
1192
1190
 
1193
- declare class QdViewportAdaptiveDirective {
1194
- static ɵfac: i0.ɵɵFactoryDeclaration<QdViewportAdaptiveDirective, never>;
1195
- static ɵdir: i0.ɵɵDirectiveDeclaration<QdViewportAdaptiveDirective, "[qdViewportAdaptive]", never, {}, {}, never, never, false, never>;
1196
- }
1197
-
1198
1191
  /**
1199
1192
  * @description Defines the content.
1200
1193
  */
@@ -1225,6 +1218,39 @@ interface QdTooltip {
1225
1218
  hidden?: boolean;
1226
1219
  }
1227
1220
 
1221
+ /**
1222
+ * QdTooltipAtIntersectionDirective provides a tooltip. This will be triggered if the content is intersected.
1223
+ *
1224
+ * * Selector: [qdTooltipAtIntersection]
1225
+ * * Target Selector: .qd-intersection-target
1226
+ *
1227
+ * The IntersectionObserver API is used for the implementation.
1228
+ * * @see https://developer.mozilla.org/en-US/docs/Web/API/IntersectionObserver
1229
+ *
1230
+ * * 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.
1231
+ * */
1232
+ declare class QdTooltipAtIntersectionDirective implements AfterViewInit, OnDestroy {
1233
+ private _host;
1234
+ private _positionBuilder;
1235
+ private _overlay;
1236
+ private _overlayRef;
1237
+ private _target;
1238
+ private _observer$;
1239
+ private _isIntersected;
1240
+ private _destroyed$;
1241
+ ngAfterViewInit(): void;
1242
+ ngOnDestroy(): void;
1243
+ private setTarget;
1244
+ private observeTarget;
1245
+ private _setStyles;
1246
+ private createOverlay;
1247
+ private subscribeShow;
1248
+ private subscribeHide;
1249
+ private getContent;
1250
+ static ɵfac: i0.ɵɵFactoryDeclaration<QdTooltipAtIntersectionDirective, never>;
1251
+ static ɵdir: i0.ɵɵDirectiveDeclaration<QdTooltipAtIntersectionDirective, "[qdTooltipAtIntersection]", never, {}, {}, never, never, false, never>;
1252
+ }
1253
+
1228
1254
  declare class QdTooltipIconComponent {
1229
1255
  tooltip?: QdTooltip;
1230
1256
  get isVisible(): boolean;
@@ -1232,9 +1258,10 @@ declare class QdTooltipIconComponent {
1232
1258
  static ɵcmp: i0.ɵɵComponentDeclaration<QdTooltipIconComponent, "qd-tooltip-icon", never, { "tooltip": { "alias": "tooltip"; "required": false; }; }, {}, never, never, false, never>;
1233
1259
  }
1234
1260
 
1235
- declare const QD_SAFE_BOTTOM_OFFSET: InjectionToken<BehaviorSubject<number>>;
1236
-
1237
- declare const QD_POPOVER_TOP_FIRST: InjectionToken<boolean>;
1261
+ declare class QdVisuallyHiddenDirective {
1262
+ static ɵfac: i0.ɵɵFactoryDeclaration<QdVisuallyHiddenDirective, never>;
1263
+ static ɵdir: i0.ɵɵDirectiveDeclaration<QdVisuallyHiddenDirective, "[qdVisuallyHidden]", never, {}, {}, never, never, false, never>;
1264
+ }
1238
1265
 
1239
1266
  /**
1240
1267
  * The **QdChip** component can visualize different statuses.
@@ -5769,7 +5796,7 @@ type QdInputRawEventValue = QdInputValue | QdInputValueWithUnit | undefined;
5769
5796
  * <qd-datepicker [(value)]="value" [config]="config"></qd-datepicker>
5770
5797
  * ```
5771
5798
  */
5772
- declare class QdDatepickerComponent implements ControlValueAccessor, OnInit, OnChanges, OnDestroy {
5799
+ declare class QdDatepickerComponent implements ControlValueAccessor, OnInit, OnChanges, DoCheck, OnDestroy {
5773
5800
  private readonly actionEmitterService;
5774
5801
  private readonly timePickerService;
5775
5802
  private readonly translateService;
@@ -5861,11 +5888,14 @@ declare class QdDatepickerComponent implements ControlValueAccessor, OnInit, OnC
5861
5888
  timePicker?: QdFormTimepickerConfiguration;
5862
5889
  private _disabledDatesValidator;
5863
5890
  private _disabledTimesValidator;
5891
+ private _boundDisabledDates;
5892
+ private _boundDisabledTimes;
5864
5893
  private _subs;
5865
5894
  private _onChange;
5866
5895
  private _onTouched;
5867
5896
  ngOnInit(): void;
5868
5897
  ngOnChanges(changes: any): void;
5898
+ ngDoCheck(): void;
5869
5899
  ngOnDestroy(): void;
5870
5900
  registerOnChange(fn: () => void): void;
5871
5901
  registerOnTouched(fn: () => void): void;
@@ -5881,6 +5911,8 @@ declare class QdDatepickerComponent implements ControlValueAccessor, OnInit, OnC
5881
5911
  private updateConfiguration;
5882
5912
  private updateDisplayedDate;
5883
5913
  private updateDisplayedDateTime;
5914
+ private rebindDisabledDatesValidatorIfChanged;
5915
+ private rebindDisabledTimesValidatorIfChanged;
5884
5916
  private validateDisabledDates;
5885
5917
  private validateDisabledTimes;
5886
5918
  private isValidDateInput;
@@ -6626,6 +6658,7 @@ declare class QdInputComponent implements OnInit, OnChanges, OnDestroy, ControlV
6626
6658
  private readonly resolverRegistry;
6627
6659
  private readonly controlContainer;
6628
6660
  private readonly eventBrokerService;
6661
+ private readonly numberInputService;
6629
6662
  /**
6630
6663
  * The form control name can be assigned here if you want to use Reactive Forms.
6631
6664
  */
@@ -6696,9 +6729,11 @@ declare class QdInputComponent implements OnInit, OnChanges, OnDestroy, ControlV
6696
6729
  areUnitsOpened: boolean;
6697
6730
  get hasError(): boolean;
6698
6731
  get isErrorFromOutside(): boolean;
6732
+ get isAmbiguousState(): boolean;
6699
6733
  inputElement: ElementRef;
6700
6734
  inputType: QdInputType;
6701
6735
  inputMode: QdInputMode;
6736
+ htmlInputType: string;
6702
6737
  placeholder: string;
6703
6738
  label: string;
6704
6739
  hint: string;
@@ -6710,10 +6745,13 @@ declare class QdInputComponent implements OnInit, OnChanges, OnDestroy, ControlV
6710
6745
  control: AbstractControl | QdFormControl<any>;
6711
6746
  private _optionsResolver;
6712
6747
  private _subs;
6748
+ private _isUserTyped;
6713
6749
  private _onChange;
6714
6750
  private _onTouch;
6715
6751
  get hasOnlyUnitsError(): boolean;
6716
6752
  get hasUnits(): boolean;
6753
+ get ambiguityHintKey(): string;
6754
+ get isAmbiguousInput(): boolean;
6717
6755
  get numberOfCharacters(): number;
6718
6756
  get hasMaxLength(): boolean;
6719
6757
  get maxLength(): number;
@@ -9094,6 +9132,33 @@ interface QdPageConfigInspect<T extends object = object> extends QdPageConfigBas
9094
9132
  * @description Information placed in the header of the page. Concerns current shown object.
9095
9133
  */
9096
9134
  headerFacets?: QdPageHeaderFacetConfig<T>[];
9135
+ /**
9136
+ * @description Observable to push partial metadata updates for header facets from outside.
9137
+ * Each emission is shallow-merged into the current object data, so only the fields that
9138
+ * changed need to be emitted. Stream-pushed fields survive subsequent resolver re-runs.
9139
+ *
9140
+ * Create the stream with `createMetadataStream<T>()` — the factory returns a
9141
+ * `ReplaySubject<Partial<T>>(1)` that buffers the latest emission so late subscribers
9142
+ * still receive it. The header subscribes during its own `ngOnInit`, so emissions fired
9143
+ * from the consuming component's `ngOnInit` would be lost without a replay buffer; dev
9144
+ * mode warns when `metadata$` is a plain `Subject`.
9145
+ *
9146
+ * @example
9147
+ * ```ts
9148
+ * private metadataUpdates$ = createMetadataStream<MyObject>();
9149
+ *
9150
+ * pageConfig: QdPageConfig<MyObject> = {
9151
+ * // ...
9152
+ * headerFacets: [...],
9153
+ * metadata$: this.metadataUpdates$
9154
+ * };
9155
+ *
9156
+ * onStatusChange() {
9157
+ * this.metadataUpdates$.next({ status: 'approved' });
9158
+ * }
9159
+ * ```
9160
+ */
9161
+ metadata$?: Observable<Partial<T>>;
9097
9162
  /**
9098
9163
  * @description Determines whether the facets in header should be collapsed and custom actions are in a menu. This mode is designed for touch devices and mobile phones only.
9099
9164
  *
@@ -9116,6 +9181,33 @@ interface QdPageConfigCustom<T extends object = object> extends QdPageConfigBase
9116
9181
  * @description Information placed in the header of the page. Concerns current shown object.
9117
9182
  */
9118
9183
  headerFacets?: QdPageHeaderFacetConfig<T>[];
9184
+ /**
9185
+ * @description Observable to push partial metadata updates for header facets from outside.
9186
+ * Each emission is shallow-merged into the current object data, so only the fields that
9187
+ * changed need to be emitted. Stream-pushed fields survive subsequent resolver re-runs.
9188
+ *
9189
+ * Create the stream with `createMetadataStream<T>()` — the factory returns a
9190
+ * `ReplaySubject<Partial<T>>(1)` that buffers the latest emission so late subscribers
9191
+ * still receive it. The header subscribes during its own `ngOnInit`, so emissions fired
9192
+ * from the consuming component's `ngOnInit` would be lost without a replay buffer; dev
9193
+ * mode warns when `metadata$` is a plain `Subject`.
9194
+ *
9195
+ * @example
9196
+ * ```ts
9197
+ * private metadataUpdates$ = createMetadataStream<MyObject>();
9198
+ *
9199
+ * pageConfig: QdPageConfig<MyObject> = {
9200
+ * // ...
9201
+ * headerFacets: [...],
9202
+ * metadata$: this.metadataUpdates$
9203
+ * };
9204
+ *
9205
+ * onStatusChange() {
9206
+ * this.metadataUpdates$.next({ status: 'approved' });
9207
+ * }
9208
+ * ```
9209
+ */
9210
+ metadata$?: Observable<Partial<T>>;
9119
9211
  /**
9120
9212
  * @description Determines whether the facets in header should be collapsed and custom actions are in a menu. This mode is designed for touch devices and mobile phones only.
9121
9213
  *
@@ -11795,6 +11887,38 @@ declare class QdPageInfoBannerComponent {
11795
11887
  static ɵcmp: i0.ɵɵComponentDeclaration<QdPageInfoBannerComponent, "qd-page-info-banner", never, { "config": { "alias": "config"; "required": true; }; }, {}, never, never, false, never>;
11796
11888
  }
11797
11889
 
11890
+ /**
11891
+ * @description Creates a replay-backed stream for pushing partial header-facet
11892
+ * updates into `QdPageConfig.metadata$`.
11893
+ *
11894
+ * The returned `ReplaySubject<Partial<T>>(1)` buffers the most recent emission
11895
+ * so late subscribers still receive the latest value. The page-header component
11896
+ * subscribes to `metadata$` inside its own `ngOnInit`, which runs AFTER the
11897
+ * consuming page component's `ngOnInit`. Consumers that emit synchronously
11898
+ * during their `ngOnInit` (e.g. from a `combineLatest` over already-populated
11899
+ * store selectors) would otherwise lose that first emission if `metadata$` were
11900
+ * a plain `Subject`.
11901
+ *
11902
+ * @example
11903
+ * ```ts
11904
+ * class MyPageComponent {
11905
+ * private metadataUpdates$ = createMetadataStream<MyObject>();
11906
+ *
11907
+ * pageConfig: QdPageConfig<MyObject> = {
11908
+ * // ...
11909
+ * metadata$: this.metadataUpdates$
11910
+ * };
11911
+ *
11912
+ * ngOnInit(): void {
11913
+ * combineLatest([this.state$, this.data$])
11914
+ * .pipe(map(([state, data]) => this.mapHeader(state, data)))
11915
+ * .subscribe(header => this.metadataUpdates$.next(header));
11916
+ * }
11917
+ * }
11918
+ * ```
11919
+ */
11920
+ declare function createMetadataStream<T>(): ReplaySubject<Partial<T>>;
11921
+
11798
11922
  /**
11799
11923
  * Token for resolving page object data
11800
11924
  */
@@ -11817,6 +11941,11 @@ interface QdPageObjectResolver<T extends object> {
11817
11941
  resolve(): Observable<T>;
11818
11942
  /**
11819
11943
  * Updates the metadata of the page object model. Can be invoked with an action and accepts a partial metadata object.
11944
+ *
11945
+ * @deprecated Use `QdPageConfig.metadata$` instead. Declare an `Observable<Partial<T>>` (typically a `Subject`)
11946
+ * on the page config and emit partial updates through it — the page header subscribes to it and merges each
11947
+ * emission into the current object data. The `updateMetadata` method is kept for backward compatibility and
11948
+ * will be removed in a future major version.
11820
11949
  */
11821
11950
  updateMetadata?(metadata: Partial<T>): void;
11822
11951
  }
@@ -13009,19 +13138,44 @@ declare class QdSectionComponent implements OnInit, AfterViewInit, OnChanges, On
13009
13138
  *
13010
13139
  * #### **Updating Facets**
13011
13140
  *
13012
- * Typically, the values of the facets on a create or inspect page are set to read-only. However, there may be cases where, for example, a status change is needed, such as through a dialog. For this purpose, we have provided an update method. In the resolver service, define an empty method called `updateMetadata`. Inject this service using its type, and then call the `updateMetadata` method with the required parameter.
13141
+ * Typically, the values of the facets on a create or inspect page are set to read-only. If a facet value needs to change at runtime for instance after a status update from a dialog push the partial update through `QdPageConfig.metadata$`. The header subscribes to this observable and shallow-merges every emission into the current object data.
13142
+ *
13143
+ * Create the stream with `createMetadataStream<T>()`. The factory returns a `ReplaySubject<Partial<T>>(1)` that buffers the latest emission, so a value pushed during your component's `ngOnInit` still reaches the header, which subscribes a lifecycle step later. Plain `Subject` silently drops that first emission; dev mode warns when it detects one.
13013
13144
  *
13014
13145
  * **Please note: These values should not be modified directly within a QdPage.**
13015
13146
  *
13016
13147
  * ```ts
13017
- * @Injectable()
13018
- * class MyObjectModelResolver implements QdPageObjectResolver<MyObjectModel> {
13019
- * config: QdPageObjectResolverConfig = {
13020
- * // your configuration options here
13148
+ * @Component({
13149
+ * // ...
13150
+ * providers: [
13151
+ * {
13152
+ * provide: QD_PAGE_OBJECT_RESOLVER_TOKEN,
13153
+ * useClass: MyObjectModelResolver
13154
+ * }
13155
+ * ]
13156
+ * })
13157
+ * class MyPageComponent {
13158
+ * private metadataUpdates$ = createMetadataStream<MyObjectModel>();
13159
+ *
13160
+ * pageConfig: QdPageConfig<MyObjectModel> = {
13161
+ * title: { i18n: 'i18n.page.title' },
13162
+ * pageType: 'inspect',
13163
+ * headerFacets: [ /* ... *\/ ],
13164
+ * metadata$: this.metadataUpdates$,
13165
+ * pageTypeConfig: { /* ... *\/ }
13166
+ * };
13167
+ *
13168
+ * updateStatus() {
13169
+ * this.metadataUpdates$.next({ state: 'Updated' });
13021
13170
  * }
13171
+ * }
13172
+ * ```
13022
13173
  *
13023
- * constructor(private http: HttpClient) {}
13174
+ * Legacy approach (`@deprecated`): the resolver-level `updateMetadata` method is still wired up for backward compatibility, but prefer `metadata$` on the config for new code.
13024
13175
  *
13176
+ * ```ts
13177
+ * @Injectable()
13178
+ * class MyObjectModelResolver implements QdPageObjectResolver<MyObjectModel> {
13025
13179
  * resolve(): Observable<MyObjectModel> {
13026
13180
  * // your implementation here
13027
13181
  * }
@@ -13031,15 +13185,6 @@ declare class QdSectionComponent implements OnInit, AfterViewInit, OnChanges, On
13031
13185
  * }
13032
13186
  * }
13033
13187
  *
13034
- * @Component({
13035
- * // ...
13036
- * providers: [
13037
- * {
13038
- * provide: QD_PAGE_OBJECT_RESOLVER_TOKEN,
13039
- * useClass: MyObjectModelResolver
13040
- * }
13041
- * ]
13042
- * })
13043
13188
  * class MyPageComponent {
13044
13189
  * constructor(@Inject(QD_PAGE_OBJECT_RESOLVER_TOKEN) private objectResolver: MyObjectModelResolver) {}
13045
13190
  *
@@ -13501,6 +13646,9 @@ declare class QdPageObjectHeaderComponent<T extends object> implements OnInit, O
13501
13646
  private _isLoadingSubject;
13502
13647
  private _customActionsSubject;
13503
13648
  private _customActionsSub?;
13649
+ private _metadataSub?;
13650
+ private _pendingMetadata;
13651
+ private _metadataStreamTypeWarned;
13504
13652
  private _destroyed$;
13505
13653
  private _availableContexts;
13506
13654
  pageObjectData$: Observable<T>;
@@ -13547,6 +13695,8 @@ declare class QdPageObjectHeaderComponent<T extends object> implements OnInit, O
13547
13695
  private setupResolverTrigger;
13548
13696
  private initContexts;
13549
13697
  private updateCustomActions;
13698
+ private subscribeToMetadataStream;
13699
+ private warnOnNonReplayMetadataStream;
13550
13700
  private subscribeToViewOnlyMode;
13551
13701
  private getCustomActionsByMode;
13552
13702
  private openCancelDialog;
@@ -16844,6 +16994,7 @@ declare class QdShellServiceNavigationComponent implements OnInit, OnDestroy, Af
16844
16994
  private _config;
16845
16995
  private _destroyed$;
16846
16996
  private _attributesHaveBeenSet$;
16997
+ private readonly localeService;
16847
16998
  ngOnInit(): void;
16848
16999
  private setPamsEnvironment;
16849
17000
  private logPamsEnvironmentMissingError;
@@ -17568,5 +17719,5 @@ declare class QdUiModule {
17568
17719
 
17569
17720
  declare const APP_ENVIRONMENT: InjectionToken<QdAppEnvironment>;
17570
17721
 
17571
- 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, updateHtmlLang };
17722
+ export { APP_ENVIRONMENT, AVAILABLE_ICONS, BACKEND_ERROR_CODES, MockLocaleDatePipe, NavigationTileComponent, NavigationTilesComponent, QD_DIALOG_CONFIRMATION_RESOLVER_TOKEN, QD_FILE_MANAGER_TOKEN, QD_FILE_UPLOAD_MANAGER_TOKEN, QD_FORM_OPTIONS_RESOLVER, QD_PAGE_OBJECT_RESOLVER_TOKEN, QD_PAGE_STEP_RESOLVER_TOKEN, QD_POPOVER_TOP_FIRST, QD_SAFE_BOTTOM_OFFSET, QD_TABLE_DATA_RESOLVER_TOKEN, QD_UPLOAD_HTTP_OPTIONS, QdButtonComponent, QdButtonGhostDirective, QdButtonGridComponent, QdButtonLinkDirective, QdButtonModule, QdButtonStackButtonComponent, QdButtonStackComponent, QdCheckboxChipsComponent, QdCheckboxComponent, QdCheckboxesComponent, QdChipComponent, QdChipModule, QdColumnAutoFillDirective, QdColumnBreakBeforeDirective, QdColumnDirective, QdColumnDisableResponsiveColspansDirective, QdColumnFullGridWidthDirective, QdColumnNextInSameRowDirective, QdColumnsDirective, QdColumnsDisableAutoFillDirective, QdColumnsDisableResponsiveColspansDirective, QdColumnsMaxDirective, QdCommentsComponent, QdCommentsModule, QdConnectFormStateToPageDirective, QdConnectorTableContextDirective, QdConnectorTableFilterDirective, QdConnectorTableSearchDirective, QdContactCardComponent, QdContactCardModule, QdContainerPairsCaptionComponent, QdContainerPairsContainerComponent, QdContainerPairsHeaderComponent, QdContainerPairsItemComponent, QdContainerPairsValueComponent, QdContextService, QdCoreModule, QdDatepickerComponent, QdDialogActionComponent, QdDialogAuthSessionEndComponent, QdDialogAuthSessionEndService, QdDialogComponent, QdDialogConfirmationComponent, QdDialogConfirmationErrorDirective, QdDialogConfirmationInfoDirective, QdDialogConfirmationSuccessDirective, QdDialogModule, QdDialogRecordStepperComponent, QdDialogService, QdDialogSize, QdDisabledDirective, QdDropdownComponent, QdFileCollectorComponent, QdFileCollectorModule, QdFileSizePipe$1 as QdFileSizePipe, QdFileUploadComponent, QdFileUploadService, QdFilterComponent, QdFilterFormItemsComponent, QdFilterModule, QdFilterRestParamBuilder, QdFilterService, QdFormArray, QdFormBuilder, QdFormControl, QdFormGroup, QdFormModule, QdGridComponent, QdGridModule, QdHorizontalPairsCaptionComponent, QdHorizontalPairsComponent, QdHorizontalPairsItemComponent, QdHorizontalPairsValueComponent, QdIconButtonComponent, QdIconComponent, QdIconModule, QdImageComponent, QdImageModule, QdIndeterminateProgressBarComponent, QdInputComponent, QdListModule, QdMenuButtonComponent, QdMockBreakpointService, QdMockButtonComponent, QdMockButtonGhostDirective, QdMockButtonGridComponent, QdMockButtonLinkDirective, QdMockButtonModule, QdMockButtonStackButtonComponent, QdMockButtonStackComponent, QdMockCalendarComponent, QdMockCheckboxChipsComponent, QdMockCheckboxComponent, QdMockCheckboxesComponent, QdMockChipComponent, QdMockChipModule, QdMockColumnDirective, QdMockColumnsDirective, QdMockContactCardComponent, QdMockContactCardModule, QdMockContainerPairsCaptionComponent, QdMockContainerPairsContainerComponent, QdMockContainerPairsHeaderComponent, QdMockContainerPairsItemComponent, QdMockContainerPairsValueComponent, QdMockCoreModule, QdMockCounterBadgeComponent, QdMockDatepickerComponent, QdMockDisabledDirective, QdMockDropdownComponent, QdMockFileCollectorComponent, QdMockFileCollectorModule, QdMockFilterCategoryBooleanComponent, QdMockFilterCategoryComponent, QdMockFilterCategoryDateComponent, QdMockFilterCategoryDateRangeComponent, QdMockFilterCategoryFreeTextComponent, QdMockFilterCategorySelectComponent, QdMockFilterComponent, QdMockFilterFormItemsComponent, QdMockFilterItemBooleanComponent, QdMockFilterItemDateComponent, QdMockFilterItemDateRangeComponent, QdMockFilterItemFreeTextComponent, QdMockFilterItemMultiSelectComponent, QdMockFilterItemSingleSelectComponent, QdMockFilterModule, QdMockFilterService, QdMockFormErrorComponent, QdMockFormGroupErrorComponent, QdMockFormHintComponent, QdMockFormLabelComponent, QdMockFormReadonlyComponent, QdMockFormViewonlyComponent, QdMockFormsModule, QdMockGridModule, QdMockIconButtonComponent, QdMockIconComponent, QdMockIconModule, QdMockImageComponent, QdMockImageModule, QdMockIndeterminateProgressBarComponent, QdMockInputComponent, QdMockListModule, QdMockNavigationTileComponent, QdMockNavigationTilesComponent, QdMockNavigationTilesModule, QdMockNotificationComponent, QdMockNotificationContentComponent, QdMockNotificationsComponent, QdMockNotificationsModule, QdMockNotificationsService, QdMockPageComponent, QdMockPageModule, QdMockPercentageProgressBarComponent, QdMockPinCodeComponent, QdMockPlaceHolderModule, QdMockPopoverOnClickDirective, QdMockProgressBarModule, QdMockQdPlaceHolderComponent, QdMockRadioButtonsComponent, QdMockRwdDisabledDirective, QdMockSearchComponent, QdMockSearchModule, QdMockSectionComponent, QdMockSectionModule, QdMockShellComponent, QdMockShellFooterComponent, QdMockShellHeaderBannerComponent, QdMockShellHeaderComponent, QdMockShellHeaderSearchComponent, QdMockShellHeaderWidgetComponent, QdMockShellModule, QdMockShellToolbarComponent, QdMockShellToolbarItemComponent, QdMockStatusIndicatorCaptionComponent, QdMockStatusIndicatorComponent, QdMockStatusIndicatorItemComponent, QdMockStatusIndicatorModule, QdMockStatusPairsCaptionComponent, QdMockStatusPairsComponent, QdMockStatusPairsErrorComponent, QdMockStatusPairsItemComponent, QdMockStatusPairsValueComponent, QdMockSwitchComponent, QdMockSwitchesComponent, QdMockTableComponent, QdMockTableModule, QdMockTextSectionComponent, QdMockTextSectionHeadlineComponent, QdMockTextSectionModule, QdMockTextSectionParagraphComponent, QdMockTextareaComponent, QdMockTileButtonListComponent, QdMockTileComponent, QdMockTileTextListComponent, QdMockTileTextListItemComponent, QdMockTileTitleComponent, QdMockTilesContainerComponent, QdMockTilesContainerTitleComponent, QdMockTilesModule, QdMockTranslatePipe, QdMockVisuallyHiddenDirective, QdMultiInputComponent, QdNavigationTilesModule, QdNotificationComponent, QdNotificationContentComponent, QdNotificationsComponent, QdNotificationsHttpInterceptorService, QdNotificationsModule, QdNotificationsService, QdNotificationsSnackbarListenerDirective, QdNumberInputService, QdPageComponent, QdPageControlPanelComponent, QdPageFooterComponent, QdPageFooterCustomContentDirective, QdPageInfoBannerComponent, QdPageModule, QdPageStepComponent, QdPageStepperAdapterDirective, QdPageStepperComponent, QdPageStepperModule, QdPageStoreService, QdPageTabComponent, QdPageTabsAdapterDirective, QdPageTabsComponent, QdPageTabsModule, QdPanelSectionActionsComponent, QdPanelSectionComponent, QdPanelSectionModule, QdPanelSectionStatusComponent, QdPanelSectionTextParagraphComponent, QdPendingChangesGuardDirective, QdPercentageProgressBarComponent, QdPinCodeComponent, QdPlaceHolderComponent, QdPlaceHolderModule, QdPlaceholderPipe, QdProgressBarModule, QdProjectionGuardComponent, QdPushEventsService, QdQuickEditComponent, QdQuickEditModule, QdRadioButtonsComponent, QdRichtextComponent, QdRwdDisabledDirective, QdSearchComponent, QdSearchModule, QdSectionAdapterDirective, QdSectionComponent, QdSectionModule, QdSectionToolbarComponent, QdShellComponent, QdShellModule, QdSortDirection, QdSpinnerComponent, QdSpinnerModule, QdStatusIndicatorComponent, QdStatusIndicatorModule, QdStatusPairsCaptionComponent, QdStatusPairsComponent, QdStatusPairsErrorComponent, QdStatusPairsItemComponent, QdStatusPairsValueComponent, QdSubgridComponent, QdSwitchComponent, QdSwitchesComponent, QdTableComponent, QdTableModule, QdTableSpringTools, QdTextSectionComponent, QdTextSectionHeadlineComponent, QdTextSectionModule, QdTextSectionParagraphComponent, QdTextareaComponent, QdTileButtonListComponent, QdTileComponent, QdTileTextListComponent, QdTileTextListItemComponent, QdTileTitleComponent, QdTilesComponent, QdTilesModule, QdTilesTitleComponent, QdTooltipAtIntersectionDirective, QdTooltipIconComponent, QdTreeComponent, QdTreeModule, QdTreeRowExpanderService, QdUiMockModule, QdUiModule, QdUploadErrorType, QdValidators, QdViewportAdaptiveDirective, QdVisuallyHiddenDirective, chipColorDefault, createMetadataStream, updateHtmlLang };
17572
17723
  export type { CustomField, QdAppEnvironment, QdButtonAdditionalInfo, QdButtonColor, QdChipColor, QdCollectedFile, QdComment, QdCommentAuthorFieldConfig, QdCommentCustomFieldConfig, QdCommentDeletedMeta, QdCommentRichtextConfig, QdCommentSecondaryActionConfig, QdCommentsAddButtonConfig, QdCommentsAddConfig, QdCommentsConfig, QdContactAddress, QdContactData, QdContactDataCustomField, QdContactDataCustomFieldEntry, QdContactDataCustomTranslatedEntry, QdContactFunction, QdContactPerson, QdContactTag, QdContextSelection, QdDependentFilterCategory, QdDialogAuthSessionEndResult, QdDialogConfig, QdDialogConfirmationConfig, QdDialogConfirmationResolver, QdDialogData, QdDialogTitle, QdFileCollectorConfig, QdFileManager, QdFileType, QdFileUploadManager, QdFilterCategory, QdFilterConfigData, QdFilterItem, QdFilterPostBodyCategory, QdFilterPostBodyData, QdFormCheckboxChipsConfiguration, QdFormCheckboxesConfiguration, QdFormConfiguration, QdFormDatepickerConfiguration, QdFormDropdownConfiguration, QdFormFileUploadConfiguration, QdFormHint, QdFormInput, QdFormInputConfiguration, QdFormLabel, QdFormMultiInputConfiguration, QdFormOption, QdFormOptionsResolver, QdFormPinCodeConfiguration, QdFormRadioButtonsConfiguration, QdFormSwitchesConfiguration, QdFormTextAreaConfiguration, QdGridConfig, QdInputValue, QdInputValueWithUnit, QdInspectOperationMode, QdMenuButtonConfig, QdMultiInputOption, QdNotification, QdNotificationType, QdPageConfig, QdPageConfigCreate, QdPageConfigCustom, QdPageConfigInspect, QdPageConfigOverview, QdPageControlPanelConfig, QdPageHeaderFacetConfig, QdPageInfoBannerConfig, QdPageObjectResolver, QdPageObjectResolverConfig, QdPageSelectedContext, QdPageStepConfig, QdPageStepResolver, QdPageStepperConfig, QdPageTabConfig, QdPageTabCounters, QdPageTabsConfig, QdPageTypeCreateConfig, QdPageTypeCustomConfig, QdPageTypeInspectConfig, QdPageTypeOverviewConfig, QdPlaceholder, QdPushEventName, QdQuickEditConfig, QdQuickEditData, QdRichtextConfig, QdSearchOptions, QdSearchPostBodyData, QdSectionActionType, QdSectionConfig, QdShellConfig, QdShellServiceNavigationConfig, QdStatusIndicator, QdSwitchOption, QdTabSelectionEvent, QdTableChipDataValue, QdTableConfig, QdTableConfigColumn, QdTableConfigSelection, QdTableContentDataChip, QdTableContentDataChipObject, QdTableData, QdTableDataResolver, QdTableDataResolverProps, QdTableDataRow, QdTableDataValue, QdTableEmptyStateView, QdTableOptionalRefreshingEventTypes, QdTablePagination, QdTablePrimaryAction, QdTableRecentSecondaryAction, QdTableResolvedData, QdTableRowIdentifier, QdTableRowIndex, QdTableRowUid, QdTableSecondaryAction, QdTableSelectedRow, QdTableSelectedRows, QdTableStateSort, QdTableStatusDataValue, QdTileConfig, QdTilesConfig, QdTooltip, QdTranslatable, QdTranslation, QdTreeConfig, QdTreeData, QdTreeDataRow, QdTreeDataValue, QdUploadError, QdUploadProgress };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quadrel-enterprise-ui/framework",
3
- "version": "20.11.0",
3
+ "version": "20.11.2-beta.150.1",
4
4
  "exports": {
5
5
  "./jest-preset": "./jest-preset.js",
6
6
  "./package.json": {
@@ -68,6 +68,10 @@
68
68
  "i18n.qd.input.units.percentage": "%",
69
69
  "i18n.qd.input.options.loading": "Vorschläge werden geladen...",
70
70
  "i18n.qd.input.options.error": "Fehler beim Laden der Vorschläge",
71
+ "i18n.qd.input.number.ambiguousHint.comma": "Der eingegebene Wert wird gemäß der regionalen Formatierung interpretiert und verwendet als Dezimaltrennzeichen ein Komma (,).",
72
+ "i18n.qd.input.number.ambiguousHint.dot": "Der eingegebene Wert wird gemäß der regionalen Formatierung interpretiert und verwendet als Dezimaltrennzeichen einen Punkt (.).",
73
+ "i18n.qd.input.number.invalidCharacters.comma": "Der eingegebene Wert ist ungültig. Gemäß der regionalen Formatierung wird ein Komma (,) als Dezimaltrennzeichen erwartet.",
74
+ "i18n.qd.input.number.invalidCharacters.dot": "Der eingegebene Wert ist ungültig. Gemäß der regionalen Formatierung wird ein Punkt (.) als Dezimaltrennzeichen erwartet.",
71
75
  "i18n.qd.multiInput.label.tariffNumbers": "Tarifnummern",
72
76
  "i18n.qd.multiInput.label.tariffNumbers.hint": "Bitte erfassen Sie mindestens eine Tarifnummer.",
73
77
  "i18n.qd.multiInput.label.tariffNumbers.hintFormat": "Bitte erfassen Sie mindestens eine Tarifnummer (Format: 9- od. 13-stellig).",
@@ -68,6 +68,12 @@
68
68
  "i18n.qd.input.units.percentage": "%",
69
69
  "i18n.qd.input.options.loading": "Suggestions are loading...",
70
70
  "i18n.qd.input.options.error": "Error loading suggestions",
71
+
72
+ "i18n.qd.input.number.ambiguousHint.comma": "The entered value is interpreted according to the regional formatting and uses a comma (,) as the decimal separator.",
73
+ "i18n.qd.input.number.ambiguousHint.dot": "The entered value is interpreted according to the regional formatting and uses a dot (.) as the decimal separator.",
74
+ "i18n.qd.input.number.invalidCharacters.comma": "The entered value is invalid. According to the regional formatting, a comma (,) is expected as the decimal separator.",
75
+ "i18n.qd.input.number.invalidCharacters.dot": "The entered value is invalid. According to the regional formatting, a dot (.) is expected as the decimal separator.",
76
+
71
77
  "i18n.qd.multiInput.label.tariffNumbers": "[en]Tarifnummern",
72
78
  "i18n.qd.multiInput.label.tariffNumbers.hint": "[en]Bitte erfassen Sie mindestens eine Tarifnummer.",
73
79
  "i18n.qd.multiInput.label.tariffNumbers.hintFormat": "[en]Bitte erfassen Sie mindestens eine Tarifnummer (Format: 9- od. 13-stellig).",
@@ -68,6 +68,13 @@
68
68
  "i18n.qd.input.units.percentage": "%",
69
69
  "i18n.qd.input.options.loading": "[fr] Vorschläge werden geladen...",
70
70
  "i18n.qd.input.options.error": "[fr] Fehler beim Laden der Vorschläge",
71
+ "i18n.qd.input.number.ambiguousHint": "Le nombre a été interprété en fonction de votre région.",
72
+
73
+ "i18n.qd.input.number.ambiguousHint.comma": "La valeur saisie est interprétée conformément au format régional et utilise une virgule (,) comme séparateur décimal.",
74
+ "i18n.qd.input.number.ambiguousHint.dot": "La valeur saisie est interprétée conformément au format régional et utilise un point (.) comme séparateur décimal.",
75
+ "i18n.qd.input.number.invalidCharacters.comma": "La valeur saisie est invalide. Selon le format régional, une virgule (,) est attendue comme séparateur décimal.",
76
+ "i18n.qd.input.number.invalidCharacters.dot": "La valeur saisie est invalide. Selon le format régional, un point (.) est attendu comme séparateur décimal.",
77
+
71
78
  "i18n.qd.multiInput.label.tariffNumbers": "[fr]Tarifnummern",
72
79
  "i18n.qd.multiInput.label.tariffNumbers.hint": "[fr]Bitte erfassen Sie mindestens eine Tarifnummer.",
73
80
  "i18n.qd.multiInput.label.tariffNumbers.hintFormat": "[fr]Bitte erfassen Sie mindestens eine Tarifnummer (Format: 9- od. 13-stellig).",
@@ -68,6 +68,12 @@
68
68
  "i18n.qd.input.units.percentage": "%",
69
69
  "i18n.qd.input.options.loading": "[it] Vorschläge werden geladen...",
70
70
  "i18n.qd.input.options.error": "[it] Fehler beim Laden der Vorschläge",
71
+
72
+ "i18n.qd.input.number.ambiguousHint.comma": "Il valore inserito viene interpretato in base al formato regionale e utilizza una virgola (,) come separatore decimale.",
73
+ "i18n.qd.input.number.ambiguousHint.dot": "Il valore inserito viene interpretato in base al formato regionale e utilizza un punto (.) come separatore decimale.",
74
+ "i18n.qd.input.number.invalidCharacters.comma": "Il valore inserito non è valido. In base al formato regionale, è prevista una virgola (,) come separatore decimale.",
75
+ "i18n.qd.input.number.invalidCharacters.dot": "Il valore inserito non è valido. In base al formato regionale, è previsto un punto (.) come separatore decimale.",
76
+
71
77
  "i18n.qd.multiInput.label.tariffNumbers": "[it]Tarifnummern",
72
78
  "i18n.qd.multiInput.label.tariffNumbers.hint": "[it]Bitte erfassen Sie mindestens eine Tarifnummer.",
73
79
  "i18n.qd.multiInput.label.tariffNumbers.hintFormat": "[it]Bitte erfassen Sie mindestens eine Tarifnummer (Format: 9- od. 13-stellig).",