@wavemaker/app-ng-runtime 11.8.0-next.139432 → 11.8.0-next.1417112

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.
@@ -22,8 +22,6 @@ export declare class SelectComponent extends DatasetAwareFormComponent implement
22
22
  protected handleEvent(node: HTMLElement, eventName: string, eventCallback: Function, locals: any): void;
23
23
  onSelectValueChange($event: any): void;
24
24
  onPropertyChange(key: string, nv: any, ov?: any): void;
25
- isSafariBrowser(): boolean;
26
- isIosPlatform(): boolean;
27
25
  /**
28
26
  * When caption floating is enabled and placeholder is given, do not show placeholder until user focuses on the field
29
27
  * When focused add the placeholder to the option which is selected
@@ -31,6 +29,7 @@ export declare class SelectComponent extends DatasetAwareFormComponent implement
31
29
  * @param $event event received will be either a blur or focus event
32
30
  */
33
31
  checkForFloatingLabel($event: any): void;
32
+ private removePlaceholderOption;
34
33
  static ɵfac: i0.ɵɵFactoryDeclaration<SelectComponent, [null, null, { optional: true; }]>;
35
34
  static ɵcmp: i0.ɵɵComponentDeclaration<SelectComponent, "wm-select", never, {}, {}, never, never, false, never>;
36
35
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wavemaker/app-ng-runtime",
3
- "version": "11.8.0-next.139432",
3
+ "version": "11.8.0-next.1417112",
4
4
  "description": "All modules required for a wavemaker application.",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -1730,6 +1730,7 @@ $.widget('wm.datatable', {
1730
1730
  }
1731
1731
  this.options.callOnRowClickEvent(data, e);
1732
1732
  selected = !selected;
1733
+ this.options.assignSelectedItems(data, e, {'rowId': rowId, '_selected': selected});
1733
1734
  this.toggleRowSelection($row, selected, e);
1734
1735
  callRowSelectionEvents();
1735
1736
  },