@wavemaker/app-ng-runtime 11.9.4-next.27602 → 11.9.4-next.27604
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/input/default/base-form.component.d.ts +1 -0
- app-ng-runtime/components/input/default/bundles/index.umd.js +12 -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 +7 -2
- app-ng-runtime/components/input/default/fesm2022/index.mjs +12 -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/scripts/datatable/datatable.js +3 -0
|
@@ -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;
|
app-ng-runtime/package.json
CHANGED
|
@@ -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>');
|