@wavemaker/app-ng-runtime 11.9.3-1.5985 → 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.
- app-ng-runtime/components/data/pagination/bundles/index.umd.js +2 -2
- app-ng-runtime/components/data/pagination/esm2022/pagination.component.mjs +3 -3
- app-ng-runtime/components/data/pagination/fesm2022/index.mjs +2 -2
- app-ng-runtime/components/data/pagination/fesm2022/index.mjs.map +1 -1
- app-ng-runtime/components/input/default/base-form.component.d.ts +1 -0
- app-ng-runtime/components/input/default/bundles/index.umd.js +13 -4
- app-ng-runtime/components/input/default/esm2022/base-form.component.mjs +4 -1
- app-ng-runtime/components/input/default/esm2022/number/number.component.mjs +4 -4
- app-ng-runtime/components/input/default/esm2022/text/locale/number-locale.mjs +8 -2
- app-ng-runtime/components/input/default/fesm2022/index.mjs +13 -4
- app-ng-runtime/components/input/default/fesm2022/index.mjs.map +1 -1
- app-ng-runtime/components/input/default/text/locale/number-locale.d.ts +1 -0
- app-ng-runtime/package.json +1 -1
- app-ng-runtime/runtime/base/bundles/index.umd.js +12 -7
- app-ng-runtime/runtime/base/esm2022/services/app.manager.service.mjs +13 -8
- app-ng-runtime/runtime/base/fesm2022/index.mjs +12 -7
- app-ng-runtime/runtime/base/fesm2022/index.mjs.map +1 -1
- app-ng-runtime/runtime/base/services/app.manager.service.d.ts +1 -1
- app-ng-runtime/scripts/datatable/datatable.js +3 -0
|
@@ -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>');
|