@aquera/ngx-smart-table 0.0.16-alpha → 0.0.17
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.
- package/esm2020/lib/editors/nile-select-editor.mjs +109 -30
- package/fesm2015/aquera-ngx-smart-table.mjs +111 -31
- package/fesm2015/aquera-ngx-smart-table.mjs.map +1 -1
- package/fesm2020/aquera-ngx-smart-table.mjs +108 -29
- package/fesm2020/aquera-ngx-smart-table.mjs.map +1 -1
- package/lib/editors/nile-select-editor.d.ts +3 -0
- package/package.json +1 -1
|
@@ -77,6 +77,7 @@ export declare class NileSelectEditor<T = string> implements CellEditor<T> {
|
|
|
77
77
|
private eventListeners;
|
|
78
78
|
private optionsSubscription?;
|
|
79
79
|
private currentOptions;
|
|
80
|
+
private trackedValues;
|
|
80
81
|
constructor(options: NileSelectEditorOptions);
|
|
81
82
|
edit(context: CellEditorContext<T>): void;
|
|
82
83
|
/**
|
|
@@ -93,6 +94,8 @@ export declare class NileSelectEditor<T = string> implements CellEditor<T> {
|
|
|
93
94
|
private updateOptions;
|
|
94
95
|
/**
|
|
95
96
|
* Create NileOption elements and append them to the select
|
|
97
|
+
* When enableVirtualScroll is true, uses data property instead of DOM elements
|
|
98
|
+
* @see https://nile.aqueralabs.com/select-virtual?theme=enterprise
|
|
96
99
|
* @param options - The options to render
|
|
97
100
|
*/
|
|
98
101
|
private createAndAppendOptions;
|