@quadrel-enterprise-ui/framework 20.24.0 → 20.25.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
@@ -3464,12 +3464,13 @@ declare class QdMockCheckboxComponent {
3464
3464
  inputData: QdFormCheckboxOption;
3465
3465
  value: string;
3466
3466
  disabled: boolean;
3467
+ hasAutofocus: boolean;
3467
3468
  testId: string;
3468
3469
  valueChange: EventEmitter<string>;
3469
3470
  get dataTestId(): string;
3470
3471
  handleClick(): void;
3471
3472
  static ɵfac: i0.ɵɵFactoryDeclaration<QdMockCheckboxComponent, never>;
3472
- 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>;
3473
+ static ɵcmp: i0.ɵɵComponentDeclaration<QdMockCheckboxComponent, "qd-checkbox", never, { "inputData": { "alias": "inputData"; "required": false; }; "value": { "alias": "value"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "hasAutofocus": { "alias": "hasAutofocus"; "required": false; }; "testId": { "alias": "data-test-id"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, false, never>;
3473
3474
  }
3474
3475
 
3475
3476
  declare class QdMockCheckboxesComponent {
@@ -6003,6 +6004,14 @@ declare class QdCheckboxComponent implements ControlValueAccessor {
6003
6004
  value: string;
6004
6005
  testId: string;
6005
6006
  disabled: boolean;
6007
+ /**
6008
+ * @description Set to "true", this checkbox's native input will be focused when the application is
6009
+ * initially loaded. Within a checkbox group, the group passes this only to its first checkbox.
6010
+ * Note: hasAutofocus can only be used once per view. No matter in which pattern it is used.
6011
+ *
6012
+ * * @default: false
6013
+ */
6014
+ hasAutofocus: boolean;
6006
6015
  valueChange: EventEmitter<string>;
6007
6016
  get checked(): boolean;
6008
6017
  get isDisabled(): boolean;
@@ -6016,7 +6025,7 @@ declare class QdCheckboxComponent implements ControlValueAccessor {
6016
6025
  writeValue(value: any): void;
6017
6026
  handleClick(value: string, event: MouseEvent): void;
6018
6027
  static ɵfac: i0.ɵɵFactoryDeclaration<QdCheckboxComponent, never>;
6019
- static ɵcmp: i0.ɵɵComponentDeclaration<QdCheckboxComponent, "qd-checkbox", never, { "inputData": { "alias": "inputData"; "required": false; }; "value": { "alias": "value"; "required": false; }; "testId": { "alias": "data-test-id"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, false, never>;
6028
+ static ɵcmp: i0.ɵɵComponentDeclaration<QdCheckboxComponent, "qd-checkbox", never, { "inputData": { "alias": "inputData"; "required": false; }; "value": { "alias": "value"; "required": false; }; "testId": { "alias": "data-test-id"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "hasAutofocus": { "alias": "hasAutofocus"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, false, never>;
6020
6029
  }
6021
6030
 
6022
6031
  /**
@@ -6109,6 +6118,7 @@ declare class QdCheckboxesComponent implements OnInit, OnChanges, OnDestroy, Con
6109
6118
  get isVertical(): boolean;
6110
6119
  get isHorizontal(): boolean;
6111
6120
  filter: boolean;
6121
+ hasAutofocus: boolean;
6112
6122
  label: string;
6113
6123
  hint: string;
6114
6124
  align: any;
@@ -11818,6 +11828,7 @@ declare class QdFilterItemDateComponent implements OnInit, OnDestroy {
11818
11828
  clickTimePlaceholder: EventEmitter<boolean>;
11819
11829
  testId: string;
11820
11830
  get dataTestId(): string;
11831
+ datepickerConfig: QdFormDatepickerConfiguration;
11821
11832
  item: Date;
11822
11833
  private _destroyed$;
11823
11834
  ngOnInit(): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quadrel-enterprise-ui/framework",
3
- "version": "20.24.0",
3
+ "version": "20.25.1",
4
4
  "exports": {
5
5
  "./jest-preset": "./jest-preset.js",
6
6
  "./package.json": {