ids-enterprise-typings 10.12.3 → 10.14.0
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
|
|
|
@@ -102,9 +102,6 @@ interface SohoModalOptions {
|
|
|
102
102
|
|
|
103
103
|
/** Add extra attributes like id's to the component **/
|
|
104
104
|
attributes?: Array<Object> | Object;
|
|
105
|
-
|
|
106
|
-
/** Fires when an element gets focus on the modal */
|
|
107
|
-
onFocusChange?: SohoModalFocusChangeFunction;
|
|
108
105
|
}
|
|
109
106
|
|
|
110
107
|
type SohoModalFullSize = false | 'responsive' | 'always';
|
|
@@ -216,6 +213,9 @@ interface SohoModalStatic {
|
|
|
216
213
|
* Releases all resources managed by the modal.
|
|
217
214
|
*/
|
|
218
215
|
destroy(): void;
|
|
216
|
+
|
|
217
|
+
/** Fires when an element gets focus on the modal */
|
|
218
|
+
onFocusChange?: SohoModalFocusChangeFunction;
|
|
219
219
|
}
|
|
220
220
|
|
|
221
221
|
/**
|