@aquera/ngx-smart-table 0.0.17-patch-0.2 → 0.0.17-patch-0.3
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-code-editor.mjs +26 -3
- package/fesm2015/aquera-ngx-smart-table.mjs +35 -12
- package/fesm2015/aquera-ngx-smart-table.mjs.map +1 -1
- package/fesm2020/aquera-ngx-smart-table.mjs +25 -2
- package/fesm2020/aquera-ngx-smart-table.mjs.map +1 -1
- package/lib/editors/nile-code-editor.d.ts +5 -0
- package/package.json +1 -1
|
@@ -120,6 +120,11 @@ export declare class NileCodeEditor<T = string> implements CellEditor<T> {
|
|
|
120
120
|
* Focus the editor and place cursor
|
|
121
121
|
*/
|
|
122
122
|
private focusEditor;
|
|
123
|
+
/**
|
|
124
|
+
* Read the live value directly from CodeMirror's internal state,
|
|
125
|
+
* bypassing debounced nile-change events and the possibly-stale .value property.
|
|
126
|
+
*/
|
|
127
|
+
private getLiveEditorValue;
|
|
123
128
|
/**
|
|
124
129
|
* Open the full editor dialog
|
|
125
130
|
*/
|