@aquera/ngx-smart-table 0.0.17-patch-0.3 → 0.0.17-patch-0.4
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 +205 -66
- package/fesm2015/aquera-ngx-smart-table.mjs +223 -83
- package/fesm2015/aquera-ngx-smart-table.mjs.map +1 -1
- package/fesm2020/aquera-ngx-smart-table.mjs +204 -65
- package/fesm2020/aquera-ngx-smart-table.mjs.map +1 -1
- package/lib/editors/nile-code-editor.d.ts +23 -4
- package/package.json +1 -1
|
@@ -71,8 +71,6 @@ export interface NileCodeEditorOptions {
|
|
|
71
71
|
dialogMaxHeight?: string;
|
|
72
72
|
/** Dialog editor min height (default: '300px') */
|
|
73
73
|
dialogEditorHeight?: string;
|
|
74
|
-
/** Minimum number of visible lines in the dialog editor (default: 20) */
|
|
75
|
-
dialogMinLines?: number;
|
|
76
74
|
/** Inline completion dataset */
|
|
77
75
|
customAutoCompletions?: Record<string, CodeEditorCompletion[]> | CodeEditorCompletion[];
|
|
78
76
|
/** Paths to fetch completion datasets from */
|
|
@@ -114,6 +112,10 @@ export declare class NileCodeEditor<T = string> implements CellEditor<T> {
|
|
|
114
112
|
private expandButtonClicked;
|
|
115
113
|
private documentClickHandler?;
|
|
116
114
|
private trackedValue;
|
|
115
|
+
private syncingFromDialog;
|
|
116
|
+
private userEditedInline;
|
|
117
|
+
private dialogOriginalValue;
|
|
118
|
+
private dialogCurrentValue;
|
|
117
119
|
constructor(options?: NileCodeEditorOptions | undefined);
|
|
118
120
|
edit(context: CellEditorContext<T>): void;
|
|
119
121
|
/**
|
|
@@ -123,6 +125,11 @@ export declare class NileCodeEditor<T = string> implements CellEditor<T> {
|
|
|
123
125
|
/**
|
|
124
126
|
* Read the live value directly from CodeMirror's internal state,
|
|
125
127
|
* bypassing debounced nile-change events and the possibly-stale .value property.
|
|
128
|
+
*
|
|
129
|
+
* Priority order:
|
|
130
|
+
* 1. trackedValue - always up to date from change events
|
|
131
|
+
* 2. CodeMirror internal state - for real-time reading
|
|
132
|
+
* 3. editor.value property - fallback
|
|
126
133
|
*/
|
|
127
134
|
private getLiveEditorValue;
|
|
128
135
|
/**
|
|
@@ -130,9 +137,21 @@ export declare class NileCodeEditor<T = string> implements CellEditor<T> {
|
|
|
130
137
|
*/
|
|
131
138
|
private openDialog;
|
|
132
139
|
/**
|
|
133
|
-
*
|
|
140
|
+
* Get the current value from the dialog editor
|
|
134
141
|
*/
|
|
135
|
-
private
|
|
142
|
+
private getDialogEditorValue;
|
|
143
|
+
/**
|
|
144
|
+
* Apply changes from dialog and close it
|
|
145
|
+
*/
|
|
146
|
+
private applyDialogChanges;
|
|
147
|
+
/**
|
|
148
|
+
* Cancel dialog changes and revert to original value
|
|
149
|
+
*/
|
|
150
|
+
private cancelDialogChanges;
|
|
151
|
+
/**
|
|
152
|
+
* Close and remove the dialog UI
|
|
153
|
+
*/
|
|
154
|
+
private closeDialogUI;
|
|
136
155
|
/**
|
|
137
156
|
* Apply all configuration options to the NileCodeEditor element
|
|
138
157
|
*/
|