@quadrel-enterprise-ui/framework 20.18.4 → 20.20.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
@@ -3195,6 +3199,10 @@ interface QdInputValueWithUnit {
3195
3199
  */
3196
3200
  unit?: string;
3197
3201
  }
3202
+ /**
3203
+ * @description Raw value emitted by a datepicker input event — a plain value, a value with unit, or undefined.
3204
+ */
3205
+ type QdInputRawEventValue = QdInputValue | QdInputValueWithUnit | undefined;
3198
3206
  /**
3199
3207
  * @description Specify an input form type
3200
3208
  *
@@ -6118,7 +6126,6 @@ declare class QdCheckboxesComponent implements OnInit, OnChanges, OnDestroy, Con
6118
6126
  static ɵcmp: i0.ɵɵComponentDeclaration<QdCheckboxesComponent, "qd-checkboxes", never, { "formControlName": { "alias": "formControlName"; "required": false; }; "values": { "alias": "values"; "required": false; }; "config": { "alias": "config"; "required": false; }; "testId": { "alias": "data-test-id"; "required": false; }; }, { "valuesChange": "valuesChange"; "clickHint": "clickHint"; "clickReadonly": "clickReadonly"; "clickViewonly": "clickViewonly"; }, never, never, false, never>;
6119
6127
  }
6120
6128
 
6121
- type QdInputRawEventValue = QdInputValue | QdInputValueWithUnit | undefined;
6122
6129
  /**
6123
6130
  * The **QdDatepicker** component provides a FormElement that can be used to select a date.<br />
6124
6131
  * The format of the input and the output is the Javascript Date Object. It can be used with Quadrel Reactive Forms or with model binding.
@@ -6293,12 +6300,26 @@ declare const QD_FORM_OPTIONS_RESOLVER: InjectionToken<QdFormOptionsResolver | Q
6293
6300
  /**
6294
6301
  * Defines a resolver that dynamically provides options for form inputs
6295
6302
  * based on a value (e.g., user input or context).
6303
+ *
6304
+ * The same trigger rules apply to every form element connected to a resolver
6305
+ * (QdInput, QdDropdown). `resolve` is invoked:
6306
+ * - once on initialization, with the current value
6307
+ * - whenever the element's own value actually changes (an unchanged value does not re-resolve)
6308
+ * - whenever a control listed in `optionsDependsOn` changes, with the unchanged own value
6309
+ * and the new dependency values (previously resolved options are cleared first)
6310
+ * - whenever the element's configuration changes
6311
+ *
6312
+ * `resolve` is NOT invoked:
6313
+ * - for the display value written back after an option has been selected (a selection is not a search)
6314
+ * - while the element is readonly or viewonly
6296
6315
  */
6297
6316
  interface QdFormOptionsResolver {
6298
6317
  /**
6299
6318
  * Resolves a list of input options for a given input value.
6319
+ * When the form input declares `optionsDependsOn`, the current values of the
6320
+ * depended-on controls are passed as named dependencies.
6300
6321
  */
6301
- resolve(value: string): Observable<QdFormResolvedOptions>;
6322
+ resolve(value: string, dependencies?: QdFormOptionsDependencies): Observable<QdFormResolvedOptions>;
6302
6323
  /**
6303
6324
  * Optional name to identify this resolver.
6304
6325
  * Use this in the form configuration (`optionsResolverName`)
@@ -6323,6 +6344,24 @@ interface QdFormOptionsResolver {
6323
6344
  i18n: string;
6324
6345
  };
6325
6346
  }
6347
+ /**
6348
+ * Current values of the controls a form input's options depend on,
6349
+ * keyed by control name as configured in `optionsDependsOn`.
6350
+ */
6351
+ type QdFormOptionsDependencies = Record<string, unknown>;
6352
+ /**
6353
+ * Payload of the `optionsResolved` output of form elements connected to a
6354
+ * QdFormOptionsResolver. Carries the options delivered by the resolver together
6355
+ * with the depended-on values they were resolved with.
6356
+ *
6357
+ * The framework never resets a dependent control when its options change.
6358
+ * Whether a now-invalid selection is cleared is the consuming application's
6359
+ * decision, typically based on this event.
6360
+ */
6361
+ interface QdFormOptionsResolvedEvent {
6362
+ options: QdFormResolvedOptions;
6363
+ dependencies?: QdFormOptionsDependencies;
6364
+ }
6326
6365
  /**
6327
6366
  * Represents a single raw input option as returned by a QdFormOptionsResolver.
6328
6367
  * This is the unprocessed shape coming directly from the resolver.
@@ -6497,6 +6536,21 @@ declare class QdDropdownComponent implements ControlValueAccessor, OnInit, OnCha
6497
6536
  * Emits event when the viewonly value is clicked/tapped. `clickViewonly ` must be set to `true` for this.
6498
6537
  */
6499
6538
  readonly clickViewonly: EventEmitter<any>;
6539
+ /**
6540
+ * Emits the resolved options and the depended-on values they were resolved with,
6541
+ * after every resolver run.
6542
+ *
6543
+ * The resolver fetches the options; this output lets the component react to them —
6544
+ * typically to drop a selection the new options no longer contain (e.g. clear the
6545
+ * chosen city once the country changed).
6546
+ *
6547
+ * @example
6548
+ * onCityOptionsResolved(event: QdFormOptionsResolvedEvent): void {
6549
+ * const city = this.form.get('city');
6550
+ * if (city?.value && !event.options.some(o => o.value === city.value)) city.reset();
6551
+ * }
6552
+ */
6553
+ readonly optionsResolved: EventEmitter<QdFormOptionsResolvedEvent>;
6500
6554
  readonly: boolean;
6501
6555
  readonlyAction: boolean;
6502
6556
  viewonly: boolean;
@@ -6552,7 +6606,7 @@ declare class QdDropdownComponent implements ControlValueAccessor, OnInit, OnCha
6552
6606
  private updateSelectedOption;
6553
6607
  private initOpModeSubscription;
6554
6608
  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>;
6609
+ 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
6610
  }
6557
6611
 
6558
6612
  /**
@@ -7067,6 +7121,21 @@ declare class QdInputComponent implements OnInit, OnChanges, OnDestroy, ControlV
7067
7121
  * Emits event when the viewonly value is clicked/tapped. `clickViewonly ` must be set to `true` for this.
7068
7122
  */
7069
7123
  readonly clickViewonly: EventEmitter<any>;
7124
+ /**
7125
+ * Emits the resolved options and the depended-on values they were resolved with,
7126
+ * after every resolver run.
7127
+ *
7128
+ * The resolver fetches the options; this output lets the component react to them —
7129
+ * typically to drop a selection the new options no longer contain (e.g. clear the
7130
+ * chosen city once the country changed).
7131
+ *
7132
+ * @example
7133
+ * onCityOptionsResolved(event: QdFormOptionsResolvedEvent): void {
7134
+ * const city = this.form.get('city');
7135
+ * if (city?.value && !event.options.some(o => o.value === city.value)) city.reset();
7136
+ * }
7137
+ */
7138
+ readonly optionsResolved: EventEmitter<QdFormOptionsResolvedEvent>;
7070
7139
  readonly: boolean;
7071
7140
  readonlyAction: boolean;
7072
7141
  viewonly: boolean;
@@ -7128,7 +7197,7 @@ declare class QdInputComponent implements OnInit, OnChanges, OnDestroy, ControlV
7128
7197
  private normalizeInitialControlValueIfNeeded;
7129
7198
  private applyDisplayFormat;
7130
7199
  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>;
7200
+ 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
7201
  }
7133
7202
 
7134
7203
  /**
@@ -7136,6 +7205,12 @@ declare class QdInputComponent implements OnInit, OnChanges, OnDestroy, ControlV
7136
7205
  */
7137
7206
  type QdFormInput = QdFormBaseOption;
7138
7207
 
7208
+ /**
7209
+ * Represents a list of options used in radio buttons.
7210
+ */
7211
+ interface QdFormRadioButtonsOptions extends QdFormBaseOptions {
7212
+ }
7213
+
7139
7214
  type QdFormArrayValuesOrControls<T> = T[] | AbstractControl[];
7140
7215
  type QdFormArrayItemValidator = ValidatorFn | ValidatorFn[] | null;
7141
7216
  type QdFormArrayItemValidatorOrOpts = QdFormArrayItemValidator | QdFormArrayOptions;
@@ -7720,12 +7795,6 @@ declare class QdPinCodeComponent implements OnInit, OnChanges, AfterViewInit, On
7720
7795
  static ɵcmp: i0.ɵɵComponentDeclaration<QdPinCodeComponent, "qd-pin-code", never, { "formControlName": { "alias": "formControlName"; "required": false; }; "value": { "alias": "value"; "required": false; }; "config": { "alias": "config"; "required": false; }; "testId": { "alias": "data-test-id"; "required": false; }; }, { "completed": "completed"; "valueChange": "valueChange"; "clickHint": "clickHint"; "clickReadonly": "clickReadonly"; "clickViewonly": "clickViewonly"; }, never, never, false, never>;
7721
7796
  }
7722
7797
 
7723
- /**
7724
- * Represents a list of options used in radio buttons.
7725
- */
7726
- interface QdFormRadioButtonsOptions extends QdFormBaseOptions {
7727
- }
7728
-
7729
7798
  /**
7730
7799
  * The **QdRadioButtons** is a component that provides a form element for radio buttons.<br />
7731
7800
  * It allows users to select one option from a list of options. It can be used with Quadrel Reactive Forms or with model binding.
@@ -8571,11 +8640,21 @@ declare class QdInputUnitsComponent implements OnInit, OnChanges {
8571
8640
  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
8641
  }
8573
8642
 
8643
+ /**
8644
+ * Manages the options popover of a form input, including resolver-based options.
8645
+ * The resolver trigger rules are defined on {@link QdFormOptionsResolver}.
8646
+ *
8647
+ * Invariant: the `value` setter resolves options only on actual value changes. Selecting
8648
+ * an option assigns the option's i18n key as the new value right away, because the host
8649
+ * component writes exactly that key back into the `value` binding for display purposes —
8650
+ * the write-back therefore arrives as a no-op instead of resolving with the i18n key.
8651
+ */
8574
8652
  declare class QdInputOptionsDirective extends QdPopoverOnClickDirective implements OnInit, OnChanges, OnDestroy, AfterViewInit {
8575
8653
  private readonly translateService;
8576
8654
  private readonly viewContainerRef;
8577
8655
  private readonly changeDetectorRef;
8578
8656
  private readonly resolverRegistry;
8657
+ private readonly controlContainer;
8579
8658
  get value(): QdInputValue;
8580
8659
  /**
8581
8660
  * The value of the form input
@@ -8599,7 +8678,22 @@ declare class QdInputOptionsDirective extends QdPopoverOnClickDirective implemen
8599
8678
  /**
8600
8679
  * Emits event when an option in the fly out has been selected.
8601
8680
  */
8602
- readonly optionSelected: EventEmitter<QdFormBaseOption>;
8681
+ readonly optionSelected: EventEmitter<_quadrel_enterprise_ui_framework.QdFormBaseOption>;
8682
+ /**
8683
+ * Emits the resolved options and the depended-on values they were resolved with,
8684
+ * after every resolver run.
8685
+ *
8686
+ * The resolver fetches the options; this output lets the component react to them —
8687
+ * typically to drop a selection the new options no longer contain (e.g. clear the
8688
+ * chosen city once the country changed).
8689
+ *
8690
+ * @example
8691
+ * onCityOptionsResolved(event: QdFormOptionsResolvedEvent): void {
8692
+ * const city = this.form.get('city');
8693
+ * if (city?.value && !event.options.some(o => o.value === city.value)) city.reset();
8694
+ * }
8695
+ */
8696
+ readonly optionsResolved: EventEmitter<QdFormOptionsResolvedEvent>;
8603
8697
  onSpace(): void;
8604
8698
  onEscape(): void;
8605
8699
  onTab(): void;
@@ -8612,6 +8706,8 @@ declare class QdInputOptionsDirective extends QdPopoverOnClickDirective implemen
8612
8706
  private _value;
8613
8707
  private _filteredOptionsSubject;
8614
8708
  private _destroyed$;
8709
+ private _dependsOnSubscription;
8710
+ private readonly _resolveRequests$;
8615
8711
  filteredOptions$: rxjs.Observable<QdFormResolvedOptions>;
8616
8712
  optionsRequestState$: rxjs.Observable<QdFormOptionsRequestState>;
8617
8713
  formInputComponents: QueryList<QdFormInputComponent>;
@@ -8624,15 +8720,18 @@ declare class QdInputOptionsDirective extends QdPopoverOnClickDirective implemen
8624
8720
  onKeyDown(event: KeyboardEvent): void;
8625
8721
  selectOption(option: QdFormResolvedOption): void;
8626
8722
  private logWarningIfBothOptionsAndResolverAreUsed;
8723
+ private logWarningIfDependsOnWithoutFormGroup;
8627
8724
  private closePopover;
8628
8725
  private createKeyManager;
8629
8726
  private setPopoverProperties;
8630
8727
  private hasOptions;
8631
8728
  private updateOptions;
8729
+ private updateOptionsWhenDependsOnControlsChange;
8632
8730
  private updateOptionsWithResolver;
8731
+ private publishLatestResolvedOptions;
8633
8732
  private filterOptions;
8634
8733
  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>;
8734
+ 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
8735
  }
8637
8736
 
8638
8737
  declare class QdInputOptionsComponent implements OnInit, AfterViewInit {
@@ -8641,7 +8740,7 @@ declare class QdInputOptionsComponent implements OnInit, AfterViewInit {
8641
8740
  optionsRequestState$: Observable<QdFormOptionsRequestState>;
8642
8741
  template: EventEmitter<TemplateRef<any>>;
8643
8742
  formInputComponents: EventEmitter<QueryList<QdFormInputComponent>>;
8644
- optionSelected: EventEmitter<QdFormBaseOption>;
8743
+ optionSelected: EventEmitter<_quadrel_enterprise_ui_framework.QdFormBaseOption>;
8645
8744
  private _template;
8646
8745
  _formInputComponents: QueryList<QdFormInputComponent>;
8647
8746
  get requestLoadingHintI18n(): string;
@@ -10296,6 +10395,56 @@ declare class QdDialogComponent implements OnInit, AfterContentChecked, AfterVie
10296
10395
  static ɵcmp: i0.ɵɵComponentDeclaration<QdDialogComponent, "qd-dialog", never, {}, {}, never, ["qd-page-info-banner", "*", "qd-dialog-action"], false, never>;
10297
10396
  }
10298
10397
 
10398
+ /**
10399
+ * Represents the UX-relevant cause why a Page Dialog might require user confirmation before closing.
10400
+ *
10401
+ * This is intentionally **not** the close trigger (ESC / close icon / cancel button / navigation).
10402
+ * In Quadrel those triggers must behave consistently; only the underlying UX state matters.
10403
+ *
10404
+ * @default 'UNSAVED_CHANGES'
10405
+ */
10406
+ type QdPageDialogCloseCause = 'UNSAVED_CHANGES';
10407
+ /**
10408
+ * Result of a Page Dialog close check.
10409
+ *
10410
+ * The Page (and its form-state integration) is the single source of truth for pending changes.
10411
+ * The dialog host uses this result to decide whether it can close immediately or must show a confirmation dialog.
10412
+ */
10413
+ interface QdPageDialogCanCloseResult {
10414
+ /**
10415
+ * Whether the Page Dialog is allowed to close right now.
10416
+ */
10417
+ canClose: boolean;
10418
+ /**
10419
+ * Indicates whether the user has made changes that would be lost on close.
10420
+ *
10421
+ * This is used to ensure deterministic cancel behavior, e.g.:
10422
+ * - always execute the cancel handler
10423
+ * - optionally pass a boolean flag (changed / unchanged) to downstream logic
10424
+ *
10425
+ * @default false
10426
+ */
10427
+ hasChanges: boolean;
10428
+ /**
10429
+ * Optional UX cause that can be used to derive the confirmation dialog message.
10430
+ *
10431
+ * Typical usage is a framework-owned i18n mapping such as:
10432
+ * i18n.qd.page.dialog.close.confirmation.<cause>
10433
+ *
10434
+ * @default 'UNSAVED_CHANGES'
10435
+ */
10436
+ cause?: QdPageDialogCloseCause;
10437
+ }
10438
+ /**
10439
+ * Contract for Page Dialog close decisions.
10440
+ *
10441
+ * The Page registers this function (e.g. when rendered inside the dialog router-outlet).
10442
+ * The dialog host calls it before closing to enforce consistent, framework-defined UX behavior.
10443
+ *
10444
+ * Observable is used to support asynchronous decisions (e.g. confirmation dialogs).
10445
+ */
10446
+ type QdPageDialogCanCloseFn = () => Observable<QdPageDialogCanCloseResult>;
10447
+
10299
10448
  /**
10300
10449
  * Token for resolving a request for the confirmation dialog.
10301
10450
  */
@@ -10410,56 +10559,6 @@ interface QdDialogConfirmConfigTranslation {
10410
10559
  */
10411
10560
  type QdConfirmationStatus = 'info' | 'success' | 'error';
10412
10561
 
10413
- /**
10414
- * Represents the UX-relevant cause why a Page Dialog might require user confirmation before closing.
10415
- *
10416
- * This is intentionally **not** the close trigger (ESC / close icon / cancel button / navigation).
10417
- * In Quadrel those triggers must behave consistently; only the underlying UX state matters.
10418
- *
10419
- * @default 'UNSAVED_CHANGES'
10420
- */
10421
- type QdPageDialogCloseCause = 'UNSAVED_CHANGES';
10422
- /**
10423
- * Result of a Page Dialog close check.
10424
- *
10425
- * The Page (and its form-state integration) is the single source of truth for pending changes.
10426
- * The dialog host uses this result to decide whether it can close immediately or must show a confirmation dialog.
10427
- */
10428
- interface QdPageDialogCanCloseResult {
10429
- /**
10430
- * Whether the Page Dialog is allowed to close right now.
10431
- */
10432
- canClose: boolean;
10433
- /**
10434
- * Indicates whether the user has made changes that would be lost on close.
10435
- *
10436
- * This is used to ensure deterministic cancel behavior, e.g.:
10437
- * - always execute the cancel handler
10438
- * - optionally pass a boolean flag (changed / unchanged) to downstream logic
10439
- *
10440
- * @default false
10441
- */
10442
- hasChanges: boolean;
10443
- /**
10444
- * Optional UX cause that can be used to derive the confirmation dialog message.
10445
- *
10446
- * Typical usage is a framework-owned i18n mapping such as:
10447
- * i18n.qd.page.dialog.close.confirmation.<cause>
10448
- *
10449
- * @default 'UNSAVED_CHANGES'
10450
- */
10451
- cause?: QdPageDialogCloseCause;
10452
- }
10453
- /**
10454
- * Contract for Page Dialog close decisions.
10455
- *
10456
- * The Page registers this function (e.g. when rendered inside the dialog router-outlet).
10457
- * The dialog host calls it before closing to enforce consistent, framework-defined UX behavior.
10458
- *
10459
- * Observable is used to support asynchronous decisions (e.g. confirmation dialogs).
10460
- */
10461
- type QdPageDialogCanCloseFn = () => Observable<QdPageDialogCanCloseResult>;
10462
-
10463
10562
  /**
10464
10563
  * Interface representing the record stepper dialog data.
10465
10564
  */
@@ -18363,5 +18462,5 @@ declare class QdUiModule {
18363
18462
 
18364
18463
  declare const APP_ENVIRONMENT: InjectionToken<QdAppEnvironment>;
18365
18464
 
18366
- 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 };
18465
+ 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, QdFooterActionType, 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, QdSearchService, 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 };
18466
+ export type { CustomField, QdAppEnvironment, QdAudioFileType, QdButtonAdditionalInfo, QdButtonAdditionalInfoMessage, QdButtonAdditionalInfoType, QdButtonColor, QdChipColor, QdCollectedFile, QdComment, QdCommentAuthorFieldConfig, QdCommentCustomFieldConfig, QdCommentDeletedMeta, QdCommentRichtextConfig, QdCommentSecondaryActionConfig, QdCommentsAddButtonConfig, QdCommentsAddConfig, QdCommentsConfig, QdCompressedFileType, QdConfirmationStatus, QdContactAddress, QdContactCardActionConfig, QdContactCardActionLabel, QdContactCardActionsConfig, QdContactData, QdContactDataCustomField, QdContactDataCustomFieldEntry, QdContactDataCustomTranslatedEntry, QdContactFunction, QdContactPerson, QdContactTag, QdContextSelection, QdDependentFilterCategory, QdDialogAuthSessionEndResult, QdDialogCancelAction, QdDialogConfig, QdDialogConfirmConfigTranslation, QdDialogConfirmationConfig, QdDialogConfirmationResolver, QdDialogData, QdDialogPrimaryAction, QdDialogTitle, QdDisabledDates, QdDisabledDatesValidation, QdDisabledTimes, QdDisabledTimesValidation, QdDocumentFileType, QdFacetOptionMultiSelect, QdFacetOptionSingleSelect, QdFacetOptions, QdFacetOptionsDate, QdFacetOptionsIcon, QdFacetOptionsStatus, QdFacetOptionsValue, QdFileCollectorConfig, QdFileUpload$1 as QdFileCollectorUpload, QdFileManager, QdFileType, QdFileUpload, QdFileUploadManager, QdFilterCategory, QdFilterConfigData, QdFilterItem, QdFilterPostBodyCategory, QdFilterPostBodyData, QdFilterSelection, QdFilterType, QdFormArrayAsyncValidator, QdFormArrayItemAsyncValidator, QdFormArrayItemValidator, QdFormArrayItemValidatorOrOpts, QdFormArrayOptions, QdFormArrayValidator, QdFormArrayValuesOrControls, QdFormBaseOption, QdFormBaseOptions, QdFormCheckboxChipsConfiguration, QdFormCheckboxOption, QdFormCheckboxOptions, QdFormCheckboxesConfiguration, QdFormConfiguration, QdFormDatepickerConfiguration, QdFormDropdownConfiguration, QdFormFileUploadConfiguration, QdFormHint, QdFormInput, QdFormInputConfiguration, QdFormInputOption, QdFormLabel, QdFormMultiInputConfiguration, QdFormOption, QdFormOptionsDependencies, QdFormOptionsResolvedEvent, QdFormOptionsResolver, QdFormPinCodeConfiguration, QdFormRadioButtonsConfiguration, QdFormRadioButtonsOptions, QdFormResolvableOptionsConfiguration, QdFormResolvedOption, QdFormResolvedOptions, QdFormSwitchesConfiguration, QdFormTextAreaConfiguration, QdFormTimepickerConfiguration, QdGridConfig, QdHinti18n, QdImageFileType, QdInputMode, QdInputRawEventValue, QdInputType, QdInputValue, QdInputValueWithUnit, QdInspectOperationMode, QdLabeli18n, QdLegacySectionActionConfig, QdMaxColumnsCount, QdMenuButtonActionConfig, QdMenuButtonActionLabel, QdMenuButtonConfig, QdMultiInputOption, QdNotification, QdNotificationLink, QdNotificationTitle, QdNotificationTranslation, QdNotificationType, QdNotifications, QdOsNotificationOptions, QdPageArchiveAction, QdPageCancelAction, QdPageCommitAction, QdPageConfig, QdPageConfigBase, QdPageConfigCreate, QdPageConfigCustom, QdPageConfigInspect, QdPageConfigOverview, QdPageContextConfig, QdPageContextConfigBase, QdPageContextConfigCustom, QdPageContextConfigMulti, QdPageContextConfigSingle, QdPageControlPanelConfig, QdPageCreateSubmitAction, QdPageCustomActionsLabel, QdPageDeleteAction, QdPageDialogCanCloseEntry, QdPageDialogCanCloseFn, QdPageDialogCanCloseResult, QdPageDialogCloseCause, QdPageEditAction, QdPageFooterAction, QdPageHeaderFacetConfig, QdPageInfoBannerConfig, QdPageInfoBannerLink, QdPageInfoBannerTitle, QdPageInfoBannerTranslation, QdPageInfoBannerType, QdPageInspectSubmitAction, QdPageObjectResolver, QdPageObjectResolverConfig, QdPageSaveAction, QdPageSaveDraftAction, QdPageSelectedContext, QdPageStepConfig, QdPageStepResolver, QdPageStepperActionConfig, QdPageStepperConfig, QdPageStepperHandlerParams, QdPageStepperSubmitActionConfig, QdPageTabConfig, QdPageTabCounters, QdPageTabsConfig, QdPageTabsSubmitButtonConfig, QdPageTitle, QdPageTypeCreateConfig, QdPageTypeCustomConfig, QdPageTypeInspectConfig, QdPageTypeOverviewConfig, QdPaginationParams, QdPanelSectionActionConfig, QdPanelSectionConfig, QdPanelSectionStatusConfig, QdPanelSectionTextParagraphConfig, QdPanelSectionTextParagraphTitle, QdPanelSectionTitle, QdPinCodeInputType, QdPlaceholder, QdPlaceholderPrefix, QdPredefinedSectionActionConfig, QdPushEventName, QdQueryParameter, QdQuickEditColumn, QdQuickEditColumnBase, QdQuickEditColumnEnum, QdQuickEditColumnInteger, QdQuickEditColumnText, QdQuickEditConfig, QdQuickEditData, QdQuickEditDataValue, QdQuickEditEmptyStateView, QdQuickEditRow, QdQuickEditSecondaryAction, QdResolvedFilterCategory, QdRichtextConfig, QdSearchAdditionalInfo, QdSearchOptions, QdSearchPostBodyData, QdSearchPreSelectOptions, QdSearchPreSelectOptionsList, QdSearchState, QdSectionActionConfig, QdSectionActionOperationMode, QdSectionActionType, QdSectionCollapse, QdSectionConfig, QdSectionTitle, QdShellConfig, QdShellFooterCopyrightInfo, QdShellHeaderWidgetBadge, QdShellHeaderWidgetConfig, QdShellHeaderWidgetContactInfo, QdShellHeaderWidgetCustomButtonLinks, QdShellHeaderWidgetEnvironment, QdShellHeaderWidgetHrefs, QdShellHeaderWidgetInfoLink, QdShellHeaderWidgetLanguage, QdShellHeaderWidgetMultiHrefBadge, QdShellHeaderWidgetMultiHrefs, QdShellHeaderWidgetProfileLink, QdShellHeaderWidgetSingleHref, QdShellHeaderWidgetSingleHrefBadge, QdShellNavigationConfig, QdShellServiceNavigationBadge, QdShellServiceNavigationConfig, QdShellServiceNavigationContactInfo, QdShellServiceNavigationCustomButtonLinks, QdShellServiceNavigationEnvironment, QdShellServiceNavigationHrefs, QdShellServiceNavigationInfoLink, QdShellServiceNavigationLanguage, QdShellServiceNavigationMultiHrefBadge, QdShellServiceNavigationMultiHrefs, QdShellServiceNavigationProfileLink, QdShellServiceNavigationSingleHref, QdShellServiceNavigationSingleHrefBadge, QdShellToolbarConfig, QdShellToolbarItem, QdSnackbarNotificationOptions, QdStaticFilterCategory, QdStatus, QdStatusIndicator, QdStatusIndicatorCaption, QdStatusIndicatorLevel, QdStatusIndicatorType, QdStatusPairStatus, QdSubgridConfig, QdSwitchInput, QdSwitchOption, QdTabSelectionEvent, QdTableActionResult, QdTableChipDataValue, QdTableConfig, QdTableConfigColumn, QdTableConfigColumnBase, QdTableConfigColumnSort, QdTableConfigColumnType, QdTableConfigGroup, QdTableConfigSecondaryActionType, QdTableConfigSelection, QdTableConfigSelectionType, QdTableConnectorCriteria, QdTableContentDataChip, QdTableContentDataChipObject, QdTableContextDataValue, QdTableCriticalDataValue, QdTableData, QdTableDataResolver, QdTableDataResolverProps, QdTableDataRow, QdTableDataValue, QdTableEmptyStateView, QdTableFillingColumn, QdTableOptionalRefreshingEventTypes, QdTablePagination, QdTablePrimaryAction, QdTableRecentSecondaryAction, QdTableRefreshConfig, QdTableResolvedData, QdTableRowIdentifier, QdTableRowIndex, QdTableRowUid, QdTableSecondaryAction, QdTableSelectedRow, QdTableSelectedRows, QdTableSort, QdTableStateSort, QdTableStatusDataValue, QdTileConfig, QdTilesConfig, QdTooltip, QdTranslatable, QdTranslation, QdTreeActionResult, QdTreeConfig, QdTreeConfigColumn, QdTreeConfigColumnBase, QdTreeConfigColumnType, QdTreeConfigSecondaryActionType, QdTreeData, QdTreeDataRow, QdTreeDataValue, QdTreeEmptyStateView, QdTreeGroupConfig, QdTreeSecondaryAction, QdUploadError, QdUploadProgress, QdVideoFileType };
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.20.0",
4
4
  "exports": {
5
5
  "./jest-preset": "./jest-preset.js",
6
6
  "./package.json": {