@quadrel-enterprise-ui/framework 20.11.1 → 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;
@@ -16956,6 +16994,7 @@ declare class QdShellServiceNavigationComponent implements OnInit, OnDestroy, Af
16956
16994
  private _config;
16957
16995
  private _destroyed$;
16958
16996
  private _attributesHaveBeenSet$;
16997
+ private readonly localeService;
16959
16998
  ngOnInit(): void;
16960
16999
  private setPamsEnvironment;
16961
17000
  private logPamsEnvironmentMissingError;
@@ -17680,5 +17719,5 @@ declare class QdUiModule {
17680
17719
 
17681
17720
  declare const APP_ENVIRONMENT: InjectionToken<QdAppEnvironment>;
17682
17721
 
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 };
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 };
17684
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.1",
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).",