@wavemaker/app-ng-runtime 11.9.3-1.5990 → 11.9.3-2.6002

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.
@@ -50,7 +50,7 @@ export declare class AppManagerService {
50
50
  *
51
51
  */
52
52
  updateSupportedLocaleVariable(): void;
53
- handleSSOLogin(config: any): void;
53
+ handleSSOLogin(config: any, options: any): void;
54
54
  /**
55
55
  * Handles the app when a XHR request returns 401 response
56
56
  * If no user was logged in before 401 occurred, First time Login is simulated
@@ -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>');