@beeq/angular 1.10.0-beta.3 → 1.10.0-beta.5

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.
@@ -310,15 +310,15 @@ Details: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#attr-target
310
310
  }
311
311
  export declare interface BqButton extends Components.BqButton {
312
312
  /**
313
- * Handler to be called when the button loses focus
313
+ * Handler to be called when the button loses focus.
314
314
  */
315
315
  bqBlur: EventEmitter<CustomEvent<HTMLBqButtonElement>>;
316
316
  /**
317
- * Handler to be called when the button is clicked
317
+ * Handler to be called when the button gets focus.
318
318
  */
319
319
  bqFocus: EventEmitter<CustomEvent<HTMLBqButtonElement>>;
320
320
  /**
321
- * Handler to be called when button gets focus
321
+ * Handler to be called when the button is clicked.
322
322
  */
323
323
  bqClick: EventEmitter<CustomEvent<HTMLBqButtonElement>>;
324
324
  }
@@ -1175,7 +1175,11 @@ export declare class BqRadio {
1175
1175
  protected z: NgZone;
1176
1176
  protected el: HTMLBqRadioElement;
1177
1177
  /**
1178
- * If true radio input is checked
1178
+ * If true radio displays background on hover @default false
1179
+ */
1180
+ set backgroundOnHover(_: Components.BqRadio['backgroundOnHover']);
1181
+ /**
1182
+ * If true radio input is checked @default false
1179
1183
  */
1180
1184
  set checked(_: Components.BqRadio['checked']);
1181
1185
  /**
@@ -1183,10 +1187,6 @@ export declare class BqRadio {
1183
1187
  */
1184
1188
  set disabled(_: Components.BqRadio['disabled']);
1185
1189
  /**
1186
- * If true radio displays background on hover @default false
1187
- */
1188
- set backgroundOnHover(_: Components.BqRadio['backgroundOnHover']);
1189
- /**
1190
1190
  * The form ID that the radio input is associated with
1191
1191
  */
1192
1192
  set formId(_: Components.BqRadio['formId']);
@@ -1210,7 +1210,10 @@ export declare interface BqRadio extends Components.BqRadio {
1210
1210
  /**
1211
1211
  * Handler to be called when the radio state changes
1212
1212
  */
1213
- bqClick: EventEmitter<CustomEvent<HTMLBqRadioElement>>;
1213
+ bqClick: EventEmitter<CustomEvent<{
1214
+ value: string;
1215
+ target: HTMLBqRadioElement;
1216
+ }>>;
1214
1217
  /**
1215
1218
  * Handler to be called when the radio gets focus
1216
1219
  */
@@ -1222,7 +1225,10 @@ export declare interface BqRadio extends Components.BqRadio {
1222
1225
  /**
1223
1226
  * Handler to be called when the radio key is pressed
1224
1227
  */
1225
- bqKeyDown: EventEmitter<CustomEvent<KeyboardEvent>>;
1228
+ bqKeyDown: EventEmitter<CustomEvent<{
1229
+ key: string;
1230
+ target: HTMLBqRadioElement;
1231
+ }>>;
1226
1232
  }
1227
1233
  export declare class BqRadioGroup {
1228
1234
  protected z: NgZone;
@@ -1447,7 +1453,7 @@ export declare class BqSideMenuItem {
1447
1453
  */
1448
1454
  set active(_: Components.BqSideMenuItem['active']);
1449
1455
  /**
1450
- * If true, the item label and suffix will be hidden and the with will be reduce according to its parent @default false
1456
+ * If true, the item label and suffix will be hidden and the `width` will be reduced according to its parent. @default false
1451
1457
  */
1452
1458
  set collapse(_: Components.BqSideMenuItem['collapse']);
1453
1459
  /**
@@ -1603,12 +1609,17 @@ export declare class BqStepItem {
1603
1609
  }
1604
1610
  export declare interface BqStepItem extends Components.BqStepItem {
1605
1611
  /**
1606
- * Callback handler emitted when the step item is clicked
1612
+ * Callback handler triggered when the step item is clicked
1607
1613
  */
1608
- bqClick: EventEmitter<CustomEvent<{
1609
- target: HTMLBqStepItemElement;
1610
- value: string;
1611
- }>>;
1614
+ bqClick: EventEmitter<CustomEvent<HTMLBqStepItemElement>>;
1615
+ /**
1616
+ * Callback handler triggered when the step item is focused
1617
+ */
1618
+ bqFocus: EventEmitter<CustomEvent<HTMLBqStepItemElement>>;
1619
+ /**
1620
+ * Callback handler triggered when the step item loses focus
1621
+ */
1622
+ bqBlur: EventEmitter<CustomEvent<HTMLBqStepItemElement>>;
1612
1623
  }
1613
1624
  export declare class BqSteps {
1614
1625
  protected z: NgZone;