@beeq/angular 1.10.0-beta.2 → 1.10.0-beta.4

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.
@@ -188,11 +188,11 @@ export declare class BqBadge {
188
188
  protected z: NgZone;
189
189
  protected el: HTMLBqBadgeElement;
190
190
  /**
191
- * Badge background color. The value should be a valid value of the palette color @default 'ui--danger'
191
+ * Badge background color. The value should be a valid value of the palette color
192
192
  */
193
193
  set backgroundColor(_: Components.BqBadge['backgroundColor']);
194
194
  /**
195
- * Badge number color. The value should be a valid value of the palette color @default 'text--inverse'
195
+ * Badge number color. The value should be a valid value of the palette color
196
196
  */
197
197
  set textColor(_: Components.BqBadge['textColor']);
198
198
  /**
@@ -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;