@quadrel-enterprise-ui/framework 20.22.0 → 20.23.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
|
@@ -2760,6 +2760,14 @@ interface QdFormCheckboxesConfiguration extends QdFormConfiguration {
|
|
|
2760
2760
|
* * @default: 'horizontal'
|
|
2761
2761
|
*/
|
|
2762
2762
|
align?: 'vertical' | 'horizontal';
|
|
2763
|
+
/**
|
|
2764
|
+
* @description Set to "true", the first checkbox of the group will be focused when the application
|
|
2765
|
+
* is initially loaded.
|
|
2766
|
+
* Note: hasAutofocus can only be used once per view. No matter in which pattern it is used.
|
|
2767
|
+
*
|
|
2768
|
+
* * @default: false
|
|
2769
|
+
*/
|
|
2770
|
+
hasAutofocus?: boolean;
|
|
2763
2771
|
}
|
|
2764
2772
|
/**
|
|
2765
2773
|
* @description Configuration Model for Qd-Forms-Checkbox-Chips
|
|
@@ -2805,6 +2813,14 @@ interface QdFormDatepickerConfiguration extends QdFormConfiguration {
|
|
|
2805
2813
|
* @default false
|
|
2806
2814
|
*/
|
|
2807
2815
|
enableSeconds?: boolean;
|
|
2816
|
+
/**
|
|
2817
|
+
* @description Set to "true", the datepicker input field will be focused when the application is
|
|
2818
|
+
* initially loaded.
|
|
2819
|
+
* Note: hasAutofocus can only be used once per view. No matter in which pattern it is used.
|
|
2820
|
+
*
|
|
2821
|
+
* * @default: false
|
|
2822
|
+
*/
|
|
2823
|
+
hasAutofocus?: boolean;
|
|
2808
2824
|
}
|
|
2809
2825
|
interface QdDisabledDatesValidation {
|
|
2810
2826
|
/**
|
|
@@ -2939,6 +2955,13 @@ interface QdFormInputConfiguration extends QdFormConfiguration, QdFormResolvable
|
|
|
2939
2955
|
* * @default: false
|
|
2940
2956
|
*/
|
|
2941
2957
|
hasAutofocus?: boolean;
|
|
2958
|
+
/**
|
|
2959
|
+
* @description Set to "true" when a focusable control is projected into the input suffix (e.g. an icon
|
|
2960
|
+
* button). Ensures its keyboard-focus indicator is not clipped by the input box.
|
|
2961
|
+
*
|
|
2962
|
+
* * @default: false
|
|
2963
|
+
*/
|
|
2964
|
+
hasFocusableSuffix?: boolean;
|
|
2942
2965
|
/**
|
|
2943
2966
|
* @description specifies the interval between legal numbers in an <input> element.
|
|
2944
2967
|
*
|
|
@@ -2993,6 +3016,14 @@ interface QdFormRadioButtonsConfiguration extends QdFormConfiguration {
|
|
|
2993
3016
|
* * @default: 'horizontal'
|
|
2994
3017
|
*/
|
|
2995
3018
|
align?: 'vertical' | 'horizontal';
|
|
3019
|
+
/**
|
|
3020
|
+
* @description Set to "true", the first radio button of the group will be focused when the
|
|
3021
|
+
* application is initially loaded.
|
|
3022
|
+
* Note: hasAutofocus can only be used once per view. No matter in which pattern it is used.
|
|
3023
|
+
*
|
|
3024
|
+
* * @default: false
|
|
3025
|
+
*/
|
|
3026
|
+
hasAutofocus?: boolean;
|
|
2996
3027
|
}
|
|
2997
3028
|
/**
|
|
2998
3029
|
* @description Configuration Model for Qd-Forms-Switches
|
|
@@ -3447,12 +3478,11 @@ declare class QdMockCheckboxComponent {
|
|
|
3447
3478
|
value: string;
|
|
3448
3479
|
disabled: boolean;
|
|
3449
3480
|
testId: string;
|
|
3481
|
+
valueChange: EventEmitter<string>;
|
|
3450
3482
|
get dataTestId(): string;
|
|
3451
|
-
handleClick(
|
|
3452
|
-
value: any;
|
|
3453
|
-
};
|
|
3483
|
+
handleClick(): void;
|
|
3454
3484
|
static ɵfac: i0.ɵɵFactoryDeclaration<QdMockCheckboxComponent, never>;
|
|
3455
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<QdMockCheckboxComponent, "qd-checkbox", never, { "inputData": { "alias": "inputData"; "required": false; }; "value": { "alias": "value"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "testId": { "alias": "data-test-id"; "required": false; }; }, {}, never, never, false, never>;
|
|
3485
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<QdMockCheckboxComponent, "qd-checkbox", never, { "inputData": { "alias": "inputData"; "required": false; }; "value": { "alias": "value"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "testId": { "alias": "data-test-id"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, false, never>;
|
|
3456
3486
|
}
|
|
3457
3487
|
|
|
3458
3488
|
declare class QdMockCheckboxesComponent {
|