@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.
- app-ng-runtime/components/data/form/bundles/index.umd.js +4 -3
- app-ng-runtime/components/data/form/esm2022/form-field/form-field.directive.mjs +1 -2
- app-ng-runtime/components/data/form/esm2022/live-form/live-form.directive.mjs +5 -3
- app-ng-runtime/components/data/form/fesm2022/index.mjs +4 -3
- app-ng-runtime/components/data/form/fesm2022/index.mjs.map +1 -1
- app-ng-runtime/components/input/default/bundles/index.umd.js +42 -51
- app-ng-runtime/components/input/default/esm2022/caption-position.directive.mjs +2 -3
- app-ng-runtime/components/input/default/esm2022/select/select.component.mjs +43 -51
- app-ng-runtime/components/input/default/fesm2022/index.mjs +43 -52
- app-ng-runtime/components/input/default/fesm2022/index.mjs.map +1 -1
- app-ng-runtime/components/input/default/select/select.component.d.ts +1 -2
- app-ng-runtime/package.json +1 -1
- app-ng-runtime/scripts/datatable/datatable.js +1 -0
|
@@ -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
|
}
|
app-ng-runtime/package.json
CHANGED
|
@@ -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
|
},
|