@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.
@@ -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, app: App, explicitContext: any);
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, null, { optional: true; }]>;
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
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wavemaker/app-ng-runtime",
3
- "version": "11.8.1-next.27333",
3
+ "version": "11.8.1-next.27335",
4
4
  "description": "All modules required for a wavemaker application.",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -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
  }