ids-enterprise-typings 10.12.2 → 10.13.1
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.
|
@@ -824,6 +824,9 @@ interface SohoDataGridColumn {
|
|
|
824
824
|
/** Options associated with the associated editor type, e.g. SohoDropDownOptions. */
|
|
825
825
|
editorOptions?: any;
|
|
826
826
|
|
|
827
|
+
// Do not blank out the cell when editing
|
|
828
|
+
doNotEmptyCellWhenEditing?: boolean;
|
|
829
|
+
|
|
827
830
|
// 'checkbox', 'date', 'decimal', 'contents', 'select' otherwise a string.
|
|
828
831
|
filterType?: SohoDataGridColumnFilterType | string;
|
|
829
832
|
|
|
@@ -18,6 +18,11 @@
|
|
|
18
18
|
*/
|
|
19
19
|
type SohoModalTriggerType = 'click' | 'immediate';
|
|
20
20
|
|
|
21
|
+
type SohoModalFocusChangeFunction = (
|
|
22
|
+
modal: HTMLElement,
|
|
23
|
+
el: HTMLElement
|
|
24
|
+
) => void;
|
|
25
|
+
|
|
21
26
|
/**
|
|
22
27
|
* Soho Modal Dialog configuration options
|
|
23
28
|
*
|
|
@@ -208,6 +213,9 @@ interface SohoModalStatic {
|
|
|
208
213
|
* Releases all resources managed by the modal.
|
|
209
214
|
*/
|
|
210
215
|
destroy(): void;
|
|
216
|
+
|
|
217
|
+
/** Fires when an element gets focus on the modal */
|
|
218
|
+
onFocusChange?: SohoModalFocusChangeFunction;
|
|
211
219
|
}
|
|
212
220
|
|
|
213
221
|
/**
|