@wavemaker/app-ng-runtime 11.9.3-1.5958 → 11.9.3-1.5983
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 +0 -1
- app-ng-runtime/components/input/default/bundles/index.umd.js +4 -13
- app-ng-runtime/components/input/default/esm2022/base-form.component.mjs +1 -4
- 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 +2 -8
- app-ng-runtime/components/input/default/fesm2022/index.mjs +4 -13
- app-ng-runtime/components/input/default/fesm2022/index.mjs.map +1 -1
- app-ng-runtime/components/input/default/text/locale/number-locale.d.ts +0 -1
- app-ng-runtime/package.json +1 -1
- app-ng-runtime/scripts/datatable/datatable.js +0 -3
|
@@ -107,7 +107,6 @@ 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;
|
|
111
110
|
onEnter($event: any): void;
|
|
112
111
|
onModelChange($event: any): void;
|
|
113
112
|
onPropertyChange(key: any, nv: any, ov?: any): void;
|
app-ng-runtime/package.json
CHANGED
|
@@ -331,9 +331,6 @@ $.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
|
-
}
|
|
337
334
|
$th.append('<span class="header-data">' + headerLabel + '</span>');
|
|
338
335
|
if (sortEnabled) { //If sort info is present, show the sort icon for that column on grid render
|
|
339
336
|
$sortSpan = $('<span class="sort-buttons-container"></span>');
|