ids-enterprise-typings 13.1.0 → 13.2.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.
|
@@ -374,6 +374,8 @@ interface SohoDataGridOptions {
|
|
|
374
374
|
/* summary row columns settings*/
|
|
375
375
|
summaryRowColumns?: SohoDataGridSummaryRowColumnSettings[];
|
|
376
376
|
|
|
377
|
+
/* Icon name for fallbacks if the image does not load */
|
|
378
|
+
fallbackImage?: string;
|
|
377
379
|
}
|
|
378
380
|
|
|
379
381
|
interface SohoDataGridModifiedRows {
|
|
@@ -821,6 +823,9 @@ interface SohoDataGridColumn {
|
|
|
821
823
|
/** Name of the editor to instantiate (using new), or a SohoDataGridColumnEditorFunction. */
|
|
822
824
|
editor?: SohoDataGridColumnEditorFunction | string;
|
|
823
825
|
|
|
826
|
+
// Do not blank out the cell when editing
|
|
827
|
+
doNotEmptyCellWhenEditing?: boolean;
|
|
828
|
+
|
|
824
829
|
/** Options associated with the associated editor type, e.g. SohoDropDownOptions. */
|
|
825
830
|
editorOptions?: any;
|
|
826
831
|
|
|
@@ -1586,4 +1591,4 @@ interface SohoDataGridFilterOperatorChangedEvent {
|
|
|
1586
1591
|
defaultOperator: string;
|
|
1587
1592
|
value?: string;
|
|
1588
1593
|
columnId: string;
|
|
1589
|
-
}
|
|
1594
|
+
}
|
|
@@ -97,6 +97,12 @@ interface SohoLookupAutoComplete {
|
|
|
97
97
|
|
|
98
98
|
/** Menu template, appropriate markup is expected. */
|
|
99
99
|
template?: string;
|
|
100
|
+
|
|
101
|
+
change?(event: any): void;
|
|
102
|
+
|
|
103
|
+
selected?(selected: any[]): void;
|
|
104
|
+
|
|
105
|
+
beforeopen?(event: SohoAutoCompleteEvent): void;
|
|
100
106
|
}
|
|
101
107
|
|
|
102
108
|
/** Selection criteria. */
|
|
@@ -19,6 +19,12 @@ interface SohoSwapListItem {
|
|
|
19
19
|
disabled?: boolean;
|
|
20
20
|
}
|
|
21
21
|
|
|
22
|
+
interface SohoSwapSections {
|
|
23
|
+
available?: boolean;
|
|
24
|
+
selected?: boolean;
|
|
25
|
+
additional?: boolean;
|
|
26
|
+
}
|
|
27
|
+
|
|
22
28
|
/**
|
|
23
29
|
* Swap List Options
|
|
24
30
|
*/
|
|
@@ -37,6 +43,12 @@ interface SohoSwapListOptions {
|
|
|
37
43
|
|
|
38
44
|
/** Add extra attributes like id's to the component **/
|
|
39
45
|
attributes?: Array<Object> | Object;
|
|
46
|
+
|
|
47
|
+
/** Disable dragging (all true by default) **/
|
|
48
|
+
draggable?: SohoSwapSections | undefined;
|
|
49
|
+
|
|
50
|
+
/** Keep items in the section when moving (all false by default) **/
|
|
51
|
+
keepInList?: SohoSwapSections | undefined;
|
|
40
52
|
}
|
|
41
53
|
|
|
42
54
|
/**
|