@quadrel-enterprise-ui/framework 20.18.4 → 20.19.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
@@ -18,6 +18,7 @@ import { Highlightable, ActiveDescendantKeyManager } from '@angular/cdk/a11y';
18
18
  import * as i39 from 'ngx-editor';
19
19
  import { Editor, Toolbar } from 'ngx-editor';
20
20
  import { Moment as Moment$1 } from 'moment';
21
+ import * as _quadrel_enterprise_ui_framework from '@quadrel-enterprise-ui/framework';
21
22
  import * as i25 from '@ngrx/store';
22
23
  import * as i5 from '@angular/cdk/stepper';
23
24
  import { CdkStep, CdkStepper, StepState, CdkStepHeader } from '@angular/cdk/stepper';
@@ -2843,10 +2844,36 @@ interface QdDisabledTimesValidation {
2843
2844
  */
2844
2845
  errorKey: string;
2845
2846
  }
2847
+ /**
2848
+ * @description Shared configuration for form elements whose options are either defined
2849
+ * statically or provided dynamically by a QdFormOptionsResolver.
2850
+ */
2851
+ interface QdFormResolvableOptionsConfiguration {
2852
+ /**
2853
+ * @description Defines the individual options for an additional option list,
2854
+ * for instance within an input form.
2855
+ *
2856
+ * @minLength: 1
2857
+ */
2858
+ options?: QdFormOption[];
2859
+ /**
2860
+ * @description If you provide more than one resolver for several inputs, you can connect this input
2861
+ * with a specific resolver by settings its `name` here. If you don't want this input to be connected
2862
+ * to an options resolver, set this property to `null`.
2863
+ */
2864
+ optionsResolverName?: string | null;
2865
+ /**
2866
+ * @description Names of sibling controls in the same form group whose value changes re-resolve
2867
+ * the options of this form element. The current values of these controls are passed to the
2868
+ * connected options resolver as named dependencies. Requires the element to be bound to a
2869
+ * control inside a form group and an options resolver to be connected.
2870
+ */
2871
+ optionsDependsOn?: string[];
2872
+ }
2846
2873
  /**
2847
2874
  * @description Configuration Model for Qd-Forms-Dropdown
2848
2875
  */
2849
- interface QdFormDropdownConfiguration extends QdFormConfiguration {
2876
+ interface QdFormDropdownConfiguration extends QdFormConfiguration, QdFormResolvableOptionsConfiguration {
2850
2877
  /**
2851
2878
  * @description Defines a placeholder for the form
2852
2879
  */
@@ -2857,30 +2884,17 @@ interface QdFormDropdownConfiguration extends QdFormConfiguration {
2857
2884
  *
2858
2885
  */
2859
2886
  placeholderPrefix?: QdPlaceholderPrefix;
2860
- /**
2861
- * @description Defines the individual options for an additional option list,
2862
- * for instance within an input form.
2863
- *
2864
- * @minLength: 1
2865
- */
2866
- options?: QdFormOption[];
2867
2887
  /**
2868
2888
  * @description Adds a filter function to reduce the number of options
2869
2889
  *
2870
2890
  * * @default: false
2871
2891
  */
2872
2892
  filter?: boolean;
2873
- /**
2874
- * @description If you provide more than one resolver for several inputs, you can connect this input
2875
- * with a specific resolver by settings its `name` here. If you don't want this input to be connected
2876
- * to an options resolver, set this property to `null`.
2877
- */
2878
- optionsResolverName?: string | null;
2879
2893
  }
2880
2894
  /**
2881
2895
  * @description Configuration Model for Qd-Forms-Input
2882
2896
  */
2883
- interface QdFormInputConfiguration extends QdFormConfiguration {
2897
+ interface QdFormInputConfiguration extends QdFormConfiguration, QdFormResolvableOptionsConfiguration {
2884
2898
  /**
2885
2899
  * @description Initial value of a form. Used without FormControls only.
2886
2900
  */
@@ -2918,10 +2932,6 @@ interface QdFormInputConfiguration extends QdFormConfiguration {
2918
2932
  * @description Defines the placeholder for the units dropdown.
2919
2933
  */
2920
2934
  unitsPlaceholder?: QdPlaceholder;
2921
- /**
2922
- * @description Defines options that can be selected through a dropdown
2923
- */
2924
- options?: QdFormOption[];
2925
2935
  /**
2926
2936
  * @description Set to "true", the input field will be focused when the application is initially loaded.
2927
2937
  * Note: hasAutofocus can only be used once per view. No matter in which pattern it is used.
@@ -2935,12 +2945,6 @@ interface QdFormInputConfiguration extends QdFormConfiguration {
2935
2945
  * * @default: 1
2936
2946
  */
2937
2947
  step?: number;
2938
- /**
2939
- * @description If you provide more than one resolver for several inputs, you can connect this input
2940
- * with a specific resolver by settings its `name` here. If you don't want this input to be connected
2941
- * to an options resolver, set this property to `null`.
2942
- */
2943
- optionsResolverName?: string | null;
2944
2948
  }
2945
2949
  /**
2946
2950
  * @description Configuration Model for Qd-Forms-Multi-Input
@@ -6293,12 +6297,26 @@ declare const QD_FORM_OPTIONS_RESOLVER: InjectionToken<QdFormOptionsResolver | Q
6293
6297
  /**
6294
6298
  * Defines a resolver that dynamically provides options for form inputs
6295
6299
  * based on a value (e.g., user input or context).
6300
+ *
6301
+ * The same trigger rules apply to every form element connected to a resolver
6302
+ * (QdInput, QdDropdown). `resolve` is invoked:
6303
+ * - once on initialization, with the current value
6304
+ * - whenever the element's own value actually changes (an unchanged value does not re-resolve)
6305
+ * - whenever a control listed in `optionsDependsOn` changes, with the unchanged own value
6306
+ * and the new dependency values (previously resolved options are cleared first)
6307
+ * - whenever the element's configuration changes
6308
+ *
6309
+ * `resolve` is NOT invoked:
6310
+ * - for the display value written back after an option has been selected (a selection is not a search)
6311
+ * - while the element is readonly or viewonly
6296
6312
  */
6297
6313
  interface QdFormOptionsResolver {
6298
6314
  /**
6299
6315
  * Resolves a list of input options for a given input value.
6316
+ * When the form input declares `optionsDependsOn`, the current values of the
6317
+ * depended-on controls are passed as named dependencies.
6300
6318
  */
6301
- resolve(value: string): Observable<QdFormResolvedOptions>;
6319
+ resolve(value: string, dependencies?: QdFormOptionsDependencies): Observable<QdFormResolvedOptions>;
6302
6320
  /**
6303
6321
  * Optional name to identify this resolver.
6304
6322
  * Use this in the form configuration (`optionsResolverName`)
@@ -6323,6 +6341,24 @@ interface QdFormOptionsResolver {
6323
6341
  i18n: string;
6324
6342
  };
6325
6343
  }
6344
+ /**
6345
+ * Current values of the controls a form input's options depend on,
6346
+ * keyed by control name as configured in `optionsDependsOn`.
6347
+ */
6348
+ type QdFormOptionsDependencies = Record<string, unknown>;
6349
+ /**
6350
+ * Payload of the `optionsResolved` output of form elements connected to a
6351
+ * QdFormOptionsResolver. Carries the options delivered by the resolver together
6352
+ * with the depended-on values they were resolved with.
6353
+ *
6354
+ * The framework never resets a dependent control when its options change.
6355
+ * Whether a now-invalid selection is cleared is the consuming application's
6356
+ * decision, typically based on this event.
6357
+ */
6358
+ interface QdFormOptionsResolvedEvent {
6359
+ options: QdFormResolvedOptions;
6360
+ dependencies?: QdFormOptionsDependencies;
6361
+ }
6326
6362
  /**
6327
6363
  * Represents a single raw input option as returned by a QdFormOptionsResolver.
6328
6364
  * This is the unprocessed shape coming directly from the resolver.
@@ -6497,6 +6533,21 @@ declare class QdDropdownComponent implements ControlValueAccessor, OnInit, OnCha
6497
6533
  * Emits event when the viewonly value is clicked/tapped. `clickViewonly ` must be set to `true` for this.
6498
6534
  */
6499
6535
  readonly clickViewonly: EventEmitter<any>;
6536
+ /**
6537
+ * Emits the resolved options and the depended-on values they were resolved with,
6538
+ * after every resolver run.
6539
+ *
6540
+ * The resolver fetches the options; this output lets the component react to them —
6541
+ * typically to drop a selection the new options no longer contain (e.g. clear the
6542
+ * chosen city once the country changed).
6543
+ *
6544
+ * @example
6545
+ * onCityOptionsResolved(event: QdFormOptionsResolvedEvent): void {
6546
+ * const city = this.form.get('city');
6547
+ * if (city?.value && !event.options.some(o => o.value === city.value)) city.reset();
6548
+ * }
6549
+ */
6550
+ readonly optionsResolved: EventEmitter<QdFormOptionsResolvedEvent>;
6500
6551
  readonly: boolean;
6501
6552
  readonlyAction: boolean;
6502
6553
  viewonly: boolean;
@@ -6552,7 +6603,7 @@ declare class QdDropdownComponent implements ControlValueAccessor, OnInit, OnCha
6552
6603
  private updateSelectedOption;
6553
6604
  private initOpModeSubscription;
6554
6605
  static ɵfac: i0.ɵɵFactoryDeclaration<QdDropdownComponent, never>;
6555
- static ɵcmp: i0.ɵɵComponentDeclaration<QdDropdownComponent, "qd-dropdown", never, { "value": { "alias": "value"; "required": false; }; "id": { "alias": "id"; "required": false; }; "formControlName": { "alias": "formControlName"; "required": false; }; "config": { "alias": "config"; "required": false; }; "testId": { "alias": "data-test-id"; "required": false; }; "qdPopoverMaxHeight": { "alias": "qdPopoverMaxHeight"; "required": false; }; "dense": { "alias": "dense"; "required": false; }; }, { "valueChange": "valueChange"; "enterClick": "enterClick"; "clickHint": "clickHint"; "clickReadonly": "clickReadonly"; "clickViewonly": "clickViewonly"; }, never, never, false, never>;
6606
+ static ɵcmp: i0.ɵɵComponentDeclaration<QdDropdownComponent, "qd-dropdown", never, { "value": { "alias": "value"; "required": false; }; "id": { "alias": "id"; "required": false; }; "formControlName": { "alias": "formControlName"; "required": false; }; "config": { "alias": "config"; "required": false; }; "testId": { "alias": "data-test-id"; "required": false; }; "qdPopoverMaxHeight": { "alias": "qdPopoverMaxHeight"; "required": false; }; "dense": { "alias": "dense"; "required": false; }; }, { "valueChange": "valueChange"; "enterClick": "enterClick"; "clickHint": "clickHint"; "clickReadonly": "clickReadonly"; "clickViewonly": "clickViewonly"; "optionsResolved": "optionsResolved"; }, never, never, false, never>;
6556
6607
  }
6557
6608
 
6558
6609
  /**
@@ -7067,6 +7118,21 @@ declare class QdInputComponent implements OnInit, OnChanges, OnDestroy, ControlV
7067
7118
  * Emits event when the viewonly value is clicked/tapped. `clickViewonly ` must be set to `true` for this.
7068
7119
  */
7069
7120
  readonly clickViewonly: EventEmitter<any>;
7121
+ /**
7122
+ * Emits the resolved options and the depended-on values they were resolved with,
7123
+ * after every resolver run.
7124
+ *
7125
+ * The resolver fetches the options; this output lets the component react to them —
7126
+ * typically to drop a selection the new options no longer contain (e.g. clear the
7127
+ * chosen city once the country changed).
7128
+ *
7129
+ * @example
7130
+ * onCityOptionsResolved(event: QdFormOptionsResolvedEvent): void {
7131
+ * const city = this.form.get('city');
7132
+ * if (city?.value && !event.options.some(o => o.value === city.value)) city.reset();
7133
+ * }
7134
+ */
7135
+ readonly optionsResolved: EventEmitter<QdFormOptionsResolvedEvent>;
7070
7136
  readonly: boolean;
7071
7137
  readonlyAction: boolean;
7072
7138
  viewonly: boolean;
@@ -7128,7 +7194,7 @@ declare class QdInputComponent implements OnInit, OnChanges, OnDestroy, ControlV
7128
7194
  private normalizeInitialControlValueIfNeeded;
7129
7195
  private applyDisplayFormat;
7130
7196
  static ɵfac: i0.ɵɵFactoryDeclaration<QdInputComponent, never>;
7131
- static ɵcmp: i0.ɵɵComponentDeclaration<QdInputComponent, "qd-input", never, { "formControlName": { "alias": "formControlName"; "required": false; }; "value": { "alias": "value"; "required": false; }; "config": { "alias": "config"; "required": false; }; "isError": { "alias": "isError"; "required": false; }; "testId": { "alias": "data-test-id"; "required": false; }; }, { "valueChange": "valueChange"; "enterClick": "enterClick"; "clickClear": "clickClear"; "clickHint": "clickHint"; "clickReadonly": "clickReadonly"; "clickViewonly": "clickViewonly"; }, never, ["[qdIconButton]"], false, never>;
7197
+ static ɵcmp: i0.ɵɵComponentDeclaration<QdInputComponent, "qd-input", never, { "formControlName": { "alias": "formControlName"; "required": false; }; "value": { "alias": "value"; "required": false; }; "config": { "alias": "config"; "required": false; }; "isError": { "alias": "isError"; "required": false; }; "testId": { "alias": "data-test-id"; "required": false; }; }, { "valueChange": "valueChange"; "enterClick": "enterClick"; "clickClear": "clickClear"; "clickHint": "clickHint"; "clickReadonly": "clickReadonly"; "clickViewonly": "clickViewonly"; "optionsResolved": "optionsResolved"; }, never, ["[qdIconButton]"], false, never>;
7132
7198
  }
7133
7199
 
7134
7200
  /**
@@ -8571,11 +8637,21 @@ declare class QdInputUnitsComponent implements OnInit, OnChanges {
8571
8637
  static ɵcmp: i0.ɵɵComponentDeclaration<QdInputUnitsComponent, "qd-input-units", never, { "config": { "alias": "config"; "required": false; }; "unitValue": { "alias": "unit"; "required": false; }; }, { "unitChange": "unitChange"; "opened": "opened"; "closed": "closed"; }, never, never, false, never>;
8572
8638
  }
8573
8639
 
8640
+ /**
8641
+ * Manages the options popover of a form input, including resolver-based options.
8642
+ * The resolver trigger rules are defined on {@link QdFormOptionsResolver}.
8643
+ *
8644
+ * Invariant: the `value` setter resolves options only on actual value changes. Selecting
8645
+ * an option assigns the option's i18n key as the new value right away, because the host
8646
+ * component writes exactly that key back into the `value` binding for display purposes —
8647
+ * the write-back therefore arrives as a no-op instead of resolving with the i18n key.
8648
+ */
8574
8649
  declare class QdInputOptionsDirective extends QdPopoverOnClickDirective implements OnInit, OnChanges, OnDestroy, AfterViewInit {
8575
8650
  private readonly translateService;
8576
8651
  private readonly viewContainerRef;
8577
8652
  private readonly changeDetectorRef;
8578
8653
  private readonly resolverRegistry;
8654
+ private readonly controlContainer;
8579
8655
  get value(): QdInputValue;
8580
8656
  /**
8581
8657
  * The value of the form input
@@ -8599,7 +8675,22 @@ declare class QdInputOptionsDirective extends QdPopoverOnClickDirective implemen
8599
8675
  /**
8600
8676
  * Emits event when an option in the fly out has been selected.
8601
8677
  */
8602
- readonly optionSelected: EventEmitter<QdFormBaseOption>;
8678
+ readonly optionSelected: EventEmitter<_quadrel_enterprise_ui_framework.QdFormBaseOption>;
8679
+ /**
8680
+ * Emits the resolved options and the depended-on values they were resolved with,
8681
+ * after every resolver run.
8682
+ *
8683
+ * The resolver fetches the options; this output lets the component react to them —
8684
+ * typically to drop a selection the new options no longer contain (e.g. clear the
8685
+ * chosen city once the country changed).
8686
+ *
8687
+ * @example
8688
+ * onCityOptionsResolved(event: QdFormOptionsResolvedEvent): void {
8689
+ * const city = this.form.get('city');
8690
+ * if (city?.value && !event.options.some(o => o.value === city.value)) city.reset();
8691
+ * }
8692
+ */
8693
+ readonly optionsResolved: EventEmitter<QdFormOptionsResolvedEvent>;
8603
8694
  onSpace(): void;
8604
8695
  onEscape(): void;
8605
8696
  onTab(): void;
@@ -8612,6 +8703,8 @@ declare class QdInputOptionsDirective extends QdPopoverOnClickDirective implemen
8612
8703
  private _value;
8613
8704
  private _filteredOptionsSubject;
8614
8705
  private _destroyed$;
8706
+ private _dependsOnSubscription;
8707
+ private readonly _resolveRequests$;
8615
8708
  filteredOptions$: rxjs.Observable<QdFormResolvedOptions>;
8616
8709
  optionsRequestState$: rxjs.Observable<QdFormOptionsRequestState>;
8617
8710
  formInputComponents: QueryList<QdFormInputComponent>;
@@ -8624,15 +8717,18 @@ declare class QdInputOptionsDirective extends QdPopoverOnClickDirective implemen
8624
8717
  onKeyDown(event: KeyboardEvent): void;
8625
8718
  selectOption(option: QdFormResolvedOption): void;
8626
8719
  private logWarningIfBothOptionsAndResolverAreUsed;
8720
+ private logWarningIfDependsOnWithoutFormGroup;
8627
8721
  private closePopover;
8628
8722
  private createKeyManager;
8629
8723
  private setPopoverProperties;
8630
8724
  private hasOptions;
8631
8725
  private updateOptions;
8726
+ private updateOptionsWhenDependsOnControlsChange;
8632
8727
  private updateOptionsWithResolver;
8728
+ private publishLatestResolvedOptions;
8633
8729
  private filterOptions;
8634
8730
  static ɵfac: i0.ɵɵFactoryDeclaration<QdInputOptionsDirective, never>;
8635
- static ɵdir: i0.ɵɵDirectiveDeclaration<QdInputOptionsDirective, "[qdInputOptions]", never, { "value": { "alias": "value"; "required": false; }; "config": { "alias": "config"; "required": false; }; }, { "enterClick": "enterClick"; "optionSelected": "optionSelected"; }, never, never, false, never>;
8731
+ static ɵdir: i0.ɵɵDirectiveDeclaration<QdInputOptionsDirective, "[qdInputOptions]", never, { "value": { "alias": "value"; "required": false; }; "config": { "alias": "config"; "required": false; }; }, { "enterClick": "enterClick"; "optionSelected": "optionSelected"; "optionsResolved": "optionsResolved"; }, never, never, false, never>;
8636
8732
  }
8637
8733
 
8638
8734
  declare class QdInputOptionsComponent implements OnInit, AfterViewInit {
@@ -8641,7 +8737,7 @@ declare class QdInputOptionsComponent implements OnInit, AfterViewInit {
8641
8737
  optionsRequestState$: Observable<QdFormOptionsRequestState>;
8642
8738
  template: EventEmitter<TemplateRef<any>>;
8643
8739
  formInputComponents: EventEmitter<QueryList<QdFormInputComponent>>;
8644
- optionSelected: EventEmitter<QdFormBaseOption>;
8740
+ optionSelected: EventEmitter<_quadrel_enterprise_ui_framework.QdFormBaseOption>;
8645
8741
  private _template;
8646
8742
  _formInputComponents: QueryList<QdFormInputComponent>;
8647
8743
  get requestLoadingHintI18n(): string;
@@ -18364,4 +18460,4 @@ declare class QdUiModule {
18364
18460
  declare const APP_ENVIRONMENT: InjectionToken<QdAppEnvironment>;
18365
18461
 
18366
18462
  export { APP_ENVIRONMENT, AVAILABLE_ICONS, BACKEND_ERROR_CODES, MockLocaleDatePipe, NavigationTileComponent, NavigationTilesComponent, QD_DIALOG_CONFIRMATION_RESOLVER_TOKEN, QD_FILE_MANAGER_TOKEN, QD_FILE_UPLOAD_MANAGER_TOKEN, QD_FORM_OPTIONS_RESOLVER, QD_PAGE_OBJECT_RESOLVER_TOKEN, QD_PAGE_STEP_RESOLVER_TOKEN, QD_POPOVER_TOP_FIRST, QD_SAFE_BOTTOM_OFFSET, QD_TABLE_DATA_RESOLVER_TOKEN, QD_UPLOAD_HTTP_OPTIONS, QdButtonComponent, QdButtonGhostDirective, QdButtonGridComponent, QdButtonLinkDirective, QdButtonModule, QdButtonStackButtonComponent, QdButtonStackComponent, QdCheckboxChipsComponent, QdCheckboxComponent, QdCheckboxesComponent, QdChipComponent, QdChipModule, QdColumnAutoFillDirective, QdColumnBreakBeforeDirective, QdColumnDirective, QdColumnDisableResponsiveColspansDirective, QdColumnFullGridWidthDirective, QdColumnNextInSameRowDirective, QdColumnsDirective, QdColumnsDisableAutoFillDirective, QdColumnsDisableResponsiveColspansDirective, QdColumnsMaxDirective, QdCommentsComponent, QdCommentsModule, QdConnectFormStateToPageDirective, QdConnectorTableContextDirective, QdConnectorTableFilterDirective, QdConnectorTableSearchDirective, QdContactCardComponent, QdContactCardModule, QdContainerPairsCaptionComponent, QdContainerPairsContainerComponent, QdContainerPairsHeaderComponent, QdContainerPairsItemComponent, QdContainerPairsValueComponent, QdContextService, QdCoreModule, QdDatepickerComponent, QdDialogActionComponent, QdDialogAuthSessionEndComponent, QdDialogAuthSessionEndService, QdDialogComponent, QdDialogConfirmationComponent, QdDialogConfirmationErrorDirective, QdDialogConfirmationInfoDirective, QdDialogConfirmationSuccessDirective, QdDialogModule, QdDialogRecordStepperComponent, QdDialogService, QdDialogSize, QdDisabledDirective, QdDropdownComponent, QdFileCollectorComponent, QdFileCollectorModule, QdFileSizePipe$1 as QdFileSizePipe, QdFileUploadComponent, QdFileUploadService, QdFilterComponent, QdFilterFormItemsComponent, QdFilterModule, QdFilterRestParamBuilder, QdFilterService, QdFormArray, QdFormBuilder, QdFormControl, QdFormGroup, QdFormModule, QdGridComponent, QdGridModule, QdHorizontalPairsCaptionComponent, QdHorizontalPairsComponent, QdHorizontalPairsItemComponent, QdHorizontalPairsValueComponent, QdIconButtonComponent, QdIconComponent, QdIconModule, QdImageComponent, QdImageModule, QdIndeterminateProgressBarComponent, QdInputComponent, QdListModule, QdMenuButtonComponent, QdMockBreakpointService, QdMockButtonComponent, QdMockButtonGhostDirective, QdMockButtonGridComponent, QdMockButtonLinkDirective, QdMockButtonModule, QdMockButtonStackButtonComponent, QdMockButtonStackComponent, QdMockCalendarComponent, QdMockCheckboxChipsComponent, QdMockCheckboxComponent, QdMockCheckboxesComponent, QdMockChipComponent, QdMockChipModule, QdMockColumnDirective, QdMockColumnsDirective, QdMockContactCardComponent, QdMockContactCardModule, QdMockContainerPairsCaptionComponent, QdMockContainerPairsContainerComponent, QdMockContainerPairsHeaderComponent, QdMockContainerPairsItemComponent, QdMockContainerPairsValueComponent, QdMockCoreModule, QdMockCounterBadgeComponent, QdMockDatepickerComponent, QdMockDisabledDirective, QdMockDropdownComponent, QdMockFileCollectorComponent, QdMockFileCollectorModule, QdMockFilterCategoryBooleanComponent, QdMockFilterCategoryComponent, QdMockFilterCategoryDateComponent, QdMockFilterCategoryDateRangeComponent, QdMockFilterCategoryFreeTextComponent, QdMockFilterCategorySelectComponent, QdMockFilterComponent, QdMockFilterFormItemsComponent, QdMockFilterItemBooleanComponent, QdMockFilterItemDateComponent, QdMockFilterItemDateRangeComponent, QdMockFilterItemFreeTextComponent, QdMockFilterItemMultiSelectComponent, QdMockFilterItemSingleSelectComponent, QdMockFilterModule, QdMockFilterService, QdMockFormErrorComponent, QdMockFormGroupErrorComponent, QdMockFormHintComponent, QdMockFormLabelComponent, QdMockFormReadonlyComponent, QdMockFormViewonlyComponent, QdMockFormsModule, QdMockGridModule, QdMockIconButtonComponent, QdMockIconComponent, QdMockIconModule, QdMockImageComponent, QdMockImageModule, QdMockIndeterminateProgressBarComponent, QdMockInputComponent, QdMockListModule, QdMockNavigationTileComponent, QdMockNavigationTilesComponent, QdMockNavigationTilesModule, QdMockNotificationComponent, QdMockNotificationContentComponent, QdMockNotificationsComponent, QdMockNotificationsModule, QdMockNotificationsService, QdMockPageComponent, QdMockPageModule, QdMockPercentageProgressBarComponent, QdMockPinCodeComponent, QdMockPlaceHolderModule, QdMockPopoverOnClickDirective, QdMockProgressBarModule, QdMockQdPlaceHolderComponent, QdMockRadioButtonsComponent, QdMockRwdDisabledDirective, QdMockSearchComponent, QdMockSearchModule, QdMockSectionComponent, QdMockSectionModule, QdMockShellComponent, QdMockShellFooterComponent, QdMockShellHeaderBannerComponent, QdMockShellHeaderComponent, QdMockShellHeaderSearchComponent, QdMockShellHeaderWidgetComponent, QdMockShellModule, QdMockShellToolbarComponent, QdMockShellToolbarItemComponent, QdMockStatusIndicatorCaptionComponent, QdMockStatusIndicatorComponent, QdMockStatusIndicatorItemComponent, QdMockStatusIndicatorModule, QdMockStatusPairsCaptionComponent, QdMockStatusPairsComponent, QdMockStatusPairsErrorComponent, QdMockStatusPairsItemComponent, QdMockStatusPairsValueComponent, QdMockSwitchComponent, QdMockSwitchesComponent, QdMockTableComponent, QdMockTableModule, QdMockTextSectionComponent, QdMockTextSectionHeadlineComponent, QdMockTextSectionModule, QdMockTextSectionParagraphComponent, QdMockTextareaComponent, QdMockTileButtonListComponent, QdMockTileComponent, QdMockTileTextListComponent, QdMockTileTextListItemComponent, QdMockTileTitleComponent, QdMockTilesContainerComponent, QdMockTilesContainerTitleComponent, QdMockTilesModule, QdMockTranslatePipe, QdMockVisuallyHiddenDirective, QdMultiInputComponent, QdNavigationTilesModule, QdNotificationComponent, QdNotificationContentComponent, QdNotificationsComponent, QdNotificationsHttpInterceptorService, QdNotificationsModule, QdNotificationsService, QdNotificationsSnackbarListenerDirective, QdNumberInputService, QdPageComponent, QdPageControlPanelComponent, QdPageFooterComponent, QdPageFooterCustomContentDirective, QdPageInfoBannerComponent, QdPageModule, QdPageStepComponent, QdPageStepperAdapterDirective, QdPageStepperComponent, QdPageStepperModule, QdPageStoreService, QdPageTabComponent, QdPageTabsAdapterDirective, QdPageTabsComponent, QdPageTabsModule, QdPanelSectionActionsComponent, QdPanelSectionComponent, QdPanelSectionModule, QdPanelSectionStatusComponent, QdPanelSectionTextParagraphComponent, QdPendingChangesGuardDirective, QdPercentageProgressBarComponent, QdPinCodeComponent, QdPlaceHolderComponent, QdPlaceHolderModule, QdPlaceholderPipe, QdProgressBarModule, QdProjectionGuardComponent, QdPushEventsService, QdQuickEditComponent, QdQuickEditModule, QdRadioButtonsComponent, QdRichtextComponent, QdRouterQueryParamHubService, QdRwdDisabledDirective, QdSearchComponent, QdSearchModule, QdSectionAdapterDirective, QdSectionComponent, QdSectionModule, QdSectionToolbarComponent, QdShellComponent, QdShellModule, QdSortDirection, QdSpinnerComponent, QdSpinnerModule, QdStatusIndicatorComponent, QdStatusIndicatorModule, QdStatusPairsCaptionComponent, QdStatusPairsComponent, QdStatusPairsErrorComponent, QdStatusPairsItemComponent, QdStatusPairsValueComponent, QdSubgridComponent, QdSwitchComponent, QdSwitchesComponent, QdTableComponent, QdTableModule, QdTableSpringTools, QdTextSectionComponent, QdTextSectionHeadlineComponent, QdTextSectionModule, QdTextSectionParagraphComponent, QdTextareaComponent, QdTileButtonListComponent, QdTileComponent, QdTileTextListComponent, QdTileTextListItemComponent, QdTileTitleComponent, QdTilesComponent, QdTilesModule, QdTilesTitleComponent, QdTooltipAtIntersectionDirective, QdTooltipIconComponent, QdTreeComponent, QdTreeModule, QdTreeRowExpanderService, QdUiMockModule, QdUiModule, QdUploadErrorType, QdValidators, QdViewportAdaptiveDirective, QdVisuallyHiddenDirective, chipColorDefault, createMetadataStream, qdFilterParameterize, qdMergeParams, qdPageTabParameterize, qdPaginationParameterize, qdSearchParameterize, qdSortParameterize, qdTableQueryParameterize, qdWrapParams, updateHtmlLang };
18367
- 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, QdFacetOptionsIcon, QdFileCollectorConfig, QdFileManager, QdFileType, QdFileUploadManager, QdFilterCategory, QdFilterConfigData, QdFilterItem, QdFilterPostBodyCategory, QdFilterPostBodyData, QdFilterType, QdFormCheckboxChipsConfiguration, QdFormCheckboxesConfiguration, QdFormConfiguration, QdFormDatepickerConfiguration, QdFormDropdownConfiguration, QdFormFileUploadConfiguration, QdFormHint, QdFormInput, QdFormInputConfiguration, QdFormLabel, QdFormMultiInputConfiguration, QdFormOption, QdFormOptionsResolver, QdFormPinCodeConfiguration, QdFormRadioButtonsConfiguration, QdFormSwitchesConfiguration, QdFormTextAreaConfiguration, QdGridConfig, QdInputValue, QdInputValueWithUnit, QdInspectOperationMode, QdMenuButtonActionConfig, QdMenuButtonConfig, QdMultiInputOption, QdNotification, QdNotificationType, QdPageConfig, QdPageConfigCreate, QdPageConfigCustom, QdPageConfigInspect, QdPageConfigOverview, QdPageControlPanelConfig, QdPageHeaderFacetConfig, QdPageInfoBannerConfig, QdPageInfoBannerType, QdPageObjectResolver, QdPageObjectResolverConfig, QdPageSelectedContext, QdPageStepConfig, QdPageStepResolver, QdPageStepperConfig, QdPageTabConfig, QdPageTabCounters, QdPageTabsConfig, QdPageTypeCreateConfig, QdPageTypeCustomConfig, QdPageTypeInspectConfig, QdPageTypeOverviewConfig, QdPlaceholder, QdPushEventName, QdQueryParameter, QdQuickEditConfig, QdQuickEditData, QdRichtextConfig, QdSearchOptions, QdSearchPostBodyData, QdSectionActionType, QdSectionConfig, QdShellConfig, QdShellFooterCopyrightInfo, QdShellNavigationConfig, QdShellServiceNavigationBadge, QdShellServiceNavigationConfig, QdShellServiceNavigationContactInfo, QdShellServiceNavigationCustomButtonLinks, QdShellServiceNavigationEnvironment, QdShellServiceNavigationHrefs, QdShellServiceNavigationInfoLink, QdShellServiceNavigationLanguage, QdShellServiceNavigationMultiHrefs, QdShellServiceNavigationProfileLink, QdShellServiceNavigationSingleHref, QdShellToolbarConfig, QdShellToolbarItem, QdStatus, QdStatusIndicator, QdSwitchOption, QdTabSelectionEvent, QdTableChipDataValue, QdTableConfig, QdTableConfigColumn, QdTableConfigSecondaryActionType, 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 };
18463
+ 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, QdFacetOptionsIcon, QdFileCollectorConfig, QdFileManager, QdFileType, QdFileUploadManager, QdFilterCategory, QdFilterConfigData, QdFilterItem, QdFilterPostBodyCategory, QdFilterPostBodyData, QdFilterType, QdFormBaseOption, QdFormBaseOptions, QdFormCheckboxChipsConfiguration, QdFormCheckboxesConfiguration, QdFormConfiguration, QdFormDatepickerConfiguration, QdFormDropdownConfiguration, QdFormFileUploadConfiguration, QdFormHint, QdFormInput, QdFormInputConfiguration, QdFormLabel, QdFormMultiInputConfiguration, QdFormOption, QdFormOptionsDependencies, QdFormOptionsResolvedEvent, QdFormOptionsResolver, QdFormPinCodeConfiguration, QdFormRadioButtonsConfiguration, QdFormResolvableOptionsConfiguration, QdFormResolvedOption, QdFormResolvedOptions, QdFormSwitchesConfiguration, QdFormTextAreaConfiguration, QdGridConfig, QdInputValue, QdInputValueWithUnit, QdInspectOperationMode, QdMenuButtonActionConfig, QdMenuButtonConfig, QdMultiInputOption, QdNotification, QdNotificationType, QdPageConfig, QdPageConfigCreate, QdPageConfigCustom, QdPageConfigInspect, QdPageConfigOverview, QdPageControlPanelConfig, QdPageHeaderFacetConfig, QdPageInfoBannerConfig, QdPageInfoBannerType, QdPageObjectResolver, QdPageObjectResolverConfig, QdPageSelectedContext, QdPageStepConfig, QdPageStepResolver, QdPageStepperConfig, QdPageTabConfig, QdPageTabCounters, QdPageTabsConfig, QdPageTypeCreateConfig, QdPageTypeCustomConfig, QdPageTypeInspectConfig, QdPageTypeOverviewConfig, QdPlaceholder, QdPushEventName, QdQueryParameter, QdQuickEditConfig, QdQuickEditData, QdRichtextConfig, QdSearchOptions, QdSearchPostBodyData, QdSectionActionType, QdSectionConfig, QdShellConfig, QdShellFooterCopyrightInfo, QdShellNavigationConfig, QdShellServiceNavigationBadge, QdShellServiceNavigationConfig, QdShellServiceNavigationContactInfo, QdShellServiceNavigationCustomButtonLinks, QdShellServiceNavigationEnvironment, QdShellServiceNavigationHrefs, QdShellServiceNavigationInfoLink, QdShellServiceNavigationLanguage, QdShellServiceNavigationMultiHrefs, QdShellServiceNavigationProfileLink, QdShellServiceNavigationSingleHref, QdShellToolbarConfig, QdShellToolbarItem, QdStatus, QdStatusIndicator, QdSwitchOption, QdTabSelectionEvent, QdTableChipDataValue, QdTableConfig, QdTableConfigColumn, QdTableConfigSecondaryActionType, 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.18.4",
3
+ "version": "20.19.0",
4
4
  "exports": {
5
5
  "./jest-preset": "./jest-preset.js",
6
6
  "./package.json": {