@wavemaker/app-ng-runtime 11.9.3-1.5949 → 11.9.3-1.5958

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.
@@ -107,6 +107,7 @@ export declare abstract class NumberLocale extends BaseInput implements Validato
107
107
  };
108
108
  validateInputEntry($event: any): boolean;
109
109
  onBackspace($event: any): void;
110
+ onDelete($event: any): void;
110
111
  onEnter($event: any): void;
111
112
  onModelChange($event: any): void;
112
113
  onPropertyChange(key: any, nv: any, ov?: any): void;
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wavemaker/app-ng-runtime",
3
- "version": "11.9.3-1.5949",
3
+ "version": "11.9.3-1.5958",
4
4
  "description": "All modules required for a wavemaker application.",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -331,6 +331,9 @@ $.widget('wm.datatable', {
331
331
  if (field === 'checkbox') {
332
332
  $th.append('<input type="checkbox" />');
333
333
  }
334
+ if (field === 'radio') {
335
+ $th.attr('aria-label', "Select row");
336
+ }
334
337
  $th.append('<span class="header-data">' + headerLabel + '</span>');
335
338
  if (sortEnabled) { //If sort info is present, show the sort icon for that column on grid render
336
339
  $sortSpan = $('<span class="sort-buttons-container"></span>');