@wavemaker/app-ng-runtime 11.8.1-next.27333 → 11.8.1-next.27335
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/bundles/index.umd.js +24 -21
- app-ng-runtime/components/input/default/esm2022/select/select.component.mjs +30 -29
- app-ng-runtime/components/input/default/fesm2022/index.mjs +24 -21
- app-ng-runtime/components/input/default/fesm2022/index.mjs.map +1 -1
- app-ng-runtime/components/input/default/select/select.component.d.ts +2 -4
- app-ng-runtime/package.json +1 -1
- app-ng-runtime/scripts/datatable/datatable.js +1 -1
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { AfterViewInit, ElementRef, Injector } from '@angular/core';
|
|
2
|
-
import { App } from '@wm/core';
|
|
3
2
|
import { DatasetAwareFormComponent } from '../dataset-aware-form.component';
|
|
4
3
|
import * as i0 from "@angular/core";
|
|
5
4
|
export declare class SelectComponent extends DatasetAwareFormComponent implements AfterViewInit {
|
|
@@ -14,10 +13,9 @@ export declare class SelectComponent extends DatasetAwareFormComponent implement
|
|
|
14
13
|
name: string;
|
|
15
14
|
autofocus: boolean;
|
|
16
15
|
hint: string;
|
|
17
|
-
private app;
|
|
18
16
|
selectEl: ElementRef;
|
|
19
17
|
set datasource(ds: any);
|
|
20
|
-
constructor(inj: Injector,
|
|
18
|
+
constructor(inj: Injector, explicitContext: any);
|
|
21
19
|
ngAfterViewInit(): void;
|
|
22
20
|
protected handleEvent(node: HTMLElement, eventName: string, eventCallback: Function, locals: any): void;
|
|
23
21
|
onSelectValueChange($event: any): void;
|
|
@@ -30,6 +28,6 @@ export declare class SelectComponent extends DatasetAwareFormComponent implement
|
|
|
30
28
|
*/
|
|
31
29
|
checkForFloatingLabel($event: any): void;
|
|
32
30
|
private removePlaceholderOption;
|
|
33
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SelectComponent, [null,
|
|
31
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SelectComponent, [null, { optional: true; }]>;
|
|
34
32
|
static ɵcmp: i0.ɵɵComponentDeclaration<SelectComponent, "wm-select", never, {}, {}, never, never, false, never>;
|
|
35
33
|
}
|
app-ng-runtime/package.json
CHANGED
|
@@ -2725,7 +2725,7 @@ $.widget('wm.datatable', {
|
|
|
2725
2725
|
var colId = column.attr('data-col-id');
|
|
2726
2726
|
var id = Number(colId);
|
|
2727
2727
|
var colDefination = self.preparedHeaderData[id];
|
|
2728
|
-
if (colDefination.readonly && colDefination.field !== 'rowOperations') {
|
|
2728
|
+
if (colDefination && colDefination.readonly && colDefination.field !== 'rowOperations') {
|
|
2729
2729
|
self.columnClickInfo[rowId] = {};
|
|
2730
2730
|
self.columnClickInfo[rowId][colId] = true;
|
|
2731
2731
|
}
|